BEGIN; PRAGMA writable_schema = on; PRAGMA encoding = 'UTF-8'; PRAGMA page_size = '4096'; PRAGMA auto_vacuum = '0'; PRAGMA user_version = '0'; PRAGMA application_id = '0'; CREATE TABLE sqlite_sequence(name,seq); CREATE TABLE `version` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `version` INTEGER NULL); CREATE TABLE `email_hash` (`hash` TEXT PRIMARY KEY NOT NULL, `email` TEXT NOT NULL); CREATE TABLE `oauth2_application` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NULL, `name` TEXT NULL, `client_id` TEXT NULL, `client_secret` TEXT NULL, `redirect_uris` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `confidential_client` INTEGER DEFAULT TRUE NOT NULL, `skip_secondary_authorization` INTEGER DEFAULT FALSE NOT NULL); CREATE TABLE `oauth2_authorization_code` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `grant_id` INTEGER NULL, `code` TEXT NULL, `code_challenge` TEXT NULL, `code_challenge_method` TEXT NULL, `redirect_uri` TEXT NULL, `valid_until` INTEGER NULL); CREATE TABLE `oauth2_grant` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NULL, `application_id` INTEGER NULL, `counter` INTEGER DEFAULT 1 NOT NULL, `scope` TEXT NULL, `nonce` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `session` (`key` TEXT PRIMARY KEY NOT NULL, `data` BLOB NULL, `expiry` INTEGER NULL); CREATE TABLE `login_source` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` INTEGER NULL, `name` TEXT NULL, `is_active` INTEGER DEFAULT 0 NOT NULL, `is_sync_enabled` INTEGER DEFAULT 0 NOT NULL, `cfg` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `two_factor` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NULL, `secret` TEXT NULL, `scratch_salt` TEXT NULL, `scratch_hash` TEXT NULL, `last_used_passcode` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `webauthn_credential` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NULL, `lower_name` TEXT NULL, `user_id` INTEGER NULL, `credential_id` BLOB NULL, `public_key` BLOB NULL, `attestation_type` TEXT NULL, `aaguid` BLOB NULL, `sign_count` INTEGER NULL, `clone_warning` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `email_address` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NOT NULL, `email` TEXT NOT NULL, `lower_email` TEXT NOT NULL, `is_activated` INTEGER NULL, `is_primary` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `external_login_user` (`external_id` TEXT NOT NULL, `user_id` INTEGER NOT NULL, `login_source_id` INTEGER NOT NULL, `raw_data` TEXT NULL, `provider` TEXT NULL, `email` TEXT NULL, `name` TEXT NULL, `first_name` TEXT NULL, `last_name` TEXT NULL, `nick_name` TEXT NULL, `description` TEXT NULL, `avatar_url` TEXT NULL, `location` TEXT NULL, `access_token` TEXT NULL, `access_token_secret` TEXT NULL, `refresh_token` TEXT NULL, `expires_at` DATETIME NULL, PRIMARY KEY (`external_id`,`login_source_id`)); CREATE TABLE `follow` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NULL, `follow_id` INTEGER NULL, `created_unix` INTEGER NULL); CREATE TABLE `user_open_id` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NOT NULL, `uri` TEXT NOT NULL, `show` INTEGER DEFAULT 0 NULL); CREATE TABLE `user_redirect` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `lower_name` TEXT NOT NULL, `redirect_user_id` INTEGER NULL); CREATE TABLE `user_setting` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NULL, `setting_key` TEXT NULL, `setting_value` TEXT NULL); CREATE TABLE `user` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `lower_name` TEXT NOT NULL, `name` TEXT NOT NULL, `full_name` TEXT NULL, `email` TEXT NOT NULL, `keep_email_private` INTEGER NULL, `email_notifications_preference` TEXT DEFAULT 'enabled' NOT NULL, `passwd` TEXT NOT NULL, `passwd_hash_algo` TEXT DEFAULT 'argon2' NOT NULL, `must_change_password` INTEGER DEFAULT 0 NOT NULL, `login_type` INTEGER NULL, `login_source` INTEGER DEFAULT 0 NOT NULL, `login_name` TEXT NULL, `type` INTEGER NULL, `location` TEXT NULL, `website` TEXT NULL, `rands` TEXT NULL, `salt` TEXT NULL, `language` TEXT NULL, `description` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `last_login_unix` INTEGER NULL, `last_repo_visibility` INTEGER NULL, `max_repo_creation` INTEGER DEFAULT -1 NOT NULL, `is_active` INTEGER NULL, `is_admin` INTEGER NULL, `is_restricted` INTEGER DEFAULT 0 NOT NULL, `allow_git_hook` INTEGER NULL, `allow_import_local` INTEGER NULL, `allow_create_organization` INTEGER DEFAULT 1 NULL, `prohibit_login` INTEGER DEFAULT 0 NOT NULL, `avatar` TEXT NOT NULL, `avatar_email` TEXT NOT NULL, `use_custom_avatar` INTEGER NULL, `num_followers` INTEGER NULL, `num_following` INTEGER DEFAULT 0 NOT NULL, `num_stars` INTEGER NULL, `num_repos` INTEGER NULL, `num_teams` INTEGER NULL, `num_members` INTEGER NULL, `visibility` INTEGER DEFAULT 0 NOT NULL, `repo_admin_change_team_access` INTEGER DEFAULT 0 NOT NULL, `diff_view_style` TEXT DEFAULT '' NOT NULL, `theme` TEXT DEFAULT '' NOT NULL, `keep_activity_private` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `repo_archiver` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `type` INTEGER NULL, `status` INTEGER NULL, `commit_id` TEXT NULL, `created_unix` INTEGER NOT NULL); CREATE TABLE `attachment` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uuid` UUID NULL, `repo_id` INTEGER NULL, `issue_id` INTEGER NULL, `release_id` INTEGER NULL, `uploader_id` INTEGER DEFAULT 0 NULL, `comment_id` INTEGER NULL, `name` TEXT NULL, `download_count` INTEGER DEFAULT 0 NULL, `size` INTEGER DEFAULT 0 NULL, `created_unix` INTEGER NULL); CREATE TABLE `collaboration` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NOT NULL, `user_id` INTEGER NOT NULL, `mode` INTEGER DEFAULT 2 NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `language_stat` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NOT NULL, `commit_id` TEXT NULL, `is_primary` INTEGER NULL, `language` TEXT NOT NULL, `size` INTEGER DEFAULT 0 NOT NULL, `created_unix` INTEGER NULL); CREATE TABLE `mirror` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `interval` INTEGER NULL, `enable_prune` INTEGER DEFAULT 1 NOT NULL, `updated_unix` INTEGER NULL, `next_update_unix` INTEGER NULL, `lfs_enabled` INTEGER DEFAULT 0 NOT NULL, `lfs_endpoint` TEXT NULL, `remote_address` TEXT NULL); CREATE TABLE `push_mirror` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `remote_name` TEXT NULL, `interval` INTEGER NULL, `created_unix` INTEGER NULL, `last_update` INTEGER NULL, `last_error` TEXT NULL, `sync_on_commit` INTEGER DEFAULT 1 NOT NULL, `remote_address` TEXT NULL); CREATE TABLE `repo_redirect` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NULL, `lower_name` TEXT NOT NULL, `redirect_repo_id` INTEGER NULL); CREATE TABLE `repository` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NULL, `owner_name` TEXT NULL, `lower_name` TEXT NOT NULL, `name` TEXT NOT NULL, `description` TEXT NULL, `website` TEXT NULL, `original_service_type` INTEGER NULL, `original_url` TEXT NULL, `default_branch` TEXT NULL, `num_watches` INTEGER NULL, `num_stars` INTEGER NULL, `num_forks` INTEGER NULL, `num_issues` INTEGER NULL, `num_closed_issues` INTEGER NULL, `num_pulls` INTEGER NULL, `num_closed_pulls` INTEGER NULL, `num_milestones` INTEGER DEFAULT 0 NOT NULL, `num_closed_milestones` INTEGER DEFAULT 0 NOT NULL, `num_projects` INTEGER DEFAULT 0 NOT NULL, `num_closed_projects` INTEGER DEFAULT 0 NOT NULL, `is_private` INTEGER NULL, `is_empty` INTEGER NULL, `is_archived` INTEGER NULL, `is_mirror` INTEGER NULL, `status` INTEGER DEFAULT 0 NOT NULL, `is_fork` INTEGER DEFAULT 0 NOT NULL, `fork_id` INTEGER NULL, `is_template` INTEGER DEFAULT 0 NOT NULL, `template_id` INTEGER NULL, `size` INTEGER DEFAULT 0 NOT NULL, `is_fsck_enabled` INTEGER DEFAULT 1 NOT NULL, `close_issues_via_commit_in_any_branch` INTEGER DEFAULT 0 NOT NULL, `topics` TEXT NULL, `trust_model` INTEGER NULL, `avatar` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `num_action_runs` INTEGER DEFAULT 0 NOT NULL, `num_closed_action_runs` INTEGER DEFAULT 0 NOT NULL, `archived_unix` INTEGER DEFAULT 0 NULL, `git_size` INTEGER DEFAULT 0 NOT NULL, `lfs_size` INTEGER DEFAULT 0 NOT NULL, `object_format_name` TEXT DEFAULT 'sha1' NOT NULL, `default_wiki_branch` TEXT NULL); CREATE TABLE `repo_indexer_status` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `commit_sha` TEXT NULL, `indexer_type` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `repo_unit` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `type` INTEGER NULL, `config` TEXT NULL, `created_unix` INTEGER NULL, `everyone_access_mode` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `star` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NULL, `repo_id` INTEGER NULL, `created_unix` INTEGER NULL); CREATE TABLE `topic` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NULL, `repo_count` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `repo_topic` (`repo_id` INTEGER NOT NULL, `topic_id` INTEGER NOT NULL, PRIMARY KEY (`repo_id`,`topic_id`)); CREATE TABLE `watch` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NULL, `repo_id` INTEGER NULL, `mode` INTEGER DEFAULT 1 NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `org_user` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NULL, `org_id` INTEGER NULL, `is_public` INTEGER NULL); CREATE TABLE `team` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `org_id` INTEGER NULL, `lower_name` TEXT NULL, `name` TEXT NULL, `description` TEXT NULL, `authorize` INTEGER NULL, `num_repos` INTEGER NULL, `num_members` INTEGER NULL, `includes_all_repositories` INTEGER DEFAULT 0 NOT NULL, `can_create_org_repo` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `team_user` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `org_id` INTEGER NULL, `team_id` INTEGER NULL, `uid` INTEGER NULL); CREATE TABLE `team_repo` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `org_id` INTEGER NULL, `team_id` INTEGER NULL, `repo_id` INTEGER NULL); CREATE TABLE `team_unit` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `org_id` INTEGER NULL, `team_id` INTEGER NULL, `type` INTEGER NULL, `access_mode` INTEGER NULL); CREATE TABLE `access` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NULL, `repo_id` INTEGER NULL, `mode` INTEGER NULL); CREATE TABLE `gpg_key` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NOT NULL, `key_id` TEXT NOT NULL, `primary_key_id` TEXT NULL, `content` TEXT NOT NULL, `created_unix` INTEGER NULL, `expired_unix` INTEGER NULL, `added_unix` INTEGER NULL, `emails` TEXT NULL, `verified` INTEGER DEFAULT 0 NOT NULL, `can_sign` INTEGER NULL, `can_encrypt_comms` INTEGER NULL, `can_encrypt_storage` INTEGER NULL, `can_certify` INTEGER NULL); CREATE TABLE `gpg_key_import` (`key_id` TEXT PRIMARY KEY NOT NULL, `content` TEXT NOT NULL); CREATE TABLE `public_key` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NOT NULL, `name` TEXT NOT NULL, `fingerprint` TEXT NOT NULL, `content` TEXT NOT NULL, `mode` INTEGER DEFAULT 2 NOT NULL, `type` INTEGER DEFAULT 1 NOT NULL, `login_source_id` INTEGER DEFAULT 0 NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `verified` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `deploy_key` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `key_id` INTEGER NULL, `repo_id` INTEGER NULL, `name` TEXT NULL, `fingerprint` TEXT NULL, `mode` INTEGER DEFAULT 1 NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `protected_branch` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `branch_name` TEXT NULL, `can_push` INTEGER DEFAULT 0 NOT NULL, `enable_whitelist` INTEGER NULL, `whitelist_user_i_ds` TEXT NULL, `whitelist_team_i_ds` TEXT NULL, `enable_merge_whitelist` INTEGER DEFAULT 0 NOT NULL, `whitelist_deploy_keys` INTEGER DEFAULT 0 NOT NULL, `merge_whitelist_user_i_ds` TEXT NULL, `merge_whitelist_team_i_ds` TEXT NULL, `enable_status_check` INTEGER DEFAULT 0 NOT NULL, `status_check_contexts` TEXT NULL, `enable_approvals_whitelist` INTEGER DEFAULT 0 NOT NULL, `approvals_whitelist_user_i_ds` TEXT NULL, `approvals_whitelist_team_i_ds` TEXT NULL, `required_approvals` INTEGER DEFAULT 0 NOT NULL, `block_on_rejected_reviews` INTEGER DEFAULT 0 NOT NULL, `block_on_official_review_requests` INTEGER DEFAULT 0 NOT NULL, `block_on_outdated_branch` INTEGER DEFAULT 0 NOT NULL, `dismiss_stale_approvals` INTEGER DEFAULT 0 NOT NULL, `require_signed_commits` INTEGER DEFAULT 0 NOT NULL, `protected_file_patterns` TEXT NULL, `unprotected_file_patterns` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `ignore_stale_approvals` INTEGER DEFAULT 0 NOT NULL, `can_force_push` INTEGER DEFAULT 0 NOT NULL, `enable_force_push_allowlist` INTEGER DEFAULT 0 NOT NULL, `force_push_allowlist_user_i_ds` TEXT NULL, `force_push_allowlist_team_i_ds` TEXT NULL, `force_push_allowlist_deploy_keys` INTEGER DEFAULT 0 NOT NULL, `block_admin_merge_override` INTEGER DEFAULT 0 NOT NULL, `priority` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `renamed_branch` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NOT NULL, `from` TEXT NULL, `to` TEXT NULL, `created_unix` INTEGER NULL); CREATE TABLE `commit_status` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `index` INTEGER NULL, `repo_id` INTEGER NULL, `state` TEXT NOT NULL, `sha` TEXT NOT NULL, `target_url` TEXT NULL, `description` TEXT NULL, `context_hash` TEXT NULL, `context` TEXT NULL, `creator_id` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `commit_status_index` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `sha` TEXT NULL, `max_index` INTEGER NULL); CREATE TABLE `lfs_meta_object` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `oid` TEXT NOT NULL, `size` INTEGER NOT NULL, `repository_id` INTEGER NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `lfs_lock` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NOT NULL, `owner_id` INTEGER NOT NULL, `path` TEXT NULL, `created` DATETIME NULL); CREATE TABLE `protected_tag` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `name_pattern` TEXT NULL, `allowlist_user_i_ds` TEXT NULL, `allowlist_team_i_ds` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `project_board` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `title` TEXT NULL, `default` INTEGER DEFAULT 0 NOT NULL, `sorting` INTEGER DEFAULT 0 NOT NULL, `color` TEXT NULL, `project_id` INTEGER NOT NULL, `creator_id` INTEGER NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `project_issue` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `issue_id` INTEGER NULL, `project_id` INTEGER NULL, `project_board_id` INTEGER NULL, `sorting` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `project` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `title` TEXT NOT NULL, `description` TEXT NULL, `repo_id` INTEGER NULL, `creator_id` INTEGER NOT NULL, `is_closed` INTEGER NULL, `board_type` INTEGER NULL, `type` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `closed_date_unix` INTEGER NULL, `card_type` INTEGER DEFAULT 0 NOT NULL, `owner_id` INTEGER NULL); CREATE TABLE `notice` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` INTEGER NULL, `description` TEXT NULL, `created_unix` INTEGER NULL); CREATE TABLE `pull_auto_merge` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `pull_id` INTEGER NULL, `doer_id` INTEGER NOT NULL, `merge_style` TEXT NULL, `message` TEXT NULL, `created_unix` INTEGER NULL); CREATE TABLE `review_state` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NOT NULL, `pull_id` INTEGER DEFAULT 0 NOT NULL, `commit_sha` TEXT NOT NULL, `updated_files` TEXT NOT NULL, `updated_unix` INTEGER NULL); CREATE TABLE `issue_assignees` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `assignee_id` INTEGER NULL, `issue_id` INTEGER NULL); CREATE TABLE `comment` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` INTEGER NULL, `poster_id` INTEGER NULL, `original_author` TEXT NULL, `original_author_id` INTEGER NULL, `issue_id` INTEGER NULL, `label_id` INTEGER NULL, `old_project_id` INTEGER NULL, `project_id` INTEGER NULL, `old_milestone_id` INTEGER NULL, `milestone_id` INTEGER NULL, `time_id` INTEGER NULL, `assignee_id` INTEGER NULL, `removed_assignee` INTEGER NULL, `assignee_team_id` INTEGER DEFAULT 0 NOT NULL, `resolve_doer_id` INTEGER NULL, `old_title` TEXT NULL, `new_title` TEXT NULL, `old_ref` TEXT NULL, `new_ref` TEXT NULL, `dependent_issue_id` INTEGER NULL, `commit_id` INTEGER NULL, `line` INTEGER NULL, `tree_path` TEXT NULL, `content` TEXT NULL, `patch` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `commit_sha` TEXT NULL, `review_id` INTEGER NULL, `invalidated` INTEGER NULL, `ref_repo_id` INTEGER NULL, `ref_issue_id` INTEGER NULL, `ref_comment_id` INTEGER NULL, `ref_action` INTEGER NULL, `ref_is_pull` INTEGER NULL, `content_version` INTEGER DEFAULT 0 NOT NULL, `comment_meta_data` TEXT NULL); CREATE TABLE `issue_content_history` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `poster_id` INTEGER NULL, `issue_id` INTEGER NULL, `comment_id` INTEGER NULL, `edited_unix` INTEGER NULL, `content_text` TEXT NULL, `is_first_created` INTEGER NULL, `is_deleted` INTEGER NULL); CREATE TABLE `issue_dependency` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NOT NULL, `issue_id` INTEGER NOT NULL, `dependency_id` INTEGER NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `issue` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `index` INTEGER NULL, `poster_id` INTEGER NULL, `original_author` TEXT NULL, `original_author_id` INTEGER NULL, `name` TEXT NULL, `content` TEXT NULL, `milestone_id` INTEGER NULL, `priority` INTEGER NULL, `is_closed` INTEGER NULL, `is_pull` INTEGER NULL, `num_comments` INTEGER NULL, `ref` TEXT NULL, `deadline_unix` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `closed_unix` INTEGER NULL, `is_locked` INTEGER DEFAULT 0 NOT NULL, `pin_order` INTEGER DEFAULT 0 NULL, `content_version` INTEGER DEFAULT 0 NOT NULL, `time_estimate` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `issue_index` (`group_id` INTEGER PRIMARY KEY NOT NULL, `max_index` INTEGER NULL); CREATE TABLE `issue_user` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NULL, `issue_id` INTEGER NULL, `is_read` INTEGER NULL, `is_mentioned` INTEGER NULL); CREATE TABLE `issue_watch` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NOT NULL, `issue_id` INTEGER NOT NULL, `is_watching` INTEGER NOT NULL, `created_unix` INTEGER NOT NULL, `updated_unix` INTEGER NOT NULL); CREATE TABLE `label` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `org_id` INTEGER NULL, `name` TEXT NULL, `description` TEXT NULL, `color` TEXT NULL, `num_issues` INTEGER NULL, `num_closed_issues` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `exclusive` INTEGER NULL, `archived_unix` INTEGER DEFAULT NULL NULL); CREATE TABLE `issue_label` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `issue_id` INTEGER NULL, `label_id` INTEGER NULL); CREATE TABLE `milestone` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `name` TEXT NULL, `content` TEXT NULL, `is_closed` INTEGER NULL, `num_issues` INTEGER NULL, `num_closed_issues` INTEGER NULL, `completeness` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `deadline_unix` INTEGER NULL, `closed_date_unix` INTEGER NULL); CREATE TABLE `pull_request` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` INTEGER NULL, `status` INTEGER NULL, `conflicted_files` TEXT NULL, `commits_ahead` INTEGER NULL, `commits_behind` INTEGER NULL, `changed_protected_files` TEXT NULL, `issue_id` INTEGER NULL, `index` INTEGER NULL, `head_repo_id` INTEGER NULL, `base_repo_id` INTEGER NULL, `head_branch` TEXT NULL, `base_branch` TEXT NULL, `merge_base` TEXT NULL, `allow_maintainer_edit` INTEGER DEFAULT 0 NOT NULL, `has_merged` INTEGER NULL, `merged_commit_id` TEXT NULL, `merger_id` INTEGER NULL, `merged_unix` INTEGER NULL, `flow` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `reaction` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` TEXT NOT NULL, `issue_id` INTEGER NOT NULL, `comment_id` INTEGER NULL, `user_id` INTEGER NOT NULL, `original_author_id` INTEGER DEFAULT 0 NOT NULL, `original_author` TEXT NULL, `created_unix` INTEGER NULL); CREATE TABLE `review` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` INTEGER NULL, `reviewer_id` INTEGER NULL, `reviewer_team_id` INTEGER DEFAULT 0 NOT NULL, `original_author` TEXT NULL, `original_author_id` INTEGER NULL, `issue_id` INTEGER NULL, `content` TEXT NULL, `official` INTEGER DEFAULT 0 NOT NULL, `commit_id` TEXT NULL, `stale` INTEGER DEFAULT 0 NOT NULL, `dismissed` INTEGER DEFAULT 0 NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `stopwatch` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `issue_id` INTEGER NULL, `user_id` INTEGER NULL, `created_unix` INTEGER NULL); CREATE TABLE `tracked_time` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `issue_id` INTEGER NULL, `user_id` INTEGER NULL, `created_unix` INTEGER NULL, `time` INTEGER NOT NULL, `deleted` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `hook_task` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `hook_id` INTEGER NULL, `uuid` TEXT NULL, `payload_content` TEXT NULL, `event_type` TEXT NULL, `is_delivered` INTEGER NULL, `delivered` INTEGER NULL, `is_succeed` INTEGER NULL, `request_content` TEXT NULL, `response_content` TEXT NULL, `payload_version` INTEGER DEFAULT 1 NULL); CREATE TABLE `webhook` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, "owner_id" INTEGER NULL, `is_system_webhook` INTEGER NULL, `url` TEXT NULL, `http_method` TEXT NULL, `content_type` INTEGER NULL, `secret` TEXT NULL, `events` TEXT NULL, `is_active` INTEGER NULL, `type` TEXT NULL, `meta` TEXT NULL, `last_status` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `header_authorization_encrypted` TEXT NULL); CREATE TABLE `action` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NULL, `op_type` INTEGER NULL, `act_user_id` INTEGER NULL, `repo_id` INTEGER NULL, `comment_id` INTEGER NULL, `is_deleted` INTEGER DEFAULT 0 NOT NULL, `ref_name` TEXT NULL, `is_private` INTEGER DEFAULT 0 NOT NULL, `content` TEXT NULL, `created_unix` INTEGER NULL); CREATE TABLE `notification` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `user_id` INTEGER NOT NULL, `repo_id` INTEGER NOT NULL, `status` INTEGER NOT NULL, `source` INTEGER NOT NULL, `issue_id` INTEGER NOT NULL, `commit_id` TEXT NULL, `comment_id` INTEGER NULL, `updated_by` INTEGER NOT NULL, `created_unix` INTEGER NOT NULL, `updated_unix` INTEGER NOT NULL); CREATE TABLE `release` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `publisher_id` INTEGER NULL, `tag_name` TEXT NULL, `original_author` TEXT NULL, `original_author_id` INTEGER NULL, `lower_tag_name` TEXT NULL, `target` TEXT NULL, `title` TEXT NULL, `sha1` TEXT NULL, `num_commits` INTEGER NULL, `note` TEXT NULL, `is_draft` INTEGER DEFAULT 0 NOT NULL, `is_prerelease` INTEGER DEFAULT 0 NOT NULL, `is_tag` INTEGER DEFAULT 0 NOT NULL, `created_unix` INTEGER NULL); CREATE TABLE `repo_transfer` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `doer_id` INTEGER NULL, `recipient_id` INTEGER NULL, `repo_id` INTEGER NULL, `team_i_ds` TEXT NULL, `created_unix` INTEGER NOT NULL, `updated_unix` INTEGER NOT NULL); CREATE TABLE `task` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `doer_id` INTEGER NULL, `owner_id` INTEGER NULL, `repo_id` INTEGER NULL, `type` INTEGER NULL, `status` INTEGER NULL, `start_time` INTEGER NULL, `end_time` INTEGER NULL, `payload_content` TEXT NULL, `message` TEXT NULL, `created` INTEGER NULL); CREATE TABLE `access_token` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uid` INTEGER NULL, `name` TEXT NULL, `token_hash` TEXT NULL, `token_salt` TEXT NULL, `token_last_eight` TEXT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `scope` TEXT NULL); CREATE TABLE `upload` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uuid` UUID NULL, `name` TEXT NULL); CREATE TABLE `package` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NOT NULL, `repo_id` INTEGER NULL, `type` TEXT NOT NULL, `name` TEXT NOT NULL, `lower_name` TEXT NOT NULL, `semver_compatible` INTEGER DEFAULT 0 NOT NULL, `is_internal` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `package_blob` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `size` INTEGER DEFAULT 0 NOT NULL, `hash_md5` TEXT NOT NULL, `hash_sha1` TEXT NOT NULL, `hash_sha256` TEXT NOT NULL, `hash_sha512` TEXT NOT NULL, `created_unix` INTEGER NOT NULL); CREATE TABLE `package_blob_upload` (`id` TEXT PRIMARY KEY NOT NULL, `bytes_received` INTEGER DEFAULT 0 NOT NULL, `hash_state_bytes` BLOB NULL, `created_unix` INTEGER NOT NULL, `updated_unix` INTEGER NOT NULL); CREATE TABLE `package_file` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `version_id` INTEGER NOT NULL, `blob_id` INTEGER NOT NULL, `name` TEXT NOT NULL, `lower_name` TEXT NOT NULL, `composite_key` TEXT NULL, `is_lead` INTEGER DEFAULT 0 NOT NULL, `created_unix` INTEGER NOT NULL); CREATE TABLE `package_property` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `ref_type` INTEGER NOT NULL, `ref_id` INTEGER NOT NULL, `name` TEXT NOT NULL, `value` TEXT NOT NULL); CREATE TABLE `package_version` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `package_id` INTEGER NOT NULL, `creator_id` INTEGER DEFAULT 0 NOT NULL, `version` TEXT NOT NULL, `lower_version` TEXT NOT NULL, `created_unix` INTEGER NOT NULL, `is_internal` INTEGER DEFAULT 0 NOT NULL, `metadata_json` TEXT NULL, `download_count` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `app_state` (`id` TEXT PRIMARY KEY NOT NULL, `revision` INTEGER NULL, `content` TEXT NULL); CREATE TABLE `badge` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `description` TEXT NULL, `image_url` TEXT NULL, `slug` TEXT NULL); CREATE TABLE `user_badge` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `badge_id` INTEGER NULL, `user_id` INTEGER NULL); CREATE TABLE `system_setting` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `setting_key` TEXT NULL, `setting_value` TEXT NULL, `version` INTEGER NULL, `created` INTEGER NULL, `updated` INTEGER NULL); CREATE TABLE `team_invite` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `token` TEXT DEFAULT '' NOT NULL, `inviter_id` INTEGER DEFAULT 0 NOT NULL, `org_id` INTEGER DEFAULT 0 NOT NULL, `team_id` INTEGER DEFAULT 0 NOT NULL, `email` TEXT DEFAULT '' NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `package_cleanup_rule` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `enabled` INTEGER DEFAULT 0 NOT NULL, `owner_id` INTEGER DEFAULT 0 NOT NULL, `type` TEXT NOT NULL, `keep_count` INTEGER DEFAULT 0 NOT NULL, `keep_pattern` TEXT DEFAULT '' NOT NULL, `remove_days` INTEGER DEFAULT 0 NOT NULL, `remove_pattern` TEXT DEFAULT '' NOT NULL, `match_full_name` INTEGER DEFAULT 0 NOT NULL, `created_unix` INTEGER DEFAULT 0 NOT NULL, `updated_unix` INTEGER DEFAULT 0 NOT NULL); CREATE TABLE `secret` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NOT NULL, `repo_id` INTEGER DEFAULT 0 NOT NULL, `name` TEXT NOT NULL, `data` TEXT NULL, `created_unix` INTEGER NOT NULL); CREATE TABLE `action_runner_token` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `token` TEXT NULL, `owner_id` INTEGER NULL, `repo_id` INTEGER NULL, `is_active` INTEGER NULL, `created` INTEGER NULL, `updated` INTEGER NULL, `deleted` INTEGER NULL); CREATE TABLE `action_run` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `title` TEXT NULL, `repo_id` INTEGER NULL, `owner_id` INTEGER NULL, `workflow_id` TEXT NULL, `index` INTEGER NULL, `trigger_user_id` INTEGER NULL, `ref` TEXT NULL, `commit_sha` TEXT NULL, `event` TEXT NULL, `is_fork_pull_request` INTEGER NULL, `event_payload` TEXT NULL, `status` INTEGER NULL, `started` INTEGER NULL, `stopped` INTEGER NULL, `created` INTEGER NULL, `updated` INTEGER NULL, `need_approval` INTEGER NULL, `approved_by` INTEGER NULL, `trigger_event` TEXT NULL, `version` INTEGER DEFAULT 0 NULL, `schedule_id` INTEGER NULL, `previous_duration` INTEGER NULL); CREATE TABLE `action_run_job` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `run_id` INTEGER NULL, `repo_id` INTEGER NULL, `owner_id` INTEGER NULL, `commit_sha` TEXT NULL, `is_fork_pull_request` INTEGER NULL, `name` TEXT NULL, `attempt` INTEGER NULL, `workflow_payload` BLOB NULL, `job_id` TEXT NULL, `needs` TEXT NULL, `runs_on` TEXT NULL, `task_id` INTEGER NULL, `status` INTEGER NULL, `started` INTEGER NULL, `stopped` INTEGER NULL, `created` INTEGER NULL, `updated` INTEGER NULL); CREATE TABLE `action_run_index` (`group_id` INTEGER PRIMARY KEY NOT NULL, `max_index` INTEGER NULL); CREATE TABLE `action_task` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `job_id` INTEGER NULL, `attempt` INTEGER NULL, `runner_id` INTEGER NULL, `status` INTEGER NULL, `started` INTEGER NULL, `stopped` INTEGER NULL, `repo_id` INTEGER NULL, `owner_id` INTEGER NULL, `commit_sha` TEXT NULL, `is_fork_pull_request` INTEGER NULL, `token_hash` TEXT NULL, `token_salt` TEXT NULL, `token_last_eight` TEXT NULL, `log_filename` TEXT NULL, `log_in_storage` INTEGER NULL, `log_length` INTEGER NULL, `log_size` INTEGER NULL, `log_indexes` BLOB NULL, `log_expired` INTEGER NULL, `created` INTEGER NULL, `updated` INTEGER NULL); CREATE TABLE `action_task_step` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NULL, `task_id` INTEGER NULL, `index` INTEGER NULL, `repo_id` INTEGER NULL, `status` INTEGER NULL, `log_index` INTEGER NULL, `log_length` INTEGER NULL, `started` INTEGER NULL, `stopped` INTEGER NULL, `created` INTEGER NULL, `updated` INTEGER NULL); CREATE TABLE `dbfs_meta` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `full_path` TEXT NOT NULL, `block_size` INTEGER NOT NULL, `file_size` INTEGER NOT NULL, `create_timestamp` INTEGER NOT NULL, `modify_timestamp` INTEGER NOT NULL); CREATE TABLE `dbfs_data` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `revision` INTEGER NOT NULL, `meta_id` INTEGER NOT NULL, `blob_offset` INTEGER NOT NULL, `blob_size` INTEGER NOT NULL, `blob_data` BLOB NOT NULL); CREATE TABLE `action_task_output` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `task_id` INTEGER NULL, `output_key` TEXT NULL, `output_value` TEXT NULL); CREATE TABLE `action_artifact` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `run_id` INTEGER NULL, `runner_id` INTEGER NULL, `repo_id` INTEGER NULL, `owner_id` INTEGER NULL, `commit_sha` TEXT NULL, `storage_path` TEXT NULL, `file_size` INTEGER NULL, `file_compressed_size` INTEGER NULL, `content_encoding` TEXT NULL, `artifact_path` TEXT NULL, `artifact_name` TEXT NULL, `status` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL, `expired_unix` INTEGER NULL); CREATE TABLE "action_runner" (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `uuid` TEXT NULL, `name` TEXT NULL, `owner_id` INTEGER NULL, `repo_id` INTEGER NULL, `description` TEXT NULL, `base` INTEGER NULL, `repo_range` TEXT NULL, `token_hash` TEXT NULL, `token_salt` TEXT NULL, `last_online` INTEGER NULL, `last_active` INTEGER NULL, `agent_labels` TEXT NULL, `created` INTEGER NULL, `updated` INTEGER NULL, `deleted` INTEGER NULL, `version` TEXT NULL); CREATE TABLE `action_variable` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NULL, `repo_id` INTEGER NULL, `name` TEXT NOT NULL, `data` TEXT NOT NULL, `created_unix` INTEGER NOT NULL, `updated_unix` INTEGER NULL); CREATE TABLE `branch` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `name` TEXT NOT NULL, `commit_id` TEXT NULL, `commit_message` TEXT NULL, `pusher_id` INTEGER NULL, `is_deleted` INTEGER NULL, `deleted_by_id` INTEGER NULL, `deleted_unix` INTEGER NULL, `commit_time` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `action_tasks_version` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `owner_id` INTEGER NULL, `repo_id` INTEGER NULL, `version` INTEGER NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE TABLE `action_schedule` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `title` TEXT NULL, `specs` TEXT NULL, `repo_id` INTEGER NULL, `owner_id` INTEGER NULL, `workflow_id` TEXT NULL, `trigger_user_id` INTEGER NULL, `ref` TEXT NULL, `commit_sha` TEXT NULL, `event` TEXT NULL, `event_payload` TEXT NULL, `content` BLOB NULL, `created` INTEGER NULL, `updated` INTEGER NULL); CREATE TABLE `action_schedule_spec` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `schedule_id` INTEGER NULL, `spec` TEXT NULL, `next` INTEGER NULL, `prev` INTEGER NULL, `created` INTEGER NULL, `updated` INTEGER NULL); CREATE TABLE `auth_token` (`id` TEXT PRIMARY KEY NOT NULL, `token_hash` TEXT NULL, `user_id` INTEGER NULL, `expires_unix` INTEGER NULL); CREATE TABLE `user_blocking` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `blocker_id` INTEGER NULL, `blockee_id` INTEGER NULL, `note` TEXT NULL, `created_unix` INTEGER NULL); CREATE TABLE `commit_status_summary` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NULL, `sha` TEXT NOT NULL, `state` TEXT NOT NULL, `target_url` TEXT NULL); CREATE TABLE `repo_license` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `repo_id` INTEGER NOT NULL, `commit_id` TEXT NULL, `license` TEXT NOT NULL, `created_unix` INTEGER NULL, `updated_unix` INTEGER NULL); CREATE UNIQUE INDEX `UQE_email_hash_email` ON `email_hash` (`email`); CREATE UNIQUE INDEX `UQE_oauth2_authorization_code_code` ON `oauth2_authorization_code` (`code`); CREATE UNIQUE INDEX `UQE_oauth2_grant_user_application` ON `oauth2_grant` (`user_id`,`application_id`); CREATE UNIQUE INDEX `UQE_login_source_name` ON `login_source` (`name`); CREATE UNIQUE INDEX `UQE_two_factor_uid` ON `two_factor` (`uid`); CREATE UNIQUE INDEX `UQE_webauthn_credential_s` ON `webauthn_credential` (`lower_name`,`user_id`); CREATE UNIQUE INDEX `UQE_email_address_email` ON `email_address` (`email`); CREATE UNIQUE INDEX `UQE_email_address_lower_email` ON `email_address` (`lower_email`); CREATE UNIQUE INDEX `UQE_follow_follow` ON `follow` (`user_id`,`follow_id`); CREATE UNIQUE INDEX `UQE_user_open_id_uri` ON `user_open_id` (`uri`); CREATE UNIQUE INDEX `UQE_user_redirect_s` ON `user_redirect` (`lower_name`); CREATE UNIQUE INDEX `UQE_user_setting_key_userid` ON `user_setting` (`user_id`,`setting_key`); CREATE UNIQUE INDEX `UQE_user_lower_name` ON `user` (`lower_name`); CREATE UNIQUE INDEX `UQE_user_name` ON `user` (`name`); CREATE UNIQUE INDEX `UQE_repo_archiver_s` ON `repo_archiver` (`repo_id`,`type`,`commit_id`); CREATE UNIQUE INDEX `UQE_collaboration_s` ON `collaboration` (`repo_id`,`user_id`); CREATE UNIQUE INDEX `UQE_language_stat_s` ON `language_stat` (`repo_id`,`language`); CREATE UNIQUE INDEX `UQE_repo_redirect_s` ON `repo_redirect` (`owner_id`,`lower_name`); CREATE UNIQUE INDEX `UQE_star_s` ON `star` (`uid`,`repo_id`); CREATE UNIQUE INDEX `UQE_topic_name` ON `topic` (`name`); CREATE UNIQUE INDEX `UQE_watch_watch` ON `watch` (`user_id`,`repo_id`); CREATE UNIQUE INDEX `UQE_org_user_s` ON `org_user` (`uid`,`org_id`); CREATE UNIQUE INDEX `UQE_team_user_s` ON `team_user` (`team_id`,`uid`); CREATE UNIQUE INDEX `UQE_team_repo_s` ON `team_repo` (`team_id`,`repo_id`); CREATE UNIQUE INDEX `UQE_team_unit_s` ON `team_unit` (`team_id`,`type`); CREATE UNIQUE INDEX `UQE_access_s` ON `access` (`user_id`,`repo_id`); CREATE UNIQUE INDEX `UQE_deploy_key_s` ON `deploy_key` (`key_id`,`repo_id`); CREATE UNIQUE INDEX `UQE_commit_status_repo_sha_index` ON `commit_status` (`index`,`repo_id`,`sha`); CREATE UNIQUE INDEX `UQE_commit_status_index_repo_sha` ON `commit_status_index` (`repo_id`,`sha`); CREATE UNIQUE INDEX `UQE_lfs_meta_object_s` ON `lfs_meta_object` (`oid`,`repository_id`); CREATE UNIQUE INDEX `UQE_review_state_pull_commit_user` ON `review_state` (`user_id`,`pull_id`,`commit_sha`); CREATE UNIQUE INDEX `UQE_issue_dependency_issue_dependency` ON `issue_dependency` (`issue_id`,`dependency_id`); CREATE UNIQUE INDEX `UQE_issue_watch_watch` ON `issue_watch` (`user_id`,`issue_id`); CREATE UNIQUE INDEX `UQE_issue_label_s` ON `issue_label` (`issue_id`,`label_id`); CREATE UNIQUE INDEX `UQE_reaction_s` ON `reaction` (`type`,`issue_id`,`comment_id`,`user_id`,`original_author_id`,`original_author`); CREATE UNIQUE INDEX `UQE_upload_uuid` ON `upload` (`uuid`); CREATE UNIQUE INDEX `UQE_package_s` ON `package` (`owner_id`,`type`,`lower_name`); CREATE UNIQUE INDEX `UQE_package_blob_sha512` ON `package_blob` (`hash_sha512`); CREATE UNIQUE INDEX `UQE_package_blob_sha1` ON `package_blob` (`hash_sha1`); CREATE UNIQUE INDEX `UQE_package_blob_md5` ON `package_blob` (`hash_md5`); CREATE UNIQUE INDEX `UQE_package_blob_sha256` ON `package_blob` (`hash_sha256`); CREATE UNIQUE INDEX `UQE_package_file_s` ON `package_file` (`version_id`,`lower_name`,`composite_key`); CREATE UNIQUE INDEX `UQE_package_version_s` ON `package_version` (`package_id`,`lower_version`); CREATE UNIQUE INDEX `UQE_system_setting_setting_key` ON `system_setting` (`setting_key`); CREATE UNIQUE INDEX `UQE_team_invite_team_mail` ON `team_invite` (`team_id`,`email`); CREATE UNIQUE INDEX `UQE_package_cleanup_rule_s` ON `package_cleanup_rule` (`owner_id`,`type`); CREATE UNIQUE INDEX `UQE_secret_owner_repo_name` ON `secret` (`owner_id`,`repo_id`,`name`); CREATE UNIQUE INDEX `UQE_action_runner_token_token` ON `action_runner_token` (`token`); CREATE UNIQUE INDEX `UQE_action_task_step_task_index` ON `action_task_step` (`task_id`,`index`); CREATE UNIQUE INDEX `UQE_dbfs_meta_full_path` ON `dbfs_meta` (`full_path`); CREATE UNIQUE INDEX `UQE_access_token_token_hash` ON `access_token` (`token_hash`); CREATE UNIQUE INDEX `UQE_action_task_output_task_id_output_key` ON `action_task_output` (`task_id`,`output_key`); CREATE UNIQUE INDEX `UQE_action_variable_owner_repo_name` ON `action_variable` (`owner_id`,`repo_id`,`name`); CREATE UNIQUE INDEX `UQE_branch_s` ON `branch` (`repo_id`,`name`); CREATE UNIQUE INDEX `UQE_action_tasks_version_owner_repo` ON `action_tasks_version` (`owner_id`,`repo_id`); CREATE UNIQUE INDEX `UQE_action_artifact_runid_name_path` ON `action_artifact` (`run_id`,`artifact_path`,`artifact_name`); CREATE UNIQUE INDEX `UQE_action_runner_uuid` ON `action_runner` (`uuid`); CREATE UNIQUE INDEX `UQE_action_runner_token_hash` ON `action_runner` (`token_hash`); CREATE UNIQUE INDEX `UQE_issue_user_uid_to_issue` ON `issue_user` (`uid`,`issue_id`); CREATE UNIQUE INDEX `UQE_badge_slug` ON `badge` (`slug`); CREATE UNIQUE INDEX `UQE_user_blocking_block` ON `user_blocking` (`blocker_id`,`blockee_id`); CREATE UNIQUE INDEX `UQE_attachment_uuid` ON `attachment` (`uuid`); CREATE UNIQUE INDEX `UQE_repository_s` ON `repository` (`owner_id`,`lower_name`); CREATE UNIQUE INDEX `UQE_action_run_repo_index` ON `action_run` (`repo_id`,`index`); CREATE UNIQUE INDEX `UQE_pull_auto_merge_pull_id` ON `pull_auto_merge` (`pull_id`); CREATE UNIQUE INDEX `UQE_hook_task_uuid` ON `hook_task` (`uuid`); CREATE UNIQUE INDEX `UQE_commit_status_summary_repo_id_sha` ON `commit_status_summary` (`repo_id`,`sha`); CREATE UNIQUE INDEX `UQE_repo_license_s` ON `repo_license` (`repo_id`,`license`); CREATE UNIQUE INDEX `UQE_oauth2_application_client_id` ON `oauth2_application` (`client_id`); CREATE UNIQUE INDEX `UQE_release_n` ON `release` (`repo_id`,`tag_name`); CREATE UNIQUE INDEX `UQE_action_task_token_hash` ON `action_task` (`token_hash`); CREATE UNIQUE INDEX `UQE_protected_branch_s` ON `protected_branch` (`repo_id`,`branch_name`); CREATE UNIQUE INDEX `UQE_issue_repo_index` ON `issue` (`repo_id`,`index`); INSERT OR IGNORE INTO 'version'('id', 'version') VALUES (1, 312); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (71, 'f1e0dac4d140b6b68bf70ed8e3db73ad', '41278462+kougyokugentou@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (72, 'b105467ba488105534658502f4708dcf', 'tungtn3@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (73, 'ac4f32762ce77e78d715299a275c0de7', 'jccollet@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (74, '6acd28c19a5b7b3d69b132425eb7a782', 'davecohrs@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (75, '7dad082761ab00f5d00dcf6834021571', 'computers57@hotmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (76, '9181eb84f9c35729a3bad740fb7f9d93', 'noreply@github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (77, '706b094b64e8b27d03e7523d3dbffec7', 'marius.spix@web.de'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (78, '2a3ac60cd6e5273133c1fa8eed1991e3', 'nethack@bobbydurrettdba.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (79, '38e6ac4cbfcec18fed4aafac0a7cebfe', 'nnyby@columbia.edu'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (80, '4e093137f3465e254d34f270cb1dd313', 'g.branden.robinson@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (81, '4261e4d955cec22b3ee5d358c4818b88', 'zomgreg@protonmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (82, 'bdb6ad8b45669f91280be39e914aee30', 'ray chason'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (83, '94e89d3c8684ecbdb2cb6e48542db96f', 'mikeallison@mikes-mac-mini.local'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (84, '68f83baef40cdb78e4440ad937c58e18', 'dean@skadi.localdomain'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (85, '96f1f8ff8ead37c0a177700e09932d44', '74678550+actual-nh@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (86, '7cb8f88ce9a257cc109f6cf3469bcafa', 'apowers@ato.ms'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (87, '8352ac8a01999b43ddaff6c608294684', 'pasi.kallinen@koha-suomi.fi'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (88, 'adbe1cf8789c969277595c70cba92ae7', 'chasonr@rays-macbook-air.local'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (89, 'de4ffe4aab373fa82055a29dce7e465d', 'dexter.c.dopping@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (90, '0621efa399704942841a0da50b08b3a8', 'alva.melkerson@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (91, '08df90abb8616b68556f890d3657ad70', 'prdrdecroly@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (92, '188328bebf00a756f90a70157d69a2bb', 'janne.gustafsson@hyvanmielenpelit.fi'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (93, 'e3a0f5643270d8156d1552bc25a3e165', 'meverett@matthews-macbook-pro.local'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (94, '13308b308aac6f2e782d97a2acfcd58e', 'bk@ancilla.ca'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (95, 'a299477f4201ade55853f3d273cef235', 'me@pprogs.blog'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (96, 'bbaae17576f0f6dd29fb5f9fa9a9a394', 'brian.campbell@ed.ac.uk'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (97, 'ce2b1612b8cb472ae28465ebed51ba56', 'copperwater@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (98, 'f333c8fb481a0e48a94e87ae83030d5f', '48235540+ardub23@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (99, '621dd8a9696960eac2ecb815539f4f72', 'fuz@fuz.su'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (100, 'df6213d8eb717a1dcd234057a7a4e7c4', 'nhtangles@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (101, '25e4868cc0d9061e8149936d89058d0a', 'ro@twinoaks.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (102, '43d69c384c00681b63ff3d429845387a', 'i@yvt.jp'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (103, 'f10ac743d18c9c5f8927b901f5f657d1', 'peckato1@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (104, 'c33fb0f371649a6123362b8c4e81c303', 'kondrfil@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (105, '0437aa649d3c5c64cfb577639879364f', 'belejmir@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (106, '7a29d7dcfd02b76d8b617a02314b9e5b', 'pavelbraginskiy@hotmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (107, '4c280be865a49b6d9fe34a5c927279fc', 'sliacjan@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (1, 'f239bcdf3b0d0428c2c8bda3a3acc4f3', 'prokop.paruzek@skaut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (2, '4a29f267295b343105aa4e235a08b319', 'prokop.paruzek@paruzkovi.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (3, 'a988766f6507eaf37aeb1e6eb5a8fc77', 'paruzpro@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (4, '847628cb906f8a115a8162f1e4364bcc', 'rankin@nethack.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (5, '51a8f4dfb33483acde465aace3fe13bb', 'aosdict@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (6, '581169a2941b137330c19113e4408525', 'aidanholm@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (7, 'afdf8fa738166b5787ad97c037e6de92', 'rawlins@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (8, '3a6c17a7ed35cdec6072ebe5079c05a7', 'bernhdav@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (9, '7e11c6b974bc1fa07b90621d9b57561f', 'edvard@skaut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (10, '45bf83af5354bd405d6fb017967f5ff3', 'bob@freedombone.net'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (11, 'e6375294c48d8f210710d7d3ac67eecc', 'kestrelg@kestrelscry.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (12, '8faf514cfd90640a2d9470a97d76f2bf', 'nhw+cron@nethack.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (13, '3a49cca9e2fa6088d0305182a4f97f9e', 'nhmall@nethack.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (14, 'cbea22dda172db278e14f1049feeec09', 'keni@his.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (15, '06f0af008609a0955044f71f1f209e34', 'scshunt@csclub.uwaterloo.ca'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (16, '33c9851de3b5dcd37efbb8e22f139ca2', 'reksarka@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (17, '0498b329f4f8bf6345591dfcd501086f', 'bart@barthouse.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (18, '4b3a630629c3a474e63e9fb59a15af7b', 'jwalz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (19, 'c6a243e6c07a6bd74e77b3a550598ef6', 'mjnh@persona.ca'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (20, '014d80d323b59c5639b128700cb50ba0', 'nethack.allison'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (21, '6cbce92ccfec6d5841837a4d1659adb4', 'mak@kolybabi.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (22, '8d90118591bcf4006d5bc0e29116f194', 'paxed@alt.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (23, '47b8865c374d0875c924521b56887164', 'derekray@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (24, 'c310165d1599e27054fd678aa59832ea', 'kmhugo'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (25, '9e7450b7264744f65fac41af35833d34', 'keni'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (26, 'b88f57981a68a0e9e2c3af37c9f75c02', 'nethack.rankin'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (27, 'fb978f83ab554e3536a1ae05bd1b6947', 'bhaak@gmx.net'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (28, 'ea6a495f673e81c04464be61733a1e6f', 'ray.chason@protonmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (29, '355b900274f910bc8ddf9b96aac5ab8f', 'cohrs'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (30, 'cd49db257a17fc088b3cc83adebe578f', 'ais523@nethack4.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (31, 'b94ca324b6c127a23440fb4d0398e976', 'warwick'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (32, '0c9f32db91b4f8bb673f496a30180e7c', 'arromdee'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (33, '400b5a1bef78e72a431664056b498e3f', 'barbos+nethack@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (34, 'bcd6dbaf200cb364b761cb4d7b54637f', 'karnov@sympatico.ca'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (35, '9f45197e54f374964c64a455af59cbf3', 'me@entrez.cc'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (36, '9c7659666a4df7936e0144392731a3cf', 'argrath@ub32.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (37, '286d44a5fa95c213eee37a70d2d3aebc', 'no@anonymousplanet.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (38, '690f5e3baaf24e110e6acb27ff49444c', 'rui@chenrui.dev'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (39, 'f304958089494eacd190cb1b55afed55', 'fredde1994@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (40, '3e7635efd1771c899562aab734502327', 'blakereneau0309@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (41, 'dcf66ca239ee9897c59ab3b5a3fabed9', 'kufat@kufat.net'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (42, '221f9e67ead5beadb519dc0a6b2ce2b1', 'dion@nicolaas.net'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (43, '4d68a6c081ba53492fec350fde1d1cae', 'chasonr@shell.sf.net'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (44, '7e81bedd3f16ad93aeb61f683d47fc48', 'lukas.barinka+dashboard@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (45, 'c2a670ce1224b8d9f2229294469faf29', 'barbos+droidzebra@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (46, 'd177f6784337404c61eb6c11cd2008cb', 'mcdonohe@mail.gvsu.edu'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (47, 'bb438c21a1a08044d2031271706587de', 'feiyunw@yahoo.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (48, 'f187051c3ae474bb2d12471e76bb9aae', 'miguno@miguno.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (49, 'c43f0e5c4e02e63966e8a6fe562acfa3', 'bhouse@ntdev.microsoft.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (50, '469b30ecb21c02e0cbb0d2a9dc666a8d', 'keith.simpson1971@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (51, 'e7d993347be3a6abb44bedbc8e934367', 'haoyang@esper.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (52, 'b178a5ab422fcfb848abd16ed0fe7081', 'sebastian.buchwald@kit.edu'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (53, 'ab1b853d9639d580c5ae4661782f47e1', 'andyrthomson@gmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (54, '65c987c2e98d91db5c55bc2cae9852dd', 'dean@nethack.org'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (55, '295c092d295b05ceb6d678f29e11d853', 'cathartes@posteo.net'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (56, '2eeb0ca1dde52d1976d351ef599740a2', 'pavel@petrzela.eu'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (57, 'c8c0892facdd9a03e66aad3c5af461a6', 'zdarekj@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (58, 'ecdb401491a21324ec87954bf89be354', 'groot@bart-mac.local'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (59, '48767461cb09465362c687ae0c44753b', 'dean'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (60, '45405405e092e3f685019786af9ebb7d', 'nopenothinghere@proton.me'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (61, '579ff569898caab5fdec3dcd63721506', 'wwsfastzb@mozmail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (62, 'c96734d1cb0753b6b46725ba00a05b4b', '83131157+deniied0@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (63, '467714559b320382498110417a196c73', '135403604+spl0itable@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (64, '75949898cbdfbf2ee5395c973a303d79', 'ivana.trummova@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (65, '33c00522709fb2e899b7f2d355d2c08c', 'bucekj@fit.cvut.cz'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (66, 'a7993b7423e24aa2c09535e2734225eb', 'gregoric@grinnell.edu'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (67, '15e8569278f53cc74580a7a4433f9f10', '62170514+rojjacebolla@users.noreply.github.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (68, '432affc7bca96651a2a1ca03756e5c88', 'hnr@fb.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (69, '2ab959d4fc93d52f57ff3b3e75dd935f', 'gebulmer@googlemail.com'); INSERT OR IGNORE INTO 'email_hash'(_rowid_, 'hash', 'email') VALUES (70, 'b192f7d75531f5237d92b16fce6d9e0c', 'riker.wachtler@gmail.com'); INSERT OR IGNORE INTO 'oauth2_application'('id', 'uid', 'name', 'client_id', 'client_secret', 'redirect_uris', 'created_unix', 'updated_unix', 'confidential_client') VALUES (1, 0, 'git-credential-oauth', 'a4792ccc-144e-407e-86c9-5e7d8d9c3269', '', '["http://127.0.0.1","https://127.0.0.1"]', 1700227230, 1700227230, 0); INSERT OR IGNORE INTO 'oauth2_application'('id', 'uid', 'name', 'client_id', 'client_secret', 'redirect_uris', 'created_unix', 'updated_unix', 'confidential_client') VALUES (2, 0, 'Git Credential Manager', 'e90ee53c-94e2-48ac-9358-a874fb9e0662', '', '["http://127.0.0.1","https://127.0.0.1"]', 1700227230, 1700227230, 0); INSERT OR IGNORE INTO 'oauth2_application'('id', 'uid', 'name', 'client_id', 'client_secret', 'redirect_uris', 'created_unix', 'updated_unix', 'confidential_client') VALUES (3, 0, 'tea', 'd57cb8c4-630c-4168-8324-ec79935e18d4', '', '["http://127.0.0.1","https://127.0.0.1"]', 1716798849, 1716798849, 0); INSERT OR IGNORE INTO 'two_factor'('id', 'uid', 'secret', 'scratch_salt', 'scratch_hash', 'last_used_passcode', 'created_unix', 'updated_unix') VALUES (2, 1, '1ESGjeEO3rFFKHlOmp9S32BJzdNhguTpcpaz4yPFNsNHMZnKHG/tX+Sla/oq1N/pPXO5Km/9/UfRc7VVPoVjK/m83g5/+qhFs9T3uPuTYtl/1Rb+XW9HSbY6yOcDnmnWoug9a3d0/0w=', 'atbKtWAeQ7', 'a8b66b7a2c62d3fb210bb947408e56845ab3bfac21e20f0e184f89e5380d7aed6cfc6e97debe5b96ab200667228af171ddbc', '964852', 1678461025, 1687523256); INSERT OR IGNORE INTO 'webauthn_credential'('id', 'name', 'lower_name', 'user_id', 'credential_id', 'public_key', 'attestation_type', 'aaguid', 'sign_count', 'clone_warning', 'created_unix', 'updated_unix') VALUES (4, 'trezor', 'trezor', 1, X'204959ACF3FF89816F02D8CE3609F5CF836604DCEAF49CF816C8AFE8DBFD56DCAE62B292932C0641C53E228896AB230958F21FB6D3AD5F0749D0A03AFD68EC4D', X'A5010203262001215820E78BF84C8E9EE6599F02B6F7A78C91AFEDFFFC3E00BDD3102ADD5497E1CFC9BF225820C98B5A0D330749F10D74FDECDD01E42F9F8BB81240970B3646C30A351062BC2E', 'fido-u2f', X'00000000000000000000000000000000', 13, 0, 1662928837, 1674054913); INSERT OR IGNORE INTO 'webauthn_credential'('id', 'name', 'lower_name', 'user_id', 'credential_id', 'public_key', 'attestation_type', 'aaguid', 'sign_count', 'clone_warning', 'created_unix', 'updated_unix') VALUES (11, 'bw', 'bw', 1, X'9B026D51A2C34789830325C923127764', X'A5010203262001215820C89E60AAB469F91E0C0C5A8835AC74A59E93AE53512AFD9C12CC96F331795901225820D41ADFA6C54E14F37D7381AFA34539A796902C4D65EB8AAFC3E6E462650FD058', 'none', X'D548826E79B4DB40A3D811116F7E8349', 0, 0, 1734532855, 1741600542); INSERT OR IGNORE INTO 'webauthn_credential'('id', 'name', 'lower_name', 'user_id', 'credential_id', 'public_key', 'attestation_type', 'aaguid', 'sign_count', 'clone_warning', 'created_unix', 'updated_unix') VALUES (12, 'yubiS', 'yubis', 1, X'8D6297C193B9781F1A85A0C491EF0882AF34F3859DB710E1CFC3658C2263F7E891E615C69D7E5DDD771FDDCC1AC12ABB', X'A50102032620012158208D6297C193B9781F1A85A0C491E847048353FFD6AB07BE9417CA7EC959642CA4225820BD1841AD2E75CB74A2571483F68653A0E1C844D7DC928DA0DFD09B5C2A607C43', 'packed', X'E77E3C6405E3428B88240CBEB04B829D', 305, 0, 1734532885, 1741171935); INSERT OR IGNORE INTO 'webauthn_credential'('id', 'name', 'lower_name', 'user_id', 'credential_id', 'public_key', 'attestation_type', 'aaguid', 'sign_count', 'clone_warning', 'created_unix', 'updated_unix') VALUES (14, 'yubi', 'yubi', 1, X'C76F5CD3A31426646ECA402CB593D60F', X'A50102032620012158208C825BFBEBD0B357F2C10483D247268CA550F3A550241A48AAFF16F287BBF53C2258206B4123F0411D69C1460D46479F71656EC5FD4373A9A9BB16CEB749F12175728D', 'packed', X'2FC0579F811347EAB116BB5A8DB9202A', 497, 0, 1736412213, 1740934402); INSERT OR IGNORE INTO 'webauthn_credential'('id', 'name', 'lower_name', 'user_id', 'credential_id', 'public_key', 'attestation_type', 'aaguid', 'sign_count', 'clone_warning', 'created_unix', 'updated_unix') VALUES (15, 'idem', 'idem', 1, X'1DF305FC6D60A5EDFA6684FEFE4A0058D8DB72E0DCC4EE060C3D36BD060F3E9B1DF305FC6D60A5EDFA6684FEFE4A0058D8DB72E0DCC4EE060C3D36BD060F3E9B1DF305FC6D60A5EDFA6684FEFE4A0058D8DB72E0DCC4EE060C3D36BD060F3E9BEDEDEDED', X'A50102032620012158207A220B3560CD267879B3F132E928B24453E6B3D3319C493AC3D0CF283AFE2137225820598A6FC6B2EAFE563FC4B9000229E3DDF54590F240B28A3D2628DB895B47F57C', 'packed', X'3B1ADB990DFE46FD90B87F7614A4DE2A', 1710, 0, 1736412268, 1736412268); INSERT OR IGNORE INTO 'webauthn_credential'('id', 'name', 'lower_name', 'user_id', 'credential_id', 'public_key', 'attestation_type', 'aaguid', 'sign_count', 'clone_warning', 'created_unix', 'updated_unix') VALUES (16, 'safe 3', 'safe 3', 1, X'F1D002001BFA8F09D7A950A613BBDA52CDF8F8708A6B8F719C1485081820186D7CC371284A06F1D759C5A5054A34FCC0050CFC44919A2CBB4C6A1D6F7652D5CEC33F3FC1F61AAE2CA2D6B6B5BB88DA86108C4088D70C0FFDB2ACB8B74537986039A29A97', X'A5010203262001215820BBF75481FD37326BAC5DD30CB445EE0B966E46B018AB0655CE8D0977A76370F0225820B38508DFFC2381FA2151CA5977BDC0E1F42230F614335EFA9ECCF165102F0B22', 'packed', X'D6D0BDC362EEC4DBDE8D7A656E4A4487', 1735156463, 0, 1736414381, 1736414406); INSERT OR IGNORE INTO 'email_address'('id', 'uid', 'email', 'lower_email', 'is_activated', 'is_primary') VALUES (1, 1, 'prokop.paruzek@skaut.cz', 'prokop.paruzek@skaut.cz', 1, 1); INSERT OR IGNORE INTO 'email_address'('id', 'uid', 'email', 'lower_email', 'is_activated', 'is_primary') VALUES (2, 3, 'edvard@skaut.cz', 'edvard@skaut.cz', 1, 1); INSERT OR IGNORE INTO 'user'('id', 'lower_name', 'name', 'full_name', 'email', 'keep_email_private', 'email_notifications_preference', 'passwd', 'passwd_hash_algo', 'must_change_password', 'login_type', 'login_source', 'login_name', 'type', 'location', 'website', 'rands', 'salt', 'language', 'description', 'created_unix', 'updated_unix', 'last_login_unix', 'last_repo_visibility', 'max_repo_creation', 'is_active', 'is_admin', 'is_restricted', 'allow_git_hook', 'allow_import_local', 'allow_create_organization', 'prohibit_login', 'avatar', 'avatar_email', 'use_custom_avatar', 'num_followers', 'num_following', 'num_stars', 'num_repos', 'num_teams', 'num_members', 'visibility', 'repo_admin_change_team_access', 'diff_view_style', 'theme', 'keep_activity_private') VALUES (1, 'prokop', 'prokop', 'Prokop Parůžek', 'prokop.paruzek@skaut.cz', 1, 'enabled', '$2a$10$gMr8mSXvMOASIvWP376tn.zX/lQsEUDhegNpnBVI.BjRvlJosGovC', 'bcrypt$10', 0, 0, 0, '', 0, '', '', 'e89015be17f62bb49df6045bed186213', 'c048666c7fb144e12beae1161835d082', 'cs-CZ', '', 1662286180, 1741600544, 1741600544, 1, -1, 1, 1, 0, 0, 0, 1, 0, '', 'prokop.paruzek@skaut.cz', 0, 0, 0, 2, 27, 0, 0, 0, 0, 'unified', 'gitea-auto', 0); INSERT OR IGNORE INTO 'user'('id', 'lower_name', 'name', 'full_name', 'email', 'keep_email_private', 'email_notifications_preference', 'passwd', 'passwd_hash_algo', 'must_change_password', 'login_type', 'login_source', 'login_name', 'type', 'location', 'website', 'rands', 'salt', 'language', 'description', 'created_unix', 'updated_unix', 'last_login_unix', 'last_repo_visibility', 'max_repo_creation', 'is_active', 'is_admin', 'is_restricted', 'allow_git_hook', 'allow_import_local', 'allow_create_organization', 'prohibit_login', 'avatar', 'avatar_email', 'use_custom_avatar', 'num_followers', 'num_following', 'num_stars', 'num_repos', 'num_teams', 'num_members', 'visibility', 'repo_admin_change_team_access', 'diff_view_style', 'theme', 'keep_activity_private') VALUES (2, 'h21', 'h21', '', '', 0, '', '', '', 0, 0, 0, '', 1, '', '', 'f6e434f38ad8887e166115220792b71f', '50b9f73ad7375ce8d238d7e2608417ba', '', '', 1667744549, 1725548395, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 'e5a9d8684a8edfed460b8d42fd28842f', '', 1, 0, 0, 0, 10, 1, 1, 0, 1, '', '', 0); INSERT OR IGNORE INTO 'user'('id', 'lower_name', 'name', 'full_name', 'email', 'keep_email_private', 'email_notifications_preference', 'passwd', 'passwd_hash_algo', 'must_change_password', 'login_type', 'login_source', 'login_name', 'type', 'location', 'website', 'rands', 'salt', 'language', 'description', 'created_unix', 'updated_unix', 'last_login_unix', 'last_repo_visibility', 'max_repo_creation', 'is_active', 'is_admin', 'is_restricted', 'allow_git_hook', 'allow_import_local', 'allow_create_organization', 'prohibit_login', 'avatar', 'avatar_email', 'use_custom_avatar', 'num_followers', 'num_following', 'num_stars', 'num_repos', 'num_teams', 'num_members', 'visibility', 'repo_admin_change_team_access', 'diff_view_style', 'theme', 'keep_activity_private') VALUES (3, 'edon', 'Edon', '', 'edvard@skaut.cz', 0, 'enabled', '$2a$10$Q8sBbFquHsUY6rVTnSC.8eCbQ4X2cYvGT4x.aH9y8SwEkdEd/RwTy', 'bcrypt$10', 0, 0, 0, '', 0, '', '', '6ed9bafa634be072deb7c0a32c4a3041', '01929a646450f432c74a7011def29bc7', 'cs-CZ', '', 1668850510, 1677268882, 1677268882, 0, -1, 1, 0, 0, 0, 0, 1, 0, '', 'edvard@skaut.cz', 0, 0, 0, 0, 0, 0, 0, 0, 0, 'unified', 'gitea-auto', 0); INSERT OR IGNORE INTO 'user'('id', 'lower_name', 'name', 'full_name', 'email', 'keep_email_private', 'email_notifications_preference', 'passwd', 'passwd_hash_algo', 'must_change_password', 'login_type', 'login_source', 'login_name', 'type', 'location', 'website', 'rands', 'salt', 'language', 'description', 'created_unix', 'updated_unix', 'last_login_unix', 'last_repo_visibility', 'max_repo_creation', 'is_active', 'is_admin', 'is_restricted', 'allow_git_hook', 'allow_import_local', 'allow_create_organization', 'prohibit_login', 'avatar', 'avatar_email', 'use_custom_avatar', 'num_followers', 'num_following', 'num_stars', 'num_repos', 'num_teams', 'num_members', 'visibility', 'repo_admin_change_team_access', 'diff_view_style', 'theme', 'keep_activity_private') VALUES (4, 'skj', 'skj', '', '', 0, '', '', '', 0, 0, 0, '', 1, '', '', 'd61b4b7dbaed1e3b6d18206b05121a4d', 'c43c60ed4af8238a17e30bcfe399cce8', '', '', 1678027167, 1683916096, 0, 1, -1, 1, 0, 0, 0, 0, 0, 0, 'edab074acc03cd820a9930cd491e2a0e', '', 1, 0, 0, 0, 13, 1, 1, 2, 1, '', '', 0); INSERT OR IGNORE INTO 'user'('id', 'lower_name', 'name', 'full_name', 'email', 'keep_email_private', 'email_notifications_preference', 'passwd', 'passwd_hash_algo', 'must_change_password', 'login_type', 'login_source', 'login_name', 'type', 'location', 'website', 'rands', 'salt', 'language', 'description', 'created_unix', 'updated_unix', 'last_login_unix', 'last_repo_visibility', 'max_repo_creation', 'is_active', 'is_admin', 'is_restricted', 'allow_git_hook', 'allow_import_local', 'allow_create_organization', 'prohibit_login', 'avatar', 'avatar_email', 'use_custom_avatar', 'num_followers', 'num_following', 'num_stars', 'num_repos', 'num_teams', 'num_members', 'visibility', 'repo_admin_change_team_access', 'diff_view_style', 'theme', 'keep_activity_private') VALUES (6, 'bek', 'bek', '', '', 0, '', '', '', 0, 0, 0, '', 1, '', '', 'a9608d2f6cbc807d1f8827a32cdd3aba', '6eb10adad0ef811dd1127e553aca34bd', '', '', 1709244654, 1715185730, 0, 1, -1, 1, 0, 0, 0, 0, 0, 0, '4a469d04aa4d0184042bf1bf35bd89d0', '', 1, 0, 0, 0, 6, 1, 1, 2, 1, '', '', 0); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (4, 7, '68c47effd267f8b0b690f4180eafeddf7e6ec504', 1, 'C', 113164, 1664831903); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (70, 7, '68c47effd267f8b0b690f4180eafeddf7e6ec504', 0, 'Shell', 262, 1665390819); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (71, 14, '31007558bde92689672cd5368e3899a1648a7639', 1, 'Shell', 342, 1667737382); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (72, 17, '1faced2cea8b9da6cd9fb15962d0a62d6fc63869', 0, 'CMake', 3245, 1667745341); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (73, 17, '1faced2cea8b9da6cd9fb15962d0a62d6fc63869', 0, 'Python', 9320, 1667745341); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (74, 17, '1faced2cea8b9da6cd9fb15962d0a62d6fc63869', 1, 'C', 36186, 1667745341); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (75, 17, '1faced2cea8b9da6cd9fb15962d0a62d6fc63869', 0, 'C++', 5668, 1667745341); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (76, 18, '67967ee7ae1b0e13e9ec99da8ed0994b26aba35c', 1, 'Go', 2924, 1667745390); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (77, 13, 'b176914379affb0c29065c4180a661cfb79b05f5', 1, 'Shell', 109, 1668024117); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (78, 7, '68c47effd267f8b0b690f4180eafeddf7e6ec504', 0, 'Python', 235, 1668640499); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (82, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'GAP', 712, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (83, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'sed', 799, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (84, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'R', 14063, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (85, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Awk', 6279, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (86, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Roff', 34095, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (87, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'DIGITAL Command Language', 31241, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (88, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Perl', 64795, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (89, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Yacc', 84509, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (90, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'C++', 454884, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (91, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Max', 1167, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (92, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Shell', 15341, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (93, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'AppleScript', 5163, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (94, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 1, 'C', 11565051, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (95, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Lex', 20050, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (96, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'OpenEdge ABL', 5304, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (97, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Batchfile', 11805, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (98, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Makefile', 39458, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (99, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 0, 'Assembly', 37845, 1672838102); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (100, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 1, 'C', 13113460, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (101, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'GAP', 712, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (102, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Shell', 24668, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (103, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'sed', 799, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (104, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'R', 14063, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (105, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Batchfile', 9888, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (106, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Awk', 7459, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (107, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Perl', 64608, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (108, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Lua', 737352, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (109, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'OpenEdge ABL', 4706, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (110, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'AppleScript', 5162, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (111, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'C++', 623931, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (112, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Makefile', 26754, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (113, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'DIGITAL Command Language', 33005, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (114, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'CSS', 3344, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (115, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Assembly', 34872, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (116, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 0, 'Roff', 34096, 1672838286); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (117, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'GAP', 712, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (118, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Max', 1167, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (119, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Makefile', 26810, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (120, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Batchfile', 10284, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (121, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Roff', 34359, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (122, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Perl', 68524, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (123, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Lua', 833666, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (124, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'C++', 614088, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (125, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'OpenEdge ABL', 4706, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (126, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'sed', 799, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (127, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'R', 14063, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (128, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'AppleScript', 5174, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (129, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 1, 'C', 12850628, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (130, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Assembly', 34935, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (131, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Shell', 19095, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (132, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'Awk', 6892, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (133, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'DIGITAL Command Language', 33024, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (134, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 0, 'CSS', 3344, 1672838548); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (135, 25, 'd5a0b111e7bdea41ee71c8da1ac3c3f76ffea764', 1, 'Vim Script', 168, 1672842024); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (136, 26, '2d394b62adf4473f46cbb924e021cd487953eda1', 1, 'Python', 68539, 1675707121); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (137, 26, '2d394b62adf4473f46cbb924e021cd487953eda1', 0, 'Go', 1286, 1675708973); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (143, 28, 'da63b6792d3e4716dcbefe27569808ada7a03274', 0, 'CMake', 128, 1677101740); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (144, 28, 'da63b6792d3e4716dcbefe27569808ada7a03274', 1, 'C++', 181491, 1677101740); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (145, 28, 'da63b6792d3e4716dcbefe27569808ada7a03274', 0, 'C', 2413, 1677101740); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (147, 29, '45fd4daddc35560b9cd741954eb42a6364fe411f', 1, 'Go', 7001, 1677142219); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (148, 30, '4bf67ea6849e0aaf68fa0318d3bc82247a56c33a', 0, 'Shell', 7672, 1678027282); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (149, 30, '4bf67ea6849e0aaf68fa0318d3bc82247a56c33a', 1, 'HTML', 69664, 1678027282); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (150, 31, 'dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9', 1, 'Shell', 2770, 1678027414); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (151, 28, 'da63b6792d3e4716dcbefe27569808ada7a03274', 0, 'Shell', 808, 1678132208); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (152, 32, '47fa558c147cf434c26cb397de80ba089d2d1e6a', 0, 'PHP', 1268, 1679065105); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (153, 32, '47fa558c147cf434c26cb397de80ba089d2d1e6a', 0, 'Shell', 7531, 1679065105); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (154, 32, '47fa558c147cf434c26cb397de80ba089d2d1e6a', 0, 'sed', 1694, 1679065105); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (155, 32, '47fa558c147cf434c26cb397de80ba089d2d1e6a', 1, 'HTML', 952853, 1679065105); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (156, 5, '98cc5ba76d32e3e6f9583da2577056501f26272f', 1, 'Markdown', 7218, 1679757672); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (157, 33, '3a6f3591fbf96c0bb6fef3523b751b5c36a02a51', 0, 'Shell', 6149, 1680192035); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (158, 33, '3a6f3591fbf96c0bb6fef3523b751b5c36a02a51', 0, 'Awk', 3552, 1680192035); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (159, 33, '3a6f3591fbf96c0bb6fef3523b751b5c36a02a51', 1, 'HTML', 20085, 1680192035); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (161, 35, '1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8', 1, 'Shell', 1952, 1682194754); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (162, 35, '1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8', 0, 'Perl', 191, 1682194754); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (163, 36, '7604a9d4809e470a745a43b74995bca2c200d6c3', 1, 'Shell', 1389, 1682194825); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (164, 36, '7604a9d4809e470a745a43b74995bca2c200d6c3', 0, 'Perl', 528, 1682194825); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (165, 37, '3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806', 1, 'Shell', 1409, 1683578385); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (166, 37, '3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806', 0, 'Perl', 1090, 1683578385); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (167, 38, '0a679bded1b454cdb104f4dcf1b39c743611baf0', 1, 'Shell', 1413, 1683578434); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (168, 38, '0a679bded1b454cdb104f4dcf1b39c743611baf0', 0, 'Perl', 1265, 1683578434); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (169, 40, '657cc672de1a169895064885c8116a3e6e88e112', 0, 'Shell', 1228, 1683578549); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (170, 40, '657cc672de1a169895064885c8116a3e6e88e112', 1, 'Roff', 2949, 1683578549); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (171, 40, '657cc672de1a169895064885c8116a3e6e88e112', 0, 'HTML', 1786, 1683578549); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (172, 40, '657cc672de1a169895064885c8116a3e6e88e112', 0, 'Perl', 915, 1683578549); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (173, 41, '4f3d82fc840c40f5508f225e9c6e1d685e89fcdb', 0, 'Perl', 915, 1683578588); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (174, 41, '4f3d82fc840c40f5508f225e9c6e1d685e89fcdb', 1, 'Shell', 1470, 1683578588); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (175, 42, '3457febf780d7956e874ea3ab611507eb7367666', 1, 'Shell', 1472, 1683915969); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (176, 42, '3457febf780d7956e874ea3ab611507eb7367666', 0, 'Perl', 370, 1683915969); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (177, 43, '7ed82311f2f5d8216245e21418271ea19aaea5cf', 0, 'Perl', 343, 1683916022); INSERT OR IGNORE INTO 'language_stat'('id', 'repo_id', 'commit_id', 'is_primary', 'language', 'size', 'created_unix') VALUES (178, 43, '7ed82311f2f5d8216245e21418271ea19aaea5cf', 1, 'Shell', 1472, 1683916022); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (1, 7, 0, 1, 1729024950, 0, 0, '', 'https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (7, 18, 28800000000000, 1, 1741749021, 1741777821, 0, '', 'https://gitlab.com/prokop_paruzek/botik.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (21, 46, 28800000000000, 1, 1741749019, 1741777819, 0, '', 'https://github.com/stp2/13k.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (22, 49, 0, 1, 1729006951, 0, 0, '', 'https://gitlab.fit.cvut.cz/paruzpro/bi-ag1.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (23, 51, 0, 1, 1729006952, 0, 0, '', 'https://gitlab.fit.cvut.cz/paruzpro/bi-aag.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (24, 58, 0, 1, 1729008751, 0, 0, '', 'https://gitlab.fit.cvut.cz/BI-KAB/B232/C11/paruzpro.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (25, 68, 28800000000000, 1, 1741749017, 1741777817, 0, '', 'https://gitlab.fit.cvut.cz/BI-HWB/B241/cz/paruzpro.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (26, 70, 28800000000000, 1, 1741749010, 1741777810, 0, '', 'https://gitlab.fit.cvut.cz/paruzpro/mpp.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (27, 71, 28800000000000, 1, 1741749008, 1741777808, 0, '', 'https://gitlab.fit.cvut.cz/BI-PPA/B241/BI/paruzpro.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (28, 74, 28800000000000, 1, 1741749012, 1741777812, 0, '', 'https://gitlab.fit.cvut.cz/kondrfil/ptsd.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (30, 78, 28800000000000, 1, 1741749007, 1741777807, 0, '', 'https://gitlab.fit.cvut.cz/paruzpro/bi-bap.git'); INSERT OR IGNORE INTO 'mirror'('id', 'repo_id', 'interval', 'enable_prune', 'updated_unix', 'next_update_unix', 'lfs_enabled', 'lfs_endpoint', 'remote_address') VALUES (31, 79, 28800000000000, 1, 1741749015, 1741777815, 0, '', 'https://gitlab.fit.cvut.cz/paruzpro/bi-zum-ls2025-paruzpro.git'); INSERT OR IGNORE INTO 'push_mirror'('id', 'repo_id', 'remote_name', 'interval', 'created_unix', 'last_update', 'last_error', 'sync_on_commit', 'remote_address') VALUES (10, 48, 'remote_mirror_P6k0ZIiVBC', 28800000000000, 1726332082, 1741749022, '', 0, 'https://gitlab.fit.cvut.cz/paruzpro/bi-aps'); INSERT OR IGNORE INTO 'push_mirror'('id', 'repo_id', 'remote_name', 'interval', 'created_unix', 'last_update', 'last_error', 'sync_on_commit', 'remote_address') VALUES (13, 81, 'remote_mirror_dbd55KnE7U', 28800000000000, 1740608763, 1741749023, '', 1, 'https://gitlab.fit.cvut.cz/paruzpro/BI-VAK.git'); INSERT OR IGNORE INTO 'repo_redirect'('id', 'owner_id', 'lower_name', 'redirect_repo_id') VALUES (1, 1, 'horalserver-web', 5); INSERT OR IGNORE INTO 'repo_redirect'('id', 'owner_id', 'lower_name', 'redirect_repo_id') VALUES (2, 1, 'horalos', 13); INSERT OR IGNORE INTO 'repo_redirect'('id', 'owner_id', 'lower_name', 'redirect_repo_id') VALUES (3, 1, 'botik', 18); INSERT OR IGNORE INTO 'repo_redirect'('id', 'owner_id', 'lower_name', 'redirect_repo_id') VALUES (4, 1, 'shell-intro', 30); INSERT OR IGNORE INTO 'repo_redirect'('id', 'owner_id', 'lower_name', 'redirect_repo_id') VALUES (5, 4, 'compare', 38); INSERT OR IGNORE INTO 'repo_redirect'('id', 'owner_id', 'lower_name', 'redirect_repo_id') VALUES (6, 6, 'du1', 52); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (4, 5, '98cc5ba76d32e3e6f9583da2577056501f26272f', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (5, 7, '68c47effd267f8b0b690f4180eafeddf7e6ec504', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (10, 13, 'b176914379affb0c29065c4180a661cfb79b05f5', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (11, 14, '31007558bde92689672cd5368e3899a1648a7639', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (12, 17, '1faced2cea8b9da6cd9fb15962d0a62d6fc63869', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (13, 18, '67967ee7ae1b0e13e9ec99da8ed0994b26aba35c', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (15, 21, 'bd437657494ee589d8cde53ca5910945f51071bc', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (16, 22, '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (17, 23, '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (18, 24, 'ba2f7b5456d0022af4d646297e56875e144ad585', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (19, 25, 'd5a0b111e7bdea41ee71c8da1ac3c3f76ffea764', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (20, 26, '2d394b62adf4473f46cbb924e021cd487953eda1', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (22, 28, 'da63b6792d3e4716dcbefe27569808ada7a03274', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (23, 29, '45fd4daddc35560b9cd741954eb42a6364fe411f', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (24, 30, '4bf67ea6849e0aaf68fa0318d3bc82247a56c33a', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (25, 31, 'dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (26, 32, '47fa558c147cf434c26cb397de80ba089d2d1e6a', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (27, 33, '3a6f3591fbf96c0bb6fef3523b751b5c36a02a51', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (28, 34, '1f741371672d1a34acc5d106ebdead90ab0bf6c1', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (29, 35, '1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (30, 36, '7604a9d4809e470a745a43b74995bca2c200d6c3', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (31, 37, '3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (32, 38, '0a679bded1b454cdb104f4dcf1b39c743611baf0', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (33, 40, '657cc672de1a169895064885c8116a3e6e88e112', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (34, 41, '4f3d82fc840c40f5508f225e9c6e1d685e89fcdb', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (35, 42, '3457febf780d7956e874ea3ab611507eb7367666', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (36, 43, '7ed82311f2f5d8216245e21418271ea19aaea5cf', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (37, 44, '43764ac0195af40c3a0b0fcbdeb2fca5b5138ebc', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (39, 46, '2cd23e9e711e58a9cc2aff27daf3a582930327df', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (40, 47, '781825ae5caef3f15de92d2bd6504bac2feac070', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (41, 48, '635b11cd20a1a7200649cd48af1a11b11dd37be9', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (42, 49, '152338278d89795c3371e65ef23b75082a015eca', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (43, 51, '6450d71d5b825928203460e275d7ebbfb19004f0', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (44, 52, '596d24a6a6e40e09ba1ad192406ad46a2ed21d5b', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (45, 53, 'd132ea60e5edc98d6c21d370a0bfb44890c4dd8f', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (46, 54, 'c9cb34ce4c472d06c2ab8812e4173256181868ba', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (47, 55, '9eccd2330c9dd244264167add4d1116d07696226', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (48, 58, 'bce1a34698a65ed881ffaa716cfae8831a165a2c', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (49, 59, 'fe108bf59ee69a2a2652d1de878c258887c370a9', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (50, 60, 'ad37787518b3bc7f55effec0a96936e350cc2cb3', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (51, 61, 'a671611b8dbe0f865a71039e3ee9cf70ea3dca54', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (52, 62, 'efb3328e490f158d06d0551dc455768cc36e954b', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (53, 63, 'b2526ecad61b7e6bda3b5d6ca0e34f6f243ce942', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (54, 64, '13b097cee3a1f899b88406c2c2eab3fd5914d308', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (56, 66, '9757a8baf7695f2817e751b2540d64475c7c2113', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (57, 68, 'd48976b9bfc35879c9495b03bb207969f09ec01e', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (58, 70, '163b27596d7468a8a7aae835cc17e6fa3510fc23', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (59, 71, 'c2282e72ac927740b9a6919a5dfe32fcf3484424', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (60, 72, 'c67420b56fb0ca7d2e4a19207320a2ebe8742d00', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (61, 73, '7ce69a8e7b886b176add9ab2f32d762ad51cd265', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (62, 74, '045be2799eeef2e40108115da29efe83f30011d1', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (63, 75, 'd08ede014d8d85a61f0660a995ed4235da7a7a13', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (65, 78, 'ca54ceb566844bbfbeb4c3d6b0c4958b7f97968c', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (66, 79, '9834177a9c8afb10efe48bed387d657cecb7b7d7', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (67, 80, 'f1000b3add2cbdd43e6db5fa59ae1ff73df54541', 1); INSERT OR IGNORE INTO 'repo_indexer_status'('id', 'repo_id', 'commit_sha', 'indexer_type') VALUES (68, 81, '51900e4d49711a50154fbc6d1ca29da8a544bb87', 1); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (29, 5, 1, NULL, 1664361442); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (30, 5, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1664361442); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (31, 5, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1664361442); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (32, 5, 4, NULL, 1664361442); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (33, 5, 5, NULL, 1664361442); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (34, 5, 8, NULL, 1664361442); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (35, 5, 9, NULL, 1664361442); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (43, 7, 1, NULL, 1664831900); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (44, 7, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1664831900); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (45, 7, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1664831900); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (46, 7, 4, NULL, 1664831900); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (47, 7, 5, NULL, 1664831900); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (48, 7, 8, NULL, 1664831900); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (49, 7, 9, NULL, 1664831900); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (85, 13, 1, NULL, 1667254652); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (86, 13, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1667254652); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (87, 13, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1667254652); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (88, 13, 4, NULL, 1667254652); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (89, 13, 5, NULL, 1667254652); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (90, 13, 8, NULL, 1667254652); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (91, 13, 9, NULL, 1667254652); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (92, 14, 1, NULL, 1667737323); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (93, 14, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1667737323); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (94, 14, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1667737323); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (95, 14, 4, NULL, 1667737323); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (96, 14, 5, NULL, 1667737323); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (97, 14, 8, NULL, 1667737323); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (98, 14, 9, NULL, 1667737323); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (113, 17, 1, NULL, 1667745336); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (114, 17, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1667745336); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (115, 17, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1667745336); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (116, 17, 4, NULL, 1667745336); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (117, 17, 5, NULL, 1667745336); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (118, 17, 8, NULL, 1667745336); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (119, 17, 9, NULL, 1667745336); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (120, 18, 1, NULL, 1667745386); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (121, 18, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1667745386); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (122, 18, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1667745386); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (123, 18, 4, NULL, 1667745386); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (124, 18, 5, NULL, 1667745386); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (125, 18, 8, NULL, 1667745386); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (126, 18, 9, NULL, 1667745386); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (141, 21, 1, NULL, 1671111711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (142, 21, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1671111711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (143, 21, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1671111711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (144, 21, 4, NULL, 1671111711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (145, 21, 5, NULL, 1671111711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (146, 21, 8, NULL, 1671111711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (147, 21, 9, NULL, 1671111711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (148, 22, 1, NULL, 1672837785); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (149, 22, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1672837785); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (150, 22, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1672837785); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (151, 22, 4, NULL, 1672837785); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (152, 22, 5, NULL, 1672837785); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (153, 22, 8, NULL, 1672837785); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (154, 22, 9, NULL, 1672837785); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (155, 23, 1, NULL, 1672838175); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (156, 23, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1672838175); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (157, 23, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1672838175); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (158, 23, 4, NULL, 1672838175); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (159, 23, 5, NULL, 1672838175); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (160, 23, 8, NULL, 1672838175); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (161, 23, 9, NULL, 1672838175); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (162, 24, 1, NULL, 1672838441); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (163, 24, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1672838441); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (164, 24, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1672838441); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (165, 24, 4, NULL, 1672838441); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (166, 24, 5, NULL, 1672838441); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (167, 24, 8, NULL, 1672838441); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (168, 24, 9, NULL, 1672838441); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (169, 25, 1, NULL, 1672841976); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (170, 25, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1672841976); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (171, 25, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1672841976); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (172, 25, 4, NULL, 1672841976); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (173, 25, 5, NULL, 1672841976); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (174, 25, 8, NULL, 1672841976); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (175, 25, 9, NULL, 1672841976); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (176, 26, 1, NULL, 1675707057); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (177, 26, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1675707057); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (178, 26, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1675707057); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (179, 26, 4, NULL, 1675707057); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (180, 26, 5, NULL, 1675707057); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (181, 26, 8, NULL, 1675707057); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (182, 26, 9, NULL, 1675707057); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (190, 28, 1, NULL, 1677098252); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (191, 28, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1677098252); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (192, 28, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1677098252); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (193, 28, 4, NULL, 1677098252); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (194, 28, 5, NULL, 1677098252); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (195, 28, 8, NULL, 1677098252); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (196, 28, 9, NULL, 1677098252); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (197, 29, 1, NULL, 1677140134); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (198, 29, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1677140134); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (199, 29, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1677140134); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (200, 29, 4, NULL, 1677140134); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (201, 29, 5, NULL, 1677140134); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (202, 29, 8, NULL, 1677140134); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (203, 29, 9, NULL, 1677140134); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (204, 30, 1, NULL, 1678027279); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (205, 30, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1678027279); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (206, 30, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1678027279); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (207, 30, 4, NULL, 1678027279); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (208, 30, 5, NULL, 1678027279); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (209, 30, 8, NULL, 1678027279); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (210, 30, 9, NULL, 1678027279); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (211, 31, 1, NULL, 1678027411); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (212, 31, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1678027411); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (213, 31, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1678027411); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (214, 31, 4, NULL, 1678027411); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (215, 31, 5, NULL, 1678027411); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (216, 31, 8, NULL, 1678027411); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (217, 31, 9, NULL, 1678027411); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (218, 32, 1, NULL, 1679065102); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (219, 32, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1679065102); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (220, 32, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge"}', 1679065102); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (221, 32, 4, NULL, 1679065102); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (222, 32, 5, NULL, 1679065102); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (223, 32, 8, NULL, 1679065102); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (224, 32, 9, NULL, 1679065102); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (225, 33, 1, NULL, 1680192031); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (226, 33, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1680192031); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (227, 33, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1680192031); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (228, 33, 4, NULL, 1680192031); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (229, 33, 5, NULL, 1680192031); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (230, 33, 8, NULL, 1680192031); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (231, 33, 9, NULL, 1680192031); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (232, 34, 1, NULL, 1681846140); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (233, 34, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1681846140); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (234, 34, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1681846140); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (235, 34, 4, NULL, 1681846140); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (236, 34, 5, NULL, 1681846140); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (237, 34, 8, NULL, 1681846140); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (238, 34, 9, NULL, 1681846140); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (239, 35, 1, NULL, 1682194751); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (240, 35, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1682194751); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (241, 35, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1682194751); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (242, 35, 4, NULL, 1682194751); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (243, 35, 5, NULL, 1682194751); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (244, 35, 8, NULL, 1682194751); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (245, 35, 9, NULL, 1682194751); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (246, 36, 1, NULL, 1682194822); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (247, 36, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1682194822); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (248, 36, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1682194822); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (249, 36, 4, NULL, 1682194822); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (250, 36, 5, NULL, 1682194822); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (251, 36, 8, NULL, 1682194822); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (252, 36, 9, NULL, 1682194822); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (253, 37, 1, NULL, 1683578381); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (254, 37, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1683578381); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (255, 37, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1683578381); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (256, 37, 4, NULL, 1683578381); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (257, 37, 5, NULL, 1683578381); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (258, 37, 8, NULL, 1683578381); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (259, 37, 9, NULL, 1683578381); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (260, 38, 1, NULL, 1683578431); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (261, 38, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1683578431); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (262, 38, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1683578431); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (263, 38, 4, NULL, 1683578431); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (264, 38, 5, NULL, 1683578431); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (265, 38, 8, NULL, 1683578431); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (266, 38, 9, NULL, 1683578431); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (274, 40, 1, NULL, 1683578546); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (275, 40, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1683578546); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (276, 40, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1683578546); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (277, 40, 4, NULL, 1683578546); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (278, 40, 5, NULL, 1683578546); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (279, 40, 8, NULL, 1683578546); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (280, 40, 9, NULL, 1683578546); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (281, 41, 1, NULL, 1683578585); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (282, 41, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1683578585); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (283, 41, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1683578585); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (284, 41, 4, NULL, 1683578585); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (285, 41, 5, NULL, 1683578585); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (286, 41, 8, NULL, 1683578585); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (287, 41, 9, NULL, 1683578585); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (288, 42, 1, NULL, 1683915963); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (289, 42, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1683915963); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (290, 42, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1683915963); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (291, 42, 4, NULL, 1683915963); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (292, 42, 5, NULL, 1683915963); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (293, 42, 8, NULL, 1683915963); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (294, 42, 9, NULL, 1683915963); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (295, 43, 1, NULL, 1683916017); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (296, 43, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1683916017); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (297, 43, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1683916017); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (298, 43, 4, NULL, 1683916017); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (299, 43, 5, NULL, 1683916017); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (300, 43, 8, NULL, 1683916017); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (301, 43, 9, NULL, 1683916017); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (302, 44, 1, NULL, 1683916096); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (303, 44, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1683916096); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (304, 44, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1683916096); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (305, 44, 4, NULL, 1683916096); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (306, 44, 5, NULL, 1683916096); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (307, 44, 8, NULL, 1683916096); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (308, 44, 9, NULL, 1683916096); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (316, 46, 1, NULL, 1688500117); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (317, 46, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1688500117); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (318, 46, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1688500117); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (319, 46, 4, NULL, 1688500117); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (320, 46, 5, NULL, 1688500117); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (321, 46, 8, NULL, 1688500117); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (322, 46, 9, NULL, 1688500117); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (323, 47, 1, NULL, 1695119602); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (324, 47, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1695119602); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (325, 47, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1695119602); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (326, 47, 4, NULL, 1695119602); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (327, 47, 5, NULL, 1695119602); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (328, 47, 8, NULL, 1695119602); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (329, 47, 9, NULL, 1695119602); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (330, 48, 1, NULL, 1696346935); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (331, 48, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1696346935); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (332, 48, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1696346935); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (333, 48, 4, NULL, 1696346935); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (334, 48, 5, NULL, 1696346935); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (335, 48, 8, NULL, 1696346935); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (336, 48, 9, NULL, 1696346935); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (337, 49, 1, NULL, 1697030675); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (338, 49, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1697030675); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (339, 49, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1697030675); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (340, 49, 4, NULL, 1697030675); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (341, 49, 5, NULL, 1697030675); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (342, 49, 8, NULL, 1697030675); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (343, 49, 9, NULL, 1697030675); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (351, 51, 1, NULL, 1698590197); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (352, 51, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1698590197); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (353, 51, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1698590197); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (354, 51, 4, NULL, 1698590197); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (355, 51, 5, NULL, 1698590197); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (356, 51, 8, NULL, 1698590197); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (357, 51, 9, NULL, 1698590197); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (358, 52, 1, NULL, 1709244680); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (359, 52, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1709244680); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (360, 52, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1709244680); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (361, 52, 4, NULL, 1709244680); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (362, 52, 5, NULL, 1709244680); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (363, 52, 8, NULL, 1709244680); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (364, 52, 9, NULL, 1709244680); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (372, 54, 1, NULL, 1710579090); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (373, 54, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1710579090); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (374, 54, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1710579090); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (375, 54, 4, NULL, 1710579090); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (376, 54, 5, NULL, 1710579090); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (377, 54, 8, NULL, 1710579090); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (378, 54, 9, NULL, 1710579090); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (379, 55, 1, NULL, 1710798563); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (380, 55, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1710798563); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (381, 55, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1710798563); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (382, 55, 4, NULL, 1710798563); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (383, 55, 5, NULL, 1710798563); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (384, 55, 8, NULL, 1710798563); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (385, 55, 9, NULL, 1710798563); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (400, 58, 1, NULL, 1711317711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (401, 58, 2, '{"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true}', 1711317711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (402, 58, 3, '{"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false}', 1711317711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (403, 58, 4, NULL, 1711317711); INSERT OR IGNORE INTO 'repo_unit'('id', 'repo_id', 'type', 'config', 'created_unix') VALUES (404, 58, 5, NULL, 1711317711); INSERT OR IGNORE INTO 'star'('id', 'uid', 'repo_id', 'created_unix') VALUES (1, 1, 7, 1665480054); INSERT OR IGNORE INTO 'star'('id', 'uid', 'repo_id', 'created_unix') VALUES (2, 1, 28, 1678141322); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (1, 'B221', 1, 1664831903, 1664831903); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (2, 'BI-PA1', 1, 1664831903, 1664831903); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (3, 'PA1', 1, 1664831903, 1664831903); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (4, 'c', 0, 1664832075, 1664832861); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (5, 'game', 0, 1664832075, 1664832861); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (6, 'roguelike', 0, 1664832075, 1664832864); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (7, 'nethack', 0, 1664832250, 1664832864); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (8, 'roguelike-game', 0, 1664832250, 1664832864); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (9, 'activism', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (10, 'anonymity', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (11, 'anonymity-enhancement', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (12, 'anonymization', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (13, 'linux', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (14, 'macos', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (15, 'opsec', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (16, 'privacy', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (17, 'privacy-enhancing-technologies', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (18, 'privacy-online', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (19, 'privacy-protection', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (20, 'privacy-tools', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (21, 'qubes-os', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (22, 'security', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (23, 'security-hardening', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (24, 'tails', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (25, 'tor', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (26, 'veracrypt', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (27, 'whonix', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (28, 'windows', 0, 1675953628, 1706612212); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (29, 'bi-ppa', 1, 1729020897, 1729020897); INSERT OR IGNORE INTO 'topic'('id', 'name', 'repo_count', 'created_unix', 'updated_unix') VALUES (30, 'homeworks', 1, 1729020897, 1729020897); INSERT OR IGNORE INTO 'repo_topic'(_rowid_, 'repo_id', 'topic_id') VALUES (1, 7, 1); INSERT OR IGNORE INTO 'repo_topic'(_rowid_, 'repo_id', 'topic_id') VALUES (2, 7, 2); INSERT OR IGNORE INTO 'repo_topic'(_rowid_, 'repo_id', 'topic_id') VALUES (3, 7, 3); INSERT OR IGNORE INTO 'repo_topic'(_rowid_, 'repo_id', 'topic_id') VALUES (4, 71, 29); INSERT OR IGNORE INTO 'repo_topic'(_rowid_, 'repo_id', 'topic_id') VALUES (5, 71, 30); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (5, 1, 5, 1, 1664361442, 1664361442); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (7, 1, 7, 1, 1664831900, 1664831900); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (13, 1, 13, 1, 1667254652, 1667254652); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (14, 1, 14, 1, 1667737323, 1667737323); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (17, 1, 17, 1, 1667745336, 1667745336); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (18, 1, 18, 1, 1667745386, 1667745386); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (21, 1, 21, 1, 1671111711, 1671111711); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (22, 1, 22, 1, 1672837785, 1672837785); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (23, 1, 23, 1, 1672838175, 1672838175); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (24, 1, 24, 1, 1672838441, 1672838441); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (25, 1, 25, 1, 1672841976, 1672841976); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (26, 1, 26, 1, 1675707057, 1675707057); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (28, 1, 28, 1, 1677098252, 1677098252); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (29, 1, 29, 1, 1677140134, 1677140134); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (30, 1, 30, 1, 1678027279, 1678027279); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (31, 1, 31, 1, 1678027411, 1678027411); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (32, 1, 32, 1, 1679065102, 1679065102); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (33, 1, 33, 1, 1680192031, 1680192031); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (34, 1, 34, 1, 1681846140, 1681846140); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (35, 1, 35, 1, 1682194751, 1682194751); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (36, 1, 36, 1, 1682194822, 1682194822); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (37, 1, 37, 1, 1683578381, 1683578381); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (38, 1, 38, 1, 1683578431, 1683578431); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (40, 1, 40, 1, 1683578546, 1683578546); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (41, 1, 41, 1, 1683578585, 1683578585); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (42, 1, 42, 1, 1683915963, 1683915963); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (43, 1, 43, 1, 1683916017, 1683916017); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (44, 1, 44, 1, 1683916096, 1683916096); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (46, 1, 46, 1, 1688500117, 1688500117); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (47, 1, 47, 1, 1695119602, 1695119602); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (48, 1, 48, 1, 1696346935, 1696346935); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (49, 1, 49, 1, 1697030675, 1697030675); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (51, 1, 51, 1, 1698590197, 1698590197); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (52, 1, 52, 1, 1709244680, 1709244680); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (53, 1, 53, 1, 1709473809, 1709473809); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (54, 1, 54, 1, 1710579090, 1710579090); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (55, 1, 55, 1, 1710798563, 1710798563); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (58, 1, 58, 1, 1711317711, 1711317711); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (59, 1, 59, 1, 1711652908, 1711652908); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (60, 1, 60, 1, 1712773425, 1712773425); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (61, 1, 61, 1, 1712778712, 1712778712); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (62, 1, 62, 1, 1714392764, 1714392764); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (63, 1, 63, 1, 1715185730, 1715185730); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (64, 1, 64, 1, 1725548395, 1725548395); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (66, 1, 66, 1, 1728491055, 1728491055); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (68, 1, 68, 1, 1729020579, 1729020579); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (70, 1, 70, 1, 1729020826, 1729020826); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (71, 1, 71, 1, 1729020892, 1729020892); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (72, 1, 72, 1, 1729197754, 1729197754); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (73, 1, 73, 1, 1729716157, 1729716157); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (74, 1, 74, 1, 1733168283, 1733168283); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (75, 1, 75, 1, 1734636072, 1734636072); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (78, 1, 78, 1, 1738406491, 1738406491); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (79, 1, 79, 1, 1739869896, 1739869896); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (80, 1, 80, 1, 1739992112, 1739992112); INSERT OR IGNORE INTO 'watch'('id', 'user_id', 'repo_id', 'mode', 'created_unix', 'updated_unix') VALUES (81, 1, 81, 1, 1740607479, 1740607479); INSERT OR IGNORE INTO 'org_user'('id', 'uid', 'org_id', 'is_public') VALUES (1, 1, 2, 0); INSERT OR IGNORE INTO 'org_user'('id', 'uid', 'org_id', 'is_public') VALUES (2, 1, 4, 0); INSERT OR IGNORE INTO 'org_user'('id', 'uid', 'org_id', 'is_public') VALUES (3, 1, 6, 0); INSERT OR IGNORE INTO 'team'('id', 'org_id', 'lower_name', 'name', 'description', 'authorize', 'num_repos', 'num_members', 'includes_all_repositories', 'can_create_org_repo') VALUES (1, 2, 'owners', 'Owners', '', 4, 10, 1, 1, 1); INSERT OR IGNORE INTO 'team'('id', 'org_id', 'lower_name', 'name', 'description', 'authorize', 'num_repos', 'num_members', 'includes_all_repositories', 'can_create_org_repo') VALUES (2, 4, 'owners', 'Owners', '', 4, 13, 1, 1, 1); INSERT OR IGNORE INTO 'team'('id', 'org_id', 'lower_name', 'name', 'description', 'authorize', 'num_repos', 'num_members', 'includes_all_repositories', 'can_create_org_repo') VALUES (3, 6, 'owners', 'Owners', '', 4, 6, 1, 1, 1); INSERT OR IGNORE INTO 'team_user'('id', 'org_id', 'team_id', 'uid') VALUES (1, 2, 1, 1); INSERT OR IGNORE INTO 'team_user'('id', 'org_id', 'team_id', 'uid') VALUES (2, 4, 2, 1); INSERT OR IGNORE INTO 'team_user'('id', 'org_id', 'team_id', 'uid') VALUES (3, 6, 3, 1); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (1, 2, 1, 5); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (2, 2, 1, 13); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (3, 2, 1, 18); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (5, 2, 1, 21); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (6, 2, 1, 22); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (7, 2, 1, 23); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (8, 2, 1, 24); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (9, 4, 2, 30); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (10, 4, 2, 31); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (11, 4, 2, 32); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (12, 4, 2, 33); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (13, 2, 1, 34); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (14, 4, 2, 35); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (15, 4, 2, 36); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (16, 4, 2, 37); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (17, 4, 2, 38); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (19, 4, 2, 40); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (20, 4, 2, 41); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (21, 4, 2, 42); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (22, 4, 2, 43); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (23, 4, 2, 44); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (25, 2, 1, 46); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (26, 6, 3, 52); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (27, 6, 3, 55); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (28, 6, 3, 59); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (29, 6, 3, 61); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (30, 6, 3, 62); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (31, 6, 3, 63); INSERT OR IGNORE INTO 'team_repo'('id', 'org_id', 'team_id', 'repo_id') VALUES (32, 2, 1, 64); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (1, 2, 1, 1, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (2, 2, 1, 2, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (3, 2, 1, 3, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (4, 2, 1, 4, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (5, 2, 1, 5, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (6, 2, 1, 6, 1); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (7, 2, 1, 7, 1); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (8, 2, 1, 8, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (9, 2, 1, 9, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (10, 4, 2, 1, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (11, 4, 2, 2, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (12, 4, 2, 3, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (13, 4, 2, 4, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (14, 4, 2, 5, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (15, 4, 2, 6, 1); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (16, 4, 2, 7, 1); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (17, 4, 2, 8, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (18, 4, 2, 9, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (19, 6, 3, 1, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (20, 6, 3, 2, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (21, 6, 3, 3, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (22, 6, 3, 4, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (23, 6, 3, 5, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (24, 6, 3, 6, 1); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (25, 6, 3, 7, 1); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (26, 6, 3, 8, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (27, 6, 3, 9, 4); INSERT OR IGNORE INTO 'team_unit'('id', 'org_id', 'team_id', 'type', 'access_mode') VALUES (28, 6, 3, 10, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (1, 1, 5, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (2, 1, 13, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (3, 1, 18, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (5, 1, 21, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (6, 1, 22, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (7, 1, 23, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (8, 1, 24, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (9, 1, 30, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (10, 1, 31, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (11, 1, 32, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (12, 1, 33, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (13, 1, 34, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (14, 1, 35, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (15, 1, 36, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (16, 1, 37, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (17, 1, 38, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (19, 1, 40, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (20, 1, 41, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (21, 1, 42, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (22, 1, 43, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (23, 1, 44, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (25, 1, 46, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (26, 1, 52, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (27, 1, 55, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (28, 1, 59, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (29, 1, 61, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (30, 1, 62, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (31, 1, 63, 4); INSERT OR IGNORE INTO 'access'('id', 'user_id', 'repo_id', 'mode') VALUES (32, 1, 64, 4); INSERT OR IGNORE INTO 'public_key'('id', 'owner_id', 'name', 'fingerprint', 'content', 'mode', 'type', 'login_source_id', 'created_unix', 'updated_unix', 'verified') VALUES (2, 1, 'fido2', 'SHA256:SvUeyPuulfFuFVEKENNsE4PDuK+C7OLWL6AitFv7NQM', 'sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIKVFZGxG7wh0FsUbQvmn0AeBbrnT2ZG4KaijzisWC1ruAAAABHNzaDo= prokop.paruzek@paruzkovi.cz', 2, 1, 0, 1662471754, 1739134155, 0); INSERT OR IGNORE INTO 'public_key'('id', 'owner_id', 'name', 'fingerprint', 'content', 'mode', 'type', 'login_source_id', 'created_unix', 'updated_unix', 'verified') VALUES (3, 0, 'rpi', 'SHA256:U3ZnFwUGCJdxfm3GEzS2VmL14+fUlvlXXhMt63DhVfY', 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN5r+n7C6Cxn335jFEc8A4dQDcQdXR3ZKWwmqvR1HNI3 pi@rpi3', 2, 2, 0, 1672838017, 1678400273, 0); INSERT OR IGNORE INTO 'public_key'('id', 'owner_id', 'name', 'fingerprint', 'content', 'mode', 'type', 'login_source_id', 'created_unix', 'updated_unix', 'verified') VALUES (4, 1, 'trezor', 'SHA256:mVdAIM9b4NwPMlEd5PK9RGTEHrqjVhd8HbipWLLXzPM', 'sk-ecdsa-sha2-nistp256@openssh.com AAAAInNrLWVjZHNhLXNoYTItbmlzdHAyNTZAb3BlbnNzaC5jb20AAAAIbmlzdHAyNTYAAABBBCMw+W7LvmBzyU4ncIsT0md1JnUbhohq2qOHrer1scSe/avqIvKsCEO03+6R5O6cbqq8pZ3QgNZTAxJYvgiiV+AAAAAEc3NoOg== trezor', 2, 1, 0, 1674054961, 1674054961, 0); INSERT OR IGNORE INTO 'public_key'('id', 'owner_id', 'name', 'fingerprint', 'content', 'mode', 'type', 'login_source_id', 'created_unix', 'updated_unix', 'verified') VALUES (5, 1, 'paruzpro@fit.cvut.cz', 'SHA256:QWrGWuvOlAz2t/2GAiZoDKe0yJrKlvYWW2PDm7wnIVY', 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK/EPOzaOUH5Ysy6ZMqW2GHv56vxVa23gBNBM8Ub/Xnv paruzpro@fit.cvut.cz', 2, 1, 0, 1678288446, 1714034754, 0); INSERT OR IGNORE INTO 'public_key'('id', 'owner_id', 'name', 'fingerprint', 'content', 'mode', 'type', 'login_source_id', 'created_unix', 'updated_unix', 'verified') VALUES (6, 1, 'idem', 'SHA256:knjwacoep4SJbTlNn2ku7JiAQDGI372QPuHIypuZT7U', 'sk-ecdsa-sha2-nistp256@openssh.com AAAAInNrLWVjZHNhLXNoYTItbmlzdHAyNTZAb3BlbnNzaC5jb20AAAAIbmlzdHAyNTYAAABBBHsMGJh5ilfY+fbpMFyozq5mY6hmb5NHfhrjiyNHaR/64aMRjgcK718iP2K63C3BRihTnhG2a1lbHU2xlX+2AB0AAAAEc3NoOg== prokop@paruzpro-ntb', 2, 1, 0, 1678739812, 1729762312, 0); INSERT OR IGNORE INTO 'public_key'('id', 'owner_id', 'name', 'fingerprint', 'content', 'mode', 'type', 'login_source_id', 'created_unix', 'updated_unix', 'verified') VALUES (9, 1, 'yubiS', 'SHA256:8qdkR/AyMi2YFH87hcgEcMx9rC790bYPvvpk53eUVGA', 'sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIHESkkykt54uYL3z4T0QzPbX3kEKKgj5SIEPIeRW4oBTAAAABHNzaDo= prokop@paruzpro-ntb', 2, 1, 0, 1730137647, 1740648518, 0); INSERT OR IGNORE INTO 'deploy_key'('id', 'key_id', 'repo_id', 'name', 'fingerprint', 'mode', 'created_unix', 'updated_unix') VALUES (1, 3, 22, 'rpi', 'SHA256:U3ZnFwUGCJdxfm3GEzS2VmL14+fUlvlXXhMt63DhVfY', 2, 1672838017, 1678400273); INSERT OR IGNORE INTO 'deploy_key'('id', 'key_id', 'repo_id', 'name', 'fingerprint', 'mode', 'created_unix', 'updated_unix') VALUES (2, 3, 23, 'rpi3', 'SHA256:U3ZnFwUGCJdxfm3GEzS2VmL14+fUlvlXXhMt63DhVfY', 2, 1672838206, 1674828611); INSERT OR IGNORE INTO 'deploy_key'('id', 'key_id', 'repo_id', 'name', 'fingerprint', 'mode', 'created_unix', 'updated_unix') VALUES (3, 3, 24, 'rpi3', 'SHA256:U3ZnFwUGCJdxfm3GEzS2VmL14+fUlvlXXhMt63DhVfY', 2, 1672838454, 1674828686); INSERT OR IGNORE INTO 'lfs_meta_object'('id', 'oid', 'size', 'repository_id', 'created_unix') VALUES (1, '22f788c2cb192bdf8bf5a7a18a78c0f8fae4e438256b8202ebd26857e428c7bb', 252248, 29, 1677140758); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (1, 30, 1, '', 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1695148286, 1695148286, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (2, 10, 1, '', 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'I Will derive', 'I will derive', '', '', 0, 0, 0, '', '', '', 1703880798, 1703880798, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (3, 10, 1, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Linda', 'Lina', '', '', 0, 0, 0, '', '', '', 1704574010, 1704574010, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (4, 0, 1, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', 'Od A.', '', 1704574349, 1704574349, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (5, 0, 1, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', 'Od C.', '', 1704574868, 1704574868, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (6, 0, 1, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', replace(replace('Voe\r\nŠtvát\r\nLeguán chleba namaže\r\nČíčo\r\nPrde\r\nVybodni\r\nČíčo z ryby\r\nHadí buráku\r\nČíči','\n', char(10)),'\r', char(13)), '', 1704577754, 1704577754, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (7, 19, 1, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 21, 0, 0, '', '', '', 1706383649, 1706383649, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (8, 19, 1, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 18, 0, 0, '', '', '', 1706383649, 1706383649, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (9, 20, 1, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 21, 0, 0, '', '', '', 1706383658, 1706383658, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (10, 20, 1, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 18, 0, 0, '', '', '', 1706383658, 1706383658, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (11, 2, 1, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706386285, 1706386285, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (12, 2, 1, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706391432, 1706391432, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (13, 2, 1, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706392584, 1706392584, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (14, 2, 1, '', 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706393641, 1706393641, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (15, 2, 1, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706455053, 1706455053, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (16, 2, 1, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706464448, 1706464448, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (17, 2, 1, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706465484, 1706465484, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (18, 2, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706465930, 1706465930, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (19, 2, 1, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706467835, 1706467835, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (20, 2, 1, '', 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706469191, 1706469191, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (21, 2, 1, '', 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706540087, 1706540087, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (22, 2, 1, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706557411, 1706557411, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (23, 2, 1, '', 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706624622, 1706624622, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (24, 2, 1, '', 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706625785, 1706625785, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (25, 0, 1, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', 'Od Hm.', '', 1706990753, 1706990753, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (26, 1, 1, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706990753, 1706990753, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (27, 0, 1, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', 'Od G.', '', 1706992235, 1706992235, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (28, 1, 1, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1706992235, 1706992235, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (29, 0, 1, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', 'Od A.', '', 1707075601, 1707075601, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (30, 1, 1, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1707075601, 1707075601, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (31, 2, 1, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1707143940, 1707143940, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (32, 2, 1, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1707144682, 1707144682, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (33, 2, 1, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1707144771, 1707144771, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (34, 0, 1, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', 'Bez originálu.', '', 1711916343, 1711916343, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'comment'('id', 'type', 'poster_id', 'original_author', 'original_author_id', 'issue_id', 'label_id', 'old_project_id', 'project_id', 'old_milestone_id', 'milestone_id', 'time_id', 'assignee_id', 'removed_assignee', 'assignee_team_id', 'resolve_doer_id', 'old_title', 'new_title', 'old_ref', 'new_ref', 'dependent_issue_id', 'commit_id', 'line', 'tree_path', 'content', 'patch', 'created_unix', 'updated_unix', 'commit_sha', 'review_id', 'invalidated', 'ref_repo_id', 'ref_issue_id', 'ref_comment_id', 'ref_action', 'ref_is_pull') VALUES (35, 0, 1, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 0, 0, 0, '', 'V bávu', '', 1711916393, 1711916393, '', 0, 0, 0, 0, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (1, 47, 1, 1, '', 0, 'Cadillac', 'https://pisnicky-akordy.cz/jan-vycital/cadillac', 0, 0, 1, 0, 1, '', 0, 1695148286, 1706467835, 1706467835, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (2, 47, 2, 1, '', 0, 'Varle', 'https://en.wikipedia.org/wiki/Hitler_Has_Only_Got_One_Ball', 0, 0, 1, 0, 0, '', 0, 1703545176, 1706465930, 1706465930, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (3, 47, 3, 1, '', 0, 'Měls mě vůbec rád', 'https://pisnicky-akordy.cz/ewa-farna/mels-me-vubec-rad', 0, 0, 1, 0, 2, '', 0, 1703618051, 1707144771, 1707144769, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (4, 47, 4, 1, '', 0, 'Kometa', 'https://pisnicky-akordy.cz/jarek-nohavica/kometa', 0, 0, 1, 0, 0, '', 0, 1703618141, 1706469191, 1706469191, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (5, 47, 5, 1, '', 0, 'Jez', 'https://pisnicky-akordy.cz/ivan-mladek/jez', 0, 0, 0, 0, 0, '', 0, 1703618201, 1703618201, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (6, 47, 6, 1, '', 0, '45', 'https://pisnicky-akordy.cz/jan-vycital/to-tenkrat-v-ctyricatom-patom', 0, 0, 0, 0, 0, '', 0, 1703618259, 1703618259, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (7, 47, 7, 1, '', 0, '68', 'https://www.karaoketexty.cz/texty-pisni/greenhorns/to-tenkrat-v-sedesatom-osmom-770109', 0, 0, 0, 0, 0, '', 0, 1703618372, 1703618372, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (8, 47, 8, 1, '', 0, 'Little Bighorn', 'https://pisnicky-akordy.cz/greenhorns/blizko-little-big-hornu', 0, 0, 0, 0, 0, '', 0, 1703618492, 1703618492, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (9, 47, 9, 1, '', 0, 'Casey Jones', 'https://pisnicky-akordy.cz/greenhorns/casey-jones', 0, 0, 0, 0, 0, '', 0, 1703618566, 1703618566, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (10, 47, 10, 1, '', 0, 'Jožin z bažin', 'https://pisnicky-akordy.cz/ivan-mladek/jozin-z-bazin', 0, 0, 1, 0, 0, '', 0, 1703618619, 1706540087, 1706540087, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (11, 47, 11, 1, '', 0, 'Všichni už jsou v Mexiku', 'https://pisnicky-akordy.cz/michal-tucny/vsichni-jsou-uz-v-mexiku', 0, 0, 1, 0, 0, '', 0, 1703618784, 1706624622, 1706624622, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (12, 47, 12, 1, '', 0, 'Pohoda', 'https://pisnicky-akordy.cz/kabat/pohoda', 0, 0, 0, 0, 0, '', 0, 1703619006, 1703619006, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (13, 47, 13, 1, '', 0, 'Vývar z krtka', '', 0, 0, 1, 0, 0, '', 0, 1703619400, 1706393641, 1706393641, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (14, 47, 14, 1, '', 0, 'Calculus raphsody', '', 0, 0, 0, 0, 0, '', 0, 1703880773, 1703880773, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (15, 47, 15, 1, '', 0, 'I will derive', '', 0, 0, 0, 0, 0, '', 0, 1703880787, 1703880798, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (16, 47, 16, 1, '', 0, 'S1203', '', 0, 0, 1, 0, 1, '', 0, 1704573596, 1706455053, 1706455053, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (17, 47, 17, 1, '', 0, 'Lina', '', 0, 0, 1, 0, 0, '', 0, 1704573997, 1706464448, 1706464448, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (18, 47, 18, 1, '', 0, 'Prodavač', 'Od G.', 0, 0, 1, 0, 0, '', 0, 1704574163, 1706386285, 1706386285, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (19, 47, 19, 1, '', 0, 'Šrouby a matice', '', 0, 0, 0, 0, 0, '', 0, 1704575958, 1704575958, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (20, 47, 20, 1, '', 0, 'Montér v kvartýru', '', 0, 0, 1, 0, 1, '', 0, 1704578200, 1707143940, 1707143940, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (21, 47, 21, 1, '', 0, 'Karel sral', 'Tudeš', 0, 0, 1, 0, 0, '', 0, 1705172185, 1706392584, 1706392584, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (22, 47, 22, 1, '', 0, 'Mám hlad', '', 0, 0, 1, 0, 1, '', 0, 1706392733, 1707144682, 1707144682, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (23, 47, 23, 1, '', 0, 'Niagara', 'Mrzák starý.', 0, 0, 1, 0, 0, '', 0, 1706624940, 1706625785, 1706625785, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (24, 47, 24, 1, '', 0, 'Cepín', 'Dmi', 0, 0, 0, 0, 0, '', 0, 1711915863, 1711915863, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (25, 47, 25, 1, '', 0, 'Lidl', '', 0, 0, 0, 0, 2, '', 0, 1711916316, 1711916393, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (26, 47, 26, 1, '', 0, 'Protektorát', 'Bez originálu.', 0, 0, 0, 0, 0, '', 0, 1711916332, 1711916332, 0, 0, 0); INSERT OR IGNORE INTO 'issue'('id', 'repo_id', 'index', 'poster_id', 'original_author', 'original_author_id', 'name', 'content', 'milestone_id', 'priority', 'is_closed', 'is_pull', 'num_comments', 'ref', 'deadline_unix', 'created_unix', 'updated_unix', 'closed_unix', 'is_locked', 'pin_order') VALUES (27, 47, 27, 1, '', 0, 'Finská polka', 'Dmi', 0, 0, 0, 0, 0, '', 0, 1711952585, 1711952585, 0, 0, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (7, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (17, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (18, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (30, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (31, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (32, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (33, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (35, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (36, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (37, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (38, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (40, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (41, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (42, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (43, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (46, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (47, 27); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (49, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (51, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (58, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (68, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (70, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (71, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (74, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (78, 0); INSERT OR IGNORE INTO 'issue_index'('group_id', 'max_index') VALUES (79, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (1, 1, 1, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (2, 1, 2, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (3, 1, 3, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (4, 1, 4, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (5, 1, 5, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (6, 1, 6, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (7, 1, 7, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (8, 1, 8, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (9, 1, 9, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (10, 1, 10, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (11, 1, 11, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (12, 1, 12, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (13, 1, 13, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (14, 1, 14, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (15, 1, 15, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (16, 1, 16, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (17, 1, 17, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (18, 1, 18, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (19, 1, 19, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (20, 1, 20, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (21, 1, 21, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (22, 1, 22, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (23, 1, 23, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (24, 1, 24, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (25, 1, 25, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (26, 1, 26, 1, 0); INSERT OR IGNORE INTO 'issue_user'('id', 'uid', 'issue_id', 'is_read', 'is_mentioned') VALUES (27, 1, 27, 1, 0); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (12, 1, 1, 1, 5, 0, 0, '', 0, '', 1664361442); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (13, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '', 1664361572); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (14, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c5ea77b262cc9ad362fe2cae66be02994701a728","Message":"change to HoralServer with description of all services\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-09-28T12:35:14+02:00"},{"Sha1":"53f67721360d331b40d963046be776dda0e711e0","Message":"add openttd version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-09-05T08:20:08+02:00"},{"Sha1":"2ae9195133181d8ff39c85d1412e15f607ed42fd","Message":"full width\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-09-04T20:41:15+02:00"},{"Sha1":"855527f1d350396dcd34db37381c422ce4dcae4b","Message":"info k operacemi se serverem\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-09-04T20:35:14+02:00"},{"Sha1":"92053264e72a42af1475876ea14fe110d1cca311","Message":"init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-09-04T17:30:46+02:00"}],"HeadCommit":{"Sha1":"c5ea77b262cc9ad362fe2cae66be02994701a728","Message":"change to HoralServer with description of all services\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-09-28T12:35:14+02:00"},"CompareURL":"","Len":5}', 1664361572); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (15, 1, 18, 1, 7, 0, 0, 'refs/heads/tut03', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1665096818); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (16, 1, 19, 1, 7, 0, 0, 'refs/heads/tut03', 1, '', 1665096818); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (17, 1, 20, 1, 7, 0, 0, 'tut03', 1, '', 1665390818); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (18, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"dc08221bda99afffcb8f18ee78f07a9c148f6559","Message":"Merge remote-tracking branch ''origin/tut03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:22:24+02:00"},{"Sha1":"160ea51d15f10aec0524b082f7010766028c76bd","Message":"Merge branch ''tests''\n\nget and test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:16:34+02:00"},{"Sha1":"cc02cf4702b6485cb9e1a7346c5d4834a8eba840","Message":"tests: test in specific dir\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:15:01+02:00"},{"Sha1":"14f05e701d08751aa2bde6e4300baac664426675","Message":"tests: get_test_data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:14:30+02:00"},{"Sha1":"7945cf3fb785f5e467d346ccdbc1dfe4291b3ff5","Message":"tut03: tyden\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-06T19:30:17+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/6d1b87c22bf8a759d654c224eaa3bebd64e54584...dc08221bda99afffcb8f18ee78f07a9c148f6559","Len":6}', 1665390819); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (19, 1, 18, 1, 7, 0, 0, 'mpt03', 1, '{"Commits":[{"Sha1":"0e61a0a6a012a03aee216fa28a40b11bd5769a17","Message":"mpt03: add interval test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:19:19+02:00"},{"Sha1":"6bdcccdc04bb219240fed2e6d26e21475844a876","Message":"mpt03: rgb test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:17:55+02:00"},{"Sha1":"dc38c559c26b87f5c189bf1e7cfb0551cc73ed34","Message":"mpt03: rgb check )\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:09:43+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/e73fa5ded4dcb12ae472ff1c44e5297e403cf780...0e61a0a6a012a03aee216fa28a40b11bd5769a17","Len":3}', 1665390819); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (20, 1, 18, 1, 7, 0, 0, 'tests', 1, '{"Commits":[{"Sha1":"cc02cf4702b6485cb9e1a7346c5d4834a8eba840","Message":"tests: test in specific dir\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:15:01+02:00"},{"Sha1":"14f05e701d08751aa2bde6e4300baac664426675","Message":"tests: get_test_data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:14:30+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/299bbd98b28d8aca44952692c5ee8f109a7a4094...cc02cf4702b6485cb9e1a7346c5d4834a8eba840","Len":2}', 1665390819); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (21, 1, 18, 1, 7, 0, 0, 'refs/tags/tut03', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1665390819); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (22, 1, 19, 1, 7, 0, 0, 'refs/tags/tut03', 1, '', 1665390819); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (23, 1, 20, 1, 7, 0, 0, 'mpt03', 1, '', 1665420218); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (24, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"5e862c51ceaeefffa5323b7420f37bf3566dfb11","Message":"Merge branch ''mpt03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T11:08:45+02:00"},{"Sha1":"374d69fefa3848fc836d3a570d1bceab3f160b0a","Message":"mpt03: check zeros in ms\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T11:07:48+02:00"},{"Sha1":"0e61a0a6a012a03aee216fa28a40b11bd5769a17","Message":"mpt03: add interval test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:19:19+02:00"},{"Sha1":"6bdcccdc04bb219240fed2e6d26e21475844a876","Message":"mpt03: rgb test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:17:55+02:00"},{"Sha1":"dc38c559c26b87f5c189bf1e7cfb0551cc73ed34","Message":"mpt03: rgb check )\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:09:43+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/dc08221bda99afffcb8f18ee78f07a9c148f6559...5e862c51ceaeefffa5323b7420f37bf3566dfb11","Len":7}', 1665420218); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (25, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt03', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1665420218); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (26, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt03', 1, '', 1665420219); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (27, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"7b05285dbe9df9cfc96fc4203c4a37d687ea598b","Message":"Merge branch ''pt00''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T21:40:20+02:00"},{"Sha1":"e5c0f47cda9bcd7265355e8fe1c26aa284b0459f","Message":"pt00: say quotes, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T21:30:57+02:00"},{"Sha1":"218e32c34150424a059ad7e7f1d9df6351a9f4eb","Message":"pt00: add test data citaty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T21:30:41+02:00"},{"Sha1":"e11a2c7821ef2de0bc3147aa20065d6d5cba07a3","Message":"Merge branch ''mpt03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T11:08:45+02:00"},{"Sha1":"8e7d8b5dc5280a25b87eb82f3a23c79fe164c805","Message":"Merge branch ''tut03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:22:24+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/5e862c51ceaeefffa5323b7420f37bf3566dfb11...7b05285dbe9df9cfc96fc4203c4a37d687ea598b","Len":19}', 1665430928); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (28, 1, 18, 1, 7, 0, 0, 'tests', 1, '{"Commits":[{"Sha1":"07a8e1862c1f2fbcf225c4eb53e3a49687e876e2","Message":"tests: test in specific dir\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:15:01+02:00"},{"Sha1":"47fe568976da19902daf5ebbf819c6f040de0652","Message":"tests: get_test_data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T10:14:30+02:00"},{"Sha1":"96b184528b896068a189e6f39b3d419fff0d9d55","Message":"tests: test all in CZE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-03T21:59:03+02:00"},{"Sha1":"09a8c39f02402f6db8080500d492a797c0295b2c","Message":"Merge branch ''tut02''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-03T20:45:07+02:00"},{"Sha1":"b2bad7fdd1c57983c9f26926f34296b00b5cfea0","Message":"tut02: uloha T2.c rozdil casu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-03T20:44:14+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/cc02cf4702b6485cb9e1a7346c5d4834a8eba840...07a8e1862c1f2fbcf225c4eb53e3a49687e876e2","Len":6}', 1665430928); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (29, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"12e869b497653cda5e2c9105646aa6a3b38f0455","Message":"Merge branch ''pt00''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T23:19:00+02:00"},{"Sha1":"5a927c68f842be3f8de583acda50f554a239496c","Message":"pt00: say quotes, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-10T21:30:57+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/7b05285dbe9df9cfc96fc4203c4a37d687ea598b...12e869b497653cda5e2c9105646aa6a3b38f0455","Len":2}', 1665436822); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (30, 1, 18, 1, 7, 0, 0, 'refs/tags/pt00', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1665436822); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (31, 1, 19, 1, 7, 0, 0, 'refs/tags/pt00', 1, '', 1665436822); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (32, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"0e80f518f5824b447bfa5bd30724334561d74f9a","Message":"Merge branch ''mpt04''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-11T11:18:48+02:00"},{"Sha1":"f65de66773ab1c8f8ec271970aa9da3d2d45fe28","Message":"mpt04: nasobilka.c solution, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-11T11:17:11+02:00"},{"Sha1":"ddafa0f8bf71a30f47853b9884c8e6ea2e988d78","Message":"mpt04: add nasobilka test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-11T10:46:29+02:00"},{"Sha1":"069e021591bd6236c8e82f0af63c087e110f78fe","Message":"mpt04: sachovnice solution, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-11T10:44:22+02:00"},{"Sha1":"cd47c2c01e78e3f691928c71ee8f3935482f9808","Message":"mpt04: sachovnice test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-11T10:44:01+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/12e869b497653cda5e2c9105646aa6a3b38f0455...0e80f518f5824b447bfa5bd30724334561d74f9a","Len":5}', 1665480061); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (33, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt04', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1665480062); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (34, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt04', 1, '', 1665480062); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (35, 1, 18, 1, 7, 0, 0, 'refs/heads/tut04', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1665685418); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (36, 1, 19, 1, 7, 0, 0, 'refs/heads/tut04', 1, '', 1665685418); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (37, 1, 20, 1, 7, 0, 0, 'tut04', 1, '', 1665744218); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (38, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"7375c8d350e7c909cbfdc769ee89c2f39c766f66","Message":"Merge branch ''tut04''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-14T10:21:28+02:00"},{"Sha1":"38f025d6bce08ff25e0aa6bab4ab6d2fcee40461","Message":"tut04: zero on input\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-13T19:31:17+02:00"},{"Sha1":"16d028313258207bf33369a2e872ab4df5753578","Message":"tut04: print triangle\n\nuprava stareho kodu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-13T19:16:09+02:00"},{"Sha1":"e403fa41113d45feeca40f8e278b5197e903251b","Message":"tut04: rm firsts zeros\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-13T19:15:48+02:00"},{"Sha1":"1493bc514d3daf5e5483776ac3c8e0e405d35813","Message":"tut04: check input\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-13T19:15:29+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/0e80f518f5824b447bfa5bd30724334561d74f9a...7375c8d350e7c909cbfdc769ee89c2f39c766f66","Len":6}', 1665744219); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (39, 1, 18, 1, 7, 0, 0, 'refs/tags/tut04', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1665744219); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (40, 1, 19, 1, 7, 0, 0, 'refs/tags/tut04', 1, '', 1665744219); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (41, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"8d97a53c7a26ca71ee930cd6348aa9392b1ca33d","Message":"Merge branch ''mpt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-17T21:47:46+02:00"},{"Sha1":"e01e902f8c4269d68b83fa8a3ba11f2875be4edf","Message":"mpt05: rovnice compute, trunc, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-17T21:46:00+02:00"},{"Sha1":"258074fa40120d8946422fad4be188b5a24741d3","Message":"mpt05: add test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-17T21:45:47+02:00"},{"Sha1":"d7a659e8a9ceaa2a54b16685422b9369cf9de8a1","Message":"Merge branch ''pt01''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-17T20:58:37+02:00"},{"Sha1":"a1ab0d69d281f7004fa83f8e5061fae60d424cd5","Message":"pt01: pocitani uroku, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-17T20:57:28+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/7375c8d350e7c909cbfdc769ee89c2f39c766f66...8d97a53c7a26ca71ee930cd6348aa9392b1ca33d","Len":6}', 1666038220); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (42, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt05', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666067277); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (43, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt05', 1, '', 1666067277); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (44, 1, 18, 1, 7, 0, 0, 'refs/tags/pt01', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666067277); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (45, 1, 19, 1, 7, 0, 0, 'refs/tags/pt01', 1, '', 1666067278); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (46, 1, 18, 1, 7, 0, 0, 'refs/tags/tests-1', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666067278); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (47, 1, 19, 1, 7, 0, 0, 'refs/tags/tests-1', 1, '', 1666067278); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (48, 1, 20, 1, 7, 0, 0, 'mpt05', 1, '', 1666208474); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (49, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"79f872685bf2cca3970a12abe0cc29df2943632c","Message":"Merge branch ''mpt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-19T21:32:14+02:00"},{"Sha1":"3bb4f2b3cdb04b9c916739d5c5524222a30172af","Message":"mpt05: rovnice-check DBL_EPSILON, fabs, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-19T17:20:50+02:00"},{"Sha1":"c1b65d4571710d562e3cb0763de6cad38d397af1","Message":"mpt05: rovnice-check add test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-19T17:20:31+02:00"},{"Sha1":"2705510424907e017a0b5bb3eaa419fca8dfce41","Message":"Merge branch ''mpt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-17T21:47:46+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/8d97a53c7a26ca71ee930cd6348aa9392b1ca33d...79f872685bf2cca3970a12abe0cc29df2943632c","Len":4}', 1666208474); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (50, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt05-1', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666208474); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (51, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt05-1', 1, '', 1666208474); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (52, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt05-2', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666208475); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (53, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt05-2', 1, '', 1666208475); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (54, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"474b9751dd00bc3422a993e8ce2f1554768556c5","Message":"nethack gotty web\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-19T23:17:26+02:00"}],"HeadCommit":{"Sha1":"474b9751dd00bc3422a993e8ce2f1554768556c5","Message":"nethack gotty web\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-19T23:17:26+02:00"},"CompareURL":"prokop/HoralServer-web/compare/c5ea77b262cc9ad362fe2cae66be02994701a728...474b9751dd00bc3422a993e8ce2f1554768556c5","Len":1}', 1666214415); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (55, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"735a384343dca5ffbb7af3fbdcaaca51ed58bd6d","Message":"add nethack + gotty\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-19T23:38:37+02:00"},{"Sha1":"2cb95fc756d59110fbac128333b96e262d26c3ab","Message":"change to HoralServer with description of all services\n\nno nethack\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-19T23:37:46+02:00"}],"HeadCommit":{"Sha1":"735a384343dca5ffbb7af3fbdcaaca51ed58bd6d","Message":"add nethack + gotty\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-19T23:38:37+02:00"},"CompareURL":"prokop/HoralServer-web/compare/474b9751dd00bc3422a993e8ce2f1554768556c5...735a384343dca5ffbb7af3fbdcaaca51ed58bd6d","Len":2}', 1666215578); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (56, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"174c17c6d1ef771a513808f0c119187ec34fa845","Message":"nethack move to subpath\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-20T10:46:59+02:00"}],"HeadCommit":{"Sha1":"174c17c6d1ef771a513808f0c119187ec34fa845","Message":"nethack move to subpath\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-20T10:46:59+02:00"},"CompareURL":"prokop/HoralServer-web/compare/735a384343dca5ffbb7af3fbdcaaca51ed58bd6d...174c17c6d1ef771a513808f0c119187ec34fa845","Len":1}', 1666255638); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (57, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"39e09278b4474904e7b2ce95aafe3cf426404e06","Message":"Merge branch ''tut05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-20T18:57:59+02:00"},{"Sha1":"c4fe488835999d1c93014b62dc3161a77f32afb1","Message":"tut05: check one extra\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-20T18:55:54+02:00"},{"Sha1":"c514e428e7f908e468c9c50cba889c247dfc3ae7","Message":"tut05: factor naive, jelinek5.2\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-20T18:37:33+02:00"},{"Sha1":"afe08f453a14bd3874e6b56b45eae2607dd1f83d","Message":"Merge branch ''mpt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-20T18:19:53+02:00"},{"Sha1":"e98a2e451e6252f842395a73f610954062b4bb5d","Message":"mpt05: rovnice-check DBL_EPSILON, fabs, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-19T17:20:50+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/79f872685bf2cca3970a12abe0cc29df2943632c...39e09278b4474904e7b2ce95aafe3cf426404e06","Len":6}', 1666289985); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (58, 1, 18, 1, 7, 0, 0, 'refs/tags/tut05', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666289985); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (59, 1, 19, 1, 7, 0, 0, 'refs/tags/tut05', 1, '', 1666289985); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (60, 1, 18, 1, 7, 0, 0, 'refs/heads/mpt06', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666642370); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (61, 1, 19, 1, 7, 0, 0, 'refs/heads/mpt06', 1, '', 1666642370); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (62, 1, 20, 1, 7, 0, 0, 'mpt06', 1, '', 1666648525); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (63, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"32907bfe3d3a70799986a1c9f32cf1cc52d944e7","Message":"Merge branch ''mpt06''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-24T22:36:23+02:00"},{"Sha1":"5b4e99057fe32700572b6cd47c108999b2f51b37","Message":"mpt06: prumer with carry, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-24T22:35:38+02:00"},{"Sha1":"9aed9a5f73cd7e1b85c9b80dc48d171e47b62373","Message":"mpt06: rok progtest mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-24T22:09:46+02:00"},{"Sha1":"992500b52d44a0abb7505b78e08f3de1f0022aff","Message":"mpt06: prumer give up, mlok ale ne progtest\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-24T21:46:13+02:00"},{"Sha1":"eef56d720a5b434ed6c7d6968727cc16e81f5317","Message":"mpt06: prumer initial file\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-24T20:07:05+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/39e09278b4474904e7b2ce95aafe3cf426404e06...32907bfe3d3a70799986a1c9f32cf1cc52d944e7","Len":5}', 1666648525); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (64, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt06', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666648526); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (65, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt06', 1, '', 1666648526); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (66, 1, 18, 1, 7, 0, 0, 'refs/heads/pt02', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666690334); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (67, 1, 19, 1, 7, 0, 0, 'refs/heads/pt02', 1, '', 1666690334); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (68, 1, 18, 1, 7, 0, 0, 'refs/heads/jit', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666712750); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (69, 1, 19, 1, 7, 0, 0, 'refs/heads/jit', 1, '', 1666712751); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (70, 1, 18, 1, 7, 0, 0, 'refs/heads/gp', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666729194); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (71, 1, 19, 1, 7, 0, 0, 'refs/heads/gp', 1, '', 1666729194); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (72, 1, 18, 1, 7, 0, 0, 'gp', 1, '{"Commits":[{"Sha1":"fc7af550924d712a4256089f63d80e7ebd64c381","Message":"pt02: spf int =\u003e long long, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T14:28:32+02:00"},{"Sha1":"25b3067d31cc8daa95627b6332170c78bd5015a2","Message":"pt02: update prefix array only when needed\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T14:04:05+02:00"},{"Sha1":"7343c779b1584673dce3426d693e46c32b00c9ba","Message":"pt02: no new line, progtest bad\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T13:42:38+02:00"},{"Sha1":"b430b5afa071262e6d1d56cbc25645ad84fbf7d4","Message":"pt02: omylem jsem pridal newline\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-25T17:37:26+02:00"},{"Sha1":"60852be364d442370178379189792d1eaea5982f","Message":"pt02: postupne generovani\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T13:38:05+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/cebe5549b6415f761bf278f3bc5f01f5aca52bc6...fc7af550924d712a4256089f63d80e7ebd64c381","Len":5}', 1666787570); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (73, 1, 20, 1, 7, 0, 0, 'gp', 1, '', 1666816970); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (74, 1, 20, 1, 7, 0, 0, 'jit', 1, '', 1666816970); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (75, 1, 20, 1, 7, 0, 0, 'pt02', 1, '', 1666816970); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (76, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"3fab68bff832f14912603f663b60894f2b3d8b5d","Message":"Merge branch ''pt02''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T17:25:14+02:00"},{"Sha1":"37c35c0582cf11df0397c8e97475b9f80554fac0","Message":"pt02: spf int =\u003e long long, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T14:28:32+02:00"},{"Sha1":"3775e29b8d515c39fed041dbae7419310a7d5f22","Message":"pt02: update prefix array only when needed\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T14:04:05+02:00"},{"Sha1":"99b5bc5a78dd27bccc0eff16bf86bbb7d3a41939","Message":"pt02: add test data which fail\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T17:17:24+02:00"},{"Sha1":"7343c779b1584673dce3426d693e46c32b00c9ba","Message":"pt02: no new line, progtest bad\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-26T13:42:38+02:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/32907bfe3d3a70799986a1c9f32cf1cc52d944e7...3fab68bff832f14912603f663b60894f2b3d8b5d","Len":10}', 1666816971); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (77, 1, 18, 1, 7, 0, 0, 'refs/tags/pt02', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666816971); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (78, 1, 19, 1, 7, 0, 0, 'refs/tags/pt02', 1, '', 1666816971); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (79, 1, 18, 1, 7, 0, 0, 'refs/tags/pt02-jit', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1666816971); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (80, 1, 19, 1, 7, 0, 0, 'refs/tags/pt02-jit', 1, '', 1666816971); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (81, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c47fd9413c0fdb336af3a53f9f9ba02fb3dc1e8f","Message":"update JGR\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-31T21:28:08+01:00"}],"HeadCommit":{"Sha1":"c47fd9413c0fdb336af3a53f9f9ba02fb3dc1e8f","Message":"update JGR\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-31T21:28:08+01:00"},"CompareURL":"prokop/HoralServer-web/compare/174c17c6d1ef771a513808f0c119187ec34fa845...c47fd9413c0fdb336af3a53f9f9ba02fb3dc1e8f","Len":1}', 1667248104); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (82, 1, 1, 1, 13, 0, 0, '', 0, '', 1667254652); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (83, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '', 1667254673); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (84, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"999c4fe9573d7128888f88a2a345e5a710592cf1","Message":"HoralOS init\n\nfirsts tests\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-31T23:16:35+01:00"}],"HeadCommit":{"Sha1":"999c4fe9573d7128888f88a2a345e5a710592cf1","Message":"HoralOS init\n\nfirsts tests\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-10-31T23:16:35+01:00"},"CompareURL":"","Len":1}', 1667254673); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (85, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"fd4412e6c72b210371378ee25299fed2cb3a014d","Message":"cz keyboard, some soft\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-01T00:48:27+01:00"}],"HeadCommit":{"Sha1":"fd4412e6c72b210371378ee25299fed2cb3a014d","Message":"cz keyboard, some soft\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-01T00:48:27+01:00"},"CompareURL":"prokop/HoralOS/compare/999c4fe9573d7128888f88a2a345e5a710592cf1...fd4412e6c72b210371378ee25299fed2cb3a014d","Len":1}', 1667260131); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (86, 1, 18, 1, 7, 0, 0, 'refs/heads/pt03', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667316345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (87, 1, 19, 1, 7, 0, 0, 'refs/heads/pt03', 1, '', 1667316345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (88, 1, 20, 1, 7, 0, 0, 'pt03', 1, '', 1667334982); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (89, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"9684dec9c8c44c1e82b237540a85a08e5fba6627","Message":"Merge branch ''pt03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T21:29:30+01:00"},{"Sha1":"05f9dfbc0f42e5f851a68eec84a1ffd1879bb778","Message":"pt03: long long in minutes for the win, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T21:28:34+01:00"},{"Sha1":"441aa14c7097941d7e661d6c0a19ef421f2be827","Message":"pt03: unsigned long long useless\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T18:20:48+01:00"},{"Sha1":"33d71e87743e0b2b867c17a642316237e91824df","Message":"pt03: go to ULL, almost mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T18:01:54+01:00"},{"Sha1":"786fe1494a896e7b4b185e9f7908e8b95adc07d4","Message":"pt03: minutes overflow\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T17:34:45+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/3fab68bff832f14912603f663b60894f2b3d8b5d...9684dec9c8c44c1e82b237540a85a08e5fba6627","Len":14}', 1667334982); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (90, 1, 18, 1, 7, 0, 0, 'refs/tags/pt03', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667334982); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (91, 1, 19, 1, 7, 0, 0, 'refs/tags/pt03', 1, '', 1667334982); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (92, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"67608538c8f936383ccea6732741663fbf4bf66d","Message":"Merge branch ''mpt07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T23:46:57+01:00"},{"Sha1":"559b14466f1e2b165b2c8752cac5eb8f5855e208","Message":"mpt07: gcd for the win, mlok\n\nif gcd != 1, get cycles\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T23:45:52+01:00"},{"Sha1":"dd3da45f0562880fa997d3e5d9f4af175066dd4f","Message":"mpt07: check sizes of array and rotate, 23%\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T23:18:32+01:00"},{"Sha1":"e5cf4da503f0b1673e1a3210a33cd1d99aa93c33","Message":"mpt07: print array, spec if arrayLen % rotate == 0\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T22:51:10+01:00"},{"Sha1":"22f86253ae4a2b25cd9ef03145719a01ead9fe8c","Message":"mpt07: add initial rotace.c file\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-01T22:20:56+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/9684dec9c8c44c1e82b237540a85a08e5fba6627...67608538c8f936383ccea6732741663fbf4bf66d","Len":5}', 1667364346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (93, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt07', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667364346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (94, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt07', 1, '', 1667364346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (95, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"0d5943154af2b30d5a9247c2d2152db9d5e84795","Message":"full auto build\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-03T10:12:45+01:00"},{"Sha1":"c2f07d7a8bfc84aa02c84fd15047c385a147bf0c","Message":"add cz and some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-03T10:12:34+01:00"}],"HeadCommit":{"Sha1":"0d5943154af2b30d5a9247c2d2152db9d5e84795","Message":"full auto build\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-03T10:12:45+01:00"},"CompareURL":"prokop/HoralOS/compare/fd4412e6c72b210371378ee25299fed2cb3a014d...0d5943154af2b30d5a9247c2d2152db9d5e84795","Len":2}', 1667466789); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (96, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"baf9eb7fb527adbc67a97f002b067006711801db","Message":"full auto build\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-03T10:12:45+01:00"}],"HeadCommit":{"Sha1":"baf9eb7fb527adbc67a97f002b067006711801db","Message":"full auto build\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-03T10:12:45+01:00"},"CompareURL":"prokop/HoralOS/compare/0d5943154af2b30d5a9247c2d2152db9d5e84795...baf9eb7fb527adbc67a97f002b067006711801db","Len":1}', 1667471608); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (97, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"2e805ceb3944076231fd9fc2ae7b1503e469b919","Message":"Merge branch ''tut07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-03T19:26:58+01:00"},{"Sha1":"42cebf47b2b7fdc696554f0b7e6e1ef5bcf353ab","Message":"tut07: some tweaks, nezkousel\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-03T19:26:07+01:00"},{"Sha1":"a45a01b4a23dd4dca59f90cfd5f6566d63f30d89","Message":"tut07: naive solution, submatice, too many fors\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-03T18:58:23+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/67608538c8f936383ccea6732741663fbf4bf66d...2e805ceb3944076231fd9fc2ae7b1503e469b919","Len":3}', 1667511345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (98, 1, 18, 1, 7, 0, 0, 'refs/tags/tut07', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667511346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (99, 1, 19, 1, 7, 0, 0, 'refs/tags/tut07', 1, '', 1667511346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (100, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"12fe45f26b35feb3835b4c5ec17fb3ce46577561","Message":"add gimp, change xblast\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:03:21+01:00"}],"HeadCommit":{"Sha1":"12fe45f26b35feb3835b4c5ec17fb3ce46577561","Message":"add gimp, change xblast\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:03:21+01:00"},"CompareURL":"prokop/HoralOS/compare/baf9eb7fb527adbc67a97f002b067006711801db...12fe45f26b35feb3835b4c5ec17fb3ce46577561","Len":1}', 1667736220); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (101, 1, 1, 1, 14, 0, 0, '', 1, '', 1667737323); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (102, 1, 5, 1, 14, 0, 0, 'refs/heads/master', 1, '', 1667737382); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (103, 1, 5, 1, 14, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"31007558bde92689672cd5368e3899a1648a7639","Message":"web-scripts to deploy hugo site\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:22:41+01:00"}],"HeadCommit":{"Sha1":"31007558bde92689672cd5368e3899a1648a7639","Message":"web-scripts to deploy hugo site\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:22:41+01:00"},"CompareURL":"","Len":1}', 1667737382); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (104, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"df43fc0061c0291cab66c83b8c4087fc6f89be9c","Message":"horalos info\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:57:02+01:00"},{"Sha1":"6cca10c5d59954f2773911bf3ef512118f25b2d7","Message":"info about minecraft\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:21:10+01:00"}],"HeadCommit":{"Sha1":"df43fc0061c0291cab66c83b8c4087fc6f89be9c","Message":"horalos info\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:57:02+01:00"},"CompareURL":"prokop/HoralServer-web/compare/c47fd9413c0fdb336af3a53f9f9ba02fb3dc1e8f...df43fc0061c0291cab66c83b8c4087fc6f89be9c","Len":2}', 1667739435); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (105, 1, 8, 1, 5, 0, 0, '', 0, 'prokop/HoralServer-web', 1667744594); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (106, 2, 8, 1, 5, 0, 0, '', 0, 'prokop/HoralServer-web', 1667744594); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (107, 1, 8, 1, 13, 0, 0, '', 0, 'prokop/HoralOS', 1667744689); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (108, 2, 8, 1, 13, 0, 0, '', 0, 'prokop/HoralOS', 1667744689); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (109, 1, 8, 1, 18, 0, 0, '', 0, 'prokop/botik', 1667745563); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (110, 2, 8, 1, 18, 0, 0, '', 0, 'prokop/botik', 1667745563); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (111, 2, 18, 2, 18, 0, 0, 'master', 0, '{"Commits":[{"Sha1":"b6c546dde1d1f7a340bce27c794c9ffd0a807b5f","Message":"change git to horal\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T15:39:49+01:00"}],"HeadCommit":null,"CompareURL":"h21/botik/compare/9497de5bb792ed66af2e8d933a333f321b120c31...b6c546dde1d1f7a340bce27c794c9ffd0a807b5f","Len":1}', 1667745643); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (112, 1, 18, 2, 18, 0, 0, 'master', 0, '{"Commits":[{"Sha1":"b6c546dde1d1f7a340bce27c794c9ffd0a807b5f","Message":"change git to horal\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T15:39:49+01:00"}],"HeadCommit":null,"CompareURL":"h21/botik/compare/9497de5bb792ed66af2e8d933a333f321b120c31...b6c546dde1d1f7a340bce27c794c9ffd0a807b5f","Len":1}', 1667745643); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (113, 1, 18, 1, 7, 0, 0, 'refs/heads/pt04', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667834746); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (114, 1, 19, 1, 7, 0, 0, 'refs/heads/pt04', 1, '', 1667834746); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (115, 1, 18, 1, 7, 0, 0, 'pt04', 1, '{"Commits":[{"Sha1":"d19d0768b75aa889fc7551a194ccbd563eb9ff66","Message":"pt04: avl ok, slow on test 2\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T18:55:59+01:00"},{"Sha1":"e3821537bea5ccc25c3e62f65b2846929432f42c","Message":"pt04: add test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T18:54:52+01:00"},{"Sha1":"40186d820391e98dd534e74e754b9b61cea9a34b","Message":"pt04: avl mabye ok, slow\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T18:18:06+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/abd9c50607e1683f0a5459e4e175d838b5233bbd...d19d0768b75aa889fc7551a194ccbd563eb9ff66","Len":3}', 1667846668); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (116, 1, 20, 1, 7, 0, 0, 'pt04', 1, '', 1667847005); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (117, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"2ab1bf7938b541a9f64d4d055701e856c8e6eae6","Message":"Merge branch ''pt04''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T19:48:36+01:00"},{"Sha1":"03bc75a6389bd2f7443f5346417ef1368ae1e152","Message":"pt04: add long test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T19:28:49+01:00"},{"Sha1":"d04b98c7ef472bce6b9b2b8be610942c4e9dc1c2","Message":"pt04: hass array\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T19:27:48+01:00"},{"Sha1":"afabfed87504f3e84d2d3204b41f16f03d9177c3","Message":"pt04: avl ok, slow on test 2\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T18:55:59+01:00"},{"Sha1":"d8c9c8d2d27dcb1f7ffe862b28b431287153e5c4","Message":"pt04: add test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T18:54:52+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/2e805ceb3944076231fd9fc2ae7b1503e469b919...2ab1bf7938b541a9f64d4d055701e856c8e6eae6","Len":11}', 1667847005); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (118, 1, 18, 1, 7, 0, 0, 'refs/heads/mpt08', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667859511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (119, 1, 19, 1, 7, 0, 0, 'refs/heads/mpt08', 1, '', 1667859511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (120, 1, 18, 1, 7, 0, 0, 'refs/tags/pt04', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667859511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (121, 1, 19, 1, 7, 0, 0, 'refs/tags/pt04', 1, '', 1667859511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (122, 1, 20, 1, 7, 0, 0, 'mpt08', 1, '', 1667909761); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (123, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"b8af0aaec186a86c821f164dab048eb40cf587f4","Message":"Merge branch ''mpt08''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-08T13:11:09+01:00"},{"Sha1":"7ece9a44d5cb0e4e7aef9ef54d64a873d20dcdbf","Message":"mpt08: solve leaks, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-08T13:10:36+01:00"},{"Sha1":"da84e91f5a3127c2d2dcc65e5d222d70a4265fd2","Message":"mpt08: add small test field\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-08T13:10:15+01:00"},{"Sha1":"1d957edd1aa3b5025406ef399df70e62abbe8b27","Message":"mpt08: miny segfault\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-08T13:02:22+01:00"},{"Sha1":"b982d7cac96a802c4a7c3d99579a31be3f2eb682","Message":"mpt08: read init with check\n\n+ print input\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-07T23:17:45+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/2ab1bf7938b541a9f64d4d055701e856c8e6eae6...b8af0aaec186a86c821f164dab048eb40cf587f4","Len":6}', 1667909762); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (124, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt08', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1667909762); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (125, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt08', 1, '', 1667909762); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (126, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"f0359e29037e9b0ee637a87167bebcb6d6552061","Message":"add minesweeper\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T20:55:00+01:00"}],"HeadCommit":{"Sha1":"f0359e29037e9b0ee637a87167bebcb6d6552061","Message":"add minesweeper\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T20:55:00+01:00"},"CompareURL":"h21/HoralOS/compare/12fe45f26b35feb3835b4c5ec17fb3ce46577561...f0359e29037e9b0ee637a87167bebcb6d6552061","Len":1}', 1668023718); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (127, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"f0359e29037e9b0ee637a87167bebcb6d6552061","Message":"add minesweeper\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T20:55:00+01:00"}],"HeadCommit":{"Sha1":"f0359e29037e9b0ee637a87167bebcb6d6552061","Message":"add minesweeper\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T20:55:00+01:00"},"CompareURL":"h21/HoralOS/compare/12fe45f26b35feb3835b4c5ec17fb3ce46577561...f0359e29037e9b0ee637a87167bebcb6d6552061","Len":1}', 1668023718); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (128, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"25e81554825b333c043320bee76b06c48e934fdd","Message":"add some ignored files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T21:01:41+01:00"}],"HeadCommit":{"Sha1":"25e81554825b333c043320bee76b06c48e934fdd","Message":"add some ignored files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T21:01:41+01:00"},"CompareURL":"h21/HoralOS/compare/f0359e29037e9b0ee637a87167bebcb6d6552061...25e81554825b333c043320bee76b06c48e934fdd","Len":1}', 1668024117); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (129, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"25e81554825b333c043320bee76b06c48e934fdd","Message":"add some ignored files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T21:01:41+01:00"}],"HeadCommit":{"Sha1":"25e81554825b333c043320bee76b06c48e934fdd","Message":"add some ignored files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-09T21:01:41+01:00"},"CompareURL":"h21/HoralOS/compare/f0359e29037e9b0ee637a87167bebcb6d6552061...25e81554825b333c043320bee76b06c48e934fdd","Len":1}', 1668024117); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (130, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"23d175d705bf29ed80b8f1865bde38f892531c2c","Message":"Merge branch ''tut08''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-10T20:31:28+01:00"},{"Sha1":"e0c6aff4e7a3678b9e4d9c43ee0dd9f2bf31d896","Message":"tut08: add array capacity\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-10T19:24:53+01:00"},{"Sha1":"56b3192e8431a1aea649c0072dc3438bf6fbb99c","Message":"tut08: store in array, search in N\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-10T19:19:14+01:00"},{"Sha1":"8762ef8a8e2be45ab78d0424e976ecddffd89a1a","Message":"tut08: pascal number line, too much RAM\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-10T18:59:34+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/b8af0aaec186a86c821f164dab048eb40cf587f4...23d175d705bf29ed80b8f1865bde38f892531c2c","Len":4}', 1668108740); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (131, 1, 18, 1, 7, 0, 0, 'refs/tags/tut08', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668108740); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (132, 1, 19, 1, 7, 0, 0, 'refs/tags/tut08', 1, '', 1668108740); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (133, 1, 18, 1, 7, 0, 0, 'refs/heads/pt05', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668505920); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (134, 1, 19, 1, 7, 0, 0, 'refs/heads/pt05', 1, '', 1668505921); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (135, 1, 18, 1, 7, 0, 0, 'pt05', 1, '{"Commits":[{"Sha1":"6d099b1c7c7b81b643f6ceff1a8694fd05694ec1","Message":"pt05: skeleton of minimum distance\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-15T14:37:53+01:00"},{"Sha1":"6c0975c784ef25177f8f0d1da1cf89fe7f006893","Message":"pt05: zero distance all ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-15T14:24:26+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/69574d3e9bb68cf197d323768da1c50f5de4cdc7...6d099b1c7c7b81b643f6ceff1a8694fd05694ec1","Len":2}', 1668519561); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (136, 1, 18, 1, 7, 0, 0, 'pt05', 1, '{"Commits":[{"Sha1":"9616b223ed629e33a2c9352aaa6b83a37bd62510","Message":"pt05: alloc sortY before use\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-15T18:01:36+01:00"},{"Sha1":"05f859e252a57275660ae38863db71f28cca5b0e","Message":"pt05: hotovo, staci odladit\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-15T17:54:39+01:00"},{"Sha1":"e3f0a830155c8c7584e7c8d010f8342404b61c4c","Message":"pt05: case two and three\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-15T17:03:14+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/6d099b1c7c7b81b643f6ceff1a8694fd05694ec1...9616b223ed629e33a2c9352aaa6b83a37bd62510","Len":3}', 1668531754); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (137, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"6bdca075df9492a55366c952100bf8672c3c228e","Message":"rm baremetal fedora 37\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-15T22:44:53+01:00"}],"HeadCommit":{"Sha1":"6bdca075df9492a55366c952100bf8672c3c228e","Message":"rm baremetal fedora 37\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-15T22:44:53+01:00"},"CompareURL":"h21/HoralOS/compare/25e81554825b333c043320bee76b06c48e934fdd...6bdca075df9492a55366c952100bf8672c3c228e","Len":1}', 1668548767); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (138, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"6bdca075df9492a55366c952100bf8672c3c228e","Message":"rm baremetal fedora 37\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-15T22:44:53+01:00"}],"HeadCommit":{"Sha1":"6bdca075df9492a55366c952100bf8672c3c228e","Message":"rm baremetal fedora 37\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-15T22:44:53+01:00"},"CompareURL":"h21/HoralOS/compare/25e81554825b333c043320bee76b06c48e934fdd...6bdca075df9492a55366c952100bf8672c3c228e","Len":1}', 1668548767); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (139, 1, 18, 1, 7, 0, 0, 'pt05', 1, '{"Commits":[{"Sha1":"ee8a03ec4c25f5d709c563e6f194d2a14a2a800b","Message":"pt05: test data generator, SIGSEGV\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T00:16:46+01:00"},{"Sha1":"c009e411839d2dba5eecf2e81e2471289cc7db7d","Message":"pt05: add some tests\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T00:16:25+01:00"},{"Sha1":"0bb6da7b4a47572714fdac4f205f5cc5acfbac3a","Message":"pt05: DBL_EPSILON\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-15T23:49:49+01:00"},{"Sha1":"d493cf11e05310b5dbc0a0c3b18ddf384fc93b32","Message":"pt05: ukazka ok, mezni hodnoty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-15T22:36:40+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/9616b223ed629e33a2c9352aaa6b83a37bd62510...ee8a03ec4c25f5d709c563e6f194d2a14a2a800b","Len":4}', 1668554286); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (140, 1, 18, 1, 7, 0, 0, 'refs/tags/pt05-NULL', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668554286); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (141, 1, 19, 1, 7, 0, 0, 'refs/tags/pt05-NULL', 1, '', 1668554286); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (142, 1, 18, 1, 7, 0, 0, 'pt05', 1, '{"Commits":[{"Sha1":"d25631c7b45a16f1614624b0acd0af6318b209aa","Message":"pt05: test rozkladu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T08:15:13+01:00"},{"Sha1":"7df716e3ab5bfacabdf86c1c6d3fc07ce0b9cec1","Message":"pt05: isLeft double!!\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T00:56:37+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/ee8a03ec4c25f5d709c563e6f194d2a14a2a800b...d25631c7b45a16f1614624b0acd0af6318b209aa","Len":2}', 1668583545); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (143, 1, 18, 1, 7, 0, 0, 'pt05', 1, '{"Commits":[{"Sha1":"b875cb0785bdd99318b8f369c8efa6d7ac114f7c","Message":"pt05: vetsi nepresnosti\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T14:05:30+01:00"},{"Sha1":"17d678c23df4f3df080197f196796de6bfe335e8","Message":"pt05: add some more test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T14:04:59+01:00"},{"Sha1":"91374caef3fc37a2b69eedad99dd7485e3ef394d","Message":"pt05: upravene porovnavani\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T13:50:12+01:00"},{"Sha1":"1cb1d490659156c95a8c12b29bfd114387990758","Message":"pt05: trim input to 199 chars\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T13:49:53+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/d25631c7b45a16f1614624b0acd0af6318b209aa...b875cb0785bdd99318b8f369c8efa6d7ac114f7c","Len":4}', 1668612945); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (144, 1, 20, 1, 7, 0, 0, 'pt05', 1, '', 1668640498); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (145, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"37490278c17f3fbedf8b9c3dc395296ab06370e8","Message":"Merge branch ''pt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T21:43:39+01:00"},{"Sha1":"124a0794146817d1b6254ef1bca1e8e03662de2f","Message":"pt05: FTL_EPSILON with fabs, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T21:42:38+01:00"},{"Sha1":"c58b39200e302846c491b4ddbddbdfff39b36c3e","Message":"pt05: another bad test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T21:40:45+01:00"},{"Sha1":"0f1ec385b2ad59072d1bd0559c2d74693994e80e","Message":"pt05: SmEq must have \u003c=\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T21:05:40+01:00"},{"Sha1":"83f3a4e52342cb978455366edfc47b48902e4d2a","Message":"pt05: broken vstup\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T20:50:40+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/23d175d705bf29ed80b8f1865bde38f892531c2c...37490278c17f3fbedf8b9c3dc395296ab06370e8","Len":32}', 1668640498); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (146, 1, 18, 1, 7, 0, 0, 'refs/tags/pt05', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668640498); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (147, 1, 19, 1, 7, 0, 0, 'refs/tags/pt05', 1, '', 1668640499); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (148, 1, 18, 1, 7, 0, 0, 'refs/tags/pt05-naive', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668640499); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (149, 1, 19, 1, 7, 0, 0, 'refs/tags/pt05-naive', 1, '', 1668640499); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (150, 1, 18, 1, 7, 0, 0, 'refs/heads/mpt09', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668640946); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (151, 1, 19, 1, 7, 0, 0, 'refs/heads/mpt09', 1, '', 1668640946); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (152, 1, 20, 1, 7, 0, 0, 'mpt09', 1, '', 1668643258); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (153, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"7af337f4d537db6d40ece63f2c1dbacf16498c9a","Message":"Merge branch ''mpt09''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-17T00:59:12+01:00"},{"Sha1":"9aa706e4d2944ae718d8add95e31853667737bb7","Message":"mpt09: mistake by one in wordlen and cap\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-17T00:58:09+01:00"},{"Sha1":"0f3e138b8d2860ac646e356b27c25199b0c0ff1a","Message":"mpt09: SIGSEGV\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-17T00:21:08+01:00"},{"Sha1":"34cb41843d7488e8d7b312feb44b4fb49e93d990","Message":"mpt09: first code, no\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T23:40:12+01:00"},{"Sha1":"ab50b73f751c826ec69a532a213d97c6df6c21c0","Message":"mpt09: add init file\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-16T22:12:50+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/37490278c17f3fbedf8b9c3dc395296ab06370e8...7af337f4d537db6d40ece63f2c1dbacf16498c9a","Len":5}', 1668643259); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (154, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt09', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668643259); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (155, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt09', 1, '', 1668643259); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (156, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"761b052fe84959438481b2e8120ab4a29c5bf821","Message":"add freedoom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T20:39:57+01:00"}],"HeadCommit":{"Sha1":"761b052fe84959438481b2e8120ab4a29c5bf821","Message":"add freedoom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T20:39:57+01:00"},"CompareURL":"h21/HoralOS/compare/6bdca075df9492a55366c952100bf8672c3c228e...761b052fe84959438481b2e8120ab4a29c5bf821","Len":1}', 1668887101); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (157, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"761b052fe84959438481b2e8120ab4a29c5bf821","Message":"add freedoom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T20:39:57+01:00"}],"HeadCommit":{"Sha1":"761b052fe84959438481b2e8120ab4a29c5bf821","Message":"add freedoom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T20:39:57+01:00"},"CompareURL":"h21/HoralOS/compare/6bdca075df9492a55366c952100bf8672c3c228e...761b052fe84959438481b2e8120ab4a29c5bf821","Len":1}', 1668887101); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (158, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"7f2e209c2fff594cb1e15f13d09dfec225ddb043","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"},{"Sha1":"48bf7af4fa9a616cb6bf2b186150fd408c2ad4b2","Message":"add some games\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:00:49+01:00"}],"HeadCommit":{"Sha1":"7f2e209c2fff594cb1e15f13d09dfec225ddb043","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"},"CompareURL":"h21/HoralOS/compare/761b052fe84959438481b2e8120ab4a29c5bf821...7f2e209c2fff594cb1e15f13d09dfec225ddb043","Len":2}', 1668888162); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (159, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"7f2e209c2fff594cb1e15f13d09dfec225ddb043","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"},{"Sha1":"48bf7af4fa9a616cb6bf2b186150fd408c2ad4b2","Message":"add some games\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:00:49+01:00"}],"HeadCommit":{"Sha1":"7f2e209c2fff594cb1e15f13d09dfec225ddb043","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"},"CompareURL":"h21/HoralOS/compare/761b052fe84959438481b2e8120ab4a29c5bf821...7f2e209c2fff594cb1e15f13d09dfec225ddb043","Len":2}', 1668888162); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (160, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c4c2de3d52535e9e1e3e83572bc25193bc991c56","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"}],"HeadCommit":{"Sha1":"c4c2de3d52535e9e1e3e83572bc25193bc991c56","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"},"CompareURL":"h21/HoralOS/compare/7f2e209c2fff594cb1e15f13d09dfec225ddb043...c4c2de3d52535e9e1e3e83572bc25193bc991c56","Len":1}', 1668888203); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (161, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c4c2de3d52535e9e1e3e83572bc25193bc991c56","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"}],"HeadCommit":{"Sha1":"c4c2de3d52535e9e1e3e83572bc25193bc991c56","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-19T21:02:30+01:00"},"CompareURL":"h21/HoralOS/compare/7f2e209c2fff594cb1e15f13d09dfec225ddb043...c4c2de3d52535e9e1e3e83572bc25193bc991c56","Len":1}', 1668888203); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (162, 1, 18, 1, 7, 0, 0, 'refs/heads/pt06', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668907545); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (163, 1, 19, 1, 7, 0, 0, 'refs/heads/pt06', 1, '', 1668907545); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (164, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4f143da8740173d6a8557c8f50a113282bbc16d4","Message":"freedoom jinak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-20T11:41:50+01:00"}],"HeadCommit":{"Sha1":"4f143da8740173d6a8557c8f50a113282bbc16d4","Message":"freedoom jinak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-20T11:41:50+01:00"},"CompareURL":"h21/HoralOS/compare/c4c2de3d52535e9e1e3e83572bc25193bc991c56...4f143da8740173d6a8557c8f50a113282bbc16d4","Len":1}', 1668940926); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (165, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4f143da8740173d6a8557c8f50a113282bbc16d4","Message":"freedoom jinak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-20T11:41:50+01:00"}],"HeadCommit":{"Sha1":"4f143da8740173d6a8557c8f50a113282bbc16d4","Message":"freedoom jinak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-20T11:41:50+01:00"},"CompareURL":"h21/HoralOS/compare/c4c2de3d52535e9e1e3e83572bc25193bc991c56...4f143da8740173d6a8557c8f50a113282bbc16d4","Len":1}', 1668940926); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (166, 1, 18, 1, 7, 0, 0, 'pt06', 1, '{"Commits":[{"Sha1":"6596ccd05248d029bcd82ad3e03f21f40335db7a","Message":"pt06: add to trie + destroy\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T16:49:43+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/702ccb31144f37b2bcbdde227996b6e6a25fc807...6596ccd05248d029bcd82ad3e03f21f40335db7a","Len":1}', 1668966345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (167, 1, 18, 1, 7, 0, 0, 'pt06', 1, '{"Commits":[{"Sha1":"2ab43667ea85b55ac4ff0a198812bb73f51b6f17","Message":"pt06: solve leaks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T21:23:28+01:00"},{"Sha1":"f5415031df702fe5ea07b52e7ef37b9794cff0b0","Message":"pt06: too slow\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T20:38:33+01:00"},{"Sha1":"27ebad3badb7e2106d7ea6370374d059bdfd02f3","Message":"pt06: ok dle ukazky\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T20:05:58+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/6596ccd05248d029bcd82ad3e03f21f40335db7a...2ab43667ea85b55ac4ff0a198812bb73f51b6f17","Len":3}', 1668976554); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (168, 1, 18, 1, 7, 0, 0, 'refs/heads/pt06-strstr', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1668976554); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (169, 1, 19, 1, 7, 0, 0, 'refs/heads/pt06-strstr', 1, '', 1668976554); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (170, 1, 20, 1, 7, 0, 0, 'pt06-strstr', 1, '', 1669035345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (171, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"d90e29c697f6108b8efe2d0e6db1f81bbba7ad2f","Message":"Merge branch ''pt06-strstr''\n\npt06 naive solution\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-21T10:57:07+01:00"},{"Sha1":"5f41f3a208b68e61016411c767c732b903ead2e4","Message":"pt06: naive good, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T21:33:57+01:00"},{"Sha1":"8259446413e3a635017600891130cfdf478fd323","Message":"pt06: solve leaks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T21:22:37+01:00"},{"Sha1":"95254956aa5735100b990ea11950dcbd4a95b8c0","Message":"pt06: naive solution\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T21:20:18+01:00"},{"Sha1":"f5415031df702fe5ea07b52e7ef37b9794cff0b0","Message":"pt06: too slow\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-20T20:38:33+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/7af337f4d537db6d40ece63f2c1dbacf16498c9a...d90e29c697f6108b8efe2d0e6db1f81bbba7ad2f","Len":8}', 1669035346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (172, 1, 18, 1, 7, 0, 0, 'refs/tags/pt06-naive', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1669035346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (173, 1, 19, 1, 7, 0, 0, 'refs/tags/pt06-naive', 1, '', 1669035346); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (181, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"f52ab61ebf87207e6f822cbd4751c78746a7e9c1","Message":"add irc readme\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-23T21:52:54+01:00"}],"HeadCommit":{"Sha1":"f52ab61ebf87207e6f822cbd4751c78746a7e9c1","Message":"add irc readme\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-23T21:52:54+01:00"},"CompareURL":"h21/HoralServer-web/compare/df43fc0061c0291cab66c83b8c4087fc6f89be9c...f52ab61ebf87207e6f822cbd4751c78746a7e9c1","Len":1}', 1669236788); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (182, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"f52ab61ebf87207e6f822cbd4751c78746a7e9c1","Message":"add irc readme\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-23T21:52:54+01:00"}],"HeadCommit":{"Sha1":"f52ab61ebf87207e6f822cbd4751c78746a7e9c1","Message":"add irc readme\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-23T21:52:54+01:00"},"CompareURL":"h21/HoralServer-web/compare/df43fc0061c0291cab66c83b8c4087fc6f89be9c...f52ab61ebf87207e6f822cbd4751c78746a7e9c1","Len":1}', 1669236788); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (183, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[],"HeadCommit":{"Sha1":"df43fc0061c0291cab66c83b8c4087fc6f89be9c","Message":"horalos info\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:57:02+01:00"},"CompareURL":"h21/HoralServer-web/compare/f52ab61ebf87207e6f822cbd4751c78746a7e9c1...df43fc0061c0291cab66c83b8c4087fc6f89be9c","Len":0}', 1669237439); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (184, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[],"HeadCommit":{"Sha1":"df43fc0061c0291cab66c83b8c4087fc6f89be9c","Message":"horalos info\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-06T13:57:02+01:00"},"CompareURL":"h21/HoralServer-web/compare/f52ab61ebf87207e6f822cbd4751c78746a7e9c1...df43fc0061c0291cab66c83b8c4087fc6f89be9c","Len":0}', 1669237439); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (185, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2","Message":"add adblock dns\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-27T14:57:43+01:00"}],"HeadCommit":{"Sha1":"1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2","Message":"add adblock dns\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-27T14:57:43+01:00"},"CompareURL":"h21/HoralServer-web/compare/df43fc0061c0291cab66c83b8c4087fc6f89be9c...1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2","Len":1}', 1669557483); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (186, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2","Message":"add adblock dns\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-27T14:57:43+01:00"}],"HeadCommit":{"Sha1":"1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2","Message":"add adblock dns\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-27T14:57:43+01:00"},"CompareURL":"h21/HoralServer-web/compare/df43fc0061c0291cab66c83b8c4087fc6f89be9c...1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2","Len":1}', 1669557483); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (187, 1, 18, 1, 7, 0, 0, 'pt06', 1, '{"Commits":[{"Sha1":"a4172ac18edb7a69ef550a75ffc2275818c4efb4","Message":"pt06: try to rewrite\n\nFAIL\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-27T20:34:16+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/2ab43667ea85b55ac4ff0a198812bb73f51b6f17...a4172ac18edb7a69ef550a75ffc2275818c4efb4","Len":1}', 1669577898); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (188, 1, 18, 1, 7, 0, 0, 'refs/heads/pt07', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1669577898); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (189, 1, 19, 1, 7, 0, 0, 'refs/heads/pt07', 1, '', 1669577898); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (190, 1, 18, 1, 7, 0, 0, 'pt07', 1, '{"Commits":[{"Sha1":"fe8b283abb1aa9d66d9cdea5dccc23c9a879a479","Message":"pt07: read input\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-28T20:03:22+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/e72e9fcb63519fc165e6ed9df00cf0d44905ad20...fe8b283abb1aa9d66d9cdea5dccc23c9a879a479","Len":1}', 1669662747); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (191, 1, 18, 1, 7, 0, 0, 'pt07', 1, '{"Commits":[{"Sha1":"9ec85301e3c5b3eb398c321e85346b25d84dd1dd","Message":"pt07: basic tests, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-29T18:03:13+01:00"},{"Sha1":"190b9c7a45a22d44bc2b1b34abe4472c3cc0e23f","Message":"pt07: rotate and begin print\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-29T16:34:52+01:00"},{"Sha1":"3a6dfb688cefe7b8b1253b286e7f4b7c2a312368","Message":"pt07: first try, no\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-29T16:23:38+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/fe8b283abb1aa9d66d9cdea5dccc23c9a879a479...9ec85301e3c5b3eb398c321e85346b25d84dd1dd","Len":3}', 1669741609); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (192, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"0ce51c3945dc79ed42db1238bbc54efe6d451f7f","Message":"Merge branch ''pt07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-29T18:07:25+01:00"},{"Sha1":"9ec85301e3c5b3eb398c321e85346b25d84dd1dd","Message":"pt07: basic tests, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-29T18:03:13+01:00"},{"Sha1":"190b9c7a45a22d44bc2b1b34abe4472c3cc0e23f","Message":"pt07: rotate and begin print\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-29T16:34:52+01:00"},{"Sha1":"3a6dfb688cefe7b8b1253b286e7f4b7c2a312368","Message":"pt07: first try, no\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-29T16:23:38+01:00"},{"Sha1":"fe8b283abb1aa9d66d9cdea5dccc23c9a879a479","Message":"pt07: read input\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-28T20:03:22+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/d90e29c697f6108b8efe2d0e6db1f81bbba7ad2f...0ce51c3945dc79ed42db1238bbc54efe6d451f7f","Len":6}', 1669770946); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (193, 1, 18, 1, 7, 0, 0, 'refs/tags/pt07-basic', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1669770946); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (194, 1, 19, 1, 7, 0, 0, 'refs/tags/pt07-basic', 1, '', 1669770946); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (195, 1, 18, 1, 7, 0, 0, 'pt07', 1, '{"Commits":[{"Sha1":"4d6bfdc27598339ce2b67829ae1e9cc23386d6c6","Message":"pt07: 32 is 5 bits, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-30T14:30:56+01:00"},{"Sha1":"410583201bb9660176be1c8fc03ebf9bc04ba2c2","Message":"pt07: store results, fail\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-30T14:05:04+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/9ec85301e3c5b3eb398c321e85346b25d84dd1dd...4d6bfdc27598339ce2b67829ae1e9cc23386d6c6","Len":2}', 1669829745); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (196, 1, 20, 1, 7, 0, 0, 'pt07', 1, '', 1669837420); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (197, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"c378b88c5815f2f6e5c4f9ef5db6506c80d201a2","Message":"Merge branch ''pt07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-30T20:42:00+01:00"},{"Sha1":"110ca6a87c416bf1feeb0eb7f43542239e3b1576","Message":"pt07: add test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-30T20:38:33+01:00"},{"Sha1":"4d6bfdc27598339ce2b67829ae1e9cc23386d6c6","Message":"pt07: 32 is 5 bits, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-30T14:30:56+01:00"},{"Sha1":"410583201bb9660176be1c8fc03ebf9bc04ba2c2","Message":"pt07: store results, fail\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-11-30T14:05:04+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/0ce51c3945dc79ed42db1238bbc54efe6d451f7f...c378b88c5815f2f6e5c4f9ef5db6506c80d201a2","Len":4}', 1669837420); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (198, 1, 18, 1, 7, 0, 0, 'refs/tags/pt07', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1669837420); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (199, 1, 19, 1, 7, 0, 0, 'refs/tags/pt07', 1, '', 1669837421); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (200, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"93f79e7a70c1f56223739779ec53b953edb8bc6f","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"}],"HeadCommit":{"Sha1":"93f79e7a70c1f56223739779ec53b953edb8bc6f","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"},"CompareURL":"h21/HoralServer-web/compare/1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2...93f79e7a70c1f56223739779ec53b953edb8bc6f","Len":1}', 1669838612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (201, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"93f79e7a70c1f56223739779ec53b953edb8bc6f","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"}],"HeadCommit":{"Sha1":"93f79e7a70c1f56223739779ec53b953edb8bc6f","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"},"CompareURL":"h21/HoralServer-web/compare/1e2eaf65a4934ceaa8bca57e7cfbaae70e79e1a2...93f79e7a70c1f56223739779ec53b953edb8bc6f","Len":1}', 1669838612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (202, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"}],"HeadCommit":{"Sha1":"62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"},"CompareURL":"h21/HoralServer-web/compare/93f79e7a70c1f56223739779ec53b953edb8bc6f...62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e","Len":1}', 1669838664); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (203, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"}],"HeadCommit":{"Sha1":"62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e","Message":"wikipedia\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-11-30T21:03:16+01:00"},"CompareURL":"h21/HoralServer-web/compare/93f79e7a70c1f56223739779ec53b953edb8bc6f...62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e","Len":1}', 1669838664); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (204, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"a4da395abf61b29cfeffe91302c873ca1bfec48b","Message":"Merge branch ''mpt11''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-01T20:32:49+01:00"},{"Sha1":"885f9b57e6ce708cf2cf7c4c9b3ffd8d8574f853","Message":"mpt11: initialize counts, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-01T20:31:58+01:00"},{"Sha1":"1ef8351be6b22d409d96aeb958f21ee96560620a","Message":"mpt11: try to remember\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-01T19:33:01+01:00"},{"Sha1":"8e45b0870edcb7fc60259db6500a2d6efd35d1f8","Message":"mpt11: check minus values\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-01T19:15:28+01:00"},{"Sha1":"9a63e1fb708c768079796c87f8cffef1eacb83a6","Message":"mpt11: add more test data\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-01T19:14:56+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/c378b88c5815f2f6e5c4f9ef5db6506c80d201a2...a4da395abf61b29cfeffe91302c873ca1bfec48b","Len":9}', 1669923340); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (205, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt11', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1669923340); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (206, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt11', 1, '', 1669923340); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (207, 1, 18, 1, 7, 0, 0, 'refs/heads/pt08', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1670334345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (208, 1, 19, 1, 7, 0, 0, 'refs/heads/pt08', 1, '', 1670334345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (209, 1, 18, 1, 7, 0, 0, 'pt08', 1, '{"Commits":[{"Sha1":"5b45be20363c5c2a727b57f16dd864ec1389961e","Message":"pt08: assert success, segfalut\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-06T16:19:59+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/d7097cd8f8e20586a130086fa1e5a028fc4388e5...5b45be20363c5c2a727b57f16dd864ec1389961e","Len":1}', 1670363745); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (210, 1, 20, 1, 7, 0, 0, 'pt08', 1, '', 1670422508); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (211, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"cf074a568c1e5ed6435fc52b86748fb38a342b13","Message":"Merge branch ''pt08''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-07T13:39:59+01:00"},{"Sha1":"14f14f915fa84cb1ec133ae6a9fc5b426ee7b9d3","Message":"pt08: universal cmpFn, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-07T13:39:30+01:00"},{"Sha1":"8dab211c73bf305eadab8d080704c957e536ed72","Message":"pt08: check NULL list and left vs right problem, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-07T13:31:14+01:00"},{"Sha1":"5b45be20363c5c2a727b57f16dd864ec1389961e","Message":"pt08: assert success, segfalut\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-06T16:19:59+01:00"},{"Sha1":"d7097cd8f8e20586a130086fa1e5a028fc4388e5","Message":"pt08: newItem and freeList\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-06T10:33:57+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/a4da395abf61b29cfeffe91302c873ca1bfec48b...cf074a568c1e5ed6435fc52b86748fb38a342b13","Len":6}', 1670422509); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (212, 1, 18, 1, 7, 0, 0, 'refs/tags/pt08-1', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1670422509); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (213, 1, 19, 1, 7, 0, 0, 'refs/tags/pt08-1', 1, '', 1670422509); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (214, 1, 18, 1, 7, 0, 0, 'refs/tags/pt08-2', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1670422509); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (215, 1, 19, 1, 7, 0, 0, 'refs/tags/pt08-2', 1, '', 1670422509); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (216, 1, 18, 1, 7, 0, 0, 'master', 1, '{"Commits":[{"Sha1":"68c47effd267f8b0b690f4180eafeddf7e6ec504","Message":"Merge branch ''mpt12''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-08T15:14:33+01:00"},{"Sha1":"33a00dc7c02c5770a02b0cd9c133b8d90dcfba4b","Message":"mpt12: obousmerny mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-08T15:12:15+01:00"},{"Sha1":"4740a44faf74d0ffb243dbd532e50dbb40c97771","Message":"mpt12: care right for l.last\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-08T15:02:11+01:00"},{"Sha1":"ea6e9e3930d1145d17eda4e589b9050ff8437fa1","Message":"mpt12: basic ok, not mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-08T14:54:31+01:00"},{"Sha1":"d12d2a8a2b4c7cf0251c97c93d878346a34b1c3c","Message":"mpt12: add init files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-08T14:28:39+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/cf074a568c1e5ed6435fc52b86748fb38a342b13...68c47effd267f8b0b690f4180eafeddf7e6ec504","Len":5}', 1670510708); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (217, 1, 18, 1, 7, 0, 0, 'refs/tags/mpt12', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1670510708); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (218, 1, 19, 1, 7, 0, 0, 'refs/tags/mpt12', 1, '', 1670510708); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (219, 1, 18, 1, 7, 0, 0, 'refs/heads/pt07-review', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1670540108); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (220, 1, 19, 1, 7, 0, 0, 'refs/heads/pt07-review', 1, '', 1670540108); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (221, 1, 18, 1, 7, 0, 0, 'pt07-review', 1, '{"Commits":[{"Sha1":"51fbeb88fea5e67fb3defcb90d08e087deeb631a","Message":"pt07: codeReview 3\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-13T00:28:54+01:00"},{"Sha1":"537478d53bf50c29dd478b88619dd3f00c685658","Message":"pt07: codeReview 2\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-12T21:42:27+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/960b927e2be5ba4eae5ddeb4d729bdf1ff2c3087...51fbeb88fea5e67fb3defcb90d08e087deeb631a","Len":2}', 1670888088); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (222, 1, 18, 1, 7, 0, 0, 'refs/heads/bonus', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1670932260); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (223, 1, 19, 1, 7, 0, 0, 'refs/heads/bonus', 1, '', 1670932260); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (224, 1, 18, 1, 7, 0, 0, 'pt07-review', 1, '{"Commits":[{"Sha1":"63d0a4a3b022e3857655d57f5aa58eddecd501a2","Message":"pt07: codeReview 4\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-13T11:33:55+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/51fbeb88fea5e67fb3defcb90d08e087deeb631a...63d0a4a3b022e3857655d57f5aa58eddecd501a2","Len":1}', 1670932261); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (225, 1, 18, 1, 7, 0, 0, 'bonus', 1, '{"Commits":[{"Sha1":"191cd81b0f8f56dc166761a227451afc9ce37097","Message":"bonus: first work on\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-14T08:19:03+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/4ac842dfcc465dd2f05830d9d691cb7fcf95ffbf...191cd81b0f8f56dc166761a227451afc9ce37097","Len":1}', 1671020108); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (226, 1, 18, 1, 7, 0, 0, 'bonus', 1, '{"Commits":[{"Sha1":"6d0516e1a526e9539af9175f5a6e7d8d24414a2c","Message":"bonus: some check functions\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-14T14:13:51+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/191cd81b0f8f56dc166761a227451afc9ce37097...6d0516e1a526e9539af9175f5a6e7d8d24414a2c","Len":1}', 1671049508); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (227, 1, 1, 1, 21, 0, 0, '', 0, '', 1671111711); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (228, 2, 1, 1, 21, 0, 0, '', 0, '', 1671111711); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (229, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '', 1671111761); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (230, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '', 1671111761); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (231, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"e77e448a81a778a5b8fc7a9fbf773e03045604fc","Message":"initial fotky docker compose\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-15T14:40:10+01:00"}],"HeadCommit":{"Sha1":"e77e448a81a778a5b8fc7a9fbf773e03045604fc","Message":"initial fotky docker compose\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-15T14:40:10+01:00"},"CompareURL":"","Len":1}', 1671111761); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (232, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"e77e448a81a778a5b8fc7a9fbf773e03045604fc","Message":"initial fotky docker compose\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-15T14:40:10+01:00"}],"HeadCommit":{"Sha1":"e77e448a81a778a5b8fc7a9fbf773e03045604fc","Message":"initial fotky docker compose\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-15T14:40:10+01:00"},"CompareURL":"","Len":1}', 1671111761); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (233, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"40bc46b18458720df5a51436ddb2ca1a0debc86a","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"}],"HeadCommit":{"Sha1":"40bc46b18458720df5a51436ddb2ca1a0debc86a","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"},"CompareURL":"h21/fotky-docker/compare/e77e448a81a778a5b8fc7a9fbf773e03045604fc...40bc46b18458720df5a51436ddb2ca1a0debc86a","Len":1}', 1671131683); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (234, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"40bc46b18458720df5a51436ddb2ca1a0debc86a","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"}],"HeadCommit":{"Sha1":"40bc46b18458720df5a51436ddb2ca1a0debc86a","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"},"CompareURL":"h21/fotky-docker/compare/e77e448a81a778a5b8fc7a9fbf773e03045604fc...40bc46b18458720df5a51436ddb2ca1a0debc86a","Len":1}', 1671131683); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (235, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"0d18a85afa82d74eaa314ab63d00b258716a49ca","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"},{"Sha1":"1047c73a236cc57111a6ffbfe207d62d0145c3ff","Message":"initial fotky docker compose\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T14:40:10+01:00"}],"HeadCommit":{"Sha1":"0d18a85afa82d74eaa314ab63d00b258716a49ca","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"},"CompareURL":"h21/fotky-docker/compare/40bc46b18458720df5a51436ddb2ca1a0debc86a...0d18a85afa82d74eaa314ab63d00b258716a49ca","Len":2}', 1671131999); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (236, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"0d18a85afa82d74eaa314ab63d00b258716a49ca","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"},{"Sha1":"1047c73a236cc57111a6ffbfe207d62d0145c3ff","Message":"initial fotky docker compose\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T14:40:10+01:00"}],"HeadCommit":{"Sha1":"0d18a85afa82d74eaa314ab63d00b258716a49ca","Message":"add Caddyfile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-15T20:14:31+01:00"},"CompareURL":"h21/fotky-docker/compare/40bc46b18458720df5a51436ddb2ca1a0debc86a...0d18a85afa82d74eaa314ab63d00b258716a49ca","Len":2}', 1671131999); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (237, 1, 18, 1, 7, 0, 0, 'bonus', 1, '{"Commits":[{"Sha1":"a0b52c97e1dabd5168bc73875c2107cd5e52f9e3","Message":"bonus: some other functions, tut\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-12-15T19:20:42+01:00"}],"HeadCommit":null,"CompareURL":"prokop/BI-PA1/compare/6d0516e1a526e9539af9175f5a6e7d8d24414a2c...a0b52c97e1dabd5168bc73875c2107cd5e52f9e3","Len":1}', 1671137708); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (238, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"38782fc9554e7665f61992dc0e0e506c011f3024","Message":"fotky + some minor changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-25T13:06:39+01:00"},{"Sha1":"34b3cee1f51b806aea6127017dd98d43092265f4","Message":"change iso url\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-07T20:13:57+01:00"}],"HeadCommit":{"Sha1":"38782fc9554e7665f61992dc0e0e506c011f3024","Message":"fotky + some minor changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-25T13:06:39+01:00"},"CompareURL":"h21/HoralServer-web/compare/62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e...38782fc9554e7665f61992dc0e0e506c011f3024","Len":2}', 1671970022); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (239, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"38782fc9554e7665f61992dc0e0e506c011f3024","Message":"fotky + some minor changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-25T13:06:39+01:00"},{"Sha1":"34b3cee1f51b806aea6127017dd98d43092265f4","Message":"change iso url\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-07T20:13:57+01:00"}],"HeadCommit":{"Sha1":"38782fc9554e7665f61992dc0e0e506c011f3024","Message":"fotky + some minor changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2022-12-25T13:06:39+01:00"},"CompareURL":"h21/HoralServer-web/compare/62dc1a137fc521a00ea00c1bdabd7eca7d67ef1e...38782fc9554e7665f61992dc0e0e506c011f3024","Len":2}', 1671970022); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (240, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"abf9c0789933fb80c2aed34a17621af9d780eeb9","Message":"openttd version 0.50.1\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-03T13:59:41+01:00"}],"HeadCommit":{"Sha1":"abf9c0789933fb80c2aed34a17621af9d780eeb9","Message":"openttd version 0.50.1\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-03T13:59:41+01:00"},"CompareURL":"h21/HoralServer-web/compare/38782fc9554e7665f61992dc0e0e506c011f3024...abf9c0789933fb80c2aed34a17621af9d780eeb9","Len":1}', 1672750804); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (241, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"abf9c0789933fb80c2aed34a17621af9d780eeb9","Message":"openttd version 0.50.1\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-03T13:59:41+01:00"}],"HeadCommit":{"Sha1":"abf9c0789933fb80c2aed34a17621af9d780eeb9","Message":"openttd version 0.50.1\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-03T13:59:41+01:00"},"CompareURL":"h21/HoralServer-web/compare/38782fc9554e7665f61992dc0e0e506c011f3024...abf9c0789933fb80c2aed34a17621af9d780eeb9","Len":1}', 1672750804); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (242, 1, 1, 1, 22, 0, 0, '', 0, '', 1672837785); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (243, 2, 1, 1, 22, 0, 0, '', 0, '', 1672837785); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (244, 2, 5, 2, 22, 0, 0, 'refs/heads/rogue', 0, '', 1672838098); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (245, 1, 5, 2, 22, 0, 0, 'refs/heads/rogue', 0, '', 1672838098); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (246, 2, 5, 2, 22, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"f05ac6622e0ae7645044d7f136855f8bb78f37ea","Message":"dgamelaunch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:08:48+01:00"},{"Sha1":"c2ebfd9ea70170463029cb14b3cdd88b76782187","Message":"This is cron-daily v1-Jan-20-2020. files updated: Files\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-27T21:24:07-04:00"},{"Sha1":"155f1c53f1294b740b5a992cb810d6db4a531381","Message":"remove .travis.yml\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-27T20:42:18-04:00"},{"Sha1":"20f81a583adbc4ad5f48eaba3b0d012a4fa8ff8f","Message":"nethack --showpaths output tweak\n\nDon''t display a portable_device_path in --showpaths output if it is\nempty or not being used.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-10T12:12:31-04:00"},{"Sha1":"f67794bcb50aacc7c30a56008ebbf4fa417803c9","Message":"fixes36.6 update\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-05T09:45:49-04:00"}],"HeadCommit":{"Sha1":"f05ac6622e0ae7645044d7f136855f8bb78f37ea","Message":"dgamelaunch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:08:48+01:00"},"CompareURL":"h21/NetHack/compare/495939c1e4d95d0c66321fdd1823d1f9a1732639...f05ac6622e0ae7645044d7f136855f8bb78f37ea","Len":10}', 1672838098); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (247, 1, 5, 2, 22, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"f05ac6622e0ae7645044d7f136855f8bb78f37ea","Message":"dgamelaunch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:08:48+01:00"},{"Sha1":"c2ebfd9ea70170463029cb14b3cdd88b76782187","Message":"This is cron-daily v1-Jan-20-2020. files updated: Files\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-27T21:24:07-04:00"},{"Sha1":"155f1c53f1294b740b5a992cb810d6db4a531381","Message":"remove .travis.yml\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-27T20:42:18-04:00"},{"Sha1":"20f81a583adbc4ad5f48eaba3b0d012a4fa8ff8f","Message":"nethack --showpaths output tweak\n\nDon''t display a portable_device_path in --showpaths output if it is\nempty or not being used.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-10T12:12:31-04:00"},{"Sha1":"f67794bcb50aacc7c30a56008ebbf4fa417803c9","Message":"fixes36.6 update\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-05T09:45:49-04:00"}],"HeadCommit":{"Sha1":"f05ac6622e0ae7645044d7f136855f8bb78f37ea","Message":"dgamelaunch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:08:48+01:00"},"CompareURL":"h21/NetHack/compare/495939c1e4d95d0c66321fdd1823d1f9a1732639...f05ac6622e0ae7645044d7f136855f8bb78f37ea","Len":10}', 1672838098); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (248, 1, 1, 1, 23, 0, 0, '', 0, '', 1672838175); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (249, 2, 1, 1, 23, 0, 0, '', 0, '', 1672838175); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (250, 2, 5, 2, 23, 0, 0, 'refs/heads/rogue', 0, '', 1672838281); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (251, 1, 5, 2, 23, 0, 0, 'refs/heads/rogue', 0, '', 1672838282); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (252, 2, 5, 2, 23, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"1ac3b0808014f1dc10d931041b9e5292f0cdf7d8","Message":"dgamelanuch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:15:44+01:00"},{"Sha1":"7b1ce943bc5e37e4fe7e810ecb910ae827b43474","Message":"Update patchlevel for version 7.1\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-26T07:31:22-04:00"},{"Sha1":"be9a7ce08b297efb4b0aa4ec645e919dbbcf0019","Message":"Merge branch ''7.1-savebreaking'' into master\n\nThere were a few small conflicts. Not sure how those came about, because\nmaster ought to have been merged into 7.1-savebreaking.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-26T07:29:51-04:00"},{"Sha1":"74591804518d9cb07fe35b3821fa48609ddf4562","Message":"Remove HP damage from anti-magic fields\n\nLast minute fix of a VERY common player complaint about 3.7, which was\ninherited here. And they''re right - it''s not at all fair that stepping\nonto an unexpected magic trap could outright kill a character who has\nmore HP than Pw (common among spellcaster roles like Wizard and Priest)\nif they roll badly.\n\nThis is an experimental solution, since I wasn''t sure how much I even\nliked this mechanic of HP damage in the first place. FIQHack-style\ncancellation would be interesting but would require actually\nimplementing that status condition. So the current tack is to keep the\nidea of \"anti-magic items make the anti-magic field worse\", but simply\nby exacerbating the amount of Pw it robs you of and guaranteeing you\nwill be shaved of at least one point of Pw max.\n\nThe average amount of energy drain is still current Pw / 4 in the long\nrun, so spellcasters in particular will still want to avoid magic traps\nbecause they can still remove a big chunk of your magic reserves, but\nit''s hard to actually get to the point of completely exhausting your Pw\npool without deliberately trying.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-25T21:06:50-04:00"},{"Sha1":"43271941f6b9a0239cb7335c85b8377be78fb2bc","Message":"Remove unnecessary table-style lua directives\n\nWith the rndcoord change to return an { x=, y= } table, a bunch of\ndirectives (des.object, des.monster, des.trap, des.terrain) no longer\nhad to be specified in table form with a \"coord\" named value. E.g.\n\n des.object({ class=\")\", coord={mysel:rndcoord()} })\n\nbecomes:\n\n des.object(\")\", mysel:rndcoord())\n\nOnly applies to things where these were used with a simple type, or no\ntype. Where a monster needs to specify peaceful=0, or where a random\ntrap needs to specify no spiders on webs, that still requires the\nparameters in a table.\n\nAlso fix a bug introduced in the recent large merge commit where I\naccidentally left the non-themed room frequency set low after testing\nthat various themed rooms worked after the rndcoord changes.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-25T20:31:07-04:00"}],"HeadCommit":{"Sha1":"1ac3b0808014f1dc10d931041b9e5292f0cdf7d8","Message":"dgamelanuch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:15:44+01:00"},"CompareURL":"h21/xNetHack/compare/afd1c4a548992b106d0e64625730035bfa8b7b60...1ac3b0808014f1dc10d931041b9e5292f0cdf7d8","Len":10}', 1672838282); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (253, 1, 5, 2, 23, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"1ac3b0808014f1dc10d931041b9e5292f0cdf7d8","Message":"dgamelanuch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:15:44+01:00"},{"Sha1":"7b1ce943bc5e37e4fe7e810ecb910ae827b43474","Message":"Update patchlevel for version 7.1\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-26T07:31:22-04:00"},{"Sha1":"be9a7ce08b297efb4b0aa4ec645e919dbbcf0019","Message":"Merge branch ''7.1-savebreaking'' into master\n\nThere were a few small conflicts. Not sure how those came about, because\nmaster ought to have been merged into 7.1-savebreaking.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-26T07:29:51-04:00"},{"Sha1":"74591804518d9cb07fe35b3821fa48609ddf4562","Message":"Remove HP damage from anti-magic fields\n\nLast minute fix of a VERY common player complaint about 3.7, which was\ninherited here. And they''re right - it''s not at all fair that stepping\nonto an unexpected magic trap could outright kill a character who has\nmore HP than Pw (common among spellcaster roles like Wizard and Priest)\nif they roll badly.\n\nThis is an experimental solution, since I wasn''t sure how much I even\nliked this mechanic of HP damage in the first place. FIQHack-style\ncancellation would be interesting but would require actually\nimplementing that status condition. So the current tack is to keep the\nidea of \"anti-magic items make the anti-magic field worse\", but simply\nby exacerbating the amount of Pw it robs you of and guaranteeing you\nwill be shaved of at least one point of Pw max.\n\nThe average amount of energy drain is still current Pw / 4 in the long\nrun, so spellcasters in particular will still want to avoid magic traps\nbecause they can still remove a big chunk of your magic reserves, but\nit''s hard to actually get to the point of completely exhausting your Pw\npool without deliberately trying.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-25T21:06:50-04:00"},{"Sha1":"43271941f6b9a0239cb7335c85b8377be78fb2bc","Message":"Remove unnecessary table-style lua directives\n\nWith the rndcoord change to return an { x=, y= } table, a bunch of\ndirectives (des.object, des.monster, des.trap, des.terrain) no longer\nhad to be specified in table form with a \"coord\" named value. E.g.\n\n des.object({ class=\")\", coord={mysel:rndcoord()} })\n\nbecomes:\n\n des.object(\")\", mysel:rndcoord())\n\nOnly applies to things where these were used with a simple type, or no\ntype. Where a monster needs to specify peaceful=0, or where a random\ntrap needs to specify no spiders on webs, that still requires the\nparameters in a table.\n\nAlso fix a bug introduced in the recent large merge commit where I\naccidentally left the non-themed room frequency set low after testing\nthat various themed rooms worked after the rndcoord changes.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-25T20:31:07-04:00"}],"HeadCommit":{"Sha1":"1ac3b0808014f1dc10d931041b9e5292f0cdf7d8","Message":"dgamelanuch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-01-04T14:15:44+01:00"},"CompareURL":"h21/xNetHack/compare/afd1c4a548992b106d0e64625730035bfa8b7b60...1ac3b0808014f1dc10d931041b9e5292f0cdf7d8","Len":10}', 1672838282); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (254, 1, 1, 1, 24, 0, 0, '', 0, '', 1672838442); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (255, 2, 1, 1, 24, 0, 0, '', 0, '', 1672838442); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (256, 2, 5, 2, 24, 0, 0, 'refs/heads/rogue', 0, '', 1672838543); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (257, 1, 5, 2, 24, 0, 0, 'refs/heads/rogue', 0, '', 1672838543); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (258, 2, 5, 2, 24, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"ba2f7b5456d0022af4d646297e56875e144ad585","Message":"config files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-18T16:19:42+02:00"},{"Sha1":"bc7b07c3d86457febcebeebbd030571aaba59e4f","Message":"Merge branch ''Spl-R-1.2.0'' into my-config\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-18T10:45:32+02:00"},{"Sha1":"8d70ade6f015c7894c171af691393327983173fe","Message":"Resolve a compilation warning.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:59:08-05:00"},{"Sha1":"4483a0dbf2ac560027f410f906b03709a94a6164","Message":"Fix unintentionally high wish probability for wands of wonder.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:52:20-05:00"},{"Sha1":"faa15d357184c19a469df951e6c2cd0ba6770679","Message":"Temporary fix for crash when stealing from shop on another plane.\n\nVanilla has a better fix for this, which we will pull in in the future.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:43:20-05:00"}],"HeadCommit":{"Sha1":"ba2f7b5456d0022af4d646297e56875e144ad585","Message":"config files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-18T16:19:42+02:00"},"CompareURL":"h21/SpliceHack/compare/f80f44af197758cde4d10ed7486af570bc980be8...ba2f7b5456d0022af4d646297e56875e144ad585","Len":10}', 1672838543); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (259, 1, 5, 2, 24, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"ba2f7b5456d0022af4d646297e56875e144ad585","Message":"config files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-18T16:19:42+02:00"},{"Sha1":"bc7b07c3d86457febcebeebbd030571aaba59e4f","Message":"Merge branch ''Spl-R-1.2.0'' into my-config\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-18T10:45:32+02:00"},{"Sha1":"8d70ade6f015c7894c171af691393327983173fe","Message":"Resolve a compilation warning.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:59:08-05:00"},{"Sha1":"4483a0dbf2ac560027f410f906b03709a94a6164","Message":"Fix unintentionally high wish probability for wands of wonder.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:52:20-05:00"},{"Sha1":"faa15d357184c19a469df951e6c2cd0ba6770679","Message":"Temporary fix for crash when stealing from shop on another plane.\n\nVanilla has a better fix for this, which we will pull in in the future.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:43:20-05:00"}],"HeadCommit":{"Sha1":"ba2f7b5456d0022af4d646297e56875e144ad585","Message":"config files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2022-10-18T16:19:42+02:00"},"CompareURL":"h21/SpliceHack/compare/f80f44af197758cde4d10ed7486af570bc980be8...ba2f7b5456d0022af4d646297e56875e144ad585","Len":10}', 1672838543); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (260, 1, 1, 1, 25, 0, 0, '', 0, '', 1672841977); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (261, 1, 5, 1, 25, 0, 0, 'refs/heads/master', 0, '', 1672842023); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (262, 1, 5, 1, 25, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"d5a0b111e7bdea41ee71c8da1ac3c3f76ffea764","Message":"initial vimrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-04T15:20:02+01:00"}],"HeadCommit":{"Sha1":"d5a0b111e7bdea41ee71c8da1ac3c3f76ffea764","Message":"initial vimrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-04T15:20:02+01:00"},"CompareURL":"","Len":1}', 1672842024); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (263, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4a42d2219ebbaf9a872337abfed8dab5ae501a36","Message":"add matrix\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T14:16:12+01:00"}],"HeadCommit":{"Sha1":"4a42d2219ebbaf9a872337abfed8dab5ae501a36","Message":"add matrix\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T14:16:12+01:00"},"CompareURL":"h21/HoralServer-web/compare/abf9c0789933fb80c2aed34a17621af9d780eeb9...4a42d2219ebbaf9a872337abfed8dab5ae501a36","Len":1}', 1673183787); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (264, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4a42d2219ebbaf9a872337abfed8dab5ae501a36","Message":"add matrix\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T14:16:12+01:00"}],"HeadCommit":{"Sha1":"4a42d2219ebbaf9a872337abfed8dab5ae501a36","Message":"add matrix\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T14:16:12+01:00"},"CompareURL":"h21/HoralServer-web/compare/abf9c0789933fb80c2aed34a17621af9d780eeb9...4a42d2219ebbaf9a872337abfed8dab5ae501a36","Len":1}', 1673183787); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (265, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5","Message":"add matrix homeserver\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T15:15:35+01:00"}],"HeadCommit":{"Sha1":"e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5","Message":"add matrix homeserver\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T15:15:35+01:00"},"CompareURL":"h21/HoralServer-web/compare/4a42d2219ebbaf9a872337abfed8dab5ae501a36...e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5","Len":1}', 1673187349); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (266, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5","Message":"add matrix homeserver\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T15:15:35+01:00"}],"HeadCommit":{"Sha1":"e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5","Message":"add matrix homeserver\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-08T15:15:35+01:00"},"CompareURL":"h21/HoralServer-web/compare/4a42d2219ebbaf9a872337abfed8dab5ae501a36...e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5","Len":1}', 1673187349); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (267, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"0231231d318b4bb3ad8e9342be2e35111f2222b1","Message":"add chocolate doom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-20T10:31:01+01:00"}],"HeadCommit":{"Sha1":"0231231d318b4bb3ad8e9342be2e35111f2222b1","Message":"add chocolate doom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-20T10:31:01+01:00"},"CompareURL":"h21/HoralServer-web/compare/e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5...0231231d318b4bb3ad8e9342be2e35111f2222b1","Len":1}', 1674207082); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (268, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"0231231d318b4bb3ad8e9342be2e35111f2222b1","Message":"add chocolate doom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-20T10:31:01+01:00"}],"HeadCommit":{"Sha1":"0231231d318b4bb3ad8e9342be2e35111f2222b1","Message":"add chocolate doom\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-20T10:31:01+01:00"},"CompareURL":"h21/HoralServer-web/compare/e0b1e54ad5cc51bf64a911b1dd09773808f9b5d5...0231231d318b4bb3ad8e9342be2e35111f2222b1","Len":1}', 1674207082); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (269, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4f7cd8de615ba98ea5ceff875a954ea831c9cef5","Message":"openttd version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-21T21:39:23+01:00"}],"HeadCommit":{"Sha1":"4f7cd8de615ba98ea5ceff875a954ea831c9cef5","Message":"openttd version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-21T21:39:23+01:00"},"CompareURL":"h21/HoralServer-web/compare/0231231d318b4bb3ad8e9342be2e35111f2222b1...4f7cd8de615ba98ea5ceff875a954ea831c9cef5","Len":1}', 1674333581); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (270, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4f7cd8de615ba98ea5ceff875a954ea831c9cef5","Message":"openttd version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-21T21:39:23+01:00"}],"HeadCommit":{"Sha1":"4f7cd8de615ba98ea5ceff875a954ea831c9cef5","Message":"openttd version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-01-21T21:39:23+01:00"},"CompareURL":"h21/HoralServer-web/compare/0231231d318b4bb3ad8e9342be2e35111f2222b1...4f7cd8de615ba98ea5ceff875a954ea831c9cef5","Len":1}', 1674333581); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (271, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '', 1674828240); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (272, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '', 1674828240); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (273, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '{"Commits":[],"HeadCommit":{"Sha1":"c2ebfd9ea70170463029cb14b3cdd88b76782187","Message":"This is cron-daily v1-Jan-20-2020. files updated: Files\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-27T21:24:07-04:00"},"CompareURL":"h21/NetHack/compare/rogue...c2ebfd9ea70170463029cb14b3cdd88b76782187","Len":0}', 1674828240); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (274, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '{"Commits":[],"HeadCommit":{"Sha1":"c2ebfd9ea70170463029cb14b3cdd88b76782187","Message":"This is cron-daily v1-Jan-20-2020. files updated: Files\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-06-27T21:24:07-04:00"},"CompareURL":"h21/NetHack/compare/rogue...c2ebfd9ea70170463029cb14b3cdd88b76782187","Len":0}', 1674828240); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (275, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '', 1674828243); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (276, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '', 1674828243); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (277, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '{"Commits":[{"Sha1":"274290bcdf5fb5240414a14c9df33e6b991b0626","Message":"fixes entry for #635 - magical breathing w/ gills\n\nFixes entry for pull request by entrez. If poly''d hero is wearing\nan amulet of magical breathing, avoid gradually losing hit points\nwhile out of water when in aquatic form. You won''t be able to put\non an amulet of magical breathing if already in aquatic form, but\nyou could have one carry over from being worn in some other form.\n\nImplemented for monsters too but won''t have any effect during play\nfor them because they never use that particular type of amulet.\n\nCloses #635\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-18T18:55:18-08:00"},{"Sha1":"90313d443de76dc0f0a849baf27815a2f03a8aba","Message":"Magical breathing helps fish survive out of water\n\nThe hero in an aquatic polyform loses HP for time spent out of the\nwater; allow magical breathing to prevent this, just as it allows the\nhero in her non-aquatic natural form to breathe underwater.\n\nAlso add a similar rule for monster fish-out-of-water HP loss, even\nthough currently monsters can''t use amulets of magical breathing and\nthere''s no non-breathing fish/eel -- just in case this changes at some\npoint.\n","AuthorEmail":"me@entrez.cc","AuthorName":"Michael Meyer","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-16T09:57:37-05:00"},{"Sha1":"d26537c4c90600d4541bb2d4f6abe111c4242d16","Message":"fix github issue #608 - #untrap vs web\n\nReported by Vivit-R, the chance of freeing a monster from being\ntrapped in a web was very small and failure resulted in creation of\na new web at the hero''s spot, eventually making it impossible to\nattempt to #untrap the monster (if hero escaped the new web and moved\nto another spot adjacent to trapped monster, eventually surrounding\nit with webs). [That''s actually misleading. Escaping the new web\nbut staying at the same spot lets the player try again; repeat as\nneeded.... But chance of failure still seemed way too high.]\n\nThis reduces the chance of failure from 29/30 to 6/7 and makes the\nchance of spreading the web after failure be 1/3 instead of 100%. It\nalso supplies missing feedback about the monster still being trapped\nif the attempt to make a new web fails.\n\nCloses #608\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-18T18:30:19-08:00"},{"Sha1":"937eef4b9b3edf6734d33c5acb7f57008b801924","Message":"This is cron-daily v1-Jan-20-2020. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-11-16T16:24:08-05:00"},{"Sha1":"346c4f712704d8b0bbc0678e0c946f26eb374650","Message":"This is cron-daily v1-Jan-20-2020. files updated: Files\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-11-16T16:24:08-05:00"}],"HeadCommit":{"Sha1":"274290bcdf5fb5240414a14c9df33e6b991b0626","Message":"fixes entry for #635 - magical breathing w/ gills\n\nFixes entry for pull request by entrez. If poly''d hero is wearing\nan amulet of magical breathing, avoid gradually losing hit points\nwhile out of water when in aquatic form. You won''t be able to put\non an amulet of magical breathing if already in aquatic form, but\nyou could have one carry over from being worn in some other form.\n\nImplemented for monsters too but won''t have any effect during play\nfor them because they never use that particular type of amulet.\n\nCloses #635\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-18T18:55:18-08:00"},"CompareURL":"h21/NetHack/compare/876e36d18c083ea73a4ad15b7b46ee05118bc8f9...274290bcdf5fb5240414a14c9df33e6b991b0626","Len":10}', 1674828243); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (278, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '{"Commits":[{"Sha1":"274290bcdf5fb5240414a14c9df33e6b991b0626","Message":"fixes entry for #635 - magical breathing w/ gills\n\nFixes entry for pull request by entrez. If poly''d hero is wearing\nan amulet of magical breathing, avoid gradually losing hit points\nwhile out of water when in aquatic form. You won''t be able to put\non an amulet of magical breathing if already in aquatic form, but\nyou could have one carry over from being worn in some other form.\n\nImplemented for monsters too but won''t have any effect during play\nfor them because they never use that particular type of amulet.\n\nCloses #635\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-18T18:55:18-08:00"},{"Sha1":"90313d443de76dc0f0a849baf27815a2f03a8aba","Message":"Magical breathing helps fish survive out of water\n\nThe hero in an aquatic polyform loses HP for time spent out of the\nwater; allow magical breathing to prevent this, just as it allows the\nhero in her non-aquatic natural form to breathe underwater.\n\nAlso add a similar rule for monster fish-out-of-water HP loss, even\nthough currently monsters can''t use amulets of magical breathing and\nthere''s no non-breathing fish/eel -- just in case this changes at some\npoint.\n","AuthorEmail":"me@entrez.cc","AuthorName":"Michael Meyer","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-16T09:57:37-05:00"},{"Sha1":"d26537c4c90600d4541bb2d4f6abe111c4242d16","Message":"fix github issue #608 - #untrap vs web\n\nReported by Vivit-R, the chance of freeing a monster from being\ntrapped in a web was very small and failure resulted in creation of\na new web at the hero''s spot, eventually making it impossible to\nattempt to #untrap the monster (if hero escaped the new web and moved\nto another spot adjacent to trapped monster, eventually surrounding\nit with webs). [That''s actually misleading. Escaping the new web\nbut staying at the same spot lets the player try again; repeat as\nneeded.... But chance of failure still seemed way too high.]\n\nThis reduces the chance of failure from 29/30 to 6/7 and makes the\nchance of spreading the web after failure be 1/3 instead of 100%. It\nalso supplies missing feedback about the monster still being trapped\nif the attempt to make a new web fails.\n\nCloses #608\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-18T18:30:19-08:00"},{"Sha1":"937eef4b9b3edf6734d33c5acb7f57008b801924","Message":"This is cron-daily v1-Jan-20-2020. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-11-16T16:24:08-05:00"},{"Sha1":"346c4f712704d8b0bbc0678e0c946f26eb374650","Message":"This is cron-daily v1-Jan-20-2020. files updated: Files\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-11-16T16:24:08-05:00"}],"HeadCommit":{"Sha1":"274290bcdf5fb5240414a14c9df33e6b991b0626","Message":"fixes entry for #635 - magical breathing w/ gills\n\nFixes entry for pull request by entrez. If poly''d hero is wearing\nan amulet of magical breathing, avoid gradually losing hit points\nwhile out of water when in aquatic form. You won''t be able to put\non an amulet of magical breathing if already in aquatic form, but\nyou could have one carry over from being worn in some other form.\n\nImplemented for monsters too but won''t have any effect during play\nfor them because they never use that particular type of amulet.\n\nCloses #635\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2021-11-18T18:55:18-08:00"},"CompareURL":"h21/NetHack/compare/876e36d18c083ea73a4ad15b7b46ee05118bc8f9...274290bcdf5fb5240414a14c9df33e6b991b0626","Len":10}', 1674828243); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (279, 2, 9, 2, 22, 0, 0, 'refs/tags/MOVE2GIT', 0, '{"Commits":null,"HeadCommit":{"Sha1":"34221670bc81de75eab4b1e214ce479eb7dd51af","Message":"Mark the move to git.","AuthorEmail":"keni@his.com","AuthorName":"keni","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2015-05-01T08:55:28-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...4f98aebd8797e0aa6a31cd5b78643c9e0df427dc","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (280, 1, 9, 2, 22, 0, 0, 'refs/tags/MOVE2GIT', 0, '{"Commits":null,"HeadCommit":{"Sha1":"34221670bc81de75eab4b1e214ce479eb7dd51af","Message":"Mark the move to git.","AuthorEmail":"keni@his.com","AuthorName":"keni","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2015-05-01T08:55:28-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...4f98aebd8797e0aa6a31cd5b78643c9e0df427dc","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (281, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC01', 0, '{"Commits":null,"HeadCommit":{"Sha1":"bc19360ae0594dd2676d33d62c85a1015affeab7","Message":"Nethack release NetHack-3.6.0 base","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2015-12-02T13:58:09-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...c87694207ac3930fd75376d1f90ee78d3263fe89","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (282, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC01', 0, '{"Commits":null,"HeadCommit":{"Sha1":"bc19360ae0594dd2676d33d62c85a1015affeab7","Message":"Nethack release NetHack-3.6.0 base","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2015-12-02T13:58:09-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...c87694207ac3930fd75376d1f90ee78d3263fe89","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (283, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC02', 0, '{"Commits":null,"HeadCommit":{"Sha1":"71c5bab0c36de4dc73d70c8209f08ccf59579385","Message":"NetHack Release 3.6.0 Release Candidate 2","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T12:05:54-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...3150bc8ec8edc1cf79f4005029faed8265178182","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (284, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC02', 0, '{"Commits":null,"HeadCommit":{"Sha1":"71c5bab0c36de4dc73d70c8209f08ccf59579385","Message":"NetHack Release 3.6.0 Release Candidate 2","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T12:05:54-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...3150bc8ec8edc1cf79f4005029faed8265178182","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (285, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC03', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7079c0a3a5291d2a17239fe2a6b1a4a741b6f496","Message":"NetHack Release 3.6.0 Release Candidate 3","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T15:12:23-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...1ec52ef843250083541a2dda7d44da1e9dea77e7","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (286, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC03', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7079c0a3a5291d2a17239fe2a6b1a4a741b6f496","Message":"NetHack Release 3.6.0 Release Candidate 3","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T15:12:23-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...1ec52ef843250083541a2dda7d44da1e9dea77e7","Len":0}', 1674828271); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (287, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC04', 0, '{"Commits":null,"HeadCommit":{"Sha1":"a1af46ab7ca999a25899276685c033e710eec62a","Message":"NetHack Release 3.6.0 Release Candidate 4","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T22:05:19-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...e8ce14859facd8a7bb02348c12e7abe193500938","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (288, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC04', 0, '{"Commits":null,"HeadCommit":{"Sha1":"a1af46ab7ca999a25899276685c033e710eec62a","Message":"NetHack Release 3.6.0 Release Candidate 4","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T22:05:19-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...e8ce14859facd8a7bb02348c12e7abe193500938","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (289, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC05', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 fix for win gui bug","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:10:36-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...c6eda8ceb32d934309fd8b6da805a07632c94d7a","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (290, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_RC05', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 fix for win gui bug","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:10:36-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...c6eda8ceb32d934309fd8b6da805a07632c94d7a","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (291, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 Release Tag","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:11:39-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...1b73bf059d9ec773cbbc331b9e40a9eb96437622","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (292, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.0_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 Release Tag","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:11:39-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...1b73bf059d9ec773cbbc331b9e40a9eb96437622","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (293, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.1_RC01', 0, '{"Commits":null,"HeadCommit":{"Sha1":"d4ebae12f1a709d1833cf466dd0c553fb97518d2","Message":"Tagging NetHack 3.6.1 RC 1","AuthorEmail":"paxed@alt.org","AuthorName":"Pasi Kallinen","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2018-04-27T07:31:28+03:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...afbcbc8c86f2db4bd4341b8bda181fe1f9562edb","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (294, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.1_RC01', 0, '{"Commits":null,"HeadCommit":{"Sha1":"d4ebae12f1a709d1833cf466dd0c553fb97518d2","Message":"Tagging NetHack 3.6.1 RC 1","AuthorEmail":"paxed@alt.org","AuthorName":"Pasi Kallinen","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2018-04-27T07:31:28+03:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...afbcbc8c86f2db4bd4341b8bda181fe1f9562edb","Len":0}', 1674828272); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (295, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.1_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"d4ebae12f1a709d1833cf466dd0c553fb97518d2","Message":"Tagging NetHack 3.6.1 Release","AuthorEmail":"paxed@alt.org","AuthorName":"Pasi Kallinen","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2018-04-27T19:10:29+03:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...e79ead83ebd93d51176080743a9e8e709bd591d0","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (296, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.1_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"d4ebae12f1a709d1833cf466dd0c553fb97518d2","Message":"Tagging NetHack 3.6.1 Release","AuthorEmail":"paxed@alt.org","AuthorName":"Pasi Kallinen","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2018-04-27T19:10:29+03:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...e79ead83ebd93d51176080743a9e8e709bd591d0","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (297, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.2_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"76090dd648dcff3cfa7503f1257e0499a381b1c1","Message":"NetHack Release 3.6.2 Release Tag","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2019-05-11T21:31:42-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...663594ada900cf3b03c5125da0af33509e09a6cf","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (298, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.2_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"76090dd648dcff3cfa7503f1257e0499a381b1c1","Message":"NetHack Release 3.6.2 Release Tag","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2019-05-11T21:31:42-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...663594ada900cf3b03c5125da0af33509e09a6cf","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (299, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.2_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"76090dd648dcff3cfa7503f1257e0499a381b1c1","Message":"This is cron-daily v1-Feb-22-2019. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2019-05-07T15:29:25-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...76090dd648dcff3cfa7503f1257e0499a381b1c1","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (300, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.2_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"76090dd648dcff3cfa7503f1257e0499a381b1c1","Message":"This is cron-daily v1-Feb-22-2019. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2019-05-07T15:29:25-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...76090dd648dcff3cfa7503f1257e0499a381b1c1","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (301, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.beta1.2019.11.17', 0, '{"Commits":null,"HeadCommit":{"Sha1":"32e61f7dd285b86e316e71c7d03c2433f8c143b6","Message":"This is cron-daily v1-Oct-31-2019. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-11-17T20:23:20-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...32e61f7dd285b86e316e71c7d03c2433f8c143b6","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (302, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.beta1.2019.11.17', 0, '{"Commits":null,"HeadCommit":{"Sha1":"32e61f7dd285b86e316e71c7d03c2433f8c143b6","Message":"This is cron-daily v1-Oct-31-2019. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-11-17T20:23:20-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...32e61f7dd285b86e316e71c7d03c2433f8c143b6","Len":0}', 1674828273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (303, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.wip.2019.10.29', 0, '{"Commits":null,"HeadCommit":{"Sha1":"fff4ceebdd3b139065a904bf26c1266d3891580e","Message":"travis deploy zip file name refinement\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-10-29T09:34:21-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...fff4ceebdd3b139065a904bf26c1266d3891580e","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (304, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.wip.2019.10.29', 0, '{"Commits":null,"HeadCommit":{"Sha1":"fff4ceebdd3b139065a904bf26c1266d3891580e","Message":"travis deploy zip file name refinement\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-10-29T09:34:21-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...fff4ceebdd3b139065a904bf26c1266d3891580e","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (305, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.wip.2019.10.30', 0, '{"Commits":null,"HeadCommit":{"Sha1":"feaaa934513b2f93ae5b6533fc4ea4e952fb04fa","Message":"try travis pre-release zip build again with update powershell command\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-10-29T17:54:58-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...feaaa934513b2f93ae5b6533fc4ea4e952fb04fa","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (306, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.wip.2019.10.30', 0, '{"Commits":null,"HeadCommit":{"Sha1":"feaaa934513b2f93ae5b6533fc4ea4e952fb04fa","Message":"try travis pre-release zip build again with update powershell command\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-10-29T17:54:58-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...feaaa934513b2f93ae5b6533fc4ea4e952fb04fa","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (307, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.wip.2019.11.04', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7efdec7f5e56202eeb28989d4a6ff82f5568dc88","Message":"fix symset:curses S_tree\n\nSymbol set changes...\n\ncurses:\n S_tree (use plus-or-minus sign instead of accidental horizontal line);\n S_bars (switch from default ''#'' to not-equals sign);\n\nDECgraphics:\n S_altar (switch from default ''_'' to ''pi'');\n S_bars (switch from ''pi'' to not-equals sign);\n\nDECgraphics_2: get rid of this commented out set since its contents are\n now folded into DECgraphics.\n\n(The IBMgraphics one is just whitespace; delete a \u003cspace\u003e that precedes\na \u003ctab\u003e.)\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2019-11-04T10:42:14-08:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...7efdec7f5e56202eeb28989d4a6ff82f5568dc88","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (308, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3.wip.2019.11.04', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7efdec7f5e56202eeb28989d4a6ff82f5568dc88","Message":"fix symset:curses S_tree\n\nSymbol set changes...\n\ncurses:\n S_tree (use plus-or-minus sign instead of accidental horizontal line);\n S_bars (switch from default ''#'' to not-equals sign);\n\nDECgraphics:\n S_altar (switch from default ''_'' to ''pi'');\n S_bars (switch from ''pi'' to not-equals sign);\n\nDECgraphics_2: get rid of this commented out set since its contents are\n now folded into DECgraphics.\n\n(The IBMgraphics one is just whitespace; delete a \u003cspace\u003e that precedes\na \u003ctab\u003e.)\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2019-11-04T10:42:14-08:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...7efdec7f5e56202eeb28989d4a6ff82f5568dc88","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (309, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7ea41cd31d9f418b6eeac8e43a179cfae4b064bd","Message":"another bit\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-12-05T18:24:04-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...7ea41cd31d9f418b6eeac8e43a179cfae4b064bd","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (310, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7ea41cd31d9f418b6eeac8e43a179cfae4b064bd","Message":"another bit\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-12-05T18:24:04-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...7ea41cd31d9f418b6eeac8e43a179cfae4b064bd","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (311, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3_WIP', 0, '{"Commits":null,"HeadCommit":{"Sha1":"aeb3c7a6235e82e27c5965fbfe32826a10e38365","Message":"NetHack-3.6.3 development base","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-05-12T07:44:55-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...ee891887a9d173dbe693b70ac9d1bde6e819171b","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (312, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.3_WIP', 0, '{"Commits":null,"HeadCommit":{"Sha1":"aeb3c7a6235e82e27c5965fbfe32826a10e38365","Message":"NetHack-3.6.3 development base","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-05-12T07:44:55-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...ee891887a9d173dbe693b70ac9d1bde6e819171b","Len":0}', 1674828274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (313, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.4_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"cf9e92677a18d1bc66c040068b2e666c651c7522","Message":"update version\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-12-18T15:29:40-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...cf9e92677a18d1bc66c040068b2e666c651c7522","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (314, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.4_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"cf9e92677a18d1bc66c040068b2e666c651c7522","Message":"update version\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-12-18T15:29:40-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...cf9e92677a18d1bc66c040068b2e666c651c7522","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (315, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.5_PostRelease', 0, '{"Commits":null,"HeadCommit":{"Sha1":"514682730773318f68d5b28b0428cfe333f92fe0","Message":"Post-release of 3.6.5","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2020-01-27T17:13:54-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...48d1fe0142cf90db8c88f13a06e012348701aeff","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (316, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.5_PostRelease', 0, '{"Commits":null,"HeadCommit":{"Sha1":"514682730773318f68d5b28b0428cfe333f92fe0","Message":"Post-release of 3.6.5","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2020-01-27T17:13:54-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...48d1fe0142cf90db8c88f13a06e012348701aeff","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (317, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.5_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"514682730773318f68d5b28b0428cfe333f92fe0","Message":"Another VMS tweak\n\nOne of the new paragraphs inadvertently duplicated an existing one.\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2020-01-27T12:14:19-08:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...514682730773318f68d5b28b0428cfe333f92fe0","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (318, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.5_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"514682730773318f68d5b28b0428cfe333f92fe0","Message":"Another VMS tweak\n\nOne of the new paragraphs inadvertently duplicated an existing one.\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2020-01-27T12:14:19-08:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...514682730773318f68d5b28b0428cfe333f92fe0","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (319, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.6_PostRelease', 0, '{"Commits":null,"HeadCommit":{"Sha1":"36ee1849b1932d72a2340233c57701b1274c90ee","Message":"PostRelease","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-03-08T14:59:25-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...4c38b459d6063b13ad9d7a2c73ad05ab4c097650","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (320, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.6_PostRelease', 0, '{"Commits":null,"HeadCommit":{"Sha1":"36ee1849b1932d72a2340233c57701b1274c90ee","Message":"PostRelease","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-03-08T14:59:25-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...4c38b459d6063b13ad9d7a2c73ad05ab4c097650","Len":0}', 1674828275); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (321, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.6_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"34c56eece35f42aa99bb5ab1a829bb31b2db3b1a","Message":"cron daily updates\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-03-08T13:29:31-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...34c56eece35f42aa99bb5ab1a829bb31b2db3b1a","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (322, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.6.6_Released', 0, '{"Commits":null,"HeadCommit":{"Sha1":"34c56eece35f42aa99bb5ab1a829bb31b2db3b1a","Message":"cron daily updates\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-03-08T13:29:31-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...34c56eece35f42aa99bb5ab1a829bb31b2db3b1a","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (323, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.7.0_WIP', 0, '{"Commits":null,"HeadCommit":{"Sha1":"efd0911f89dbdaaf205c850f1fc35289e1a23f63","Message":"NetHack-3.7.0_WIP","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-01-27T17:18:11-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...26cba3148f054393d821605d03c42d2f439fd767","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (324, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.7.0_WIP', 0, '{"Commits":null,"HeadCommit":{"Sha1":"efd0911f89dbdaaf205c850f1fc35289e1a23f63","Message":"NetHack-3.7.0_WIP","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-01-27T17:18:11-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...26cba3148f054393d821605d03c42d2f439fd767","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (325, 2, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.7.0_WIP-2020-02-14', 0, '{"Commits":null,"HeadCommit":{"Sha1":"334db31cd018712d5e4191c590a61548a2cbeae2","Message":"Guidebook update from latest cron-daily\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-02-13T22:10:37-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...334db31cd018712d5e4191c590a61548a2cbeae2","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (326, 1, 9, 2, 22, 0, 0, 'refs/tags/NetHack-3.7.0_WIP-2020-02-14', 0, '{"Commits":null,"HeadCommit":{"Sha1":"334db31cd018712d5e4191c590a61548a2cbeae2","Message":"Guidebook update from latest cron-daily\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2020-02-13T22:10:37-05:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...334db31cd018712d5e4191c590a61548a2cbeae2","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (327, 2, 9, 2, 22, 0, 0, 'refs/tags/nmake-explicit-path', 0, '{"Commits":null,"HeadCommit":{"Sha1":"50a6526bde3e0fbf5369de6d53431d6a4c4daff6","Message":"trigger build\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-06-29T13:03:52-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...50a6526bde3e0fbf5369de6d53431d6a4c4daff6","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (328, 1, 9, 2, 22, 0, 0, 'refs/tags/nmake-explicit-path', 0, '{"Commits":null,"HeadCommit":{"Sha1":"50a6526bde3e0fbf5369de6d53431d6a4c4daff6","Message":"trigger build\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-06-29T13:03:52-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...50a6526bde3e0fbf5369de6d53431d6a4c4daff6","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (329, 2, 9, 2, 22, 0, 0, 'refs/tags/v3.6.3.757eca7', 0, '{"Commits":null,"HeadCommit":{"Sha1":"757eca7fd98d8f72be798cde7ee0a5dc9d280826","Message":"fix github issue #238 - ''scores'' option\n\nFixes #238\n\nFor the three fields in the ''scores'' option''s argument: top, around,\nand own, if any was separated from preceding one by space(s) rather\nthan slash and lacked a count prefix, the argument parsing skipped\nover it. So \"10t/3a/o\" and \"10t 3a 1o\" worked but \"10t 3a o\" ignored\nthe ''o''. The issue report was about ''own'' but there''s nothing special\nabout ''own'' itself; just that it doesn''t warrant a count prefix and is\nusually last (in other words, normally preceded by one or both of the\nother two) so more likely to trip over this.\n\n[I thought there was another report about ''scores'' misbehaving (from\nquite a while ago) but couldn''t find one. If it exists, it might have\nbeen about the same thing.]\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2019-10-25T23:11:06-07:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...757eca7fd98d8f72be798cde7ee0a5dc9d280826","Len":0}', 1674828276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (330, 1, 9, 2, 22, 0, 0, 'refs/tags/v3.6.3.757eca7', 0, '{"Commits":null,"HeadCommit":{"Sha1":"757eca7fd98d8f72be798cde7ee0a5dc9d280826","Message":"fix github issue #238 - ''scores'' option\n\nFixes #238\n\nFor the three fields in the ''scores'' option''s argument: top, around,\nand own, if any was separated from preceding one by space(s) rather\nthan slash and lacked a count prefix, the argument parsing skipped\nover it. So \"10t/3a/o\" and \"10t 3a 1o\" worked but \"10t 3a o\" ignored\nthe ''o''. The issue report was about ''own'' but there''s nothing special\nabout ''own'' itself; just that it doesn''t warrant a count prefix and is\nusually last (in other words, normally preceded by one or both of the\nother two) so more likely to trip over this.\n\n[I thought there was another report about ''scores'' misbehaving (from\nquite a while ago) but couldn''t find one. If it exists, it might have\nbeen about the same thing.]\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2019-10-25T23:11:06-07:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...757eca7fd98d8f72be798cde7ee0a5dc9d280826","Len":0}', 1674828277); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (331, 2, 9, 2, 22, 0, 0, 'refs/tags/v3.6.3.wip.2019.10.29', 0, '{"Commits":null,"HeadCommit":{"Sha1":"fff4ceebdd3b139065a904bf26c1266d3891580e","Message":"travis deploy zip file name refinement\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-10-29T09:34:21-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...fff4ceebdd3b139065a904bf26c1266d3891580e","Len":0}', 1674828277); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (332, 1, 9, 2, 22, 0, 0, 'refs/tags/v3.6.3.wip.2019.10.29', 0, '{"Commits":null,"HeadCommit":{"Sha1":"fff4ceebdd3b139065a904bf26c1266d3891580e","Message":"travis deploy zip file name refinement\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2019-10-29T09:34:21-04:00"},"CompareURL":"h21/NetHack/compare/0000000000000000000000000000000000000000...fff4ceebdd3b139065a904bf26c1266d3891580e","Len":0}', 1674828277); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (333, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '{"Commits":[{"Sha1":"59b117c655731bdf1f8b92c57bdb786119927f3a","Message":"follow-up for typo\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-23T20:32:28-05:00"},{"Sha1":"1b7ad11679061e3ea63c1738e06a8fe2f896e98e","Message":"cherry-pick 3.7 work-around ubuntu 21.10 issue\n\nNetHack was trying to suppress warn_unused_result\nin include/tradstdc.h, by defining warn_unused_result\nto an empty string. That began causing a build error\nin a system-supplied header file cdefs.h\nwhen using 21.10 ubuntu impish.\n\nTry skipping that in tradstdc.h for any linux, unless\nthe NetHack build defines GCC_URWARN to force it.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-23T19:51:31-05:00"},{"Sha1":"4a3d46635e823cefedc475892b69e1c35ba941e8","Message":"work around ubuntu 20.10 build issue\n\nNetHack was trying to suppress warn_unused_result\nin include/tradstdc.h, by defining warn_unused_result\nto an empty string. That began causing a build error\nin a system-supplied header file cdefs.h\nwhen using 20.10 ubuntu impish.\n\nTry skipping that in tradstdc.h for any linux, unless\nthe NetHack build defines GCC_URWARN to force it into\nplay.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-04T08:24:08-05:00"},{"Sha1":"265c87197d5fac13fe79a4fcff5b29d8540ebaf8","Message":"This is cron-daily v1-Jan-20-2020. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-09-29T09:24:05-04:00"},{"Sha1":"2538748c6fcdcaf33a070a2e37a5c934db91bc1e","Message":"Merge branch ''NetHack-3.6'' of https://rodney.nethack.org:20040/git/NHsource into NetHack-3.6\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-09-29T08:30:42-04:00"}],"HeadCommit":{"Sha1":"59b117c655731bdf1f8b92c57bdb786119927f3a","Message":"follow-up for typo\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-23T20:32:28-05:00"},"CompareURL":"h21/NetHack/compare/c2ebfd9ea70170463029cb14b3cdd88b76782187...59b117c655731bdf1f8b92c57bdb786119927f3a","Len":6}', 1674828539); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (334, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '{"Commits":[{"Sha1":"59b117c655731bdf1f8b92c57bdb786119927f3a","Message":"follow-up for typo\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-23T20:32:28-05:00"},{"Sha1":"1b7ad11679061e3ea63c1738e06a8fe2f896e98e","Message":"cherry-pick 3.7 work-around ubuntu 21.10 issue\n\nNetHack was trying to suppress warn_unused_result\nin include/tradstdc.h, by defining warn_unused_result\nto an empty string. That began causing a build error\nin a system-supplied header file cdefs.h\nwhen using 21.10 ubuntu impish.\n\nTry skipping that in tradstdc.h for any linux, unless\nthe NetHack build defines GCC_URWARN to force it.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-23T19:51:31-05:00"},{"Sha1":"4a3d46635e823cefedc475892b69e1c35ba941e8","Message":"work around ubuntu 20.10 build issue\n\nNetHack was trying to suppress warn_unused_result\nin include/tradstdc.h, by defining warn_unused_result\nto an empty string. That began causing a build error\nin a system-supplied header file cdefs.h\nwhen using 20.10 ubuntu impish.\n\nTry skipping that in tradstdc.h for any linux, unless\nthe NetHack build defines GCC_URWARN to force it into\nplay.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-04T08:24:08-05:00"},{"Sha1":"265c87197d5fac13fe79a4fcff5b29d8540ebaf8","Message":"This is cron-daily v1-Jan-20-2020. guidebook updated: doc/Guidebook.txt\n","AuthorEmail":"nhw+cron@nethack.org","AuthorName":"nhw_cron","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-09-29T09:24:05-04:00"},{"Sha1":"2538748c6fcdcaf33a070a2e37a5c934db91bc1e","Message":"Merge branch ''NetHack-3.6'' of https://rodney.nethack.org:20040/git/NHsource into NetHack-3.6\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2021-09-29T08:30:42-04:00"}],"HeadCommit":{"Sha1":"59b117c655731bdf1f8b92c57bdb786119927f3a","Message":"follow-up for typo\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2022-01-23T20:32:28-05:00"},"CompareURL":"h21/NetHack/compare/c2ebfd9ea70170463029cb14b3cdd88b76782187...59b117c655731bdf1f8b92c57bdb786119927f3a","Len":6}', 1674828539); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (335, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '{"Commits":[{"Sha1":"42171ca07075f05a5cde096eedbdc2889a26edbf","Message":"paste error\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-27T01:29:09-05:00"},{"Sha1":"aee2ff57e866ac88472a48e5cf966be5fa1fb8fe","Message":"additional Soundeffect, additional SoundAchievement\n\nAlso adds a macro SoundeffectEvenIfDeaf for a couple of proposed\nspecial cases where Deafness shouldn''t factor in.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-27T01:25:05-05:00"},{"Sha1":"219c1155f889dc24a957dc833f68c8c6c1976411","Message":"a missing break and an incorrect magic number\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-26T22:39:14-05:00"},{"Sha1":"049b90e25eecf79e5345ddb53ce069a72d453a54","Message":"fix the missing break mentioned in previous commit\n\n... but inadvertently left out of that commit.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-26T17:38:18-05:00"},{"Sha1":"446044e1d54a4a12881d278b227ddcab4c3749b5","Message":"1st of a few sequencing changes\n\nrename display_gamewindows() to init_sound_and_display_gamewindows()\n(I know that''s getting pretty long-named).\n\nmove activate_chosen_soundlib() into init_sound_and_display_gamewindows()\nfrom moveloop_preamble().\n\nAlso included was a missing break in a switch related to sounds.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-26T17:15:59-05:00"}],"HeadCommit":{"Sha1":"42171ca07075f05a5cde096eedbdc2889a26edbf","Message":"paste error\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-27T01:29:09-05:00"},"CompareURL":"h21/NetHack/compare/274290bcdf5fb5240414a14c9df33e6b991b0626...42171ca07075f05a5cde096eedbdc2889a26edbf","Len":2340}', 1674828543); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (336, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '{"Commits":[{"Sha1":"42171ca07075f05a5cde096eedbdc2889a26edbf","Message":"paste error\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-27T01:29:09-05:00"},{"Sha1":"aee2ff57e866ac88472a48e5cf966be5fa1fb8fe","Message":"additional Soundeffect, additional SoundAchievement\n\nAlso adds a macro SoundeffectEvenIfDeaf for a couple of proposed\nspecial cases where Deafness shouldn''t factor in.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-27T01:25:05-05:00"},{"Sha1":"219c1155f889dc24a957dc833f68c8c6c1976411","Message":"a missing break and an incorrect magic number\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-26T22:39:14-05:00"},{"Sha1":"049b90e25eecf79e5345ddb53ce069a72d453a54","Message":"fix the missing break mentioned in previous commit\n\n... but inadvertently left out of that commit.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-26T17:38:18-05:00"},{"Sha1":"446044e1d54a4a12881d278b227ddcab4c3749b5","Message":"1st of a few sequencing changes\n\nrename display_gamewindows() to init_sound_and_display_gamewindows()\n(I know that''s getting pretty long-named).\n\nmove activate_chosen_soundlib() into init_sound_and_display_gamewindows()\nfrom moveloop_preamble().\n\nAlso included was a missing break in a switch related to sounds.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-26T17:15:59-05:00"}],"HeadCommit":{"Sha1":"42171ca07075f05a5cde096eedbdc2889a26edbf","Message":"paste error\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-01-27T01:29:09-05:00"},"CompareURL":"h21/NetHack/compare/274290bcdf5fb5240414a14c9df33e6b991b0626...42171ca07075f05a5cde096eedbdc2889a26edbf","Len":2340}', 1674828543); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (337, 2, 5, 2, 23, 0, 0, 'refs/heads/master', 0, '', 1674828593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (338, 1, 5, 2, 23, 0, 0, 'refs/heads/master', 0, '', 1674828593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (339, 2, 5, 2, 23, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4a97e35e7f85db6d7227aa21080697aceb925016","Message":"Fix: whereis used pointer to static memory as truth value\n\nUsing never-zero pointer address of g.killer.name as a boolean was\nincorrect but was only detected by gcc 12. Probably what was intended\nwas g.killer.name[0], but it doesn''t seem completely correct to use that\neither, since I don''t think it always gets cleared after being written\nto (normally it isn''t relevant if the game is still going). So instead\nuse g.program_state.gameover, which is only set in really_done from\nwhich there is no exit, and I doubt whereis gets updated between then\nand ending the process but at the same time if you used something that\nwas set *before* really_done is called, there''s a possibility the hero\ngets lifesaved.\n\nThe \"ascended\" value in whereis doesn''t actually seem to be used\nanywhere, so this may all be pointless.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-06T07:24:34-04:00"},{"Sha1":"9a960d2f253872fe14da195e280592389106fac8","Message":"new warnings showed up in old code\n\nA test build with gcc-12 cause two new warnings to appear.\n\nmkmaze.c: In function ‘makemaz’:\nmkmaze.c:983:44: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=]\n983 | Sprintf(protofile, \"%s%d-%d\", g.dungeons[u.uz.dnum].proto,\n | ^\nIn file included from ../include/config.h:665,\n from ../include/hack.h:10,\n from mkmaze.c:6:\n../include/global.h:262:24: note: ‘sprintf’ output between 4 and 31 bytes into a destination of size 20\n262 | #define Sprintf (void) sprintf\nmkmaze.c:983:17: note: in expansion of macro ‘Sprintf’\n983 | Sprintf(protofile, \"%s%d-%d\", g.dungeons[u.uz.dnum].proto,\n | ^~~~~~~-+\n\nAs usual, that one can easily be rectified by replacing it with an Snprintf() call.\nThere were several Sprintf calls in the vicinity, targeting the same destination\nbuffer, so I figured that I might as well replace the several.\n\n../win/Qt/qt_menu.cpp: In member function\n‘virtual void nethack_qt_::NetHackQtTextWindow::UseRIP(int, time_t)’:\n../win/Qt/qt_menu.cpp:1082:63: warning:\n‘%ld’ directive output may be truncated writing between 1 and 20 bytes into a region\nof size 17 [-Wformat-truncation=]\n1082 | (void) snprintf(rip_line[GOLD_LINE], STONE_LINE_LEN + 1, \"%ld Au\", cash);\n | ^~~\n../win/Qt/qt_menu.cpp:1082:62: note: directive argument in the range [-9223372036854775808, 999999999]\n1082 | (void) snprintf(rip_line[GOLD_LINE], STONE_LINE_LEN + 1, \"%ld Au\", cash);\n | ^~~~~~~~\n../win/Qt/qt_menu.cpp:1082:20: note: ‘snprintf’ output between 5 and 24 bytes into a destination of size 17\n1082 | (void) snprintf(rip_line[GOLD_LINE], STONE_LINE_LEN + 1, \"%ld Au\", cash);\n | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThat one was a little different. It wasn''t complaining about the destination buffer\nsize in the way -Wformat-overflow was on the previous warning from gcc, and it\nwas already using snprintf().\n\nIt looks like what the C++ compiler was warning about there, was that snprintf()\ninforms you after-the-call that the destination buffer was too small for the\nresult string to be fully written. It informs the developer of that by returning\nthe number of characters that would have been written if the buffer had been big\nenough. Presumably, the C++ compiler picked up on the fact that the return value\nwas being cast to void, thus throwing away that truncation information from the\nreturn value.\n\nWorked around it by putting the return value into a variable, and flagging the\nvariable with nhUse(variable) so as not to exchange the -Wformat-truncation\nwarning with a variable-set-but-not-used warning.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-06-11T00:18:27-04:00"},{"Sha1":"b0e983b4c2f1ebcf608349c9543b1f3f435c85f6","Message":"Fix: stray debug printing left in Bazaar Town\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-04T07:11:05-04:00"},{"Sha1":"bc223305f5af58dca542c150f3eee92be65a873a","Message":"Make rock trolls stoning resistant\n\nThis is NOT because rock trolls are made out of stone like stone golems\nare, but rather because they have a special affinity for rock.\n\n(If I ever adopt the Trollsbane/Sunsword tweaks that instapetrify trolls\non contact, that will clash interestingly with this.)\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-02T07:38:42-04:00"},{"Sha1":"578925a1e54e0bf206ab4863faa06f2af36ed9ee","Message":"Make the Master Assassin poison resistant\n\nBecause what kind of assassin hasn''t taken measures to ensure they won''t\nbe killed by their own sorts of poisons?\n\nI''m doing this now because the Rogue quest will likely be one of the\nlast to receive an overhaul, and this will likely get forgotten about by\nthen.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-02T07:35:54-04:00"}],"HeadCommit":{"Sha1":"4a97e35e7f85db6d7227aa21080697aceb925016","Message":"Fix: whereis used pointer to static memory as truth value\n\nUsing never-zero pointer address of g.killer.name as a boolean was\nincorrect but was only detected by gcc 12. Probably what was intended\nwas g.killer.name[0], but it doesn''t seem completely correct to use that\neither, since I don''t think it always gets cleared after being written\nto (normally it isn''t relevant if the game is still going). So instead\nuse g.program_state.gameover, which is only set in really_done from\nwhich there is no exit, and I doubt whereis gets updated between then\nand ending the process but at the same time if you used something that\nwas set *before* really_done is called, there''s a possibility the hero\ngets lifesaved.\n\nThe \"ascended\" value in whereis doesn''t actually seem to be used\nanywhere, so this may all be pointless.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-06T07:24:34-04:00"},"CompareURL":"h21/xNetHack/compare/45fa418d73ddf6b15503bc8a117a928f9fc8f3d7...4a97e35e7f85db6d7227aa21080697aceb925016","Len":10}', 1674828593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (340, 1, 5, 2, 23, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4a97e35e7f85db6d7227aa21080697aceb925016","Message":"Fix: whereis used pointer to static memory as truth value\n\nUsing never-zero pointer address of g.killer.name as a boolean was\nincorrect but was only detected by gcc 12. Probably what was intended\nwas g.killer.name[0], but it doesn''t seem completely correct to use that\neither, since I don''t think it always gets cleared after being written\nto (normally it isn''t relevant if the game is still going). So instead\nuse g.program_state.gameover, which is only set in really_done from\nwhich there is no exit, and I doubt whereis gets updated between then\nand ending the process but at the same time if you used something that\nwas set *before* really_done is called, there''s a possibility the hero\ngets lifesaved.\n\nThe \"ascended\" value in whereis doesn''t actually seem to be used\nanywhere, so this may all be pointless.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-06T07:24:34-04:00"},{"Sha1":"9a960d2f253872fe14da195e280592389106fac8","Message":"new warnings showed up in old code\n\nA test build with gcc-12 cause two new warnings to appear.\n\nmkmaze.c: In function ‘makemaz’:\nmkmaze.c:983:44: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=]\n983 | Sprintf(protofile, \"%s%d-%d\", g.dungeons[u.uz.dnum].proto,\n | ^\nIn file included from ../include/config.h:665,\n from ../include/hack.h:10,\n from mkmaze.c:6:\n../include/global.h:262:24: note: ‘sprintf’ output between 4 and 31 bytes into a destination of size 20\n262 | #define Sprintf (void) sprintf\nmkmaze.c:983:17: note: in expansion of macro ‘Sprintf’\n983 | Sprintf(protofile, \"%s%d-%d\", g.dungeons[u.uz.dnum].proto,\n | ^~~~~~~-+\n\nAs usual, that one can easily be rectified by replacing it with an Snprintf() call.\nThere were several Sprintf calls in the vicinity, targeting the same destination\nbuffer, so I figured that I might as well replace the several.\n\n../win/Qt/qt_menu.cpp: In member function\n‘virtual void nethack_qt_::NetHackQtTextWindow::UseRIP(int, time_t)’:\n../win/Qt/qt_menu.cpp:1082:63: warning:\n‘%ld’ directive output may be truncated writing between 1 and 20 bytes into a region\nof size 17 [-Wformat-truncation=]\n1082 | (void) snprintf(rip_line[GOLD_LINE], STONE_LINE_LEN + 1, \"%ld Au\", cash);\n | ^~~\n../win/Qt/qt_menu.cpp:1082:62: note: directive argument in the range [-9223372036854775808, 999999999]\n1082 | (void) snprintf(rip_line[GOLD_LINE], STONE_LINE_LEN + 1, \"%ld Au\", cash);\n | ^~~~~~~~\n../win/Qt/qt_menu.cpp:1082:20: note: ‘snprintf’ output between 5 and 24 bytes into a destination of size 17\n1082 | (void) snprintf(rip_line[GOLD_LINE], STONE_LINE_LEN + 1, \"%ld Au\", cash);\n | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThat one was a little different. It wasn''t complaining about the destination buffer\nsize in the way -Wformat-overflow was on the previous warning from gcc, and it\nwas already using snprintf().\n\nIt looks like what the C++ compiler was warning about there, was that snprintf()\ninforms you after-the-call that the destination buffer was too small for the\nresult string to be fully written. It informs the developer of that by returning\nthe number of characters that would have been written if the buffer had been big\nenough. Presumably, the C++ compiler picked up on the fact that the return value\nwas being cast to void, thus throwing away that truncation information from the\nreturn value.\n\nWorked around it by putting the return value into a variable, and flagging the\nvariable with nhUse(variable) so as not to exchange the -Wformat-truncation\nwarning with a variable-set-but-not-used warning.\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-06-11T00:18:27-04:00"},{"Sha1":"b0e983b4c2f1ebcf608349c9543b1f3f435c85f6","Message":"Fix: stray debug printing left in Bazaar Town\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-04T07:11:05-04:00"},{"Sha1":"bc223305f5af58dca542c150f3eee92be65a873a","Message":"Make rock trolls stoning resistant\n\nThis is NOT because rock trolls are made out of stone like stone golems\nare, but rather because they have a special affinity for rock.\n\n(If I ever adopt the Trollsbane/Sunsword tweaks that instapetrify trolls\non contact, that will clash interestingly with this.)\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-02T07:38:42-04:00"},{"Sha1":"578925a1e54e0bf206ab4863faa06f2af36ed9ee","Message":"Make the Master Assassin poison resistant\n\nBecause what kind of assassin hasn''t taken measures to ensure they won''t\nbe killed by their own sorts of poisons?\n\nI''m doing this now because the Rogue quest will likely be one of the\nlast to receive an overhaul, and this will likely get forgotten about by\nthen.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-02T07:35:54-04:00"}],"HeadCommit":{"Sha1":"4a97e35e7f85db6d7227aa21080697aceb925016","Message":"Fix: whereis used pointer to static memory as truth value\n\nUsing never-zero pointer address of g.killer.name as a boolean was\nincorrect but was only detected by gcc 12. Probably what was intended\nwas g.killer.name[0], but it doesn''t seem completely correct to use that\neither, since I don''t think it always gets cleared after being written\nto (normally it isn''t relevant if the game is still going). So instead\nuse g.program_state.gameover, which is only set in really_done from\nwhich there is no exit, and I doubt whereis gets updated between then\nand ending the process but at the same time if you used something that\nwas set *before* really_done is called, there''s a possibility the hero\ngets lifesaved.\n\nThe \"ascended\" value in whereis doesn''t actually seem to be used\nanywhere, so this may all be pointless.\n","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-09-06T07:24:34-04:00"},"CompareURL":"h21/xNetHack/compare/45fa418d73ddf6b15503bc8a117a928f9fc8f3d7...4a97e35e7f85db6d7227aa21080697aceb925016","Len":10}', 1674828593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (341, 2, 9, 2, 23, 0, 0, 'refs/tags/MOVE2GIT', 0, '{"Commits":null,"HeadCommit":{"Sha1":"34221670bc81de75eab4b1e214ce479eb7dd51af","Message":"Mark the move to git.","AuthorEmail":"keni@his.com","AuthorName":"keni","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2015-05-01T08:55:28-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...4f98aebd8797e0aa6a31cd5b78643c9e0df427dc","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (342, 1, 9, 2, 23, 0, 0, 'refs/tags/MOVE2GIT', 0, '{"Commits":null,"HeadCommit":{"Sha1":"34221670bc81de75eab4b1e214ce479eb7dd51af","Message":"Mark the move to git.","AuthorEmail":"keni@his.com","AuthorName":"keni","CommitterEmail":"keni@his.com","CommitterName":"keni","Timestamp":"2015-05-01T08:55:28-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...4f98aebd8797e0aa6a31cd5b78643c9e0df427dc","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (343, 2, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC01', 0, '{"Commits":null,"HeadCommit":{"Sha1":"bc19360ae0594dd2676d33d62c85a1015affeab7","Message":"Nethack release NetHack-3.6.0 base","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2015-12-02T13:58:09-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...c87694207ac3930fd75376d1f90ee78d3263fe89","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (344, 1, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC01', 0, '{"Commits":null,"HeadCommit":{"Sha1":"bc19360ae0594dd2676d33d62c85a1015affeab7","Message":"Nethack release NetHack-3.6.0 base","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2015-12-02T13:58:09-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...c87694207ac3930fd75376d1f90ee78d3263fe89","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (345, 2, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC02', 0, '{"Commits":null,"HeadCommit":{"Sha1":"71c5bab0c36de4dc73d70c8209f08ccf59579385","Message":"NetHack Release 3.6.0 Release Candidate 2","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T12:05:54-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...3150bc8ec8edc1cf79f4005029faed8265178182","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (346, 1, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC02', 0, '{"Commits":null,"HeadCommit":{"Sha1":"71c5bab0c36de4dc73d70c8209f08ccf59579385","Message":"NetHack Release 3.6.0 Release Candidate 2","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T12:05:54-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...3150bc8ec8edc1cf79f4005029faed8265178182","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (347, 2, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC03', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7079c0a3a5291d2a17239fe2a6b1a4a741b6f496","Message":"NetHack Release 3.6.0 Release Candidate 3","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T15:12:23-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...1ec52ef843250083541a2dda7d44da1e9dea77e7","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (348, 1, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC03', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7079c0a3a5291d2a17239fe2a6b1a4a741b6f496","Message":"NetHack Release 3.6.0 Release Candidate 3","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T15:12:23-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...1ec52ef843250083541a2dda7d44da1e9dea77e7","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (349, 2, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC04', 0, '{"Commits":null,"HeadCommit":{"Sha1":"a1af46ab7ca999a25899276685c033e710eec62a","Message":"NetHack Release 3.6.0 Release Candidate 4","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T22:05:19-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...e8ce14859facd8a7bb02348c12e7abe193500938","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (350, 1, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC04', 0, '{"Commits":null,"HeadCommit":{"Sha1":"a1af46ab7ca999a25899276685c033e710eec62a","Message":"NetHack Release 3.6.0 Release Candidate 4","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-06T22:05:19-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...e8ce14859facd8a7bb02348c12e7abe193500938","Len":0}', 1674828612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (351, 2, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC05', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 fix for win gui bug","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:10:36-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...c6eda8ceb32d934309fd8b6da805a07632c94d7a","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (352, 1, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_RC05', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 fix for win gui bug","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:10:36-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...c6eda8ceb32d934309fd8b6da805a07632c94d7a","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (353, 2, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 Release Tag","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:11:39-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...1b73bf059d9ec773cbbc331b9e40a9eb96437622","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (354, 1, 9, 2, 23, 0, 0, 'refs/tags/NetHack-3.6.0_Release', 0, '{"Commits":null,"HeadCommit":{"Sha1":"585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc","Message":"NetHack Release 3.6.0 Release Tag","AuthorEmail":"karnov@sympatico.ca","AuthorName":"karnov","CommitterEmail":"mjnh@persona.ca","CommitterName":"nhmall","Timestamp":"2015-12-07T18:11:39-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...1b73bf059d9ec773cbbc331b9e40a9eb96437622","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (355, 2, 9, 2, 23, 0, 0, 'refs/tags/test-22', 0, '{"Commits":null,"HeadCommit":{"Sha1":"ebcd5cae80a7a775f82b33523a623f71ac53845f","Message":"fake","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2021-03-19T16:53:24-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...971684313326a9c5b9eb7364da41b4d6c746f557","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (356, 1, 9, 2, 23, 0, 0, 'refs/tags/test-22', 0, '{"Commits":null,"HeadCommit":{"Sha1":"ebcd5cae80a7a775f82b33523a623f71ac53845f","Message":"fake","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2021-03-19T16:53:24-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...971684313326a9c5b9eb7364da41b4d6c746f557","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (357, 2, 9, 2, 23, 0, 0, 'refs/tags/xnh0.1.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"4d3b9aebadf0ed5316d6ce033a667feb5f51f3d0","Message":"xNetHack 0.1.1\n\nSmaller than 0.1.0, this contains three major changes:\nGehennom special rooms\nLast prayed turn showed in status\nNew scaring conduct","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2018-04-08T23:47:20-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...de81c5a2dd15c695485ae6b0896141503a0f9c81","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (358, 1, 9, 2, 23, 0, 0, 'refs/tags/xnh0.1.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"4d3b9aebadf0ed5316d6ce033a667feb5f51f3d0","Message":"xNetHack 0.1.1\n\nSmaller than 0.1.0, this contains three major changes:\nGehennom special rooms\nLast prayed turn showed in status\nNew scaring conduct","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2018-04-08T23:47:20-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...de81c5a2dd15c695485ae6b0896141503a0f9c81","Len":0}', 1674828613); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (359, 2, 9, 2, 23, 0, 0, 'refs/tags/xnh0.2.0', 0, '{"Commits":null,"HeadCommit":{"Sha1":"b0d569e8c1315b10b6e9ba40f937f1b6f081c5a0","Message":"Version bump for one major change and one savebreaking change\n\n Major change: Object materials\n Savebreaking change: Permahallu and permadeaf conducts","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2018-05-09T18:12:20-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...3bb03290c671671074225fe331de3709b1f48774","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (360, 1, 9, 2, 23, 0, 0, 'refs/tags/xnh0.2.0', 0, '{"Commits":null,"HeadCommit":{"Sha1":"b0d569e8c1315b10b6e9ba40f937f1b6f081c5a0","Message":"Version bump for one major change and one savebreaking change\n\n Major change: Object materials\n Savebreaking change: Permahallu and permadeaf conducts","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2018-05-09T18:12:20-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...3bb03290c671671074225fe331de3709b1f48774","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (361, 2, 9, 2, 23, 0, 0, 'refs/tags/xnh6.0', 0, '{"Commits":null,"HeadCommit":{"Sha1":"4cd9eef73b4a01c77596e2d7161a9f4f5181b8e1","Message":"xNetHack Version 6.0 Release\n\nSee changelog for full list of changes in this version, and README.md\nfor other documentation.\n\nWindows binaries are available to download on the GitHub release page.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2021-03-22T18:28:40-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...5d72ffdf6f8b3a015075b31c7d3c371d8cb4ace1","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (362, 1, 9, 2, 23, 0, 0, 'refs/tags/xnh6.0', 0, '{"Commits":null,"HeadCommit":{"Sha1":"4cd9eef73b4a01c77596e2d7161a9f4f5181b8e1","Message":"xNetHack Version 6.0 Release\n\nSee changelog for full list of changes in this version, and README.md\nfor other documentation.\n\nWindows binaries are available to download on the GitHub release page.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2021-03-22T18:28:40-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...5d72ffdf6f8b3a015075b31c7d3c371d8cb4ace1","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (363, 2, 9, 2, 23, 0, 0, 'refs/tags/xnh6.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"287d658b1fc18f8528439a8383b589f508973c08","Message":"xNetHack Version 6.1 Release\n\nSo fresh I never changed the NH_DEVEL_STATUS back to in progress!\n\nThis release is being made in order to get the new Archeologist quest\nout the door before Junethack 2021.\n\nSince this is a minor release, its changes are listed in the 7.0\nchangelog rather than a separate 6.1 changelog. I figure this will be\nless confusing when 7.0 comes out.\n\nWindows binaries are available to download on the Github release page.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2021-05-09T09:40:23-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...fe4b744e775da60e7ac4a6fa0a5710b6e9317cb9","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (364, 1, 9, 2, 23, 0, 0, 'refs/tags/xnh6.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"287d658b1fc18f8528439a8383b589f508973c08","Message":"xNetHack Version 6.1 Release\n\nSo fresh I never changed the NH_DEVEL_STATUS back to in progress!\n\nThis release is being made in order to get the new Archeologist quest\nout the door before Junethack 2021.\n\nSince this is a minor release, its changes are listed in the 7.0\nchangelog rather than a separate 6.1 changelog. I figure this will be\nless confusing when 7.0 comes out.\n\nWindows binaries are available to download on the Github release page.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2021-05-09T09:40:23-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...fe4b744e775da60e7ac4a6fa0a5710b6e9317cb9","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (365, 2, 9, 2, 23, 0, 0, 'refs/tags/xnh7.0', 0, '{"Commits":null,"HeadCommit":{"Sha1":"4a2453d8076b72c757d6ef88dcf0d311d0507480","Message":"xNetHack Version 7.0 Release\n\nSee changelog for full list of changes in this version, and README.md\nfor other documentation.\n\nThe headline feature of this version is the revised Archeologist quest\n(also released under 6.1 for Junethack last year).\n\nWindows binaries are available to download on the Github release page.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-03-07T20:05:17-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...7add18e8aa49f0e8d9010aea8555e66681b5c925","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (366, 1, 9, 2, 23, 0, 0, 'refs/tags/xnh7.0', 0, '{"Commits":null,"HeadCommit":{"Sha1":"4a2453d8076b72c757d6ef88dcf0d311d0507480","Message":"xNetHack Version 7.0 Release\n\nSee changelog for full list of changes in this version, and README.md\nfor other documentation.\n\nThe headline feature of this version is the revised Archeologist quest\n(also released under 6.1 for Junethack last year).\n\nWindows binaries are available to download on the Github release page.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-03-07T20:05:17-05:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...7add18e8aa49f0e8d9010aea8555e66681b5c925","Len":0}', 1674828614); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (367, 2, 9, 2, 23, 0, 0, 'refs/tags/xnh7.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7b1ce943bc5e37e4fe7e810ecb910ae827b43474","Message":"xNetHack Version 7.1 Release\n\nThis release is being made in order to get the new Valkyrie quest out\nthe door before Junethack 2022.\n\nSince this is a minor release, its changes are listed in the 8.0\nchangelog rather than a separate 7.1 changelog, with the intent of being\nless confusing when 8.0 comes out.\n\nWindows binaries are available to download on the Github release page,\nthough please be aware that since this release is for Junethack, Windows\nissues take second priority to any problems found on servers.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-26T08:33:13-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...deeb23383ff54f0d65498f9b4e7db8c02822016d","Len":0}', 1674828615); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (368, 1, 9, 2, 23, 0, 0, 'refs/tags/xnh7.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"7b1ce943bc5e37e4fe7e810ecb910ae827b43474","Message":"xNetHack Version 7.1 Release\n\nThis release is being made in order to get the new Valkyrie quest out\nthe door before Junethack 2022.\n\nSince this is a minor release, its changes are listed in the 8.0\nchangelog rather than a separate 7.1 changelog, with the intent of being\nless confusing when 8.0 comes out.\n\nWindows binaries are available to download on the Github release page,\nthough please be aware that since this release is for Junethack, Windows\nissues take second priority to any problems found on servers.","AuthorEmail":"aosdict@gmail.com","AuthorName":"copperwater","CommitterEmail":"aosdict@gmail.com","CommitterName":"copperwater","Timestamp":"2022-05-26T08:33:13-04:00"},"CompareURL":"h21/xNetHack/compare/0000000000000000000000000000000000000000...deeb23383ff54f0d65498f9b4e7db8c02822016d","Len":0}', 1674828615); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (369, 2, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.1.0', 0, '', 1674828648); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (370, 1, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.1.0', 0, '', 1674828648); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (371, 2, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.1.0', 0, '{"Commits":[],"HeadCommit":{"Sha1":"b29334720e353ee991bba3e657d22bacbe78a523","Message":"Bump version number to 1.1.0.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2021-10-30T09:10:37-05:00"},"CompareURL":"h21/SpliceHack/compare/rogue...b29334720e353ee991bba3e657d22bacbe78a523","Len":0}', 1674828648); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (372, 1, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.1.0', 0, '{"Commits":[],"HeadCommit":{"Sha1":"b29334720e353ee991bba3e657d22bacbe78a523","Message":"Bump version number to 1.1.0.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2021-10-30T09:10:37-05:00"},"CompareURL":"h21/SpliceHack/compare/rogue...b29334720e353ee991bba3e657d22bacbe78a523","Len":0}', 1674828648); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (373, 2, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.2.0', 0, '', 1674828651); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (374, 1, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.2.0', 0, '', 1674828652); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (375, 2, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.2.0', 0, '{"Commits":[],"HeadCommit":{"Sha1":"8d70ade6f015c7894c171af691393327983173fe","Message":"Resolve a compilation warning.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:59:08-05:00"},"CompareURL":"h21/SpliceHack/compare/rogue...8d70ade6f015c7894c171af691393327983173fe","Len":0}', 1674828652); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (376, 1, 5, 2, 24, 0, 0, 'refs/heads/Spl-R-1.2.0', 0, '{"Commits":[],"HeadCommit":{"Sha1":"8d70ade6f015c7894c171af691393327983173fe","Message":"Resolve a compilation warning.\n","AuthorEmail":"kestrelg@kestrelscry.com","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"kestrelg@kestrelscry.com","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2022-09-19T16:59:08-05:00"},"CompareURL":"h21/SpliceHack/compare/rogue...8d70ade6f015c7894c171af691393327983173fe","Len":0}', 1674828652); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (377, 2, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.7.1-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"d710b358f556d86a0d2f3b3d9bf0de4a34513e4d","Message":"Incremented EDITLEVEL.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Connor Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Connor Gregorich-Trevor","Timestamp":"2020-05-31T09:53:44-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...d710b358f556d86a0d2f3b3d9bf0de4a34513e4d","Len":0}', 1674828686); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (378, 1, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.7.1-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"d710b358f556d86a0d2f3b3d9bf0de4a34513e4d","Message":"Incremented EDITLEVEL.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Connor Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Connor Gregorich-Trevor","Timestamp":"2020-05-31T09:53:44-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...d710b358f556d86a0d2f3b3d9bf0de4a34513e4d","Len":0}', 1674828686); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (379, 2, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.8.0-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"3938c0893afa3dd016d8f36cfca8dd5010fe4e66","Message":"Spheres of void can displace monsters.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel","Timestamp":"2020-09-23T17:14:38-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...3938c0893afa3dd016d8f36cfca8dd5010fe4e66","Len":0}', 1674828686); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (380, 1, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.8.0-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"3938c0893afa3dd016d8f36cfca8dd5010fe4e66","Message":"Spheres of void can displace monsters.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel","Timestamp":"2020-09-23T17:14:38-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...3938c0893afa3dd016d8f36cfca8dd5010fe4e66","Len":0}', 1674828686); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (381, 2, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.8.1-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"9e1e2862ae225270fc2270afb3c23154286acc24","Message":"Updated changelog.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel","Timestamp":"2020-09-25T23:11:31-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...9e1e2862ae225270fc2270afb3c23154286acc24","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (382, 1, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.8.1-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"9e1e2862ae225270fc2270afb3c23154286acc24","Message":"Updated changelog.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel","Timestamp":"2020-09-25T23:11:31-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...9e1e2862ae225270fc2270afb3c23154286acc24","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (383, 2, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.8.2-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"0ee7e71d2163ba99de7f0dbc8db241c42f180c07","Message":"Fix small typo with pigs oinking.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel","Timestamp":"2020-10-22T17:06:04-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...0ee7e71d2163ba99de7f0dbc8db241c42f180c07","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (384, 1, 9, 2, 24, 0, 0, 'refs/tags/Spl-0.8.2-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"0ee7e71d2163ba99de7f0dbc8db241c42f180c07","Message":"Fix small typo with pigs oinking.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel","Timestamp":"2020-10-22T17:06:04-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...0ee7e71d2163ba99de7f0dbc8db241c42f180c07","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (385, 2, 9, 2, 24, 0, 0, 'refs/tags/Spl-R-1.0.0-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"c45c26e062426b540bc5d1af3ff6da0588977a81","Message":"Reinstate travis.\n\nI''m used to .travis.yml, and we already have a setup for it. We''ll\nkeep using it for now, and potentially switch to another system\nat a point down the road.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2021-09-23T21:42:16-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...c45c26e062426b540bc5d1af3ff6da0588977a81","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (386, 1, 9, 2, 24, 0, 0, 'refs/tags/Spl-R-1.0.0-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"c45c26e062426b540bc5d1af3ff6da0588977a81","Message":"Reinstate travis.\n\nI''m used to .travis.yml, and we already have a setup for it. We''ll\nkeep using it for now, and potentially switch to another system\nat a point down the road.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2021-09-23T21:42:16-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...c45c26e062426b540bc5d1af3ff6da0588977a81","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (387, 2, 9, 2, 24, 0, 0, 'refs/tags/Spl-R-1.1.0-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"b29334720e353ee991bba3e657d22bacbe78a523","Message":"Bump version number to 1.1.0.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2021-10-30T09:10:37-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...b29334720e353ee991bba3e657d22bacbe78a523","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (388, 1, 9, 2, 24, 0, 0, 'refs/tags/Spl-R-1.1.0-R', 0, '{"Commits":null,"HeadCommit":{"Sha1":"b29334720e353ee991bba3e657d22bacbe78a523","Message":"Bump version number to 1.1.0.\n","AuthorEmail":"gregoric@grinnell.edu","AuthorName":"Kestrel Gregorich-Trevor","CommitterEmail":"gregoric@grinnell.edu","CommitterName":"Kestrel Gregorich-Trevor","Timestamp":"2021-10-30T09:10:37-05:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...b29334720e353ee991bba3e657d22bacbe78a523","Len":0}', 1674828687); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (389, 2, 9, 2, 24, 0, 0, 'refs/tags/Spl-R-v1.0.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"9d34d2ab63d8ee8622dc43ec28845ccd22a8024a","Message":"Fix Gungnir typo (#180)\n\n* Fix Gungnir typo","AuthorEmail":"riker.wachtler@gmail.com","AuthorName":"Riker","CommitterEmail":"noreply@github.com","CommitterName":"GitHub","Timestamp":"2021-10-03T01:16:27-04:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...9d34d2ab63d8ee8622dc43ec28845ccd22a8024a","Len":0}', 1674828688); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (390, 1, 9, 2, 24, 0, 0, 'refs/tags/Spl-R-v1.0.1', 0, '{"Commits":null,"HeadCommit":{"Sha1":"9d34d2ab63d8ee8622dc43ec28845ccd22a8024a","Message":"Fix Gungnir typo (#180)\n\n* Fix Gungnir typo","AuthorEmail":"riker.wachtler@gmail.com","AuthorName":"Riker","CommitterEmail":"noreply@github.com","CommitterName":"GitHub","Timestamp":"2021-10-03T01:16:27-04:00"},"CompareURL":"h21/SpliceHack/compare/0000000000000000000000000000000000000000...9d34d2ab63d8ee8622dc43ec28845ccd22a8024a","Len":0}', 1674828688); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (391, 1, 1, 1, 26, 0, 0, '', 1, '', 1675707057); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (392, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '', 1675707121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (393, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"3f87ffea0a03e4ed74a864777721ce95dff864f7","Message":"Initial\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-06T19:10:12+01:00"}],"HeadCommit":{"Sha1":"3f87ffea0a03e4ed74a864777721ce95dff864f7","Message":"Initial\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-06T19:10:12+01:00"},"CompareURL":"","Len":1}', 1675707121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (394, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"45bcfe9ec88712bd6b7ecd7aac627c46aca74b96","Message":"cli in golang\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-06T19:42:37+01:00"}],"HeadCommit":{"Sha1":"45bcfe9ec88712bd6b7ecd7aac627c46aca74b96","Message":"cli in golang\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-06T19:42:37+01:00"},"CompareURL":"prokop/ir/compare/3f87ffea0a03e4ed74a864777721ce95dff864f7...45bcfe9ec88712bd6b7ecd7aac627c46aca74b96","Len":1}', 1675708973); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (395, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"e6f86de0e09d96117a68aac8c59a85f87713aea5","Message":"add newline\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-06T20:07:42+01:00"}],"HeadCommit":{"Sha1":"e6f86de0e09d96117a68aac8c59a85f87713aea5","Message":"add newline\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-06T20:07:42+01:00"},"CompareURL":"prokop/ir/compare/45bcfe9ec88712bd6b7ecd7aac627c46aca74b96...e6f86de0e09d96117a68aac8c59a85f87713aea5","Len":1}', 1675710474); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (396, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6caa675709e67def200bb7411518c7f9117edd72","Message":"intercept errors + 5 repeats\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T11:37:40+01:00"}],"HeadCommit":{"Sha1":"6caa675709e67def200bb7411518c7f9117edd72","Message":"intercept errors + 5 repeats\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T11:37:40+01:00"},"CompareURL":"prokop/ir/compare/e6f86de0e09d96117a68aac8c59a85f87713aea5...6caa675709e67def200bb7411518c7f9117edd72","Len":1}', 1675766286); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (397, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"03d92cf5c4d5812bfff19050b0d597e1550bf88d","Message":"40 ms delay and only 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T17:42:41+01:00"}],"HeadCommit":{"Sha1":"03d92cf5c4d5812bfff19050b0d597e1550bf88d","Message":"40 ms delay and only 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T17:42:41+01:00"},"CompareURL":"prokop/ir/compare/6caa675709e67def200bb7411518c7f9117edd72...03d92cf5c4d5812bfff19050b0d597e1550bf88d","Len":1}', 1675788179); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (398, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"041b6fe349fb2c9e4db1c02bf5ba0c8d5ae1072c","Message":"discard global variables =\u003e closures\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T20:44:23+01:00"}],"HeadCommit":{"Sha1":"041b6fe349fb2c9e4db1c02bf5ba0c8d5ae1072c","Message":"discard global variables =\u003e closures\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T20:44:23+01:00"},"CompareURL":"prokop/ir/compare/03d92cf5c4d5812bfff19050b0d597e1550bf88d...041b6fe349fb2c9e4db1c02bf5ba0c8d5ae1072c","Len":1}', 1675799082); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (399, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"607a026cbd26b4f3ac0096375d2f415c2d219af1","Message":"web interface\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T21:16:29+01:00"}],"HeadCommit":{"Sha1":"607a026cbd26b4f3ac0096375d2f415c2d219af1","Message":"web interface\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-07T21:16:29+01:00"},"CompareURL":"prokop/ir/compare/041b6fe349fb2c9e4db1c02bf5ba0c8d5ae1072c...607a026cbd26b4f3ac0096375d2f415c2d219af1","Len":1}', 1675801003); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (400, 1, 5, 1, 26, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"2d394b62adf4473f46cbb924e021cd487953eda1","Message":"TV\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-08T14:27:18+01:00"},{"Sha1":"35fe72f76b714ebda6b1bb9ae835d8aa322b12f0","Message":"tx -\u003e tx_radio\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-08T13:49:15+01:00"}],"HeadCommit":{"Sha1":"2d394b62adf4473f46cbb924e021cd487953eda1","Message":"TV\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-08T14:27:18+01:00"},"CompareURL":"prokop/ir/compare/607a026cbd26b4f3ac0096375d2f415c2d219af1...2d394b62adf4473f46cbb924e021cd487953eda1","Len":2}', 1675862856); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (401, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"6880fcabea4979eb66e79b74633f38106f21d88c","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"}],"HeadCommit":{"Sha1":"6880fcabea4979eb66e79b74633f38106f21d88c","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"},"CompareURL":"h21/HoralOS/compare/4f143da8740173d6a8557c8f50a113282bbc16d4...6880fcabea4979eb66e79b74633f38106f21d88c","Len":1}', 1676142937); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (402, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"6880fcabea4979eb66e79b74633f38106f21d88c","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"}],"HeadCommit":{"Sha1":"6880fcabea4979eb66e79b74633f38106f21d88c","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"},"CompareURL":"h21/HoralOS/compare/4f143da8740173d6a8557c8f50a113282bbc16d4...6880fcabea4979eb66e79b74633f38106f21d88c","Len":1}', 1676142937); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (403, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"}],"HeadCommit":{"Sha1":"fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"},"CompareURL":"h21/HoralOS/compare/6880fcabea4979eb66e79b74633f38106f21d88c...fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2","Len":1}', 1676143183); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (404, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"}],"HeadCommit":{"Sha1":"fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2","Message":"add and remove some apps\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T20:15:19+01:00"},"CompareURL":"h21/HoralOS/compare/6880fcabea4979eb66e79b74633f38106f21d88c...fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2","Len":1}', 1676143183); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (405, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"eeb721bbc3a9b9d7f8b65f9b0af60633402b053c","Message":"- warzone videos\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T22:09:48+01:00"}],"HeadCommit":{"Sha1":"eeb721bbc3a9b9d7f8b65f9b0af60633402b053c","Message":"- warzone videos\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T22:09:48+01:00"},"CompareURL":"h21/HoralOS/compare/fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2...eeb721bbc3a9b9d7f8b65f9b0af60633402b053c","Len":1}', 1676149808); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (406, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"eeb721bbc3a9b9d7f8b65f9b0af60633402b053c","Message":"- warzone videos\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T22:09:48+01:00"}],"HeadCommit":{"Sha1":"eeb721bbc3a9b9d7f8b65f9b0af60633402b053c","Message":"- warzone videos\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T22:09:48+01:00"},"CompareURL":"h21/HoralOS/compare/fff8e32aa612de3ca9bb86c8cf68e0751cf5dba2...eeb721bbc3a9b9d7f8b65f9b0af60633402b053c","Len":1}', 1676149808); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (407, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"9b758e2c7e3f2506471b1fe9fbdac083ac585f02","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T09:59:29+01:00"},{"Sha1":"91a16f8377e5243dd444b3190bdab18a88161848","Message":"rm useless files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T23:58:53+01:00"}],"HeadCommit":{"Sha1":"9b758e2c7e3f2506471b1fe9fbdac083ac585f02","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T09:59:29+01:00"},"CompareURL":"h21/HoralOS/compare/eeb721bbc3a9b9d7f8b65f9b0af60633402b053c...9b758e2c7e3f2506471b1fe9fbdac083ac585f02","Len":2}', 1676195331); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (408, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"9b758e2c7e3f2506471b1fe9fbdac083ac585f02","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T09:59:29+01:00"},{"Sha1":"91a16f8377e5243dd444b3190bdab18a88161848","Message":"rm useless files\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-11T23:58:53+01:00"}],"HeadCommit":{"Sha1":"9b758e2c7e3f2506471b1fe9fbdac083ac585f02","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T09:59:29+01:00"},"CompareURL":"h21/HoralOS/compare/eeb721bbc3a9b9d7f8b65f9b0af60633402b053c...9b758e2c7e3f2506471b1fe9fbdac083ac585f02","Len":2}', 1676195331); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (409, 1, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"bf6c2bb96a7228b03e9afd4917fe158ed23fe11c","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T10:55:51+01:00"}],"HeadCommit":{"Sha1":"bf6c2bb96a7228b03e9afd4917fe158ed23fe11c","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T10:55:51+01:00"},"CompareURL":"h21/HoralOS/compare/9b758e2c7e3f2506471b1fe9fbdac083ac585f02...bf6c2bb96a7228b03e9afd4917fe158ed23fe11c","Len":1}', 1676195793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (410, 2, 5, 1, 13, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"bf6c2bb96a7228b03e9afd4917fe158ed23fe11c","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T10:55:51+01:00"}],"HeadCommit":{"Sha1":"bf6c2bb96a7228b03e9afd4917fe158ed23fe11c","Message":"update to main kickstarts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-12T10:55:51+01:00"},"CompareURL":"h21/HoralOS/compare/9b758e2c7e3f2506471b1fe9fbdac083ac585f02...bf6c2bb96a7228b03e9afd4917fe158ed23fe11c","Len":1}', 1676195793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (411, 1, 1, 1, 28, 0, 0, '', 1, '', 1677098253); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (412, 1, 5, 1, 28, 0, 0, 'refs/heads/tut01', 1, '', 1677101739); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (413, 1, 5, 1, 28, 0, 0, 'refs/heads/tut01', 1, '{"Commits":[{"Sha1":"11a9412dd4c18dee5f91100041ab95dfa02077ef","Message":"tut01\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-02-22T22:35:19+01:00"}],"HeadCommit":{"Sha1":"11a9412dd4c18dee5f91100041ab95dfa02077ef","Message":"tut01\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-02-22T22:35:19+01:00"},"CompareURL":"","Len":1}', 1677101739); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (414, 1, 5, 1, 28, 0, 0, 'refs/heads/tut01', 1, '{"Commits":[{"Sha1":"6238bcc7cd93b14e48228f4b96f2857b839e2b30","Message":"binary\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-02-22T23:55:50+01:00"}],"HeadCommit":{"Sha1":"6238bcc7cd93b14e48228f4b96f2857b839e2b30","Message":"binary\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-02-22T23:55:50+01:00"},"CompareURL":"prokop/BI-PA2/compare/11a9412dd4c18dee5f91100041ab95dfa02077ef...6238bcc7cd93b14e48228f4b96f2857b839e2b30","Len":1}', 1677106567); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (415, 1, 1, 1, 29, 0, 0, '', 1, '', 1677140134); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (416, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '', 1677140761); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (417, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"94f5664dced6669947f79a4707b90a5cec8263f4","Message":"add tester\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T09:25:32+01:00"}],"HeadCommit":{"Sha1":"94f5664dced6669947f79a4707b90a5cec8263f4","Message":"add tester\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T09:25:32+01:00"},"CompareURL":"","Len":1}', 1677140761); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (418, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"4cf4216b0ad8c46e002c7280268f4e5c52d11407","Message":"start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T09:49:58+01:00"}],"HeadCommit":{"Sha1":"4cf4216b0ad8c46e002c7280268f4e5c52d11407","Message":"start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T09:49:58+01:00"},"CompareURL":"prokop/BI-PSI/compare/94f5664dced6669947f79a4707b90a5cec8263f4...4cf4216b0ad8c46e002c7280268f4e5c52d11407","Len":1}', 1677142218); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (419, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"e9f867be10089aef88be7bfcb0b5bcd1e3cb4c72","Message":"2 testy, auth\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T12:15:35+01:00"}],"HeadCommit":{"Sha1":"e9f867be10089aef88be7bfcb0b5bcd1e3cb4c72","Message":"2 testy, auth\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T12:15:35+01:00"},"CompareURL":"prokop/BI-PSI/compare/4cf4216b0ad8c46e002c7280268f4e5c52d11407...e9f867be10089aef88be7bfcb0b5bcd1e3cb4c72","Len":1}', 1677150972); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (420, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"8ed517b110e33f07d52dc66ff032f8d8eacb202b","Message":"auth + recharge; 10 testu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T20:27:47+01:00"}],"HeadCommit":{"Sha1":"8ed517b110e33f07d52dc66ff032f8d8eacb202b","Message":"auth + recharge; 10 testu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T20:27:47+01:00"},"CompareURL":"prokop/BI-PSI/compare/e9f867be10089aef88be7bfcb0b5bcd1e3cb4c72...8ed517b110e33f07d52dc66ff032f8d8eacb202b","Len":1}', 1677180479); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (421, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"61c1a8a051477bf4dae55f1f57d3bd87a0233e8b","Message":"implementuje 21 ze 30\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T23:58:25+01:00"}],"HeadCommit":{"Sha1":"61c1a8a051477bf4dae55f1f57d3bd87a0233e8b","Message":"implementuje 21 ze 30\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-23T23:58:25+01:00"},"CompareURL":"prokop/BI-PSI/compare/8ed517b110e33f07d52dc66ff032f8d8eacb202b...61c1a8a051477bf4dae55f1f57d3bd87a0233e8b","Len":1}', 1677193118); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (422, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"b8a5094c35b403a841ecee6c75818d0896ea48db","Message":"mlok, ale velmi hnusne\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-24T16:46:17+01:00"}],"HeadCommit":{"Sha1":"b8a5094c35b403a841ecee6c75818d0896ea48db","Message":"mlok, ale velmi hnusne\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-24T16:46:17+01:00"},"CompareURL":"prokop/BI-PSI/compare/61c1a8a051477bf4dae55f1f57d3bd87a0233e8b...b8a5094c35b403a841ecee6c75818d0896ea48db","Len":1}', 1677253607); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (423, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"2fc8bf6acfe58e38c96c811a6b579a404ba7a3f4","Message":"snaha o zcitelneni\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-24T22:47:59+01:00"}],"HeadCommit":{"Sha1":"2fc8bf6acfe58e38c96c811a6b579a404ba7a3f4","Message":"snaha o zcitelneni\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-24T22:47:59+01:00"},"CompareURL":"prokop/BI-PSI/compare/b8a5094c35b403a841ecee6c75818d0896ea48db...2fc8bf6acfe58e38c96c811a6b579a404ba7a3f4","Len":1}', 1677275309); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (424, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"f7885f1e803dd0ca6305d31b9e6905f7f4af461f","Message":"walk optim\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-24T23:33:29+01:00"}],"HeadCommit":{"Sha1":"f7885f1e803dd0ca6305d31b9e6905f7f4af461f","Message":"walk optim\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-24T23:33:29+01:00"},"CompareURL":"prokop/BI-PSI/compare/2fc8bf6acfe58e38c96c811a6b579a404ba7a3f4...f7885f1e803dd0ca6305d31b9e6905f7f4af461f","Len":1}', 1677316107); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (425, 1, 9, 1, 29, 0, 0, 'refs/tags/bouda_01', 1, '{"Commits":null,"HeadCommit":{"Sha1":"f7885f1e803dd0ca6305d31b9e6905f7f4af461f","Message":"walk optim\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-24T23:33:29+01:00"},"CompareURL":"prokop/BI-PSI/compare/0000000000000000000000000000000000000000...f7885f1e803dd0ca6305d31b9e6905f7f4af461f","Len":0}', 1677316136); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (427, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"7c45df69e8806ca453ae15a5e01fe2b39c63e3e6","Message":"openttd version 0.51.0\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-26T17:19:19+01:00"}],"HeadCommit":{"Sha1":"7c45df69e8806ca453ae15a5e01fe2b39c63e3e6","Message":"openttd version 0.51.0\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-26T17:19:19+01:00"},"CompareURL":"h21/HoralServer-web/compare/4f7cd8de615ba98ea5ceff875a954ea831c9cef5...7c45df69e8806ca453ae15a5e01fe2b39c63e3e6","Len":1}', 1677428380); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (428, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"7c45df69e8806ca453ae15a5e01fe2b39c63e3e6","Message":"openttd version 0.51.0\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-26T17:19:19+01:00"}],"HeadCommit":{"Sha1":"7c45df69e8806ca453ae15a5e01fe2b39c63e3e6","Message":"openttd version 0.51.0\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-02-26T17:19:19+01:00"},"CompareURL":"h21/HoralServer-web/compare/4f7cd8de615ba98ea5ceff875a954ea831c9cef5...7c45df69e8806ca453ae15a5e01fe2b39c63e3e6","Len":1}', 1677428380); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (431, 1, 5, 1, 29, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"45fd4daddc35560b9cd741954eb42a6364fe411f","Message":"walk =\u003e doStep\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-01T23:50:21+01:00"}],"HeadCommit":{"Sha1":"45fd4daddc35560b9cd741954eb42a6364fe411f","Message":"walk =\u003e doStep\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-01T23:50:21+01:00"},"CompareURL":"prokop/BI-PSI/compare/f7885f1e803dd0ca6305d31b9e6905f7f4af461f...45fd4daddc35560b9cd741954eb42a6364fe411f","Len":1}', 1677711043); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (432, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"741f0d81047abc93ddcbf3a6c705da5366ee8c66","Message":"add pastebin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:51:15+01:00"}],"HeadCommit":{"Sha1":"741f0d81047abc93ddcbf3a6c705da5366ee8c66","Message":"add pastebin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:51:15+01:00"},"CompareURL":"h21/HoralServer-web/compare/7c45df69e8806ca453ae15a5e01fe2b39c63e3e6...741f0d81047abc93ddcbf3a6c705da5366ee8c66","Len":1}', 1677750693); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (433, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"741f0d81047abc93ddcbf3a6c705da5366ee8c66","Message":"add pastebin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:51:15+01:00"}],"HeadCommit":{"Sha1":"741f0d81047abc93ddcbf3a6c705da5366ee8c66","Message":"add pastebin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:51:15+01:00"},"CompareURL":"h21/HoralServer-web/compare/7c45df69e8806ca453ae15a5e01fe2b39c63e3e6...741f0d81047abc93ddcbf3a6c705da5366ee8c66","Len":1}', 1677750693); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (434, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5","Message":"openttd update version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:55:45+01:00"}],"HeadCommit":{"Sha1":"f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5","Message":"openttd update version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:55:45+01:00"},"CompareURL":"h21/HoralServer-web/compare/741f0d81047abc93ddcbf3a6c705da5366ee8c66...f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5","Len":1}', 1677750967); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (435, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5","Message":"openttd update version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:55:45+01:00"}],"HeadCommit":{"Sha1":"f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5","Message":"openttd update version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-02T10:55:45+01:00"},"CompareURL":"h21/HoralServer-web/compare/741f0d81047abc93ddcbf3a6c705da5366ee8c66...f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5","Len":1}', 1677750967); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (436, 1, 8, 1, 30, 0, 0, '', 1, 'prokop/shell-intro', 1678027333); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (437, 4, 8, 1, 30, 0, 0, '', 1, 'prokop/shell-intro', 1678027334); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (438, 4, 18, 4, 31, 0, 0, 'refs/heads/array', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1678115793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (439, 1, 18, 4, 31, 0, 0, 'refs/heads/array', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1678115793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (440, 4, 19, 4, 31, 0, 0, 'refs/heads/array', 1, '', 1678115793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (441, 1, 19, 4, 31, 0, 0, 'refs/heads/array', 1, '', 1678115793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (442, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '', 1678131098); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (443, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"408a0424aaab389242e916ecb6fceec639c9664c","Message":"add tut02\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:30:32+01:00"}],"HeadCommit":{"Sha1":"408a0424aaab389242e916ecb6fceec639c9664c","Message":"add tut02\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:30:32+01:00"},"CompareURL":"prokop/BI-PA2/compare/6238bcc7cd93b14e48228f4b96f2857b839e2b30...408a0424aaab389242e916ecb6fceec639c9664c","Len":1}', 1678131099); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (444, 1, 9, 1, 28, 0, 0, 'refs/tags/tut01', 1, '{"Commits":null,"HeadCommit":{"Sha1":"6238bcc7cd93b14e48228f4b96f2857b839e2b30","Message":"binary\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-02-22T23:55:50+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...6238bcc7cd93b14e48228f4b96f2857b839e2b30","Len":0}', 1678131121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (445, 1, 9, 1, 28, 0, 0, 'refs/tags/tut02', 1, '{"Commits":null,"HeadCommit":{"Sha1":"408a0424aaab389242e916ecb6fceec639c9664c","Message":"add tut02\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:30:32+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...408a0424aaab389242e916ecb6fceec639c9664c","Len":0}', 1678131121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (446, 1, 17, 1, 28, 0, 0, 'refs/heads/tut01', 1, '', 1678131322); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (447, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"bf39bcc9b89b1aaa58b23591cac429c748361a27","Message":"add test scripts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:47:47+01:00"}],"HeadCommit":{"Sha1":"bf39bcc9b89b1aaa58b23591cac429c748361a27","Message":"add test scripts\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:47:47+01:00"},"CompareURL":"prokop/BI-PA2/compare/408a0424aaab389242e916ecb6fceec639c9664c...bf39bcc9b89b1aaa58b23591cac429c748361a27","Len":1}', 1678132208); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (448, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '', 1678132252); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (449, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '{"Commits":[{"Sha1":"db0b76cf83b8ee790a7ba632babf60eb570e000f","Message":"mpt03: add mpt03 test\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:49:02+01:00"}],"HeadCommit":{"Sha1":"db0b76cf83b8ee790a7ba632babf60eb570e000f","Message":"mpt03: add mpt03 test\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:49:02+01:00"},"CompareURL":"prokop/BI-PA2/compare/bf39bcc9b89b1aaa58b23591cac429c748361a27...db0b76cf83b8ee790a7ba632babf60eb570e000f","Len":1}', 1678132252); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (450, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '{"Commits":[{"Sha1":"21ebc7588d527e849d3c2d380b4bc03454b7f06e","Message":"mpt03: add mpt03 test\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:49:02+01:00"}],"HeadCommit":{"Sha1":"21ebc7588d527e849d3c2d380b4bc03454b7f06e","Message":"mpt03: add mpt03 test\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T20:49:02+01:00"},"CompareURL":"prokop/BI-PA2/compare/db0b76cf83b8ee790a7ba632babf60eb570e000f...21ebc7588d527e849d3c2d380b4bc03454b7f06e","Len":1}', 1678132295); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (451, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '{"Commits":[{"Sha1":"2e47f0f4da7e1677c790036822a213f8d13969e6","Message":"mpt03: first read\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T22:40:14+01:00"}],"HeadCommit":{"Sha1":"2e47f0f4da7e1677c790036822a213f8d13969e6","Message":"mpt03: first read\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T22:40:14+01:00"},"CompareURL":"prokop/BI-PA2/compare/21ebc7588d527e849d3c2d380b4bc03454b7f06e...2e47f0f4da7e1677c790036822a213f8d13969e6","Len":1}', 1678138822); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (452, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '{"Commits":[{"Sha1":"483dae9956f7f63d114533905a09375e62e570b0","Message":"mpt03: check eof line\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T23:17:59+01:00"}],"HeadCommit":{"Sha1":"483dae9956f7f63d114533905a09375e62e570b0","Message":"mpt03: check eof line\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T23:17:59+01:00"},"CompareURL":"prokop/BI-PA2/compare/2e47f0f4da7e1677c790036822a213f8d13969e6...483dae9956f7f63d114533905a09375e62e570b0","Len":1}', 1678141175); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (453, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '{"Commits":[{"Sha1":"a24b9128edfde6596f99ef59f28dc8f9818b0e69","Message":"mpt03: report 1/2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:08:30+01:00"}],"HeadCommit":{"Sha1":"a24b9128edfde6596f99ef59f28dc8f9818b0e69","Message":"mpt03: report 1/2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:08:30+01:00"},"CompareURL":"prokop/BI-PA2/compare/483dae9956f7f63d114533905a09375e62e570b0...a24b9128edfde6596f99ef59f28dc8f9818b0e69","Len":1}', 1678223322); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (454, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '{"Commits":[{"Sha1":"9f77515496b3abe76583785ecfef87a81e6c212f","Message":"mpt03: mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:11:23+01:00"}],"HeadCommit":{"Sha1":"9f77515496b3abe76583785ecfef87a81e6c212f","Message":"mpt03: mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:11:23+01:00"},"CompareURL":"prokop/BI-PA2/compare/a24b9128edfde6596f99ef59f28dc8f9818b0e69...9f77515496b3abe76583785ecfef87a81e6c212f","Len":1}', 1678223496); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (455, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"3237b1945e48744a8585b7a07876f01c1e83586e","Message":"Merge branch ''mpt03''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:12:02+01:00"},{"Sha1":"9f77515496b3abe76583785ecfef87a81e6c212f","Message":"mpt03: mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:11:23+01:00"},{"Sha1":"a24b9128edfde6596f99ef59f28dc8f9818b0e69","Message":"mpt03: report 1/2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:08:30+01:00"},{"Sha1":"483dae9956f7f63d114533905a09375e62e570b0","Message":"mpt03: check eof line\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T23:17:59+01:00"},{"Sha1":"2e47f0f4da7e1677c790036822a213f8d13969e6","Message":"mpt03: first read\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-06T22:40:14+01:00"}],"HeadCommit":{"Sha1":"3237b1945e48744a8585b7a07876f01c1e83586e","Message":"Merge branch ''mpt03''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:12:02+01:00"},"CompareURL":"prokop/BI-PA2/compare/bf39bcc9b89b1aaa58b23591cac429c748361a27...3237b1945e48744a8585b7a07876f01c1e83586e","Len":6}', 1678223551); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (456, 1, 17, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '', 1678223564); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (457, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt03', 1, '{"Commits":null,"HeadCommit":{"Sha1":"9f77515496b3abe76583785ecfef87a81e6c212f","Message":"mpt03: mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:11:23+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...9f77515496b3abe76583785ecfef87a81e6c212f","Len":0}', 1678223572); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (458, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '', 1678223932); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (459, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '{"Commits":[],"HeadCommit":{"Sha1":"9f77515496b3abe76583785ecfef87a81e6c212f","Message":"mpt03: mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-07T22:11:23+01:00"},"CompareURL":"prokop/BI-PA2/compare/master...9f77515496b3abe76583785ecfef87a81e6c212f","Len":0}', 1678223932); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (460, 1, 17, 1, 28, 0, 0, 'refs/heads/mpt03', 1, '', 1678224044); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (461, 1, 5, 1, 28, 0, 0, 'refs/heads/tut03', 1, '', 1678304052); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (462, 1, 5, 1, 28, 0, 0, 'refs/heads/tut03', 1, '{"Commits":[{"Sha1":"8214c9b0cc174c03d13d415f19c060d24518eb3b","Message":"tut03: task complete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:36:57+01:00"},{"Sha1":"74559dbaf5e72eaa35a00ce616a19f9f4c17fedc","Message":"tut03: task 1\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:33:25+01:00"},{"Sha1":"63881426067e06b8b08845457b3395662557a775","Message":"tut03: begin\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T16:16:39+01:00"}],"HeadCommit":{"Sha1":"8214c9b0cc174c03d13d415f19c060d24518eb3b","Message":"tut03: task complete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:36:57+01:00"},"CompareURL":"prokop/BI-PA2/compare/3237b1945e48744a8585b7a07876f01c1e83586e...8214c9b0cc174c03d13d415f19c060d24518eb3b","Len":3}', 1678304052); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (463, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"1f8338b88d872aa15bca0e7d325ed27c462b9dc5","Message":"Merge remote-tracking branch ''origin/tut03''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-08T20:36:02+01:00"},{"Sha1":"8214c9b0cc174c03d13d415f19c060d24518eb3b","Message":"tut03: task complete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:36:57+01:00"},{"Sha1":"74559dbaf5e72eaa35a00ce616a19f9f4c17fedc","Message":"tut03: task 1\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:33:25+01:00"},{"Sha1":"63881426067e06b8b08845457b3395662557a775","Message":"tut03: begin\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T16:16:39+01:00"}],"HeadCommit":{"Sha1":"1f8338b88d872aa15bca0e7d325ed27c462b9dc5","Message":"Merge remote-tracking branch ''origin/tut03''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-08T20:36:02+01:00"},"CompareURL":"prokop/BI-PA2/compare/3237b1945e48744a8585b7a07876f01c1e83586e...1f8338b88d872aa15bca0e7d325ed27c462b9dc5","Len":4}', 1678304195); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (464, 1, 17, 1, 28, 0, 0, 'refs/heads/tut03', 1, '', 1678304207); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (465, 1, 9, 1, 28, 0, 0, 'refs/tags/tut03', 1, '{"Commits":null,"HeadCommit":{"Sha1":"8214c9b0cc174c03d13d415f19c060d24518eb3b","Message":"tut03: task complete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:36:57+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...8214c9b0cc174c03d13d415f19c060d24518eb3b","Len":0}', 1678304218); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (466, 4, 18, 4, 31, 0, 0, 'array', 1, '{"Commits":[{"Sha1":"e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa","Message":"add help\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:08:39+01:00"},{"Sha1":"bf74bee8b299d4b9fc1edb8fff126646849a5dc1","Message":"prepend\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:04:13+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/797c1c0bd0bcc92fee57bfccd2ac87a09fa7dbd0...e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa","Len":2}', 1678380393); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (467, 1, 18, 4, 31, 0, 0, 'array', 1, '{"Commits":[{"Sha1":"e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa","Message":"add help\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:08:39+01:00"},{"Sha1":"bf74bee8b299d4b9fc1edb8fff126646849a5dc1","Message":"prepend\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:04:13+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/797c1c0bd0bcc92fee57bfccd2ac87a09fa7dbd0...e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa","Len":2}', 1678380393); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (468, 2, 5, 2, 22, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"37b43c2a9a64ebc95cea68b925d5caefb597fbfd","Message":"Merge branch ''NetHack-3.6'' into rogue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-09T23:15:46+01:00"},{"Sha1":"557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Message":"post-3.6.7 build fix with newer c library headers\n\nAs reported for the Homebrew build\n\nCloses #988\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:46:55-05:00"},{"Sha1":"08fc489c9db5a3f545a8f041839bd4aa695ac7f6","Message":"Merge branch ''fix-macos-build'' of https://github.com/chenrui333/NetHack into NetHack-3.6\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:44:28-05:00"},{"Sha1":"79cf1e902483c070b209b55059159da5f2120b97","Message":"fix: add build patch for osx build\n\nSigned-off-by: Rui Chen \u003crui@chenrui.dev\u003e\n","AuthorEmail":"rui@chenrui.dev","AuthorName":"Rui Chen","CommitterEmail":"rui@chenrui.dev","CommitterName":"Rui Chen","Timestamp":"2023-02-24T12:02:03+01:00"},{"Sha1":"f1d91a071dc4d658d8194ab99fbdc68044410882","Message":"status\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-16T19:34:33-05:00"}],"HeadCommit":{"Sha1":"37b43c2a9a64ebc95cea68b925d5caefb597fbfd","Message":"Merge branch ''NetHack-3.6'' into rogue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-09T23:15:46+01:00"},"CompareURL":"h21/NetHack/compare/f05ac6622e0ae7645044d7f136855f8bb78f37ea...37b43c2a9a64ebc95cea68b925d5caefb597fbfd","Len":48}', 1678400176); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (469, 1, 5, 2, 22, 0, 0, 'refs/heads/rogue', 0, '{"Commits":[{"Sha1":"37b43c2a9a64ebc95cea68b925d5caefb597fbfd","Message":"Merge branch ''NetHack-3.6'' into rogue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-09T23:15:46+01:00"},{"Sha1":"557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Message":"post-3.6.7 build fix with newer c library headers\n\nAs reported for the Homebrew build\n\nCloses #988\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:46:55-05:00"},{"Sha1":"08fc489c9db5a3f545a8f041839bd4aa695ac7f6","Message":"Merge branch ''fix-macos-build'' of https://github.com/chenrui333/NetHack into NetHack-3.6\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:44:28-05:00"},{"Sha1":"79cf1e902483c070b209b55059159da5f2120b97","Message":"fix: add build patch for osx build\n\nSigned-off-by: Rui Chen \u003crui@chenrui.dev\u003e\n","AuthorEmail":"rui@chenrui.dev","AuthorName":"Rui Chen","CommitterEmail":"rui@chenrui.dev","CommitterName":"Rui Chen","Timestamp":"2023-02-24T12:02:03+01:00"},{"Sha1":"f1d91a071dc4d658d8194ab99fbdc68044410882","Message":"status\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-16T19:34:33-05:00"}],"HeadCommit":{"Sha1":"37b43c2a9a64ebc95cea68b925d5caefb597fbfd","Message":"Merge branch ''NetHack-3.6'' into rogue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-09T23:15:46+01:00"},"CompareURL":"h21/NetHack/compare/f05ac6622e0ae7645044d7f136855f8bb78f37ea...37b43c2a9a64ebc95cea68b925d5caefb597fbfd","Len":48}', 1678400176); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (470, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '{"Commits":[{"Sha1":"557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Message":"post-3.6.7 build fix with newer c library headers\n\nAs reported for the Homebrew build\n\nCloses #988\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:46:55-05:00"},{"Sha1":"08fc489c9db5a3f545a8f041839bd4aa695ac7f6","Message":"Merge branch ''fix-macos-build'' of https://github.com/chenrui333/NetHack into NetHack-3.6\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:44:28-05:00"},{"Sha1":"79cf1e902483c070b209b55059159da5f2120b97","Message":"fix: add build patch for osx build\n\nSigned-off-by: Rui Chen \u003crui@chenrui.dev\u003e\n","AuthorEmail":"rui@chenrui.dev","AuthorName":"Rui Chen","CommitterEmail":"rui@chenrui.dev","CommitterName":"Rui Chen","Timestamp":"2023-02-24T12:02:03+01:00"},{"Sha1":"f1d91a071dc4d658d8194ab99fbdc68044410882","Message":"status\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-16T19:34:33-05:00"},{"Sha1":"ed600d9f0f3c37677418f0150f59363ca641f3dc","Message":"set patchlevel.h to release date (take 2)\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-15T16:52:57-05:00"}],"HeadCommit":{"Sha1":"557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Message":"post-3.6.7 build fix with newer c library headers\n\nAs reported for the Homebrew build\n\nCloses #988\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:46:55-05:00"},"CompareURL":"h21/NetHack/compare/59b117c655731bdf1f8b92c57bdb786119927f3a...557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Len":41}', 1678400239); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (471, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.6', 0, '{"Commits":[{"Sha1":"557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Message":"post-3.6.7 build fix with newer c library headers\n\nAs reported for the Homebrew build\n\nCloses #988\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:46:55-05:00"},{"Sha1":"08fc489c9db5a3f545a8f041839bd4aa695ac7f6","Message":"Merge branch ''fix-macos-build'' of https://github.com/chenrui333/NetHack into NetHack-3.6\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:44:28-05:00"},{"Sha1":"79cf1e902483c070b209b55059159da5f2120b97","Message":"fix: add build patch for osx build\n\nSigned-off-by: Rui Chen \u003crui@chenrui.dev\u003e\n","AuthorEmail":"rui@chenrui.dev","AuthorName":"Rui Chen","CommitterEmail":"rui@chenrui.dev","CommitterName":"Rui Chen","Timestamp":"2023-02-24T12:02:03+01:00"},{"Sha1":"f1d91a071dc4d658d8194ab99fbdc68044410882","Message":"status\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-16T19:34:33-05:00"},{"Sha1":"ed600d9f0f3c37677418f0150f59363ca641f3dc","Message":"set patchlevel.h to release date (take 2)\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-15T16:52:57-05:00"}],"HeadCommit":{"Sha1":"557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Message":"post-3.6.7 build fix with newer c library headers\n\nAs reported for the Homebrew build\n\nCloses #988\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-02-24T09:46:55-05:00"},"CompareURL":"h21/NetHack/compare/59b117c655731bdf1f8b92c57bdb786119927f3a...557e18611a860fa17bbb8e5dbfd37b96c9304fe1","Len":41}', 1678400239); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (472, 2, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '{"Commits":[{"Sha1":"ecf74d5308892147947f395e2c186c1c87da8d12","Message":"some pline()-like function usage\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T19:12:52-05:00"},{"Sha1":"d9b43ce357241aa6bbe6e035dcf247304cd93206","Message":"adjust wording preceding \"Being confused,...\"\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T19:09:15-05:00"},{"Sha1":"30de551f023977989df97c25c30a6ad9d9afe281","Message":"more curses key handling\n\nSome bits made when attempting and failing to figure out the curses\nproblem (which turned out to be an early return skipping reset of\ninput timeout and fixed by paxed).\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2023-03-08T14:38:53-08:00"},{"Sha1":"6a13ecaf1221cf299a576292150f0f0777cd1f4e","Message":"\\#retravel feedback\n\nUsing #retravel when no destination was set up just silenty finished,\neffectively a no-op. Could happen for the first travel attempt on\nthe current dungeon level, or after most recent #travel successfully\nreached and cleared its destination.\n\nUsing #retravel when already at previously set but unreached--via\ntravel--destination, or explicitly picking your own spot as travel\ndestination using #travel, actually traveled from your current spot\nto the same spot. Usually nothing interesting occurred and you got\nno feedback. However, if you happened to be stuck in a trap at that\nspot you tried to walk out of it and got trap feedback about that.\n(Then probably right back into the trap if you succeeded in escaping\nit. I didn''t try to test that.)\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2023-03-08T14:35:24-08:00"},{"Sha1":"8c7b3b05b5fdcbb12f3dd25b3feee406bb7b52e2","Message":"Merge branch ''NetHack-3.7'' of https://github.com/nulla-git/NetHack into NetHack-3.7\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T13:29:36-05:00"}],"HeadCommit":{"Sha1":"ecf74d5308892147947f395e2c186c1c87da8d12","Message":"some pline()-like function usage\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T19:12:52-05:00"},"CompareURL":"h21/NetHack/compare/42171ca07075f05a5cde096eedbdc2889a26edbf...ecf74d5308892147947f395e2c186c1c87da8d12","Len":259}', 1678400274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (473, 1, 5, 2, 22, 0, 0, 'refs/heads/NetHack-3.7', 0, '{"Commits":[{"Sha1":"ecf74d5308892147947f395e2c186c1c87da8d12","Message":"some pline()-like function usage\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T19:12:52-05:00"},{"Sha1":"d9b43ce357241aa6bbe6e035dcf247304cd93206","Message":"adjust wording preceding \"Being confused,...\"\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T19:09:15-05:00"},{"Sha1":"30de551f023977989df97c25c30a6ad9d9afe281","Message":"more curses key handling\n\nSome bits made when attempting and failing to figure out the curses\nproblem (which turned out to be an early return skipping reset of\ninput timeout and fixed by paxed).\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2023-03-08T14:38:53-08:00"},{"Sha1":"6a13ecaf1221cf299a576292150f0f0777cd1f4e","Message":"\\#retravel feedback\n\nUsing #retravel when no destination was set up just silenty finished,\neffectively a no-op. Could happen for the first travel attempt on\nthe current dungeon level, or after most recent #travel successfully\nreached and cleared its destination.\n\nUsing #retravel when already at previously set but unreached--via\ntravel--destination, or explicitly picking your own spot as travel\ndestination using #travel, actually traveled from your current spot\nto the same spot. Usually nothing interesting occurred and you got\nno feedback. However, if you happened to be stuck in a trap at that\nspot you tried to walk out of it and got trap feedback about that.\n(Then probably right back into the trap if you succeeded in escaping\nit. I didn''t try to test that.)\n","AuthorEmail":"rankin@nethack.org","AuthorName":"PatR","CommitterEmail":"rankin@nethack.org","CommitterName":"PatR","Timestamp":"2023-03-08T14:35:24-08:00"},{"Sha1":"8c7b3b05b5fdcbb12f3dd25b3feee406bb7b52e2","Message":"Merge branch ''NetHack-3.7'' of https://github.com/nulla-git/NetHack into NetHack-3.7\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T13:29:36-05:00"}],"HeadCommit":{"Sha1":"ecf74d5308892147947f395e2c186c1c87da8d12","Message":"some pline()-like function usage\n","AuthorEmail":"nhmall@nethack.org","AuthorName":"nhmall","CommitterEmail":"nhmall@nethack.org","CommitterName":"nhmall","Timestamp":"2023-03-08T19:12:52-05:00"},"CompareURL":"h21/NetHack/compare/42171ca07075f05a5cde096eedbdc2889a26edbf...ecf74d5308892147947f395e2c186c1c87da8d12","Len":259}', 1678400274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (474, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt03', 1, '{"Commits":null,"HeadCommit":{"Sha1":"6a3c8aa1042d6e49dbbfdd62d66f305737dd3779","Message":"mpt03: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-07T22:11:23+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...6a3c8aa1042d6e49dbbfdd62d66f305737dd3779","Len":0}', 1678443086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (475, 1, 9, 1, 28, 0, 0, 'refs/tags/tut02', 1, '{"Commits":null,"HeadCommit":{"Sha1":"eb10292ab261abe7a4bb0be2ff0292fb598b69f6","Message":"add tut02\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-06T20:30:32+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...eb10292ab261abe7a4bb0be2ff0292fb598b69f6","Len":0}', 1678443086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (476, 1, 9, 1, 28, 0, 0, 'refs/tags/tut03', 1, '{"Commits":null,"HeadCommit":{"Sha1":"2fd0af28fca7559c257ead6030150f922f2ebe32","Message":"tut03: task complete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:36:57+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...2fd0af28fca7559c257ead6030150f922f2ebe32","Len":0}', 1678443086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (477, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"5ad0955a981d316568605925a0796b482ac09b1d","Message":"Merge remote-tracking branch ''origin/tut03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T20:36:02+01:00"},{"Sha1":"2fd0af28fca7559c257ead6030150f922f2ebe32","Message":"tut03: task complete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:36:57+01:00"},{"Sha1":"09f26667528071e5313efe5d0a15e5826e997fbe","Message":"tut03: task 1\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T17:33:25+01:00"},{"Sha1":"eff44d639cd931ad60e4f7a6ce74eb9a23c52c4e","Message":"Merge branch ''mpt03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-07T22:12:02+01:00"},{"Sha1":"c9737a1a96c6d44ae8f5be79bb73df9fe4fed547","Message":"tut03: begin\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T16:16:39+01:00"}],"HeadCommit":{"Sha1":"5ad0955a981d316568605925a0796b482ac09b1d","Message":"Merge remote-tracking branch ''origin/tut03''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-08T20:36:02+01:00"},"CompareURL":"prokop/BI-PA2/compare/1f8338b88d872aa15bca0e7d325ed27c462b9dc5...5ad0955a981d316568605925a0796b482ac09b1d","Len":12}', 1678443127); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (478, 4, 18, 4, 31, 0, 0, 'array', 1, '{"Commits":[{"Sha1":"d2f550605155151cd21e08f6a2e5424cbbd76313","Message":"array: done\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-10T12:07:04+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa...d2f550605155151cd21e08f6a2e5424cbbd76313","Len":1}', 1678468593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (479, 1, 18, 4, 31, 0, 0, 'array', 1, '{"Commits":[{"Sha1":"d2f550605155151cd21e08f6a2e5424cbbd76313","Message":"array: done\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-10T12:07:04+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa...d2f550605155151cd21e08f6a2e5424cbbd76313","Len":1}', 1678468593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (480, 4, 18, 4, 31, 0, 0, 'refs/heads/conf', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1678468593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (481, 1, 18, 4, 31, 0, 0, 'refs/heads/conf', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1678468593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (482, 4, 19, 4, 31, 0, 0, 'refs/heads/conf', 1, '', 1678468593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (483, 1, 19, 4, 31, 0, 0, 'refs/heads/conf', 1, '', 1678468594); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (484, 4, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"a80d3e81e22efbd1b6a852cb203df96cb74663c1","Message":"Merge branch ''array''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-10T12:13:04+01:00"},{"Sha1":"d2f550605155151cd21e08f6a2e5424cbbd76313","Message":"array: done\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-10T12:07:04+01:00"},{"Sha1":"e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa","Message":"add help\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:08:39+01:00"},{"Sha1":"bf74bee8b299d4b9fc1edb8fff126646849a5dc1","Message":"prepend\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:04:13+01:00"},{"Sha1":"797c1c0bd0bcc92fee57bfccd2ac87a09fa7dbd0","Message":"load and save\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-06T14:14:15+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/1acfb26effeae1a1f1681d2f9f5e0d8db33e52be...a80d3e81e22efbd1b6a852cb203df96cb74663c1","Len":5}', 1678468594); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (485, 1, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"a80d3e81e22efbd1b6a852cb203df96cb74663c1","Message":"Merge branch ''array''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-10T12:13:04+01:00"},{"Sha1":"d2f550605155151cd21e08f6a2e5424cbbd76313","Message":"array: done\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-10T12:07:04+01:00"},{"Sha1":"e5f2c1472aad89cac7c5d3878e8824bd9a8cd5fa","Message":"add help\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:08:39+01:00"},{"Sha1":"bf74bee8b299d4b9fc1edb8fff126646849a5dc1","Message":"prepend\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-09T15:04:13+01:00"},{"Sha1":"797c1c0bd0bcc92fee57bfccd2ac87a09fa7dbd0","Message":"load and save\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-06T14:14:15+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/1acfb26effeae1a1f1681d2f9f5e0d8db33e52be...a80d3e81e22efbd1b6a852cb203df96cb74663c1","Len":5}', 1678468594); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (486, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '', 1678526344); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (487, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"fbcc1c441965b3f0005ec18adb66072d6f83090f","Message":"pt01: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T10:18:42+01:00"}],"HeadCommit":{"Sha1":"fbcc1c441965b3f0005ec18adb66072d6f83090f","Message":"pt01: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T10:18:42+01:00"},"CompareURL":"prokop/BI-PA2/compare/5ad0955a981d316568605925a0796b482ac09b1d...fbcc1c441965b3f0005ec18adb66072d6f83090f","Len":1}', 1678526344); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (488, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"db91f7d24357005bebe3df3a7185acaa6fa6de39","Message":"pt01: cmp files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T10:55:30+01:00"}],"HeadCommit":{"Sha1":"db91f7d24357005bebe3df3a7185acaa6fa6de39","Message":"pt01: cmp files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T10:55:30+01:00"},"CompareURL":"prokop/BI-PA2/compare/fbcc1c441965b3f0005ec18adb66072d6f83090f...db91f7d24357005bebe3df3a7185acaa6fa6de39","Len":1}', 1678528539); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (489, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"04aae048410f40ee6171ca4ea0e522e35a53de77","Message":"pt01: add fibonacci generator\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T12:00:30+01:00"}],"HeadCommit":{"Sha1":"04aae048410f40ee6171ca4ea0e522e35a53de77","Message":"pt01: add fibonacci generator\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T12:00:30+01:00"},"CompareURL":"prokop/BI-PA2/compare/db91f7d24357005bebe3df3a7185acaa6fa6de39...04aae048410f40ee6171ca4ea0e522e35a53de77","Len":1}', 1678533300); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (490, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"8b7f72fbb25487cdb1e7947006771a9b3128d333","Message":"pt01: read utf8\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T14:37:24+01:00"}],"HeadCommit":{"Sha1":"8b7f72fbb25487cdb1e7947006771a9b3128d333","Message":"pt01: read utf8\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T14:37:24+01:00"},"CompareURL":"prokop/BI-PA2/compare/04aae048410f40ee6171ca4ea0e522e35a53de77...8b7f72fbb25487cdb1e7947006771a9b3128d333","Len":1}', 1678541852); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (491, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"5a64e419a5d3c93b63e62abdb8b3dc447ca795f9","Message":"pt01: utf to fib\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T17:46:14+01:00"}],"HeadCommit":{"Sha1":"5a64e419a5d3c93b63e62abdb8b3dc447ca795f9","Message":"pt01: utf to fib\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T17:46:14+01:00"},"CompareURL":"prokop/BI-PA2/compare/8b7f72fbb25487cdb1e7947006771a9b3128d333...5a64e419a5d3c93b63e62abdb8b3dc447ca795f9","Len":1}', 1678553182); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (492, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"3e1b30423d41700e6012e33509a98cb2c2b32c4e","Message":"pt01: better utf parser\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T18:59:58+01:00"}],"HeadCommit":{"Sha1":"3e1b30423d41700e6012e33509a98cb2c2b32c4e","Message":"pt01: better utf parser\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T18:59:58+01:00"},"CompareURL":"prokop/BI-PA2/compare/5a64e419a5d3c93b63e62abdb8b3dc447ca795f9...3e1b30423d41700e6012e33509a98cb2c2b32c4e","Len":1}', 1678557606); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (493, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"43a36b1bdb2259b0742a04d1183511a639274b5d","Message":"pt01: read fib\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T19:36:33+01:00"},{"Sha1":"62e49994bf22a80fb0cc2135a3c0f6fc08dc8c63","Message":"pt01: writeFib function\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T19:23:04+01:00"}],"HeadCommit":{"Sha1":"43a36b1bdb2259b0742a04d1183511a639274b5d","Message":"pt01: read fib\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T19:36:33+01:00"},"CompareURL":"prokop/BI-PA2/compare/3e1b30423d41700e6012e33509a98cb2c2b32c4e...43a36b1bdb2259b0742a04d1183511a639274b5d","Len":2}', 1678559801); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (494, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"1a3e8561f5c8779a4bc358edc8df542cac14a2a9","Message":"pt01: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T20:34:26+01:00"},{"Sha1":"b7e9c49f9e666358ac3f7620b42a88fb37276972","Message":"pt01: more fib\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T20:33:49+01:00"}],"HeadCommit":{"Sha1":"1a3e8561f5c8779a4bc358edc8df542cac14a2a9","Message":"pt01: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T20:34:26+01:00"},"CompareURL":"prokop/BI-PA2/compare/43a36b1bdb2259b0742a04d1183511a639274b5d...1a3e8561f5c8779a4bc358edc8df542cac14a2a9","Len":2}', 1678563274); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (495, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"ec692d606f49ecaaec8be6f3223bdc86f411a747","Message":"pt01: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:06:12+01:00"}],"HeadCommit":{"Sha1":"ec692d606f49ecaaec8be6f3223bdc86f411a747","Message":"pt01: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:06:12+01:00"},"CompareURL":"prokop/BI-PA2/compare/1a3e8561f5c8779a4bc358edc8df542cac14a2a9...ec692d606f49ecaaec8be6f3223bdc86f411a747","Len":1}', 1678565183); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (496, 1, 5, 1, 28, 0, 0, 'refs/heads/pt01', 1, '{"Commits":[{"Sha1":"3a9c1fd032d48f112aaaba8e02ebd2ba0e7e2a14","Message":"pt01: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:06:12+01:00"}],"HeadCommit":{"Sha1":"3a9c1fd032d48f112aaaba8e02ebd2ba0e7e2a14","Message":"pt01: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:06:12+01:00"},"CompareURL":"prokop/BI-PA2/compare/ec692d606f49ecaaec8be6f3223bdc86f411a747...3a9c1fd032d48f112aaaba8e02ebd2ba0e7e2a14","Len":1}', 1678565323); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (497, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"8b8d9f34950f7923dc2262c3c11b401282081c96","Message":"Merge branch ''pt01''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:09:13+01:00"},{"Sha1":"3a9c1fd032d48f112aaaba8e02ebd2ba0e7e2a14","Message":"pt01: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:06:12+01:00"},{"Sha1":"1a3e8561f5c8779a4bc358edc8df542cac14a2a9","Message":"pt01: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T20:34:26+01:00"},{"Sha1":"b7e9c49f9e666358ac3f7620b42a88fb37276972","Message":"pt01: more fib\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T20:33:49+01:00"},{"Sha1":"43a36b1bdb2259b0742a04d1183511a639274b5d","Message":"pt01: read fib\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T19:36:33+01:00"}],"HeadCommit":{"Sha1":"8b8d9f34950f7923dc2262c3c11b401282081c96","Message":"Merge branch ''pt01''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:09:13+01:00"},"CompareURL":"prokop/BI-PA2/compare/5ad0955a981d316568605925a0796b482ac09b1d...8b8d9f34950f7923dc2262c3c11b401282081c96","Len":12}', 1678565371); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (498, 1, 17, 1, 28, 0, 0, 'refs/heads/pt01', 1, '', 1678565382); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (499, 1, 9, 1, 28, 0, 0, 'refs/tags/pt01', 1, '{"Commits":null,"HeadCommit":{"Sha1":"3a9c1fd032d48f112aaaba8e02ebd2ba0e7e2a14","Message":"pt01: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-11T21:06:12+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...3a9c1fd032d48f112aaaba8e02ebd2ba0e7e2a14","Len":0}', 1678565394); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (500, 4, 18, 4, 31, 0, 0, 'conf', 1, '{"Commits":[{"Sha1":"42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4","Message":"conf read and check errors\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-12T15:49:38+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/d04f1806b17c70a22ff12a4913de82cccddbac00...42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4","Len":1}', 1678644993); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (501, 1, 18, 4, 31, 0, 0, 'conf', 1, '{"Commits":[{"Sha1":"42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4","Message":"conf read and check errors\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-12T15:49:38+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/d04f1806b17c70a22ff12a4913de82cccddbac00...42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4","Len":1}', 1678644993); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (502, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt04', 1, '', 1678697691); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (503, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt04', 1, '{"Commits":[{"Sha1":"857c3f0bb320bfc0e551fba94bbd0da52eaf1f5e","Message":"mpt04: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T09:54:25+01:00"}],"HeadCommit":{"Sha1":"857c3f0bb320bfc0e551fba94bbd0da52eaf1f5e","Message":"mpt04: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T09:54:25+01:00"},"CompareURL":"prokop/BI-PA2/compare/8b8d9f34950f7923dc2262c3c11b401282081c96...857c3f0bb320bfc0e551fba94bbd0da52eaf1f5e","Len":1}', 1678697691); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (504, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt04', 1, '{"Commits":[{"Sha1":"48c45c525eb5f77b5efbe8ce6ebf7f29b61f6688","Message":"mpt04: kostra trid\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T14:02:04+01:00"}],"HeadCommit":{"Sha1":"48c45c525eb5f77b5efbe8ce6ebf7f29b61f6688","Message":"mpt04: kostra trid\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T14:02:04+01:00"},"CompareURL":"prokop/BI-PA2/compare/857c3f0bb320bfc0e551fba94bbd0da52eaf1f5e...48c45c525eb5f77b5efbe8ce6ebf7f29b61f6688","Len":1}', 1678712544); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (505, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt04', 1, '{"Commits":[{"Sha1":"5167817a200dd9ed44f6a274e1d2188342097414","Message":"mpt04: timestamp constructor\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T22:48:45+01:00"}],"HeadCommit":{"Sha1":"5167817a200dd9ed44f6a274e1d2188342097414","Message":"mpt04: timestamp constructor\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T22:48:45+01:00"},"CompareURL":"prokop/BI-PA2/compare/48c45c525eb5f77b5efbe8ce6ebf7f29b61f6688...5167817a200dd9ed44f6a274e1d2188342097414","Len":1}', 1678744140); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (506, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"e712e777a8afe09595f823114c26ee070cc5bcf5","Message":"Merge branch ''mpt04''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-14T20:17:52+01:00"},{"Sha1":"3a3a8d79c784870b2fb527d76250645aa7eefc79","Message":"mpt04: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-14T20:17:16+01:00"},{"Sha1":"5167817a200dd9ed44f6a274e1d2188342097414","Message":"mpt04: timestamp constructor\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T22:48:45+01:00"},{"Sha1":"48c45c525eb5f77b5efbe8ce6ebf7f29b61f6688","Message":"mpt04: kostra trid\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T14:02:04+01:00"},{"Sha1":"857c3f0bb320bfc0e551fba94bbd0da52eaf1f5e","Message":"mpt04: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-13T09:54:25+01:00"}],"HeadCommit":{"Sha1":"e712e777a8afe09595f823114c26ee070cc5bcf5","Message":"Merge branch ''mpt04''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-14T20:17:52+01:00"},"CompareURL":"prokop/BI-PA2/compare/8b8d9f34950f7923dc2262c3c11b401282081c96...e712e777a8afe09595f823114c26ee070cc5bcf5","Len":5}', 1678821501); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (507, 1, 17, 1, 28, 0, 0, 'refs/heads/mpt04', 1, '', 1678821509); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (508, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt04', 1, '{"Commits":null,"HeadCommit":{"Sha1":"3a3a8d79c784870b2fb527d76250645aa7eefc79","Message":"mpt04: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-14T20:17:16+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...3a3a8d79c784870b2fb527d76250645aa7eefc79","Len":0}', 1678821522); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (509, 1, 9, 1, 29, 0, 0, 'refs/tags/bouda_02', 1, '{"Commits":null,"HeadCommit":{"Sha1":"45fd4daddc35560b9cd741954eb42a6364fe411f","Message":"walk =\u003e doStep\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"prokopparuzek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-01T23:50:21+01:00"},"CompareURL":"prokop/BI-PSI/compare/0000000000000000000000000000000000000000...45fd4daddc35560b9cd741954eb42a6364fe411f","Len":0}', 1678831414); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (510, 1, 5, 1, 28, 0, 0, 'refs/heads/tut04', 1, '', 1678896013); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (511, 1, 5, 1, 28, 0, 0, 'refs/heads/tut04', 1, '{"Commits":[{"Sha1":"5770f7252fcf18cb8132d32da632ec22178b2e63","Message":"tut04: task03 fail, must sort\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T16:59:30+01:00"},{"Sha1":"3e2d4ace762efd6ee0116f17ea04a2e9287ad05a","Message":"tut04: task2\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T16:50:58+01:00"},{"Sha1":"2a0d9a284ecf1747aebb69c091d747062f8349fa","Message":"tut04: task1\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T16:41:24+01:00"},{"Sha1":"a5c0ec91928b6ac175565b001e21f1463e4fb921","Message":"tut04: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T16:26:03+01:00"}],"HeadCommit":{"Sha1":"5770f7252fcf18cb8132d32da632ec22178b2e63","Message":"tut04: task03 fail, must sort\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T16:59:30+01:00"},"CompareURL":"prokop/BI-PA2/compare/e712e777a8afe09595f823114c26ee070cc5bcf5...5770f7252fcf18cb8132d32da632ec22178b2e63","Len":4}', 1678896013); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (512, 1, 5, 1, 28, 0, 0, 'refs/heads/tut04', 1, '{"Commits":[{"Sha1":"4bb390afac68b9bfb4187f1e142dad2af6dd0e5b","Message":"tut04: task3 sort\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T17:13:19+01:00"}],"HeadCommit":{"Sha1":"4bb390afac68b9bfb4187f1e142dad2af6dd0e5b","Message":"tut04: task3 sort\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T17:13:19+01:00"},"CompareURL":"prokop/BI-PA2/compare/5770f7252fcf18cb8132d32da632ec22178b2e63...4bb390afac68b9bfb4187f1e142dad2af6dd0e5b","Len":1}', 1678896816); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (513, 1, 5, 1, 28, 0, 0, 'refs/heads/tut04', 1, '{"Commits":[{"Sha1":"2def8cfc591a5efb5a2b80a6c236415ab52b1d17","Message":"tut04: task4 set_union std alg\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T17:47:20+01:00"}],"HeadCommit":{"Sha1":"2def8cfc591a5efb5a2b80a6c236415ab52b1d17","Message":"tut04: task4 set_union std alg\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T17:47:20+01:00"},"CompareURL":"prokop/BI-PA2/compare/4bb390afac68b9bfb4187f1e142dad2af6dd0e5b...2def8cfc591a5efb5a2b80a6c236415ab52b1d17","Len":1}', 1678898882); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (514, 4, 18, 4, 31, 0, 0, 'conf', 1, '{"Commits":[{"Sha1":"6c4e1cc0d8eef41f92f9f05d0eb7cb3d695fdae3","Message":"better parser\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T11:48:19+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4...6c4e1cc0d8eef41f92f9f05d0eb7cb3d695fdae3","Len":1}', 1678968393); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (515, 1, 18, 4, 31, 0, 0, 'conf', 1, '{"Commits":[{"Sha1":"6c4e1cc0d8eef41f92f9f05d0eb7cb3d695fdae3","Message":"better parser\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T11:48:19+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4...6c4e1cc0d8eef41f92f9f05d0eb7cb3d695fdae3","Len":1}', 1678968393); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (516, 4, 20, 4, 31, 0, 0, 'array', 1, '', 1678997793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (517, 1, 20, 4, 31, 0, 0, 'array', 1, '', 1678997793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (518, 4, 20, 4, 31, 0, 0, 'conf', 1, '', 1678997794); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (519, 1, 20, 4, 31, 0, 0, 'conf', 1, '', 1678997794); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (520, 4, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"299d1db143f76c03592bc3095067d2f7c3c5d460","Message":"Merge branch ''conf''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T16:26:17+01:00"},{"Sha1":"6345ef1a65d6cac436e4bf5c25b48cb88f8e4a07","Message":"stderr\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T16:23:19+01:00"},{"Sha1":"a7ebc2e317ab7fd627770ab2c47dc65d2556c850","Message":"add non valid conf file\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T13:10:58+01:00"},{"Sha1":"6c4e1cc0d8eef41f92f9f05d0eb7cb3d695fdae3","Message":"better parser\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T11:48:19+01:00"},{"Sha1":"42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4","Message":"conf read and check errors\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-12T15:49:38+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/a80d3e81e22efbd1b6a852cb203df96cb74663c1...299d1db143f76c03592bc3095067d2f7c3c5d460","Len":6}', 1678997794); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (521, 1, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"299d1db143f76c03592bc3095067d2f7c3c5d460","Message":"Merge branch ''conf''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T16:26:17+01:00"},{"Sha1":"6345ef1a65d6cac436e4bf5c25b48cb88f8e4a07","Message":"stderr\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T16:23:19+01:00"},{"Sha1":"a7ebc2e317ab7fd627770ab2c47dc65d2556c850","Message":"add non valid conf file\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T13:10:58+01:00"},{"Sha1":"6c4e1cc0d8eef41f92f9f05d0eb7cb3d695fdae3","Message":"better parser\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-16T11:48:19+01:00"},{"Sha1":"42c73fdc15a1f2341e8b40d692ffaf34ef11e7c4","Message":"conf read and check errors\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-12T15:49:38+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/a80d3e81e22efbd1b6a852cb203df96cb74663c1...299d1db143f76c03592bc3095067d2f7c3c5d460","Len":6}', 1678997794); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (522, 4, 18, 4, 31, 0, 0, 'refs/heads/conf', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679056593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (523, 1, 18, 4, 31, 0, 0, 'refs/heads/conf', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679056593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (524, 4, 19, 4, 31, 0, 0, 'refs/heads/conf', 1, '', 1679056593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (525, 1, 19, 4, 31, 0, 0, 'refs/heads/conf', 1, '', 1679056593); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (526, 4, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"e23d97c711b2759440425295ff38c78cced266d4","Message":"Merge branch ''conf''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-17T11:25:24+01:00"},{"Sha1":"e2e5547bbc39fe1a822d5cd660e3c9b9b0d997b4","Message":"update sed case change\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-17T11:20:56+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/299d1db143f76c03592bc3095067d2f7c3c5d460...e23d97c711b2759440425295ff38c78cced266d4","Len":2}', 1679056594); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (527, 1, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"e23d97c711b2759440425295ff38c78cced266d4","Message":"Merge branch ''conf''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-17T11:25:24+01:00"},{"Sha1":"e2e5547bbc39fe1a822d5cd660e3c9b9b0d997b4","Message":"update sed case change\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-17T11:20:56+01:00"}],"HeadCommit":null,"CompareURL":"skj/bash/compare/299d1db143f76c03592bc3095067d2f7c3c5d460...e23d97c711b2759440425295ff38c78cced266d4","Len":2}', 1679056594); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (528, 4, 18, 4, 32, 0, 0, 'cnb', 1, '{"Commits":[{"Sha1":"2b66e4bfa7518b14433beabed1007099847691e7","Message":"add comments\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-17T16:02:43+01:00"}],"HeadCommit":null,"CompareURL":"skj/sed/compare/31b694fc41559ae0d75fa6cd17995ae1a0c63a90...2b66e4bfa7518b14433beabed1007099847691e7","Len":1}', 1679065592); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (529, 1, 18, 4, 32, 0, 0, 'cnb', 1, '{"Commits":[{"Sha1":"2b66e4bfa7518b14433beabed1007099847691e7","Message":"add comments\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-17T16:02:43+01:00"}],"HeadCommit":null,"CompareURL":"skj/sed/compare/31b694fc41559ae0d75fa6cd17995ae1a0c63a90...2b66e4bfa7518b14433beabed1007099847691e7","Len":1}', 1679065592); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (530, 1, 9, 1, 28, 0, 0, 'refs/tags/tut04', 1, '{"Commits":null,"HeadCommit":{"Sha1":"2def8cfc591a5efb5a2b80a6c236415ab52b1d17","Message":"tut04: task4 set_union std alg\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T17:47:20+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...2def8cfc591a5efb5a2b80a6c236415ab52b1d17","Len":0}', 1679252401); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (531, 1, 17, 1, 28, 0, 0, 'refs/heads/tut04', 1, '', 1679252448); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (532, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"acc4b619d74fec5b0e1216d4fee36d7892259dd0","Message":"Merge branch ''tut04''\n\nnedokonceno\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-19T19:59:06+01:00"},{"Sha1":"2def8cfc591a5efb5a2b80a6c236415ab52b1d17","Message":"tut04: task4 set_union std alg\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T17:47:20+01:00"},{"Sha1":"4bb390afac68b9bfb4187f1e142dad2af6dd0e5b","Message":"tut04: task3 sort\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T17:13:19+01:00"},{"Sha1":"5770f7252fcf18cb8132d32da632ec22178b2e63","Message":"tut04: task03 fail, must sort\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T16:59:30+01:00"},{"Sha1":"3e2d4ace762efd6ee0116f17ea04a2e9287ad05a","Message":"tut04: task2\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-15T16:50:58+01:00"}],"HeadCommit":{"Sha1":"acc4b619d74fec5b0e1216d4fee36d7892259dd0","Message":"Merge branch ''tut04''\n\nnedokonceno\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-19T19:59:06+01:00"},"CompareURL":"prokop/BI-PA2/compare/e712e777a8afe09595f823114c26ee070cc5bcf5...acc4b619d74fec5b0e1216d4fee36d7892259dd0","Len":7}', 1679252481); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (533, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '', 1679252586); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (534, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '{"Commits":[{"Sha1":"44f16fd4027713fa575bc224dc9b7de78e957bc6","Message":"pt02: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-19T20:02:47+01:00"}],"HeadCommit":{"Sha1":"44f16fd4027713fa575bc224dc9b7de78e957bc6","Message":"pt02: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-19T20:02:47+01:00"},"CompareURL":"prokop/BI-PA2/compare/acc4b619d74fec5b0e1216d4fee36d7892259dd0...44f16fd4027713fa575bc224dc9b7de78e957bc6","Len":1}', 1679252586); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (535, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '{"Commits":[{"Sha1":"a5f71c27d497b797d364edd3f95dd00e7cd119a2","Message":"pt02: add comparators\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T14:01:53+01:00"},{"Sha1":"3cd26d97acabb47d7415723bd4a1d0e5766672dd","Message":"pt02: add constructor\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T14:01:35+01:00"},{"Sha1":"be3aa5c4af5ee1c48151e52ef5de472e7db16ddf","Message":"pt02: kostra\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T13:48:58+01:00"}],"HeadCommit":{"Sha1":"a5f71c27d497b797d364edd3f95dd00e7cd119a2","Message":"pt02: add comparators\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T14:01:53+01:00"},"CompareURL":"prokop/BI-PA2/compare/44f16fd4027713fa575bc224dc9b7de78e957bc6...a5f71c27d497b797d364edd3f95dd00e7cd119a2","Len":3}', 1679317404); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (536, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '{"Commits":[{"Sha1":"49456e6da4a12970a6101b93247e175c1882410b","Message":"pt02: find name from email\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T14:15:15+01:00"}],"HeadCommit":{"Sha1":"49456e6da4a12970a6101b93247e175c1882410b","Message":"pt02: find name from email\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T14:15:15+01:00"},"CompareURL":"prokop/BI-PA2/compare/a5f71c27d497b797d364edd3f95dd00e7cd119a2...49456e6da4a12970a6101b93247e175c1882410b","Len":1}', 1679318136); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (537, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '{"Commits":[{"Sha1":"c4f1000d2c48009c7d6d08982e193bd30c61eb65","Message":"pt02: add and del\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T22:16:14+01:00"}],"HeadCommit":{"Sha1":"c4f1000d2c48009c7d6d08982e193bd30c61eb65","Message":"pt02: add and del\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-20T22:16:14+01:00"},"CompareURL":"prokop/BI-PA2/compare/49456e6da4a12970a6101b93247e175c1882410b...c4f1000d2c48009c7d6d08982e193bd30c61eb65","Len":1}', 1679347072); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (538, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '{"Commits":[{"Sha1":"22acaa0a5d6abba55e2c808e85c1531cc6de4497","Message":"pt02: all functions\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T20:05:11+01:00"}],"HeadCommit":{"Sha1":"22acaa0a5d6abba55e2c808e85c1531cc6de4497","Message":"pt02: all functions\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T20:05:11+01:00"},"CompareURL":"prokop/BI-PA2/compare/c4f1000d2c48009c7d6d08982e193bd30c61eb65...22acaa0a5d6abba55e2c808e85c1531cc6de4497","Len":1}', 1679425543); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (539, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '{"Commits":[{"Sha1":"68a0168cd8f40d8c6f087c410a8bfa21b9eae4f7","Message":"pt02: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T20:39:27+01:00"},{"Sha1":"e38f9b9c09f497dde597de30dbdb302196241c96","Message":"pt02: add constructor and destructor; empty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T20:08:18+01:00"}],"HeadCommit":{"Sha1":"68a0168cd8f40d8c6f087c410a8bfa21b9eae4f7","Message":"pt02: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T20:39:27+01:00"},"CompareURL":"prokop/BI-PA2/compare/22acaa0a5d6abba55e2c808e85c1531cc6de4497...68a0168cd8f40d8c6f087c410a8bfa21b9eae4f7","Len":2}', 1679427595); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (540, 1, 5, 1, 28, 0, 0, 'refs/heads/pt02', 1, '{"Commits":[{"Sha1":"8b6246883dfdfce50f77dcf206f55318c6298ab6","Message":"pt02: try better getRank\n\nNE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T20:51:35+01:00"}],"HeadCommit":{"Sha1":"8b6246883dfdfce50f77dcf206f55318c6298ab6","Message":"pt02: try better getRank\n\nNE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T20:51:35+01:00"},"CompareURL":"prokop/BI-PA2/compare/68a0168cd8f40d8c6f087c410a8bfa21b9eae4f7...8b6246883dfdfce50f77dcf206f55318c6298ab6","Len":1}', 1679428330); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (541, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '', 1679437373); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (542, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '{"Commits":[{"Sha1":"5263d153832023a0a0d85f60ed268364febdebac","Message":"mpt05: add plus operators\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T23:22:29+01:00"},{"Sha1":"df4dc242d89c17236add05a1c1b0fad9bf760291","Message":"mpt05: declarations\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T22:58:17+01:00"},{"Sha1":"5a8ec9e1987cef136fe5fb2f78c374fe0d8dbc01","Message":"mpt05: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T22:45:59+01:00"}],"HeadCommit":{"Sha1":"5263d153832023a0a0d85f60ed268364febdebac","Message":"mpt05: add plus operators\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-21T23:22:29+01:00"},"CompareURL":"prokop/BI-PA2/compare/acc4b619d74fec5b0e1216d4fee36d7892259dd0...5263d153832023a0a0d85f60ed268364febdebac","Len":3}', 1679437374); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (543, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '{"Commits":[{"Sha1":"7536549a935c262a21e61011e7b944082ce7b29e","Message":"mpt05: add get and load seconds\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T10:41:04+01:00"}],"HeadCommit":{"Sha1":"7536549a935c262a21e61011e7b944082ce7b29e","Message":"mpt05: add get and load seconds\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T10:41:04+01:00"},"CompareURL":"prokop/BI-PA2/compare/5263d153832023a0a0d85f60ed268364febdebac...7536549a935c262a21e61011e7b944082ce7b29e","Len":1}', 1679478097); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (544, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '{"Commits":[{"Sha1":"bc9f94ea28ed5a1c1b1ec0d6d474c352801dc58d","Message":"mpt05: almost all operators, some refactor\n\nsimplifie add function, add unsigned int second and some const\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T14:18:22+01:00"}],"HeadCommit":{"Sha1":"bc9f94ea28ed5a1c1b1ec0d6d474c352801dc58d","Message":"mpt05: almost all operators, some refactor\n\nsimplifie add function, add unsigned int second and some const\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T14:18:22+01:00"},"CompareURL":"prokop/BI-PA2/compare/7536549a935c262a21e61011e7b944082ce7b29e...bc9f94ea28ed5a1c1b1ec0d6d474c352801dc58d","Len":1}', 1679491151); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (545, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '{"Commits":[{"Sha1":"d08148097cb21f617bc4ecebc3e7cec46be35c5f","Message":"mpt05: add ++ --\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T14:31:23+01:00"}],"HeadCommit":{"Sha1":"d08148097cb21f617bc4ecebc3e7cec46be35c5f","Message":"mpt05: add ++ --\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T14:31:23+01:00"},"CompareURL":"prokop/BI-PA2/compare/bc9f94ea28ed5a1c1b1ec0d6d474c352801dc58d...d08148097cb21f617bc4ecebc3e7cec46be35c5f","Len":1}', 1679491908); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (546, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '{"Commits":[{"Sha1":"572962bb61de46bec4caf54dda3639b0f12ea86b","Message":"mpt05: doladeni, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T16:28:50+01:00"}],"HeadCommit":{"Sha1":"572962bb61de46bec4caf54dda3639b0f12ea86b","Message":"mpt05: doladeni, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T16:28:50+01:00"},"CompareURL":"prokop/BI-PA2/compare/d08148097cb21f617bc4ecebc3e7cec46be35c5f...572962bb61de46bec4caf54dda3639b0f12ea86b","Len":1}', 1679498951); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (547, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '{"Commits":[{"Sha1":"130f53a54975d2fbde42827eb5698f622304cabe","Message":"mpt05: dalsi doladeni, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T16:55:01+01:00"}],"HeadCommit":{"Sha1":"130f53a54975d2fbde42827eb5698f622304cabe","Message":"mpt05: dalsi doladeni, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T16:55:01+01:00"},"CompareURL":"prokop/BI-PA2/compare/572962bb61de46bec4caf54dda3639b0f12ea86b...130f53a54975d2fbde42827eb5698f622304cabe","Len":1}', 1679500532); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (548, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"e593752e1a21ae1961853d7b014770b536e700bf","Message":"Merge branch ''tut05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T17:42:16+01:00"},{"Sha1":"837f0a871aacecfdfa57f644a3dd8a5759b29477","Message":"tut05: cviceni\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T17:41:05+01:00"}],"HeadCommit":{"Sha1":"e593752e1a21ae1961853d7b014770b536e700bf","Message":"Merge branch ''tut05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T17:42:16+01:00"},"CompareURL":"prokop/BI-PA2/compare/acc4b619d74fec5b0e1216d4fee36d7892259dd0...e593752e1a21ae1961853d7b014770b536e700bf","Len":2}', 1679503368); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (549, 1, 9, 1, 28, 0, 0, 'refs/tags/tut05', 1, '{"Commits":null,"HeadCommit":{"Sha1":"837f0a871aacecfdfa57f644a3dd8a5759b29477","Message":"tut05: cviceni\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T17:41:05+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...837f0a871aacecfdfa57f644a3dd8a5759b29477","Len":0}', 1679503522); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (550, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"0e5949e2490b37be193eb3557dacea8191fbbe5b","Message":"Merge branch ''mpt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-23T00:18:52+01:00"},{"Sha1":"5c6ed57a43125c562161e57d4f9e1b66d6b3475c","Message":"mpt05: obraceny plus a doladeni minus\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-23T00:17:38+01:00"},{"Sha1":"be5f9f0ddaf022a19c2f47d85097278b36be424d","Message":"mpt05: change absolute, use circle\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T22:25:14+01:00"},{"Sha1":"130f53a54975d2fbde42827eb5698f622304cabe","Message":"mpt05: dalsi doladeni, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T16:55:01+01:00"},{"Sha1":"572962bb61de46bec4caf54dda3639b0f12ea86b","Message":"mpt05: doladeni, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-22T16:28:50+01:00"}],"HeadCommit":{"Sha1":"0e5949e2490b37be193eb3557dacea8191fbbe5b","Message":"Merge branch ''mpt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-23T00:18:52+01:00"},"CompareURL":"prokop/BI-PA2/compare/e593752e1a21ae1961853d7b014770b536e700bf...0e5949e2490b37be193eb3557dacea8191fbbe5b","Len":11}', 1679527222); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (551, 1, 17, 1, 28, 0, 0, 'refs/heads/mpt05', 1, '', 1679527238); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (552, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt05', 1, '{"Commits":null,"HeadCommit":{"Sha1":"5c6ed57a43125c562161e57d4f9e1b66d6b3475c","Message":"mpt05: obraceny plus a doladeni minus\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-23T00:17:38+01:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...5c6ed57a43125c562161e57d4f9e1b66d6b3475c","Len":0}', 1679527248); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (553, 4, 20, 4, 32, 0, 0, 'cnb', 1, '', 1679573086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (554, 1, 20, 4, 32, 0, 0, 'cnb', 1, '', 1679573086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (555, 4, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"347124221209cb397849a23ce3c48178b9815569","Message":"Merge branch ''gen''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T13:00:18+01:00"},{"Sha1":"051820f72f040abe45872bce937ece7cda2cf550","Message":"Merge branch ''cnb''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T13:00:12+01:00"},{"Sha1":"7203f147c7d6aede0e9e2f18d29508cc4820be55","Message":"parse also new format\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T12:58:19+01:00"},{"Sha1":"2e9ca5c2c799134fe5bbca0f1c68f00914ad9f25","Message":"predmety BMNP I\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T11:58:07+01:00"},{"Sha1":"2d39ab9a6ec0888099144e0f255dcfc5bb76c97c","Message":"generate sed script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T11:51:44+01:00"}],"HeadCommit":{"Sha1":"347124221209cb397849a23ce3c48178b9815569","Message":"Merge branch ''gen''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T13:00:18+01:00"},"CompareURL":"skj/sed/compare/3a6b0c06a2ebf2e4908d4c399c0cc163756fe3d2...347124221209cb397849a23ce3c48178b9815569","Len":9}', 1679573086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (556, 1, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"347124221209cb397849a23ce3c48178b9815569","Message":"Merge branch ''gen''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T13:00:18+01:00"},{"Sha1":"051820f72f040abe45872bce937ece7cda2cf550","Message":"Merge branch ''cnb''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T13:00:12+01:00"},{"Sha1":"7203f147c7d6aede0e9e2f18d29508cc4820be55","Message":"parse also new format\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T12:58:19+01:00"},{"Sha1":"2e9ca5c2c799134fe5bbca0f1c68f00914ad9f25","Message":"predmety BMNP I\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T11:58:07+01:00"},{"Sha1":"2d39ab9a6ec0888099144e0f255dcfc5bb76c97c","Message":"generate sed script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T11:51:44+01:00"}],"HeadCommit":{"Sha1":"347124221209cb397849a23ce3c48178b9815569","Message":"Merge branch ''gen''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T13:00:18+01:00"},"CompareURL":"skj/sed/compare/3a6b0c06a2ebf2e4908d4c399c0cc163756fe3d2...347124221209cb397849a23ce3c48178b9815569","Len":9}', 1679573086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (557, 4, 18, 4, 32, 0, 0, 'refs/tags/cnb', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679573086); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (558, 1, 18, 4, 32, 0, 0, 'refs/tags/cnb', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679573087); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (559, 4, 19, 4, 32, 0, 0, 'refs/tags/cnb', 1, '', 1679573087); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (560, 1, 19, 4, 32, 0, 0, 'refs/tags/cnb', 1, '', 1679573087); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (561, 4, 18, 4, 32, 0, 0, 'refs/tags/gen', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679573087); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (562, 1, 18, 4, 32, 0, 0, 'refs/tags/gen', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679573087); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (563, 4, 19, 4, 32, 0, 0, 'refs/tags/gen', 1, '', 1679573087); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (564, 1, 19, 4, 32, 0, 0, 'refs/tags/gen', 1, '', 1679573087); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (565, 4, 18, 4, 32, 0, 0, 'refs/heads/sablona', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679576832); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (566, 1, 18, 4, 32, 0, 0, 'refs/heads/sablona', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679576833); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (567, 4, 19, 4, 32, 0, 0, 'refs/heads/sablona', 1, '', 1679576833); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (568, 1, 19, 4, 32, 0, 0, 'refs/heads/sablona', 1, '', 1679576833); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (569, 4, 20, 4, 32, 0, 0, 'sablona', 1, '', 1679585736); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (570, 1, 20, 4, 32, 0, 0, 'sablona', 1, '', 1679585736); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (571, 4, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"31fe0769bd753202f60ecaeb70b58524fcbd913f","Message":"Merge branch ''shrink''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:33:03+01:00"},{"Sha1":"008ed7fa8a7eab5c6530ceaca18cc6f2f06d1685","Message":"shrink\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:30:42+01:00"},{"Sha1":"b19af0fbfa05e58c55d411816c4579b6356707ac","Message":"Merge branch ''sablona''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:10:47+01:00"},{"Sha1":"807134ede8713e03a05319009604f1cda5f18c45","Message":"template system\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T14:05:24+01:00"}],"HeadCommit":{"Sha1":"31fe0769bd753202f60ecaeb70b58524fcbd913f","Message":"Merge branch ''shrink''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:33:03+01:00"},"CompareURL":"skj/sed/compare/347124221209cb397849a23ce3c48178b9815569...31fe0769bd753202f60ecaeb70b58524fcbd913f","Len":4}', 1679585736); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (572, 1, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"31fe0769bd753202f60ecaeb70b58524fcbd913f","Message":"Merge branch ''shrink''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:33:03+01:00"},{"Sha1":"008ed7fa8a7eab5c6530ceaca18cc6f2f06d1685","Message":"shrink\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:30:42+01:00"},{"Sha1":"b19af0fbfa05e58c55d411816c4579b6356707ac","Message":"Merge branch ''sablona''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:10:47+01:00"},{"Sha1":"807134ede8713e03a05319009604f1cda5f18c45","Message":"template system\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T14:05:24+01:00"}],"HeadCommit":{"Sha1":"31fe0769bd753202f60ecaeb70b58524fcbd913f","Message":"Merge branch ''shrink''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-23T16:33:03+01:00"},"CompareURL":"skj/sed/compare/347124221209cb397849a23ce3c48178b9815569...31fe0769bd753202f60ecaeb70b58524fcbd913f","Len":4}', 1679585736); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (573, 4, 18, 4, 32, 0, 0, 'refs/tags/sablona', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (574, 1, 18, 4, 32, 0, 0, 'refs/tags/sablona', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (575, 4, 19, 4, 32, 0, 0, 'refs/tags/sablona', 1, '', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (576, 1, 19, 4, 32, 0, 0, 'refs/tags/sablona', 1, '', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (577, 4, 18, 4, 32, 0, 0, 'refs/tags/shrink', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (578, 1, 18, 4, 32, 0, 0, 'refs/tags/shrink', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (579, 4, 19, 4, 32, 0, 0, 'refs/tags/shrink', 1, '', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (580, 1, 19, 4, 32, 0, 0, 'refs/tags/shrink', 1, '', 1679585737); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (581, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '', 1679754816); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (582, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"1b219d9ecde6d27316b029cd8c5d98e42b9cd6df","Message":"pt03: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-25T15:33:07+01:00"}],"HeadCommit":{"Sha1":"1b219d9ecde6d27316b029cd8c5d98e42b9cd6df","Message":"pt03: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-25T15:33:07+01:00"},"CompareURL":"prokop/BI-PA2/compare/0e5949e2490b37be193eb3557dacea8191fbbe5b...1b219d9ecde6d27316b029cd8c5d98e42b9cd6df","Len":1}', 1679754816); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (583, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"977c3d63bb277f794356c4d3f2d3551d971a71bd","Message":"openttd change version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-25T16:20:51+01:00"}],"HeadCommit":{"Sha1":"977c3d63bb277f794356c4d3f2d3551d971a71bd","Message":"openttd change version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-25T16:20:51+01:00"},"CompareURL":"h21/HoralServer-web/compare/f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5...977c3d63bb277f794356c4d3f2d3551d971a71bd","Len":1}', 1679757672); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (584, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"977c3d63bb277f794356c4d3f2d3551d971a71bd","Message":"openttd change version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-25T16:20:51+01:00"}],"HeadCommit":{"Sha1":"977c3d63bb277f794356c4d3f2d3551d971a71bd","Message":"openttd change version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-25T16:20:51+01:00"},"CompareURL":"h21/HoralServer-web/compare/f585a4716e2186ee1c9bf3b4f37d1ccccf1eafe5...977c3d63bb277f794356c4d3f2d3551d971a71bd","Len":1}', 1679757672); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (585, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"15e9b399ed1060673fcb904ee9ae35c6ad3c7fa4","Message":"pt03: rada, basic\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-26T12:15:46+02:00"}],"HeadCommit":{"Sha1":"15e9b399ed1060673fcb904ee9ae35c6ad3c7fa4","Message":"pt03: rada, basic\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-26T12:15:46+02:00"},"CompareURL":"prokop/BI-PA2/compare/1b219d9ecde6d27316b029cd8c5d98e42b9cd6df...15e9b399ed1060673fcb904ee9ae35c6ad3c7fa4","Len":1}', 1679828846); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (586, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"791460e6d6a881080f62f62a5005ac7286d320a7","Message":"pt03: add plus\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-27T22:29:21+02:00"}],"HeadCommit":{"Sha1":"791460e6d6a881080f62f62a5005ac7286d320a7","Message":"pt03: add plus\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-27T22:29:21+02:00"},"CompareURL":"prokop/BI-PA2/compare/15e9b399ed1060673fcb904ee9ae35c6ad3c7fa4...791460e6d6a881080f62f62a5005ac7286d320a7","Len":1}', 1679949023); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (587, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"df3d07cc04c33d7e18f52901fe968894905b3f1d","Message":"pt03: cviko, dodelat\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-29T17:11:22+02:00"}],"HeadCommit":{"Sha1":"df3d07cc04c33d7e18f52901fe968894905b3f1d","Message":"pt03: cviko, dodelat\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-29T17:11:22+02:00"},"CompareURL":"prokop/BI-PA2/compare/791460e6d6a881080f62f62a5005ac7286d320a7...df3d07cc04c33d7e18f52901fe968894905b3f1d","Len":1}', 1680102697); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (588, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"b0996bea64cf22aad67c21201b3a162eaff37a57","Message":"pt02: myslem jsem, ale nic\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T11:01:40+02:00"},{"Sha1":"0985bb64c0610bf899680e55eb5bec320bbfe3a6","Message":"pt02: plus\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T10:22:16+02:00"}],"HeadCommit":{"Sha1":"b0996bea64cf22aad67c21201b3a162eaff37a57","Message":"pt02: myslem jsem, ale nic\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T11:01:40+02:00"},"CompareURL":"prokop/BI-PA2/compare/df3d07cc04c33d7e18f52901fe968894905b3f1d...b0996bea64cf22aad67c21201b3a162eaff37a57","Len":2}', 1680166911); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (589, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"ba22810915e77cc1319cfdad719fd1d1ec794bb1","Message":"pt02: better erase\n\nTODO: cmp\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T11:43:55+02:00"}],"HeadCommit":{"Sha1":"ba22810915e77cc1319cfdad719fd1d1ec794bb1","Message":"pt02: better erase\n\nTODO: cmp\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T11:43:55+02:00"},"CompareURL":"prokop/BI-PA2/compare/b0996bea64cf22aad67c21201b3a162eaff37a57...ba22810915e77cc1319cfdad719fd1d1ec794bb1","Len":1}', 1680169445); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (591, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"9d10398999cf75e79a242a2e894adb6127ae5280","Message":"pt02: skoro mezni hodnoty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:09:16+02:00"},{"Sha1":"0cd27bb1311d08ad4559a06a58114e3037d36612","Message":"pt02: asserts go\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T16:44:34+02:00"}],"HeadCommit":{"Sha1":"9d10398999cf75e79a242a2e894adb6127ae5280","Message":"pt02: skoro mezni hodnoty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:09:16+02:00"},"CompareURL":"prokop/BI-PA2/compare/ba22810915e77cc1319cfdad719fd1d1ec794bb1...9d10398999cf75e79a242a2e894adb6127ae5280","Len":2}', 1680188966); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (592, 4, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445","Message":"issue: spravny vystup get_courses.sed\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T17:47:26+02:00"}],"HeadCommit":{"Sha1":"c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445","Message":"issue: spravny vystup get_courses.sed\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T17:47:26+02:00"},"CompareURL":"skj/sed/compare/31fe0769bd753202f60ecaeb70b58524fcbd913f...c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445","Len":1}', 1680192044); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (593, 1, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445","Message":"issue: spravny vystup get_courses.sed\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T17:47:26+02:00"}],"HeadCommit":{"Sha1":"c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445","Message":"issue: spravny vystup get_courses.sed\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T17:47:26+02:00"},"CompareURL":"skj/sed/compare/31fe0769bd753202f60ecaeb70b58524fcbd913f...c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445","Len":1}', 1680192044); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (594, 4, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"c7a7bb0127b131f994e98bf3f4131e27e88e60f8","Message":"issue: lepsi parsovani jmena\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:32:25+02:00"},{"Sha1":"a63342b42bd9188dd7c425307682efdb9d4a7295","Message":"issue zpracovani vsech argumentu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:18:08+02:00"}],"HeadCommit":{"Sha1":"c7a7bb0127b131f994e98bf3f4131e27e88e60f8","Message":"issue: lepsi parsovani jmena\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:32:25+02:00"},"CompareURL":"skj/bash/compare/e23d97c711b2759440425295ff38c78cced266d4...c7a7bb0127b131f994e98bf3f4131e27e88e60f8","Len":2}', 1680192050); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (595, 1, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"c7a7bb0127b131f994e98bf3f4131e27e88e60f8","Message":"issue: lepsi parsovani jmena\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:32:25+02:00"},{"Sha1":"a63342b42bd9188dd7c425307682efdb9d4a7295","Message":"issue zpracovani vsech argumentu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:18:08+02:00"}],"HeadCommit":{"Sha1":"c7a7bb0127b131f994e98bf3f4131e27e88e60f8","Message":"issue: lepsi parsovani jmena\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:32:25+02:00"},"CompareURL":"skj/bash/compare/e23d97c711b2759440425295ff38c78cced266d4...c7a7bb0127b131f994e98bf3f4131e27e88e60f8","Len":2}', 1680192050); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (596, 4, 18, 4, 33, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc","Message":"Merge branch ''power''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T19:00:37+02:00"},{"Sha1":"222b4bd215a82493a845e81530efb8b64d229c97","Message":"power: parse\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T18:59:31+02:00"}],"HeadCommit":{"Sha1":"74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc","Message":"Merge branch ''power''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T19:00:37+02:00"},"CompareURL":"skj/awk/compare/96b246ec4f0de8f15671190be3f92b7a40ece5f1...74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc","Len":2}', 1680196122); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (597, 1, 18, 4, 33, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc","Message":"Merge branch ''power''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T19:00:37+02:00"},{"Sha1":"222b4bd215a82493a845e81530efb8b64d229c97","Message":"power: parse\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T18:59:31+02:00"}],"HeadCommit":{"Sha1":"74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc","Message":"Merge branch ''power''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T19:00:37+02:00"},"CompareURL":"skj/awk/compare/96b246ec4f0de8f15671190be3f92b7a40ece5f1...74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc","Len":2}', 1680196122); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (598, 4, 18, 4, 33, 0, 0, 'refs/tags/power', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680196122); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (599, 1, 18, 4, 33, 0, 0, 'refs/tags/power', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680196122); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (600, 4, 19, 4, 33, 0, 0, 'refs/tags/power', 1, '', 1680196123); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (601, 1, 19, 4, 33, 0, 0, 'refs/tags/power', 1, '', 1680196123); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (602, 4, 18, 4, 33, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"2a32cdf8f1e722dff847dee77112c972ca914e6c","Message":"Merge branch ''apache''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:27:28+02:00"},{"Sha1":"f1d71d53bde3e90a4739a49c325874998a4b564b","Message":"apache: parse log\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:26:06+02:00"},{"Sha1":"63b99e59f66bcf1b16d1ba9ba467c98eb6fd4217","Message":"change assignment back\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:05:11+02:00"},{"Sha1":"5a4cc74ee5cdbc40fc914682a51d2ade0513a238","Message":"Merge branch ''students''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T20:59:53+02:00"},{"Sha1":"cc6817b1a8d18ec7149f98f05f4336cf00f7a4ce","Message":"students: try -\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T20:58:52+02:00"}],"HeadCommit":{"Sha1":"2a32cdf8f1e722dff847dee77112c972ca914e6c","Message":"Merge branch ''apache''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:27:28+02:00"},"CompareURL":"skj/awk/compare/74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc...2a32cdf8f1e722dff847dee77112c972ca914e6c","Len":9}', 1680204511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (603, 1, 18, 4, 33, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"2a32cdf8f1e722dff847dee77112c972ca914e6c","Message":"Merge branch ''apache''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:27:28+02:00"},{"Sha1":"f1d71d53bde3e90a4739a49c325874998a4b564b","Message":"apache: parse log\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:26:06+02:00"},{"Sha1":"63b99e59f66bcf1b16d1ba9ba467c98eb6fd4217","Message":"change assignment back\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:05:11+02:00"},{"Sha1":"5a4cc74ee5cdbc40fc914682a51d2ade0513a238","Message":"Merge branch ''students''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T20:59:53+02:00"},{"Sha1":"cc6817b1a8d18ec7149f98f05f4336cf00f7a4ce","Message":"students: try -\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T20:58:52+02:00"}],"HeadCommit":{"Sha1":"2a32cdf8f1e722dff847dee77112c972ca914e6c","Message":"Merge branch ''apache''\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-03-30T21:27:28+02:00"},"CompareURL":"skj/awk/compare/74fc29afe7ae437e43d8bf4cf45d7c44d9bda1cc...2a32cdf8f1e722dff847dee77112c972ca914e6c","Len":9}', 1680204511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (604, 4, 18, 4, 33, 0, 0, 'refs/pipelines/8184', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680204511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (605, 1, 18, 4, 33, 0, 0, 'refs/pipelines/8184', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680204511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (606, 4, 19, 4, 33, 0, 0, 'refs/pipelines/8184', 1, '', 1680204511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (607, 1, 19, 4, 33, 0, 0, 'refs/pipelines/8184', 1, '', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (608, 4, 18, 4, 33, 0, 0, 'refs/tags/apache', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (609, 1, 18, 4, 33, 0, 0, 'refs/tags/apache', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (610, 4, 19, 4, 33, 0, 0, 'refs/tags/apache', 1, '', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (611, 1, 19, 4, 33, 0, 0, 'refs/tags/apache', 1, '', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (612, 4, 18, 4, 33, 0, 0, 'refs/tags/students', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (613, 1, 18, 4, 33, 0, 0, 'refs/tags/students', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (614, 4, 19, 4, 33, 0, 0, 'refs/tags/students', 1, '', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (615, 1, 19, 4, 33, 0, 0, 'refs/tags/students', 1, '', 1680204512); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (616, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"1a74b9e5aef151d80d4920fd7dbb2e97f7808754","Message":"pt03: add bonus headers\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T22:45:19+02:00"},{"Sha1":"2ee87b99f22f487aa07b127125abac7d4e923b62","Message":"pt03: skoro mezni hodnoty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T17:09:16+02:00"},{"Sha1":"5fab488b965b9f3123ce55cb0f901ea47aacccd7","Message":"pt03: asserts go\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T16:44:34+02:00"},{"Sha1":"d26caaf7b0aa0414e9e1dee62a7b57b50c86b706","Message":"pt03: better erase\n\nTODO: cmp\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T11:43:55+02:00"},{"Sha1":"5b440b5b62ed7496492b3d1ed4ef8b66f858a84d","Message":"pt03: myslem jsem, ale nic\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T11:01:40+02:00"}],"HeadCommit":{"Sha1":"1a74b9e5aef151d80d4920fd7dbb2e97f7808754","Message":"pt03: add bonus headers\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-30T22:45:19+02:00"},"CompareURL":"prokop/BI-PA2/compare/9d10398999cf75e79a242a2e894adb6127ae5280...1a74b9e5aef151d80d4920fd7dbb2e97f7808754","Len":6}', 1680209250); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (617, 4, 20, 4, 33, 0, 0, 'refs/pipelines/8184', 1, '', 1680233408); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (618, 1, 20, 4, 33, 0, 0, 'refs/pipelines/8184', 1, '', 1680233408); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (619, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"9361b3cdc1383246b3c7d462d4dc90970619c464","Message":"pt03: autobus, cout\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T08:04:49+02:00"}],"HeadCommit":{"Sha1":"9361b3cdc1383246b3c7d462d4dc90970619c464","Message":"pt03: autobus, cout\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T08:04:49+02:00"},"CompareURL":"prokop/BI-PA2/compare/1a74b9e5aef151d80d4920fd7dbb2e97f7808754...9361b3cdc1383246b3c7d462d4dc90970619c464","Len":1}', 1680242708); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (620, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"d7e5232e7e4f31a095390c08b36637d3a037119c","Message":"pt03: set flags correctly\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T08:52:11+02:00"}],"HeadCommit":{"Sha1":"d7e5232e7e4f31a095390c08b36637d3a037119c","Message":"pt03: set flags correctly\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T08:52:11+02:00"},"CompareURL":"prokop/BI-PA2/compare/9361b3cdc1383246b3c7d462d4dc90970619c464...d7e5232e7e4f31a095390c08b36637d3a037119c","Len":1}', 1680245541); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (621, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"29fd5388b180a66dfa4c42add543e8842b278672","Message":"pt03: try faster includes, NO\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T08:58:13+02:00"}],"HeadCommit":{"Sha1":"29fd5388b180a66dfa4c42add543e8842b278672","Message":"pt03: try faster includes, NO\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T08:58:13+02:00"},"CompareURL":"prokop/BI-PA2/compare/d7e5232e7e4f31a095390c08b36637d3a037119c...29fd5388b180a66dfa4c42add543e8842b278672","Len":1}', 1680245902); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (622, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03', 1, '{"Commits":[{"Sha1":"caadf8f1f51b6135a3adc1f7f232c9d767c9379e","Message":"pt03: try faster -, NO\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T16:22:01+02:00"}],"HeadCommit":{"Sha1":"caadf8f1f51b6135a3adc1f7f232c9d767c9379e","Message":"pt03: try faster -, NO\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T16:22:01+02:00"},"CompareURL":"prokop/BI-PA2/compare/29fd5388b180a66dfa4c42add543e8842b278672...caadf8f1f51b6135a3adc1f7f232c9d767c9379e","Len":1}', 1680272547); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (623, 4, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"a8d20eb7d1ead288fdda5ec82c12587ec365e80a","Message":"max_item: add support for negative numbers\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T11:29:55+02:00"}],"HeadCommit":{"Sha1":"a8d20eb7d1ead288fdda5ec82c12587ec365e80a","Message":"max_item: add support for negative numbers\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T11:29:55+02:00"},"CompareURL":"skj/bash/compare/c7a7bb0127b131f994e98bf3f4131e27e88e60f8...a8d20eb7d1ead288fdda5ec82c12587ec365e80a","Len":1}', 1680280209); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (624, 1, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"a8d20eb7d1ead288fdda5ec82c12587ec365e80a","Message":"max_item: add support for negative numbers\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T11:29:55+02:00"}],"HeadCommit":{"Sha1":"a8d20eb7d1ead288fdda5ec82c12587ec365e80a","Message":"max_item: add support for negative numbers\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T11:29:55+02:00"},"CompareURL":"skj/bash/compare/c7a7bb0127b131f994e98bf3f4131e27e88e60f8...a8d20eb7d1ead288fdda5ec82c12587ec365e80a","Len":1}', 1680280209); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (629, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt06', 1, '', 1680368535); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (630, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt06', 1, '{"Commits":[{"Sha1":"400195d881e1a407daffac78d90a9ab9670ce730","Message":"mpt06: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T19:01:54+02:00"}],"HeadCommit":{"Sha1":"400195d881e1a407daffac78d90a9ab9670ce730","Message":"mpt06: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T19:01:54+02:00"},"CompareURL":"prokop/BI-PA2/compare/0e5949e2490b37be193eb3557dacea8191fbbe5b...400195d881e1a407daffac78d90a9ab9670ce730","Len":1}', 1680368535); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (631, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt06', 1, '{"Commits":[{"Sha1":"c21c8929fe94e95fb7762f2ac66f2f0588c261f8","Message":"mpt06: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:42:05+02:00"}],"HeadCommit":{"Sha1":"c21c8929fe94e95fb7762f2ac66f2f0588c261f8","Message":"mpt06: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:42:05+02:00"},"CompareURL":"prokop/BI-PA2/compare/400195d881e1a407daffac78d90a9ab9670ce730...c21c8929fe94e95fb7762f2ac66f2f0588c261f8","Len":1}', 1680374540); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (632, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"de022f77de8affea98f71dd7184741f75e3a705d","Message":"Merge branch ''mpt06''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:42:38+02:00"},{"Sha1":"c21c8929fe94e95fb7762f2ac66f2f0588c261f8","Message":"mpt06: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:42:05+02:00"},{"Sha1":"400195d881e1a407daffac78d90a9ab9670ce730","Message":"mpt06: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T19:01:54+02:00"}],"HeadCommit":{"Sha1":"de022f77de8affea98f71dd7184741f75e3a705d","Message":"Merge branch ''mpt06''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:42:38+02:00"},"CompareURL":"prokop/BI-PA2/compare/0e5949e2490b37be193eb3557dacea8191fbbe5b...de022f77de8affea98f71dd7184741f75e3a705d","Len":3}', 1680374588); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (633, 1, 17, 1, 28, 0, 0, 'refs/heads/mpt06', 1, '', 1680374597); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (634, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt06', 1, '{"Commits":null,"HeadCommit":{"Sha1":"c21c8929fe94e95fb7762f2ac66f2f0588c261f8","Message":"mpt06: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:42:05+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...c21c8929fe94e95fb7762f2ac66f2f0588c261f8","Len":0}', 1680374607); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (635, 1, 9, 1, 28, 0, 0, 'refs/tags/pt03-max', 1, '{"Commits":null,"HeadCommit":{"Sha1":"29fd5388b180a66dfa4c42add543e8842b278672","Message":"pt03: try faster includes, NO\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-03-31T08:58:13+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...29fd5388b180a66dfa4c42add543e8842b278672","Len":0}', 1680374607); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (636, 1, 5, 1, 28, 0, 0, 'refs/heads/pt04', 1, '', 1680374768); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (637, 1, 5, 1, 28, 0, 0, 'refs/heads/pt04', 1, '{"Commits":[{"Sha1":"3c6090d07c94ed262f9b2d08cd99d41ca336ef72","Message":"pt04: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:45:50+02:00"}],"HeadCommit":{"Sha1":"3c6090d07c94ed262f9b2d08cd99d41ca336ef72","Message":"pt04: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-01T20:45:50+02:00"},"CompareURL":"prokop/BI-PA2/compare/de022f77de8affea98f71dd7184741f75e3a705d...3c6090d07c94ed262f9b2d08cd99d41ca336ef72","Len":1}', 1680374768); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (640, 1, 5, 1, 28, 0, 0, 'refs/heads/pt04', 1, '{"Commits":[{"Sha1":"c45abf27dd4a938d93b5ef4451cea7181ff052f8","Message":"pt04: konstruktory, pomocne tridy a tak\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T13:05:37+02:00"}],"HeadCommit":{"Sha1":"c45abf27dd4a938d93b5ef4451cea7181ff052f8","Message":"pt04: konstruktory, pomocne tridy a tak\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T13:05:37+02:00"},"CompareURL":"prokop/BI-PA2/compare/3c6090d07c94ed262f9b2d08cd99d41ca336ef72...c45abf27dd4a938d93b5ef4451cea7181ff052f8","Len":1}', 1680433562); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (641, 1, 5, 1, 28, 0, 0, 'refs/heads/pt04', 1, '{"Commits":[{"Sha1":"2d89076c620e2a392f9e52a4d5da98dd3f29e93e","Message":"pt04: done implementing\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T15:41:31+02:00"}],"HeadCommit":{"Sha1":"2d89076c620e2a392f9e52a4d5da98dd3f29e93e","Message":"pt04: done implementing\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T15:41:31+02:00"},"CompareURL":"prokop/BI-PA2/compare/c45abf27dd4a938d93b5ef4451cea7181ff052f8...2d89076c620e2a392f9e52a4d5da98dd3f29e93e","Len":1}', 1680442901); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (642, 1, 5, 1, 28, 0, 0, 'refs/heads/pt04', 1, '{"Commits":[{"Sha1":"f8ab08942be3afeb4e56465aff467ed5a66c1b1f","Message":"pt04: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T16:47:36+02:00"}],"HeadCommit":{"Sha1":"f8ab08942be3afeb4e56465aff467ed5a66c1b1f","Message":"pt04: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T16:47:36+02:00"},"CompareURL":"prokop/BI-PA2/compare/2d89076c620e2a392f9e52a4d5da98dd3f29e93e...f8ab08942be3afeb4e56465aff467ed5a66c1b1f","Len":1}', 1680446996); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (643, 1, 9, 1, 28, 0, 0, 'refs/tags/pt04-zaklad', 1, '{"Commits":null,"HeadCommit":{"Sha1":"f8ab08942be3afeb4e56465aff467ed5a66c1b1f","Message":"pt04: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T16:47:36+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...f8ab08942be3afeb4e56465aff467ed5a66c1b1f","Len":0}', 1680447004); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (644, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03-limits', 1, '', 1680450077); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (645, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03-limits', 1, '{"Commits":[{"Sha1":"1f65c54294cb377a816da9a9348485925872472a","Message":"pt03: limits\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T17:40:55+02:00"}],"HeadCommit":{"Sha1":"1f65c54294cb377a816da9a9348485925872472a","Message":"pt03: limits\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-02T17:40:55+02:00"},"CompareURL":"prokop/BI-PA2/compare/29fd5388b180a66dfa4c42add543e8842b278672...1f65c54294cb377a816da9a9348485925872472a","Len":1}', 1680450078); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (646, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03-limits', 1, '{"Commits":[{"Sha1":"2aed116e6db0c00551a66089558828932fed439c","Message":"pt03: limits 2, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T20:03:20+02:00"}],"HeadCommit":{"Sha1":"2aed116e6db0c00551a66089558828932fed439c","Message":"pt03: limits 2, NE\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T20:03:20+02:00"},"CompareURL":"prokop/BI-PA2/compare/1f65c54294cb377a816da9a9348485925872472a...2aed116e6db0c00551a66089558828932fed439c","Len":1}', 1680545031); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (647, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03-limits', 1, '{"Commits":[{"Sha1":"ee63a1e2455e21746b671082497420dd8ce08d78","Message":"pt03: limits 3, NO\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T20:41:27+02:00"}],"HeadCommit":{"Sha1":"ee63a1e2455e21746b671082497420dd8ce08d78","Message":"pt03: limits 3, NO\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T20:41:27+02:00"},"CompareURL":"prokop/BI-PA2/compare/2aed116e6db0c00551a66089558828932fed439c...ee63a1e2455e21746b671082497420dd8ce08d78","Len":1}', 1680547313); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (648, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt07', 1, '', 1680547727); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (649, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt07', 1, '{"Commits":[{"Sha1":"96109412d164630f8e089aef7afe453193d324a8","Message":"mpt07: add previous solution\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T20:48:12+02:00"}],"HeadCommit":{"Sha1":"96109412d164630f8e089aef7afe453193d324a8","Message":"mpt07: add previous solution\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T20:48:12+02:00"},"CompareURL":"prokop/BI-PA2/compare/de022f77de8affea98f71dd7184741f75e3a705d...96109412d164630f8e089aef7afe453193d324a8","Len":1}', 1680547727); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (650, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt07', 1, '{"Commits":[{"Sha1":"c3c0dffd5de3eb536b769f60d25d64e3d053f045","Message":"mpt07: too slow\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T21:47:10+02:00"}],"HeadCommit":{"Sha1":"c3c0dffd5de3eb536b769f60d25d64e3d053f045","Message":"mpt07: too slow\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T21:47:10+02:00"},"CompareURL":"prokop/BI-PA2/compare/96109412d164630f8e089aef7afe453193d324a8...c3c0dffd5de3eb536b769f60d25d64e3d053f045","Len":1}', 1680551252); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (651, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt07', 1, '{"Commits":[{"Sha1":"563dbcf32011932b6bfcfd8da7f2f9ef9dd7e236","Message":"mpt07: fast but wrong\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T23:26:57+02:00"}],"HeadCommit":{"Sha1":"563dbcf32011932b6bfcfd8da7f2f9ef9dd7e236","Message":"mpt07: fast but wrong\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T23:26:57+02:00"},"CompareURL":"prokop/BI-PA2/compare/c3c0dffd5de3eb536b769f60d25d64e3d053f045...563dbcf32011932b6bfcfd8da7f2f9ef9dd7e236","Len":1}', 1680557236); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (652, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt07', 1, '{"Commits":[{"Sha1":"7f4dd3cff9a6d28d5f2993e157df6afd00d76957","Message":"mpt07: check empty contacts\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-04T22:56:37+02:00"}],"HeadCommit":{"Sha1":"7f4dd3cff9a6d28d5f2993e157df6afd00d76957","Message":"mpt07: check empty contacts\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-04T22:56:37+02:00"},"CompareURL":"prokop/BI-PA2/compare/563dbcf32011932b6bfcfd8da7f2f9ef9dd7e236...7f4dd3cff9a6d28d5f2993e157df6afd00d76957","Len":1}', 1680641839); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (653, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"9ba9593ddbc8892f0799128f4639c67b87334e58","Message":"Merge branch ''mpt07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-04T22:57:33+02:00"},{"Sha1":"7f4dd3cff9a6d28d5f2993e157df6afd00d76957","Message":"mpt07: check empty contacts\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-04T22:56:37+02:00"},{"Sha1":"563dbcf32011932b6bfcfd8da7f2f9ef9dd7e236","Message":"mpt07: fast but wrong\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T23:26:57+02:00"},{"Sha1":"c3c0dffd5de3eb536b769f60d25d64e3d053f045","Message":"mpt07: too slow\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T21:47:10+02:00"},{"Sha1":"96109412d164630f8e089aef7afe453193d324a8","Message":"mpt07: add previous solution\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-03T20:48:12+02:00"}],"HeadCommit":{"Sha1":"9ba9593ddbc8892f0799128f4639c67b87334e58","Message":"Merge branch ''mpt07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-04T22:57:33+02:00"},"CompareURL":"prokop/BI-PA2/compare/de022f77de8affea98f71dd7184741f75e3a705d...9ba9593ddbc8892f0799128f4639c67b87334e58","Len":5}', 1680641886); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (654, 1, 17, 1, 28, 0, 0, 'refs/heads/mpt07', 1, '', 1680641894); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (655, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt07', 1, '{"Commits":null,"HeadCommit":{"Sha1":"7f4dd3cff9a6d28d5f2993e157df6afd00d76957","Message":"mpt07: check empty contacts\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-04T22:56:37+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...7f4dd3cff9a6d28d5f2993e157df6afd00d76957","Len":0}', 1680641905); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (656, 1, 5, 1, 28, 0, 0, 'refs/heads/pt03-limits', 1, '{"Commits":[{"Sha1":"93b8bfe0070e6b9c13911fe9cc0e953a0bd77a90","Message":"pt03: cviko snaha, skoro\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-05T17:44:12+02:00"}],"HeadCommit":{"Sha1":"93b8bfe0070e6b9c13911fe9cc0e953a0bd77a90","Message":"pt03: cviko snaha, skoro\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-05T17:44:12+02:00"},"CompareURL":"prokop/BI-PA2/compare/ee63a1e2455e21746b671082497420dd8ce08d78...93b8bfe0070e6b9c13911fe9cc0e953a0bd77a90","Len":1}', 1680709482); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (657, 1, 5, 1, 28, 0, 0, 'refs/heads/pt05', 1, '', 1681247454); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (658, 1, 5, 1, 28, 0, 0, 'refs/heads/pt05', 1, '{"Commits":[{"Sha1":"43b611c779c07c3ae900e8d0adcc0beae4aa169c","Message":"pt05: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-11T23:10:37+02:00"}],"HeadCommit":{"Sha1":"43b611c779c07c3ae900e8d0adcc0beae4aa169c","Message":"pt05: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-11T23:10:37+02:00"},"CompareURL":"prokop/BI-PA2/compare/9ba9593ddbc8892f0799128f4639c67b87334e58...43b611c779c07c3ae900e8d0adcc0beae4aa169c","Len":1}', 1681247454); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (659, 1, 5, 1, 28, 0, 0, 'refs/heads/pt05', 1, '{"Commits":[{"Sha1":"f193b070f6b312dc3fd728919cd544c920dcbe05","Message":"pt05: canonName, inovice structure\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T14:04:37+02:00"}],"HeadCommit":{"Sha1":"f193b070f6b312dc3fd728919cd544c920dcbe05","Message":"pt05: canonName, inovice structure\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T14:04:37+02:00"},"CompareURL":"prokop/BI-PA2/compare/43b611c779c07c3ae900e8d0adcc0beae4aa169c...f193b070f6b312dc3fd728919cd544c920dcbe05","Len":1}', 1681387506); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (660, 1, 5, 1, 28, 0, 0, 'refs/heads/pt05', 1, '{"Commits":[{"Sha1":"f3f6b8fd034c54b4939f76bdb8ceb90e92c10e9c","Message":"pt05: dopsan zaklad, snad\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T19:37:46+02:00"}],"HeadCommit":{"Sha1":"f3f6b8fd034c54b4939f76bdb8ceb90e92c10e9c","Message":"pt05: dopsan zaklad, snad\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T19:37:46+02:00"},"CompareURL":"prokop/BI-PA2/compare/f193b070f6b312dc3fd728919cd544c920dcbe05...f3f6b8fd034c54b4939f76bdb8ceb90e92c10e9c","Len":1}', 1681407481); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (661, 1, 5, 1, 28, 0, 0, 'refs/heads/pt05', 1, '{"Commits":[{"Sha1":"86b49ddefa9e163d7111a4c172ff28faad55ede8","Message":"pt05: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:34:59+02:00"}],"HeadCommit":{"Sha1":"86b49ddefa9e163d7111a4c172ff28faad55ede8","Message":"pt05: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:34:59+02:00"},"CompareURL":"prokop/BI-PA2/compare/f3f6b8fd034c54b4939f76bdb8ceb90e92c10e9c...86b49ddefa9e163d7111a4c172ff28faad55ede8","Len":1}', 1681418115); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (662, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"96f60f15a4b66d8f1bf8b2901d08aa5d7ec3e1cf","Message":"Merge branch ''pt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:45:53+02:00"},{"Sha1":"5c8d992d9766ac4a50564583a4147af75c665df4","Message":"pt05: doladeni deletu, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:45:21+02:00"},{"Sha1":"126ee8fa42271d434ae737f5c2e56f7f4ce3f6c5","Message":"pt05: oprava delAccepted\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:40:53+02:00"},{"Sha1":"86b49ddefa9e163d7111a4c172ff28faad55ede8","Message":"pt05: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:34:59+02:00"},{"Sha1":"f3f6b8fd034c54b4939f76bdb8ceb90e92c10e9c","Message":"pt05: dopsan zaklad, snad\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T19:37:46+02:00"}],"HeadCommit":{"Sha1":"96f60f15a4b66d8f1bf8b2901d08aa5d7ec3e1cf","Message":"Merge branch ''pt05''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:45:53+02:00"},"CompareURL":"prokop/BI-PA2/compare/9ba9593ddbc8892f0799128f4639c67b87334e58...96f60f15a4b66d8f1bf8b2901d08aa5d7ec3e1cf","Len":7}', 1681418808); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (663, 1, 17, 1, 28, 0, 0, 'refs/heads/pt05', 1, '', 1681418830); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (664, 1, 9, 1, 28, 0, 0, 'refs/tags/pt05', 1, '{"Commits":null,"HeadCommit":{"Sha1":"5c8d992d9766ac4a50564583a4147af75c665df4","Message":"pt05: doladeni deletu, mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:45:21+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...5c8d992d9766ac4a50564583a4147af75c665df4","Len":0}', 1681418840); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (665, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '', 1681418993); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (666, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '{"Commits":[{"Sha1":"488c0a33655e9732fdf202ea5704787e599d35dd","Message":"mpt08: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:49:34+02:00"}],"HeadCommit":{"Sha1":"488c0a33655e9732fdf202ea5704787e599d35dd","Message":"mpt08: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-13T22:49:34+02:00"},"CompareURL":"prokop/BI-PA2/compare/96f60f15a4b66d8f1bf8b2901d08aa5d7ec3e1cf...488c0a33655e9732fdf202ea5704787e599d35dd","Len":1}', 1681418993); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (667, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '{"Commits":[{"Sha1":"460fdb85bf111d89586fd1d33e2727c4cfd5ee97","Message":"mpt08: vse, problem s polymorfismem, autobus\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T08:09:16+02:00"}],"HeadCommit":{"Sha1":"460fdb85bf111d89586fd1d33e2727c4cfd5ee97","Message":"mpt08: vse, problem s polymorfismem, autobus\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T08:09:16+02:00"},"CompareURL":"prokop/BI-PA2/compare/488c0a33655e9732fdf202ea5704787e599d35dd...460fdb85bf111d89586fd1d33e2727c4cfd5ee97","Len":1}', 1681452600); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (668, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '{"Commits":[{"Sha1":"30e476a4415f2e4270e927e28fe336cdfe1d76e6","Message":"mpt08: insert or assign + override create shared ptr\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T09:06:07+02:00"}],"HeadCommit":{"Sha1":"30e476a4415f2e4270e927e28fe336cdfe1d76e6","Message":"mpt08: insert or assign + override create shared ptr\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T09:06:07+02:00"},"CompareURL":"prokop/BI-PA2/compare/460fdb85bf111d89586fd1d33e2727c4cfd5ee97...30e476a4415f2e4270e927e28fe336cdfe1d76e6","Len":1}', 1681455994); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (669, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '{"Commits":[{"Sha1":"1d1e81039f82d7be47fb4268e98b433f86548735","Message":"mpt08: asserts ok, chyba pri kompilaci\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T09:18:46+02:00"}],"HeadCommit":{"Sha1":"1d1e81039f82d7be47fb4268e98b433f86548735","Message":"mpt08: asserts ok, chyba pri kompilaci\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T09:18:46+02:00"},"CompareURL":"prokop/BI-PA2/compare/30e476a4415f2e4270e927e28fe336cdfe1d76e6...1d1e81039f82d7be47fb4268e98b433f86548735","Len":1}', 1681456750); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (670, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '{"Commits":[{"Sha1":"3ab5c0b586083db741bd278655b78d37c644c379","Message":"mpt08: Change with delete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T14:44:47+02:00"}],"HeadCommit":{"Sha1":"3ab5c0b586083db741bd278655b78d37c644c379","Message":"mpt08: Change with delete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T14:44:47+02:00"},"CompareURL":"prokop/BI-PA2/compare/1d1e81039f82d7be47fb4268e98b433f86548735...3ab5c0b586083db741bd278655b78d37c644c379","Len":1}', 1681476310); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (671, 1, 5, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '{"Commits":[{"Sha1":"ed59b91b94b48e6606e8d5af12ebc127c901e5bf","Message":"mpt08: add operator=\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T15:03:51+02:00"}],"HeadCommit":{"Sha1":"ed59b91b94b48e6606e8d5af12ebc127c901e5bf","Message":"mpt08: add operator=\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T15:03:51+02:00"},"CompareURL":"prokop/BI-PA2/compare/3ab5c0b586083db741bd278655b78d37c644c379...ed59b91b94b48e6606e8d5af12ebc127c901e5bf","Len":1}', 1681477449); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (672, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"394130ff7f905b88040020fc6e54488155343c77","Message":"Merge branch ''mpt08''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T15:32:26+02:00"},{"Sha1":"ed59b91b94b48e6606e8d5af12ebc127c901e5bf","Message":"mpt08: add operator=\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T15:03:51+02:00"},{"Sha1":"3ab5c0b586083db741bd278655b78d37c644c379","Message":"mpt08: Change with delete\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T14:44:47+02:00"},{"Sha1":"1d1e81039f82d7be47fb4268e98b433f86548735","Message":"mpt08: asserts ok, chyba pri kompilaci\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T09:18:46+02:00"},{"Sha1":"30e476a4415f2e4270e927e28fe336cdfe1d76e6","Message":"mpt08: insert or assign + override create shared ptr\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T09:06:07+02:00"}],"HeadCommit":{"Sha1":"394130ff7f905b88040020fc6e54488155343c77","Message":"Merge branch ''mpt08''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T15:32:26+02:00"},"CompareURL":"prokop/BI-PA2/compare/96f60f15a4b66d8f1bf8b2901d08aa5d7ec3e1cf...394130ff7f905b88040020fc6e54488155343c77","Len":7}', 1681479175); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (673, 1, 17, 1, 28, 0, 0, 'refs/heads/mpt08', 1, '', 1681479187); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (674, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt08', 1, '{"Commits":null,"HeadCommit":{"Sha1":"ed59b91b94b48e6606e8d5af12ebc127c901e5bf","Message":"mpt08: add operator=\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T15:03:51+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...ed59b91b94b48e6606e8d5af12ebc127c901e5bf","Len":0}', 1681479196); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (675, 4, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f","Message":"nekam zmizelo M\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T11:23:23+02:00"}],"HeadCommit":{"Sha1":"ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f","Message":"nekam zmizelo M\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T11:23:23+02:00"},"CompareURL":"skj/sed/compare/c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445...ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f","Len":1}', 1681485229); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (676, 1, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f","Message":"nekam zmizelo M\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T11:23:23+02:00"}],"HeadCommit":{"Sha1":"ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f","Message":"nekam zmizelo M\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-14T11:23:23+02:00"},"CompareURL":"skj/sed/compare/c6bf2b1d2a3fb7dc6431ee4b9742ca206570b445...ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f","Len":1}', 1681485229); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (677, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '', 1681550597); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (678, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"12ee223fc47d579518e40b074d9b9af6a1c77bcb","Message":"pt06: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T11:22:57+02:00"}],"HeadCommit":{"Sha1":"12ee223fc47d579518e40b074d9b9af6a1c77bcb","Message":"pt06: start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T11:22:57+02:00"},"CompareURL":"prokop/BI-PA2/compare/394130ff7f905b88040020fc6e54488155343c77...12ee223fc47d579518e40b074d9b9af6a1c77bcb","Len":1}', 1681550598); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (679, 1, 9, 1, 28, 0, 0, 'refs/tags/pt06-1', 1, '{"Commits":null,"HeadCommit":{"Sha1":"168087c47fc3a7187feaccd8d2ed40086f5169df","Message":"pt06: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T14:03:44+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...168087c47fc3a7187feaccd8d2ed40086f5169df","Len":0}', 1681560322); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (680, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"168087c47fc3a7187feaccd8d2ed40086f5169df","Message":"pt06: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T14:03:44+02:00"}],"HeadCommit":{"Sha1":"168087c47fc3a7187feaccd8d2ed40086f5169df","Message":"pt06: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T14:03:44+02:00"},"CompareURL":"prokop/BI-PA2/compare/12ee223fc47d579518e40b074d9b9af6a1c77bcb...168087c47fc3a7187feaccd8d2ed40086f5169df","Len":1}', 1681560337); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (681, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"45003f51aef4d719907e912969792a996350c5d7","Message":"pt06: need vector for element storage\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T14:49:46+02:00"}],"HeadCommit":{"Sha1":"45003f51aef4d719907e912969792a996350c5d7","Message":"pt06: need vector for element storage\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T14:49:46+02:00"},"CompareURL":"prokop/BI-PA2/compare/168087c47fc3a7187feaccd8d2ed40086f5169df...45003f51aef4d719907e912969792a996350c5d7","Len":1}', 1681563014); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (682, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"961c31489a9440dcbb8d84ef439a655d45c7f2cb","Message":"pt06: add CContainer abstract class, asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T15:09:15+02:00"}],"HeadCommit":{"Sha1":"961c31489a9440dcbb8d84ef439a655d45c7f2cb","Message":"pt06: add CContainer abstract class, asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T15:09:15+02:00"},"CompareURL":"prokop/BI-PA2/compare/45003f51aef4d719907e912969792a996350c5d7...961c31489a9440dcbb8d84ef439a655d45c7f2cb","Len":1}', 1681564255); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (683, 1, 9, 1, 28, 0, 0, 'refs/tags/pt06-2', 1, '{"Commits":null,"HeadCommit":{"Sha1":"961c31489a9440dcbb8d84ef439a655d45c7f2cb","Message":"pt06: add CContainer abstract class, asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-15T15:09:15+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...961c31489a9440dcbb8d84ef439a655d45c7f2cb","Len":0}', 1681564262); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (685, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"a45498045ea6a018db3e56ec23c7c7f4a3d983c8","Message":"update JGR version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-16T18:40:05+02:00"}],"HeadCommit":{"Sha1":"a45498045ea6a018db3e56ec23c7c7f4a3d983c8","Message":"update JGR version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-16T18:40:05+02:00"},"CompareURL":"h21/HoralServer-web/compare/977c3d63bb277f794356c4d3f2d3551d971a71bd...a45498045ea6a018db3e56ec23c7c7f4a3d983c8","Len":1}', 1681663231); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (686, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"a45498045ea6a018db3e56ec23c7c7f4a3d983c8","Message":"update JGR version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-16T18:40:05+02:00"}],"HeadCommit":{"Sha1":"a45498045ea6a018db3e56ec23c7c7f4a3d983c8","Message":"update JGR version\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-16T18:40:05+02:00"},"CompareURL":"h21/HoralServer-web/compare/977c3d63bb277f794356c4d3f2d3551d971a71bd...a45498045ea6a018db3e56ec23c7c7f4a3d983c8","Len":1}', 1681663231); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (687, 1, 1, 1, 34, 0, 0, '', 1, '', 1681846141); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (688, 2, 1, 1, 34, 0, 0, '', 1, '', 1681846141); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (689, 1, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '', 1681846182); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (690, 2, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '', 1681846182); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (691, 1, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"1f741371672d1a34acc5d106ebdead90ab0bf6c1","Message":"bashrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T21:29:26+02:00"}],"HeadCommit":{"Sha1":"1f741371672d1a34acc5d106ebdead90ab0bf6c1","Message":"bashrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T21:29:26+02:00"},"CompareURL":"","Len":1}', 1681846182); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (692, 2, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"1f741371672d1a34acc5d106ebdead90ab0bf6c1","Message":"bashrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T21:29:26+02:00"}],"HeadCommit":{"Sha1":"1f741371672d1a34acc5d106ebdead90ab0bf6c1","Message":"bashrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T21:29:26+02:00"},"CompareURL":"","Len":1}', 1681846182); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (693, 1, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"947d9bce924726ddd85afa1c063f378c75dbb87e","Message":"chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:20:39+02:00"},{"Sha1":"ef6ec704f07045983f1917bf6e0b6a859dda5159","Message":"add vigener\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:19:43+02:00"}],"HeadCommit":{"Sha1":"947d9bce924726ddd85afa1c063f378c75dbb87e","Message":"chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:20:39+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...947d9bce924726ddd85afa1c063f378c75dbb87e","Len":2}', 1681849255); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (694, 2, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"947d9bce924726ddd85afa1c063f378c75dbb87e","Message":"chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:20:39+02:00"},{"Sha1":"ef6ec704f07045983f1917bf6e0b6a859dda5159","Message":"add vigener\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:19:43+02:00"}],"HeadCommit":{"Sha1":"947d9bce924726ddd85afa1c063f378c75dbb87e","Message":"chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:20:39+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...947d9bce924726ddd85afa1c063f378c75dbb87e","Len":2}', 1681849255); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (695, 1, 9, 1, 34, 0, 0, 'refs/tags/ko', 1, '{"Commits":null,"HeadCommit":{"Sha1":"947d9bce924726ddd85afa1c063f378c75dbb87e","Message":"chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:20:39+02:00"},"CompareURL":"h21/zavod23/compare/0000000000000000000000000000000000000000...947d9bce924726ddd85afa1c063f378c75dbb87e","Len":0}', 1681849276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (696, 2, 9, 1, 34, 0, 0, 'refs/tags/ko', 1, '{"Commits":null,"HeadCommit":{"Sha1":"947d9bce924726ddd85afa1c063f378c75dbb87e","Message":"chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:20:39+02:00"},"CompareURL":"h21/zavod23/compare/0000000000000000000000000000000000000000...947d9bce924726ddd85afa1c063f378c75dbb87e","Len":0}', 1681849276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (697, 1, 9, 1, 34, 0, 0, 'refs/tags/ok', 1, '{"Commits":null,"HeadCommit":{"Sha1":"ef6ec704f07045983f1917bf6e0b6a859dda5159","Message":"add vigener\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:19:43+02:00"},"CompareURL":"h21/zavod23/compare/0000000000000000000000000000000000000000...ef6ec704f07045983f1917bf6e0b6a859dda5159","Len":0}', 1681849276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (698, 2, 9, 1, 34, 0, 0, 'refs/tags/ok', 1, '{"Commits":null,"HeadCommit":{"Sha1":"ef6ec704f07045983f1917bf6e0b6a859dda5159","Message":"add vigener\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:19:43+02:00"},"CompareURL":"h21/zavod23/compare/0000000000000000000000000000000000000000...ef6ec704f07045983f1917bf6e0b6a859dda5159","Len":0}', 1681849276); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (699, 1, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6027cd62da43c91194e08397c04223e455ee4bee","Message":"add bells\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:22:36+02:00"}],"HeadCommit":{"Sha1":"6027cd62da43c91194e08397c04223e455ee4bee","Message":"add bells\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:22:36+02:00"},"CompareURL":"h21/zavod23/compare/947d9bce924726ddd85afa1c063f378c75dbb87e...6027cd62da43c91194e08397c04223e455ee4bee","Len":1}', 1681849371); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (700, 2, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6027cd62da43c91194e08397c04223e455ee4bee","Message":"add bells\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:22:36+02:00"}],"HeadCommit":{"Sha1":"6027cd62da43c91194e08397c04223e455ee4bee","Message":"add bells\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:22:36+02:00"},"CompareURL":"h21/zavod23/compare/947d9bce924726ddd85afa1c063f378c75dbb87e...6027cd62da43c91194e08397c04223e455ee4bee","Len":1}', 1681849371); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (701, 1, 16, 1, 34, 0, 0, 'refs/tags/ko', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1681849392); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (702, 2, 16, 1, 34, 0, 0, 'refs/tags/ko', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1681849392); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (703, 1, 16, 1, 34, 0, 0, 'refs/tags/ok', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1681849399); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (704, 2, 16, 1, 34, 0, 0, 'refs/tags/ok', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1681849399); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (705, 1, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"}],"HeadCommit":{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"},"CompareURL":"h21/zavod23/compare/6027cd62da43c91194e08397c04223e455ee4bee...cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Len":1}', 1681904776); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (706, 2, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"}],"HeadCommit":{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"},"CompareURL":"h21/zavod23/compare/6027cd62da43c91194e08397c04223e455ee4bee...cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Len":1}', 1681904776); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (707, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"bbd7d4cbcec796d4d6ffa243a6c070b876a93a79","Message":"Merge branch ''mpt09''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T17:15:31+02:00"},{"Sha1":"a05da21b46bf8ba000e837392dc65b1f2332f2ac","Message":"mpt09: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T17:14:51+02:00"}],"HeadCommit":{"Sha1":"bbd7d4cbcec796d4d6ffa243a6c070b876a93a79","Message":"Merge branch ''mpt09''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T17:15:31+02:00"},"CompareURL":"prokop/BI-PA2/compare/394130ff7f905b88040020fc6e54488155343c77...bbd7d4cbcec796d4d6ffa243a6c070b876a93a79","Len":2}', 1681917374); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (708, 1, 9, 1, 28, 0, 0, 'refs/tags/mpt09', 1, '{"Commits":null,"HeadCommit":{"Sha1":"a05da21b46bf8ba000e837392dc65b1f2332f2ac","Message":"mpt09: mlok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T17:14:51+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...a05da21b46bf8ba000e837392dc65b1f2332f2ac","Len":0}', 1681917384); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (709, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"ef38e5fa9c380a063aec9439217c13d658b9ae7b","Message":"pt06: add comments\n\nCUI, CContainer\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-21T09:02:29+02:00"}],"HeadCommit":{"Sha1":"ef38e5fa9c380a063aec9439217c13d658b9ae7b","Message":"pt06: add comments\n\nCUI, CContainer\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-21T09:02:29+02:00"},"CompareURL":"prokop/BI-PA2/compare/961c31489a9440dcbb8d84ef439a655d45c7f2cb...ef38e5fa9c380a063aec9439217c13d658b9ae7b","Len":1}', 1682060587); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (710, 1, 5, 1, 28, 0, 0, 'refs/heads/pt07', 1, '', 1682172327); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (711, 1, 5, 1, 28, 0, 0, 'refs/heads/pt07', 1, '{"Commits":[{"Sha1":"8eec9c2d33c3fe2a82dfd4e602e7ed680299654b","Message":"pt07: begin\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T16:05:05+02:00"}],"HeadCommit":{"Sha1":"8eec9c2d33c3fe2a82dfd4e602e7ed680299654b","Message":"pt07: begin\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T16:05:05+02:00"},"CompareURL":"prokop/BI-PA2/compare/bbd7d4cbcec796d4d6ffa243a6c070b876a93a79...8eec9c2d33c3fe2a82dfd4e602e7ed680299654b","Len":1}', 1682172327); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (712, 1, 5, 1, 28, 0, 0, 'refs/heads/pt07', 1, '{"Commits":[{"Sha1":"9841ea17a867aa0adcd9341a53f1a7c7b837dbfa","Message":"pt07: catch by const reference\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:55:00+02:00"},{"Sha1":"46bf791bf6fc877fc349a993f47389603c2f2a91","Message":"pt07: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:49:51+02:00"}],"HeadCommit":{"Sha1":"9841ea17a867aa0adcd9341a53f1a7c7b837dbfa","Message":"pt07: catch by const reference\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:55:00+02:00"},"CompareURL":"prokop/BI-PA2/compare/8eec9c2d33c3fe2a82dfd4e602e7ed680299654b...9841ea17a867aa0adcd9341a53f1a7c7b837dbfa","Len":2}', 1682186254); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (713, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"9f75ebf9c15a9b6dd15f075a4d70173ea6722ecf","Message":"Merge branch ''pt07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:56:40+02:00"},{"Sha1":"9841ea17a867aa0adcd9341a53f1a7c7b837dbfa","Message":"pt07: catch by const reference\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:55:00+02:00"},{"Sha1":"46bf791bf6fc877fc349a993f47389603c2f2a91","Message":"pt07: asserts ok\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:49:51+02:00"},{"Sha1":"8eec9c2d33c3fe2a82dfd4e602e7ed680299654b","Message":"pt07: begin\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T16:05:05+02:00"}],"HeadCommit":{"Sha1":"9f75ebf9c15a9b6dd15f075a4d70173ea6722ecf","Message":"Merge branch ''pt07''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:56:40+02:00"},"CompareURL":"prokop/BI-PA2/compare/bbd7d4cbcec796d4d6ffa243a6c070b876a93a79...9f75ebf9c15a9b6dd15f075a4d70173ea6722ecf","Len":4}', 1682186273); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (714, 1, 17, 1, 28, 0, 0, 'refs/heads/pt07', 1, '', 1682186285); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (715, 1, 9, 1, 28, 0, 0, 'refs/tags/pt07', 1, '{"Commits":null,"HeadCommit":{"Sha1":"9841ea17a867aa0adcd9341a53f1a7c7b837dbfa","Message":"pt07: catch by const reference\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T19:55:00+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...9841ea17a867aa0adcd9341a53f1a7c7b837dbfa","Len":0}', 1682186294); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (716, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"b1e55249ad44329605e81198b46a9f0f5e8b0e9f","Message":"pt06: add comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T20:18:06+02:00"}],"HeadCommit":{"Sha1":"b1e55249ad44329605e81198b46a9f0f5e8b0e9f","Message":"pt06: add comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T20:18:06+02:00"},"CompareURL":"prokop/BI-PA2/compare/ef38e5fa9c380a063aec9439217c13d658b9ae7b...b1e55249ad44329605e81198b46a9f0f5e8b0e9f","Len":1}', 1682187502); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (717, 1, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '', 1682281449); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (718, 2, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '', 1682281449); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (719, 1, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"37f84b499dd9114e7bdea6e8930846f969504956","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"}],"HeadCommit":{"Sha1":"37f84b499dd9114e7bdea6e8930846f969504956","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...37f84b499dd9114e7bdea6e8930846f969504956","Len":1}', 1682281450); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (720, 2, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"37f84b499dd9114e7bdea6e8930846f969504956","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"}],"HeadCommit":{"Sha1":"37f84b499dd9114e7bdea6e8930846f969504956","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...37f84b499dd9114e7bdea6e8930846f969504956","Len":1}', 1682281450); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (721, 1, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"875271900dcca215cf6afef35e95108dd56281c4","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"}],"HeadCommit":{"Sha1":"875271900dcca215cf6afef35e95108dd56281c4","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"},"CompareURL":"h21/zavod23/compare/37f84b499dd9114e7bdea6e8930846f969504956...875271900dcca215cf6afef35e95108dd56281c4","Len":1}', 1682281541); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (722, 2, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"875271900dcca215cf6afef35e95108dd56281c4","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"}],"HeadCommit":{"Sha1":"875271900dcca215cf6afef35e95108dd56281c4","Message":"nuclear python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T22:23:44+02:00"},"CompareURL":"h21/zavod23/compare/37f84b499dd9114e7bdea6e8930846f969504956...875271900dcca215cf6afef35e95108dd56281c4","Len":1}', 1682281541); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (723, 1, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[],"HeadCommit":{"Sha1":"1f741371672d1a34acc5d106ebdead90ab0bf6c1","Message":"bashrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T21:29:26+02:00"},"CompareURL":"h21/zavod23/compare/cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5...1f741371672d1a34acc5d106ebdead90ab0bf6c1","Len":0}', 1682284752); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (724, 2, 5, 1, 34, 0, 0, 'refs/heads/master', 1, '{"Commits":[],"HeadCommit":{"Sha1":"1f741371672d1a34acc5d106ebdead90ab0bf6c1","Message":"bashrc\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T21:29:26+02:00"},"CompareURL":"h21/zavod23/compare/cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5...1f741371672d1a34acc5d106ebdead90ab0bf6c1","Len":0}', 1682284752); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (725, 1, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb","Message":"add else branch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:17:02+02:00"}],"HeadCommit":{"Sha1":"c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb","Message":"add else branch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:17:02+02:00"},"CompareURL":"h21/zavod23/compare/875271900dcca215cf6afef35e95108dd56281c4...c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb","Len":1}', 1682284765); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (726, 2, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb","Message":"add else branch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:17:02+02:00"}],"HeadCommit":{"Sha1":"c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb","Message":"add else branch\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:17:02+02:00"},"CompareURL":"h21/zavod23/compare/875271900dcca215cf6afef35e95108dd56281c4...c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb","Len":1}', 1682284765); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (727, 1, 5, 1, 34, 0, 0, 'refs/heads/c', 1, '', 1682284781); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (728, 2, 5, 1, 34, 0, 0, 'refs/heads/c', 1, '', 1682284781); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (729, 1, 5, 1, 34, 0, 0, 'refs/heads/c', 1, '{"Commits":[{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"},{"Sha1":"6027cd62da43c91194e08397c04223e455ee4bee","Message":"add bells\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:22:36+02:00"},{"Sha1":"ef6ec704f07045983f1917bf6e0b6a859dda5159","Message":"add vigener\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:19:43+02:00"}],"HeadCommit":{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Len":3}', 1682284781); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (730, 2, 5, 1, 34, 0, 0, 'refs/heads/c', 1, '{"Commits":[{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"},{"Sha1":"6027cd62da43c91194e08397c04223e455ee4bee","Message":"add bells\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:22:36+02:00"},{"Sha1":"ef6ec704f07045983f1917bf6e0b6a859dda5159","Message":"add vigener\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-18T22:19:43+02:00"}],"HeadCommit":{"Sha1":"cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Message":"skip noAlpha characters, add some interaction\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-19T13:39:18+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...cf6ae5995ce4eb6ffcf0a5b320580121d4dd35f5","Len":3}', 1682284781); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (731, 1, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '', 1682284795); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (732, 2, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '', 1682284795); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (733, 1, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"718eae3d941d7fa93518e59c01130922346fe273","Message":"manual\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:15:43+02:00"}],"HeadCommit":{"Sha1":"718eae3d941d7fa93518e59c01130922346fe273","Message":"manual\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:15:43+02:00"},"CompareURL":"h21/zavod23/compare/875271900dcca215cf6afef35e95108dd56281c4...718eae3d941d7fa93518e59c01130922346fe273","Len":1}', 1682284795); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (734, 2, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"718eae3d941d7fa93518e59c01130922346fe273","Message":"manual\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:15:43+02:00"}],"HeadCommit":{"Sha1":"718eae3d941d7fa93518e59c01130922346fe273","Message":"manual\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:15:43+02:00"},"CompareURL":"h21/zavod23/compare/875271900dcca215cf6afef35e95108dd56281c4...718eae3d941d7fa93518e59c01130922346fe273","Len":1}', 1682284795); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (735, 1, 5, 1, 34, 0, 0, 'refs/heads/bash', 1, '', 1682284902); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (736, 2, 5, 1, 34, 0, 0, 'refs/heads/bash', 1, '', 1682284903); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (737, 1, 5, 1, 34, 0, 0, 'refs/heads/bash', 1, '{"Commits":[{"Sha1":"d0dd93a32150f2a1981ef5d00accdda882df87d9","Message":"clear\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:21:14+02:00"}],"HeadCommit":{"Sha1":"d0dd93a32150f2a1981ef5d00accdda882df87d9","Message":"clear\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:21:14+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...d0dd93a32150f2a1981ef5d00accdda882df87d9","Len":1}', 1682284903); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (738, 2, 5, 1, 34, 0, 0, 'refs/heads/bash', 1, '{"Commits":[{"Sha1":"d0dd93a32150f2a1981ef5d00accdda882df87d9","Message":"clear\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:21:14+02:00"}],"HeadCommit":{"Sha1":"d0dd93a32150f2a1981ef5d00accdda882df87d9","Message":"clear\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:21:14+02:00"},"CompareURL":"h21/zavod23/compare/1f741371672d1a34acc5d106ebdead90ab0bf6c1...d0dd93a32150f2a1981ef5d00accdda882df87d9","Len":1}', 1682284903); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (739, 1, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"5b1eec09f7929d5d243dd5046076c98a9ad23e32","Message":"pridani logickych uloh ke klici\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:43:57+02:00"},{"Sha1":"81530628e506fa3cd2f96b2441faaed77976084a","Message":"add need for ls\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T11:56:43+02:00"}],"HeadCommit":{"Sha1":"5b1eec09f7929d5d243dd5046076c98a9ad23e32","Message":"pridani logickych uloh ke klici\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:43:57+02:00"},"CompareURL":"h21/zavod23/compare/718eae3d941d7fa93518e59c01130922346fe273...5b1eec09f7929d5d243dd5046076c98a9ad23e32","Len":2}', 1682333070); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (740, 2, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"5b1eec09f7929d5d243dd5046076c98a9ad23e32","Message":"pridani logickych uloh ke klici\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:43:57+02:00"},{"Sha1":"81530628e506fa3cd2f96b2441faaed77976084a","Message":"add need for ls\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T11:56:43+02:00"}],"HeadCommit":{"Sha1":"5b1eec09f7929d5d243dd5046076c98a9ad23e32","Message":"pridani logickych uloh ke klici\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:43:57+02:00"},"CompareURL":"h21/zavod23/compare/718eae3d941d7fa93518e59c01130922346fe273...5b1eec09f7929d5d243dd5046076c98a9ad23e32","Len":2}', 1682333070); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (741, 1, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"5076c6c206c063cae51e98bf99b6c2e602d84d0a","Message":"add a4wide\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:52:43+02:00"}],"HeadCommit":{"Sha1":"5076c6c206c063cae51e98bf99b6c2e602d84d0a","Message":"add a4wide\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:52:43+02:00"},"CompareURL":"h21/zavod23/compare/5b1eec09f7929d5d243dd5046076c98a9ad23e32...5076c6c206c063cae51e98bf99b6c2e602d84d0a","Len":1}', 1682333575); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (742, 2, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"5076c6c206c063cae51e98bf99b6c2e602d84d0a","Message":"add a4wide\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:52:43+02:00"}],"HeadCommit":{"Sha1":"5076c6c206c063cae51e98bf99b6c2e602d84d0a","Message":"add a4wide\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-24T12:52:43+02:00"},"CompareURL":"h21/zavod23/compare/5b1eec09f7929d5d243dd5046076c98a9ad23e32...5076c6c206c063cae51e98bf99b6c2e602d84d0a","Len":1}', 1682333575); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (743, 1, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"09212724b99bc1df946e8007a38fa1e7c2a833b8","Message":"add some improvements\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-28T20:22:20+02:00"}],"HeadCommit":{"Sha1":"09212724b99bc1df946e8007a38fa1e7c2a833b8","Message":"add some improvements\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-28T20:22:20+02:00"},"CompareURL":"h21/zavod23/compare/5076c6c206c063cae51e98bf99b6c2e602d84d0a...09212724b99bc1df946e8007a38fa1e7c2a833b8","Len":1}', 1682706166); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (744, 2, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"09212724b99bc1df946e8007a38fa1e7c2a833b8","Message":"add some improvements\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-28T20:22:20+02:00"}],"HeadCommit":{"Sha1":"09212724b99bc1df946e8007a38fa1e7c2a833b8","Message":"add some improvements\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-28T20:22:20+02:00"},"CompareURL":"h21/zavod23/compare/5076c6c206c063cae51e98bf99b6c2e602d84d0a...09212724b99bc1df946e8007a38fa1e7c2a833b8","Len":1}', 1682706166); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (745, 1, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"a6634cef17868300d0f211d6e884b99bdae9223a","Message":"Merge branch ''bash'' into python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:41:35+02:00"},{"Sha1":"d0dd93a32150f2a1981ef5d00accdda882df87d9","Message":"clear\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:21:14+02:00"}],"HeadCommit":{"Sha1":"a6634cef17868300d0f211d6e884b99bdae9223a","Message":"Merge branch ''bash'' into python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:41:35+02:00"},"CompareURL":"h21/zavod23/compare/c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb...a6634cef17868300d0f211d6e884b99bdae9223a","Len":2}', 1682757793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (746, 2, 5, 1, 34, 0, 0, 'refs/heads/python', 1, '{"Commits":[{"Sha1":"a6634cef17868300d0f211d6e884b99bdae9223a","Message":"Merge branch ''bash'' into python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:41:35+02:00"},{"Sha1":"d0dd93a32150f2a1981ef5d00accdda882df87d9","Message":"clear\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-23T23:21:14+02:00"}],"HeadCommit":{"Sha1":"a6634cef17868300d0f211d6e884b99bdae9223a","Message":"Merge branch ''bash'' into python\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:41:35+02:00"},"CompareURL":"h21/zavod23/compare/c371ba90c5c10f75e4a74a43b3f9a9af20ffa2fb...a6634cef17868300d0f211d6e884b99bdae9223a","Len":2}', 1682757793); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (747, 1, 5, 1, 34, 0, 0, 'refs/heads/zavod', 1, '', 1682757809); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (748, 2, 5, 1, 34, 0, 0, 'refs/heads/zavod', 1, '', 1682757810); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (749, 1, 5, 1, 34, 0, 0, 'refs/heads/zavod', 1, '{"Commits":[{"Sha1":"307e95031c6d06e49881df2ea2ab283e858a4271","Message":"zavod ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:42:49+02:00"}],"HeadCommit":{"Sha1":"307e95031c6d06e49881df2ea2ab283e858a4271","Message":"zavod ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:42:49+02:00"},"CompareURL":"h21/zavod23/compare/a6634cef17868300d0f211d6e884b99bdae9223a...307e95031c6d06e49881df2ea2ab283e858a4271","Len":1}', 1682757810); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (750, 2, 5, 1, 34, 0, 0, 'refs/heads/zavod', 1, '{"Commits":[{"Sha1":"307e95031c6d06e49881df2ea2ab283e858a4271","Message":"zavod ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:42:49+02:00"}],"HeadCommit":{"Sha1":"307e95031c6d06e49881df2ea2ab283e858a4271","Message":"zavod ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-29T10:42:49+02:00"},"CompareURL":"h21/zavod23/compare/a6634cef17868300d0f211d6e884b99bdae9223a...307e95031c6d06e49881df2ea2ab283e858a4271","Len":1}', 1682757810); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (751, 1, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"b89977bfaf1c51490331e140b48b5135048535a0","Message":"uprava mouchy, aby ji nesrazil vlak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-30T12:37:20+02:00"}],"HeadCommit":{"Sha1":"b89977bfaf1c51490331e140b48b5135048535a0","Message":"uprava mouchy, aby ji nesrazil vlak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-30T12:37:20+02:00"},"CompareURL":"h21/zavod23/compare/09212724b99bc1df946e8007a38fa1e7c2a833b8...b89977bfaf1c51490331e140b48b5135048535a0","Len":1}', 1682851066); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (752, 2, 5, 1, 34, 0, 0, 'refs/heads/manual', 1, '{"Commits":[{"Sha1":"b89977bfaf1c51490331e140b48b5135048535a0","Message":"uprava mouchy, aby ji nesrazil vlak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-30T12:37:20+02:00"}],"HeadCommit":{"Sha1":"b89977bfaf1c51490331e140b48b5135048535a0","Message":"uprava mouchy, aby ji nesrazil vlak\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-04-30T12:37:20+02:00"},"CompareURL":"h21/zavod23/compare/09212724b99bc1df946e8007a38fa1e7c2a833b8...b89977bfaf1c51490331e140b48b5135048535a0","Len":1}', 1682851066); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (753, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"395a1e2fa7752bb1095f298c092ef06735ee85f3","Message":"add tor adress\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-01T22:16:01+02:00"}],"HeadCommit":{"Sha1":"395a1e2fa7752bb1095f298c092ef06735ee85f3","Message":"add tor adress\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-01T22:16:01+02:00"},"CompareURL":"h21/HoralServer-web/compare/a45498045ea6a018db3e56ec23c7c7f4a3d983c8...395a1e2fa7752bb1095f298c092ef06735ee85f3","Len":1}', 1682972182); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (754, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"395a1e2fa7752bb1095f298c092ef06735ee85f3","Message":"add tor adress\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-01T22:16:01+02:00"}],"HeadCommit":{"Sha1":"395a1e2fa7752bb1095f298c092ef06735ee85f3","Message":"add tor adress\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-01T22:16:01+02:00"},"CompareURL":"h21/HoralServer-web/compare/a45498045ea6a018db3e56ec23c7c7f4a3d983c8...395a1e2fa7752bb1095f298c092ef06735ee85f3","Len":1}', 1682972182); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (755, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"efb604b02971ea72160847282188fdee01bcd9fe","Message":"pt06: some other comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-03T17:06:18+02:00"}],"HeadCommit":{"Sha1":"efb604b02971ea72160847282188fdee01bcd9fe","Message":"pt06: some other comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-03T17:06:18+02:00"},"CompareURL":"prokop/BI-PA2/compare/b1e55249ad44329605e81198b46a9f0f5e8b0e9f...efb604b02971ea72160847282188fdee01bcd9fe","Len":1}', 1683126402); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (756, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"6825f4ea61079e5db728ad6e8f2d27535d69bd59","Message":"pt06: some other comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-03T17:06:18+02:00"}],"HeadCommit":{"Sha1":"6825f4ea61079e5db728ad6e8f2d27535d69bd59","Message":"pt06: some other comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-03T17:06:18+02:00"},"CompareURL":"prokop/BI-PA2/compare/efb604b02971ea72160847282188fdee01bcd9fe...6825f4ea61079e5db728ad6e8f2d27535d69bd59","Len":1}', 1683127629); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (757, 1, 5, 1, 28, 0, 0, 'refs/heads/pt06', 1, '{"Commits":[{"Sha1":"dcc3771974a0788fe41a4cd858ac535198635c0b","Message":"last changes\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T18:31:42+02:00"}],"HeadCommit":{"Sha1":"dcc3771974a0788fe41a4cd858ac535198635c0b","Message":"last changes\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T18:31:42+02:00"},"CompareURL":"prokop/BI-PA2/compare/6825f4ea61079e5db728ad6e8f2d27535d69bd59...dcc3771974a0788fe41a4cd858ac535198635c0b","Len":1}', 1683217919); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (758, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"1af770b86038f2b81bd0169ea94bb4f0df2daf67","Message":"Merge branch ''pt06''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T20:17:24+02:00"},{"Sha1":"dcc3771974a0788fe41a4cd858ac535198635c0b","Message":"last changes\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T18:31:42+02:00"},{"Sha1":"6825f4ea61079e5db728ad6e8f2d27535d69bd59","Message":"pt06: some other comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-03T17:06:18+02:00"},{"Sha1":"b1e55249ad44329605e81198b46a9f0f5e8b0e9f","Message":"pt06: add comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-22T20:18:06+02:00"},{"Sha1":"ef38e5fa9c380a063aec9439217c13d658b9ae7b","Message":"pt06: add comments\n\nCUI, CContainer\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-04-21T09:02:29+02:00"}],"HeadCommit":{"Sha1":"1af770b86038f2b81bd0169ea94bb4f0df2daf67","Message":"Merge branch ''pt06''\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T20:17:24+02:00"},"CompareURL":"prokop/BI-PA2/compare/9f75ebf9c15a9b6dd15f075a4d70173ea6722ecf...1af770b86038f2b81bd0169ea94bb4f0df2daf67","Len":9}', 1683224286); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (759, 1, 17, 1, 28, 0, 0, 'refs/heads/pt06', 1, '', 1683224295); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (760, 1, 9, 1, 28, 0, 0, 'refs/tags/pt06-codereview', 1, '{"Commits":null,"HeadCommit":{"Sha1":"dcc3771974a0788fe41a4cd858ac535198635c0b","Message":"last changes\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T18:31:42+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...dcc3771974a0788fe41a4cd858ac535198635c0b","Len":0}', 1683224304); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (761, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '', 1683225992); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (762, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"5f859cc4d688e105ec57d81ab34307afb28f5475","Message":"zaklad popisu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T20:45:55+02:00"}],"HeadCommit":{"Sha1":"5f859cc4d688e105ec57d81ab34307afb28f5475","Message":"zaklad popisu\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-04T20:45:55+02:00"},"CompareURL":"prokop/BI-PA2/compare/1af770b86038f2b81bd0169ea94bb4f0df2daf67...5f859cc4d688e105ec57d81ab34307afb28f5475","Len":1}', 1683225992); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (763, 1, 2, 1, 38, 0, 0, '', 1, 'compare', 1683578610); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (764, 4, 2, 1, 38, 0, 0, '', 1, 'compare', 1683578611); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (765, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"275a47efe0e6d0f2c0a13c373f7056bb678f7ad3","Message":"zadani 2\n\ndoplneni a prepracovani\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-09T20:52:55+02:00"}],"HeadCommit":{"Sha1":"275a47efe0e6d0f2c0a13c373f7056bb678f7ad3","Message":"zadani 2\n\ndoplneni a prepracovani\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-09T20:52:55+02:00"},"CompareURL":"prokop/BI-PA2/compare/5f859cc4d688e105ec57d81ab34307afb28f5475...275a47efe0e6d0f2c0a13c373f7056bb678f7ad3","Len":1}', 1683658422); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (766, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"e1fb789dbd1e53902525646be5c6fb230f8859f8","Message":"zacatek\n\nprvni hlavickove soubory\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-10T12:28:50+02:00"},{"Sha1":"34166cecc8be37625c034cd1f764065e3e5665bd","Message":"zadani 3\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-10T12:27:18+02:00"}],"HeadCommit":{"Sha1":"e1fb789dbd1e53902525646be5c6fb230f8859f8","Message":"zacatek\n\nprvni hlavickove soubory\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-10T12:28:50+02:00"},"CompareURL":"prokop/BI-PA2/compare/275a47efe0e6d0f2c0a13c373f7056bb678f7ad3...e1fb789dbd1e53902525646be5c6fb230f8859f8","Len":2}', 1683714571); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (767, 4, 18, 4, 35, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:34Z"},{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"}],"HeadCommit":{"Sha1":"1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:34Z"},"CompareURL":"skj/perlHello/compare/1a7555ffe55c3d7484da054a2cd377030b2fb649...1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8","Len":2}', 1683723720); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (768, 1, 18, 4, 35, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:34Z"},{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"}],"HeadCommit":{"Sha1":"1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:34Z"},"CompareURL":"skj/perlHello/compare/1a7555ffe55c3d7484da054a2cd377030b2fb649...1c3a49ab6d5f6bbb26942cc31670ebc4ed9f32f8","Len":2}', 1683723720); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (769, 4, 18, 4, 35, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"}],"HeadCommit":{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"},"CompareURL":"skj/perlHello/compare/00dfd5a64269feb01da066c540477f670ec2cff4...aafe9edcce659151f5ef62a690585b6c79f7e5e5","Len":1}', 1683723720); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (770, 1, 18, 4, 35, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"}],"HeadCommit":{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"},"CompareURL":"skj/perlHello/compare/00dfd5a64269feb01da066c540477f670ec2cff4...aafe9edcce659151f5ef62a690585b6c79f7e5e5","Len":1}', 1683723720); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (771, 4, 18, 4, 35, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"ab0be9061117c19a9c0578ec7ac055ff0d2daa46","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:46:02Z"},{"Sha1":"13deb019ecbc1dd403296ba3a15f3c5c874c47a8","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:46:02Z"},{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"}],"HeadCommit":{"Sha1":"ab0be9061117c19a9c0578ec7ac055ff0d2daa46","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:46:02Z"},"CompareURL":"skj/perlHello/compare/3c04683fb7129743cd967fb89c9359e87438e5ab...ab0be9061117c19a9c0578ec7ac055ff0d2daa46","Len":3}', 1683723721); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (772, 1, 18, 4, 35, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"ab0be9061117c19a9c0578ec7ac055ff0d2daa46","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:46:02Z"},{"Sha1":"13deb019ecbc1dd403296ba3a15f3c5c874c47a8","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:46:02Z"},{"Sha1":"aafe9edcce659151f5ef62a690585b6c79f7e5e5","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:45:33Z"}],"HeadCommit":{"Sha1":"ab0be9061117c19a9c0578ec7ac055ff0d2daa46","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:46:02Z"},"CompareURL":"skj/perlHello/compare/3c04683fb7129743cd967fb89c9359e87438e5ab...ab0be9061117c19a9c0578ec7ac055ff0d2daa46","Len":3}', 1683723721); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (773, 4, 18, 4, 36, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"7604a9d4809e470a745a43b74995bca2c200d6c3","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"},{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"}],"HeadCommit":{"Sha1":"7604a9d4809e470a745a43b74995bca2c200d6c3","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"},"CompareURL":"skj/perlCut/compare/9ef4972dbbab65c3eb97003a5f1ab8a676988cf4...7604a9d4809e470a745a43b74995bca2c200d6c3","Len":2}', 1683723722); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (774, 1, 18, 4, 36, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"7604a9d4809e470a745a43b74995bca2c200d6c3","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"},{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"}],"HeadCommit":{"Sha1":"7604a9d4809e470a745a43b74995bca2c200d6c3","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"},"CompareURL":"skj/perlCut/compare/9ef4972dbbab65c3eb97003a5f1ab8a676988cf4...7604a9d4809e470a745a43b74995bca2c200d6c3","Len":2}', 1683723722); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (775, 4, 18, 4, 36, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"}],"HeadCommit":{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"},"CompareURL":"skj/perlCut/compare/8a9d3550b3660be6bb5e1de318d7db41f9b57a1c...c939d91aa6893606eb693125c545c925fd21c3ca","Len":1}', 1683723722); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (776, 1, 18, 4, 36, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"}],"HeadCommit":{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"},"CompareURL":"skj/perlCut/compare/8a9d3550b3660be6bb5e1de318d7db41f9b57a1c...c939d91aa6893606eb693125c545c925fd21c3ca","Len":1}', 1683723722); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (777, 4, 18, 4, 36, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"0b9d15a49f2f9140a7258c2b15c0006ad30092c5","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:51:02Z"},{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"}],"HeadCommit":{"Sha1":"0b9d15a49f2f9140a7258c2b15c0006ad30092c5","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:51:02Z"},"CompareURL":"skj/perlCut/compare/abe5c1281d04d7c75c4319f809962954c86f31b8...0b9d15a49f2f9140a7258c2b15c0006ad30092c5","Len":2}', 1683723723); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (778, 1, 18, 4, 36, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"0b9d15a49f2f9140a7258c2b15c0006ad30092c5","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:51:02Z"},{"Sha1":"c939d91aa6893606eb693125c545c925fd21c3ca","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:50:44Z"}],"HeadCommit":{"Sha1":"0b9d15a49f2f9140a7258c2b15c0006ad30092c5","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:51:02Z"},"CompareURL":"skj/perlCut/compare/abe5c1281d04d7c75c4319f809962954c86f31b8...0b9d15a49f2f9140a7258c2b15c0006ad30092c5","Len":2}', 1683723723); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (779, 4, 18, 4, 37, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:12Z"},{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"}],"HeadCommit":{"Sha1":"3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:12Z"},"CompareURL":"skj/perlCut2/compare/f821a1b9b0530c0d03f65844fc651828934a9e39...3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806","Len":2}', 1683725520); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (780, 1, 18, 4, 37, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:12Z"},{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"}],"HeadCommit":{"Sha1":"3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:12Z"},"CompareURL":"skj/perlCut2/compare/f821a1b9b0530c0d03f65844fc651828934a9e39...3ea0b7e4ff7428cb2da5691266e3afb6d6ab3806","Len":2}', 1683725520); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (781, 4, 18, 4, 37, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"}],"HeadCommit":{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"},"CompareURL":"skj/perlCut2/compare/94aabcd0d000249db9a3e81fca68f14ebaa07cb0...345d54318175854c8556d97483439810824a6e49","Len":1}', 1683725520); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (782, 1, 18, 4, 37, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"}],"HeadCommit":{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"},"CompareURL":"skj/perlCut2/compare/94aabcd0d000249db9a3e81fca68f14ebaa07cb0...345d54318175854c8556d97483439810824a6e49","Len":1}', 1683725520); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (783, 4, 18, 4, 37, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"abade3a741ebbee090ca22e16c571eec5715968d","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:33Z"},{"Sha1":"6f7810ef0389b9b206d0305701f8ba0ecabba6db","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:33Z"},{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"}],"HeadCommit":{"Sha1":"abade3a741ebbee090ca22e16c571eec5715968d","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:33Z"},"CompareURL":"skj/perlCut2/compare/1e4354677f5168908070179690fcfaeaa61e4ac7...abade3a741ebbee090ca22e16c571eec5715968d","Len":3}', 1683725521); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (784, 1, 18, 4, 37, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"abade3a741ebbee090ca22e16c571eec5715968d","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:33Z"},{"Sha1":"6f7810ef0389b9b206d0305701f8ba0ecabba6db","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:33Z"},{"Sha1":"345d54318175854c8556d97483439810824a6e49","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:11Z"}],"HeadCommit":{"Sha1":"abade3a741ebbee090ca22e16c571eec5715968d","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T07:54:33Z"},"CompareURL":"skj/perlCut2/compare/1e4354677f5168908070179690fcfaeaa61e4ac7...abade3a741ebbee090ca22e16c571eec5715968d","Len":3}', 1683725521); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (785, 4, 18, 4, 38, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"0a679bded1b454cdb104f4dcf1b39c743611baf0","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:02Z"},{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"}],"HeadCommit":{"Sha1":"0a679bded1b454cdb104f4dcf1b39c743611baf0","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:02Z"},"CompareURL":"skj/perlCompare/compare/68f2c4b9b109be0931ec1713c5a0876d3eb095e2...0a679bded1b454cdb104f4dcf1b39c743611baf0","Len":2}', 1683725522); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (786, 1, 18, 4, 38, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"0a679bded1b454cdb104f4dcf1b39c743611baf0","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:02Z"},{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"}],"HeadCommit":{"Sha1":"0a679bded1b454cdb104f4dcf1b39c743611baf0","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:02Z"},"CompareURL":"skj/perlCompare/compare/68f2c4b9b109be0931ec1713c5a0876d3eb095e2...0a679bded1b454cdb104f4dcf1b39c743611baf0","Len":2}', 1683725522); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (787, 4, 18, 4, 38, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"}],"HeadCommit":{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"},"CompareURL":"skj/perlCompare/compare/b4473a3f303e6d8b18a32eb1e9ba214b8db5123b...c0cdcd265cff89243949f652af88a91daebe3f93","Len":1}', 1683725522); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (788, 1, 18, 4, 38, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"}],"HeadCommit":{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"},"CompareURL":"skj/perlCompare/compare/b4473a3f303e6d8b18a32eb1e9ba214b8db5123b...c0cdcd265cff89243949f652af88a91daebe3f93","Len":1}', 1683725522); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (789, 4, 18, 4, 38, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"734fc53cba68be79c3940a4283c951556bd4eb84","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:34Z"},{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"}],"HeadCommit":{"Sha1":"734fc53cba68be79c3940a4283c951556bd4eb84","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:34Z"},"CompareURL":"skj/perlCompare/compare/fab252c0770fdb8e621a29f267e949fee47023ac...734fc53cba68be79c3940a4283c951556bd4eb84","Len":2}', 1683725523); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (790, 1, 18, 4, 38, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"734fc53cba68be79c3940a4283c951556bd4eb84","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:34Z"},{"Sha1":"c0cdcd265cff89243949f652af88a91daebe3f93","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:01Z"}],"HeadCommit":{"Sha1":"734fc53cba68be79c3940a4283c951556bd4eb84","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:01:34Z"},"CompareURL":"skj/perlCompare/compare/fab252c0770fdb8e621a29f267e949fee47023ac...734fc53cba68be79c3940a4283c951556bd4eb84","Len":2}', 1683725523); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (791, 4, 18, 4, 40, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"657cc672de1a169895064885c8116a3e6e88e112","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:15Z"},{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"}],"HeadCommit":{"Sha1":"657cc672de1a169895064885c8116a3e6e88e112","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:15Z"},"CompareURL":"skj/perlPod/compare/13ce341c0ce1c2c77e9173329d501915792baa03...657cc672de1a169895064885c8116a3e6e88e112","Len":2}', 1683726120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (792, 1, 18, 4, 40, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"657cc672de1a169895064885c8116a3e6e88e112","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:15Z"},{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"}],"HeadCommit":{"Sha1":"657cc672de1a169895064885c8116a3e6e88e112","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:15Z"},"CompareURL":"skj/perlPod/compare/13ce341c0ce1c2c77e9173329d501915792baa03...657cc672de1a169895064885c8116a3e6e88e112","Len":2}', 1683726120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (793, 4, 18, 4, 40, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"}],"HeadCommit":{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"},"CompareURL":"skj/perlPod/compare/f3f48e959cc0a8f912922e0c74645b347481fc7d...02baad3414ea0e36299900c5dfb3a0350857be51","Len":1}', 1683726120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (794, 1, 18, 4, 40, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"}],"HeadCommit":{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"},"CompareURL":"skj/perlPod/compare/f3f48e959cc0a8f912922e0c74645b347481fc7d...02baad3414ea0e36299900c5dfb3a0350857be51","Len":1}', 1683726120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (795, 4, 18, 4, 40, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"b56afa0536624f69515246da432498e77e62ba72","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:07:54Z"},{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"}],"HeadCommit":{"Sha1":"b56afa0536624f69515246da432498e77e62ba72","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:07:54Z"},"CompareURL":"skj/perlPod/compare/5782e9a88105a81d3f36e45570148c0a61368924...b56afa0536624f69515246da432498e77e62ba72","Len":2}', 1683726121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (796, 1, 18, 4, 40, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"b56afa0536624f69515246da432498e77e62ba72","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:07:54Z"},{"Sha1":"02baad3414ea0e36299900c5dfb3a0350857be51","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:05:14Z"}],"HeadCommit":{"Sha1":"b56afa0536624f69515246da432498e77e62ba72","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:07:54Z"},"CompareURL":"skj/perlPod/compare/5782e9a88105a81d3f36e45570148c0a61368924...b56afa0536624f69515246da432498e77e62ba72","Len":2}', 1683726121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (797, 4, 18, 4, 41, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"4f3d82fc840c40f5508f225e9c6e1d685e89fcdb","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:50Z"},{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"}],"HeadCommit":{"Sha1":"4f3d82fc840c40f5508f225e9c6e1d685e89fcdb","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:50Z"},"CompareURL":"skj/perlBOOM/compare/9bed35777059a6c851cf7ccdb278b188b7650cdd...4f3d82fc840c40f5508f225e9c6e1d685e89fcdb","Len":2}', 1683726122); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (798, 1, 18, 4, 41, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"4f3d82fc840c40f5508f225e9c6e1d685e89fcdb","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:50Z"},{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"}],"HeadCommit":{"Sha1":"4f3d82fc840c40f5508f225e9c6e1d685e89fcdb","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:50Z"},"CompareURL":"skj/perlBOOM/compare/9bed35777059a6c851cf7ccdb278b188b7650cdd...4f3d82fc840c40f5508f225e9c6e1d685e89fcdb","Len":2}', 1683726122); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (799, 4, 18, 4, 41, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"}],"HeadCommit":{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"},"CompareURL":"skj/perlBOOM/compare/a72040a9fe96c89cf98536dd788ffa2c376c172e...5e52e42e62201f767d5758bfa44cff7f36b4bb37","Len":1}', 1683726123); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (800, 1, 18, 4, 41, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"}],"HeadCommit":{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"},"CompareURL":"skj/perlBOOM/compare/a72040a9fe96c89cf98536dd788ffa2c376c172e...5e52e42e62201f767d5758bfa44cff7f36b4bb37","Len":1}', 1683726123); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (801, 4, 18, 4, 41, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"42511478baac26a6dac8e06c31b5229007585491","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:27:08Z"},{"Sha1":"a21c64f191fb2fbdec956ffe2a31d517dce3da61","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:27:08Z"},{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"}],"HeadCommit":{"Sha1":"42511478baac26a6dac8e06c31b5229007585491","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:27:08Z"},"CompareURL":"skj/perlBOOM/compare/4bc05b65be2fa090d6fe709d8d2c7e75ef7f6f40...42511478baac26a6dac8e06c31b5229007585491","Len":3}', 1683726123); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (802, 1, 18, 4, 41, 0, 0, 'submit', 1, '{"Commits":[{"Sha1":"42511478baac26a6dac8e06c31b5229007585491","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:27:08Z"},{"Sha1":"a21c64f191fb2fbdec956ffe2a31d517dce3da61","Message":"Merge branch ''source'' into submit\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:27:08Z"},{"Sha1":"5e52e42e62201f767d5758bfa44cff7f36b4bb37","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:26:48Z"}],"HeadCommit":{"Sha1":"42511478baac26a6dac8e06c31b5229007585491","Message":"Sync with source and main\n","AuthorEmail":"zdarekj@fit.cvut.cz","AuthorName":"Runner = Basic shell","CommitterEmail":"zdarekj@fit.cvut.cz","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-10T08:27:08Z"},"CompareURL":"skj/perlBOOM/compare/4bc05b65be2fa090d6fe709d8d2c7e75ef7f6f40...42511478baac26a6dac8e06c31b5229007585491","Len":3}', 1683726123); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (803, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"e7bddd7a19b75c4680fedbb4a640e3100bdbe030","Message":"add creature, combinedEffect and some printing\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-10T17:41:08+02:00"}],"HeadCommit":{"Sha1":"e7bddd7a19b75c4680fedbb4a640e3100bdbe030","Message":"add creature, combinedEffect and some printing\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-10T17:41:08+02:00"},"CompareURL":"prokop/BI-PA2/compare/e1fb789dbd1e53902525646be5c6fb230f8859f8...e7bddd7a19b75c4680fedbb4a640e3100bdbe030","Len":1}', 1683733294); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (804, 4, 18, 4, 30, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"4bf67ea6849e0aaf68fa0318d3bc82247a56c33a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:43Z"},{"Sha1":"b43a3815e60a46245a78b76357065baf799dc506","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:42Z"}],"HeadCommit":{"Sha1":"4bf67ea6849e0aaf68fa0318d3bc82247a56c33a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:43Z"},"CompareURL":"skj/shell-intro/compare/de19f2e0475d5c1dc56cf4de89221589e6aedb97...4bf67ea6849e0aaf68fa0318d3bc82247a56c33a","Len":2}', 1683789121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (805, 1, 18, 4, 30, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"4bf67ea6849e0aaf68fa0318d3bc82247a56c33a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:43Z"},{"Sha1":"b43a3815e60a46245a78b76357065baf799dc506","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:42Z"}],"HeadCommit":{"Sha1":"4bf67ea6849e0aaf68fa0318d3bc82247a56c33a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:43Z"},"CompareURL":"skj/shell-intro/compare/de19f2e0475d5c1dc56cf4de89221589e6aedb97...4bf67ea6849e0aaf68fa0318d3bc82247a56c33a","Len":2}', 1683789121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (806, 4, 18, 4, 30, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"b43a3815e60a46245a78b76357065baf799dc506","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:42Z"}],"HeadCommit":{"Sha1":"b43a3815e60a46245a78b76357065baf799dc506","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:42Z"},"CompareURL":"skj/shell-intro/compare/43fb27cf065adb5ee0583fb7cc3175c5609f1782...b43a3815e60a46245a78b76357065baf799dc506","Len":1}', 1683789121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (807, 1, 18, 4, 30, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"b43a3815e60a46245a78b76357065baf799dc506","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:42Z"}],"HeadCommit":{"Sha1":"b43a3815e60a46245a78b76357065baf799dc506","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:41:42Z"},"CompareURL":"skj/shell-intro/compare/43fb27cf065adb5ee0583fb7cc3175c5609f1782...b43a3815e60a46245a78b76357065baf799dc506","Len":1}', 1683789121); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (808, 4, 18, 4, 33, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"3a6f3591fbf96c0bb6fef3523b751b5c36a02a51","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:35Z"},{"Sha1":"a4b25934e575e601c927c736e1d8ebdf8a0a609a","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:33Z"}],"HeadCommit":{"Sha1":"3a6f3591fbf96c0bb6fef3523b751b5c36a02a51","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:35Z"},"CompareURL":"skj/awk/compare/2a32cdf8f1e722dff847dee77112c972ca914e6c...3a6f3591fbf96c0bb6fef3523b751b5c36a02a51","Len":2}', 1683790320); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (809, 1, 18, 4, 33, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"3a6f3591fbf96c0bb6fef3523b751b5c36a02a51","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:35Z"},{"Sha1":"a4b25934e575e601c927c736e1d8ebdf8a0a609a","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:33Z"}],"HeadCommit":{"Sha1":"3a6f3591fbf96c0bb6fef3523b751b5c36a02a51","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:35Z"},"CompareURL":"skj/awk/compare/2a32cdf8f1e722dff847dee77112c972ca914e6c...3a6f3591fbf96c0bb6fef3523b751b5c36a02a51","Len":2}', 1683790320); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (810, 4, 18, 4, 33, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"a4b25934e575e601c927c736e1d8ebdf8a0a609a","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:33Z"}],"HeadCommit":{"Sha1":"a4b25934e575e601c927c736e1d8ebdf8a0a609a","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:33Z"},"CompareURL":"skj/awk/compare/8d7c60b190b24f772883c06851d4f1ccd4a2ea36...a4b25934e575e601c927c736e1d8ebdf8a0a609a","Len":1}', 1683790320); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (811, 1, 18, 4, 33, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"a4b25934e575e601c927c736e1d8ebdf8a0a609a","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:33Z"}],"HeadCommit":{"Sha1":"a4b25934e575e601c927c736e1d8ebdf8a0a609a","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:33Z"},"CompareURL":"skj/awk/compare/8d7c60b190b24f772883c06851d4f1ccd4a2ea36...a4b25934e575e601c927c736e1d8ebdf8a0a609a","Len":1}', 1683790321); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (812, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"c914f16f91ff3de5340a290a86751a5cdf3f6313","Message":"add attack effect and const print\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T11:56:54+02:00"}],"HeadCommit":{"Sha1":"c914f16f91ff3de5340a290a86751a5cdf3f6313","Message":"add attack effect and const print\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T11:56:54+02:00"},"CompareURL":"prokop/BI-PA2/compare/e7bddd7a19b75c4680fedbb4a640e3100bdbe030...c914f16f91ff3de5340a290a86751a5cdf3f6313","Len":1}', 1683799057); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (813, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"f6671837ffdf969d8475f1d4fbe127fed31e897f","Message":"Merge branch ''master'' into semestralka\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:02:25+02:00"},{"Sha1":"06f6db4bf163d2d546d6d7cc0a6e8c3ddcb9c4a2","Message":".gitignore changes\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:01:15+02:00"}],"HeadCommit":{"Sha1":"f6671837ffdf969d8475f1d4fbe127fed31e897f","Message":"Merge branch ''master'' into semestralka\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:02:25+02:00"},"CompareURL":"prokop/BI-PA2/compare/c914f16f91ff3de5340a290a86751a5cdf3f6313...f6671837ffdf969d8475f1d4fbe127fed31e897f","Len":2}', 1683799394); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (814, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"06f6db4bf163d2d546d6d7cc0a6e8c3ddcb9c4a2","Message":".gitignore changes\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:01:15+02:00"}],"HeadCommit":{"Sha1":"06f6db4bf163d2d546d6d7cc0a6e8c3ddcb9c4a2","Message":".gitignore changes\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:01:15+02:00"},"CompareURL":"prokop/BI-PA2/compare/1af770b86038f2b81bd0169ea94bb4f0df2daf67...06f6db4bf163d2d546d6d7cc0a6e8c3ddcb9c4a2","Len":1}', 1683799405); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (815, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"e423f08cd48f6ca499509bb04edcdcb6ce4ce749","Message":"add AI player class\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:45:39+02:00"},{"Sha1":"1b6ec6c7839cc21ad4a164e2379f84bf3ea6f2e7","Message":"add some game methods and main\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:45:16+02:00"},{"Sha1":"b2f7da542d0d94e3d967f32d8019b1eeebaa7d00","Message":"effects\n\nadd clone ability, use in combined effect\nrename addLife\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:36:37+02:00"},{"Sha1":"165a66a91e362afec2269894b4ca79fead628094","Message":"add mana regeration effect\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:09:43+02:00"}],"HeadCommit":{"Sha1":"e423f08cd48f6ca499509bb04edcdcb6ce4ce749","Message":"add AI player class\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T12:45:39+02:00"},"CompareURL":"prokop/BI-PA2/compare/f6671837ffdf969d8475f1d4fbe127fed31e897f...e423f08cd48f6ca499509bb04edcdcb6ce4ce749","Len":4}', 1683801984); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (816, 4, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"47fa558c147cf434c26cb397de80ba089d2d1e6a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:09Z"},{"Sha1":"cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:07Z"}],"HeadCommit":{"Sha1":"47fa558c147cf434c26cb397de80ba089d2d1e6a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:09Z"},"CompareURL":"skj/sed/compare/ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f...47fa558c147cf434c26cb397de80ba089d2d1e6a","Len":2}', 1683807720); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (817, 1, 18, 4, 32, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"47fa558c147cf434c26cb397de80ba089d2d1e6a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:09Z"},{"Sha1":"cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:07Z"}],"HeadCommit":{"Sha1":"47fa558c147cf434c26cb397de80ba089d2d1e6a","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:09Z"},"CompareURL":"skj/sed/compare/ac2c3e3afecbe9dac05dfd0a41ee14d852d0356f...47fa558c147cf434c26cb397de80ba089d2d1e6a","Len":2}', 1683807721); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (818, 4, 18, 4, 32, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:07Z"}],"HeadCommit":{"Sha1":"cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:07Z"},"CompareURL":"skj/sed/compare/3a6b0c06a2ebf2e4908d4c399c0cc163756fe3d2...cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Len":1}', 1683807721); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (819, 1, 18, 4, 32, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:07Z"}],"HeadCommit":{"Sha1":"cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T06:42:07Z"},"CompareURL":"skj/sed/compare/3a6b0c06a2ebf2e4908d4c399c0cc163756fe3d2...cb7aec61c8b0d6b43cc01f31856279f28d0c1118","Len":1}', 1683807721); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (820, 4, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:54Z"},{"Sha1":"c2dde2fd30f701736015d87fa796aa46e2349bb8","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:53Z"}],"HeadCommit":{"Sha1":"dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:54Z"},"CompareURL":"skj/bash/compare/a8d20eb7d1ead288fdda5ec82c12587ec365e80a...dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9","Len":2}', 1683807722); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (821, 1, 18, 4, 31, 0, 0, 'main', 1, '{"Commits":[{"Sha1":"dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:54Z"},{"Sha1":"c2dde2fd30f701736015d87fa796aa46e2349bb8","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:53Z"}],"HeadCommit":{"Sha1":"dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9","Message":"Merge branch ''source''\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:54Z"},"CompareURL":"skj/bash/compare/a8d20eb7d1ead288fdda5ec82c12587ec365e80a...dd9bdd36caa4e43e4baa98a5ff7123f62f3391a9","Len":2}', 1683807722); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (822, 4, 18, 4, 31, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"c2dde2fd30f701736015d87fa796aa46e2349bb8","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:53Z"}],"HeadCommit":{"Sha1":"c2dde2fd30f701736015d87fa796aa46e2349bb8","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:53Z"},"CompareURL":"skj/bash/compare/9c167eddee08526d78333c0006c3af77d686e05d...c2dde2fd30f701736015d87fa796aa46e2349bb8","Len":1}', 1683807723); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (823, 1, 18, 4, 31, 0, 0, 'source', 1, '{"Commits":[{"Sha1":"c2dde2fd30f701736015d87fa796aa46e2349bb8","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:53Z"}],"HeadCommit":{"Sha1":"c2dde2fd30f701736015d87fa796aa46e2349bb8","Message":" \"Update assignment\"\n","AuthorEmail":"pavel@petrzela.eu","AuthorName":"Runner = Basic shell","CommitterEmail":"pavel@petrzela.eu","CommitterName":"Runner = Basic shell","Timestamp":"2023-05-11T07:14:53Z"},"CompareURL":"skj/bash/compare/9c167eddee08526d78333c0006c3af77d686e05d...c2dde2fd30f701736015d87fa796aa46e2349bb8","Len":1}', 1683807723); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (824, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"01ef97badd0758bb2c633cc76f9a87d5a7b1cbeb","Message":"add example and prompt\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T23:21:21+02:00"},{"Sha1":"8c4da073a6d46f70a7873efe83651ac672a08837","Message":"draw card effect\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T23:11:42+02:00"},{"Sha1":"ca5b36030c41257eb7eb7a8e8fff63d327b4646c","Message":"handle cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T22:44:04+02:00"},{"Sha1":"7766133043ce6d465119fa55a6ca2bd836bda881","Message":"more UI methods\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T22:43:43+02:00"}],"HeadCommit":{"Sha1":"01ef97badd0758bb2c633cc76f9a87d5a7b1cbeb","Message":"add example and prompt\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-11T23:21:21+02:00"},"CompareURL":"prokop/BI-PA2/compare/e423f08cd48f6ca499509bb04edcdcb6ce4ce749...01ef97badd0758bb2c633cc76f9a87d5a7b1cbeb","Len":4}', 1683840100); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (825, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9","Message":"JGRP version 0.53.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T16:00:25+02:00"}],"HeadCommit":{"Sha1":"4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9","Message":"JGRP version 0.53.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T16:00:25+02:00"},"CompareURL":"h21/HoralServer-web/compare/395a1e2fa7752bb1095f298c092ef06735ee85f3...4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9","Len":1}', 1683900073); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (826, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9","Message":"JGRP version 0.53.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T16:00:25+02:00"}],"HeadCommit":{"Sha1":"4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9","Message":"JGRP version 0.53.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T16:00:25+02:00"},"CompareURL":"h21/HoralServer-web/compare/395a1e2fa7752bb1095f298c092ef06735ee85f3...4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9","Len":1}', 1683900073); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (827, 1, 1, 1, 44, 0, 0, '', 1, '', 1683916096); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (828, 4, 1, 1, 44, 0, 0, '', 1, '', 1683916096); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (829, 1, 5, 1, 44, 0, 0, 'refs/heads/master', 1, '', 1683916120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (830, 4, 5, 1, 44, 0, 0, 'refs/heads/master', 1, '', 1683916120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (831, 1, 5, 1, 44, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"43764ac0195af40c3a0b0fcbdeb2fca5b5138ebc","Message":"progscan\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T20:27:58+02:00"}],"HeadCommit":{"Sha1":"43764ac0195af40c3a0b0fcbdeb2fca5b5138ebc","Message":"progscan\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T20:27:58+02:00"},"CompareURL":"","Len":1}', 1683916120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (832, 4, 5, 1, 44, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"43764ac0195af40c3a0b0fcbdeb2fca5b5138ebc","Message":"progscan\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T20:27:58+02:00"}],"HeadCommit":{"Sha1":"43764ac0195af40c3a0b0fcbdeb2fca5b5138ebc","Message":"progscan\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-05-12T20:27:58+02:00"},"CompareURL":"","Len":1}', 1683916120); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (833, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"fb3db46a1291ddaaed9c107e66fb86e7eddf0c05","Message":"add save... files arguments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T11:54:10+02:00"},{"Sha1":"5ec91a0fb29271ed607cfd9c6416bbd91bc30c70","Message":"extend example\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T11:53:50+02:00"},{"Sha1":"3f1c7e3cff008e8b8003e2917409d9b6603e491f","Message":"add shared_ptr to effect\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T11:49:33+02:00"}],"HeadCommit":{"Sha1":"fb3db46a1291ddaaed9c107e66fb86e7eddf0c05","Message":"add save... files arguments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T11:54:10+02:00"},"CompareURL":"prokop/BI-PA2/compare/01ef97badd0758bb2c633cc76f9a87d5a7b1cbeb...fb3db46a1291ddaaed9c107e66fb86e7eddf0c05","Len":3}', 1683971669); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (834, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"d1fd3be2750fd0f5935e8c1a06063cf95f2ffee9","Message":"add comments for effect class\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T19:26:16+02:00"}],"HeadCommit":{"Sha1":"d1fd3be2750fd0f5935e8c1a06063cf95f2ffee9","Message":"add comments for effect class\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T19:26:16+02:00"},"CompareURL":"prokop/BI-PA2/compare/fb3db46a1291ddaaed9c107e66fb86e7eddf0c05...d1fd3be2750fd0f5935e8c1a06063cf95f2ffee9","Len":1}', 1683998796); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (835, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"a763f25eeb0a0c3d07588dde95e2c06c4ca751af","Message":"add class comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T20:52:27+02:00"}],"HeadCommit":{"Sha1":"a763f25eeb0a0c3d07588dde95e2c06c4ca751af","Message":"add class comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-13T20:52:27+02:00"},"CompareURL":"prokop/BI-PA2/compare/d1fd3be2750fd0f5935e8c1a06063cf95f2ffee9...a763f25eeb0a0c3d07588dde95e2c06c4ca751af","Len":1}', 1684003967); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (836, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"e36f477051a8c453556499e4bdb820a06c9f3dce","Message":"make generator\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-14T18:49:57+02:00"}],"HeadCommit":{"Sha1":"e36f477051a8c453556499e4bdb820a06c9f3dce","Message":"make generator\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-14T18:49:57+02:00"},"CompareURL":"prokop/BI-PA2/compare/a763f25eeb0a0c3d07588dde95e2c06c4ca751af...e36f477051a8c453556499e4bdb820a06c9f3dce","Len":1}', 1684083018); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (837, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"a7502752b2f72f4d71545d6fd0e5a85eebdd8622","Message":"create effect start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-16T23:17:12+02:00"}],"HeadCommit":{"Sha1":"a7502752b2f72f4d71545d6fd0e5a85eebdd8622","Message":"create effect start\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-16T23:17:12+02:00"},"CompareURL":"prokop/BI-PA2/compare/e36f477051a8c453556499e4bdb820a06c9f3dce...a7502752b2f72f4d71545d6fd0e5a85eebdd8622","Len":1}', 1684271865); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (838, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"01bd7a16ff419526e92abf39116b9a14f557fe68","Message":"include combined effect into card\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T16:19:07+02:00"}],"HeadCommit":{"Sha1":"01bd7a16ff419526e92abf39116b9a14f557fe68","Message":"include combined effect into card\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T16:19:07+02:00"},"CompareURL":"prokop/BI-PA2/compare/a7502752b2f72f4d71545d6fd0e5a85eebdd8622...01bd7a16ff419526e92abf39116b9a14f557fe68","Len":1}', 1684333170); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (839, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"72702f834a28d0db51d9fa5c967ce058f15cfdac","Message":"include combined effect into card\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T16:19:07+02:00"}],"HeadCommit":{"Sha1":"72702f834a28d0db51d9fa5c967ce058f15cfdac","Message":"include combined effect into card\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T16:19:07+02:00"},"CompareURL":"prokop/BI-PA2/compare/01bd7a16ff419526e92abf39116b9a14f557fe68...72702f834a28d0db51d9fa5c967ce058f15cfdac","Len":1}', 1684333389); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (840, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"c65ffa78300e6eb07c04533f291d079530c67666","Message":"allow make\n\ndo card creator\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T17:35:57+02:00"}],"HeadCommit":{"Sha1":"c65ffa78300e6eb07c04533f291d079530c67666","Message":"allow make\n\ndo card creator\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T17:35:57+02:00"},"CompareURL":"prokop/BI-PA2/compare/72702f834a28d0db51d9fa5c967ce058f15cfdac...c65ffa78300e6eb07c04533f291d079530c67666","Len":1}', 1684337869); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (841, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"7a7b3e068a9b76871320bc095c73aa9ec9dffe02","Message":"load player\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T21:57:17+02:00"},{"Sha1":"2435748fc4bbdf9b201b71107c43a7cfe5a1edbd","Message":"save cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T21:23:02+02:00"},{"Sha1":"536297f77410f3ad0134f7821dd4c03775afe2e4","Message":"effect save\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T21:10:30+02:00"}],"HeadCommit":{"Sha1":"7a7b3e068a9b76871320bc095c73aa9ec9dffe02","Message":"load player\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-17T21:57:17+02:00"},"CompareURL":"prokop/BI-PA2/compare/c65ffa78300e6eb07c04533f291d079530c67666...7a7b3e068a9b76871320bc095c73aa9ec9dffe02","Len":3}', 1684353522); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (842, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"a573efeea364614d75bf42de3d027b045fcbb578","Message":"move cardcreator functionality\n\nanother constructor or load static method if polymorph\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-18T12:58:40+02:00"},{"Sha1":"4459f7f637495af10147515587d77726431da737","Message":"player save and load and save game\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-18T12:42:25+02:00"}],"HeadCommit":{"Sha1":"a573efeea364614d75bf42de3d027b045fcbb578","Message":"move cardcreator functionality\n\nanother constructor or load static method if polymorph\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-18T12:58:40+02:00"},"CompareURL":"prokop/BI-PA2/compare/7a7b3e068a9b76871320bc095c73aa9ec9dffe02...a573efeea364614d75bf42de3d027b045fcbb578","Len":2}', 1684407685); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (843, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"2d4d4cbfb58d4f97b5ea4e987d2b1aa51d75a29c","Message":"add basic game loop\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-18T21:23:10+02:00"}],"HeadCommit":{"Sha1":"2d4d4cbfb58d4f97b5ea4e987d2b1aa51d75a29c","Message":"add basic game loop\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-18T21:23:10+02:00"},"CompareURL":"prokop/BI-PA2/compare/a573efeea364614d75bf42de3d027b045fcbb578...2d4d4cbfb58d4f97b5ea4e987d2b1aa51d75a29c","Len":1}', 1684438022); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (844, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"f12e529033d8e7ad1240da10218dd092db5baeb5","Message":"load config\n\nvelmi krehce zacina fungovat\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-18T23:27:20+02:00"}],"HeadCommit":{"Sha1":"f12e529033d8e7ad1240da10218dd092db5baeb5","Message":"load config\n\nvelmi krehce zacina fungovat\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-18T23:27:20+02:00"},"CompareURL":"prokop/BI-PA2/compare/2d4d4cbfb58d4f97b5ea4e987d2b1aa51d75a29c...f12e529033d8e7ad1240da10218dd092db5baeb5","Len":1}', 1684445291); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (845, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"7dea9ef8cfd177803262a647ee59852dd1113700","Message":".o zavisle na .h\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-19T11:22:42+02:00"}],"HeadCommit":{"Sha1":"7dea9ef8cfd177803262a647ee59852dd1113700","Message":".o zavisle na .h\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-19T11:22:42+02:00"},"CompareURL":"prokop/BI-PA2/compare/f12e529033d8e7ad1240da10218dd092db5baeb5...7dea9ef8cfd177803262a647ee59852dd1113700","Len":1}', 1684488188); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (846, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"03929cac8bc5fe52b4454eabee678c7e88bfbc10","Message":"handle EOF and save\n\nmake + sanitizer\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T10:53:24+02:00"},{"Sha1":"0c848052c67a12395e57e4fefe569f2c2079ef25","Message":"only .o make\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-19T16:03:25+02:00"}],"HeadCommit":{"Sha1":"03929cac8bc5fe52b4454eabee678c7e88bfbc10","Message":"handle EOF and save\n\nmake + sanitizer\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T10:53:24+02:00"},"CompareURL":"prokop/BI-PA2/compare/7dea9ef8cfd177803262a647ee59852dd1113700...03929cac8bc5fe52b4454eabee678c7e88bfbc10","Len":2}', 1684572829); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (847, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"0610b41ec20f43178d6385672b7a1638add7a91e","Message":"add some player checks\n\nrepair draw card\nadd help message\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T15:23:39+02:00"}],"HeadCommit":{"Sha1":"0610b41ec20f43178d6385672b7a1638add7a91e","Message":"add some player checks\n\nrepair draw card\nadd help message\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T15:23:39+02:00"},"CompareURL":"prokop/BI-PA2/compare/03929cac8bc5fe52b4454eabee678c7e88bfbc10...0610b41ec20f43178d6385672b7a1638add7a91e","Len":1}', 1684589060); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (848, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"c04c4b6f370fe99b58d5a0424478e2259770defb","Message":"menu enhancion\n\ncan jump out on non number, print numbered cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:22:00+02:00"},{"Sha1":"e2f521383810c7422034d078feea97e8c7b0448e","Message":"mana checks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T17:58:29+02:00"},{"Sha1":"8b10c8ddcbcc64f2d0b496e77fb837de59d5785f","Message":"checks inputs\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T17:53:52+02:00"}],"HeadCommit":{"Sha1":"c04c4b6f370fe99b58d5a0424478e2259770defb","Message":"menu enhancion\n\ncan jump out on non number, print numbered cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:22:00+02:00"},"CompareURL":"prokop/BI-PA2/compare/0610b41ec20f43178d6385672b7a1638add7a91e...c04c4b6f370fe99b58d5a0424478e2259770defb","Len":3}', 1684599760); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (849, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"51dd09751f5ab12c2460bc77f52d49ea30f4fb07","Message":"add NL to end of files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:26:34+02:00"}],"HeadCommit":{"Sha1":"51dd09751f5ab12c2460bc77f52d49ea30f4fb07","Message":"add NL to end of files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:26:34+02:00"},"CompareURL":"prokop/BI-PA2/compare/c04c4b6f370fe99b58d5a0424478e2259770defb...51dd09751f5ab12c2460bc77f52d49ea30f4fb07","Len":1}', 1684600015); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (850, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"b2abae3af5d965a87fbe3e24c718d695768a00cc","Message":"add NL to end of files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:26:34+02:00"}],"HeadCommit":{"Sha1":"b2abae3af5d965a87fbe3e24c718d695768a00cc","Message":"add NL to end of files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:26:34+02:00"},"CompareURL":"prokop/BI-PA2/compare/51dd09751f5ab12c2460bc77f52d49ea30f4fb07...b2abae3af5d965a87fbe3e24c718d695768a00cc","Len":1}', 1684600191); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (851, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"51b4d1509d18eeab7e5d203b0a1922df6c4c4a07","Message":"no start turn again after load\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:35:11+02:00"}],"HeadCommit":{"Sha1":"51b4d1509d18eeab7e5d203b0a1922df6c4c4a07","Message":"no start turn again after load\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:35:11+02:00"},"CompareURL":"prokop/BI-PA2/compare/b2abae3af5d965a87fbe3e24c718d695768a00cc...51b4d1509d18eeab7e5d203b0a1922df6c4c4a07","Len":1}', 1684600530); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (852, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"aea8dd5107f0c7e70b3f384255f3078345466ab9","Message":"load arguments correctly\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:37:39+02:00"}],"HeadCommit":{"Sha1":"aea8dd5107f0c7e70b3f384255f3078345466ab9","Message":"load arguments correctly\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:37:39+02:00"},"CompareURL":"prokop/BI-PA2/compare/51b4d1509d18eeab7e5d203b0a1922df6c4c4a07...aea8dd5107f0c7e70b3f384255f3078345466ab9","Len":1}', 1684600676); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (853, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"9889a77e02a3ef10399862ce0d11406549b1926c","Message":"add examples\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:43:11+02:00"}],"HeadCommit":{"Sha1":"9889a77e02a3ef10399862ce0d11406549b1926c","Message":"add examples\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T18:43:11+02:00"},"CompareURL":"prokop/BI-PA2/compare/aea8dd5107f0c7e70b3f384255f3078345466ab9...9889a77e02a3ef10399862ce0d11406549b1926c","Len":1}', 1684601007); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (854, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"bb90afc24204d03db3d6d25bcc3fecf621075123","Message":"add basic AI\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T19:54:49+02:00"}],"HeadCommit":{"Sha1":"bb90afc24204d03db3d6d25bcc3fecf621075123","Message":"add basic AI\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T19:54:49+02:00"},"CompareURL":"prokop/BI-PA2/compare/9889a77e02a3ef10399862ce0d11406549b1926c...bb90afc24204d03db3d6d25bcc3fecf621075123","Len":1}', 1684605304); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (855, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"99f4fa09c9f1fc6df18602bf5e2d3ca695390ac9","Message":"add AI info message about played cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T20:14:20+02:00"}],"HeadCommit":{"Sha1":"99f4fa09c9f1fc6df18602bf5e2d3ca695390ac9","Message":"add AI info message about played cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-20T20:14:20+02:00"},"CompareURL":"prokop/BI-PA2/compare/bb90afc24204d03db3d6d25bcc3fecf621075123...99f4fa09c9f1fc6df18602bf5e2d3ca695390ac9","Len":1}', 1684606486); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (856, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"f8fbd4aa25e3a8228f297327252761cae3b7525e","Message":"make use gcc -MM\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-21T08:46:35+02:00"}],"HeadCommit":{"Sha1":"f8fbd4aa25e3a8228f297327252761cae3b7525e","Message":"make use gcc -MM\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-21T08:46:35+02:00"},"CompareURL":"prokop/BI-PA2/compare/99f4fa09c9f1fc6df18602bf5e2d3ca695390ac9...f8fbd4aa25e3a8228f297327252761cae3b7525e","Len":1}', 1684651615); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (857, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"839bde90f22ea344629dd069c6e9fdc38083f3ad","Message":"make use gcc -MM\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-21T08:46:35+02:00"}],"HeadCommit":{"Sha1":"839bde90f22ea344629dd069c6e9fdc38083f3ad","Message":"make use gcc -MM\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-21T08:46:35+02:00"},"CompareURL":"prokop/BI-PA2/compare/f8fbd4aa25e3a8228f297327252761cae3b7525e...839bde90f22ea344629dd069c6e9fdc38083f3ad","Len":1}', 1684651697); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (858, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"4b4db86e640d8a1ae9e642ae1a8e013bae3c548b","Message":"add usage\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-21T13:08:29+02:00"}],"HeadCommit":{"Sha1":"4b4db86e640d8a1ae9e642ae1a8e013bae3c548b","Message":"add usage\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-21T13:08:29+02:00"},"CompareURL":"prokop/BI-PA2/compare/839bde90f22ea344629dd069c6e9fdc38083f3ad...4b4db86e640d8a1ae9e642ae1a8e013bae3c548b","Len":1}', 1684667321); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (859, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"4c8d77165cc43f9fd8eae2346522b95ab3c66b3b","Message":"add doxygen\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-22T21:38:26+02:00"}],"HeadCommit":{"Sha1":"4c8d77165cc43f9fd8eae2346522b95ab3c66b3b","Message":"add doxygen\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-22T21:38:26+02:00"},"CompareURL":"prokop/BI-PA2/compare/4b4db86e640d8a1ae9e642ae1a8e013bae3c548b...4c8d77165cc43f9fd8eae2346522b95ab3c66b3b","Len":1}', 1684784323); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (860, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"ba2a86cdf2633ab52d879ab9a95097d782c66a7c","Message":"add doxygen\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-22T21:38:26+02:00"}],"HeadCommit":{"Sha1":"ba2a86cdf2633ab52d879ab9a95097d782c66a7c","Message":"add doxygen\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-22T21:38:26+02:00"},"CompareURL":"prokop/BI-PA2/compare/4c8d77165cc43f9fd8eae2346522b95ab3c66b3b...ba2a86cdf2633ab52d879ab9a95097d782c66a7c","Len":1}', 1684949257); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (861, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"9c030e9cd51346a0140d0c17b44b5a13794348f0","Message":"add -h argument\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T11:33:25+02:00"},{"Sha1":"2e2af82a76f74ca48097bd5aec987e08b5d3585d","Message":"translate messages to czech\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T11:30:14+02:00"},{"Sha1":"02c4fc028eebb0683d931781ab72feb4a76db9cd","Message":"AI start message\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T10:08:55+02:00"},{"Sha1":"4aeeb8c37a2181be339c7478cab60aebab93508f","Message":"add events messages\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T10:06:20+02:00"}],"HeadCommit":{"Sha1":"9c030e9cd51346a0140d0c17b44b5a13794348f0","Message":"add -h argument\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T11:33:25+02:00"},"CompareURL":"prokop/BI-PA2/compare/ba2a86cdf2633ab52d879ab9a95097d782c66a7c...9c030e9cd51346a0140d0c17b44b5a13794348f0","Len":4}', 1685007245); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (862, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"91630c1885c1316925c5153cfd664ab051cd8732","Message":"better controls\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T11:43:09+02:00"}],"HeadCommit":{"Sha1":"91630c1885c1316925c5153cfd664ab051cd8732","Message":"better controls\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T11:43:09+02:00"},"CompareURL":"prokop/BI-PA2/compare/9c030e9cd51346a0140d0c17b44b5a13794348f0...91630c1885c1316925c5153cfd664ab051cd8732","Len":1}', 1685007841); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (863, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"1995cc1c7ce761176c7e0ef27d1dee05b4b94f90","Message":"add comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T13:22:28+02:00"}],"HeadCommit":{"Sha1":"1995cc1c7ce761176c7e0ef27d1dee05b4b94f90","Message":"add comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T13:22:28+02:00"},"CompareURL":"prokop/BI-PA2/compare/91630c1885c1316925c5153cfd664ab051cd8732...1995cc1c7ce761176c7e0ef27d1dee05b4b94f90","Len":1}', 1685013782); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (864, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"ac745370c8fa61a69e05552819b163598889bef0","Message":"add some cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T20:08:12+02:00"},{"Sha1":"a77f94ea5458c1395c91da3a4bb090dd963acdc7","Message":"\u003e in prompt\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T20:07:40+02:00"}],"HeadCommit":{"Sha1":"ac745370c8fa61a69e05552819b163598889bef0","Message":"add some cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T20:08:12+02:00"},"CompareURL":"prokop/BI-PA2/compare/1995cc1c7ce761176c7e0ef27d1dee05b4b94f90...ac745370c8fa61a69e05552819b163598889bef0","Len":2}', 1685038108); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (865, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"3e7f8176acad13347adcc13fd3639ade6b4b766d","Message":"change to brief doxygen comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T21:40:11+02:00"}],"HeadCommit":{"Sha1":"3e7f8176acad13347adcc13fd3639ade6b4b766d","Message":"change to brief doxygen comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-25T21:40:11+02:00"},"CompareURL":"prokop/BI-PA2/compare/ac745370c8fa61a69e05552819b163598889bef0...3e7f8176acad13347adcc13fd3639ade6b4b766d","Len":1}', 1685043693); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (866, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"15db2602b991e2062268c6dc8430a5f78ec55941","Message":"add comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-26T13:15:25+02:00"}],"HeadCommit":{"Sha1":"15db2602b991e2062268c6dc8430a5f78ec55941","Message":"add comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-26T13:15:25+02:00"},"CompareURL":"prokop/BI-PA2/compare/3e7f8176acad13347adcc13fd3639ade6b4b766d...15db2602b991e2062268c6dc8430a5f78ec55941","Len":1}', 1685099743); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (867, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"38ff5249007baf7b48f691a166e8b30ee60d5b09","Message":"fix cards count check in draw\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-26T13:25:30+02:00"},{"Sha1":"e6c61e41712837fd4d85bdd91364268ec78e2a10","Message":"random card shuffle\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-26T13:22:29+02:00"}],"HeadCommit":{"Sha1":"38ff5249007baf7b48f691a166e8b30ee60d5b09","Message":"fix cards count check in draw\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-26T13:25:30+02:00"},"CompareURL":"prokop/BI-PA2/compare/15db2602b991e2062268c6dc8430a5f78ec55941...38ff5249007baf7b48f691a166e8b30ee60d5b09","Len":2}', 1685100351); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (868, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"d0dfa176dc073706eb89acf0c17837c47c256d70","Message":"add cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-26T20:26:32+02:00"}],"HeadCommit":{"Sha1":"d0dfa176dc073706eb89acf0c17837c47c256d70","Message":"add cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-26T20:26:32+02:00"},"CompareURL":"prokop/BI-PA2/compare/38ff5249007baf7b48f691a166e8b30ee60d5b09...d0dfa176dc073706eb89acf0c17837c47c256d70","Len":1}', 1685125605); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (869, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"4466ba5d562041e2b59c6fe1958362d85ba4b7aa","Message":"add init page\n\ndescription of config\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T15:39:59+02:00"}],"HeadCommit":{"Sha1":"4466ba5d562041e2b59c6fe1958362d85ba4b7aa","Message":"add init page\n\ndescription of config\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T15:39:59+02:00"},"CompareURL":"prokop/BI-PA2/compare/d0dfa176dc073706eb89acf0c17837c47c256d70...4466ba5d562041e2b59c6fe1958362d85ba4b7aa","Len":1}', 1685367612); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (870, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"8abb8fd23a2f03e3d76dc961f1747daa84c8d23e","Message":"dokumentace mechanik\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T16:21:00+02:00"}],"HeadCommit":{"Sha1":"8abb8fd23a2f03e3d76dc961f1747daa84c8d23e","Message":"dokumentace mechanik\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T16:21:00+02:00"},"CompareURL":"prokop/BI-PA2/compare/4466ba5d562041e2b59c6fe1958362d85ba4b7aa...8abb8fd23a2f03e3d76dc961f1747daa84c8d23e","Len":1}', 1685370075); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (871, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"e0f389e30c1ed1164b1922a7a79e5876a8914fda","Message":"update make and doxyfile\n\nmake + run and compile\ndoxyfile out to doc\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T17:07:04+02:00"}],"HeadCommit":{"Sha1":"e0f389e30c1ed1164b1922a7a79e5876a8914fda","Message":"update make and doxyfile\n\nmake + run and compile\ndoxyfile out to doc\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T17:07:04+02:00"},"CompareURL":"prokop/BI-PA2/compare/8abb8fd23a2f03e3d76dc961f1747daa84c8d23e...e0f389e30c1ed1164b1922a7a79e5876a8914fda","Len":1}', 1685372857); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (872, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"9e74c60e7c4590ac08ca24c1e40bd051094fc13d","Message":"make clean\n\nclean all\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T17:08:10+02:00"}],"HeadCommit":{"Sha1":"9e74c60e7c4590ac08ca24c1e40bd051094fc13d","Message":"make clean\n\nclean all\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T17:08:10+02:00"},"CompareURL":"prokop/BI-PA2/compare/e0f389e30c1ed1164b1922a7a79e5876a8914fda...9e74c60e7c4590ac08ca24c1e40bd051094fc13d","Len":1}', 1685372909); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (873, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"42afacd7296e10b1b7065666b2ee7074af57f1cc","Message":"add more comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T18:13:09+02:00"}],"HeadCommit":{"Sha1":"42afacd7296e10b1b7065666b2ee7074af57f1cc","Message":"add more comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T18:13:09+02:00"},"CompareURL":"prokop/BI-PA2/compare/9e74c60e7c4590ac08ca24c1e40bd051094fc13d...42afacd7296e10b1b7065666b2ee7074af57f1cc","Len":1}', 1685376808); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (874, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"445218e0c567873e0e56466d2b5957374267299c","Message":"add more comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T18:13:09+02:00"}],"HeadCommit":{"Sha1":"445218e0c567873e0e56466d2b5957374267299c","Message":"add more comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-29T18:13:09+02:00"},"CompareURL":"prokop/BI-PA2/compare/42afacd7296e10b1b7065666b2ee7074af57f1cc...445218e0c567873e0e56466d2b5957374267299c","Len":1}', 1685377234); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (875, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"90d603b737ee96c06f04c25f2b7a01418153cab7","Message":"betterch checks killCreatue\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T12:03:56+02:00"}],"HeadCommit":{"Sha1":"90d603b737ee96c06f04c25f2b7a01418153cab7","Message":"betterch checks killCreatue\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T12:03:56+02:00"},"CompareURL":"prokop/BI-PA2/compare/445218e0c567873e0e56466d2b5957374267299c...90d603b737ee96c06f04c25f2b7a01418153cab7","Len":1}', 1685441064); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (876, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"43618609675ab7cf74ac6c391e77644d9ff75688","Message":"more comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T13:20:03+02:00"}],"HeadCommit":{"Sha1":"43618609675ab7cf74ac6c391e77644d9ff75688","Message":"more comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T13:20:03+02:00"},"CompareURL":"prokop/BI-PA2/compare/90d603b737ee96c06f04c25f2b7a01418153cab7...43618609675ab7cf74ac6c391e77644d9ff75688","Len":1}', 1685445618); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (877, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"285eb9ed01b9f3226b1b9c167835efb64e62bd0e","Message":"add prohlaseni\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T17:30:54+02:00"}],"HeadCommit":{"Sha1":"285eb9ed01b9f3226b1b9c167835efb64e62bd0e","Message":"add prohlaseni\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T17:30:54+02:00"},"CompareURL":"prokop/BI-PA2/compare/43618609675ab7cf74ac6c391e77644d9ff75688...285eb9ed01b9f3226b1b9c167835efb64e62bd0e","Len":1}', 1685460668); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (878, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"20a81fb1befad6dcfb93de74eebcf1f1bc8b947f","Message":"mv genMake to assets\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T17:31:55+02:00"}],"HeadCommit":{"Sha1":"20a81fb1befad6dcfb93de74eebcf1f1bc8b947f","Message":"mv genMake to assets\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T17:31:55+02:00"},"CompareURL":"prokop/BI-PA2/compare/285eb9ed01b9f3226b1b9c167835efb64e62bd0e...20a81fb1befad6dcfb93de74eebcf1f1bc8b947f","Len":1}', 1685460732); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (879, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"decaf057deadc5127fadb28134f881de09c5c939","Message":"add class diagram\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T17:45:43+02:00"}],"HeadCommit":{"Sha1":"decaf057deadc5127fadb28134f881de09c5c939","Message":"add class diagram\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T17:45:43+02:00"},"CompareURL":"prokop/BI-PA2/compare/20a81fb1befad6dcfb93de74eebcf1f1bc8b947f...decaf057deadc5127fadb28134f881de09c5c939","Len":1}', 1685461560); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (880, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"b2fe02b20221adc947241acba35e0e41ecccc3f1","Message":"add close statements\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T18:16:54+02:00"},{"Sha1":"b5a591a689db73498402eddd691906a4e2cf2e9a","Message":"add cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T18:14:18+02:00"}],"HeadCommit":{"Sha1":"b2fe02b20221adc947241acba35e0e41ecccc3f1","Message":"add close statements\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T18:16:54+02:00"},"CompareURL":"prokop/BI-PA2/compare/decaf057deadc5127fadb28134f881de09c5c939...b2fe02b20221adc947241acba35e0e41ecccc3f1","Len":2}', 1685463438); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (881, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"0c9b8cff3ba2421c542693cb04a38eee0e6700b0","Message":"better savefile\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T18:36:39+02:00"},{"Sha1":"9ba54eab68962cc4f40ef0ad40dad29879632417","Message":"repair cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T18:36:30+02:00"},{"Sha1":"069075865b179c2e425e3b9babd5d60cdd9471de","Message":"add card description description\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T18:36:10+02:00"}],"HeadCommit":{"Sha1":"0c9b8cff3ba2421c542693cb04a38eee0e6700b0","Message":"better savefile\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T18:36:39+02:00"},"CompareURL":"prokop/BI-PA2/compare/b2fe02b20221adc947241acba35e0e41ecccc3f1...0c9b8cff3ba2421c542693cb04a38eee0e6700b0","Len":3}', 1685464617); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (882, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"1ec8914cf308c9ecce12e35dd462fa64557a1343","Message":"add throw comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T19:00:18+02:00"}],"HeadCommit":{"Sha1":"1ec8914cf308c9ecce12e35dd462fa64557a1343","Message":"add throw comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T19:00:18+02:00"},"CompareURL":"prokop/BI-PA2/compare/0c9b8cff3ba2421c542693cb04a38eee0e6700b0...1ec8914cf308c9ecce12e35dd462fa64557a1343","Len":1}', 1685466034); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (883, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"4ec2702867b651bcc44ab3371eb55f14b0def1b0","Message":"replace exit with return\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T19:30:07+02:00"}],"HeadCommit":{"Sha1":"4ec2702867b651bcc44ab3371eb55f14b0def1b0","Message":"replace exit with return\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T19:30:07+02:00"},"CompareURL":"prokop/BI-PA2/compare/1ec8914cf308c9ecce12e35dd462fa64557a1343...4ec2702867b651bcc44ab3371eb55f14b0def1b0","Len":1}', 1685467821); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (884, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"9a069d10caa54ecbfa3e54a76a98e7ea4402f204","Message":"add comments\n\nchecks on config string\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:13:41+02:00"}],"HeadCommit":{"Sha1":"9a069d10caa54ecbfa3e54a76a98e7ea4402f204","Message":"add comments\n\nchecks on config string\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:13:41+02:00"},"CompareURL":"prokop/BI-PA2/compare/4ec2702867b651bcc44ab3371eb55f14b0def1b0...9a069d10caa54ecbfa3e54a76a98e7ea4402f204","Len":1}', 1685477646); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (885, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"ba582e7b058c6187c141c4dbc018ac766e16fb3e","Message":"add config files check\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:22:29+02:00"},{"Sha1":"1a4816c58182cc230e31d0d5361f0c58c276b35e","Message":"add test files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:18:16+02:00"}],"HeadCommit":{"Sha1":"ba582e7b058c6187c141c4dbc018ac766e16fb3e","Message":"add config files check\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:22:29+02:00"},"CompareURL":"prokop/BI-PA2/compare/9a069d10caa54ecbfa3e54a76a98e7ea4402f204...ba582e7b058c6187c141c4dbc018ac766e16fb3e","Len":2}', 1685478170); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (886, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"08af8c932d73557b5403315287e1ca307fe77beb","Message":"add more input tests\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:30:14+02:00"}],"HeadCommit":{"Sha1":"08af8c932d73557b5403315287e1ca307fe77beb","Message":"add more input tests\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:30:14+02:00"},"CompareURL":"prokop/BI-PA2/compare/ba582e7b058c6187c141c4dbc018ac766e16fb3e...08af8c932d73557b5403315287e1ca307fe77beb","Len":1}', 1685478628); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (887, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"db6a72d1d3ac56b997dc6bdb7ed009c8c31c4198","Message":"add input tests\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:46:18+02:00"}],"HeadCommit":{"Sha1":"db6a72d1d3ac56b997dc6bdb7ed009c8c31c4198","Message":"add input tests\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:46:18+02:00"},"CompareURL":"prokop/BI-PA2/compare/08af8c932d73557b5403315287e1ca307fe77beb...db6a72d1d3ac56b997dc6bdb7ed009c8c31c4198","Len":1}', 1685479595); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (888, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"7ab9b2dbb1d58e21a9b958a4d1e0264de38de254","Message":"add input tests\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:54:43+02:00"}],"HeadCommit":{"Sha1":"7ab9b2dbb1d58e21a9b958a4d1e0264de38de254","Message":"add input tests\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:54:43+02:00"},"CompareURL":"prokop/BI-PA2/compare/db6a72d1d3ac56b997dc6bdb7ed009c8c31c4198...7ab9b2dbb1d58e21a9b958a4d1e0264de38de254","Len":1}', 1685480098); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (889, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"2f0f28181694d4b257ea9e3e497cefa347f34566","Message":"add test cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:59:28+02:00"}],"HeadCommit":{"Sha1":"2f0f28181694d4b257ea9e3e497cefa347f34566","Message":"add test cards\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-30T22:59:28+02:00"},"CompareURL":"prokop/BI-PA2/compare/7ab9b2dbb1d58e21a9b958a4d1e0264de38de254...2f0f28181694d4b257ea9e3e497cefa347f34566","Len":1}', 1685480382); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (890, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"aed03adfc270beec18f21da6bf1a64a1951a7c54","Message":"check negative draw and mana reg add\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T12:35:20+02:00"}],"HeadCommit":{"Sha1":"aed03adfc270beec18f21da6bf1a64a1951a7c54","Message":"check negative draw and mana reg add\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T12:35:20+02:00"},"CompareURL":"prokop/BI-PA2/compare/2f0f28181694d4b257ea9e3e497cefa347f34566...aed03adfc270beec18f21da6bf1a64a1951a7c54","Len":1}', 1685529345); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (891, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"4bce9227f21809ee2bad279c61082688de996c8e","Message":"add negative cards test\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T12:42:08+02:00"}],"HeadCommit":{"Sha1":"4bce9227f21809ee2bad279c61082688de996c8e","Message":"add negative cards test\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T12:42:08+02:00"},"CompareURL":"prokop/BI-PA2/compare/aed03adfc270beec18f21da6bf1a64a1951a7c54...4bce9227f21809ee2bad279c61082688de996c8e","Len":1}', 1685529745); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (892, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"548e50b3b591068e693935957632aab7a59b83f4","Message":"move documentation comments to header files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T13:24:15+02:00"}],"HeadCommit":{"Sha1":"548e50b3b591068e693935957632aab7a59b83f4","Message":"move documentation comments to header files\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T13:24:15+02:00"},"CompareURL":"prokop/BI-PA2/compare/4bce9227f21809ee2bad279c61082688de996c8e...548e50b3b591068e693935957632aab7a59b83f4","Len":1}', 1685532284); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (893, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"cd00d3efd90405ba92a6fe6af191673141d3903a","Message":"print save if fail write\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T13:47:49+02:00"}],"HeadCommit":{"Sha1":"cd00d3efd90405ba92a6fe6af191673141d3903a","Message":"print save if fail write\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T13:47:49+02:00"},"CompareURL":"prokop/BI-PA2/compare/548e50b3b591068e693935957632aab7a59b83f4...cd00d3efd90405ba92a6fe6af191673141d3903a","Len":1}', 1685533698); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (894, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"ce3edcf9137c54e1235dc0dcc36ec63ade4dd75d","Message":"some correct spelling\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:30:27+02:00"},{"Sha1":"ad8d5c8f7ca4a973839c5ab19b67b86d3bc5ca58","Message":"move document comments\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:30:15+02:00"}],"HeadCommit":{"Sha1":"ce3edcf9137c54e1235dc0dcc36ec63ade4dd75d","Message":"some correct spelling\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:30:27+02:00"},"CompareURL":"prokop/BI-PA2/compare/cd00d3efd90405ba92a6fe6af191673141d3903a...ce3edcf9137c54e1235dc0dcc36ec63ade4dd75d","Len":2}', 1685539850); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (895, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"02f22d39ce447a68e339edb2ebd2192dd415aa81","Message":"update help\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:36:20+02:00"}],"HeadCommit":{"Sha1":"02f22d39ce447a68e339edb2ebd2192dd415aa81","Message":"update help\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:36:20+02:00"},"CompareURL":"prokop/BI-PA2/compare/ce3edcf9137c54e1235dc0dcc36ec63ade4dd75d...02f22d39ce447a68e339edb2ebd2192dd415aa81","Len":1}', 1685540195); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (896, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"3958ea7048f08af117c52d3452746f95a10ddca4","Message":"update help\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:36:20+02:00"}],"HeadCommit":{"Sha1":"3958ea7048f08af117c52d3452746f95a10ddca4","Message":"update help\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:36:20+02:00"},"CompareURL":"prokop/BI-PA2/compare/02f22d39ce447a68e339edb2ebd2192dd415aa81...3958ea7048f08af117c52d3452746f95a10ddca4","Len":1}', 1685540246); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (897, 1, 9, 1, 28, 0, 0, 'refs/tags/progtest-1', 1, '{"Commits":null,"HeadCommit":{"Sha1":"cd00d3efd90405ba92a6fe6af191673141d3903a","Message":"print save if fail write\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T13:47:49+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...cd00d3efd90405ba92a6fe6af191673141d3903a","Len":0}', 1685540316); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (898, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"f747532208ca24b42966bd9da27ae72a123ffd33","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"},{"Sha1":"f510dfb9210d97b8444dd7886994e71517b1f1f8","Message":"update Makefile\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:11:56+02:00"}],"HeadCommit":{"Sha1":"f747532208ca24b42966bd9da27ae72a123ffd33","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"},"CompareURL":"prokop/BI-PA2/compare/3958ea7048f08af117c52d3452746f95a10ddca4...f747532208ca24b42966bd9da27ae72a123ffd33","Len":2}', 1685553290); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (899, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"a59f01e48f312b07d2cf864d5f5c452da5fd8aa7","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"}],"HeadCommit":{"Sha1":"a59f01e48f312b07d2cf864d5f5c452da5fd8aa7","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"},"CompareURL":"prokop/BI-PA2/compare/f747532208ca24b42966bd9da27ae72a123ffd33...a59f01e48f312b07d2cf864d5f5c452da5fd8aa7","Len":1}', 1685553481); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (900, 1, 9, 1, 28, 0, 0, 'refs/tags/progtest-2', 1, '{"Commits":null,"HeadCommit":{"Sha1":"a59f01e48f312b07d2cf864d5f5c452da5fd8aa7","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"},"CompareURL":"prokop/BI-PA2/compare/0000000000000000000000000000000000000000...a59f01e48f312b07d2cf864d5f5c452da5fd8aa7","Len":0}', 1685553685); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (901, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"befdd7677ad4d0b82b3f26560f98ad9d20bcbe12","Message":"Merge branch ''semestralka''\n\nprvni odevzdani\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:28:39+02:00"},{"Sha1":"a59f01e48f312b07d2cf864d5f5c452da5fd8aa7","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"},{"Sha1":"f510dfb9210d97b8444dd7886994e71517b1f1f8","Message":"update Makefile\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:11:56+02:00"},{"Sha1":"3958ea7048f08af117c52d3452746f95a10ddca4","Message":"update help\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:36:20+02:00"},{"Sha1":"ce3edcf9137c54e1235dc0dcc36ec63ade4dd75d","Message":"some correct spelling\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T15:30:27+02:00"}],"HeadCommit":{"Sha1":"befdd7677ad4d0b82b3f26560f98ad9d20bcbe12","Message":"Merge branch ''semestralka''\n\nprvni odevzdani\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:28:39+02:00"},"CompareURL":"prokop/BI-PA2/compare/06f6db4bf163d2d546d6d7cc0a6e8c3ddcb9c4a2...befdd7677ad4d0b82b3f26560f98ad9d20bcbe12","Len":94}', 1685554144); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (902, 1, 5, 1, 28, 0, 0, 'refs/heads/semestralka', 1, '{"Commits":[{"Sha1":"763dd12835f050e6ad49d35814809da4c74dbed8","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\nrepair Makefile\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"}],"HeadCommit":{"Sha1":"763dd12835f050e6ad49d35814809da4c74dbed8","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\nrepair Makefile\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"},"CompareURL":"prokop/BI-PA2/compare/a59f01e48f312b07d2cf864d5f5c452da5fd8aa7...763dd12835f050e6ad49d35814809da4c74dbed8","Len":1}', 1685563296); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (903, 1, 16, 1, 28, 0, 0, 'refs/tags/progtest-2', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1685563338); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (904, 1, 5, 1, 28, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"da63b6792d3e4716dcbefe27569808ada7a03274","Message":"Merge branch ''semestralka''\n\n1 obhajoba\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T22:02:47+02:00"},{"Sha1":"763dd12835f050e6ad49d35814809da4c74dbed8","Message":"some updates\n\ncheck death at end of turn\nadd const\nsome comments and checks\nrepair Makefile\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T19:13:24+02:00"}],"HeadCommit":{"Sha1":"da63b6792d3e4716dcbefe27569808ada7a03274","Message":"Merge branch ''semestralka''\n\n1 obhajoba\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-05-31T22:02:47+02:00"},"CompareURL":"prokop/BI-PA2/compare/befdd7677ad4d0b82b3f26560f98ad9d20bcbe12...da63b6792d3e4716dcbefe27569808ada7a03274","Len":2}', 1685563388); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (934, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"3073ef44d2b1110455bd0c33a293170062a0adab","Message":"JGRP version 0.54.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-19T10:18:53+02:00"}],"HeadCommit":{"Sha1":"3073ef44d2b1110455bd0c33a293170062a0adab","Message":"JGRP version 0.54.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-19T10:18:53+02:00"},"CompareURL":"h21/HoralServer-web/compare/4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9...3073ef44d2b1110455bd0c33a293170062a0adab","Len":1}', 1687162753); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (935, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"3073ef44d2b1110455bd0c33a293170062a0adab","Message":"JGRP version 0.54.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-19T10:18:53+02:00"}],"HeadCommit":{"Sha1":"3073ef44d2b1110455bd0c33a293170062a0adab","Message":"JGRP version 0.54.2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-19T10:18:53+02:00"},"CompareURL":"h21/HoralServer-web/compare/4f7769cc569cb7cc2349e4dbf6e6bd27a90a20f9...3073ef44d2b1110455bd0c33a293170062a0adab","Len":1}', 1687162753); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (947, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"2727b507d0e473215668d8d1ce53c89ac224b6cc","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"}],"HeadCommit":{"Sha1":"2727b507d0e473215668d8d1ce53c89ac224b6cc","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"},"CompareURL":"h21/fotky-docker/compare/0d18a85afa82d74eaa314ab63d00b258716a49ca...2727b507d0e473215668d8d1ce53c89ac224b6cc","Len":1}', 1687509244); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (948, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"2727b507d0e473215668d8d1ce53c89ac224b6cc","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"}],"HeadCommit":{"Sha1":"2727b507d0e473215668d8d1ce53c89ac224b6cc","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"},"CompareURL":"h21/fotky-docker/compare/0d18a85afa82d74eaa314ab63d00b258716a49ca...2727b507d0e473215668d8d1ce53c89ac224b6cc","Len":1}', 1687509244); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (949, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c5f26ac69bbbc209e08770c3bec30455d8c511f2","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"}],"HeadCommit":{"Sha1":"c5f26ac69bbbc209e08770c3bec30455d8c511f2","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"},"CompareURL":"h21/fotky-docker/compare/2727b507d0e473215668d8d1ce53c89ac224b6cc...c5f26ac69bbbc209e08770c3bec30455d8c511f2","Len":1}', 1687509316); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (950, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c5f26ac69bbbc209e08770c3bec30455d8c511f2","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"}],"HeadCommit":{"Sha1":"c5f26ac69bbbc209e08770c3bec30455d8c511f2","Message":"make install script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:33:01+02:00"},"CompareURL":"h21/fotky-docker/compare/2727b507d0e473215668d8d1ce53c89ac224b6cc...c5f26ac69bbbc209e08770c3bec30455d8c511f2","Len":1}', 1687509316); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (951, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"77fa44a529fcd448f25a306b94df918e64d1286e","Message":":- install with normal user\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:38:54+02:00"}],"HeadCommit":{"Sha1":"77fa44a529fcd448f25a306b94df918e64d1286e","Message":":- install with normal user\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:38:54+02:00"},"CompareURL":"h21/fotky-docker/compare/c5f26ac69bbbc209e08770c3bec30455d8c511f2...77fa44a529fcd448f25a306b94df918e64d1286e","Len":1}', 1687509563); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (952, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"77fa44a529fcd448f25a306b94df918e64d1286e","Message":":- install with normal user\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:38:54+02:00"}],"HeadCommit":{"Sha1":"77fa44a529fcd448f25a306b94df918e64d1286e","Message":":- install with normal user\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:38:54+02:00"},"CompareURL":"h21/fotky-docker/compare/c5f26ac69bbbc209e08770c3bec30455d8c511f2...77fa44a529fcd448f25a306b94df918e64d1286e","Len":1}', 1687509563); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (953, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"834b2fb9e369719cc0ea1ef8fc5478039997269c","Message":"user euid changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:58:55+02:00"}],"HeadCommit":{"Sha1":"834b2fb9e369719cc0ea1ef8fc5478039997269c","Message":"user euid changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:58:55+02:00"},"CompareURL":"h21/fotky-docker/compare/77fa44a529fcd448f25a306b94df918e64d1286e...834b2fb9e369719cc0ea1ef8fc5478039997269c","Len":1}', 1687510765); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (954, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"834b2fb9e369719cc0ea1ef8fc5478039997269c","Message":"user euid changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:58:55+02:00"}],"HeadCommit":{"Sha1":"834b2fb9e369719cc0ea1ef8fc5478039997269c","Message":"user euid changes\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T10:58:55+02:00"},"CompareURL":"h21/fotky-docker/compare/77fa44a529fcd448f25a306b94df918e64d1286e...834b2fb9e369719cc0ea1ef8fc5478039997269c","Len":1}', 1687510765); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (955, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"8fd53c7db5a44f14aab162e58d1654b879412cf2","Message":"sed :\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:14:48+02:00"}],"HeadCommit":{"Sha1":"8fd53c7db5a44f14aab162e58d1654b879412cf2","Message":"sed :\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:14:48+02:00"},"CompareURL":"h21/fotky-docker/compare/834b2fb9e369719cc0ea1ef8fc5478039997269c...8fd53c7db5a44f14aab162e58d1654b879412cf2","Len":1}', 1687511702); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (956, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"8fd53c7db5a44f14aab162e58d1654b879412cf2","Message":"sed :\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:14:48+02:00"}],"HeadCommit":{"Sha1":"8fd53c7db5a44f14aab162e58d1654b879412cf2","Message":"sed :\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:14:48+02:00"},"CompareURL":"h21/fotky-docker/compare/834b2fb9e369719cc0ea1ef8fc5478039997269c...8fd53c7db5a44f14aab162e58d1654b879412cf2","Len":1}', 1687511702); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (957, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"fe4d6e906090286de1baa2320ce176306d28c8b5","Message":"correct home\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:21:25+02:00"}],"HeadCommit":{"Sha1":"fe4d6e906090286de1baa2320ce176306d28c8b5","Message":"correct home\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:21:25+02:00"},"CompareURL":"h21/fotky-docker/compare/8fd53c7db5a44f14aab162e58d1654b879412cf2...fe4d6e906090286de1baa2320ce176306d28c8b5","Len":1}', 1687512102); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (958, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"fe4d6e906090286de1baa2320ce176306d28c8b5","Message":"correct home\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:21:25+02:00"}],"HeadCommit":{"Sha1":"fe4d6e906090286de1baa2320ce176306d28c8b5","Message":"correct home\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:21:25+02:00"},"CompareURL":"h21/fotky-docker/compare/8fd53c7db5a44f14aab162e58d1654b879412cf2...fe4d6e906090286de1baa2320ce176306d28c8b5","Len":1}', 1687512102); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (959, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"19c71705bdb581fab35b1acab2d1465fcbdee129","Message":"ssh hardening and docker group\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:37:35+02:00"}],"HeadCommit":{"Sha1":"19c71705bdb581fab35b1acab2d1465fcbdee129","Message":"ssh hardening and docker group\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:37:35+02:00"},"CompareURL":"h21/fotky-docker/compare/fe4d6e906090286de1baa2320ce176306d28c8b5...19c71705bdb581fab35b1acab2d1465fcbdee129","Len":1}', 1687513075); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (960, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"19c71705bdb581fab35b1acab2d1465fcbdee129","Message":"ssh hardening and docker group\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:37:35+02:00"}],"HeadCommit":{"Sha1":"19c71705bdb581fab35b1acab2d1465fcbdee129","Message":"ssh hardening and docker group\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:37:35+02:00"},"CompareURL":"h21/fotky-docker/compare/fe4d6e906090286de1baa2320ce176306d28c8b5...19c71705bdb581fab35b1acab2d1465fcbdee129","Len":1}', 1687513075); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (961, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"20863b4af879338d1e8488cd3038d4eef35e1675","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"}],"HeadCommit":{"Sha1":"20863b4af879338d1e8488cd3038d4eef35e1675","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"},"CompareURL":"h21/fotky-docker/compare/19c71705bdb581fab35b1acab2d1465fcbdee129...20863b4af879338d1e8488cd3038d4eef35e1675","Len":1}', 1687513407); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (962, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"20863b4af879338d1e8488cd3038d4eef35e1675","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"}],"HeadCommit":{"Sha1":"20863b4af879338d1e8488cd3038d4eef35e1675","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"},"CompareURL":"h21/fotky-docker/compare/19c71705bdb581fab35b1acab2d1465fcbdee129...20863b4af879338d1e8488cd3038d4eef35e1675","Len":1}', 1687513407); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (963, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"688f467011c2d95df326076e21479ea0ab5be3d7","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"}],"HeadCommit":{"Sha1":"688f467011c2d95df326076e21479ea0ab5be3d7","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"},"CompareURL":"h21/fotky-docker/compare/20863b4af879338d1e8488cd3038d4eef35e1675...688f467011c2d95df326076e21479ea0ab5be3d7","Len":1}', 1687513474); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (964, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"688f467011c2d95df326076e21479ea0ab5be3d7","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"}],"HeadCommit":{"Sha1":"688f467011c2d95df326076e21479ea0ab5be3d7","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:43:13+02:00"},"CompareURL":"h21/fotky-docker/compare/20863b4af879338d1e8488cd3038d4eef35e1675...688f467011c2d95df326076e21479ea0ab5be3d7","Len":1}', 1687513474); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (965, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"e420edbb8348fedd38b1e8f8e312c4d318a475ca","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"}],"HeadCommit":{"Sha1":"e420edbb8348fedd38b1e8f8e312c4d318a475ca","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"},"CompareURL":"h21/fotky-docker/compare/688f467011c2d95df326076e21479ea0ab5be3d7...e420edbb8348fedd38b1e8f8e312c4d318a475ca","Len":1}', 1687513850); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (966, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"e420edbb8348fedd38b1e8f8e312c4d318a475ca","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"}],"HeadCommit":{"Sha1":"e420edbb8348fedd38b1e8f8e312c4d318a475ca","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"},"CompareURL":"h21/fotky-docker/compare/688f467011c2d95df326076e21479ea0ab5be3d7...e420edbb8348fedd38b1e8f8e312c4d318a475ca","Len":1}', 1687513850); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (967, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"708cc982ea0018e3c34e466ad67139f8c00eb5a9","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"}],"HeadCommit":{"Sha1":"708cc982ea0018e3c34e466ad67139f8c00eb5a9","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"},"CompareURL":"h21/fotky-docker/compare/e420edbb8348fedd38b1e8f8e312c4d318a475ca...708cc982ea0018e3c34e466ad67139f8c00eb5a9","Len":1}', 1687513884); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (968, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"708cc982ea0018e3c34e466ad67139f8c00eb5a9","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"}],"HeadCommit":{"Sha1":"708cc982ea0018e3c34e466ad67139f8c00eb5a9","Message":"enable firewall\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:50:37+02:00"},"CompareURL":"h21/fotky-docker/compare/e420edbb8348fedd38b1e8f8e312c4d318a475ca...708cc982ea0018e3c34e466ad67139f8c00eb5a9","Len":1}', 1687513884); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (969, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23","Message":"repair domain check\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"}],"HeadCommit":{"Sha1":"1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23","Message":"repair domain check\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"},"CompareURL":"h21/fotky-docker/compare/708cc982ea0018e3c34e466ad67139f8c00eb5a9...1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23","Len":1}', 1687514253); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (970, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23","Message":"repair domain check\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"}],"HeadCommit":{"Sha1":"1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23","Message":"repair domain check\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"},"CompareURL":"h21/fotky-docker/compare/708cc982ea0018e3c34e466ad67139f8c00eb5a9...1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23","Len":1}', 1687514253); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (971, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"a138db5af61ae3902d4dbd6e59c343acd0a73336","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"}],"HeadCommit":{"Sha1":"a138db5af61ae3902d4dbd6e59c343acd0a73336","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"},"CompareURL":"h21/fotky-docker/compare/1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23...a138db5af61ae3902d4dbd6e59c343acd0a73336","Len":1}', 1687514283); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (972, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"a138db5af61ae3902d4dbd6e59c343acd0a73336","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"}],"HeadCommit":{"Sha1":"a138db5af61ae3902d4dbd6e59c343acd0a73336","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"},"CompareURL":"h21/fotky-docker/compare/1cc3c2367b90ba1bc9af0a33d1058dbda8ae2b23...a138db5af61ae3902d4dbd6e59c343acd0a73336","Len":1}', 1687514283); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (973, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"7b41b69877b48812d96f8ff488fa35c4eb71cdfa","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"}],"HeadCommit":{"Sha1":"7b41b69877b48812d96f8ff488fa35c4eb71cdfa","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"},"CompareURL":"h21/fotky-docker/compare/a138db5af61ae3902d4dbd6e59c343acd0a73336...7b41b69877b48812d96f8ff488fa35c4eb71cdfa","Len":1}', 1687514652); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (974, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"7b41b69877b48812d96f8ff488fa35c4eb71cdfa","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"}],"HeadCommit":{"Sha1":"7b41b69877b48812d96f8ff488fa35c4eb71cdfa","Message":"repair domain check, ssh only disable password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T11:57:17+02:00"},"CompareURL":"h21/fotky-docker/compare/a138db5af61ae3902d4dbd6e59c343acd0a73336...7b41b69877b48812d96f8ff488fa35c4eb71cdfa","Len":1}', 1687514653); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (975, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"794210db0c35906810849a15efb65c784e0f1bb0","Message":"make more usable by BFU\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T15:04:53+02:00"}],"HeadCommit":{"Sha1":"794210db0c35906810849a15efb65c784e0f1bb0","Message":"make more usable by BFU\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T15:04:53+02:00"},"CompareURL":"h21/fotky-docker/compare/7b41b69877b48812d96f8ff488fa35c4eb71cdfa...794210db0c35906810849a15efb65c784e0f1bb0","Len":1}', 1687525524); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (976, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"794210db0c35906810849a15efb65c784e0f1bb0","Message":"make more usable by BFU\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T15:04:53+02:00"}],"HeadCommit":{"Sha1":"794210db0c35906810849a15efb65c784e0f1bb0","Message":"make more usable by BFU\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-23T15:04:53+02:00"},"CompareURL":"h21/fotky-docker/compare/7b41b69877b48812d96f8ff488fa35c4eb71cdfa...794210db0c35906810849a15efb65c784e0f1bb0","Len":1}', 1687525525); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (977, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"45212e2435fd1dbce567771bcb813ddc5b064be3","Message":"add some advices\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-06-24T00:19:32+02:00"}],"HeadCommit":{"Sha1":"45212e2435fd1dbce567771bcb813ddc5b064be3","Message":"add some advices\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-06-24T00:19:32+02:00"},"CompareURL":"h21/fotky-docker/compare/794210db0c35906810849a15efb65c784e0f1bb0...45212e2435fd1dbce567771bcb813ddc5b064be3","Len":1}', 1687558814); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (978, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"45212e2435fd1dbce567771bcb813ddc5b064be3","Message":"add some advices\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-06-24T00:19:32+02:00"}],"HeadCommit":{"Sha1":"45212e2435fd1dbce567771bcb813ddc5b064be3","Message":"add some advices\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-06-24T00:19:32+02:00"},"CompareURL":"h21/fotky-docker/compare/794210db0c35906810849a15efb65c784e0f1bb0...45212e2435fd1dbce567771bcb813ddc5b064be3","Len":1}', 1687558814); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (979, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c156e998048fa8b65e5e42be06d245c4d1499d30","Message":"add some advices\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-24T00:24:59+02:00"}],"HeadCommit":{"Sha1":"c156e998048fa8b65e5e42be06d245c4d1499d30","Message":"add some advices\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-24T00:24:59+02:00"},"CompareURL":"h21/fotky-docker/compare/45212e2435fd1dbce567771bcb813ddc5b064be3...c156e998048fa8b65e5e42be06d245c4d1499d30","Len":1}', 1687559130); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (980, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"c156e998048fa8b65e5e42be06d245c4d1499d30","Message":"add some advices\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-24T00:24:59+02:00"}],"HeadCommit":{"Sha1":"c156e998048fa8b65e5e42be06d245c4d1499d30","Message":"add some advices\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-24T00:24:59+02:00"},"CompareURL":"h21/fotky-docker/compare/45212e2435fd1dbce567771bcb813ddc5b064be3...c156e998048fa8b65e5e42be06d245c4d1499d30","Len":1}', 1687559130); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (982, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4236af8e131240f6b14e091387cef60d2dc1e5ab","Message":"make photo dir writable\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-25T20:51:24+02:00"}],"HeadCommit":{"Sha1":"4236af8e131240f6b14e091387cef60d2dc1e5ab","Message":"make photo dir writable\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-25T20:51:24+02:00"},"CompareURL":"h21/fotky-docker/compare/c156e998048fa8b65e5e42be06d245c4d1499d30...4236af8e131240f6b14e091387cef60d2dc1e5ab","Len":1}', 1687719111); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (983, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"4236af8e131240f6b14e091387cef60d2dc1e5ab","Message":"make photo dir writable\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-25T20:51:24+02:00"}],"HeadCommit":{"Sha1":"4236af8e131240f6b14e091387cef60d2dc1e5ab","Message":"make photo dir writable\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-06-25T20:51:24+02:00"},"CompareURL":"h21/fotky-docker/compare/c156e998048fa8b65e5e42be06d245c4d1499d30...4236af8e131240f6b14e091387cef60d2dc1e5ab","Len":1}', 1687719111); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (992, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"2553e12b389fdc55cfee6e0b395a0b53b641a80b","Message":"add better done message\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-09T21:34:15+02:00"}],"HeadCommit":{"Sha1":"2553e12b389fdc55cfee6e0b395a0b53b641a80b","Message":"add better done message\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-09T21:34:15+02:00"},"CompareURL":"h21/13k/compare/cc3299e11ecf2a7685ada1ebf70cd4d07968f075...2553e12b389fdc55cfee6e0b395a0b53b641a80b","Len":1}', 1688941313); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (993, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"2553e12b389fdc55cfee6e0b395a0b53b641a80b","Message":"add better done message\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-09T21:34:15+02:00"}],"HeadCommit":{"Sha1":"2553e12b389fdc55cfee6e0b395a0b53b641a80b","Message":"add better done message\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-09T21:34:15+02:00"},"CompareURL":"h21/13k/compare/cc3299e11ecf2a7685ada1ebf70cd4d07968f075...2553e12b389fdc55cfee6e0b395a0b53b641a80b","Len":1}', 1688941313); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (996, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"3ad1a76f7c8319cf72c06e4a21e1239f53270f1b","Message":"add redis\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-11T21:38:22+02:00"}],"HeadCommit":{"Sha1":"3ad1a76f7c8319cf72c06e4a21e1239f53270f1b","Message":"add redis\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-11T21:38:22+02:00"},"CompareURL":"h21/13k/compare/2553e12b389fdc55cfee6e0b395a0b53b641a80b...3ad1a76f7c8319cf72c06e4a21e1239f53270f1b","Len":1}', 1689117713); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (997, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"3ad1a76f7c8319cf72c06e4a21e1239f53270f1b","Message":"add redis\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-11T21:38:22+02:00"}],"HeadCommit":{"Sha1":"3ad1a76f7c8319cf72c06e4a21e1239f53270f1b","Message":"add redis\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-11T21:38:22+02:00"},"CompareURL":"h21/13k/compare/2553e12b389fdc55cfee6e0b395a0b53b641a80b...3ad1a76f7c8319cf72c06e4a21e1239f53270f1b","Len":1}', 1689117713); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (998, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"97b27867ee8111dd4cd48c9045cfab3902c1ce51","Message":"go redis\n\nmore functions\nask redis\nurl path\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T17:29:26+02:00"},{"Sha1":"18b6a11d72abcbed4a7551d3b392ae0fb7897332","Message":"all =\u003e klice\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T16:49:51+02:00"}],"HeadCommit":{"Sha1":"97b27867ee8111dd4cd48c9045cfab3902c1ce51","Message":"go redis\n\nmore functions\nask redis\nurl path\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T17:29:26+02:00"},"CompareURL":"h21/13k/compare/3ad1a76f7c8319cf72c06e4a21e1239f53270f1b...97b27867ee8111dd4cd48c9045cfab3902c1ce51","Len":2}', 1689176513); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (999, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"97b27867ee8111dd4cd48c9045cfab3902c1ce51","Message":"go redis\n\nmore functions\nask redis\nurl path\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T17:29:26+02:00"},{"Sha1":"18b6a11d72abcbed4a7551d3b392ae0fb7897332","Message":"all =\u003e klice\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T16:49:51+02:00"}],"HeadCommit":{"Sha1":"97b27867ee8111dd4cd48c9045cfab3902c1ce51","Message":"go redis\n\nmore functions\nask redis\nurl path\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T17:29:26+02:00"},"CompareURL":"h21/13k/compare/3ad1a76f7c8319cf72c06e4a21e1239f53270f1b...97b27867ee8111dd4cd48c9045cfab3902c1ce51","Len":2}', 1689176513); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1000, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"cead6ed28b2a1d7b8bf562fb58da5bb419b59204","Message":"get task by team difficulty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T22:14:47+02:00"},{"Sha1":"f0495d5f06bdd22790e703a548da15527faa63a7","Message":"do not push cipher when log out\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T22:00:17+02:00"},{"Sha1":"2252fdb838e0242bfc321a6207dcd79372555184","Message":"add signIn\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T21:53:47+02:00"}],"HeadCommit":{"Sha1":"cead6ed28b2a1d7b8bf562fb58da5bb419b59204","Message":"get task by team difficulty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T22:14:47+02:00"},"CompareURL":"h21/13k/compare/97b27867ee8111dd4cd48c9045cfab3902c1ce51...cead6ed28b2a1d7b8bf562fb58da5bb419b59204","Len":3}', 1689205913); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1001, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"cead6ed28b2a1d7b8bf562fb58da5bb419b59204","Message":"get task by team difficulty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T22:14:47+02:00"},{"Sha1":"f0495d5f06bdd22790e703a548da15527faa63a7","Message":"do not push cipher when log out\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T22:00:17+02:00"},{"Sha1":"2252fdb838e0242bfc321a6207dcd79372555184","Message":"add signIn\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T21:53:47+02:00"}],"HeadCommit":{"Sha1":"cead6ed28b2a1d7b8bf562fb58da5bb419b59204","Message":"get task by team difficulty\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-12T22:14:47+02:00"},"CompareURL":"h21/13k/compare/97b27867ee8111dd4cd48c9045cfab3902c1ce51...cead6ed28b2a1d7b8bf562fb58da5bb419b59204","Len":3}', 1689205913); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1006, 2, 18, 2, 46, 0, 0, 'refs/heads/noRedir', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1689294112); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1007, 1, 18, 2, 46, 0, 0, 'refs/heads/noRedir', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1689294113); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1008, 2, 19, 2, 46, 0, 0, 'refs/heads/noRedir', 1, '', 1689294113); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1009, 1, 19, 2, 46, 0, 0, 'refs/heads/noRedir', 1, '', 1689294113); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1010, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"bf717677656df984b41b39805b63e63170f1759a","Message":"add tier info\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:53:07+02:00"},{"Sha1":"95751b2db4b3448f588068cf2a6bdded3dfb2ce2","Message":"add doctype\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:42:18+02:00"},{"Sha1":"b4d4a63beae405e737e629c9549e21e0acd6a037","Message":"add team page\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:40:32+02:00"},{"Sha1":"b09bfba9dcaaeebfd3f9d638585061e145aad660","Message":"is signIn func\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:21:12+02:00"},{"Sha1":"27640bbc394419a7d7e5124a55947b55ea75a8c7","Message":"remember last solved cipher\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:14:48+02:00"}],"HeadCommit":{"Sha1":"bf717677656df984b41b39805b63e63170f1759a","Message":"add tier info\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:53:07+02:00"},"CompareURL":"h21/13k/compare/cead6ed28b2a1d7b8bf562fb58da5bb419b59204...bf717677656df984b41b39805b63e63170f1759a","Len":7}', 1689352913); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1011, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"bf717677656df984b41b39805b63e63170f1759a","Message":"add tier info\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:53:07+02:00"},{"Sha1":"95751b2db4b3448f588068cf2a6bdded3dfb2ce2","Message":"add doctype\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:42:18+02:00"},{"Sha1":"b4d4a63beae405e737e629c9549e21e0acd6a037","Message":"add team page\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:40:32+02:00"},{"Sha1":"b09bfba9dcaaeebfd3f9d638585061e145aad660","Message":"is signIn func\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:21:12+02:00"},{"Sha1":"27640bbc394419a7d7e5124a55947b55ea75a8c7","Message":"remember last solved cipher\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:14:48+02:00"}],"HeadCommit":{"Sha1":"bf717677656df984b41b39805b63e63170f1759a","Message":"add tier info\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-07-14T14:53:07+02:00"},"CompareURL":"h21/13k/compare/cead6ed28b2a1d7b8bf562fb58da5bb419b59204...bf717677656df984b41b39805b63e63170f1759a","Len":7}', 1689352913); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1090, 1, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"70c67d706705a995e9e9b8fdd36e681edd7cc884","Message":"normal openttd\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-19T18:59:25+02:00"}],"HeadCommit":{"Sha1":"70c67d706705a995e9e9b8fdd36e681edd7cc884","Message":"normal openttd\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-19T18:59:25+02:00"},"CompareURL":"h21/HoralServer-web/compare/3073ef44d2b1110455bd0c33a293170062a0adab...70c67d706705a995e9e9b8fdd36e681edd7cc884","Len":1}', 1692464381); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1091, 2, 5, 1, 5, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"70c67d706705a995e9e9b8fdd36e681edd7cc884","Message":"normal openttd\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-19T18:59:25+02:00"}],"HeadCommit":{"Sha1":"70c67d706705a995e9e9b8fdd36e681edd7cc884","Message":"normal openttd\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-19T18:59:25+02:00"},"CompareURL":"h21/HoralServer-web/compare/3073ef44d2b1110455bd0c33a293170062a0adab...70c67d706705a995e9e9b8fdd36e681edd7cc884","Len":1}', 1692464381); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1092, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"d5f45167ecc466d1d198c85ff2a8a872c0c6cf04","Message":"ioutil =\u003e os\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T11:51:47+02:00"}],"HeadCommit":{"Sha1":"d5f45167ecc466d1d198c85ff2a8a872c0c6cf04","Message":"ioutil =\u003e os\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T11:51:47+02:00"},"CompareURL":"h21/13k/compare/bf717677656df984b41b39805b63e63170f1759a...d5f45167ecc466d1d198c85ff2a8a872c0c6cf04","Len":1}', 1692614547); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1093, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"d5f45167ecc466d1d198c85ff2a8a872c0c6cf04","Message":"ioutil =\u003e os\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T11:51:47+02:00"}],"HeadCommit":{"Sha1":"d5f45167ecc466d1d198c85ff2a8a872c0c6cf04","Message":"ioutil =\u003e os\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T11:51:47+02:00"},"CompareURL":"h21/13k/compare/bf717677656df984b41b39805b63e63170f1759a...d5f45167ecc466d1d198c85ff2a8a872c0c6cf04","Len":1}', 1692614547); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1095, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd","Message":"add admin handle\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T16:50:54+02:00"},{"Sha1":"6e56fbe7db70582cdcf443becd51084f18052583","Message":"globar redis rdb\n\n302 =\u003e status found\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T16:49:45+02:00"}],"HeadCommit":{"Sha1":"0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd","Message":"add admin handle\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T16:50:54+02:00"},"CompareURL":"h21/13k/compare/d5f45167ecc466d1d198c85ff2a8a872c0c6cf04...0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd","Len":2}', 1692643947); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1096, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd","Message":"add admin handle\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T16:50:54+02:00"},{"Sha1":"6e56fbe7db70582cdcf443becd51084f18052583","Message":"globar redis rdb\n\n302 =\u003e status found\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T16:49:45+02:00"}],"HeadCommit":{"Sha1":"0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd","Message":"add admin handle\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-08-21T16:50:54+02:00"},"CompareURL":"h21/13k/compare/d5f45167ecc466d1d198c85ff2a8a872c0c6cf04...0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd","Len":2}', 1692643947); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1120, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c","Message":"scan through teams\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T16:34:48+02:00"},{"Sha1":"5d26d7e4e82041c8afa91aad85b2b39b22847546","Message":"admin teams\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T12:49:25+02:00"},{"Sha1":"babc9ebffe4dd40ad2b5886c9a9b5ec543078f6e","Message":"check redis for team password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T12:25:46+02:00"},{"Sha1":"fc6049aa5d6dea38c0c6bc4db3f088464127b651","Message":"admin login\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T12:25:20+02:00"},{"Sha1":"88d4d09fa7da28906c66e99cff1c03bb09a95d5e","Message":"check team password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T11:44:26+02:00"}],"HeadCommit":{"Sha1":"b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c","Message":"scan through teams\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T16:34:48+02:00"},"CompareURL":"h21/13k/compare/0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd...b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c","Len":5}', 1693927370); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1121, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c","Message":"scan through teams\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T16:34:48+02:00"},{"Sha1":"5d26d7e4e82041c8afa91aad85b2b39b22847546","Message":"admin teams\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T12:49:25+02:00"},{"Sha1":"babc9ebffe4dd40ad2b5886c9a9b5ec543078f6e","Message":"check redis for team password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T12:25:46+02:00"},{"Sha1":"fc6049aa5d6dea38c0c6bc4db3f088464127b651","Message":"admin login\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T12:25:20+02:00"},{"Sha1":"88d4d09fa7da28906c66e99cff1c03bb09a95d5e","Message":"check team password\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T11:44:26+02:00"}],"HeadCommit":{"Sha1":"b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c","Message":"scan through teams\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T16:34:48+02:00"},"CompareURL":"h21/13k/compare/0a0e16f0d9f83eef192f605c2c0427c8db7ad8bd...b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c","Len":5}', 1693927370); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1122, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"1d6fe6202497a5329ccdcba56e2e27b741253963","Message":"add last incr\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T22:50:19+02:00"},{"Sha1":"b105cb1b49c476f7c5def75f85e46a12b51d9662","Message":"use cutPrefix\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T21:08:29+02:00"},{"Sha1":"2e6bfbf11ca3480fbe5206aeb00ec42004836390","Message":"admin teams table\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T21:01:31+02:00"}],"HeadCommit":{"Sha1":"1d6fe6202497a5329ccdcba56e2e27b741253963","Message":"add last incr\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T22:50:19+02:00"},"CompareURL":"h21/13k/compare/b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c...1d6fe6202497a5329ccdcba56e2e27b741253963","Len":3}', 1693956769); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1123, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"1d6fe6202497a5329ccdcba56e2e27b741253963","Message":"add last incr\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T22:50:19+02:00"},{"Sha1":"b105cb1b49c476f7c5def75f85e46a12b51d9662","Message":"use cutPrefix\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T21:08:29+02:00"},{"Sha1":"2e6bfbf11ca3480fbe5206aeb00ec42004836390","Message":"admin teams table\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T21:01:31+02:00"}],"HeadCommit":{"Sha1":"1d6fe6202497a5329ccdcba56e2e27b741253963","Message":"add last incr\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-05T22:50:19+02:00"},"CompareURL":"h21/13k/compare/b6ab7c3b7d9901a6ca4370b43dd0591e637cf47c...1d6fe6202497a5329ccdcba56e2e27b741253963","Len":3}', 1693956770); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1124, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"2befd7960dd9484820903ad7f57488e48df101d0","Message":"add schema URL and Redis\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T15:25:57+02:00"},{"Sha1":"5252c18fdb1f30e599907d635f26bffabacab798","Message":"add tier path\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T13:49:39+02:00"},{"Sha1":"affbbd77763f35db7429774c7666d7b3f005f1d7","Message":"reset last button\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T13:01:04+02:00"},{"Sha1":"9c5a1ddb112c0bbd6b16959ff9db66fc3f274237","Message":"copy to clipboard button\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T11:40:02+02:00"}],"HeadCommit":{"Sha1":"2befd7960dd9484820903ad7f57488e48df101d0","Message":"add schema URL and Redis\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T15:25:57+02:00"},"CompareURL":"h21/13k/compare/1d6fe6202497a5329ccdcba56e2e27b741253963...2befd7960dd9484820903ad7f57488e48df101d0","Len":4}', 1694006800); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1125, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"2befd7960dd9484820903ad7f57488e48df101d0","Message":"add schema URL and Redis\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T15:25:57+02:00"},{"Sha1":"5252c18fdb1f30e599907d635f26bffabacab798","Message":"add tier path\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T13:49:39+02:00"},{"Sha1":"affbbd77763f35db7429774c7666d7b3f005f1d7","Message":"reset last button\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T13:01:04+02:00"},{"Sha1":"9c5a1ddb112c0bbd6b16959ff9db66fc3f274237","Message":"copy to clipboard button\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T11:40:02+02:00"}],"HeadCommit":{"Sha1":"2befd7960dd9484820903ad7f57488e48df101d0","Message":"add schema URL and Redis\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T15:25:57+02:00"},"CompareURL":"h21/13k/compare/1d6fe6202497a5329ccdcba56e2e27b741253963...2befd7960dd9484820903ad7f57488e48df101d0","Len":4}', 1694006800); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1126, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"eae443bc11c79c79d40942e97d60c93ee39bf745","Message":"add next qr to admin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T21:39:23+02:00"},{"Sha1":"d963c659ba9e3100f385f346853951ac52d4e120","Message":"add admin path list\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T21:28:13+02:00"}],"HeadCommit":{"Sha1":"eae443bc11c79c79d40942e97d60c93ee39bf745","Message":"add next qr to admin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T21:39:23+02:00"},"CompareURL":"h21/13k/compare/2befd7960dd9484820903ad7f57488e48df101d0...eae443bc11c79c79d40942e97d60c93ee39bf745","Len":2}', 1694035969); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1127, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"eae443bc11c79c79d40942e97d60c93ee39bf745","Message":"add next qr to admin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T21:39:23+02:00"},{"Sha1":"d963c659ba9e3100f385f346853951ac52d4e120","Message":"add admin path list\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T21:28:13+02:00"}],"HeadCommit":{"Sha1":"eae443bc11c79c79d40942e97d60c93ee39bf745","Message":"add next qr to admin\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-06T21:39:23+02:00"},"CompareURL":"h21/13k/compare/2befd7960dd9484820903ad7f57488e48df101d0...eae443bc11c79c79d40942e97d60c93ee39bf745","Len":2}', 1694035969); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1128, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"21f8776e1dc074876974d30cbf1295f08e8801a4","Message":"save reset\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-07T11:38:10+02:00"}],"HeadCommit":{"Sha1":"21f8776e1dc074876974d30cbf1295f08e8801a4","Message":"save reset\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-07T11:38:10+02:00"},"CompareURL":"h21/13k/compare/eae443bc11c79c79d40942e97d60c93ee39bf745...21f8776e1dc074876974d30cbf1295f08e8801a4","Len":1}', 1694103779); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1129, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"21f8776e1dc074876974d30cbf1295f08e8801a4","Message":"save reset\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-07T11:38:10+02:00"}],"HeadCommit":{"Sha1":"21f8776e1dc074876974d30cbf1295f08e8801a4","Message":"save reset\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-07T11:38:10+02:00"},"CompareURL":"h21/13k/compare/eae443bc11c79c79d40942e97d60c93ee39bf745...21f8776e1dc074876974d30cbf1295f08e8801a4","Len":1}', 1694103779); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1130, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6341cede2ed85216388f0f292b965d59d413abc8","Message":"add clue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-11T18:47:49+02:00"},{"Sha1":"8e7b467bb7e01883a2a833742648f5958badef8b","Message":"readd reveal button\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-11T17:01:09+02:00"}],"HeadCommit":{"Sha1":"6341cede2ed85216388f0f292b965d59d413abc8","Message":"add clue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-11T18:47:49+02:00"},"CompareURL":"h21/13k/compare/21f8776e1dc074876974d30cbf1295f08e8801a4...6341cede2ed85216388f0f292b965d59d413abc8","Len":2}', 1694456126); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1131, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6341cede2ed85216388f0f292b965d59d413abc8","Message":"add clue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-11T18:47:49+02:00"},{"Sha1":"8e7b467bb7e01883a2a833742648f5958badef8b","Message":"readd reveal button\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-11T17:01:09+02:00"}],"HeadCommit":{"Sha1":"6341cede2ed85216388f0f292b965d59d413abc8","Message":"add clue\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-11T18:47:49+02:00"},"CompareURL":"h21/13k/compare/21f8776e1dc074876974d30cbf1295f08e8801a4...6341cede2ed85216388f0f292b965d59d413abc8","Len":2}', 1694456126); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1132, 2, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"5323c97db93840c95a42ca8cdf6bcb19860513eb","Message":"update schema\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-12T14:13:49+02:00"}],"HeadCommit":{"Sha1":"5323c97db93840c95a42ca8cdf6bcb19860513eb","Message":"update schema\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-12T14:13:49+02:00"},"CompareURL":"h21/13k/compare/6341cede2ed85216388f0f292b965d59d413abc8...5323c97db93840c95a42ca8cdf6bcb19860513eb","Len":1}', 1694544328); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1133, 1, 18, 2, 46, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"5323c97db93840c95a42ca8cdf6bcb19860513eb","Message":"update schema\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-12T14:13:49+02:00"}],"HeadCommit":{"Sha1":"5323c97db93840c95a42ca8cdf6bcb19860513eb","Message":"update schema\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-12T14:13:49+02:00"},"CompareURL":"h21/13k/compare/6341cede2ed85216388f0f292b965d59d413abc8...5323c97db93840c95a42ca8cdf6bcb19860513eb","Len":1}', 1694544328); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1134, 1, 1, 1, 47, 0, 0, '', 0, '', 1695119602); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1135, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '', 1695119646); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1136, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"91c685ce278b3bb5b6455011be092cb142b48c24","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:32:49+02:00"},{"Sha1":"698c050d7730e5a5b1f8ff82404274436647b99c","Message":"wellerman\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:06:57+02:00"},{"Sha1":"83aad2ee47dc832482c7d650e1061014bd3690f7","Message":"init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:06:14+02:00"}],"HeadCommit":{"Sha1":"91c685ce278b3bb5b6455011be092cb142b48c24","Message":"add README\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:32:49+02:00"},"CompareURL":"","Len":3}', 1695119646); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1137, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"87abb6897cbe6923306e54abb5d5cfcef2391ae7","Message":"retab\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:36:38+02:00"}],"HeadCommit":{"Sha1":"87abb6897cbe6923306e54abb5d5cfcef2391ae7","Message":"retab\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:36:38+02:00"},"CompareURL":"prokop/zpevnik/compare/91c685ce278b3bb5b6455011be092cb142b48c24...87abb6897cbe6923306e54abb5d5cfcef2391ae7","Len":1}', 1695119812); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1138, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"426a43b0e9ba7a0b8bedcba26c2900ac64a99f8b","Message":"retab\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:36:38+02:00"}],"HeadCommit":{"Sha1":"426a43b0e9ba7a0b8bedcba26c2900ac64a99f8b","Message":"retab\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:36:38+02:00"},"CompareURL":"prokop/zpevnik/compare/87abb6897cbe6923306e54abb5d5cfcef2391ae7...426a43b0e9ba7a0b8bedcba26c2900ac64a99f8b","Len":1}', 1695120225); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1139, 1, 5, 1, 47, 0, 0, 'refs/heads/secret', 0, '', 1695120766); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1140, 1, 5, 1, 47, 0, 0, 'refs/heads/secret', 0, '{"Commits":[{"Sha1":"5e12a540c125be64ca3a3be9baa657cc9f082e76","Message":"Secret + letecky most\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:52:20+02:00"},{"Sha1":"87abb6897cbe6923306e54abb5d5cfcef2391ae7","Message":"retab\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:36:38+02:00"}],"HeadCommit":{"Sha1":"5e12a540c125be64ca3a3be9baa657cc9f082e76","Message":"Secret + letecky most\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T12:52:20+02:00"},"CompareURL":"prokop/zpevnik/compare/91c685ce278b3bb5b6455011be092cb142b48c24...5e12a540c125be64ca3a3be9baa657cc9f082e76","Len":2}', 1695120766); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1141, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"fbb02bd659f66cff56ad2eb46e0fd3b42e5ded84","Message":"add prodavac\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:05:38+02:00"},{"Sha1":"7e0a041a1a8c227cca92aee1a3bbe32668951a74","Message":"add build script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:05:27+02:00"}],"HeadCommit":{"Sha1":"fbb02bd659f66cff56ad2eb46e0fd3b42e5ded84","Message":"add prodavac\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:05:38+02:00"},"CompareURL":"prokop/zpevnik/compare/426a43b0e9ba7a0b8bedcba26c2900ac64a99f8b...fbb02bd659f66cff56ad2eb46e0fd3b42e5ded84","Len":2}', 1695139561); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1142, 1, 5, 1, 47, 0, 0, 'refs/heads/secret', 0, '{"Commits":[{"Sha1":"57ba04a9eb413848b6db9d102afe1381e89d7baa","Message":"add udavac\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:11:53+02:00"},{"Sha1":"25951d67555d90c505da5d0e022835cd0d8dc341","Message":"add refren\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:11:35+02:00"},{"Sha1":"1a52f04cb2fed59e3d1c03a1bd314cbab348d61f","Message":"Merge branch ''master'' into secret\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:06:46+02:00"},{"Sha1":"fbb02bd659f66cff56ad2eb46e0fd3b42e5ded84","Message":"add prodavac\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:05:38+02:00"},{"Sha1":"7e0a041a1a8c227cca92aee1a3bbe32668951a74","Message":"add build script\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:05:27+02:00"}],"HeadCommit":{"Sha1":"57ba04a9eb413848b6db9d102afe1381e89d7baa","Message":"add udavac\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:11:53+02:00"},"CompareURL":"prokop/zpevnik/compare/5e12a540c125be64ca3a3be9baa657cc9f082e76...57ba04a9eb413848b6db9d102afe1381e89d7baa","Len":6}', 1695139936); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1143, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"a384785afb3587619959fc7135d73d4879566de2","Message":"wellerman update music\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:15:44+02:00"}],"HeadCommit":{"Sha1":"a384785afb3587619959fc7135d73d4879566de2","Message":"wellerman update music\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-09-19T18:15:44+02:00"},"CompareURL":"prokop/zpevnik/compare/fbb02bd659f66cff56ad2eb46e0fd3b42e5ded84...a384785afb3587619959fc7135d73d4879566de2","Len":1}', 1695140159); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1144, 1, 6, 1, 47, 0, 0, '', 0, '1|Cadillac', 1695148286); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1174, 1, 1, 1, 48, 0, 0, '', 1, '', 1696346935); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1175, 1, 5, 1, 48, 0, 0, 'refs/heads/master', 1, '', 1696346993); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1176, 1, 5, 1, 48, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"82e566a41d09f8fc4615d8c0361546ca839d6cf5","Message":"cv2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-10-03T17:28:17+02:00"}],"HeadCommit":{"Sha1":"82e566a41d09f8fc4615d8c0361546ca839d6cf5","Message":"cv2\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-10-03T17:28:17+02:00"},"CompareURL":"","Len":1}', 1696346993); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1177, 1, 5, 1, 48, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"5f072fb0335eb40693aaf672c1eab170f88472e6","Message":"reset reg\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-10-03T17:38:42+02:00"}],"HeadCommit":{"Sha1":"5f072fb0335eb40693aaf672c1eab170f88472e6","Message":"reset reg\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2023-10-03T17:38:42+02:00"},"CompareURL":"prokop/BI-APS/compare/82e566a41d09f8fc4615d8c0361546ca839d6cf5...5f072fb0335eb40693aaf672c1eab170f88472e6","Len":1}', 1696347539); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1178, 1, 5, 1, 48, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"e635bc9289182af7ad8bb60006fc1ad188cf9a9a","Message":"cv3\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-10-10T12:19:48+02:00"}],"HeadCommit":{"Sha1":"e635bc9289182af7ad8bb60006fc1ad188cf9a9a","Message":"cv3\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-10-10T12:19:48+02:00"},"CompareURL":"prokop/BI-APS/compare/5f072fb0335eb40693aaf672c1eab170f88472e6...e635bc9289182af7ad8bb60006fc1ad188cf9a9a","Len":1}', 1696933208); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1179, 1, 18, 1, 49, 0, 0, 'refs/heads/master', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1697060582); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1180, 1, 19, 1, 49, 0, 0, 'refs/heads/master', 1, '', 1697060582); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1181, 1, 18, 1, 49, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"63657a9ec12ef5945633eb601c0172a78f30aedd","Message":"topSort\n\ntoo much recursion\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-10-12T13:00:20+02:00"},{"Sha1":"b793c0c5c7788e5803d5bf38f0eb786f08f02e5c","Message":"generate some vscode config\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-10-12T13:00:05+02:00"},{"Sha1":"7d1403f06070966b27fb5f39ab4396e772e7c2d6","Message":"add .gitignore\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-10-12T12:59:34+02:00"}],"HeadCommit":{"Sha1":"63657a9ec12ef5945633eb601c0172a78f30aedd","Message":"topSort\n\ntoo much recursion\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2023-10-12T13:00:20+02:00"},"CompareURL":"prokop/bi-ag1/compare/59227f8eede0215ebf1f5841b1b4495acc91e0eb...63657a9ec12ef5945633eb601c0172a78f30aedd","Len":3}', 1697119382); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1325, 1, 5, 1, 47, 0, 0, 'refs/heads/secret', 0, '{"Commits":[{"Sha1":"d4467899ccc4ba9022b8bf8e72c998e4ce4db007","Message":"argentina\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T15:23:11+01:00"}],"HeadCommit":{"Sha1":"d4467899ccc4ba9022b8bf8e72c998e4ce4db007","Message":"argentina\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T15:23:11+01:00"},"CompareURL":"prokop/zpevnik/compare/6f5e957194e1d44ca9de8c47bb635c5236298a59...d4467899ccc4ba9022b8bf8e72c998e4ce4db007","Len":1}', 1706624611); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1326, 1, 12, 1, 47, 23, 0, '', 0, '11|', 1706624622); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1327, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"166da4c7c2644e79c349718dad94e6f032ba3220","Message":"mexiko\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T15:18:25+01:00"}],"HeadCommit":{"Sha1":"166da4c7c2644e79c349718dad94e6f032ba3220","Message":"mexiko\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T15:18:25+01:00"},"CompareURL":"prokop/zpevnik/compare/1812ab7a16e7b029a41898a7ee4fcb7c6771f0fb...166da4c7c2644e79c349718dad94e6f032ba3220","Len":1}', 1706624622); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1328, 1, 6, 1, 47, 0, 0, '', 0, '23|Niagara', 1706624940); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1329, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"6d1ac8aa42a49766e735ccc9d857e07408951377","Message":"niagara\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T15:42:49+01:00"}],"HeadCommit":{"Sha1":"6d1ac8aa42a49766e735ccc9d857e07408951377","Message":"niagara\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T15:42:49+01:00"},"CompareURL":"prokop/zpevnik/compare/166da4c7c2644e79c349718dad94e6f032ba3220...6d1ac8aa42a49766e735ccc9d857e07408951377","Len":1}', 1706625784); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1330, 1, 12, 1, 47, 24, 0, '', 0, '23|', 1706625785); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1331, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"7bdc66394fab45207864eb5715664ddc9a561d94","Message":"bad spaces\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T23:40:03+01:00"}],"HeadCommit":{"Sha1":"7bdc66394fab45207864eb5715664ddc9a561d94","Message":"bad spaces\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-01-30T23:40:03+01:00"},"CompareURL":"prokop/zpevnik/compare/6d1ac8aa42a49766e735ccc9d857e07408951377...7bdc66394fab45207864eb5715664ddc9a561d94","Len":1}', 1706654423); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1332, 1, 5, 1, 47, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"0817162bf65a7112c648cf9a1e9dafec09bdbc7a","Message":"uprava akordu srot\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-02-02T10:13:41+01:00"}],"HeadCommit":{"Sha1":"0817162bf65a7112c648cf9a1e9dafec09bdbc7a","Message":"uprava akordu srot\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-02-02T10:13:41+01:00"},"CompareURL":"prokop/zpevnik/compare/7bdc66394fab45207864eb5715664ddc9a561d94...0817162bf65a7112c648cf9a1e9dafec09bdbc7a","Len":1}', 1706865242); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1333, 1, 10, 1, 47, 25, 0, '', 0, '22|Od Hm.', 1706990753); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1334, 1, 13, 1, 47, 26, 0, '', 0, '22|', 1706990753); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1335, 1, 10, 1, 47, 27, 0, '', 0, '3|Od G.', 1706992235); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1336, 1, 13, 1, 47, 28, 0, '', 0, '3|', 1706992235); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1337, 1, 10, 1, 47, 29, 0, '', 0, '20|Od A.', 1707075601); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1338, 1, 13, 1, 47, 30, 0, '', 0, '20|', 1707075601); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1339, 1, 12, 1, 47, 31, 0, '', 0, '20|', 1707143940); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1340, 1, 12, 1, 47, 32, 0, '', 0, '22|', 1707144682); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1353, 6, 9, 1, 52, 0, 0, 'refs/tags/x64', 1, '{"Commits":null,"HeadCommit":{"Sha1":"e1f473a84c87e81586a3b27e1b581cb67f1a7591","Message":"add hidden function\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-02-27T22:37:25+01:00"},"CompareURL":"bek/du1/compare/0000000000000000000000000000000000000000...e1f473a84c87e81586a3b27e1b581cb67f1a7591","Len":0}', 1709244732); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1354, 1, 1, 1, 53, 0, 0, '', 1, '', 1709473810); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1355, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '', 1709490127); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1356, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"8066d682a875a6b52355031f16c410b2c5492f37","Message":"ukol1 soucet rady\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-03T19:21:49+01:00"},{"Sha1":"c2977e3ab1b4442c929adea559d5dfb76d350d59","Message":"init cv01\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-03T18:37:46+01:00"}],"HeadCommit":{"Sha1":"8066d682a875a6b52355031f16c410b2c5492f37","Message":"ukol1 soucet rady\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-03T19:21:49+01:00"},"CompareURL":"","Len":2}', 1709490127); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1357, 1, 5, 1, 52, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"8c7b4afd4d195db52a37c8b765630e8247ef3776","Message":"copy\u0026paste chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T12:28:14+01:00"}],"HeadCommit":{"Sha1":"8c7b4afd4d195db52a37c8b765630e8247ef3776","Message":"copy\u0026paste chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T12:28:14+01:00"},"CompareURL":"bek/du1/compare/935ec49d17075ae2f7c7c5c95def9a81fee6a1b1...8c7b4afd4d195db52a37c8b765630e8247ef3776","Len":1}', 1709638127); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1358, 6, 5, 1, 52, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"8c7b4afd4d195db52a37c8b765630e8247ef3776","Message":"copy\u0026paste chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T12:28:14+01:00"}],"HeadCommit":{"Sha1":"8c7b4afd4d195db52a37c8b765630e8247ef3776","Message":"copy\u0026paste chyba\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T12:28:14+01:00"},"CompareURL":"bek/du1/compare/935ec49d17075ae2f7c7c5c95def9a81fee6a1b1...8c7b4afd4d195db52a37c8b765630e8247ef3776","Len":1}', 1709638127); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1359, 1, 5, 1, 52, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"596d24a6a6e40e09ba1ad192406ad46a2ed21d5b","Message":"ukol.md\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T22:24:26+01:00"}],"HeadCommit":{"Sha1":"596d24a6a6e40e09ba1ad192406ad46a2ed21d5b","Message":"ukol.md\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T22:24:26+01:00"},"CompareURL":"bek/du1/compare/8c7b4afd4d195db52a37c8b765630e8247ef3776...596d24a6a6e40e09ba1ad192406ad46a2ed21d5b","Len":1}', 1709673895); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1360, 6, 5, 1, 52, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"596d24a6a6e40e09ba1ad192406ad46a2ed21d5b","Message":"ukol.md\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T22:24:26+01:00"}],"HeadCommit":{"Sha1":"596d24a6a6e40e09ba1ad192406ad46a2ed21d5b","Message":"ukol.md\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-05T22:24:26+01:00"},"CompareURL":"bek/du1/compare/8c7b4afd4d195db52a37c8b765630e8247ef3776...596d24a6a6e40e09ba1ad192406ad46a2ed21d5b","Len":1}', 1709673895); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1361, 1, 2, 1, 52, 0, 0, '', 1, 'du1', 1709749460); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1362, 6, 2, 1, 52, 0, 0, '', 1, 'du1', 1709749460); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1363, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"9f58f6a5516c3c42879c1354c8e2d4bb99629c6b","Message":"pt01: 11.3. NO\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-11T23:40:34+01:00"},{"Sha1":"4e0abeebe052f7f233040c1ae8d197227ae039fa","Message":"pt01: init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-11T11:45:22+01:00"}],"HeadCommit":{"Sha1":"9f58f6a5516c3c42879c1354c8e2d4bb99629c6b","Message":"pt01: 11.3. NO\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-11T23:40:34+01:00"},"CompareURL":"prokop/BI-OSY/compare/8066d682a875a6b52355031f16c410b2c5492f37...9f58f6a5516c3c42879c1354c8e2d4bb99629c6b","Len":2}', 1710196854); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1364, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"38e6b75bdd2c2a86a5088f80eea79b1a77505dc9","Message":"some tweaks\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-12T12:50:32+01:00"},{"Sha1":"4b9a4ba7f886df11e68c6ab74909dd23fa7746d9","Message":"compile\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-12T12:15:42+01:00"}],"HeadCommit":{"Sha1":"38e6b75bdd2c2a86a5088f80eea79b1a77505dc9","Message":"some tweaks\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-12T12:50:32+01:00"},"CompareURL":"prokop/BI-OSY/compare/9f58f6a5516c3c42879c1354c8e2d4bb99629c6b...38e6b75bdd2c2a86a5088f80eea79b1a77505dc9","Len":2}', 1710244254); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1365, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"0bc267aa5e43f1268afc0ba548becba2a5cd47a5","Message":"pt01: ok ale neni semafor na PT\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-13T00:01:53+01:00"},{"Sha1":"21a59faade7d621a99c3ae35d20b77fbe40ecb71","Message":"pt01: one worker OK\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-12T23:19:30+01:00"}],"HeadCommit":{"Sha1":"0bc267aa5e43f1268afc0ba548becba2a5cd47a5","Message":"pt01: ok ale neni semafor na PT\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-13T00:01:53+01:00"},"CompareURL":"prokop/BI-OSY/compare/38e6b75bdd2c2a86a5088f80eea79b1a77505dc9...0bc267aa5e43f1268afc0ba548becba2a5cd47a5","Len":2}', 1710284799); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1366, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"f9523aabea02c3d5864e5345a8a1e07bb0257c17","Message":"semaphor ok, slow busy wait\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-13T13:19:42+01:00"}],"HeadCommit":{"Sha1":"f9523aabea02c3d5864e5345a8a1e07bb0257c17","Message":"semaphor ok, slow busy wait\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-13T13:19:42+01:00"},"CompareURL":"prokop/BI-OSY/compare/0bc267aa5e43f1268afc0ba548becba2a5cd47a5...f9523aabea02c3d5864e5345a8a1e07bb0257c17","Len":1}', 1710335003); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1367, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"ed7710197a77f193691ff8f895fd1dae9fec05b5","Message":"more check if need signal\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-13T14:05:59+01:00"}],"HeadCommit":{"Sha1":"ed7710197a77f193691ff8f895fd1dae9fec05b5","Message":"more check if need signal\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-13T14:05:59+01:00"},"CompareURL":"prokop/BI-OSY/compare/f9523aabea02c3d5864e5345a8a1e07bb0257c17...ed7710197a77f193691ff8f895fd1dae9fec05b5","Len":1}', 1710335187); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1368, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"7c581bc096f155af700ccfea5e296d607564ff08","Message":"deadlock debug\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-13T14:17:50+01:00"}],"HeadCommit":{"Sha1":"7c581bc096f155af700ccfea5e296d607564ff08","Message":"deadlock debug\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-13T14:17:50+01:00"},"CompareURL":"prokop/BI-OSY/compare/ed7710197a77f193691ff8f895fd1dae9fec05b5...7c581bc096f155af700ccfea5e296d607564ff08","Len":1}', 1710335886); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1369, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"53b2cc7b40ead888407ac09d7fa201391431bfb4","Message":"pt01: MLOK\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-13T19:54:03+01:00"},{"Sha1":"9bf80b9d4ff6a4cf9151fbfcd6375801bcb06bea","Message":"pt01: less deadlock, 8b\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-13T18:58:43+01:00"}],"HeadCommit":{"Sha1":"53b2cc7b40ead888407ac09d7fa201391431bfb4","Message":"pt01: MLOK\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-13T19:54:03+01:00"},"CompareURL":"prokop/BI-OSY/compare/7c581bc096f155af700ccfea5e296d607564ff08...53b2cc7b40ead888407ac09d7fa201391431bfb4","Len":2}', 1710356069); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1370, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"81d343e42a4e0ca5514edaee774a984a05cf13e6","Message":"cv02: rest\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-14T10:47:31+01:00"},{"Sha1":"f9e0f750b53b24dc29868a9215876094558bf4e8","Message":"cv02: one mutex\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-14T10:41:33+01:00"},{"Sha1":"f72ae2015d5973dfddec74722355c231b853a359","Message":"cv02: check before sleep\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-14T10:40:25+01:00"},{"Sha1":"ffe32b27470197e376f7793dac05c708c9460ab4","Message":"cv02: ok condv\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-14T10:27:02+01:00"},{"Sha1":"bf8ec161308cc465706e3c61afd7de98c7c1f2d3","Message":"cv02: condvar bad\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-14T10:23:17+01:00"}],"HeadCommit":{"Sha1":"81d343e42a4e0ca5514edaee774a984a05cf13e6","Message":"cv02: rest\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-14T10:47:31+01:00"},"CompareURL":"prokop/BI-OSY/compare/53b2cc7b40ead888407ac09d7fa201391431bfb4...81d343e42a4e0ca5514edaee774a984a05cf13e6","Len":8}', 1710409666); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1371, 1, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"bd437657494ee589d8cde53ca5910945f51071bc","Message":"replace dockupdater with watchtower\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-15T16:34:24+01:00"}],"HeadCommit":{"Sha1":"bd437657494ee589d8cde53ca5910945f51071bc","Message":"replace dockupdater with watchtower\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-15T16:34:24+01:00"},"CompareURL":"h21/fotky-docker/compare/405e35ec08fe4dfa230f45d67c493957ab0c9b93...bd437657494ee589d8cde53ca5910945f51071bc","Len":1}', 1710516887); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1372, 2, 5, 1, 21, 0, 0, 'refs/heads/master', 0, '{"Commits":[{"Sha1":"bd437657494ee589d8cde53ca5910945f51071bc","Message":"replace dockupdater with watchtower\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-15T16:34:24+01:00"}],"HeadCommit":{"Sha1":"bd437657494ee589d8cde53ca5910945f51071bc","Message":"replace dockupdater with watchtower\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-15T16:34:24+01:00"},"CompareURL":"h21/fotky-docker/compare/405e35ec08fe4dfa230f45d67c493957ab0c9b93...bd437657494ee589d8cde53ca5910945f51071bc","Len":1}', 1710516887); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1373, 1, 1, 1, 54, 0, 0, '', 1, '', 1710579090); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1374, 1, 5, 1, 54, 0, 0, 'refs/heads/master', 1, '', 1710579116); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1375, 1, 5, 1, 54, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"c4bb6b5457df260b649948b9513d91163ff2529c","Message":"init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-16T09:51:02+01:00"}],"HeadCommit":{"Sha1":"c4bb6b5457df260b649948b9513d91163ff2529c","Message":"init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-16T09:51:02+01:00"},"CompareURL":"","Len":1}', 1710579116); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1376, 1, 5, 1, 54, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"4f2a469eab92f149106fe49e06fddd1cca5091d2","Message":"only fail\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T00:05:16+01:00"},{"Sha1":"646fef545df7f2cb10b35a9edccb3432510bb8e0","Message":"try, segmentation falut\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-16T23:46:22+01:00"}],"HeadCommit":{"Sha1":"4f2a469eab92f149106fe49e06fddd1cca5091d2","Message":"only fail\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T00:05:16+01:00"},"CompareURL":"prokop/bi-ag2/compare/c4bb6b5457df260b649948b9513d91163ff2529c...4f2a469eab92f149106fe49e06fddd1cca5091d2","Len":2}', 1710630330); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1377, 1, 5, 1, 54, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6a8a4900a95e4a18df1aaa80fea18362617c09ea","Message":"testy ok, PT 1.5\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T10:58:04+01:00"}],"HeadCommit":{"Sha1":"6a8a4900a95e4a18df1aaa80fea18362617c09ea","Message":"testy ok, PT 1.5\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T10:58:04+01:00"},"CompareURL":"prokop/bi-ag2/compare/4f2a469eab92f149106fe49e06fddd1cca5091d2...6a8a4900a95e4a18df1aaa80fea18362617c09ea","Len":1}', 1710669498); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1378, 1, 5, 1, 54, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"3b2a1256b8c94533590093c2b9f1d825f2c98f7f","Message":"ok, but too much recursion\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T11:34:13+01:00"}],"HeadCommit":{"Sha1":"3b2a1256b8c94533590093c2b9f1d825f2c98f7f","Message":"ok, but too much recursion\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T11:34:13+01:00"},"CompareURL":"prokop/bi-ag2/compare/6a8a4900a95e4a18df1aaa80fea18362617c09ea...3b2a1256b8c94533590093c2b9f1d825f2c98f7f","Len":1}', 1710671664); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1379, 1, 5, 1, 54, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"4af519fdde88bfc2c87b2963cd2aa96511bb4384","Message":"retDFS heap stack\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T17:34:10+01:00"}],"HeadCommit":{"Sha1":"4af519fdde88bfc2c87b2963cd2aa96511bb4384","Message":"retDFS heap stack\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T17:34:10+01:00"},"CompareURL":"prokop/bi-ag2/compare/3b2a1256b8c94533590093c2b9f1d825f2c98f7f...4af519fdde88bfc2c87b2963cd2aa96511bb4384","Len":1}', 1710696771); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1380, 1, 5, 1, 54, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"3779760b03a50f9bac3e6aec52839de007ddfb54","Message":"all recursion linear with stack, PT mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T18:32:23+01:00"}],"HeadCommit":{"Sha1":"3779760b03a50f9bac3e6aec52839de007ddfb54","Message":"all recursion linear with stack, PT mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-17T18:32:23+01:00"},"CompareURL":"prokop/bi-ag2/compare/4af519fdde88bfc2c87b2963cd2aa96511bb4384...3779760b03a50f9bac3e6aec52839de007ddfb54","Len":1}', 1710697270); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1381, 1, 1, 1, 55, 0, 0, '', 1, '', 1710798563); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1382, 6, 1, 1, 55, 0, 0, '', 1, '', 1710798563); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1383, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '', 1710798581); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1384, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '', 1710798581); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1385, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6ddc274b0fa7c9ccf1423d8478bc24e05522767f","Message":"ok only in edb\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-18T22:48:28+01:00"}],"HeadCommit":{"Sha1":"6ddc274b0fa7c9ccf1423d8478bc24e05522767f","Message":"ok only in edb\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-18T22:48:28+01:00"},"CompareURL":"","Len":1}', 1710798581); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1386, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"6ddc274b0fa7c9ccf1423d8478bc24e05522767f","Message":"ok only in edb\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-18T22:48:28+01:00"}],"HeadCommit":{"Sha1":"6ddc274b0fa7c9ccf1423d8478bc24e05522767f","Message":"ok only in edb\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-18T22:48:28+01:00"},"CompareURL":"","Len":1}', 1710798581); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1387, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"426b1c61cabe911eda15bd874c89fe4c9b08f7bc","Message":"gen payload, address for everyone\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T13:22:55+01:00"}],"HeadCommit":{"Sha1":"426b1c61cabe911eda15bd874c89fe4c9b08f7bc","Message":"gen payload, address for everyone\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T13:22:55+01:00"},"CompareURL":"bek/bufferOverflow/compare/6ddc274b0fa7c9ccf1423d8478bc24e05522767f...426b1c61cabe911eda15bd874c89fe4c9b08f7bc","Len":1}', 1710851014); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1388, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"426b1c61cabe911eda15bd874c89fe4c9b08f7bc","Message":"gen payload, address for everyone\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T13:22:55+01:00"}],"HeadCommit":{"Sha1":"426b1c61cabe911eda15bd874c89fe4c9b08f7bc","Message":"gen payload, address for everyone\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T13:22:55+01:00"},"CompareURL":"bek/bufferOverflow/compare/6ddc274b0fa7c9ccf1423d8478bc24e05522767f...426b1c61cabe911eda15bd874c89fe4c9b08f7bc","Len":1}', 1710851014); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1389, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"c79dc29b333f863501afe215dbdef3b23291e6a5","Message":"payload na miru dle vypsane adresy\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T21:48:07+01:00"}],"HeadCommit":{"Sha1":"c79dc29b333f863501afe215dbdef3b23291e6a5","Message":"payload na miru dle vypsane adresy\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T21:48:07+01:00"},"CompareURL":"bek/bufferOverflow/compare/426b1c61cabe911eda15bd874c89fe4c9b08f7bc...c79dc29b333f863501afe215dbdef3b23291e6a5","Len":1}', 1710881316); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1390, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"c79dc29b333f863501afe215dbdef3b23291e6a5","Message":"payload na miru dle vypsane adresy\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T21:48:07+01:00"}],"HeadCommit":{"Sha1":"c79dc29b333f863501afe215dbdef3b23291e6a5","Message":"payload na miru dle vypsane adresy\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T21:48:07+01:00"},"CompareURL":"bek/bufferOverflow/compare/426b1c61cabe911eda15bd874c89fe4c9b08f7bc...c79dc29b333f863501afe215dbdef3b23291e6a5","Len":1}', 1710881316); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1391, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"440f66db9f58f7fc264d83a3e5d02f19c84a3d73","Message":"prvni cast\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T22:58:14+01:00"}],"HeadCommit":{"Sha1":"440f66db9f58f7fc264d83a3e5d02f19c84a3d73","Message":"prvni cast\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T22:58:14+01:00"},"CompareURL":"bek/bufferOverflow/compare/c79dc29b333f863501afe215dbdef3b23291e6a5...440f66db9f58f7fc264d83a3e5d02f19c84a3d73","Len":1}', 1710885519); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1392, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"440f66db9f58f7fc264d83a3e5d02f19c84a3d73","Message":"prvni cast\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T22:58:14+01:00"}],"HeadCommit":{"Sha1":"440f66db9f58f7fc264d83a3e5d02f19c84a3d73","Message":"prvni cast\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-19T22:58:14+01:00"},"CompareURL":"bek/bufferOverflow/compare/c79dc29b333f863501afe215dbdef3b23291e6a5...440f66db9f58f7fc264d83a3e5d02f19c84a3d73","Len":1}', 1710885519); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1393, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"d30f5bd6c1d88155859c163579f8a3ae6f8f66ad","Message":"odevzdani ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-20T21:43:41+01:00"}],"HeadCommit":{"Sha1":"d30f5bd6c1d88155859c163579f8a3ae6f8f66ad","Message":"odevzdani ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-20T21:43:41+01:00"},"CompareURL":"bek/bufferOverflow/compare/440f66db9f58f7fc264d83a3e5d02f19c84a3d73...d30f5bd6c1d88155859c163579f8a3ae6f8f66ad","Len":1}', 1710968930); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1394, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"d30f5bd6c1d88155859c163579f8a3ae6f8f66ad","Message":"odevzdani ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-20T21:43:41+01:00"}],"HeadCommit":{"Sha1":"d30f5bd6c1d88155859c163579f8a3ae6f8f66ad","Message":"odevzdani ready\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-20T21:43:41+01:00"},"CompareURL":"bek/bufferOverflow/compare/440f66db9f58f7fc264d83a3e5d02f19c84a3d73...d30f5bd6c1d88155859c163579f8a3ae6f8f66ad","Len":1}', 1710968930); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1395, 1, 18, 1, 58, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"92b981c8d9c7303c9dbcf5e545da5d10ac0ee133","Message":"hw02: start, need better check function\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T00:09:17+01:00"},{"Sha1":"bc6332f3edd0287790cafb10519961c3848dc5e6","Message":"hw02: init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-24T23:05:28+01:00"}],"HeadCommit":{"Sha1":"92b981c8d9c7303c9dbcf5e545da5d10ac0ee133","Message":"hw02: start, need better check function\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T00:09:17+01:00"},"CompareURL":"prokop/bi-kab/compare/feafbc309fb2a7e239246bf5ac3f09556c035fd8...92b981c8d9c7303c9dbcf5e545da5d10ac0ee133","Len":2}', 1711347556); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1396, 1, 18, 1, 58, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"ed591fc0f20bcaa2579d3497c1cb4914d62e529f","Message":"hw02: hash prevoius hash and MD free, mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T10:51:54+01:00"},{"Sha1":"bf3ccac38e46bc0c25c856807e633af0adf27371","Message":"hw02: basic ok, too slow\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T10:00:38+01:00"}],"HeadCommit":{"Sha1":"ed591fc0f20bcaa2579d3497c1cb4914d62e529f","Message":"hw02: hash prevoius hash and MD free, mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T10:51:54+01:00"},"CompareURL":"prokop/bi-kab/compare/92b981c8d9c7303c9dbcf5e545da5d10ac0ee133...ed591fc0f20bcaa2579d3497c1cb4914d62e529f","Len":2}', 1711360343); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1397, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"f06d3609286088f65b7bbfbb4a784163f8a46499","Message":"add execve documentation\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T13:04:58+01:00"}],"HeadCommit":{"Sha1":"f06d3609286088f65b7bbfbb4a784163f8a46499","Message":"add execve documentation\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T13:04:58+01:00"},"CompareURL":"bek/bufferOverflow/compare/d30f5bd6c1d88155859c163579f8a3ae6f8f66ad...f06d3609286088f65b7bbfbb4a784163f8a46499","Len":1}', 1711368318); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1398, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"f06d3609286088f65b7bbfbb4a784163f8a46499","Message":"add execve documentation\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T13:04:58+01:00"}],"HeadCommit":{"Sha1":"f06d3609286088f65b7bbfbb4a784163f8a46499","Message":"add execve documentation\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T13:04:58+01:00"},"CompareURL":"bek/bufferOverflow/compare/d30f5bd6c1d88155859c163579f8a3ae6f8f66ad...f06d3609286088f65b7bbfbb4a784163f8a46499","Len":1}', 1711368318); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1399, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"d88f2eef5a8b42a0559ba72d16dc81f875a4d9af","Message":"oprava 4oprava 4oprava 4oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"},{"Sha1":"3768af4fabd60caef5702afcb9ec0814b224d806","Message":"better exploit description\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T21:34:47+01:00"}],"HeadCommit":{"Sha1":"d88f2eef5a8b42a0559ba72d16dc81f875a4d9af","Message":"oprava 4oprava 4oprava 4oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"},"CompareURL":"bek/bufferOverflow/compare/f06d3609286088f65b7bbfbb4a784163f8a46499...d88f2eef5a8b42a0559ba72d16dc81f875a4d9af","Len":2}', 1711482408); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1400, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"d88f2eef5a8b42a0559ba72d16dc81f875a4d9af","Message":"oprava 4oprava 4oprava 4oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"},{"Sha1":"3768af4fabd60caef5702afcb9ec0814b224d806","Message":"better exploit description\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-25T21:34:47+01:00"}],"HeadCommit":{"Sha1":"d88f2eef5a8b42a0559ba72d16dc81f875a4d9af","Message":"oprava 4oprava 4oprava 4oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"},"CompareURL":"bek/bufferOverflow/compare/f06d3609286088f65b7bbfbb4a784163f8a46499...d88f2eef5a8b42a0559ba72d16dc81f875a4d9af","Len":2}', 1711482408); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1401, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"12627532394c5b20220d8f900a2a7c8abd904401","Message":"oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"}],"HeadCommit":{"Sha1":"12627532394c5b20220d8f900a2a7c8abd904401","Message":"oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"},"CompareURL":"bek/bufferOverflow/compare/d88f2eef5a8b42a0559ba72d16dc81f875a4d9af...12627532394c5b20220d8f900a2a7c8abd904401","Len":1}', 1711482511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1402, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"12627532394c5b20220d8f900a2a7c8abd904401","Message":"oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"}],"HeadCommit":{"Sha1":"12627532394c5b20220d8f900a2a7c8abd904401","Message":"oprava 4\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T20:46:04+01:00"},"CompareURL":"bek/bufferOverflow/compare/d88f2eef5a8b42a0559ba72d16dc81f875a4d9af...12627532394c5b20220d8f900a2a7c8abd904401","Len":1}', 1711482511); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1403, 1, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"9eccd2330c9dd244264167add4d1116d07696226","Message":"some tweaks\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T21:32:45+01:00"}],"HeadCommit":{"Sha1":"9eccd2330c9dd244264167add4d1116d07696226","Message":"some tweaks\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T21:32:45+01:00"},"CompareURL":"bek/bufferOverflow/compare/12627532394c5b20220d8f900a2a7c8abd904401...9eccd2330c9dd244264167add4d1116d07696226","Len":1}', 1711485495); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1404, 6, 5, 1, 55, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"9eccd2330c9dd244264167add4d1116d07696226","Message":"some tweaks\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T21:32:45+01:00"}],"HeadCommit":{"Sha1":"9eccd2330c9dd244264167add4d1116d07696226","Message":"some tweaks\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-26T21:32:45+01:00"},"CompareURL":"bek/bufferOverflow/compare/12627532394c5b20220d8f900a2a7c8abd904401...9eccd2330c9dd244264167add4d1116d07696226","Len":1}', 1711485495); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1405, 1, 5, 1, 53, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"bf890718c7eb4f976e3c80d527f9b715a11f373c","Message":"cv03: sum_sem\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-28T10:35:00+01:00"},{"Sha1":"2b7eb980a63a9ccf1cff0f40bf2f4d4248931678","Message":"cv03 init\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-28T09:25:17+01:00"}],"HeadCommit":{"Sha1":"bf890718c7eb4f976e3c80d527f9b715a11f373c","Message":"cv03: sum_sem\n","AuthorEmail":"paruzpro@fit.cvut.cz","AuthorName":"Prokop Parůžek","CommitterEmail":"paruzpro@fit.cvut.cz","CommitterName":"Prokop Parůžek","Timestamp":"2024-03-28T10:35:00+01:00"},"CompareURL":"prokop/BI-OSY/compare/81d343e42a4e0ca5514edaee774a984a05cf13e6...bf890718c7eb4f976e3c80d527f9b715a11f373c","Len":2}', 1711618792); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1406, 1, 1, 1, 59, 0, 0, '', 1, '', 1711652909); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1407, 6, 1, 1, 59, 0, 0, '', 1, '', 1711652909); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1408, 1, 5, 1, 59, 0, 0, 'refs/heads/master', 1, '', 1711652927); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1409, 6, 5, 1, 59, 0, 0, 'refs/heads/master', 1, '', 1711652927); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1410, 1, 5, 1, 59, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"5f36b0c0876ebd8a2998206146dd8d44cbf012fa","Message":"bugs init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-28T20:07:37+01:00"}],"HeadCommit":{"Sha1":"5f36b0c0876ebd8a2998206146dd8d44cbf012fa","Message":"bugs init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-28T20:07:37+01:00"},"CompareURL":"","Len":1}', 1711652928); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1411, 6, 5, 1, 59, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"5f36b0c0876ebd8a2998206146dd8d44cbf012fa","Message":"bugs init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-28T20:07:37+01:00"}],"HeadCommit":{"Sha1":"5f36b0c0876ebd8a2998206146dd8d44cbf012fa","Message":"bugs init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-03-28T20:07:37+01:00"},"CompareURL":"","Len":1}', 1711652928); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1412, 1, 6, 1, 47, 0, 0, '', 0, '24|Cepín', 1711915863); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1413, 1, 6, 1, 47, 0, 0, '', 0, '25|Lidl', 1711916316); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1414, 1, 6, 1, 47, 0, 0, '', 0, '26|Protektorát', 1711916333); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1415, 1, 10, 1, 47, 34, 0, '', 0, '25|Bez originálu.', 1711916344); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1416, 1, 10, 1, 47, 35, 0, '', 0, '25|V bávu', 1711916393); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1417, 1, 6, 1, 47, 0, 0, '', 0, '27|Finská polka', 1711952585); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1418, 1, 18, 1, 58, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"0cc5e1af7498f0f0427d5598fa1c7bcb955601f7","Message":"pt03: mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-01T19:16:56+02:00"},{"Sha1":"56f00d855db8bc23dc18799e2a8890fbfe3f3908","Message":"pt03: bad inputs\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-01T17:26:51+02:00"},{"Sha1":"bc72dea1db355f99c1065716897ae04f9c57b4df","Message":"pt03: init\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-01T16:11:05+02:00"}],"HeadCommit":{"Sha1":"0cc5e1af7498f0f0427d5598fa1c7bcb955601f7","Message":"pt03: mlok\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-01T19:16:56+02:00"},"CompareURL":"prokop/bi-kab/compare/ed591fc0f20bcaa2579d3497c1cb4914d62e529f...0cc5e1af7498f0f0427d5598fa1c7bcb955601f7","Len":3}', 1711998647); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1419, 1, 18, 1, 58, 0, 0, 'refs/heads/crypto', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1712086648); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1420, 1, 19, 1, 58, 0, 0, 'refs/heads/crypto', 1, '', 1712086648); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1421, 1, 18, 1, 58, 0, 0, 'refs/heads/hash', 1, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1712086648); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1422, 1, 19, 1, 58, 0, 0, 'refs/heads/hash', 1, '', 1712086649); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1423, 1, 18, 1, 58, 0, 0, 'refs/heads/master', 1, '{"Commits":[],"HeadCommit":{"Sha1":"feafbc309fb2a7e239246bf5ac3f09556c035fd8","Message":"Merge branch ''ukol1'' into ''master''\n\nUkol1\n\nSee merge request BI-KAB/B232/C11/paruzpro!1","AuthorEmail":"ivana.trummova@fit.cvut.cz","AuthorName":"Ivana Trummová","CommitterEmail":"ivana.trummova@fit.cvut.cz","CommitterName":"Ivana Trummová","Timestamp":"2024-03-05T09:02:01+01:00"},"CompareURL":"prokop/bi-kab/compare/0cc5e1af7498f0f0427d5598fa1c7bcb955601f7...feafbc309fb2a7e239246bf5ac3f09556c035fd8","Len":0}', 1712086649); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1424, 1, 18, 1, 58, 0, 0, 'refs/heads/hash', 1, '{"Commits":[{"Sha1":"80a102a7746af80039cd96945b6799c350861eb5","Message":"hw02: add hash find time graph\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-02T22:11:58+02:00"}],"HeadCommit":{"Sha1":"80a102a7746af80039cd96945b6799c350861eb5","Message":"hw02: add hash find time graph\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-02T22:11:58+02:00"},"CompareURL":"prokop/bi-kab/compare/ed591fc0f20bcaa2579d3497c1cb4914d62e529f...80a102a7746af80039cd96945b6799c350861eb5","Len":1}', 1712116049); INSERT OR IGNORE INTO 'action'('id', 'user_id', 'op_type', 'act_user_id', 'repo_id', 'comment_id', 'is_deleted', 'ref_name', 'is_private', 'content', 'created_unix') VALUES (1425, 1, 5, 1, 59, 0, 0, 'refs/heads/master', 1, '{"Commits":[{"Sha1":"c4db1e5807a08e6baf652be3bdf508bd6f95cc64","Message":"errors 11\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-03T20:39:57+02:00"}],"HeadCommit":{"Sha1":"c4db1e5807a08e6baf652be3bdf508bd6f95cc64","Message":"errors 11\n","AuthorEmail":"prokop.paruzek@paruzkovi.cz","AuthorName":"prokopparuzek","CommitterEmail":"prokop.paruzek@paruzkovi.cz","CommitterName":"prokopparuzek","Timestamp":"2024-04-03T20:39:57+02:00"},"CompareURL":"bek/bugs/compare/5f36b0c0876ebd8a2998206146dd8d44cbf012fa...c4db1e5807a08e6baf652be3bdf508bd6f95cc64","Len":1}', 1712169624); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45700, 7, 0, 'pt06-naive', '', 0, 'pt06-naive', '', '', '5f41f3a208b68e61016411c767c732b903ead2e4', -1, '', 0, 0, 1, 1668976437); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45701, 7, 0, 'mpt09', '', 0, 'mpt09', '', '', '9aa706e4d2944ae718d8add95e31853667737bb7', -1, '', 0, 0, 1, 1668643089); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45702, 7, 0, 'pt05', '', 0, 'pt05', '', '', '124a0794146817d1b6254ef1bca1e8e03662de2f', -1, '', 0, 0, 1, 1668631358); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45703, 7, 0, 'pt05-naive', '', 0, 'pt05-naive', '', '', 'dbb45bf5dcd6cc0be39d52f8e3b9bc03634c093f', -1, '', 0, 0, 1, 1668626703); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45704, 7, 0, 'pt05-NULL', '', 0, 'pt05-null', '', '', 'a6bcb246fbf7bebb8fc635110889c9517b8d1cc5', -1, '', 0, 0, 1, 1668553236); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45705, 7, 0, 'tut08', '', 0, 'tut08', '', '', 'e0c6aff4e7a3678b9e4d9c43ee0dd9f2bf31d896', -1, '', 0, 0, 1, 1668104693); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45706, 7, 0, 'mpt08', '', 0, 'mpt08', '', '', '7ece9a44d5cb0e4e7aef9ef54d64a873d20dcdbf', -1, '', 0, 0, 1, 1667909436); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45707, 7, 0, 'pt04', '', 0, 'pt04', '', '', '03bc75a6389bd2f7443f5346417ef1368ae1e152', -1, '', 0, 0, 1, 1667846854); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45708, 7, 0, 'tut07', '', 0, 'tut07', '', '', '42cebf47b2b7fdc696554f0b7e6e1ef5bcf353ab', -1, '', 0, 0, 1, 1667499967); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45709, 7, 0, 'mpt07', '', 0, 'mpt07', '', '', '559b14466f1e2b165b2c8752cac5eb8f5855e208', -1, '', 0, 0, 1, 1667342752); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45710, 7, 0, 'pt03', '', 0, 'pt03', '', '', '05f9dfbc0f42e5f851a68eec84a1ffd1879bb778', -1, '', 0, 0, 1, 1667334514); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45711, 7, 0, 'pt02', '', 0, 'pt02', '', '', '37c35c0582cf11df0397c8e97475b9f80554fac0', -1, '', 0, 0, 1, 1666797805); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45712, 7, 0, 'pt02-jit', '', 0, 'pt02-jit', '', '', 'a8a0ba2fcfb66f5ddc2015b612ed8cf8b742395b', -1, '', 0, 0, 1, 1666712284); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45713, 7, 0, 'mpt06', '', 0, 'mpt06', '', '', '5b4e99057fe32700572b6cd47c108999b2f51b37', -1, '', 0, 0, 1, 1666643738); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45714, 7, 0, 'tut05', '', 0, 'tut05', '', '', 'c4fe488835999d1c93014b62dc3161a77f32afb1', -1, '', 0, 0, 1, 1666284954); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45715, 7, 0, 'mpt05-2', '', 0, 'mpt05-2', '', '', 'e98a2e451e6252f842395a73f610954062b4bb5d', -1, '', 0, 0, 1, 1666282702); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45716, 7, 0, 'mpt05-1', '', 0, 'mpt05-1', '', '', 'e01e902f8c4269d68b83fa8a3ba11f2875be4edf', -1, '', 0, 0, 1, 1666035960); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45717, 7, 0, 'pt01', '', 0, 'pt01', '', '', 'a1ab0d69d281f7004fa83f8e5061fae60d424cd5', -1, '', 0, 0, 1, 1666033048); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45718, 7, 0, 'tut04', '', 0, 'tut04', '', '', '38f025d6bce08ff25e0aa6bab4ab6d2fcee40461', -1, '', 0, 0, 1, 1665682277); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45719, 7, 0, 'mpt04', '', 0, 'mpt04', '', '', 'f65de66773ab1c8f8ec271970aa9da3d2d45fe28', -1, '', 0, 0, 1, 1665479831); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45720, 7, 0, 'pt00', '', 0, 'pt00', '', '', '5a927c68f842be3f8de583acda50f554a239496c', -1, '', 0, 0, 1, 1665436655); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45721, 7, 0, 'mpt03', '', 0, 'mpt03', '', '', '83f76236fa78c6bdc5f72d646312471463e1aa64', -1, '', 0, 0, 1, 1665426558); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45722, 7, 0, 'tests-1', '', 0, 'tests-1', '', '', '07a8e1862c1f2fbcf225c4eb53e3a49687e876e2', -1, '', 0, 0, 1, 1665426518); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45723, 7, 0, 'tut03', '', 0, 'tut03', '', '', '855ecb93bf297b6bea4b954168c30be9f66c291e', -1, '', 0, 0, 1, 1665426518); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45724, 7, 0, 'tut02', '', 0, 'tut02', '', '', 'b2bad7fdd1c57983c9f26926f34296b00b5cfea0', -1, '', 0, 0, 1, 1665426506); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45725, 52, 0, 'x64', '', 0, 'x64', '', 'add hidden function', 'e1f473a84c87e81586a3b27e1b581cb67f1a7591', 4, '', 0, 0, 1, 1709069845); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8219, 22, 0, 'MOVE2GIT', '', 0, 'move2git', '', '', '34221670bc81de75eab4b1e214ce479eb7dd51af', 4102, '', 0, 0, 1, 1430484928); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8220, 22, 0, 'NetHack-3.6.0_RC01', '', 0, 'nethack-3.6.0_rc01', '', '', 'bc19360ae0594dd2676d33d62c85a1015affeab7', 5459, '', 0, 0, 1, 1449082689); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8221, 22, 0, 'NetHack-3.6.0_RC02', '', 0, 'nethack-3.6.0_rc02', '', '', '71c5bab0c36de4dc73d70c8209f08ccf59579385', 5481, '', 0, 0, 1, 1449421554); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8222, 22, 0, 'NetHack-3.6.0_RC03', '', 0, 'nethack-3.6.0_rc03', '', '', '7079c0a3a5291d2a17239fe2a6b1a4a741b6f496', 5483, '', 0, 0, 1, 1449432743); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8223, 22, 0, 'NetHack-3.6.0_RC04', '', 0, 'nethack-3.6.0_rc04', '', '', 'a1af46ab7ca999a25899276685c033e710eec62a', 5485, '', 0, 0, 1, 1449457519); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8224, 22, 0, 'NetHack-3.6.0_RC05', '', 0, 'nethack-3.6.0_rc05', '', '', '585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc', 5486, '', 0, 0, 1, 1449529836); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8225, 22, 0, 'NetHack-3.6.0_Release', '', 0, 'nethack-3.6.0_release', '', '', '585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc', 5486, '', 0, 0, 1, 1449529899); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8226, 22, 0, 'NetHack-3.6.1_RC01', '', 0, 'nethack-3.6.1_rc01', '', '', 'd4ebae12f1a709d1833cf466dd0c553fb97518d2', 6836, '', 0, 0, 1, 1524803488); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8227, 22, 0, 'NetHack-3.6.1_Release', '', 0, 'nethack-3.6.1_release', '', '', 'd4ebae12f1a709d1833cf466dd0c553fb97518d2', 6836, '', 0, 0, 1, 1524845429); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8228, 22, 0, 'NetHack-3.6.2_Release', '', 0, 'nethack-3.6.2_release', '', '', '76090dd648dcff3cfa7503f1257e0499a381b1c1', 8294, '', 0, 0, 1, 1557624702); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8229, 22, 0, 'NetHack-3.6.2_Released', '', 0, 'nethack-3.6.2_released', '', '', '76090dd648dcff3cfa7503f1257e0499a381b1c1', 8294, '', 0, 0, 1, 1557257645); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8230, 22, 0, 'NetHack-3.6.3.beta1.2019.11.17', '', 0, 'nethack-3.6.3.beta1.2019.11.17', '', '', '32e61f7dd285b86e316e71c7d03c2433f8c143b6', 8832, '', 0, 0, 1, 1574041720); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8231, 22, 0, 'NetHack-3.6.3.wip.2019.10.29', '', 0, 'nethack-3.6.3.wip.2019.10.29', '', '', 'fff4ceebdd3b139065a904bf26c1266d3891580e', 8676, '', 0, 0, 1, 1572356061); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8232, 22, 0, 'NetHack-3.6.3.wip.2019.10.30', '', 0, 'nethack-3.6.3.wip.2019.10.30', '', '', 'feaaa934513b2f93ae5b6533fc4ea4e952fb04fa', 8678, '', 0, 0, 1, 1572386098); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8233, 22, 0, 'NetHack-3.6.3.wip.2019.11.04', '', 0, 'nethack-3.6.3.wip.2019.11.04', '', '', '7efdec7f5e56202eeb28989d4a6ff82f5568dc88', 8739, '', 0, 0, 1, 1572892934); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8234, 22, 0, 'NetHack-3.6.3_Released', '', 0, 'nethack-3.6.3_released', '', '', '7ea41cd31d9f418b6eeac8e43a179cfae4b064bd', 8888, '', 0, 0, 1, 1575588244); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8235, 22, 0, 'NetHack-3.6.3_WIP', '', 0, 'nethack-3.6.3_wip', '', '', 'aeb3c7a6235e82e27c5965fbfe32826a10e38365', 8295, '', 0, 0, 1, 1557661495); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8236, 22, 0, 'NetHack-3.6.4_Released', '', 0, 'nethack-3.6.4_released', '', '', 'cf9e92677a18d1bc66c040068b2e666c651c7522', 8935, '', 0, 0, 1, 1576700980); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8237, 22, 0, 'NetHack-3.6.5_PostRelease', '', 0, 'nethack-3.6.5_postrelease', '', '', '514682730773318f68d5b28b0428cfe333f92fe0', 8994, '', 0, 0, 1, 1580163234); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8238, 22, 0, 'NetHack-3.6.5_Released', '', 0, 'nethack-3.6.5_released', '', '', '514682730773318f68d5b28b0428cfe333f92fe0', 8994, '', 0, 0, 1, 1580156059); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8239, 22, 0, 'NetHack-3.6.6_PostRelease', '', 0, 'nethack-3.6.6_postrelease', '', '', '36ee1849b1932d72a2340233c57701b1274c90ee', 9016, '', 0, 0, 1, 1583693965); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8240, 22, 0, 'NetHack-3.6.6_Released', '', 0, 'nethack-3.6.6_released', '', '', '34c56eece35f42aa99bb5ab1a829bb31b2db3b1a', 9015, '', 0, 0, 1, 1583688571); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8241, 22, 0, 'NetHack-3.7.0_WIP', '', 0, 'nethack-3.7.0_wip', '', '', 'efd0911f89dbdaaf205c850f1fc35289e1a23f63', 10175, '', 0, 0, 1, 1580163491); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8242, 22, 0, 'NetHack-3.7.0_WIP-2020-02-14', '', 0, 'nethack-3.7.0_wip-2020-02-14', '', '', '334db31cd018712d5e4191c590a61548a2cbeae2', 10314, '', 0, 0, 1, 1581649837); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8243, 22, 0, 'nmake-explicit-path', '', 0, 'nmake-explicit-path', '', '', '50a6526bde3e0fbf5369de6d53431d6a4c4daff6', 8471, '', 0, 0, 1, 1561827832); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8244, 22, 0, 'v3.6.3.757eca7', '', 0, 'v3.6.3.757eca7', '', '', '757eca7fd98d8f72be798cde7ee0a5dc9d280826', 8661, '', 0, 0, 1, 1572070266); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8245, 22, 0, 'v3.6.3.wip.2019.10.29', '', 0, 'v3.6.3.wip.2019.10.29', '', '', 'fff4ceebdd3b139065a904bf26c1266d3891580e', 8676, '', 0, 0, 1, 1572356061); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8246, 23, 0, 'MOVE2GIT', '', 0, 'move2git', '', '', '34221670bc81de75eab4b1e214ce479eb7dd51af', 4102, '', 0, 0, 1, 1430484928); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8247, 23, 0, 'NetHack-3.6.0_RC01', '', 0, 'nethack-3.6.0_rc01', '', '', 'bc19360ae0594dd2676d33d62c85a1015affeab7', 5459, '', 0, 0, 1, 1449082689); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8248, 23, 0, 'NetHack-3.6.0_RC02', '', 0, 'nethack-3.6.0_rc02', '', '', '71c5bab0c36de4dc73d70c8209f08ccf59579385', 5481, '', 0, 0, 1, 1449421554); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8249, 23, 0, 'NetHack-3.6.0_RC03', '', 0, 'nethack-3.6.0_rc03', '', '', '7079c0a3a5291d2a17239fe2a6b1a4a741b6f496', 5483, '', 0, 0, 1, 1449432743); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8250, 23, 0, 'NetHack-3.6.0_RC04', '', 0, 'nethack-3.6.0_rc04', '', '', 'a1af46ab7ca999a25899276685c033e710eec62a', 5485, '', 0, 0, 1, 1449457519); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8251, 23, 0, 'NetHack-3.6.0_RC05', '', 0, 'nethack-3.6.0_rc05', '', '', '585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc', 5486, '', 0, 0, 1, 1449529836); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8252, 23, 0, 'NetHack-3.6.0_Release', '', 0, 'nethack-3.6.0_release', '', '', '585e9f1b35fda7b47f8d27d12f7e93e12a69a7bc', 5486, '', 0, 0, 1, 1449529899); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8253, 23, 0, 'test-22', '', 0, 'test-22', '', '', 'ebcd5cae80a7a775f82b33523a623f71ac53845f', 13770, '', 0, 0, 1, 1616187204); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8254, 23, 0, 'xnh0.1.1', '', 0, 'xnh0.1.1', '', '', '4d3b9aebadf0ed5316d6ce033a667feb5f51f3d0', 7210, '', 0, 0, 1, 1523245640); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8255, 23, 0, 'xnh0.2.0', '', 0, 'xnh0.2.0', '', '', 'b0d569e8c1315b10b6e9ba40f937f1b6f081c5a0', 7345, '', 0, 0, 1, 1525903940); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8256, 23, 0, 'xnh6.0', '', 0, 'xnh6.0', '', '', '4cd9eef73b4a01c77596e2d7161a9f4f5181b8e1', 13745, '', 0, 0, 1, 1616452120); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8257, 23, 0, 'xnh6.1', '', 0, 'xnh6.1', '', '', '287d658b1fc18f8528439a8383b589f508973c08', 13935, '', 0, 0, 1, 1620567623); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8258, 23, 0, 'xnh7.0', '', 0, 'xnh7.0', '', '', '4a2453d8076b72c757d6ef88dcf0d311d0507480', 15106, '', 0, 0, 1, 1646701517); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8259, 23, 0, 'xnh7.1', '', 0, 'xnh7.1', '', '', '7b1ce943bc5e37e4fe7e810ecb910ae827b43474', 15762, '', 0, 0, 1, 1653568393); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8260, 24, 0, 'Spl-0.7.1-R', '', 0, 'spl-0.7.1-r', '', '', 'd710b358f556d86a0d2f3b3d9bf0de4a34513e4d', 12438, '', 0, 0, 1, 1590936824); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8261, 24, 0, 'Spl-0.8.0-R', '', 0, 'spl-0.8.0-r', '', '', '3938c0893afa3dd016d8f36cfca8dd5010fe4e66', 12861, '', 0, 0, 1, 1600899278); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8262, 24, 0, 'Spl-0.8.1-R', '', 0, 'spl-0.8.1-r', '', '', '9e1e2862ae225270fc2270afb3c23154286acc24', 12872, '', 0, 0, 1, 1601093491); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8263, 24, 0, 'Spl-0.8.2-R', '', 0, 'spl-0.8.2-r', '', '', '0ee7e71d2163ba99de7f0dbc8db241c42f180c07', 13139, '', 0, 0, 1, 1603404364); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8264, 24, 0, 'Spl-R-1.0.0-R', '', 0, 'spl-r-1.0.0-r', '', '', 'c45c26e062426b540bc5d1af3ff6da0588977a81', 12651, '', 0, 0, 1, 1632451336); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8265, 24, 0, 'Spl-R-1.1.0-R', '', 0, 'spl-r-1.1.0-r', '', '', 'b29334720e353ee991bba3e657d22bacbe78a523', 12821, '', 0, 0, 1, 1635603037); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (8266, 24, 0, 'Spl-R-v1.0.1', '', 0, 'spl-r-v1.0.1', '', '', '9d34d2ab63d8ee8622dc43ec28845ccd22a8024a', 12732, '', 0, 0, 1, 1633238187); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (10902, 29, 0, 'bouda_01', '', 0, 'bouda_01', '', '', 'f7885f1e803dd0ca6305d31b9e6905f7f4af461f', 8, '', 0, 0, 1, 1677278009); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (11740, 28, 0, 'tut01', '', 0, 'tut01', '', '', '6238bcc7cd93b14e48228f4b96f2857b839e2b30', 2, '', 0, 0, 1, 1677106550); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (11741, 28, 0, 'tut02', '', 0, 'tut02', '', '', 'eb10292ab261abe7a4bb0be2ff0292fb598b69f6', 3, '', 0, 0, 1, 1678442845); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (11866, 28, 0, 'mpt03', '', 0, 'mpt03', '', '', '6a3c8aa1042d6e49dbbfdd62d66f305737dd3779', 9, '', 0, 0, 1, 1678442849); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (11929, 28, 0, 'tut03', '', 0, 'tut03', '', '', '2fd0af28fca7559c257ead6030150f922f2ebe32', 13, '', 0, 0, 1, 1678442851); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (12209, 28, 0, 'pt01', '', 0, 'pt01', '', '', '3a9c1fd032d48f112aaaba8e02ebd2ba0e7e2a14', 25, '', 0, 0, 1, 1678565288); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (12489, 28, 0, 'mpt04', '', 0, 'mpt04', '', '', '3a3a8d79c784870b2fb527d76250645aa7eefc79', 30, '', 0, 0, 1, 1678821436); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (12490, 29, 0, 'bouda_02', '', 0, 'bouda_02', '', '', '45fd4daddc35560b9cd741954eb42a6364fe411f', 9, '', 0, 0, 1, 1677711021); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (12956, 28, 0, 'tut04', '', 0, 'tut04', '', '', '2def8cfc591a5efb5a2b80a6c236415ab52b1d17', 37, '', 0, 0, 1, 1678898840); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (13205, 28, 0, 'tut05', '', 0, 'tut05', '', '', '837f0a871aacecfdfa57f644a3dd8a5759b29477', 39, '', 0, 0, 1, 1679503265); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (13237, 28, 0, 'mpt05', '', 0, 'mpt05', '', '', '5c6ed57a43125c562161e57d4f9e1b66d6b3475c', 48, '', 0, 0, 1, 1679527058); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (14282, 28, 0, 'mpt06', '', 0, 'mpt06', '', '', 'c21c8929fe94e95fb7762f2ac66f2f0588c261f8', 53, '', 0, 0, 1, 1680374525); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (14283, 28, 0, 'pt03-max', '', 0, 'pt03-max', '', '', '29fd5388b180a66dfa4c42add543e8842b278672', 64, '', 0, 0, 1, 1680245893); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (14368, 28, 0, 'pt04-zaklad', '', 0, 'pt04-zaklad', '', '', 'f8ab08942be3afeb4e56465aff467ed5a66c1b1f', 58, '', 0, 0, 1, 1680446856); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (14645, 28, 0, 'mpt07', '', 0, 'mpt07', '', '', '7f4dd3cff9a6d28d5f2993e157df6afd00d76957', 58, '', 0, 0, 1, 1680641797); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (15690, 28, 0, 'pt05', '', 0, 'pt05', '', '', '5c8d992d9766ac4a50564583a4147af75c665df4', 65, '', 0, 0, 1, 1681418721); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (15771, 28, 0, 'mpt08', '', 0, 'mpt08', '', '', 'ed59b91b94b48e6606e8d5af12ebc127c901e5bf', 72, '', 0, 0, 1, 1681477431); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (15892, 28, 0, 'pt06-1', '', 0, 'pt06-1', '', '', '168087c47fc3a7187feaccd8d2ed40086f5169df', 75, '', 0, 0, 1, 1681560224); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (15893, 28, 0, 'pt06-2', '', 0, 'pt06-2', '', '', '961c31489a9440dcbb8d84ef439a655d45c7f2cb', 77, '', 0, 0, 1, 1681564155); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (16376, 28, 0, 'mpt09', '', 0, 'mpt09', '', '', 'a05da21b46bf8ba000e837392dc65b1f2332f2ac', 74, '', 0, 0, 1, 1681917291); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (16738, 28, 0, 'pt07', '', 0, 'pt07', '', '', '9841ea17a867aa0adcd9341a53f1a7c7b837dbfa', 78, '', 0, 0, 1, 1682186100); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (18174, 28, 0, 'pt06-codereview', '', 0, 'pt06-codereview', '', '', 'dcc3771974a0788fe41a4cd858ac535198635c0b', 81, '', 0, 0, 1, 1683217902); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (21331, 28, 0, 'progtest-1', '', 0, 'progtest-1', '', '', 'cd00d3efd90405ba92a6fe6af191673141d3903a', 177, '', 0, 0, 1, 1685533669); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33886, 33, 0, 'apache', '', 0, 'apache', '', '', 'f1d71d53bde3e90a4739a49c325874998a4b564b', -1, '', 0, 0, 1, 1680204366); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33887, 33, 0, 'students', '', 0, 'students', '', '', 'cc6817b1a8d18ec7149f98f05f4336cf00f7a4ce', -1, '', 0, 0, 1, 1680202732); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33888, 33, 0, 'power', '', 0, 'power', '', '', '222b4bd215a82493a845e81530efb8b64d229c97', -1, '', 0, 0, 1, 1680195571); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33889, 33, 0, 'transfer', '', 0, 'transfer', '', '', '061372a6089f110a83f8001d032406f02d6635b0', -1, '', 0, 0, 1, 1679657376); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33890, 32, 0, 'shrink', '', 0, 'shrink', '', '', '008ed7fa8a7eab5c6530ceaca18cc6f2f06d1685', -1, '', 0, 0, 1, 1679585442); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33891, 32, 0, 'sablona', '', 0, 'sablona', '', '', '807134ede8713e03a05319009604f1cda5f18c45', -1, '', 0, 0, 1, 1679576724); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33892, 32, 0, 'cnb', '', 0, 'cnb', '', '', '7203f147c7d6aede0e9e2f18d29508cc4820be55', -1, '', 0, 0, 1, 1679572699); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (33893, 32, 0, 'gen', '', 0, 'gen', '', '', '2e9ca5c2c799134fe5bbca0f1c68f00914ad9f25', -1, '', 0, 0, 1, 1679569087); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45694, 7, 0, 'mpt12', '', 0, 'mpt12', '', '', '33a00dc7c02c5770a02b0cd9c133b8d90dcfba4b', -1, '', 0, 0, 1, 1670508735); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45695, 7, 0, 'pt08-2', '', 0, 'pt08-2', '', '', '14f14f915fa84cb1ec133ae6a9fc5b426ee7b9d3', -1, '', 0, 0, 1, 1670416770); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45696, 7, 0, 'pt08-1', '', 0, 'pt08-1', '', '', '8dab211c73bf305eadab8d080704c957e536ed72', -1, '', 0, 0, 1, 1670416274); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45697, 7, 0, 'mpt11', '', 0, 'mpt11', '', '', '885f9b57e6ce708cf2cf7c4c9b3ffd8d8574f853', -1, '', 0, 0, 1, 1669923118); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45698, 7, 0, 'pt07', '', 0, 'pt07', '', '', '110ca6a87c416bf1feeb0eb7f43542239e3b1576', -1, '', 0, 0, 1, 1669837283); INSERT OR IGNORE INTO 'release'('id', 'repo_id', 'publisher_id', 'tag_name', 'original_author', 'original_author_id', 'lower_tag_name', 'target', 'title', 'sha1', 'num_commits', 'note', 'is_draft', 'is_prerelease', 'is_tag', 'created_unix') VALUES (45699, 7, 0, 'pt07-basic', '', 0, 'pt07-basic', '', '', '9ec85301e3c5b3eb398c321e85346b25d84dd1dd', -1, '', 0, 0, 1, 1669741393); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (1, 1, 1, 0, 0, 3, 1664831781, 1664831782, '{"clone_addr":"https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git","clone_addr_encrypted":"3af0e2576b2a02c8939b33ac271e78650d8414b19e65f14afeb14aff8fd213ef6b98c8f253c690c9e320558eef1c6e7079184830631a28b07009ff2c7b52231ad76e1b875c6366f15ea8858cd220f8fcef38f02599b6d058","auth_username":"","auth_password_encrypted":"01d9756e67e3f714e314bbac4226b627","auth_token_encrypted":"d92bbebb361f97edace984515821fd6356ce5b636ec56848444592ae7e162d720462acc06ae6ed61e202d03159be476ef46d5801","uid":0,"repo_name":"BI-PA1","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '', 1664831780); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (2, 1, 1, 7, 0, 4, 1664831900, 1664831903, '{"clone_addr":"https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git","auth_username":"","uid":0,"repo_name":"BI-PA1","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1664831900); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (8, 1, 1, 0, 0, 3, 1667745293, 1667745293, '{"clone_addr":"https://gitlab.com/prokop_paruzek/enigma-skaut","clone_addr_encrypted":"ea87c9687664e4a44fd4f8ca0eb692dbb52934a8bb62ca0349011573b54dda6f0b516e5dd4f97c5bebaeabc33aade4d6559a99158132c07b68c5582d79600033a05733c78ea6c1ab7302cdfdb7e35fbd","auth_username":"","auth_password_encrypted":"4b905393bbe7ac239ffea1f496c18933","auth_token_encrypted":"c9198c9935e861172fd86048db7709387c96239d6cc12a16ec8cdc2f450cbb9f917f2f9e3179e52272ed3e4bd08b44faa0b490fd","uid":0,"repo_name":"enigma-skaut","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.com/prokop_paruzek/enigma-skaut","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '', 1667745292); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (9, 1, 1, 0, 0, 3, 1667745305, 1667745305, '{"clone_addr":"https://gitlab.com/prokop_paruzek/enigma-skaut","clone_addr_encrypted":"57c1c1daae4221a6d8492a54bcf45047239a5442fe04d2d85231edcb96e61ae41cf90d43cf76b0fbeb246ed7fce7dd2e764e7bd8b78bded686c42c94a335bf95a1114a8ad6a699be5ba20ee989437737","auth_username":"","auth_password_encrypted":"f13bb6601d77624964d4310aba017996","auth_token_encrypted":"7b33ebc3d839736daf802d60564f4705c716eb171754fa54c04cead61d815ba16b036a1c59c986c242274912b0b7f998b7473425","uid":0,"repo_name":"enigma-skaut","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.com/prokop_paruzek/enigma-skaut","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '', 1667745304); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (10, 1, 1, 17, 0, 4, 1667745336, 1667745341, '{"clone_addr":"https://gitlab.com/prokop_paruzek/enigma-skaut","auth_username":"","uid":0,"repo_name":"enigma-skaut","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.com/prokop_paruzek/enigma-skaut","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1667745335); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (11, 1, 1, 18, 0, 4, 1667745386, 1667745390, '{"clone_addr":"https://gitlab.com/prokop_paruzek/botik.git","auth_username":"","uid":0,"repo_name":"botik","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.com/prokop_paruzek/botik.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1667745386); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (13, 1, 1, 30, 0, 4, 1678027279, 1678027282, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git","auth_username":"","uid":0,"repo_name":"shell-intro","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1678027279); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (14, 1, 4, 31, 0, 4, 1678027411, 1678027414, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git","auth_username":"","uid":0,"repo_name":"bash","mirror":true,"lfs":true,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1678027411); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (15, 1, 4, 32, 0, 4, 1679065102, 1679065105, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git","auth_username":"","uid":0,"repo_name":"sed","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1679065101); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (16, 1, 4, 33, 0, 4, 1680192031, 1680192034, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git","auth_username":"","uid":0,"repo_name":"awk","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1680192030); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (17, 1, 4, 35, 0, 4, 1682194752, 1682194754, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git","auth_username":"","uid":0,"repo_name":"perlHello","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1682194751); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (18, 1, 4, 36, 0, 4, 1682194822, 1682194824, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git","auth_username":"","uid":0,"repo_name":"perlCut","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1682194822); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (19, 1, 4, 37, 0, 4, 1683578382, 1683578384, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git","auth_username":"","uid":0,"repo_name":"perlCut2","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1683578381); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (20, 1, 4, 38, 0, 4, 1683578432, 1683578434, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git","auth_username":"","uid":0,"repo_name":"compare","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1683578431); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (21, 1, 4, 0, 0, 3, 1683578497, 1683578498, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git","clone_addr_encrypted":"9e58a9a745131c94ffa4e70ad09f3b22b3082c17bd0f4a5d3e417c5369ada771ec2180206bd0041e93f106c65ec41fd14df53fe1f4179c7a2cefcdc19afed7469fc6fb9743378c93d8db3508eb51fcffdf8fabc4","auth_username":"","auth_password_encrypted":"08684cdb67e4fa00f25585200d390ffd","auth_token_encrypted":"67580977f8d1c375e1b1a6954809657fff02b36d820fa188b977a2b8d5b2f1a850c8a4eb1e0cac03a73e27c027ca8d39307a519b","uid":0,"repo_name":"pod","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '', 1683578497); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (22, 1, 4, 40, 0, 4, 1683578546, 1683578548, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git","auth_username":"","uid":0,"repo_name":"perlPod","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1683578546); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (23, 1, 4, 41, 0, 4, 1683578586, 1683578588, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git","auth_username":"","uid":0,"repo_name":"perlBOOM","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1683578585); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (24, 1, 4, 42, 0, 4, 1683915964, 1683915968, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git","auth_username":"","uid":0,"repo_name":"count","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1683915963); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (25, 1, 4, 43, 0, 4, 1683916018, 1683916022, '{"clone_addr":"https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git","auth_username":"","uid":0,"repo_name":"match","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1683916017); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (26, 1, 2, 46, 0, 4, 1688500117, 1688500120, '{"clone_addr":"https://github.com/stp2/13k.git","auth_username":"","uid":0,"repo_name":"13k","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://github.com/stp2/13k.git","GitServiceType":2,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1688500117); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (27, 1, 1, 49, 0, 4, 1697030677, 1697030679, '{"clone_addr":"https://gitlab.fit.cvut.cz/paruzpro/bi-ag1.git","auth_username":"","uid":0,"repo_name":"bi-ag1","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.fit.cvut.cz/paruzpro/bi-ag1.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1697030675); INSERT OR IGNORE INTO 'task'('id', 'doer_id', 'owner_id', 'repo_id', 'type', 'status', 'start_time', 'end_time', 'payload_content', 'message', 'created') VALUES (29, 1, 1, 51, 0, 4, 1698590199, 1698590201, '{"clone_addr":"https://gitlab.fit.cvut.cz/paruzpro/bi-aag.git","auth_username":"","uid":0,"repo_name":"bi-aag","mirror":true,"lfs":false,"lfs_endpoint":"","private":true,"description":"","OriginalURL":"https://gitlab.fit.cvut.cz/paruzpro/bi-aag.git","GitServiceType":4,"Wiki":false,"Issues":false,"Milestones":false,"Labels":false,"Releases":false,"Comments":false,"PullRequests":false,"ReleaseAssets":false,"MigrateToRepoID":0,"mirror_interval":""}', '{"Format":"repo.migrate.migrating_topics","omitempty":null}', 1698590197); INSERT OR IGNORE INTO 'app_state'(_rowid_, 'id', 'revision', 'content') VALUES (1, 'runtime-state', 1, '{"last_app_path":"/usr/local/bin/gitea","last_custom_conf":"/etc/gitea/app.ini"}'); INSERT OR IGNORE INTO 'app_state'(_rowid_, 'id', 'revision', 'content') VALUES (2, 'update-checker', 96, '{"LatestVersion":"1.23.5"}'); INSERT OR IGNORE INTO 'system_setting'('id', 'setting_key', 'setting_value', 'version', 'created', 'updated') VALUES (1, 'picture.disable_gravatar', 'false', 3, 1674302189, 1674302189); INSERT OR IGNORE INTO 'system_setting'('id', 'setting_key', 'setting_value', 'version', 'created', 'updated') VALUES (2, 'picture.enable_federated_avatar', 'true', 3, 1674302189, 1674302189); INSERT OR IGNORE INTO 'system_setting'('id', 'setting_key', 'setting_value', 'version', 'created', 'updated') VALUES (3, 'revision', '', 1, 1700227322, 1700227322); INSERT OR IGNORE INTO 'action_runner_token'('id', 'token', 'owner_id', 'repo_id', 'is_active', 'created', 'updated', 'deleted') VALUES (1, 'qfyQTtOVMDG5XCS4Tk2wi3FoucnRzNBzKwXGEFu6', 0, 0, 1, 1729112521, 1729112521, NULL); INSERT OR IGNORE INTO 'action_runner_token'('id', 'token', 'owner_id', 'repo_id', 'is_active', 'created', 'updated', 'deleted') VALUES (2, 'VIThBtnVytAGBPDpotGJz0X1cX7lqU5smpSbzpLc', 1, 0, 1, 1729112594, 1729112594, NULL); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (45, 55, 'master', '9eccd2330c9dd244264167add4d1116d07696226', 'some tweaks', 1, 0, 0, 0, 1711485165, 1710798580, 1711485495); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (46, 58, 'master', 'bce1a34698a65ed881ffaa716cfae8831a165a2c', 'Merge branch ''hw05'' into ''master''', 0, 0, 0, 0, 1715616675, 1711317716, 1715626372); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (47, 59, 'master', 'fe108bf59ee69a2a2652d1de878c258887c370a9', 'last errors', 1, 0, 0, 0, 1713125993, 1711652927, 1713126009); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (48, 28, 'pt03-limits', '93b8bfe0070e6b9c13911fe9cc0e953a0bd77a90', 'pt03: cviko snaha, skoro', 0, 0, 0, 0, 1680709452, 1711980361, 1711980361); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (49, 28, 'pt04', 'f8ab08942be3afeb4e56465aff467ed5a66c1b1f', 'pt04: asserts ok', 0, 0, 0, 0, 1680446856, 1711980361, 1711980361); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (50, 28, 'pt03', 'caadf8f1f51b6135a3adc1f7f232c9d767c9379e', 'pt03: try faster -, NO', 0, 0, 0, 0, 1680272521, 1711980361, 1711980361); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (51, 28, 'pt02', '8b6246883dfdfce50f77dcf206f55318c6298ab6', 'pt02: try better getRank', 0, 0, 0, 0, 1679428295, 1711980361, 1711980361); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (52, 28, 'master', 'da63b6792d3e4716dcbefe27569808ada7a03274', 'Merge branch ''semestralka''', 0, 0, 0, 0, 1685563367, 1711980361, 1711980361); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (53, 28, 'semestralka', '763dd12835f050e6ad49d35814809da4c74dbed8', 'some updates', 0, 0, 0, 0, 1685563202, 1711980361, 1711980361); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (56, 60, 'master', 'ad37787518b3bc7f55effec0a96936e350cc2cb3', 'hashcat, john + john with hashcat', 1, 0, 0, 0, 1713262179, 1712773471, 1713262230); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (57, 61, 'master', 'a671611b8dbe0f865a71039e3ee9cf70ea3dca54', 'add library section', 1, 0, 0, 0, 1713630396, 1712778809, 1713630408); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (58, 29, 'master', '45fd4daddc35560b9cd741954eb42a6364fe411f', 'walk => doStep', 0, 0, 0, 0, 1677711021, 1712826869, 1712826869); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (60, 62, 'master', 'efb3328e490f158d06d0551dc455768cc36e954b', 'add README', 1, 0, 0, 0, 1714474214, 1714392785, 1714474229); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (62, 63, 'master', 'b2526ecad61b7e6bda3b5d6ca0e34f6f243ce942', 'done', 1, 0, 0, 0, 1715284135, 1715185816, 1715284369); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (63, 58, 'hw6', 'ee0e86671fdc437b5ed1107aab6da7f5615771d9', 'Upload hw6 notebook', 0, 0, 0, 0, 1715323316, 1715332371, 1715332371); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (64, 58, 'bonus4', 'a85cfcab24b1aa976ac7600ef0880ac838c9e6bd', 'narozeninovy paradox', 0, 0, 0, 0, 1715618405, 1715626372, 1715626372); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (65, 64, 'master', '13b097cee3a1f899b88406c2c2eab3fd5914d308', 'Can use distance as metric', 1, 0, 0, 0, 1725558075, 1725548582, 1725558101); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (67, 66, 'master', '9757a8baf7695f2817e751b2540d64475c7c2113', 'cv 1 a 2', 1, 0, 0, 0, 1728491212, 1728491251, 1728491251); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (68, 68, 'master', 'd48976b9bfc35879c9495b03bb207969f09ec01e', 'add data', 0, 0, 0, 0, 1733832796, 1729020582, 1733844619); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (69, 70, 'main', '163b27596d7468a8a7aae835cc17e6fa3510fc23', 'add STM code', 0, 0, 0, 0, 1733841757, 1729020831, 1733844627); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (70, 71, 'hw_lambda', 'd1fa21f4f7e3106062e625fb3c4604ecadd320a9', '1.12.1', 0, 0, 0, 0, 1729533315, 1729020897, 1729533917); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (71, 71, 'hw_prolog', '6e6c8a43abace98912b2550bb552e6766626616f', 'numbers 1', 0, 0, 0, 0, 1735334343, 1729020897, 1735343236); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (72, 71, 'hw_racket', '474f1aaeb77dac74c8df8c0b3b47a56abdcd8a61', 'generate K graph for testing', 0, 0, 0, 0, 1732376803, 1729020897, 1732396351); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (73, 71, 'master', 'c2282e72ac927740b9a6919a5dfe32fcf3484424', 'Merge branch ''semestral'' into ''master''', 0, 0, 0, 0, 1737210332, 1729020897, 1737217888); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (74, 72, 'master', 'c67420b56fb0ca7d2e4a19207320a2ebe8742d00', 'add flag', 1, 0, 0, 0, 1734033320, 1729197790, 1734033372); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (75, 73, 'master', '7ce69a8e7b886b176add9ab2f32d762ad51cd265', 'update tudes to work', 1, 0, 0, 0, 1730317654, 1729716194, 1730319236); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (76, 71, 'semestral', '66ae60f52d4e4a8969d00cad7aabb414825431f6', 'README 4', 0, 0, 0, 0, 1736976000, 1732425753, 1736982690); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (77, 74, 'main', '045be2799eeef2e40108115da29efe83f30011d1', 'code add nl', 0, 0, 0, 0, 1734343910, 1733168289, 1734344047); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (78, 75, 'master', 'd08ede014d8d85a61f0660a995ed4235da7a7a13', 'return detailed sql error', 1, 0, 0, 0, 1735040901, 1734636230, 1735041228); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (80, 71, 'zk', '697b47c05f1cad594d095fde9d75fcfb2c5f6060', 'member', 0, 0, 0, 0, 1738164760, 1738011691, 1738180890); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (81, 78, 'main', 'ca54ceb566844bbfbeb4c3d6b0c4958b7f97968c', 'tor', 0, 0, 0, 0, 1741352849, 1738406497, 1741374466); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (82, 79, 'main', '9834177a9c8afb10efe48bed387d657cecb7b7d7', 'Merge branch ''pc1''', 0, 0, 0, 0, 1741633295, 1739899476, 1741659558); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (83, 80, 'master', 'f1000b3add2cbdd43e6db5fa59ae1ff73df54541', 'uprava sablony', 1, 0, 0, 0, 1739997076, 1739996366, 1739997131); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (84, 79, 'pc1', '428021f2e71247e36efa87d79e670824ba85c076', 'add actual node', 0, 0, 0, 0, 1741632984, 1740458018, 1741659558); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (85, 81, 'master', '51900e4d49711a50154fbc6d1ca29da8a544bb87', 'mlok', 1, 0, 0, 0, 1740648486, 1740607519, 1740648518); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (87, 26, 'master', '2d394b62adf4473f46cbb924e021cd487953eda1', 'TV', 0, 0, 0, 0, 1675862838, 1741600569, 1741600569); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (88, 79, 'time1', '515762e1ac44764fa691335d3ec88e94bedb5e03', 'measure time', 0, 0, 0, 0, 1741633009, 1741659558, 1741659558); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (89, 79, 'pc2', 'fa7d7bd26c7f19935818e1b1153e9ea7f5e1d136', 'pc2: better show chessboard', 0, 0, 0, 0, 1741733988, 1741718356, 1741749015); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (1, 22, 'rogue', '37b43c2a9a64ebc95cea68b925d5caefb597fbfd', 'Merge branch ''NetHack-3.6'' into rogue', 0, 0, 0, 0, 1678400146, 1700227322, 1700227322); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (2, 22, 'NetHack-3.7', 'ecf74d5308892147947f395e2c186c1c87da8d12', 'some pline()-like function usage', 0, 0, 0, 0, 1678320772, 1700227322, 1700227322); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (3, 22, 'NetHack-3.6', '557e18611a860fa17bbb8e5dbfd37b96c9304fe1', 'post-3.6.7 build fix with newer c library headers', 0, 0, 0, 0, 1677250015, 1700227322, 1700227322); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (4, 5, 'master', '98cc5ba76d32e3e6f9583da2577056501f26272f', 'nethackOS', 1, 0, 0, 0, 1729088047, 1700228744, 1729088067); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (5, 13, 'master', 'b176914379affb0c29065c4180a661cfb79b05f5', 'why was \n in command?', 1, 0, 0, 0, 1731575681, 1700229771, 1731575738); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (6, 18, 'master', '67967ee7ae1b0e13e9ec99da8ed0994b26aba35c', 'add Chuck Norris jokes', 0, 0, 0, 0, 1730972929, 1700231692, 1730997752); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (7, 23, 'rogue', '1ac3b0808014f1dc10d931041b9e5292f0cdf7d8', 'dgamelanuch', 0, 0, 0, 0, 1672838144, 1700233540, 1700233540); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (8, 23, 'master', '4a97e35e7f85db6d7227aa21080697aceb925016', 'Fix: whereis used pointer to static memory as truth value', 0, 0, 0, 0, 1662496136, 1700233540, 1700233540); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (9, 17, 'master', '1faced2cea8b9da6cd9fb15962d0a62d6fc63869', 'add example', 0, 0, 0, 0, 1649925951, 1700247033, 1700247033); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (10, 46, 'master', '2cd23e9e711e58a9cc2aff27daf3a582930327df', 'check last before change', 0, 0, 0, 0, 1700394877, 1700247631, 1700424031); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (11, 46, 'noRedir', '3cc87e188259c494e43eb7458911425d87a9e55e', 'no redirection to sign in', 0, 0, 0, 0, 1689281925, 1700247631, 1700247631); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (21, 49, 'master', '152338278d89795c3371e65ef23b75082a015eca', 'all gifts in try gift', 0, 0, 0, 0, 1701552247, 1700250631, 1701558340); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (22, 51, 'master', '6450d71d5b825928203460e275d7ebbfb19004f0', 'CYK ok', 0, 0, 0, 0, 1701539378, 1700250632, 1701543805); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (23, 7, 'master', '68c47effd267f8b0b690f4180eafeddf7e6ec504', 'Merge branch ''mpt12''', 0, 0, 0, 0, 1670508873, 1700250633, 1700250633); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (24, 7, 'pt06', 'a4172ac18edb7a69ef550a75ffc2275818c4efb4', 'pt06: try to rewrite', 0, 0, 0, 0, 1669577656, 1700250633, 1700250633); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (25, 7, 'tests', '07a8e1862c1f2fbcf225c4eb53e3a49687e876e2', 'tests: test in specific dir', 0, 0, 0, 0, 1665426518, 1700250633, 1700250633); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (26, 7, 'bonus', 'a0b52c97e1dabd5168bc73875c2107cd5e52f9e3', 'bonus: some other functions, tut', 0, 0, 0, 0, 1671128442, 1700250633, 1700250633); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (27, 7, 'pt07-review', '63d0a4a3b022e3857655d57f5aa58eddecd501a2', 'pt07: codeReview 4', 0, 0, 0, 0, 1670927635, 1700250633, 1700250633); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (28, 25, 'master', 'd5a0b111e7bdea41ee71c8da1ac3c3f76ffea764', 'initial vimrc', 0, 0, 0, 0, 1672842002, 1700317795, 1700317795); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (29, 21, 'master', 'bd437657494ee589d8cde53ca5910945f51071bc', 'replace dockupdater with watchtower', 1, 0, 0, 0, 1710516864, 1700333539, 1710516887); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (30, 48, 'master', '635b11cd20a1a7200649cd48af1a11b11dd37be9', 'rdtsc', 1, 0, 0, 0, 1702379224, 1700503081, 1702379248); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (32, 38, 'submit', '734fc53cba68be79c3940a4283c951556bd4eb84', 'Merge branch ''source'' into submit', 0, 0, 0, 0, 1683705694, 1701547683, 1701547683); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (33, 38, 'main', '0a679bded1b454cdb104f4dcf1b39c743611baf0', 'Merge branch ''source''', 0, 0, 0, 0, 1683705662, 1701547683, 1701547683); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (34, 38, 'source', 'c0cdcd265cff89243949f652af88a91daebe3f93', '"Update assignment"', 0, 0, 0, 0, 1683705661, 1701547683, 1701547683); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (35, 49, 'linear', '0dcf9a2d434cb26ecd30406abad188a78c547672', 'data generator', 0, 0, 0, 0, 1701724305, 1701558340, 1701734604); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (36, 48, 'write', '7274c4ab2288bd23e407f0b649ce1d147db3a23b', 'fwrite', 1, 0, 0, 0, 1702226306, 1702228448, 1702228448); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (37, 47, 'master', '781825ae5caef3f15de92d2bd6504bac2feac070', 'tabor verze', 1, 0, 0, 0, 1719233238, 1703543309, 1719234219); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (38, 47, 'secret', '81f989eb7329cf9107515372511c775f328be39a', 'tabor', 1, 0, 0, 0, 1719234185, 1703543309, 1719234201); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (39, 24, 'rogue', 'ba2f7b5456d0022af4d646297e56875e144ad585', 'config files', 0, 0, 0, 0, 1666105958, 1704561883, 1704561883); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (40, 24, 'Spl-R-1.2.0', '8d70ade6f015c7894c171af691393327983173fe', 'Resolve a compilation warning.', 0, 0, 0, 0, 1663624748, 1704561883, 1704561883); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (41, 24, 'Spl-R-1.1.0', 'b29334720e353ee991bba3e657d22bacbe78a523', 'Bump version number to 1.1.0.', 0, 0, 0, 0, 1635603037, 1704561883, 1704561883); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (42, 52, 'master', '596d24a6a6e40e09ba1ad192406ad46a2ed21d5b', 'ukol.md', 1, 0, 0, 0, 1709673866, 1709244720, 1709673895); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (43, 53, 'master', 'd132ea60e5edc98d6c21d370a0bfb44890c4dd8f', 'cv05: end', 1, 0, 0, 0, 1714034732, 1709490127, 1714034755); INSERT OR IGNORE INTO 'branch'('id', 'repo_id', 'name', 'commit_id', 'commit_message', 'pusher_id', 'is_deleted', 'deleted_by_id', 'deleted_unix', 'commit_time', 'created_unix', 'updated_unix') VALUES (44, 54, 'master', 'c9cb34ce4c472d06c2ab8812e4173256181868ba', 'pt02: queue use front, mlok', 1, 0, 0, 0, 1712499097, 1710579116, 1712499109); DELETE FROM sqlite_sequence; INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (1, 'version', 1); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (2, 'user', 6); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (3, 'email_address', 3); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (4, 'repository', 81); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (5, 'repo_unit', 584); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (6, 'watch', 81); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (7, 'action', 1709); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (8, 'repo_indexer_status', 68); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (9, 'public_key', 9); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (10, 'webauthn_credential', 16); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (11, 'two_factor', 2); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (12, 'gpg_key', 4); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (13, 'language_stat', 245); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (14, 'task', 42); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (15, 'release', 45726); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (16, 'mirror', 31); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (17, 'topic', 30); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (18, 'notice', 94409); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (19, 'star', 2); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (20, 'org_user', 3); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (21, 'team', 3); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (22, 'team_unit', 28); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (23, 'team_user', 3); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (24, 'team_repo', 32); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (25, 'access', 32); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (26, 'repo_redirect', 8); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (27, 'repo_archiver', 521); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (28, 'deploy_key', 3); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (29, 'system_setting', 3); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (30, 'lfs_meta_object', 1); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (31, 'push_mirror', 13); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (32, 'project', 1); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (33, 'issue', 27); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (34, 'issue_user', 27); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (35, 'comment', 35); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (36, 'project_issue', 1); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (37, 'project_board', 2); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (38, 'action_runner', 0); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (39, 'oauth2_application', 3); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (40, 'branch', 89); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (41, 'issue_dependency', 1); INSERT OR IGNORE INTO 'sqlite_sequence'(_rowid_, 'name', 'seq') VALUES (42, 'action_runner_token', 2); CREATE TABLE lost_and_found(rootpgno INTEGER, pgno INTEGER, nfield INTEGER, id INTEGER, c0, c1, c2, c3); INSERT INTO lost_and_found VALUES(640, 640, 4, 1, NULL, 1, 'Migrate repository from https://github.com/JGRennison/OpenTTD-patches.git failed: Clone: exit status 128 - error: unable to write file /home/git/gitea/data/gitea-repositories/prokop/openttd-patches.git/objects/pack/pack-2b735dd8a66fe61d8372729def456222db5bef5a.pack: No such file or directory fatal: cannot store pack file fatal: index-pack failed ', 1664832925); INSERT INTO lost_and_found VALUES(640, 640, 4, 2, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1672873306); INSERT INTO lost_and_found VALUES(640, 640, 4, 3, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1672873366); INSERT INTO lost_and_found VALUES(640, 640, 4, 4, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1672959705); INSERT INTO lost_and_found VALUES(640, 640, 4, 5, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1672959765); INSERT INTO lost_and_found VALUES(640, 640, 4, 6, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1673046107); INSERT INTO lost_and_found VALUES(640, 640, 4, 7, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1673046167); INSERT INTO lost_and_found VALUES(640, 640, 4, 8, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1673132505); INSERT INTO lost_and_found VALUES(640, 640, 4, 9, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1673132565); INSERT INTO lost_and_found VALUES(640, 640, 4, 10, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1673218906); INSERT INTO lost_and_found VALUES(640, 640, 4, 11, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1673218966); INSERT INTO lost_and_found VALUES(640, 640, 4, 12, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1673305305); INSERT INTO lost_and_found VALUES(640, 640, 4, 13, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1673305365); INSERT INTO lost_and_found VALUES(640, 640, 4, 14, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1673391704); INSERT INTO lost_and_found VALUES(640, 640, 4, 15, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1673391764); INSERT INTO lost_and_found VALUES(640, 640, 4, 16, NULL, 1, 'Failed to health check repository (h21/xNetHack): context deadline exceeded', 1673478103); INSERT INTO lost_and_found VALUES(640, 640, 4, 17, NULL, 1, 'Failed to health check repository (h21/SpliceHack): context deadline exceeded', 1673478163); INSERT INTO lost_and_found VALUES(640, 640, 4, 18, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685833323); INSERT INTO lost_and_found VALUES(640, 640, 4, 19, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685833939); INSERT INTO lost_and_found VALUES(640, 640, 4, 20, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685834539); INSERT INTO lost_and_found VALUES(640, 640, 4, 21, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685835139); INSERT INTO lost_and_found VALUES(640, 640, 4, 22, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685835739); INSERT INTO lost_and_found VALUES(640, 640, 4, 23, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685836342); INSERT INTO lost_and_found VALUES(640, 640, 4, 24, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685836939); INSERT INTO lost_and_found VALUES(640, 640, 4, 25, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685837539); INSERT INTO lost_and_found VALUES(641, 641, 4, 26, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685838139); INSERT INTO lost_and_found VALUES(641, 641, 4, 27, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685838739); INSERT INTO lost_and_found VALUES(641, 641, 4, 28, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685839339); INSERT INTO lost_and_found VALUES(641, 641, 4, 29, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685839939); INSERT INTO lost_and_found VALUES(641, 641, 4, 30, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685840542); INSERT INTO lost_and_found VALUES(641, 641, 4, 31, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685841139); INSERT INTO lost_and_found VALUES(641, 641, 4, 32, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 500 error: Could not fetch origin ', 1685841739); INSERT INTO lost_and_found VALUES(641, 641, 4, 33, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': Could not resolve host: gitlab.wr.cz error: Could not fetch origin ', 1687163519); INSERT INTO lost_and_found VALUES(641, 641, 4, 34, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': Could not resolve host: gitlab.wr.cz error: Could not fetch origin ', 1687163519); INSERT INTO lost_and_found VALUES(641, 641, 4, 35, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': Could not resolve host: gitlab.wr.cz error: Could not fetch origin ', 1687164119); INSERT INTO lost_and_found VALUES(641, 641, 4, 36, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': Could not resolve host: gitlab.wr.cz error: Could not fetch origin ', 1687164119); INSERT INTO lost_and_found VALUES(641, 641, 4, 37, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': Could not resolve host: gitlab.wr.cz error: Could not fetch origin ', 1687164719); INSERT INTO lost_and_found VALUES(641, 641, 4, 38, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': Could not resolve host: gitlab.wr.cz error: Could not fetch origin ', 1687164719); INSERT INTO lost_and_found VALUES(641, 641, 4, 39, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/enigma-skaut.git'': fatal: unable to access ''https://gitlab.com/prokop_paruzek/enigma-skaut.git/'': The requested URL returned error: 503 error: Could not fetch origin ', 1689383512); INSERT INTO lost_and_found VALUES(641, 641, 4, 40, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/h21/botik.git'': fatal: unable to access ''https://gitlab.com/prokop_paruzek/botik.git/'': The requested URL returned error: 503 error: Could not fetch origin ', 1689383512); INSERT INTO lost_and_found VALUES(646, 646, 4, 56, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692610346); INSERT INTO lost_and_found VALUES(646, 646, 4, 57, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692610947); INSERT INTO lost_and_found VALUES(646, 646, 4, 58, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692611546); INSERT INTO lost_and_found VALUES(646, 646, 4, 59, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692612146); INSERT INTO lost_and_found VALUES(646, 646, 4, 60, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692612745); INSERT INTO lost_and_found VALUES(646, 646, 4, 61, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692613347); INSERT INTO lost_and_found VALUES(646, 646, 4, 62, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692613946); INSERT INTO lost_and_found VALUES(646, 646, 4, 63, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692614547); INSERT INTO lost_and_found VALUES(646, 646, 4, 64, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692615147); INSERT INTO lost_and_found VALUES(646, 646, 4, 65, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692615746); INSERT INTO lost_and_found VALUES(646, 646, 4, 66, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692616351); INSERT INTO lost_and_found VALUES(646, 646, 4, 67, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692616947); INSERT INTO lost_and_found VALUES(646, 646, 4, 68, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692617546); INSERT INTO lost_and_found VALUES(646, 646, 4, 69, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692618146); INSERT INTO lost_and_found VALUES(646, 646, 4, 70, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692618747); INSERT INTO lost_and_found VALUES(686, 686, 4, 41, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': Could not resolve host: gitlab.wr.cz ', 1692102382); INSERT INTO lost_and_found VALUES(686, 686, 4, 42, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1692602081); INSERT INTO lost_and_found VALUES(686, 686, 4, 43, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1692602675); INSERT INTO lost_and_found VALUES(686, 686, 4, 44, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1692603279); INSERT INTO lost_and_found VALUES(686, 686, 4, 45, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1692603878); INSERT INTO lost_and_found VALUES(686, 686, 4, 46, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1692604477); INSERT INTO lost_and_found VALUES(686, 686, 4, 47, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1692605076); INSERT INTO lost_and_found VALUES(686, 686, 4, 48, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1692605680); INSERT INTO lost_and_found VALUES(686, 686, 4, 49, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692606146); INSERT INTO lost_and_found VALUES(686, 686, 4, 50, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692606746); INSERT INTO lost_and_found VALUES(686, 686, 4, 51, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692607347); INSERT INTO lost_and_found VALUES(686, 686, 4, 52, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692607947); INSERT INTO lost_and_found VALUES(686, 686, 4, 53, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692608545); INSERT INTO lost_and_found VALUES(686, 686, 4, 54, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692609147); INSERT INTO lost_and_found VALUES(686, 686, 4, 55, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692609746); INSERT INTO lost_and_found VALUES(688, 688, 4, 71, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692619346); INSERT INTO lost_and_found VALUES(688, 688, 4, 72, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692619946); INSERT INTO lost_and_found VALUES(688, 688, 4, 73, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': remote: GitLab is not responding fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': The requested URL returned error: 502 ', 1692620547); INSERT INTO lost_and_found VALUES(688, 688, 4, 74, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693839196); INSERT INTO lost_and_found VALUES(688, 688, 4, 75, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693839783); INSERT INTO lost_and_found VALUES(688, 688, 4, 76, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693840382); INSERT INTO lost_and_found VALUES(688, 688, 4, 77, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693840981); INSERT INTO lost_and_found VALUES(688, 688, 4, 78, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693841583); INSERT INTO lost_and_found VALUES(688, 688, 4, 79, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693842182); INSERT INTO lost_and_found VALUES(688, 688, 4, 80, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693842781); INSERT INTO lost_and_found VALUES(688, 688, 4, 81, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693843381); INSERT INTO lost_and_found VALUES(688, 688, 4, 82, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693843982); INSERT INTO lost_and_found VALUES(688, 688, 4, 83, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693844582); INSERT INTO lost_and_found VALUES(688, 688, 4, 84, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693845181); INSERT INTO lost_and_found VALUES(688, 688, 4, 85, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693845782); INSERT INTO lost_and_found VALUES(688, 688, 4, 86, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693846497); INSERT INTO lost_and_found VALUES(692, 692, 4, 87, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693847096); INSERT INTO lost_and_found VALUES(692, 692, 4, 88, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693847700); INSERT INTO lost_and_found VALUES(692, 692, 4, 89, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693848299); INSERT INTO lost_and_found VALUES(692, 692, 4, 90, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693848898); INSERT INTO lost_and_found VALUES(692, 692, 4, 91, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693849497); INSERT INTO lost_and_found VALUES(692, 692, 4, 92, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693850101); INSERT INTO lost_and_found VALUES(692, 692, 4, 93, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693850700); INSERT INTO lost_and_found VALUES(692, 692, 4, 94, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693851299); INSERT INTO lost_and_found VALUES(692, 692, 4, 95, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693851898); INSERT INTO lost_and_found VALUES(692, 692, 4, 96, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693852497); INSERT INTO lost_and_found VALUES(692, 692, 4, 97, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693853096); INSERT INTO lost_and_found VALUES(692, 692, 4, 98, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693853700); INSERT INTO lost_and_found VALUES(692, 692, 4, 99, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693854299); INSERT INTO lost_and_found VALUES(692, 692, 4, 100, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693854899); INSERT INTO lost_and_found VALUES(692, 692, 4, 101, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693855498); INSERT INTO lost_and_found VALUES(693, 693, 4, 102, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693856097); INSERT INTO lost_and_found VALUES(693, 693, 4, 103, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693856701); INSERT INTO lost_and_found VALUES(693, 693, 4, 104, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693857300); INSERT INTO lost_and_found VALUES(693, 693, 4, 105, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693857899); INSERT INTO lost_and_found VALUES(693, 693, 4, 106, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693858498); INSERT INTO lost_and_found VALUES(693, 693, 4, 107, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693859097); INSERT INTO lost_and_found VALUES(693, 693, 4, 108, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693859701); INSERT INTO lost_and_found VALUES(693, 693, 4, 109, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693860300); INSERT INTO lost_and_found VALUES(693, 693, 4, 110, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693860899); INSERT INTO lost_and_found VALUES(693, 693, 4, 111, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693861498); INSERT INTO lost_and_found VALUES(693, 693, 4, 112, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693862097); INSERT INTO lost_and_found VALUES(693, 693, 4, 113, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693862696); INSERT INTO lost_and_found VALUES(693, 693, 4, 114, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693863295); INSERT INTO lost_and_found VALUES(693, 693, 4, 115, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693863899); INSERT INTO lost_and_found VALUES(693, 693, 4, 116, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693864499); INSERT INTO lost_and_found VALUES(694, 694, 4, 117, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693865103); INSERT INTO lost_and_found VALUES(694, 694, 4, 118, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693865702); INSERT INTO lost_and_found VALUES(694, 694, 4, 119, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693866301); INSERT INTO lost_and_found VALUES(694, 694, 4, 120, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693866900); INSERT INTO lost_and_found VALUES(694, 694, 4, 121, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693867499); INSERT INTO lost_and_found VALUES(694, 694, 4, 122, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693868098); INSERT INTO lost_and_found VALUES(694, 694, 4, 123, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693868717); INSERT INTO lost_and_found VALUES(694, 694, 4, 124, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693869296); INSERT INTO lost_and_found VALUES(694, 694, 4, 125, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693869900); INSERT INTO lost_and_found VALUES(694, 694, 4, 126, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693870499); INSERT INTO lost_and_found VALUES(694, 694, 4, 127, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693871098); INSERT INTO lost_and_found VALUES(694, 694, 4, 128, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693871697); INSERT INTO lost_and_found VALUES(694, 694, 4, 129, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693872296); INSERT INTO lost_and_found VALUES(694, 694, 4, 130, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693872895); INSERT INTO lost_and_found VALUES(694, 694, 4, 131, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693873499); INSERT INTO lost_and_found VALUES(695, 695, 4, 132, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693874099); INSERT INTO lost_and_found VALUES(695, 695, 4, 133, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693874698); INSERT INTO lost_and_found VALUES(695, 695, 4, 134, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693875297); INSERT INTO lost_and_found VALUES(695, 695, 4, 135, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693875901); INSERT INTO lost_and_found VALUES(695, 695, 4, 136, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693876500); INSERT INTO lost_and_found VALUES(695, 695, 4, 137, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693877099); INSERT INTO lost_and_found VALUES(695, 695, 4, 138, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693877698); INSERT INTO lost_and_found VALUES(695, 695, 4, 139, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693878297); INSERT INTO lost_and_found VALUES(695, 695, 4, 140, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693878896); INSERT INTO lost_and_found VALUES(695, 695, 4, 141, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693879500); INSERT INTO lost_and_found VALUES(695, 695, 4, 142, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693880099); INSERT INTO lost_and_found VALUES(695, 695, 4, 143, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693880698); INSERT INTO lost_and_found VALUES(695, 695, 4, 144, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693881297); INSERT INTO lost_and_found VALUES(695, 695, 4, 145, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693881896); INSERT INTO lost_and_found VALUES(695, 695, 4, 146, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693882500); INSERT INTO lost_and_found VALUES(696, 696, 4, 147, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693883099); INSERT INTO lost_and_found VALUES(696, 696, 4, 148, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693883699); INSERT INTO lost_and_found VALUES(696, 696, 4, 149, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693884298); INSERT INTO lost_and_found VALUES(696, 696, 4, 150, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693884897); INSERT INTO lost_and_found VALUES(696, 696, 4, 151, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693885501); INSERT INTO lost_and_found VALUES(696, 696, 4, 152, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693886100); INSERT INTO lost_and_found VALUES(696, 696, 4, 153, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693886699); INSERT INTO lost_and_found VALUES(696, 696, 4, 154, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693887298); INSERT INTO lost_and_found VALUES(696, 696, 4, 155, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693887897); INSERT INTO lost_and_found VALUES(696, 696, 4, 156, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693888496); INSERT INTO lost_and_found VALUES(696, 696, 4, 157, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693889095); INSERT INTO lost_and_found VALUES(696, 696, 4, 158, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693889699); INSERT INTO lost_and_found VALUES(696, 696, 4, 159, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693890298); INSERT INTO lost_and_found VALUES(696, 696, 4, 160, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693890897); INSERT INTO lost_and_found VALUES(696, 696, 4, 161, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693891501); INSERT INTO lost_and_found VALUES(697, 697, 4, 162, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693892100); INSERT INTO lost_and_found VALUES(697, 697, 4, 163, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693892699); INSERT INTO lost_and_found VALUES(697, 697, 4, 164, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693893299); INSERT INTO lost_and_found VALUES(697, 697, 4, 165, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693893898); INSERT INTO lost_and_found VALUES(697, 697, 4, 166, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693894497); INSERT INTO lost_and_found VALUES(697, 697, 4, 167, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693895096); INSERT INTO lost_and_found VALUES(697, 697, 4, 168, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693895700); INSERT INTO lost_and_found VALUES(697, 697, 4, 169, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693896299); INSERT INTO lost_and_found VALUES(697, 697, 4, 170, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693896898); INSERT INTO lost_and_found VALUES(697, 697, 4, 171, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693897497); INSERT INTO lost_and_found VALUES(697, 697, 4, 172, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693898116); INSERT INTO lost_and_found VALUES(697, 697, 4, 173, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693898700); INSERT INTO lost_and_found VALUES(697, 697, 4, 174, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693899299); INSERT INTO lost_and_found VALUES(697, 697, 4, 175, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693899898); INSERT INTO lost_and_found VALUES(697, 697, 4, 176, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693900497); INSERT INTO lost_and_found VALUES(698, 698, 4, 177, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693901096); INSERT INTO lost_and_found VALUES(698, 698, 4, 178, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693901700); INSERT INTO lost_and_found VALUES(698, 698, 4, 179, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693902299); INSERT INTO lost_and_found VALUES(698, 698, 4, 180, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693902899); INSERT INTO lost_and_found VALUES(698, 698, 4, 181, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693903498); INSERT INTO lost_and_found VALUES(698, 698, 4, 182, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693904097); INSERT INTO lost_and_found VALUES(698, 698, 4, 183, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693904696); INSERT INTO lost_and_found VALUES(698, 698, 4, 184, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693905300); INSERT INTO lost_and_found VALUES(698, 698, 4, 185, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693905899); INSERT INTO lost_and_found VALUES(698, 698, 4, 186, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693906498); INSERT INTO lost_and_found VALUES(698, 698, 4, 187, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693907097); INSERT INTO lost_and_found VALUES(698, 698, 4, 188, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693907701); INSERT INTO lost_and_found VALUES(698, 698, 4, 189, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693908300); INSERT INTO lost_and_found VALUES(698, 698, 4, 190, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693908899); INSERT INTO lost_and_found VALUES(698, 698, 4, 191, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693909498); INSERT INTO lost_and_found VALUES(699, 699, 4, 192, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693910097); INSERT INTO lost_and_found VALUES(699, 699, 4, 193, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693910696); INSERT INTO lost_and_found VALUES(699, 699, 4, 194, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693911300); INSERT INTO lost_and_found VALUES(699, 699, 4, 195, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693911899); INSERT INTO lost_and_found VALUES(699, 699, 4, 196, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693912499); INSERT INTO lost_and_found VALUES(699, 699, 4, 197, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693913098); INSERT INTO lost_and_found VALUES(699, 699, 4, 198, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693913697); INSERT INTO lost_and_found VALUES(699, 699, 4, 199, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693914301); INSERT INTO lost_and_found VALUES(699, 699, 4, 200, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693914900); INSERT INTO lost_and_found VALUES(699, 699, 4, 201, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693915382); INSERT INTO lost_and_found VALUES(699, 699, 4, 202, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693915982); INSERT INTO lost_and_found VALUES(699, 699, 4, 203, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693916581); INSERT INTO lost_and_found VALUES(699, 699, 4, 204, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693917182); INSERT INTO lost_and_found VALUES(699, 699, 4, 205, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693917782); INSERT INTO lost_and_found VALUES(699, 699, 4, 206, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693918381); INSERT INTO lost_and_found VALUES(699, 699, 4, 207, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Could not resolve host: gitlab.fit.cvut.cz ', 1693918983); INSERT INTO lost_and_found VALUES(700, 700, 4, 208, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693919697); INSERT INTO lost_and_found VALUES(700, 700, 4, 209, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693920296); INSERT INTO lost_and_found VALUES(700, 700, 4, 210, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693920895); INSERT INTO lost_and_found VALUES(700, 700, 4, 211, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693921499); INSERT INTO lost_and_found VALUES(700, 700, 4, 212, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693922099); INSERT INTO lost_and_found VALUES(700, 700, 4, 213, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693922698); INSERT INTO lost_and_found VALUES(700, 700, 4, 214, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693923297); INSERT INTO lost_and_found VALUES(700, 700, 4, 215, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693923901); INSERT INTO lost_and_found VALUES(700, 700, 4, 216, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693924500); INSERT INTO lost_and_found VALUES(700, 700, 4, 217, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693925099); INSERT INTO lost_and_found VALUES(700, 700, 4, 218, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693925698); INSERT INTO lost_and_found VALUES(700, 700, 4, 219, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693926297); INSERT INTO lost_and_found VALUES(700, 700, 4, 220, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693926896); INSERT INTO lost_and_found VALUES(700, 700, 4, 221, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693927515); INSERT INTO lost_and_found VALUES(700, 700, 4, 222, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693928099); INSERT INTO lost_and_found VALUES(702, 702, 4, 223, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693928698); INSERT INTO lost_and_found VALUES(702, 702, 4, 224, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693929297); INSERT INTO lost_and_found VALUES(702, 702, 4, 225, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693929896); INSERT INTO lost_and_found VALUES(702, 702, 4, 226, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693930500); INSERT INTO lost_and_found VALUES(702, 702, 4, 227, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693931099); INSERT INTO lost_and_found VALUES(702, 702, 4, 228, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693931699); INSERT INTO lost_and_found VALUES(702, 702, 4, 229, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693932298); INSERT INTO lost_and_found VALUES(702, 702, 4, 230, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693932897); INSERT INTO lost_and_found VALUES(702, 702, 4, 231, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693933501); INSERT INTO lost_and_found VALUES(702, 702, 4, 232, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693934100); INSERT INTO lost_and_found VALUES(702, 702, 4, 233, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693934699); INSERT INTO lost_and_found VALUES(702, 702, 4, 234, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693935298); INSERT INTO lost_and_found VALUES(702, 702, 4, 235, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693935897); INSERT INTO lost_and_found VALUES(702, 702, 4, 236, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693936496); INSERT INTO lost_and_found VALUES(702, 702, 4, 237, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693937100); INSERT INTO lost_and_found VALUES(703, 703, 4, 238, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693937699); INSERT INTO lost_and_found VALUES(703, 703, 4, 239, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693938298); INSERT INTO lost_and_found VALUES(703, 703, 4, 240, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693938897); INSERT INTO lost_and_found VALUES(703, 703, 4, 241, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693939501); INSERT INTO lost_and_found VALUES(703, 703, 4, 242, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693940100); INSERT INTO lost_and_found VALUES(703, 703, 4, 243, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693940699); INSERT INTO lost_and_found VALUES(703, 703, 4, 244, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693941299); INSERT INTO lost_and_found VALUES(703, 703, 4, 245, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693941898); INSERT INTO lost_and_found VALUES(703, 703, 4, 246, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693942497); INSERT INTO lost_and_found VALUES(703, 703, 4, 247, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693943101); INSERT INTO lost_and_found VALUES(703, 703, 4, 248, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693943700); INSERT INTO lost_and_found VALUES(703, 703, 4, 249, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693944299); INSERT INTO lost_and_found VALUES(703, 703, 4, 250, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693944898); INSERT INTO lost_and_found VALUES(703, 703, 4, 251, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693945497); INSERT INTO lost_and_found VALUES(703, 703, 4, 252, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693946096); INSERT INTO lost_and_found VALUES(704, 704, 4, 253, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693946695); INSERT INTO lost_and_found VALUES(704, 704, 4, 254, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693947299); INSERT INTO lost_and_found VALUES(704, 704, 4, 255, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693947898); INSERT INTO lost_and_found VALUES(704, 704, 4, 256, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693948497); INSERT INTO lost_and_found VALUES(704, 704, 4, 257, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693949101); INSERT INTO lost_and_found VALUES(704, 704, 4, 258, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693949700); INSERT INTO lost_and_found VALUES(704, 704, 4, 259, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693950299); INSERT INTO lost_and_found VALUES(704, 704, 4, 260, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693950899); INSERT INTO lost_and_found VALUES(704, 704, 4, 261, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693951498); INSERT INTO lost_and_found VALUES(704, 704, 4, 262, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693952097); INSERT INTO lost_and_found VALUES(704, 704, 4, 263, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693952696); INSERT INTO lost_and_found VALUES(704, 704, 4, 264, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693953300); INSERT INTO lost_and_found VALUES(704, 704, 4, 265, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693953899); INSERT INTO lost_and_found VALUES(704, 704, 4, 266, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693954498); INSERT INTO lost_and_found VALUES(704, 704, 4, 267, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693955097); INSERT INTO lost_and_found VALUES(705, 705, 4, 268, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693955701); INSERT INTO lost_and_found VALUES(705, 705, 4, 269, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693956300); INSERT INTO lost_and_found VALUES(705, 705, 4, 270, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693956920); INSERT INTO lost_and_found VALUES(705, 705, 4, 271, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693957498); INSERT INTO lost_and_found VALUES(705, 705, 4, 272, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693958097); INSERT INTO lost_and_found VALUES(705, 705, 4, 273, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693958696); INSERT INTO lost_and_found VALUES(705, 705, 4, 274, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693959300); INSERT INTO lost_and_found VALUES(705, 705, 4, 275, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693959899); INSERT INTO lost_and_found VALUES(705, 705, 4, 276, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693960499); INSERT INTO lost_and_found VALUES(705, 705, 4, 277, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693961098); INSERT INTO lost_and_found VALUES(705, 705, 4, 278, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693961697); INSERT INTO lost_and_found VALUES(705, 705, 4, 279, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693962296); INSERT INTO lost_and_found VALUES(705, 705, 4, 280, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693962900); INSERT INTO lost_and_found VALUES(705, 705, 4, 281, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693963499); INSERT INTO lost_and_found VALUES(705, 705, 4, 282, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693964098); INSERT INTO lost_and_found VALUES(707, 707, 4, 283, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693964697); INSERT INTO lost_and_found VALUES(707, 707, 4, 284, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693965301); INSERT INTO lost_and_found VALUES(707, 707, 4, 285, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693965900); INSERT INTO lost_and_found VALUES(707, 707, 4, 286, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693966499); INSERT INTO lost_and_found VALUES(707, 707, 4, 287, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693967098); INSERT INTO lost_and_found VALUES(707, 707, 4, 288, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693967697); INSERT INTO lost_and_found VALUES(707, 707, 4, 289, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693968296); INSERT INTO lost_and_found VALUES(707, 707, 4, 290, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693968900); INSERT INTO lost_and_found VALUES(707, 707, 4, 291, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693969499); INSERT INTO lost_and_found VALUES(707, 707, 4, 292, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693970099); INSERT INTO lost_and_found VALUES(707, 707, 4, 293, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693970698); INSERT INTO lost_and_found VALUES(707, 707, 4, 294, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693971297); INSERT INTO lost_and_found VALUES(707, 707, 4, 295, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693971901); INSERT INTO lost_and_found VALUES(707, 707, 4, 296, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693972500); INSERT INTO lost_and_found VALUES(707, 707, 4, 297, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693973099); INSERT INTO lost_and_found VALUES(708, 708, 4, 298, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693973698); INSERT INTO lost_and_found VALUES(708, 708, 4, 299, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693974297); INSERT INTO lost_and_found VALUES(708, 708, 4, 300, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693974901); INSERT INTO lost_and_found VALUES(708, 708, 4, 301, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693975500); INSERT INTO lost_and_found VALUES(708, 708, 4, 302, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693976099); INSERT INTO lost_and_found VALUES(708, 708, 4, 303, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693976698); INSERT INTO lost_and_found VALUES(708, 708, 4, 304, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693977297); INSERT INTO lost_and_found VALUES(708, 708, 4, 305, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693977896); INSERT INTO lost_and_found VALUES(708, 708, 4, 306, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693978495); INSERT INTO lost_and_found VALUES(708, 708, 4, 307, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693979099); INSERT INTO lost_and_found VALUES(708, 708, 4, 308, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693979699); INSERT INTO lost_and_found VALUES(708, 708, 4, 309, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693980298); INSERT INTO lost_and_found VALUES(708, 708, 4, 310, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693980902); INSERT INTO lost_and_found VALUES(708, 708, 4, 311, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693981501); INSERT INTO lost_and_found VALUES(708, 708, 4, 312, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693982100); INSERT INTO lost_and_found VALUES(709, 709, 4, 313, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693982699); INSERT INTO lost_and_found VALUES(709, 709, 4, 314, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693983298); INSERT INTO lost_and_found VALUES(709, 709, 4, 315, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693983897); INSERT INTO lost_and_found VALUES(709, 709, 4, 316, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693984496); INSERT INTO lost_and_found VALUES(709, 709, 4, 317, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693985100); INSERT INTO lost_and_found VALUES(709, 709, 4, 318, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693985699); INSERT INTO lost_and_found VALUES(709, 709, 4, 319, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693986319); INSERT INTO lost_and_found VALUES(709, 709, 4, 320, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693986897); INSERT INTO lost_and_found VALUES(709, 709, 4, 321, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693987496); INSERT INTO lost_and_found VALUES(709, 709, 4, 322, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693988100); INSERT INTO lost_and_found VALUES(709, 709, 4, 323, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693988699); INSERT INTO lost_and_found VALUES(709, 709, 4, 324, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693989299); INSERT INTO lost_and_found VALUES(709, 709, 4, 325, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693989898); INSERT INTO lost_and_found VALUES(709, 709, 4, 326, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693990497); INSERT INTO lost_and_found VALUES(709, 709, 4, 327, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693991101); INSERT INTO lost_and_found VALUES(710, 710, 4, 328, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693991700); INSERT INTO lost_and_found VALUES(710, 710, 4, 329, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693992299); INSERT INTO lost_and_found VALUES(710, 710, 4, 330, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693992898); INSERT INTO lost_and_found VALUES(710, 710, 4, 331, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693993497); INSERT INTO lost_and_found VALUES(710, 710, 4, 332, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693994096); INSERT INTO lost_and_found VALUES(710, 710, 4, 333, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693994700); INSERT INTO lost_and_found VALUES(710, 710, 4, 334, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693995299); INSERT INTO lost_and_found VALUES(710, 710, 4, 335, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693995898); INSERT INTO lost_and_found VALUES(710, 710, 4, 336, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/bi-pa1.git'': fatal: unable to access ''https://gitlab.fit.cvut.cz/BI-PA1/B221/BI/paruzpro.git/'': Failed to connect to gitlab.fit.cvut.cz port 443: Connection timed out ', 1693996497); INSERT INTO lost_and_found VALUES(710, 710, 4, 337, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694045267); INSERT INTO lost_and_found VALUES(710, 710, 4, 338, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694045568); INSERT INTO lost_and_found VALUES(710, 710, 4, 339, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694045868); INSERT INTO lost_and_found VALUES(710, 710, 4, 340, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694045875); INSERT INTO lost_and_found VALUES(710, 710, 4, 341, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694046173); INSERT INTO lost_and_found VALUES(710, 710, 4, 342, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694046175); INSERT INTO lost_and_found VALUES(710, 710, 4, 343, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694046474); INSERT INTO lost_and_found VALUES(712, 712, 4, 344, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694046476); INSERT INTO lost_and_found VALUES(712, 712, 4, 345, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694046774); INSERT INTO lost_and_found VALUES(712, 712, 4, 346, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694046777); INSERT INTO lost_and_found VALUES(712, 712, 4, 347, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694047075); INSERT INTO lost_and_found VALUES(712, 712, 4, 348, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694047077); INSERT INTO lost_and_found VALUES(712, 712, 4, 349, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694047376); INSERT INTO lost_and_found VALUES(712, 712, 4, 350, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694047378); INSERT INTO lost_and_found VALUES(712, 712, 4, 351, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694047676); INSERT INTO lost_and_found VALUES(712, 712, 4, 352, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694047678); INSERT INTO lost_and_found VALUES(712, 712, 4, 353, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694047977); INSERT INTO lost_and_found VALUES(712, 712, 4, 354, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694047979); INSERT INTO lost_and_found VALUES(712, 712, 4, 355, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694048278); INSERT INTO lost_and_found VALUES(712, 712, 4, 356, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694048279); INSERT INTO lost_and_found VALUES(712, 712, 4, 357, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694048578); INSERT INTO lost_and_found VALUES(712, 712, 4, 358, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694048580); INSERT INTO lost_and_found VALUES(712, 712, 4, 359, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694048879); INSERT INTO lost_and_found VALUES(712, 712, 4, 360, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694049180); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1664832925, 1, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1672873306, 2, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1672873366, 3, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1672959705, 4, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1672959765, 5, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673046107, 6, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673046167, 7, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673132505, 8, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673132565, 9, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673218906, 10, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673218966, 11, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673305305, 12, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673305365, 13, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673391704, 14, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673391764, 15, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673478103, 16, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1673478163, 17, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685833323, 18, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685833939, 19, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685834539, 20, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685835139, 21, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685835739, 22, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685836342, 23, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685836939, 24, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685837539, 25, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685838139, 26, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685838739, 27, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685839339, 28, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685839939, 29, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685840542, 30, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685841139, 31, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1685841739, 32, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1687163519, 33, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1687163519, 34, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1687164119, 35, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1687164119, 36, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1687164719, 37, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1687164719, 38, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1689383512, 39, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1689383512, 40, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692102382, 41, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692602081, 42, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692602675, 43, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692603279, 44, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692603878, 45, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692604477, 46, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692605076, 47, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692605680, 48, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692606146, 49, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692606746, 50, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692607347, 51, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692607947, 52, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692608545, 53, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692609147, 54, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692609746, 55, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692610346, 56, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692610947, 57, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692611546, 58, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692612146, 59, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692612745, 60, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692613347, 61, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692613946, 62, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692614547, 63, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692615147, 64, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692615746, 65, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692616351, 66, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692616947, 67, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692617546, 68, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692618146, 69, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692618747, 70, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692619346, 71, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692619946, 72, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1692620547, 73, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693839196, 74, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693839783, 75, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693840382, 76, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693840981, 77, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693841583, 78, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693842182, 79, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693842781, 80, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693843381, 81, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693843982, 82, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693844582, 83, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693845181, 84, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693845782, 85, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693846497, 86, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693847096, 87, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693847700, 88, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693848299, 89, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693848898, 90, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693849497, 91, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693850101, 92, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693850700, 93, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693851299, 94, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693851898, 95, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693852497, 96, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693853096, 97, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693853700, 98, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693854299, 99, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693854899, 100, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693855498, 101, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693856097, 102, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693856701, 103, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693857300, 104, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693857899, 105, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693858498, 106, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693859097, 107, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693859701, 108, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693860300, 109, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693860899, 110, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693861498, 111, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693862097, 112, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693862696, 113, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693863295, 114, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693863899, 115, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693864499, 116, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693865103, 117, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693865702, 118, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693866301, 119, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693866900, 120, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693867499, 121, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693868098, 122, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693868717, 123, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693869296, 124, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693869900, 125, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693870499, 126, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693871098, 127, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693871697, 128, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693872296, 129, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693872895, 130, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693873499, 131, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693874099, 132, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693874698, 133, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693875297, 134, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693875901, 135, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693876500, 136, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693877099, 137, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693877698, 138, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693878297, 139, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693878896, 140, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693879500, 141, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693880099, 142, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693880698, 143, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693881297, 144, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693881896, 145, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693882500, 146, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693883099, 147, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693883699, 148, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693884298, 149, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693884897, 150, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693885501, 151, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693886100, 152, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693886699, 153, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693887298, 154, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693887897, 155, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693888496, 156, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693889095, 157, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693889699, 158, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693890298, 159, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693890897, 160, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693891501, 161, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693892100, 162, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693892699, 163, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693893299, 164, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693893898, 165, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693894497, 166, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693895096, 167, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693895700, 168, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693896299, 169, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693896898, 170, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693897497, 171, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693898116, 172, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693898700, 173, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693899299, 174, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693899898, 175, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693900497, 176, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693901096, 177, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693901700, 178, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693902299, 179, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693902899, 180, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693903498, 181, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693904097, 182, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693904696, 183, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693905300, 184, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693905899, 185, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693906498, 186, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693907097, 187, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693907701, 188, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693908300, 189, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693908899, 190, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693909498, 191, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693910097, 192, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693910696, 193, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693911300, 194, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693911899, 195, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693912499, 196, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693913098, 197, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693913697, 198, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693914301, 199, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693914900, 200, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693915382, 201, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693915982, 202, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693916581, 203, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693917182, 204, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693917782, 205, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693918381, 206, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693918983, 207, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693919697, 208, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693920296, 209, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693920895, 210, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693921499, 211, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693922099, 212, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693922698, 213, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693923297, 214, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693923901, 215, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693924500, 216, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693925099, 217, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693925698, 218, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693926297, 219, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693926896, 220, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693927515, 221, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693928099, 222, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693928698, 223, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693929297, 224, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693929896, 225, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693930500, 226, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693931099, 227, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693931699, 228, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693932298, 229, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693932897, 230, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693933501, 231, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693934100, 232, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693934699, 233, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693935298, 234, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693935897, 235, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693936496, 236, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693937100, 237, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693937699, 238, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693938298, 239, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693938897, 240, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693939501, 241, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693940100, 242, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693940699, 243, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693941299, 244, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693941898, 245, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693942497, 246, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693943101, 247, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693943700, 248, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693944299, 249, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693944898, 250, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693945497, 251, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693946096, 252, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693946695, 253, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693947299, 254, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693947898, 255, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693948497, 256, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693949101, 257, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693949700, 258, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693950299, 259, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693950899, 260, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693951498, 261, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693952097, 262, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693952696, 263, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693953300, 264, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693953899, 265, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693954498, 266, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693955097, 267, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693955701, 268, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693956300, 269, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693956920, 270, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693957498, 271, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693958097, 272, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693958696, 273, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693959300, 274, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693959899, 275, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693960499, 276, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693961098, 277, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693961697, 278, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693962296, 279, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693962900, 280, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693963499, 281, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693964098, 282, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693964697, 283, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693965301, 284, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693965900, 285, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693966499, 286, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693967098, 287, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693967697, 288, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693968296, 289, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693968900, 290, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693969499, 291, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693970099, 292, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693970698, 293, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693971297, 294, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693971901, 295, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693972500, 296, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693973099, 297, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693973698, 298, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693974297, 299, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693974901, 300, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693975500, 301, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693976099, 302, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693976698, 303, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693977297, 304, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693977896, 305, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693978495, 306, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693979099, 307, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693979699, 308, NULL, NULL); INSERT INTO lost_and_found VALUES(713, 713, 2, NULL, 1693980298, 309, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693981501, 311, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693982100, 312, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693982699, 313, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693983298, 314, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693983897, 315, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693984496, 316, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693985100, 317, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693985699, 318, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693986319, 319, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693986897, 320, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693987496, 321, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693988100, 322, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693988699, 323, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693989299, 324, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693989898, 325, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693990497, 326, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693991101, 327, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693991700, 328, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693992299, 329, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693992898, 330, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693993497, 331, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693994096, 332, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693994700, 333, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693995299, 334, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693995898, 335, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1693996497, 336, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694045267, 337, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694045568, 338, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694045868, 339, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694045875, 340, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694046173, 341, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694046175, 342, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694046474, 343, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694046476, 344, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694046774, 345, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694046777, 346, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047075, 347, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047077, 348, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047376, 349, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047378, 350, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047676, 351, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047678, 352, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047977, 353, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694047979, 354, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694048278, 355, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694048279, 356, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694048578, 357, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694048580, 358, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694048879, 359, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694049180, 360, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694049481, 361, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694049481, 362, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694049781, 363, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694049786, 364, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050082, 365, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050087, 366, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050383, 367, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050387, 368, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050683, 369, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050688, 370, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050984, 371, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694050988, 372, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051003, 373, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051003, 374, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051004, 375, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051004, 376, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051005, 377, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051006, 378, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051006, 379, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051007, 380, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051008, 381, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051008, 382, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051008, 383, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051009, 384, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051009, 385, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051010, 386, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051010, 387, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051011, 388, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051011, 389, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051012, 390, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051012, 391, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051013, 392, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051014, 393, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051014, 394, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051015, 395, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051016, 396, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051016, 397, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051017, 398, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051017, 399, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051017, 400, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051017, 401, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051018, 402, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051018, 403, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051019, 404, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051019, 405, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051019, 406, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051019, 407, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051020, 408, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051020, 409, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051021, 410, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051567, 411, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051567, 412, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051568, 413, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051569, 414, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051569, 415, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051570, 416, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051570, 417, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051571, 418, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051572, 419, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051573, 420, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051573, 421, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694051574, 422, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694052468, 423, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694052769, 424, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053067, 425, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053069, 426, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053368, 427, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053370, 428, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053669, 429, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053670, 430, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053970, 431, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694053971, 432, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694054270, 433, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694054272, 434, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694054571, 435, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694054572, 436, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694054872, 437, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694054873, 438, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694055172, 439, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694055173, 440, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694055473, 441, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694055474, 442, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694055774, 443, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694055775, 444, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694056075, 445, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694056375, 446, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694056676, 447, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694056676, 448, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694056977, 449, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694056982, 450, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694057277, 451, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694057282, 452, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694057578, 453, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694057583, 454, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694057879, 455, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694057883, 456, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694058179, 457, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694058184, 458, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694058480, 459, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694058485, 460, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694058781, 461, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694058785, 462, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059081, 463, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059086, 464, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059382, 465, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059386, 466, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059683, 467, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059687, 468, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059983, 469, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694059987, 470, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060059, 471, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060059, 472, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060060, 473, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060060, 474, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060061, 475, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060061, 476, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060062, 477, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060063, 478, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060063, 479, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060064, 480, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060064, 481, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060065, 482, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060066, 483, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060067, 484, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060068, 485, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060068, 486, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060069, 487, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060069, 488, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060070, 489, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060071, 490, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060071, 491, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060072, 492, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060073, 493, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060073, 494, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060074, 495, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060567, 496, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060568, 497, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060568, 498, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060569, 499, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060570, 500, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060570, 501, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060571, 502, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060571, 503, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060572, 504, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060573, 505, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060573, 506, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694060574, 507, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061167, 508, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061167, 509, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061168, 510, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061168, 511, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061169, 512, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061170, 513, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061170, 514, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061171, 515, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061171, 516, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061172, 517, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061173, 518, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061173, 519, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061766, 520, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061767, 521, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061767, 522, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061768, 523, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061768, 524, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061769, 525, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061770, 526, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061770, 527, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061771, 528, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061771, 529, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061772, 530, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694061773, 531, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694062668, 532, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694062968, 533, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694063267, 534, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694063269, 535, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694063568, 536, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694063569, 537, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694063868, 538, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694063870, 539, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694064169, 540, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694064171, 541, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694064470, 542, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694064471, 543, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694064770, 544, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694064772, 545, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065071, 546, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065073, 547, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065372, 548, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065373, 549, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065672, 550, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065674, 551, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065973, 552, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694065974, 553, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694066274, 554, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694066275, 555, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694066574, 556, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694066576, 557, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694066875, 558, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694066876, 559, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694067176, 560, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694067177, 561, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694067476, 562, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694067477, 563, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694067777, 564, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694067778, 565, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068077, 566, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068079, 567, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068378, 568, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068379, 569, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068679, 570, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068680, 571, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068979, 572, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694068980, 573, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694069280, 574, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694069281, 575, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694069581, 576, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694069581, 577, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694069881, 578, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694070182, 579, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694070482, 580, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694070786, 581, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694070786, 582, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071087, 583, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071092, 584, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071387, 585, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071392, 586, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071688, 587, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071693, 588, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071989, 589, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694071993, 590, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694072289, 591, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694072294, 592, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694072590, 593, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694072594, 594, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694072890, 595, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694072895, 596, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694073191, 597, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694073196, 598, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694073492, 599, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694073496, 600, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694073792, 601, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694073797, 602, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694074093, 603, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694074098, 604, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694074394, 605, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694074400, 606, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694074694, 607, NULL, NULL); INSERT INTO lost_and_found VALUES(714, 714, 2, NULL, 1694074700, 608, NULL, NULL); INSERT INTO lost_and_found VALUES(715, 715, 4, 361, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694049481); INSERT INTO lost_and_found VALUES(715, 715, 4, 362, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694049481); INSERT INTO lost_and_found VALUES(715, 715, 4, 363, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694049781); INSERT INTO lost_and_found VALUES(715, 715, 4, 364, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694049786); INSERT INTO lost_and_found VALUES(715, 715, 4, 365, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694050082); INSERT INTO lost_and_found VALUES(715, 715, 4, 366, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694050087); INSERT INTO lost_and_found VALUES(715, 715, 4, 367, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694050383); INSERT INTO lost_and_found VALUES(715, 715, 4, 368, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694050387); INSERT INTO lost_and_found VALUES(715, 715, 4, 369, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694050683); INSERT INTO lost_and_found VALUES(715, 715, 4, 370, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694050688); INSERT INTO lost_and_found VALUES(715, 715, 4, 371, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694050984); INSERT INTO lost_and_found VALUES(715, 715, 4, 372, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694050988); INSERT INTO lost_and_found VALUES(715, 715, 4, 373, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694051003); INSERT INTO lost_and_found VALUES(715, 715, 4, 374, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694051003); INSERT INTO lost_and_found VALUES(715, 715, 4, 375, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694051004); INSERT INTO lost_and_found VALUES(715, 715, 4, 376, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694051004); INSERT INTO lost_and_found VALUES(715, 715, 4, 377, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694051005); INSERT INTO lost_and_found VALUES(716, 716, 4, 378, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694051006); INSERT INTO lost_and_found VALUES(716, 716, 4, 379, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694051006); INSERT INTO lost_and_found VALUES(716, 716, 4, 380, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694051007); INSERT INTO lost_and_found VALUES(716, 716, 4, 381, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694051008); INSERT INTO lost_and_found VALUES(716, 716, 4, 382, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694051008); INSERT INTO lost_and_found VALUES(716, 716, 4, 383, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694051008); INSERT INTO lost_and_found VALUES(716, 716, 4, 384, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694051009); INSERT INTO lost_and_found VALUES(716, 716, 4, 385, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694051009); INSERT INTO lost_and_found VALUES(716, 716, 4, 386, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694051010); INSERT INTO lost_and_found VALUES(716, 716, 4, 387, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694051010); INSERT INTO lost_and_found VALUES(716, 716, 4, 388, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694051011); INSERT INTO lost_and_found VALUES(716, 716, 4, 389, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694051011); INSERT INTO lost_and_found VALUES(716, 716, 4, 390, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694051012); INSERT INTO lost_and_found VALUES(716, 716, 4, 391, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694051012); INSERT INTO lost_and_found VALUES(716, 716, 4, 392, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694051013); INSERT INTO lost_and_found VALUES(716, 716, 4, 393, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694051014); INSERT INTO lost_and_found VALUES(716, 716, 4, 394, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694051014); INSERT INTO lost_and_found VALUES(717, 717, 4, 395, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694051015); INSERT INTO lost_and_found VALUES(717, 717, 4, 396, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694051016); INSERT INTO lost_and_found VALUES(717, 717, 4, 397, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694051016); INSERT INTO lost_and_found VALUES(717, 717, 4, 398, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694051017); INSERT INTO lost_and_found VALUES(717, 717, 4, 399, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694051017); INSERT INTO lost_and_found VALUES(717, 717, 4, 400, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694051017); INSERT INTO lost_and_found VALUES(717, 717, 4, 401, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694051017); INSERT INTO lost_and_found VALUES(717, 717, 4, 402, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694051018); INSERT INTO lost_and_found VALUES(717, 717, 4, 403, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694051018); INSERT INTO lost_and_found VALUES(717, 717, 4, 404, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694051019); INSERT INTO lost_and_found VALUES(717, 717, 4, 405, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694051019); INSERT INTO lost_and_found VALUES(717, 717, 4, 406, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694051019); INSERT INTO lost_and_found VALUES(717, 717, 4, 407, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694051019); INSERT INTO lost_and_found VALUES(717, 717, 4, 408, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694051020); INSERT INTO lost_and_found VALUES(717, 717, 4, 409, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694051020); INSERT INTO lost_and_found VALUES(717, 717, 4, 410, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694051021); INSERT INTO lost_and_found VALUES(717, 717, 4, 411, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694051567); INSERT INTO lost_and_found VALUES(718, 718, 4, 412, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694051567); INSERT INTO lost_and_found VALUES(718, 718, 4, 413, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694051568); INSERT INTO lost_and_found VALUES(718, 718, 4, 414, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694051569); INSERT INTO lost_and_found VALUES(718, 718, 4, 415, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694051569); INSERT INTO lost_and_found VALUES(718, 718, 4, 416, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694051570); INSERT INTO lost_and_found VALUES(718, 718, 4, 417, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694051570); INSERT INTO lost_and_found VALUES(718, 718, 4, 418, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694051571); INSERT INTO lost_and_found VALUES(718, 718, 4, 419, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694051572); INSERT INTO lost_and_found VALUES(718, 718, 4, 420, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694051573); INSERT INTO lost_and_found VALUES(718, 718, 4, 421, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694051573); INSERT INTO lost_and_found VALUES(718, 718, 4, 422, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694051574); INSERT INTO lost_and_found VALUES(718, 718, 4, 423, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694052468); INSERT INTO lost_and_found VALUES(718, 718, 4, 424, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694052769); INSERT INTO lost_and_found VALUES(718, 718, 4, 425, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694053067); INSERT INTO lost_and_found VALUES(718, 718, 4, 426, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694053069); INSERT INTO lost_and_found VALUES(718, 718, 4, 427, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694053368); INSERT INTO lost_and_found VALUES(718, 718, 4, 428, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694053370); INSERT INTO lost_and_found VALUES(718, 718, 4, 429, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694053669); INSERT INTO lost_and_found VALUES(719, 719, 4, 430, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694053670); INSERT INTO lost_and_found VALUES(719, 719, 4, 431, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694053970); INSERT INTO lost_and_found VALUES(719, 719, 4, 432, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694053971); INSERT INTO lost_and_found VALUES(719, 719, 4, 433, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694054270); INSERT INTO lost_and_found VALUES(719, 719, 4, 434, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694054272); INSERT INTO lost_and_found VALUES(719, 719, 4, 435, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694054571); INSERT INTO lost_and_found VALUES(719, 719, 4, 436, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694054572); INSERT INTO lost_and_found VALUES(719, 719, 4, 437, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694054872); INSERT INTO lost_and_found VALUES(719, 719, 4, 438, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694054873); INSERT INTO lost_and_found VALUES(719, 719, 4, 439, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694055172); INSERT INTO lost_and_found VALUES(719, 719, 4, 440, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694055173); INSERT INTO lost_and_found VALUES(719, 719, 4, 441, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694055473); INSERT INTO lost_and_found VALUES(719, 719, 4, 442, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694055474); INSERT INTO lost_and_found VALUES(719, 719, 4, 443, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694055774); INSERT INTO lost_and_found VALUES(719, 719, 4, 444, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694055775); INSERT INTO lost_and_found VALUES(719, 719, 4, 445, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694056075); INSERT INTO lost_and_found VALUES(719, 719, 4, 446, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694056375); INSERT INTO lost_and_found VALUES(720, 720, 4, 447, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694056676); INSERT INTO lost_and_found VALUES(720, 720, 4, 448, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694056676); INSERT INTO lost_and_found VALUES(720, 720, 4, 449, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694056977); INSERT INTO lost_and_found VALUES(720, 720, 4, 450, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694056982); INSERT INTO lost_and_found VALUES(720, 720, 4, 451, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694057277); INSERT INTO lost_and_found VALUES(720, 720, 4, 452, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694057282); INSERT INTO lost_and_found VALUES(720, 720, 4, 453, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694057578); INSERT INTO lost_and_found VALUES(720, 720, 4, 454, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694057583); INSERT INTO lost_and_found VALUES(720, 720, 4, 455, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694057879); INSERT INTO lost_and_found VALUES(720, 720, 4, 456, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694057883); INSERT INTO lost_and_found VALUES(720, 720, 4, 457, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694058179); INSERT INTO lost_and_found VALUES(720, 720, 4, 458, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694058184); INSERT INTO lost_and_found VALUES(720, 720, 4, 459, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694058480); INSERT INTO lost_and_found VALUES(720, 720, 4, 460, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694058485); INSERT INTO lost_and_found VALUES(720, 720, 4, 461, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694058781); INSERT INTO lost_and_found VALUES(720, 720, 4, 462, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694058785); INSERT INTO lost_and_found VALUES(720, 720, 4, 463, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694059081); INSERT INTO lost_and_found VALUES(721, 721, 4, 464, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694059086); INSERT INTO lost_and_found VALUES(721, 721, 4, 465, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694059382); INSERT INTO lost_and_found VALUES(721, 721, 4, 466, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694059386); INSERT INTO lost_and_found VALUES(721, 721, 4, 467, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694059683); INSERT INTO lost_and_found VALUES(721, 721, 4, 468, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694059687); INSERT INTO lost_and_found VALUES(721, 721, 4, 469, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694059983); INSERT INTO lost_and_found VALUES(721, 721, 4, 470, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694059987); INSERT INTO lost_and_found VALUES(721, 721, 4, 471, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694060059); INSERT INTO lost_and_found VALUES(721, 721, 4, 472, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694060059); INSERT INTO lost_and_found VALUES(721, 721, 4, 473, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694060060); INSERT INTO lost_and_found VALUES(721, 721, 4, 474, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694060060); INSERT INTO lost_and_found VALUES(721, 721, 4, 475, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694060061); INSERT INTO lost_and_found VALUES(721, 721, 4, 476, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694060061); INSERT INTO lost_and_found VALUES(721, 721, 4, 477, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694060062); INSERT INTO lost_and_found VALUES(721, 721, 4, 478, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694060063); INSERT INTO lost_and_found VALUES(721, 721, 4, 479, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694060063); INSERT INTO lost_and_found VALUES(721, 721, 4, 480, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694060064); INSERT INTO lost_and_found VALUES(722, 722, 4, 481, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694060064); INSERT INTO lost_and_found VALUES(722, 722, 4, 482, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694060065); INSERT INTO lost_and_found VALUES(722, 722, 4, 483, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694060066); INSERT INTO lost_and_found VALUES(722, 722, 4, 484, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694060067); INSERT INTO lost_and_found VALUES(722, 722, 4, 485, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694060068); INSERT INTO lost_and_found VALUES(722, 722, 4, 486, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694060068); INSERT INTO lost_and_found VALUES(722, 722, 4, 487, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694060069); INSERT INTO lost_and_found VALUES(722, 722, 4, 488, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694060069); INSERT INTO lost_and_found VALUES(722, 722, 4, 489, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694060070); INSERT INTO lost_and_found VALUES(722, 722, 4, 490, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694060071); INSERT INTO lost_and_found VALUES(722, 722, 4, 491, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694060071); INSERT INTO lost_and_found VALUES(722, 722, 4, 492, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694060072); INSERT INTO lost_and_found VALUES(722, 722, 4, 493, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694060073); INSERT INTO lost_and_found VALUES(722, 722, 4, 494, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694060073); INSERT INTO lost_and_found VALUES(722, 722, 4, 495, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694060074); INSERT INTO lost_and_found VALUES(722, 722, 4, 496, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694060567); INSERT INTO lost_and_found VALUES(722, 722, 4, 497, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694060568); INSERT INTO lost_and_found VALUES(723, 723, 4, 498, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694060568); INSERT INTO lost_and_found VALUES(723, 723, 4, 499, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694060569); INSERT INTO lost_and_found VALUES(723, 723, 4, 500, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694060570); INSERT INTO lost_and_found VALUES(723, 723, 4, 501, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694060570); INSERT INTO lost_and_found VALUES(723, 723, 4, 502, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694060571); INSERT INTO lost_and_found VALUES(723, 723, 4, 503, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694060571); INSERT INTO lost_and_found VALUES(723, 723, 4, 504, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694060572); INSERT INTO lost_and_found VALUES(723, 723, 4, 505, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694060573); INSERT INTO lost_and_found VALUES(723, 723, 4, 506, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694060573); INSERT INTO lost_and_found VALUES(723, 723, 4, 507, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694060574); INSERT INTO lost_and_found VALUES(723, 723, 4, 508, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694061167); INSERT INTO lost_and_found VALUES(723, 723, 4, 509, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694061167); INSERT INTO lost_and_found VALUES(723, 723, 4, 510, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694061168); INSERT INTO lost_and_found VALUES(723, 723, 4, 511, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694061168); INSERT INTO lost_and_found VALUES(723, 723, 4, 512, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694061169); INSERT INTO lost_and_found VALUES(723, 723, 4, 513, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694061170); INSERT INTO lost_and_found VALUES(723, 723, 4, 514, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694061170); INSERT INTO lost_and_found VALUES(724, 724, 4, 515, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694061171); INSERT INTO lost_and_found VALUES(724, 724, 4, 516, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694061171); INSERT INTO lost_and_found VALUES(724, 724, 4, 517, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694061172); INSERT INTO lost_and_found VALUES(724, 724, 4, 518, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694061173); INSERT INTO lost_and_found VALUES(724, 724, 4, 519, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694061173); INSERT INTO lost_and_found VALUES(724, 724, 4, 520, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 500 ', 1694061766); INSERT INTO lost_and_found VALUES(724, 724, 4, 521, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 500 ', 1694061767); INSERT INTO lost_and_found VALUES(724, 724, 4, 522, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 500 ', 1694061767); INSERT INTO lost_and_found VALUES(724, 724, 4, 523, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 500 ', 1694061768); INSERT INTO lost_and_found VALUES(724, 724, 4, 524, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 500 ', 1694061768); INSERT INTO lost_and_found VALUES(724, 724, 4, 525, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 500 ', 1694061769); INSERT INTO lost_and_found VALUES(724, 724, 4, 526, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 500 ', 1694061770); INSERT INTO lost_and_found VALUES(724, 724, 4, 527, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 500 ', 1694061770); INSERT INTO lost_and_found VALUES(724, 724, 4, 528, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 500 ', 1694061771); INSERT INTO lost_and_found VALUES(724, 724, 4, 529, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694061771); INSERT INTO lost_and_found VALUES(724, 724, 4, 530, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 500 ', 1694061772); INSERT INTO lost_and_found VALUES(724, 724, 4, 531, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 500 ', 1694061773); INSERT INTO lost_and_found VALUES(724, 724, 4, 532, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694062668); INSERT INTO lost_and_found VALUES(725, 725, 4, 533, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694062968); INSERT INTO lost_and_found VALUES(725, 725, 4, 534, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694063267); INSERT INTO lost_and_found VALUES(725, 725, 4, 535, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694063269); INSERT INTO lost_and_found VALUES(725, 725, 4, 536, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694063568); INSERT INTO lost_and_found VALUES(725, 725, 4, 537, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694063569); INSERT INTO lost_and_found VALUES(725, 725, 4, 538, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694063868); INSERT INTO lost_and_found VALUES(725, 725, 4, 539, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694063870); INSERT INTO lost_and_found VALUES(725, 725, 4, 540, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694064169); INSERT INTO lost_and_found VALUES(725, 725, 4, 541, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694064171); INSERT INTO lost_and_found VALUES(725, 725, 4, 542, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694064470); INSERT INTO lost_and_found VALUES(725, 725, 4, 543, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694064471); INSERT INTO lost_and_found VALUES(725, 725, 4, 544, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694064770); INSERT INTO lost_and_found VALUES(725, 725, 4, 545, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694064772); INSERT INTO lost_and_found VALUES(725, 725, 4, 546, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694065071); INSERT INTO lost_and_found VALUES(725, 725, 4, 547, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694065073); INSERT INTO lost_and_found VALUES(725, 725, 4, 548, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694065372); INSERT INTO lost_and_found VALUES(725, 725, 4, 549, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694065373); INSERT INTO lost_and_found VALUES(726, 726, 4, 550, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694065672); INSERT INTO lost_and_found VALUES(726, 726, 4, 551, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694065674); INSERT INTO lost_and_found VALUES(726, 726, 4, 552, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694065973); INSERT INTO lost_and_found VALUES(726, 726, 4, 553, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694065974); INSERT INTO lost_and_found VALUES(726, 726, 4, 554, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694066274); INSERT INTO lost_and_found VALUES(726, 726, 4, 555, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694066275); INSERT INTO lost_and_found VALUES(726, 726, 4, 556, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694066574); INSERT INTO lost_and_found VALUES(726, 726, 4, 557, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694066576); INSERT INTO lost_and_found VALUES(726, 726, 4, 558, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694066875); INSERT INTO lost_and_found VALUES(726, 726, 4, 559, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694066876); INSERT INTO lost_and_found VALUES(726, 726, 4, 560, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694067176); INSERT INTO lost_and_found VALUES(726, 726, 4, 561, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694067177); INSERT INTO lost_and_found VALUES(726, 726, 4, 562, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694067476); INSERT INTO lost_and_found VALUES(726, 726, 4, 563, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694067477); INSERT INTO lost_and_found VALUES(726, 726, 4, 564, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694067777); INSERT INTO lost_and_found VALUES(726, 726, 4, 565, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694067778); INSERT INTO lost_and_found VALUES(726, 726, 4, 566, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694068077); INSERT INTO lost_and_found VALUES(727, 727, 4, 567, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694068079); INSERT INTO lost_and_found VALUES(727, 727, 4, 568, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694068378); INSERT INTO lost_and_found VALUES(727, 727, 4, 569, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694068379); INSERT INTO lost_and_found VALUES(727, 727, 4, 570, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694068679); INSERT INTO lost_and_found VALUES(727, 727, 4, 571, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694068680); INSERT INTO lost_and_found VALUES(727, 727, 4, 572, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694068979); INSERT INTO lost_and_found VALUES(727, 727, 4, 573, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694068980); INSERT INTO lost_and_found VALUES(727, 727, 4, 574, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694069280); INSERT INTO lost_and_found VALUES(727, 727, 4, 575, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694069281); INSERT INTO lost_and_found VALUES(727, 727, 4, 576, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694069581); INSERT INTO lost_and_found VALUES(727, 727, 4, 577, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694069581); INSERT INTO lost_and_found VALUES(727, 727, 4, 578, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694069881); INSERT INTO lost_and_found VALUES(727, 727, 4, 579, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694070182); INSERT INTO lost_and_found VALUES(727, 727, 4, 580, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694070482); INSERT INTO lost_and_found VALUES(727, 727, 4, 581, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694070786); INSERT INTO lost_and_found VALUES(727, 727, 4, 582, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694070786); INSERT INTO lost_and_found VALUES(727, 727, 4, 583, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 504 ', 1694071087); INSERT INTO lost_and_found VALUES(728, 728, 4, 584, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694071092); INSERT INTO lost_and_found VALUES(728, 728, 4, 585, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 504 ', 1694071387); INSERT INTO lost_and_found VALUES(728, 728, 4, 586, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694071392); INSERT INTO lost_and_found VALUES(728, 728, 4, 587, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694071688); INSERT INTO lost_and_found VALUES(728, 728, 4, 588, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694071693); INSERT INTO lost_and_found VALUES(728, 728, 4, 589, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694071989); INSERT INTO lost_and_found VALUES(728, 728, 4, 590, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694071993); INSERT INTO lost_and_found VALUES(728, 728, 4, 591, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694072289); INSERT INTO lost_and_found VALUES(728, 728, 4, 592, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694072294); INSERT INTO lost_and_found VALUES(728, 728, 4, 593, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694072590); INSERT INTO lost_and_found VALUES(728, 728, 4, 594, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694072594); INSERT INTO lost_and_found VALUES(728, 728, 4, 595, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 504 ', 1694072890); INSERT INTO lost_and_found VALUES(728, 728, 4, 596, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694072895); INSERT INTO lost_and_found VALUES(728, 728, 4, 597, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 504 ', 1694073191); INSERT INTO lost_and_found VALUES(728, 728, 4, 598, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694073196); INSERT INTO lost_and_found VALUES(728, 728, 4, 599, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 504 ', 1694073492); INSERT INTO lost_and_found VALUES(728, 728, 4, 600, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 504 ', 1694073496); INSERT INTO lost_and_found VALUES(728, 728, 4, 601, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 504 ', 1694073792); INSERT INTO lost_and_found VALUES(729, 729, 4, 602, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 504 ', 1694073797); INSERT INTO lost_and_found VALUES(729, 729, 4, 603, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 504 ', 1694074093); INSERT INTO lost_and_found VALUES(729, 729, 4, 604, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 504 ', 1694074098); INSERT INTO lost_and_found VALUES(729, 729, 4, 605, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694074394); INSERT INTO lost_and_found VALUES(729, 729, 4, 606, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 504 ', 1694074400); INSERT INTO lost_and_found VALUES(729, 729, 4, 607, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694074694); INSERT INTO lost_and_found VALUES(729, 729, 4, 608, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 504 ', 1694074700); INSERT INTO lost_and_found VALUES(729, 729, 4, 609, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694074768); INSERT INTO lost_and_found VALUES(729, 729, 4, 610, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 500 ', 1694074768); INSERT INTO lost_and_found VALUES(729, 729, 4, 611, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/prokop/thgtoa.git'': fatal: unable to access ''https://github.com/Anon-Planet/thgtoa.git/'': Failed to connect to github.com port 443: Connection timed out ', 1694075099); INSERT INTO lost_and_found VALUES(729, 729, 4, 612, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/h21/13k.git'': fatal: unable to access ''https://github.com/stp2/13k.git/'': gnutls_handshake() failed: Error in the pull function. ', 1694103444); INSERT INTO lost_and_found VALUES(729, 729, 4, 613, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/h21/13k.git'': fatal: unable to access ''https://github.com/stp2/13k.git/'': Failed to connect to github.com port 443: Connection timed out ', 1694779451); INSERT INTO lost_and_found VALUES(729, 729, 4, 614, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695367309); INSERT INTO lost_and_found VALUES(729, 729, 4, 615, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695367310); INSERT INTO lost_and_found VALUES(729, 729, 4, 616, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695367310); INSERT INTO lost_and_found VALUES(729, 729, 4, 617, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695367311); INSERT INTO lost_and_found VALUES(729, 729, 4, 618, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695367311); INSERT INTO lost_and_found VALUES(738, 738, 4, 619, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695367311); INSERT INTO lost_and_found VALUES(738, 738, 4, 620, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695367312); INSERT INTO lost_and_found VALUES(738, 738, 4, 621, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695367312); INSERT INTO lost_and_found VALUES(738, 738, 4, 622, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695367313); INSERT INTO lost_and_found VALUES(738, 738, 4, 623, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695367313); INSERT INTO lost_and_found VALUES(738, 738, 4, 624, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695367314); INSERT INTO lost_and_found VALUES(738, 738, 4, 625, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695367314); INSERT INTO lost_and_found VALUES(738, 738, 4, 626, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695367912); INSERT INTO lost_and_found VALUES(738, 738, 4, 627, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695367913); INSERT INTO lost_and_found VALUES(738, 738, 4, 628, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695367913); INSERT INTO lost_and_found VALUES(738, 738, 4, 629, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695367914); INSERT INTO lost_and_found VALUES(738, 738, 4, 630, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695367914); INSERT INTO lost_and_found VALUES(738, 738, 4, 631, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695367914); INSERT INTO lost_and_found VALUES(738, 738, 4, 632, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695367915); INSERT INTO lost_and_found VALUES(738, 738, 4, 633, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695367915); INSERT INTO lost_and_found VALUES(738, 738, 4, 634, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695367916); INSERT INTO lost_and_found VALUES(738, 738, 4, 635, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695367916); INSERT INTO lost_and_found VALUES(739, 739, 4, 636, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695367917); INSERT INTO lost_and_found VALUES(739, 739, 4, 637, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695367917); INSERT INTO lost_and_found VALUES(739, 739, 4, 638, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695368509); INSERT INTO lost_and_found VALUES(739, 739, 4, 639, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695368510); INSERT INTO lost_and_found VALUES(739, 739, 4, 640, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695368510); INSERT INTO lost_and_found VALUES(739, 739, 4, 641, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695368510); INSERT INTO lost_and_found VALUES(739, 739, 4, 642, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695368511); INSERT INTO lost_and_found VALUES(739, 739, 4, 643, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695368511); INSERT INTO lost_and_found VALUES(739, 739, 4, 644, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695368512); INSERT INTO lost_and_found VALUES(739, 739, 4, 645, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695368512); INSERT INTO lost_and_found VALUES(739, 739, 4, 646, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695368513); INSERT INTO lost_and_found VALUES(739, 739, 4, 647, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695368513); INSERT INTO lost_and_found VALUES(739, 739, 4, 648, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695368513); INSERT INTO lost_and_found VALUES(739, 739, 4, 649, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695368514); INSERT INTO lost_and_found VALUES(739, 739, 4, 650, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695369109); INSERT INTO lost_and_found VALUES(739, 739, 4, 651, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695369109); INSERT INTO lost_and_found VALUES(739, 739, 4, 652, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695369110); INSERT INTO lost_and_found VALUES(740, 740, 4, 653, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695369110); INSERT INTO lost_and_found VALUES(740, 740, 4, 654, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695369111); INSERT INTO lost_and_found VALUES(740, 740, 4, 655, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695369111); INSERT INTO lost_and_found VALUES(740, 740, 4, 656, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695369112); INSERT INTO lost_and_found VALUES(740, 740, 4, 657, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695369112); INSERT INTO lost_and_found VALUES(740, 740, 4, 658, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695369113); INSERT INTO lost_and_found VALUES(740, 740, 4, 659, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695369113); INSERT INTO lost_and_found VALUES(740, 740, 4, 660, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695369113); INSERT INTO lost_and_found VALUES(740, 740, 4, 661, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695369114); INSERT INTO lost_and_found VALUES(740, 740, 4, 662, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695369708); INSERT INTO lost_and_found VALUES(740, 740, 4, 663, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695369709); INSERT INTO lost_and_found VALUES(740, 740, 4, 664, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695369709); INSERT INTO lost_and_found VALUES(740, 740, 4, 665, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695369710); INSERT INTO lost_and_found VALUES(740, 740, 4, 666, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695369710); INSERT INTO lost_and_found VALUES(740, 740, 4, 667, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695369711); INSERT INTO lost_and_found VALUES(740, 740, 4, 668, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695369711); INSERT INTO lost_and_found VALUES(740, 740, 4, 669, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695369712); INSERT INTO lost_and_found VALUES(741, 741, 4, 670, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695369712); INSERT INTO lost_and_found VALUES(741, 741, 4, 671, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695369712); INSERT INTO lost_and_found VALUES(741, 741, 4, 672, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695369713); INSERT INTO lost_and_found VALUES(741, 741, 4, 673, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695369713); INSERT INTO lost_and_found VALUES(741, 741, 4, 674, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695370308); INSERT INTO lost_and_found VALUES(741, 741, 4, 675, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695370308); INSERT INTO lost_and_found VALUES(741, 741, 4, 676, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695370309); INSERT INTO lost_and_found VALUES(741, 741, 4, 677, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695370309); INSERT INTO lost_and_found VALUES(741, 741, 4, 678, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695370310); INSERT INTO lost_and_found VALUES(741, 741, 4, 679, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695370310); INSERT INTO lost_and_found VALUES(741, 741, 4, 680, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695370310); INSERT INTO lost_and_found VALUES(741, 741, 4, 681, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695370311); INSERT INTO lost_and_found VALUES(741, 741, 4, 682, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695370311); INSERT INTO lost_and_found VALUES(741, 741, 4, 683, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695370312); INSERT INTO lost_and_found VALUES(741, 741, 4, 684, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695370312); INSERT INTO lost_and_found VALUES(741, 741, 4, 685, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695370313); INSERT INTO lost_and_found VALUES(741, 741, 4, 686, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695370907); INSERT INTO lost_and_found VALUES(742, 742, 4, 687, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695370908); INSERT INTO lost_and_found VALUES(742, 742, 4, 688, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695370908); INSERT INTO lost_and_found VALUES(742, 742, 4, 689, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695370908); INSERT INTO lost_and_found VALUES(742, 742, 4, 690, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695370909); INSERT INTO lost_and_found VALUES(742, 742, 4, 691, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695370909); INSERT INTO lost_and_found VALUES(742, 742, 4, 692, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695370910); INSERT INTO lost_and_found VALUES(742, 742, 4, 693, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695370910); INSERT INTO lost_and_found VALUES(742, 742, 4, 694, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695370911); INSERT INTO lost_and_found VALUES(742, 742, 4, 695, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695370911); INSERT INTO lost_and_found VALUES(742, 742, 4, 696, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695370912); INSERT INTO lost_and_found VALUES(742, 742, 4, 697, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695370912); INSERT INTO lost_and_found VALUES(742, 742, 4, 698, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695371509); INSERT INTO lost_and_found VALUES(742, 742, 4, 699, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695371509); INSERT INTO lost_and_found VALUES(742, 742, 4, 700, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695371510); INSERT INTO lost_and_found VALUES(742, 742, 4, 701, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695371510); INSERT INTO lost_and_found VALUES(742, 742, 4, 702, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695371510); INSERT INTO lost_and_found VALUES(742, 742, 4, 703, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695371511); INSERT INTO lost_and_found VALUES(742, 742, 4, 704, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695371511); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1694074768, 610, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1694075099, 611, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1694103444, 612, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1694779451, 613, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367309, 614, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367310, 615, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367310, 616, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367311, 617, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367311, 618, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367311, 619, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367312, 620, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367312, 621, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367313, 622, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367313, 623, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367314, 624, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367314, 625, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367912, 626, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367913, 627, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367913, 628, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367914, 629, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367914, 630, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367914, 631, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367915, 632, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367915, 633, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367916, 634, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367916, 635, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367917, 636, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695367917, 637, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368509, 638, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368510, 639, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368510, 640, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368510, 641, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368511, 642, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368511, 643, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368512, 644, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368512, 645, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368513, 646, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368513, 647, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368513, 648, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695368514, 649, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369109, 650, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369109, 651, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369110, 652, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369110, 653, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369111, 654, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369111, 655, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369112, 656, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369112, 657, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369113, 658, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369113, 659, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369113, 660, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369114, 661, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369708, 662, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369709, 663, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369709, 664, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369710, 665, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369710, 666, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369711, 667, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369711, 668, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369712, 669, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369712, 670, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369712, 671, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369713, 672, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695369713, 673, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370308, 674, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370308, 675, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370309, 676, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370309, 677, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370310, 678, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370310, 679, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370310, 680, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370311, 681, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370311, 682, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370312, 683, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370312, 684, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370313, 685, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370907, 686, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370908, 687, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370908, 688, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370908, 689, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370909, 690, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370909, 691, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370910, 692, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370910, 693, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370911, 694, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370911, 695, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370912, 696, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695370912, 697, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371509, 698, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371509, 699, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371510, 700, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371510, 701, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371510, 702, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371511, 703, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371511, 704, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371512, 705, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371512, 706, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371513, 707, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371513, 708, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695371513, 709, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372108, 710, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372108, 711, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372109, 712, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372109, 713, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372110, 714, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372110, 715, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372111, 716, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372111, 717, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372111, 718, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372112, 719, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372112, 720, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372113, 721, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372707, 722, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372708, 723, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372708, 724, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372709, 725, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372709, 726, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372710, 727, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372710, 728, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372710, 729, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372711, 730, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372711, 731, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372712, 732, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695372712, 733, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373309, 734, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373309, 735, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373310, 736, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373311, 737, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373311, 738, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373312, 739, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373312, 740, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373313, 741, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373313, 742, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373314, 743, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373314, 744, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373315, 745, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373908, 746, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373909, 747, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373909, 748, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373909, 749, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373910, 750, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373910, 751, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373911, 752, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373911, 753, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373912, 754, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373912, 755, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373913, 756, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695373913, 757, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374508, 758, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374508, 759, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374508, 760, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374509, 761, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374509, 762, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374510, 763, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374510, 764, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374511, 765, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374511, 766, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374512, 767, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374512, 768, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695374512, 769, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375109, 770, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375109, 771, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375110, 772, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375110, 773, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375111, 774, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375111, 775, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375112, 776, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375112, 777, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375112, 778, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375113, 779, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375113, 780, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375114, 781, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375708, 782, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375709, 783, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375709, 784, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375710, 785, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375710, 786, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375711, 787, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375711, 788, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375711, 789, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375712, 790, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375712, 791, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375713, 792, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695375713, 793, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376308, 794, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376308, 795, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376309, 796, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376309, 797, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376310, 798, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376310, 799, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376310, 800, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376311, 801, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376311, 802, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376312, 803, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376312, 804, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376313, 805, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376907, 806, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376908, 807, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376908, 808, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376909, 809, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376909, 810, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376909, 811, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376910, 812, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376910, 813, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376911, 814, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376911, 815, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376912, 816, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695376912, 817, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377509, 818, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377509, 819, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377510, 820, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377510, 821, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377510, 822, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377511, 823, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377511, 824, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377512, 825, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377512, 826, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377513, 827, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377513, 828, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695377513, 829, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378108, 830, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378108, 831, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378109, 832, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378109, 833, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378110, 834, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378110, 835, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378111, 836, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378111, 837, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378112, 838, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378112, 839, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378112, 840, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378113, 841, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378707, 842, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378708, 843, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378708, 844, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378709, 845, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378709, 846, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378710, 847, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378710, 848, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378711, 849, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378711, 850, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378711, 851, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378712, 852, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695378712, 853, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379309, 854, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379309, 855, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379310, 856, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379310, 857, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379310, 858, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379311, 859, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379311, 860, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379312, 861, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379312, 862, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379313, 863, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379313, 864, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379314, 865, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379908, 866, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379909, 867, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379909, 868, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379909, 869, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379910, 870, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379910, 871, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379911, 872, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379911, 873, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379912, 874, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379912, 875, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379913, 876, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695379913, 877, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380508, 878, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380508, 879, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380508, 880, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380509, 881, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380509, 882, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380510, 883, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380510, 884, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380511, 885, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380511, 886, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380511, 887, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380512, 888, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695380512, 889, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381109, 890, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381109, 891, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381110, 892, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381110, 893, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381111, 894, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381111, 895, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381112, 896, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381112, 897, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381113, 898, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381113, 899, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381113, 900, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381114, 901, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381708, 902, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381709, 903, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381709, 904, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381710, 905, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381710, 906, NULL, NULL); INSERT INTO lost_and_found VALUES(743, 743, 2, NULL, 1695381711, 907, NULL, NULL); INSERT INTO lost_and_found VALUES(744, 744, 4, 705, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695371512); INSERT INTO lost_and_found VALUES(744, 744, 4, 706, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695371512); INSERT INTO lost_and_found VALUES(744, 744, 4, 707, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695371513); INSERT INTO lost_and_found VALUES(744, 744, 4, 708, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695371513); INSERT INTO lost_and_found VALUES(744, 744, 4, 709, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695371513); INSERT INTO lost_and_found VALUES(744, 744, 4, 710, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695372108); INSERT INTO lost_and_found VALUES(744, 744, 4, 711, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695372108); INSERT INTO lost_and_found VALUES(744, 744, 4, 712, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695372109); INSERT INTO lost_and_found VALUES(744, 744, 4, 713, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695372109); INSERT INTO lost_and_found VALUES(744, 744, 4, 714, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695372110); INSERT INTO lost_and_found VALUES(744, 744, 4, 715, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695372110); INSERT INTO lost_and_found VALUES(744, 744, 4, 716, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695372111); INSERT INTO lost_and_found VALUES(744, 744, 4, 717, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695372111); INSERT INTO lost_and_found VALUES(744, 744, 4, 718, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695372111); INSERT INTO lost_and_found VALUES(744, 744, 4, 719, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695372112); INSERT INTO lost_and_found VALUES(744, 744, 4, 720, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695372112); INSERT INTO lost_and_found VALUES(744, 744, 4, 721, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695372113); INSERT INTO lost_and_found VALUES(745, 745, 4, 722, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695372707); INSERT INTO lost_and_found VALUES(745, 745, 4, 723, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695372708); INSERT INTO lost_and_found VALUES(745, 745, 4, 724, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695372708); INSERT INTO lost_and_found VALUES(745, 745, 4, 725, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695372709); INSERT INTO lost_and_found VALUES(745, 745, 4, 726, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695372709); INSERT INTO lost_and_found VALUES(745, 745, 4, 727, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695372710); INSERT INTO lost_and_found VALUES(745, 745, 4, 728, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695372710); INSERT INTO lost_and_found VALUES(745, 745, 4, 729, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695372710); INSERT INTO lost_and_found VALUES(745, 745, 4, 730, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695372711); INSERT INTO lost_and_found VALUES(745, 745, 4, 731, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695372711); INSERT INTO lost_and_found VALUES(745, 745, 4, 732, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695372712); INSERT INTO lost_and_found VALUES(745, 745, 4, 733, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695372712); INSERT INTO lost_and_found VALUES(745, 745, 4, 734, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695373309); INSERT INTO lost_and_found VALUES(745, 745, 4, 735, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695373309); INSERT INTO lost_and_found VALUES(745, 745, 4, 736, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695373310); INSERT INTO lost_and_found VALUES(745, 745, 4, 737, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695373311); INSERT INTO lost_and_found VALUES(745, 745, 4, 738, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695373311); INSERT INTO lost_and_found VALUES(746, 746, 4, 739, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695373312); INSERT INTO lost_and_found VALUES(746, 746, 4, 740, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695373312); INSERT INTO lost_and_found VALUES(746, 746, 4, 741, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695373313); INSERT INTO lost_and_found VALUES(746, 746, 4, 742, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695373313); INSERT INTO lost_and_found VALUES(746, 746, 4, 743, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695373314); INSERT INTO lost_and_found VALUES(746, 746, 4, 744, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695373314); INSERT INTO lost_and_found VALUES(746, 746, 4, 745, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695373315); INSERT INTO lost_and_found VALUES(746, 746, 4, 746, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695373908); INSERT INTO lost_and_found VALUES(746, 746, 4, 747, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695373909); INSERT INTO lost_and_found VALUES(746, 746, 4, 748, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695373909); INSERT INTO lost_and_found VALUES(746, 746, 4, 749, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695373909); INSERT INTO lost_and_found VALUES(746, 746, 4, 750, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695373910); INSERT INTO lost_and_found VALUES(746, 746, 4, 751, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695373910); INSERT INTO lost_and_found VALUES(746, 746, 4, 752, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695373911); INSERT INTO lost_and_found VALUES(746, 746, 4, 753, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695373911); INSERT INTO lost_and_found VALUES(746, 746, 4, 754, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695373912); INSERT INTO lost_and_found VALUES(746, 746, 4, 755, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695373912); INSERT INTO lost_and_found VALUES(747, 747, 4, 756, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695373913); INSERT INTO lost_and_found VALUES(747, 747, 4, 757, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695373913); INSERT INTO lost_and_found VALUES(747, 747, 4, 758, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695374508); INSERT INTO lost_and_found VALUES(747, 747, 4, 759, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695374508); INSERT INTO lost_and_found VALUES(747, 747, 4, 760, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695374508); INSERT INTO lost_and_found VALUES(747, 747, 4, 761, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695374509); INSERT INTO lost_and_found VALUES(747, 747, 4, 762, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695374509); INSERT INTO lost_and_found VALUES(747, 747, 4, 763, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695374510); INSERT INTO lost_and_found VALUES(747, 747, 4, 764, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695374510); INSERT INTO lost_and_found VALUES(747, 747, 4, 765, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695374511); INSERT INTO lost_and_found VALUES(747, 747, 4, 766, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695374511); INSERT INTO lost_and_found VALUES(747, 747, 4, 767, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695374512); INSERT INTO lost_and_found VALUES(747, 747, 4, 768, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695374512); INSERT INTO lost_and_found VALUES(747, 747, 4, 769, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695374512); INSERT INTO lost_and_found VALUES(747, 747, 4, 770, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695375109); INSERT INTO lost_and_found VALUES(747, 747, 4, 771, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695375109); INSERT INTO lost_and_found VALUES(747, 747, 4, 772, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695375110); INSERT INTO lost_and_found VALUES(748, 748, 4, 773, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695375110); INSERT INTO lost_and_found VALUES(748, 748, 4, 774, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695375111); INSERT INTO lost_and_found VALUES(748, 748, 4, 775, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695375111); INSERT INTO lost_and_found VALUES(748, 748, 4, 776, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695375112); INSERT INTO lost_and_found VALUES(748, 748, 4, 777, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695375112); INSERT INTO lost_and_found VALUES(748, 748, 4, 778, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695375112); INSERT INTO lost_and_found VALUES(748, 748, 4, 779, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695375113); INSERT INTO lost_and_found VALUES(748, 748, 4, 780, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695375113); INSERT INTO lost_and_found VALUES(748, 748, 4, 781, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695375114); INSERT INTO lost_and_found VALUES(748, 748, 4, 782, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695375708); INSERT INTO lost_and_found VALUES(748, 748, 4, 783, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695375709); INSERT INTO lost_and_found VALUES(748, 748, 4, 784, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695375709); INSERT INTO lost_and_found VALUES(748, 748, 4, 785, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695375710); INSERT INTO lost_and_found VALUES(748, 748, 4, 786, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695375710); INSERT INTO lost_and_found VALUES(748, 748, 4, 787, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695375711); INSERT INTO lost_and_found VALUES(748, 748, 4, 788, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695375711); INSERT INTO lost_and_found VALUES(748, 748, 4, 789, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695375711); INSERT INTO lost_and_found VALUES(749, 749, 4, 790, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695375712); INSERT INTO lost_and_found VALUES(749, 749, 4, 791, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695375712); INSERT INTO lost_and_found VALUES(749, 749, 4, 792, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695375713); INSERT INTO lost_and_found VALUES(749, 749, 4, 793, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695375713); INSERT INTO lost_and_found VALUES(749, 749, 4, 794, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695376308); INSERT INTO lost_and_found VALUES(749, 749, 4, 795, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695376308); INSERT INTO lost_and_found VALUES(749, 749, 4, 796, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695376309); INSERT INTO lost_and_found VALUES(749, 749, 4, 797, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695376309); INSERT INTO lost_and_found VALUES(749, 749, 4, 798, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695376310); INSERT INTO lost_and_found VALUES(749, 749, 4, 799, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695376310); INSERT INTO lost_and_found VALUES(749, 749, 4, 800, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695376310); INSERT INTO lost_and_found VALUES(749, 749, 4, 801, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695376311); INSERT INTO lost_and_found VALUES(749, 749, 4, 802, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695376311); INSERT INTO lost_and_found VALUES(749, 749, 4, 803, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695376312); INSERT INTO lost_and_found VALUES(749, 749, 4, 804, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695376312); INSERT INTO lost_and_found VALUES(749, 749, 4, 805, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695376313); INSERT INTO lost_and_found VALUES(749, 749, 4, 806, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695376907); INSERT INTO lost_and_found VALUES(750, 750, 4, 807, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695376908); INSERT INTO lost_and_found VALUES(750, 750, 4, 808, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695376908); INSERT INTO lost_and_found VALUES(750, 750, 4, 809, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695376909); INSERT INTO lost_and_found VALUES(750, 750, 4, 810, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695376909); INSERT INTO lost_and_found VALUES(750, 750, 4, 811, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695376909); INSERT INTO lost_and_found VALUES(750, 750, 4, 812, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695376910); INSERT INTO lost_and_found VALUES(750, 750, 4, 813, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695376910); INSERT INTO lost_and_found VALUES(750, 750, 4, 814, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695376911); INSERT INTO lost_and_found VALUES(750, 750, 4, 815, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695376911); INSERT INTO lost_and_found VALUES(750, 750, 4, 816, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695376912); INSERT INTO lost_and_found VALUES(750, 750, 4, 817, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695376912); INSERT INTO lost_and_found VALUES(750, 750, 4, 818, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695377509); INSERT INTO lost_and_found VALUES(750, 750, 4, 819, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695377509); INSERT INTO lost_and_found VALUES(750, 750, 4, 820, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695377510); INSERT INTO lost_and_found VALUES(750, 750, 4, 821, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695377510); INSERT INTO lost_and_found VALUES(750, 750, 4, 822, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695377510); INSERT INTO lost_and_found VALUES(750, 750, 4, 823, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695377511); INSERT INTO lost_and_found VALUES(750, 750, 4, 824, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695377511); INSERT INTO lost_and_found VALUES(751, 751, 4, 825, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695377512); INSERT INTO lost_and_found VALUES(751, 751, 4, 826, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695377512); INSERT INTO lost_and_found VALUES(751, 751, 4, 827, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695377513); INSERT INTO lost_and_found VALUES(751, 751, 4, 828, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695377513); INSERT INTO lost_and_found VALUES(751, 751, 4, 829, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695377513); INSERT INTO lost_and_found VALUES(751, 751, 4, 830, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695378108); INSERT INTO lost_and_found VALUES(751, 751, 4, 831, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695378108); INSERT INTO lost_and_found VALUES(751, 751, 4, 832, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695378109); INSERT INTO lost_and_found VALUES(751, 751, 4, 833, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695378109); INSERT INTO lost_and_found VALUES(751, 751, 4, 834, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695378110); INSERT INTO lost_and_found VALUES(751, 751, 4, 835, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695378110); INSERT INTO lost_and_found VALUES(751, 751, 4, 836, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695378111); INSERT INTO lost_and_found VALUES(751, 751, 4, 837, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695378111); INSERT INTO lost_and_found VALUES(751, 751, 4, 838, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695378112); INSERT INTO lost_and_found VALUES(751, 751, 4, 839, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695378112); INSERT INTO lost_and_found VALUES(751, 751, 4, 840, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695378112); INSERT INTO lost_and_found VALUES(751, 751, 4, 841, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695378113); INSERT INTO lost_and_found VALUES(752, 752, 4, 842, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695378707); INSERT INTO lost_and_found VALUES(752, 752, 4, 843, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695378708); INSERT INTO lost_and_found VALUES(752, 752, 4, 844, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695378708); INSERT INTO lost_and_found VALUES(752, 752, 4, 845, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695378709); INSERT INTO lost_and_found VALUES(752, 752, 4, 846, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695378709); INSERT INTO lost_and_found VALUES(752, 752, 4, 847, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695378710); INSERT INTO lost_and_found VALUES(752, 752, 4, 848, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695378710); INSERT INTO lost_and_found VALUES(752, 752, 4, 849, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695378711); INSERT INTO lost_and_found VALUES(752, 752, 4, 850, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695378711); INSERT INTO lost_and_found VALUES(752, 752, 4, 851, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695378711); INSERT INTO lost_and_found VALUES(752, 752, 4, 852, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695378712); INSERT INTO lost_and_found VALUES(752, 752, 4, 853, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695378712); INSERT INTO lost_and_found VALUES(752, 752, 4, 854, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695379309); INSERT INTO lost_and_found VALUES(752, 752, 4, 855, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695379309); INSERT INTO lost_and_found VALUES(752, 752, 4, 856, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695379310); INSERT INTO lost_and_found VALUES(752, 752, 4, 857, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695379310); INSERT INTO lost_and_found VALUES(752, 752, 4, 858, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695379310); INSERT INTO lost_and_found VALUES(753, 753, 4, 859, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695379311); INSERT INTO lost_and_found VALUES(753, 753, 4, 860, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695379311); INSERT INTO lost_and_found VALUES(753, 753, 4, 861, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695379312); INSERT INTO lost_and_found VALUES(753, 753, 4, 862, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695379312); INSERT INTO lost_and_found VALUES(753, 753, 4, 863, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695379313); INSERT INTO lost_and_found VALUES(753, 753, 4, 864, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695379313); INSERT INTO lost_and_found VALUES(753, 753, 4, 865, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695379314); INSERT INTO lost_and_found VALUES(753, 753, 4, 866, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695379908); INSERT INTO lost_and_found VALUES(753, 753, 4, 867, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695379909); INSERT INTO lost_and_found VALUES(753, 753, 4, 868, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695379909); INSERT INTO lost_and_found VALUES(753, 753, 4, 869, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695379909); INSERT INTO lost_and_found VALUES(753, 753, 4, 870, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695379910); INSERT INTO lost_and_found VALUES(753, 753, 4, 871, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695379910); INSERT INTO lost_and_found VALUES(753, 753, 4, 872, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695379911); INSERT INTO lost_and_found VALUES(753, 753, 4, 873, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695379911); INSERT INTO lost_and_found VALUES(753, 753, 4, 874, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695379912); INSERT INTO lost_and_found VALUES(753, 753, 4, 875, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695379912); INSERT INTO lost_and_found VALUES(754, 754, 4, 876, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695379913); INSERT INTO lost_and_found VALUES(754, 754, 4, 877, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695379913); INSERT INTO lost_and_found VALUES(754, 754, 4, 878, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695380508); INSERT INTO lost_and_found VALUES(754, 754, 4, 879, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695380508); INSERT INTO lost_and_found VALUES(754, 754, 4, 880, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695380508); INSERT INTO lost_and_found VALUES(754, 754, 4, 881, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695380509); INSERT INTO lost_and_found VALUES(754, 754, 4, 882, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695380509); INSERT INTO lost_and_found VALUES(754, 754, 4, 883, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695380510); INSERT INTO lost_and_found VALUES(754, 754, 4, 884, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695380510); INSERT INTO lost_and_found VALUES(754, 754, 4, 885, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695380511); INSERT INTO lost_and_found VALUES(754, 754, 4, 886, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695380511); INSERT INTO lost_and_found VALUES(754, 754, 4, 887, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695380511); INSERT INTO lost_and_found VALUES(754, 754, 4, 888, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695380512); INSERT INTO lost_and_found VALUES(754, 754, 4, 889, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695380512); INSERT INTO lost_and_found VALUES(754, 754, 4, 890, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695381109); INSERT INTO lost_and_found VALUES(754, 754, 4, 891, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695381109); INSERT INTO lost_and_found VALUES(754, 754, 4, 892, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695381110); INSERT INTO lost_and_found VALUES(755, 755, 4, 893, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695381110); INSERT INTO lost_and_found VALUES(755, 755, 4, 894, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695381111); INSERT INTO lost_and_found VALUES(755, 755, 4, 895, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695381111); INSERT INTO lost_and_found VALUES(755, 755, 4, 896, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695381112); INSERT INTO lost_and_found VALUES(755, 755, 4, 897, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695381112); INSERT INTO lost_and_found VALUES(755, 755, 4, 898, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695381113); INSERT INTO lost_and_found VALUES(755, 755, 4, 899, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695381113); INSERT INTO lost_and_found VALUES(755, 755, 4, 900, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695381113); INSERT INTO lost_and_found VALUES(755, 755, 4, 901, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695381114); INSERT INTO lost_and_found VALUES(755, 755, 4, 902, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695381708); INSERT INTO lost_and_found VALUES(755, 755, 4, 903, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695381709); INSERT INTO lost_and_found VALUES(755, 755, 4, 904, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695381709); INSERT INTO lost_and_found VALUES(755, 755, 4, 905, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695381710); INSERT INTO lost_and_found VALUES(755, 755, 4, 906, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695381710); INSERT INTO lost_and_found VALUES(755, 755, 4, 907, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695381711); INSERT INTO lost_and_found VALUES(755, 755, 4, 908, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695381711); INSERT INTO lost_and_found VALUES(755, 755, 4, 909, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695381711); INSERT INTO lost_and_found VALUES(756, 756, 4, 910, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695381712); INSERT INTO lost_and_found VALUES(756, 756, 4, 911, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695381712); INSERT INTO lost_and_found VALUES(756, 756, 4, 912, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695381713); INSERT INTO lost_and_found VALUES(756, 756, 4, 913, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695381713); INSERT INTO lost_and_found VALUES(756, 756, 4, 914, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695382309); INSERT INTO lost_and_found VALUES(756, 756, 4, 915, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695382309); INSERT INTO lost_and_found VALUES(756, 756, 4, 916, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695382310); INSERT INTO lost_and_found VALUES(756, 756, 4, 917, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695382310); INSERT INTO lost_and_found VALUES(756, 756, 4, 918, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695382311); INSERT INTO lost_and_found VALUES(756, 756, 4, 919, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695382311); INSERT INTO lost_and_found VALUES(756, 756, 4, 920, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695382312); INSERT INTO lost_and_found VALUES(756, 756, 4, 921, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695382312); INSERT INTO lost_and_found VALUES(756, 756, 4, 922, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695382312); INSERT INTO lost_and_found VALUES(756, 756, 4, 923, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695382313); INSERT INTO lost_and_found VALUES(756, 756, 4, 924, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695382313); INSERT INTO lost_and_found VALUES(756, 756, 4, 925, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695382314); INSERT INTO lost_and_found VALUES(756, 756, 4, 926, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695382907); INSERT INTO lost_and_found VALUES(757, 757, 4, 927, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695382908); INSERT INTO lost_and_found VALUES(757, 757, 4, 928, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695382908); INSERT INTO lost_and_found VALUES(757, 757, 4, 929, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695382908); INSERT INTO lost_and_found VALUES(757, 757, 4, 930, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695382909); INSERT INTO lost_and_found VALUES(757, 757, 4, 931, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695382909); INSERT INTO lost_and_found VALUES(757, 757, 4, 932, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695382910); INSERT INTO lost_and_found VALUES(757, 757, 4, 933, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695382910); INSERT INTO lost_and_found VALUES(757, 757, 4, 934, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695382911); INSERT INTO lost_and_found VALUES(757, 757, 4, 935, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695382911); INSERT INTO lost_and_found VALUES(757, 757, 4, 936, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695382911); INSERT INTO lost_and_found VALUES(757, 757, 4, 937, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695382912); INSERT INTO lost_and_found VALUES(757, 757, 4, 938, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695383509); INSERT INTO lost_and_found VALUES(757, 757, 4, 939, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695383509); INSERT INTO lost_and_found VALUES(757, 757, 4, 940, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695383509); INSERT INTO lost_and_found VALUES(757, 757, 4, 941, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695383510); INSERT INTO lost_and_found VALUES(757, 757, 4, 942, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695383510); INSERT INTO lost_and_found VALUES(757, 757, 4, 943, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695383511); INSERT INTO lost_and_found VALUES(757, 757, 4, 944, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695383511); INSERT INTO lost_and_found VALUES(758, 758, 4, 945, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695383512); INSERT INTO lost_and_found VALUES(758, 758, 4, 946, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695383512); INSERT INTO lost_and_found VALUES(758, 758, 4, 947, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695383512); INSERT INTO lost_and_found VALUES(758, 758, 4, 948, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695383513); INSERT INTO lost_and_found VALUES(758, 758, 4, 949, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695383513); INSERT INTO lost_and_found VALUES(758, 758, 4, 950, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695384108); INSERT INTO lost_and_found VALUES(758, 758, 4, 951, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695384108); INSERT INTO lost_and_found VALUES(758, 758, 4, 952, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695384109); INSERT INTO lost_and_found VALUES(758, 758, 4, 953, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695384109); INSERT INTO lost_and_found VALUES(758, 758, 4, 954, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695384110); INSERT INTO lost_and_found VALUES(758, 758, 4, 955, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695384110); INSERT INTO lost_and_found VALUES(758, 758, 4, 956, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695384110); INSERT INTO lost_and_found VALUES(758, 758, 4, 957, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695384111); INSERT INTO lost_and_found VALUES(758, 758, 4, 958, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695384111); INSERT INTO lost_and_found VALUES(758, 758, 4, 959, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695384112); INSERT INTO lost_and_found VALUES(758, 758, 4, 960, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695384112); INSERT INTO lost_and_found VALUES(758, 758, 4, 961, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695384113); INSERT INTO lost_and_found VALUES(759, 759, 4, 962, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695384707); INSERT INTO lost_and_found VALUES(759, 759, 4, 963, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695384708); INSERT INTO lost_and_found VALUES(759, 759, 4, 964, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695384708); INSERT INTO lost_and_found VALUES(759, 759, 4, 965, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695384709); INSERT INTO lost_and_found VALUES(759, 759, 4, 966, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695384709); INSERT INTO lost_and_found VALUES(759, 759, 4, 967, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695384710); INSERT INTO lost_and_found VALUES(759, 759, 4, 968, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695384710); INSERT INTO lost_and_found VALUES(759, 759, 4, 969, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695384711); INSERT INTO lost_and_found VALUES(759, 759, 4, 970, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695384711); INSERT INTO lost_and_found VALUES(759, 759, 4, 971, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695384711); INSERT INTO lost_and_found VALUES(759, 759, 4, 972, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695384712); INSERT INTO lost_and_found VALUES(759, 759, 4, 973, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695384712); INSERT INTO lost_and_found VALUES(759, 759, 4, 974, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695385309); INSERT INTO lost_and_found VALUES(759, 759, 4, 975, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695385309); INSERT INTO lost_and_found VALUES(759, 759, 4, 976, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695385310); INSERT INTO lost_and_found VALUES(759, 759, 4, 977, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695385310); INSERT INTO lost_and_found VALUES(759, 759, 4, 978, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695385311); INSERT INTO lost_and_found VALUES(760, 760, 4, 979, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695385311); INSERT INTO lost_and_found VALUES(760, 760, 4, 980, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695385311); INSERT INTO lost_and_found VALUES(760, 760, 4, 981, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695385312); INSERT INTO lost_and_found VALUES(760, 760, 4, 982, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695385312); INSERT INTO lost_and_found VALUES(760, 760, 4, 983, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695385313); INSERT INTO lost_and_found VALUES(760, 760, 4, 984, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695385313); INSERT INTO lost_and_found VALUES(760, 760, 4, 985, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695385314); INSERT INTO lost_and_found VALUES(760, 760, 4, 986, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695385908); INSERT INTO lost_and_found VALUES(760, 760, 4, 987, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695385909); INSERT INTO lost_and_found VALUES(760, 760, 4, 988, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695385909); INSERT INTO lost_and_found VALUES(760, 760, 4, 989, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695385909); INSERT INTO lost_and_found VALUES(760, 760, 4, 990, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695385910); INSERT INTO lost_and_found VALUES(760, 760, 4, 991, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695385910); INSERT INTO lost_and_found VALUES(760, 760, 4, 992, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695385911); INSERT INTO lost_and_found VALUES(760, 760, 4, 993, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695385911); INSERT INTO lost_and_found VALUES(760, 760, 4, 994, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695385912); INSERT INTO lost_and_found VALUES(760, 760, 4, 995, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695385912); INSERT INTO lost_and_found VALUES(761, 761, 4, 996, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695385912); INSERT INTO lost_and_found VALUES(761, 761, 4, 997, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695385913); INSERT INTO lost_and_found VALUES(761, 761, 4, 998, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695386508); INSERT INTO lost_and_found VALUES(761, 761, 4, 999, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695386508); INSERT INTO lost_and_found VALUES(761, 761, 4, 1000, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695386508); INSERT INTO lost_and_found VALUES(761, 761, 4, 1001, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695386509); INSERT INTO lost_and_found VALUES(761, 761, 4, 1002, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695386509); INSERT INTO lost_and_found VALUES(761, 761, 4, 1003, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695386510); INSERT INTO lost_and_found VALUES(761, 761, 4, 1004, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695386510); INSERT INTO lost_and_found VALUES(761, 761, 4, 1005, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695386511); INSERT INTO lost_and_found VALUES(761, 761, 4, 1006, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695386511); INSERT INTO lost_and_found VALUES(761, 761, 4, 1007, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695386512); INSERT INTO lost_and_found VALUES(761, 761, 4, 1008, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695386512); INSERT INTO lost_and_found VALUES(761, 761, 4, 1009, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695386512); INSERT INTO lost_and_found VALUES(761, 761, 4, 1010, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695387109); INSERT INTO lost_and_found VALUES(761, 761, 4, 1011, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695387109); INSERT INTO lost_and_found VALUES(761, 761, 4, 1012, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695387110); INSERT INTO lost_and_found VALUES(762, 762, 4, 1013, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695387110); INSERT INTO lost_and_found VALUES(762, 762, 4, 1014, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695387111); INSERT INTO lost_and_found VALUES(762, 762, 4, 1015, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695387111); INSERT INTO lost_and_found VALUES(762, 762, 4, 1016, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695387112); INSERT INTO lost_and_found VALUES(762, 762, 4, 1017, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695387112); INSERT INTO lost_and_found VALUES(762, 762, 4, 1018, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695387112); INSERT INTO lost_and_found VALUES(762, 762, 4, 1019, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695387113); INSERT INTO lost_and_found VALUES(762, 762, 4, 1020, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695387113); INSERT INTO lost_and_found VALUES(762, 762, 4, 1021, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695387114); INSERT INTO lost_and_found VALUES(762, 762, 4, 1022, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695387708); INSERT INTO lost_and_found VALUES(762, 762, 4, 1023, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695387709); INSERT INTO lost_and_found VALUES(762, 762, 4, 1024, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695387709); INSERT INTO lost_and_found VALUES(762, 762, 4, 1025, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695387710); INSERT INTO lost_and_found VALUES(762, 762, 4, 1026, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695387711); INSERT INTO lost_and_found VALUES(762, 762, 4, 1027, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695387711); INSERT INTO lost_and_found VALUES(762, 762, 4, 1028, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695387712); INSERT INTO lost_and_found VALUES(762, 762, 4, 1029, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695387712); INSERT INTO lost_and_found VALUES(763, 763, 4, 1030, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695387713); INSERT INTO lost_and_found VALUES(763, 763, 4, 1031, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695387713); INSERT INTO lost_and_found VALUES(763, 763, 4, 1032, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695387714); INSERT INTO lost_and_found VALUES(763, 763, 4, 1033, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695387714); INSERT INTO lost_and_found VALUES(763, 763, 4, 1034, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695388308); INSERT INTO lost_and_found VALUES(763, 763, 4, 1035, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695388309); INSERT INTO lost_and_found VALUES(763, 763, 4, 1036, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695388309); INSERT INTO lost_and_found VALUES(763, 763, 4, 1037, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695388310); INSERT INTO lost_and_found VALUES(763, 763, 4, 1038, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695388310); INSERT INTO lost_and_found VALUES(763, 763, 4, 1039, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695388310); INSERT INTO lost_and_found VALUES(763, 763, 4, 1040, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695388311); INSERT INTO lost_and_found VALUES(763, 763, 4, 1041, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695388311); INSERT INTO lost_and_found VALUES(763, 763, 4, 1042, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695388312); INSERT INTO lost_and_found VALUES(763, 763, 4, 1043, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695388312); INSERT INTO lost_and_found VALUES(763, 763, 4, 1044, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695388313); INSERT INTO lost_and_found VALUES(763, 763, 4, 1045, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695388313); INSERT INTO lost_and_found VALUES(763, 763, 4, 1046, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695388907); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695381711, 909, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695381712, 910, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695381712, 911, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695381713, 912, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695381713, 913, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382309, 914, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382309, 915, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382310, 916, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382310, 917, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382311, 918, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382311, 919, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382312, 920, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382312, 921, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382312, 922, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382313, 923, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382313, 924, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382314, 925, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382907, 926, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382908, 927, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382908, 928, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382908, 929, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382909, 930, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382909, 931, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382910, 932, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382910, 933, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382911, 934, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382911, 935, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382911, 936, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695382912, 937, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383509, 938, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383509, 939, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383509, 940, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383510, 941, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383510, 942, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383511, 943, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383511, 944, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383512, 945, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383512, 946, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383512, 947, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383513, 948, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695383513, 949, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384108, 950, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384108, 951, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384109, 952, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384109, 953, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384110, 954, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384110, 955, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384110, 956, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384111, 957, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384111, 958, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384112, 959, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384112, 960, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384113, 961, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384707, 962, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384708, 963, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384708, 964, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384709, 965, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384709, 966, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384710, 967, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384710, 968, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384711, 969, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384711, 970, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384711, 971, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384712, 972, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695384712, 973, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385309, 974, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385309, 975, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385310, 976, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385310, 977, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385311, 978, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385311, 979, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385311, 980, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385312, 981, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385312, 982, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385313, 983, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385313, 984, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385314, 985, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385908, 986, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385909, 987, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385909, 988, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385909, 989, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385910, 990, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385910, 991, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385911, 992, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385911, 993, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385912, 994, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385912, 995, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385912, 996, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695385913, 997, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386508, 998, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386508, 999, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386508, 1000, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386509, 1001, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386509, 1002, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386510, 1003, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386510, 1004, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386511, 1005, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386511, 1006, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386512, 1007, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386512, 1008, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695386512, 1009, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387109, 1010, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387109, 1011, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387110, 1012, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387110, 1013, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387111, 1014, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387111, 1015, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387112, 1016, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387112, 1017, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387112, 1018, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387113, 1019, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387113, 1020, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387114, 1021, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387708, 1022, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387709, 1023, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387709, 1024, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387710, 1025, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387711, 1026, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387711, 1027, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387712, 1028, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387712, 1029, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387713, 1030, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387713, 1031, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387714, 1032, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695387714, 1033, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388308, 1034, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388309, 1035, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388309, 1036, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388310, 1037, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388310, 1038, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388310, 1039, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388311, 1040, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388311, 1041, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388312, 1042, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388312, 1043, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388313, 1044, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388313, 1045, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388907, 1046, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388908, 1047, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388908, 1048, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388908, 1049, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388909, 1050, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388909, 1051, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388910, 1052, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388910, 1053, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388911, 1054, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388911, 1055, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388911, 1056, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695388912, 1057, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389509, 1058, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389509, 1059, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389509, 1060, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389510, 1061, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389510, 1062, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389511, 1063, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389511, 1064, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389512, 1065, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389512, 1066, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389513, 1067, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389513, 1068, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695389513, 1069, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390108, 1070, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390108, 1071, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390109, 1072, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390109, 1073, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390110, 1074, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390110, 1075, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390111, 1076, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390111, 1077, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390112, 1078, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390112, 1079, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390112, 1080, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390113, 1081, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390707, 1082, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390708, 1083, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390708, 1084, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390709, 1085, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390709, 1086, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390709, 1087, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390710, 1088, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390710, 1089, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390711, 1090, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390711, 1091, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390712, 1092, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695390712, 1093, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391309, 1094, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391309, 1095, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391310, 1096, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391310, 1097, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391311, 1098, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391311, 1099, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391312, 1100, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391312, 1101, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391312, 1102, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391313, 1103, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391313, 1104, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391314, 1105, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391908, 1106, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391909, 1107, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391909, 1108, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391909, 1109, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391910, 1110, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391910, 1111, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391911, 1112, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391911, 1113, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391912, 1114, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391912, 1115, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391913, 1116, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695391913, 1117, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392507, 1118, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392508, 1119, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392508, 1120, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392509, 1121, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392509, 1122, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392510, 1123, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392510, 1124, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392510, 1125, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392511, 1126, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392511, 1127, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392512, 1128, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695392512, 1129, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393109, 1130, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393109, 1131, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393110, 1132, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393110, 1133, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393111, 1134, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393111, 1135, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393112, 1136, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393112, 1137, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393113, 1138, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393113, 1139, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393113, 1140, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393114, 1141, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393708, 1142, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393709, 1143, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393709, 1144, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393710, 1145, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393710, 1146, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393710, 1147, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393711, 1148, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393711, 1149, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393712, 1150, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393712, 1151, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393713, 1152, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695393713, 1153, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394308, 1154, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394308, 1155, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394309, 1156, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394309, 1157, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394310, 1158, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394310, 1159, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394310, 1160, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394311, 1161, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394311, 1162, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394312, 1163, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394312, 1164, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394313, 1165, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394907, 1166, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394908, 1167, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394908, 1168, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394908, 1169, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394909, 1170, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394909, 1171, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394910, 1172, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394911, 1173, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394911, 1174, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394912, 1175, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394912, 1176, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695394913, 1177, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395509, 1178, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395509, 1179, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395509, 1180, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395510, 1181, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395510, 1182, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395511, 1183, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395511, 1184, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395512, 1185, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395512, 1186, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395513, 1187, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395513, 1188, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695395513, 1189, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396108, 1190, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396108, 1191, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396109, 1192, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396109, 1193, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396110, 1194, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396110, 1195, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396111, 1196, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396111, 1197, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396111, 1198, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396112, 1199, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396112, 1200, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396113, 1201, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396707, 1202, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396708, 1203, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396708, 1204, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396709, 1205, NULL, NULL); INSERT INTO lost_and_found VALUES(764, 764, 2, NULL, 1695396709, 1206, NULL, NULL); INSERT INTO lost_and_found VALUES(765, 765, 4, 1047, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695388908); INSERT INTO lost_and_found VALUES(765, 765, 4, 1048, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695388908); INSERT INTO lost_and_found VALUES(765, 765, 4, 1049, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695388908); INSERT INTO lost_and_found VALUES(765, 765, 4, 1050, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695388909); INSERT INTO lost_and_found VALUES(765, 765, 4, 1051, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695388909); INSERT INTO lost_and_found VALUES(765, 765, 4, 1052, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695388910); INSERT INTO lost_and_found VALUES(765, 765, 4, 1053, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695388910); INSERT INTO lost_and_found VALUES(765, 765, 4, 1054, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695388911); INSERT INTO lost_and_found VALUES(765, 765, 4, 1055, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695388911); INSERT INTO lost_and_found VALUES(765, 765, 4, 1056, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695388911); INSERT INTO lost_and_found VALUES(765, 765, 4, 1057, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695388912); INSERT INTO lost_and_found VALUES(765, 765, 4, 1058, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695389509); INSERT INTO lost_and_found VALUES(765, 765, 4, 1059, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695389509); INSERT INTO lost_and_found VALUES(765, 765, 4, 1060, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695389509); INSERT INTO lost_and_found VALUES(765, 765, 4, 1061, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695389510); INSERT INTO lost_and_found VALUES(765, 765, 4, 1062, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695389510); INSERT INTO lost_and_found VALUES(765, 765, 4, 1063, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695389511); INSERT INTO lost_and_found VALUES(765, 765, 4, 1064, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695389511); INSERT INTO lost_and_found VALUES(766, 766, 4, 1065, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695389512); INSERT INTO lost_and_found VALUES(766, 766, 4, 1066, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695389512); INSERT INTO lost_and_found VALUES(766, 766, 4, 1067, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695389513); INSERT INTO lost_and_found VALUES(766, 766, 4, 1068, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695389513); INSERT INTO lost_and_found VALUES(766, 766, 4, 1069, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695389513); INSERT INTO lost_and_found VALUES(766, 766, 4, 1070, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695390108); INSERT INTO lost_and_found VALUES(766, 766, 4, 1071, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695390108); INSERT INTO lost_and_found VALUES(766, 766, 4, 1072, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695390109); INSERT INTO lost_and_found VALUES(766, 766, 4, 1073, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695390109); INSERT INTO lost_and_found VALUES(766, 766, 4, 1074, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695390110); INSERT INTO lost_and_found VALUES(766, 766, 4, 1075, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695390110); INSERT INTO lost_and_found VALUES(766, 766, 4, 1076, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695390111); INSERT INTO lost_and_found VALUES(766, 766, 4, 1077, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695390111); INSERT INTO lost_and_found VALUES(766, 766, 4, 1078, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695390112); INSERT INTO lost_and_found VALUES(766, 766, 4, 1079, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695390112); INSERT INTO lost_and_found VALUES(766, 766, 4, 1080, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695390112); INSERT INTO lost_and_found VALUES(766, 766, 4, 1081, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695390113); INSERT INTO lost_and_found VALUES(767, 767, 4, 1082, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695390707); INSERT INTO lost_and_found VALUES(767, 767, 4, 1083, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695390708); INSERT INTO lost_and_found VALUES(767, 767, 4, 1084, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695390708); INSERT INTO lost_and_found VALUES(767, 767, 4, 1085, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695390709); INSERT INTO lost_and_found VALUES(767, 767, 4, 1086, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695390709); INSERT INTO lost_and_found VALUES(767, 767, 4, 1087, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695390709); INSERT INTO lost_and_found VALUES(767, 767, 4, 1088, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695390710); INSERT INTO lost_and_found VALUES(767, 767, 4, 1089, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695390710); INSERT INTO lost_and_found VALUES(767, 767, 4, 1090, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695390711); INSERT INTO lost_and_found VALUES(767, 767, 4, 1091, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695390711); INSERT INTO lost_and_found VALUES(767, 767, 4, 1092, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695390712); INSERT INTO lost_and_found VALUES(767, 767, 4, 1093, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695390712); INSERT INTO lost_and_found VALUES(767, 767, 4, 1094, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695391309); INSERT INTO lost_and_found VALUES(767, 767, 4, 1095, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695391309); INSERT INTO lost_and_found VALUES(767, 767, 4, 1096, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695391310); INSERT INTO lost_and_found VALUES(767, 767, 4, 1097, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695391310); INSERT INTO lost_and_found VALUES(767, 767, 4, 1098, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695391311); INSERT INTO lost_and_found VALUES(768, 768, 4, 1099, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695391311); INSERT INTO lost_and_found VALUES(768, 768, 4, 1100, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695391312); INSERT INTO lost_and_found VALUES(768, 768, 4, 1101, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695391312); INSERT INTO lost_and_found VALUES(768, 768, 4, 1102, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695391312); INSERT INTO lost_and_found VALUES(768, 768, 4, 1103, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695391313); INSERT INTO lost_and_found VALUES(768, 768, 4, 1104, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695391313); INSERT INTO lost_and_found VALUES(768, 768, 4, 1105, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695391314); INSERT INTO lost_and_found VALUES(768, 768, 4, 1106, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695391908); INSERT INTO lost_and_found VALUES(768, 768, 4, 1107, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695391909); INSERT INTO lost_and_found VALUES(768, 768, 4, 1108, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695391909); INSERT INTO lost_and_found VALUES(768, 768, 4, 1109, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695391909); INSERT INTO lost_and_found VALUES(768, 768, 4, 1110, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695391910); INSERT INTO lost_and_found VALUES(768, 768, 4, 1111, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695391910); INSERT INTO lost_and_found VALUES(768, 768, 4, 1112, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695391911); INSERT INTO lost_and_found VALUES(768, 768, 4, 1113, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695391911); INSERT INTO lost_and_found VALUES(768, 768, 4, 1114, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695391912); INSERT INTO lost_and_found VALUES(768, 768, 4, 1115, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695391912); INSERT INTO lost_and_found VALUES(769, 769, 4, 1116, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695391913); INSERT INTO lost_and_found VALUES(769, 769, 4, 1117, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695391913); INSERT INTO lost_and_found VALUES(769, 769, 4, 1118, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695392507); INSERT INTO lost_and_found VALUES(769, 769, 4, 1119, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695392508); INSERT INTO lost_and_found VALUES(769, 769, 4, 1120, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695392508); INSERT INTO lost_and_found VALUES(769, 769, 4, 1121, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695392509); INSERT INTO lost_and_found VALUES(769, 769, 4, 1122, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695392509); INSERT INTO lost_and_found VALUES(769, 769, 4, 1123, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695392510); INSERT INTO lost_and_found VALUES(769, 769, 4, 1124, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695392510); INSERT INTO lost_and_found VALUES(769, 769, 4, 1125, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695392510); INSERT INTO lost_and_found VALUES(769, 769, 4, 1126, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695392511); INSERT INTO lost_and_found VALUES(769, 769, 4, 1127, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695392511); INSERT INTO lost_and_found VALUES(769, 769, 4, 1128, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695392512); INSERT INTO lost_and_found VALUES(769, 769, 4, 1129, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695392512); INSERT INTO lost_and_found VALUES(769, 769, 4, 1130, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695393109); INSERT INTO lost_and_found VALUES(769, 769, 4, 1131, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695393109); INSERT INTO lost_and_found VALUES(769, 769, 4, 1132, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695393110); INSERT INTO lost_and_found VALUES(770, 770, 4, 1133, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695393110); INSERT INTO lost_and_found VALUES(770, 770, 4, 1134, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695393111); INSERT INTO lost_and_found VALUES(770, 770, 4, 1135, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695393111); INSERT INTO lost_and_found VALUES(770, 770, 4, 1136, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695393112); INSERT INTO lost_and_found VALUES(770, 770, 4, 1137, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695393112); INSERT INTO lost_and_found VALUES(770, 770, 4, 1138, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695393113); INSERT INTO lost_and_found VALUES(770, 770, 4, 1139, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695393113); INSERT INTO lost_and_found VALUES(770, 770, 4, 1140, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695393113); INSERT INTO lost_and_found VALUES(770, 770, 4, 1141, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695393114); INSERT INTO lost_and_found VALUES(770, 770, 4, 1142, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695393708); INSERT INTO lost_and_found VALUES(770, 770, 4, 1143, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695393709); INSERT INTO lost_and_found VALUES(770, 770, 4, 1144, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695393709); INSERT INTO lost_and_found VALUES(770, 770, 4, 1145, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695393710); INSERT INTO lost_and_found VALUES(770, 770, 4, 1146, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695393710); INSERT INTO lost_and_found VALUES(770, 770, 4, 1147, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695393710); INSERT INTO lost_and_found VALUES(770, 770, 4, 1148, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695393711); INSERT INTO lost_and_found VALUES(770, 770, 4, 1149, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695393711); INSERT INTO lost_and_found VALUES(771, 771, 4, 1150, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695393712); INSERT INTO lost_and_found VALUES(771, 771, 4, 1151, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695393712); INSERT INTO lost_and_found VALUES(771, 771, 4, 1152, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695393713); INSERT INTO lost_and_found VALUES(771, 771, 4, 1153, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695393713); INSERT INTO lost_and_found VALUES(771, 771, 4, 1154, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695394308); INSERT INTO lost_and_found VALUES(771, 771, 4, 1155, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695394308); INSERT INTO lost_and_found VALUES(771, 771, 4, 1156, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695394309); INSERT INTO lost_and_found VALUES(771, 771, 4, 1157, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695394309); INSERT INTO lost_and_found VALUES(771, 771, 4, 1158, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695394310); INSERT INTO lost_and_found VALUES(771, 771, 4, 1159, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695394310); INSERT INTO lost_and_found VALUES(771, 771, 4, 1160, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695394310); INSERT INTO lost_and_found VALUES(771, 771, 4, 1161, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695394311); INSERT INTO lost_and_found VALUES(771, 771, 4, 1162, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695394311); INSERT INTO lost_and_found VALUES(771, 771, 4, 1163, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695394312); INSERT INTO lost_and_found VALUES(771, 771, 4, 1164, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695394312); INSERT INTO lost_and_found VALUES(771, 771, 4, 1165, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695394313); INSERT INTO lost_and_found VALUES(771, 771, 4, 1166, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695394907); INSERT INTO lost_and_found VALUES(772, 772, 4, 1167, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695394908); INSERT INTO lost_and_found VALUES(772, 772, 4, 1168, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695394908); INSERT INTO lost_and_found VALUES(772, 772, 4, 1169, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695394908); INSERT INTO lost_and_found VALUES(772, 772, 4, 1170, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695394909); INSERT INTO lost_and_found VALUES(772, 772, 4, 1171, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695394909); INSERT INTO lost_and_found VALUES(772, 772, 4, 1172, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695394910); INSERT INTO lost_and_found VALUES(772, 772, 4, 1173, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695394911); INSERT INTO lost_and_found VALUES(772, 772, 4, 1174, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695394911); INSERT INTO lost_and_found VALUES(772, 772, 4, 1175, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695394912); INSERT INTO lost_and_found VALUES(772, 772, 4, 1176, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695394912); INSERT INTO lost_and_found VALUES(772, 772, 4, 1177, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695394913); INSERT INTO lost_and_found VALUES(772, 772, 4, 1178, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695395509); INSERT INTO lost_and_found VALUES(772, 772, 4, 1179, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695395509); INSERT INTO lost_and_found VALUES(772, 772, 4, 1180, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695395509); INSERT INTO lost_and_found VALUES(772, 772, 4, 1181, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695395510); INSERT INTO lost_and_found VALUES(772, 772, 4, 1182, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695395510); INSERT INTO lost_and_found VALUES(772, 772, 4, 1183, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695395511); INSERT INTO lost_and_found VALUES(772, 772, 4, 1184, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695395511); INSERT INTO lost_and_found VALUES(773, 773, 4, 1185, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695395512); INSERT INTO lost_and_found VALUES(773, 773, 4, 1186, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695395512); INSERT INTO lost_and_found VALUES(773, 773, 4, 1187, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695395513); INSERT INTO lost_and_found VALUES(773, 773, 4, 1188, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695395513); INSERT INTO lost_and_found VALUES(773, 773, 4, 1189, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695395513); INSERT INTO lost_and_found VALUES(773, 773, 4, 1190, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695396108); INSERT INTO lost_and_found VALUES(773, 773, 4, 1191, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695396108); INSERT INTO lost_and_found VALUES(773, 773, 4, 1192, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695396109); INSERT INTO lost_and_found VALUES(773, 773, 4, 1193, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695396109); INSERT INTO lost_and_found VALUES(773, 773, 4, 1194, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695396110); INSERT INTO lost_and_found VALUES(773, 773, 4, 1195, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695396110); INSERT INTO lost_and_found VALUES(773, 773, 4, 1196, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695396111); INSERT INTO lost_and_found VALUES(773, 773, 4, 1197, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695396111); INSERT INTO lost_and_found VALUES(773, 773, 4, 1198, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695396111); INSERT INTO lost_and_found VALUES(773, 773, 4, 1199, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695396112); INSERT INTO lost_and_found VALUES(773, 773, 4, 1200, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695396112); INSERT INTO lost_and_found VALUES(773, 773, 4, 1201, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695396113); INSERT INTO lost_and_found VALUES(774, 774, 4, 1202, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695396707); INSERT INTO lost_and_found VALUES(774, 774, 4, 1203, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695396708); INSERT INTO lost_and_found VALUES(774, 774, 4, 1204, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695396708); INSERT INTO lost_and_found VALUES(774, 774, 4, 1205, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695396709); INSERT INTO lost_and_found VALUES(774, 774, 4, 1206, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695396709); INSERT INTO lost_and_found VALUES(774, 774, 4, 1207, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695396710); INSERT INTO lost_and_found VALUES(774, 774, 4, 1208, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695396710); INSERT INTO lost_and_found VALUES(774, 774, 4, 1209, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695396710); INSERT INTO lost_and_found VALUES(774, 774, 4, 1210, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695396711); INSERT INTO lost_and_found VALUES(774, 774, 4, 1211, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695396711); INSERT INTO lost_and_found VALUES(774, 774, 4, 1212, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695396712); INSERT INTO lost_and_found VALUES(774, 774, 4, 1213, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695396712); INSERT INTO lost_and_found VALUES(774, 774, 4, 1214, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695397313); INSERT INTO lost_and_found VALUES(774, 774, 4, 1215, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695397313); INSERT INTO lost_and_found VALUES(774, 774, 4, 1216, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695397314); INSERT INTO lost_and_found VALUES(774, 774, 4, 1217, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695397314); INSERT INTO lost_and_found VALUES(774, 774, 4, 1218, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695397315); INSERT INTO lost_and_found VALUES(775, 775, 4, 1219, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695397315); INSERT INTO lost_and_found VALUES(775, 775, 4, 1220, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695397315); INSERT INTO lost_and_found VALUES(775, 775, 4, 1221, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695397316); INSERT INTO lost_and_found VALUES(775, 775, 4, 1222, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695397316); INSERT INTO lost_and_found VALUES(775, 775, 4, 1223, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695397317); INSERT INTO lost_and_found VALUES(775, 775, 4, 1224, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695397317); INSERT INTO lost_and_found VALUES(775, 775, 4, 1225, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695397318); INSERT INTO lost_and_found VALUES(775, 775, 4, 1226, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695397911); INSERT INTO lost_and_found VALUES(775, 775, 4, 1227, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695397911); INSERT INTO lost_and_found VALUES(775, 775, 4, 1228, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695397912); INSERT INTO lost_and_found VALUES(775, 775, 4, 1229, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695397912); INSERT INTO lost_and_found VALUES(775, 775, 4, 1230, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695397912); INSERT INTO lost_and_found VALUES(775, 775, 4, 1231, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695397913); INSERT INTO lost_and_found VALUES(775, 775, 4, 1232, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695397913); INSERT INTO lost_and_found VALUES(775, 775, 4, 1233, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695397914); INSERT INTO lost_and_found VALUES(775, 775, 4, 1234, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695397914); INSERT INTO lost_and_found VALUES(775, 775, 4, 1235, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695397915); INSERT INTO lost_and_found VALUES(776, 776, 4, 1236, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695397915); INSERT INTO lost_and_found VALUES(776, 776, 4, 1237, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695397916); INSERT INTO lost_and_found VALUES(776, 776, 4, 1238, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695398508); INSERT INTO lost_and_found VALUES(776, 776, 4, 1239, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695398510); INSERT INTO lost_and_found VALUES(776, 776, 4, 1240, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695398510); INSERT INTO lost_and_found VALUES(776, 776, 4, 1241, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695398511); INSERT INTO lost_and_found VALUES(776, 776, 4, 1242, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695398511); INSERT INTO lost_and_found VALUES(776, 776, 4, 1243, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695398511); INSERT INTO lost_and_found VALUES(776, 776, 4, 1244, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695398512); INSERT INTO lost_and_found VALUES(776, 776, 4, 1245, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695398512); INSERT INTO lost_and_found VALUES(776, 776, 4, 1246, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695398513); INSERT INTO lost_and_found VALUES(776, 776, 4, 1247, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695398513); INSERT INTO lost_and_found VALUES(776, 776, 4, 1248, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695398514); INSERT INTO lost_and_found VALUES(776, 776, 4, 1249, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695398514); INSERT INTO lost_and_found VALUES(776, 776, 4, 1250, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695399109); INSERT INTO lost_and_found VALUES(776, 776, 4, 1251, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695399109); INSERT INTO lost_and_found VALUES(776, 776, 4, 1252, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695399110); INSERT INTO lost_and_found VALUES(777, 777, 4, 1253, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695399110); INSERT INTO lost_and_found VALUES(777, 777, 4, 1254, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695399111); INSERT INTO lost_and_found VALUES(777, 777, 4, 1255, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695399111); INSERT INTO lost_and_found VALUES(777, 777, 4, 1256, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695399112); INSERT INTO lost_and_found VALUES(777, 777, 4, 1257, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695399112); INSERT INTO lost_and_found VALUES(777, 777, 4, 1258, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695399112); INSERT INTO lost_and_found VALUES(777, 777, 4, 1259, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695399113); INSERT INTO lost_and_found VALUES(777, 777, 4, 1260, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695399113); INSERT INTO lost_and_found VALUES(777, 777, 4, 1261, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695399114); INSERT INTO lost_and_found VALUES(777, 777, 4, 1262, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695399708); INSERT INTO lost_and_found VALUES(777, 777, 4, 1263, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695399709); INSERT INTO lost_and_found VALUES(777, 777, 4, 1264, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695399709); INSERT INTO lost_and_found VALUES(777, 777, 4, 1265, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695399710); INSERT INTO lost_and_found VALUES(777, 777, 4, 1266, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695399710); INSERT INTO lost_and_found VALUES(777, 777, 4, 1267, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695399711); INSERT INTO lost_and_found VALUES(777, 777, 4, 1268, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695399711); INSERT INTO lost_and_found VALUES(777, 777, 4, 1269, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695399711); INSERT INTO lost_and_found VALUES(778, 778, 4, 1270, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695399712); INSERT INTO lost_and_found VALUES(778, 778, 4, 1271, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695399712); INSERT INTO lost_and_found VALUES(778, 778, 4, 1272, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695399713); INSERT INTO lost_and_found VALUES(778, 778, 4, 1273, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695399713); INSERT INTO lost_and_found VALUES(778, 778, 4, 1274, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695400308); INSERT INTO lost_and_found VALUES(778, 778, 4, 1275, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695400308); INSERT INTO lost_and_found VALUES(778, 778, 4, 1276, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695400309); INSERT INTO lost_and_found VALUES(778, 778, 4, 1277, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695400309); INSERT INTO lost_and_found VALUES(778, 778, 4, 1278, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695400310); INSERT INTO lost_and_found VALUES(778, 778, 4, 1279, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695400310); INSERT INTO lost_and_found VALUES(778, 778, 4, 1280, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695400310); INSERT INTO lost_and_found VALUES(778, 778, 4, 1281, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695400311); INSERT INTO lost_and_found VALUES(778, 778, 4, 1282, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695400311); INSERT INTO lost_and_found VALUES(778, 778, 4, 1283, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695400312); INSERT INTO lost_and_found VALUES(778, 778, 4, 1284, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695400312); INSERT INTO lost_and_found VALUES(778, 778, 4, 1285, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695400313); INSERT INTO lost_and_found VALUES(778, 778, 4, 1286, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695400907); INSERT INTO lost_and_found VALUES(779, 779, 4, 1287, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695400908); INSERT INTO lost_and_found VALUES(779, 779, 4, 1288, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695400908); INSERT INTO lost_and_found VALUES(779, 779, 4, 1289, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695400909); INSERT INTO lost_and_found VALUES(779, 779, 4, 1290, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695400909); INSERT INTO lost_and_found VALUES(779, 779, 4, 1291, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695400909); INSERT INTO lost_and_found VALUES(779, 779, 4, 1292, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695400910); INSERT INTO lost_and_found VALUES(779, 779, 4, 1293, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695400910); INSERT INTO lost_and_found VALUES(779, 779, 4, 1294, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695400911); INSERT INTO lost_and_found VALUES(779, 779, 4, 1295, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695400911); INSERT INTO lost_and_found VALUES(779, 779, 4, 1296, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695400912); INSERT INTO lost_and_found VALUES(779, 779, 4, 1297, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695400912); INSERT INTO lost_and_found VALUES(779, 779, 4, 1298, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695401509); INSERT INTO lost_and_found VALUES(779, 779, 4, 1299, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695401509); INSERT INTO lost_and_found VALUES(779, 779, 4, 1300, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695401509); INSERT INTO lost_and_found VALUES(779, 779, 4, 1301, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695401510); INSERT INTO lost_and_found VALUES(779, 779, 4, 1302, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695401510); INSERT INTO lost_and_found VALUES(779, 779, 4, 1303, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695401511); INSERT INTO lost_and_found VALUES(779, 779, 4, 1304, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695401511); INSERT INTO lost_and_found VALUES(780, 780, 4, 1305, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695401512); INSERT INTO lost_and_found VALUES(780, 780, 4, 1306, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695401512); INSERT INTO lost_and_found VALUES(780, 780, 4, 1307, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695401513); INSERT INTO lost_and_found VALUES(780, 780, 4, 1308, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695401513); INSERT INTO lost_and_found VALUES(780, 780, 4, 1309, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695401514); INSERT INTO lost_and_found VALUES(780, 780, 4, 1310, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695402108); INSERT INTO lost_and_found VALUES(780, 780, 4, 1311, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695402109); INSERT INTO lost_and_found VALUES(780, 780, 4, 1312, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695402110); INSERT INTO lost_and_found VALUES(780, 780, 4, 1313, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695402110); INSERT INTO lost_and_found VALUES(780, 780, 4, 1314, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695402111); INSERT INTO lost_and_found VALUES(780, 780, 4, 1315, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695402112); INSERT INTO lost_and_found VALUES(780, 780, 4, 1316, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695402112); INSERT INTO lost_and_found VALUES(780, 780, 4, 1317, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695402113); INSERT INTO lost_and_found VALUES(780, 780, 4, 1318, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695402114); INSERT INTO lost_and_found VALUES(780, 780, 4, 1319, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695402114); INSERT INTO lost_and_found VALUES(780, 780, 4, 1320, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695402115); INSERT INTO lost_and_found VALUES(780, 780, 4, 1321, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695402116); INSERT INTO lost_and_found VALUES(781, 781, 4, 1322, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695402708); INSERT INTO lost_and_found VALUES(781, 781, 4, 1323, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695402708); INSERT INTO lost_and_found VALUES(781, 781, 4, 1324, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695402709); INSERT INTO lost_and_found VALUES(781, 781, 4, 1325, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695402709); INSERT INTO lost_and_found VALUES(781, 781, 4, 1326, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695402710); INSERT INTO lost_and_found VALUES(781, 781, 4, 1327, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695402710); INSERT INTO lost_and_found VALUES(781, 781, 4, 1328, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695402711); INSERT INTO lost_and_found VALUES(781, 781, 4, 1329, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695402711); INSERT INTO lost_and_found VALUES(781, 781, 4, 1330, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695402712); INSERT INTO lost_and_found VALUES(781, 781, 4, 1331, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695402712); INSERT INTO lost_and_found VALUES(781, 781, 4, 1332, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695402712); INSERT INTO lost_and_found VALUES(781, 781, 4, 1333, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695402713); INSERT INTO lost_and_found VALUES(781, 781, 4, 1334, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695403307); INSERT INTO lost_and_found VALUES(781, 781, 4, 1335, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695403307); INSERT INTO lost_and_found VALUES(781, 781, 4, 1336, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695403307); INSERT INTO lost_and_found VALUES(781, 781, 4, 1337, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695403308); INSERT INTO lost_and_found VALUES(781, 781, 4, 1338, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695403308); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695396710, 1208, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695396710, 1209, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695396711, 1210, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695396711, 1211, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695396712, 1212, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695396712, 1213, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397313, 1214, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397313, 1215, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397314, 1216, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397314, 1217, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397315, 1218, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397315, 1219, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397315, 1220, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397316, 1221, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397316, 1222, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397317, 1223, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397317, 1224, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397318, 1225, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397911, 1226, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397911, 1227, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397912, 1228, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397912, 1229, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397912, 1230, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397913, 1231, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397913, 1232, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397914, 1233, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397914, 1234, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397915, 1235, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397915, 1236, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695397916, 1237, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398508, 1238, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398510, 1239, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398510, 1240, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398511, 1241, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398511, 1242, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398511, 1243, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398512, 1244, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398512, 1245, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398513, 1246, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398513, 1247, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398514, 1248, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695398514, 1249, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399109, 1250, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399109, 1251, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399110, 1252, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399110, 1253, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399111, 1254, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399111, 1255, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399112, 1256, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399112, 1257, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399112, 1258, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399113, 1259, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399113, 1260, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399114, 1261, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399708, 1262, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399709, 1263, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399709, 1264, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399710, 1265, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399710, 1266, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399711, 1267, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399711, 1268, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399711, 1269, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399712, 1270, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399712, 1271, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399713, 1272, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695399713, 1273, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400308, 1274, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400308, 1275, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400309, 1276, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400309, 1277, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400310, 1278, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400310, 1279, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400310, 1280, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400311, 1281, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400311, 1282, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400312, 1283, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400312, 1284, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400313, 1285, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400907, 1286, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400908, 1287, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400908, 1288, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400909, 1289, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400909, 1290, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400909, 1291, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400910, 1292, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400910, 1293, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400911, 1294, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400911, 1295, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400912, 1296, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695400912, 1297, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401509, 1298, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401509, 1299, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401509, 1300, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401510, 1301, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401510, 1302, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401511, 1303, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401511, 1304, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401512, 1305, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401512, 1306, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401513, 1307, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401513, 1308, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695401514, 1309, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402108, 1310, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402109, 1311, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402110, 1312, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402110, 1313, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402111, 1314, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402112, 1315, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402112, 1316, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402113, 1317, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402114, 1318, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402114, 1319, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402115, 1320, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402116, 1321, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402708, 1322, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402708, 1323, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402709, 1324, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402709, 1325, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402710, 1326, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402710, 1327, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402711, 1328, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402711, 1329, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402712, 1330, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402712, 1331, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402712, 1332, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695402713, 1333, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403307, 1334, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403307, 1335, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403307, 1336, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403308, 1337, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403308, 1338, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403309, 1339, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403309, 1340, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403310, 1341, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403310, 1342, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403311, 1343, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403311, 1344, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403311, 1345, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403909, 1346, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403909, 1347, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403910, 1348, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403910, 1349, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403910, 1350, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403911, 1351, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403911, 1352, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403912, 1353, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403912, 1354, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403913, 1355, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403913, 1356, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695403913, 1357, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404508, 1358, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404508, 1359, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404509, 1360, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404509, 1361, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404510, 1362, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404510, 1363, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404511, 1364, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404511, 1365, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404511, 1366, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404512, 1367, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404512, 1368, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695404513, 1369, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405107, 1370, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405108, 1371, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405108, 1372, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405109, 1373, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405109, 1374, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405110, 1375, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405110, 1376, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405110, 1377, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405111, 1378, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405111, 1379, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405112, 1380, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405112, 1381, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405709, 1382, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405709, 1383, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405710, 1384, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405710, 1385, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405711, 1386, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405711, 1387, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405712, 1388, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405713, 1389, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405713, 1390, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405714, 1391, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405715, 1392, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695405715, 1393, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406308, 1394, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406309, 1395, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406309, 1396, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406310, 1397, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406310, 1398, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406310, 1399, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406311, 1400, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406311, 1401, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406312, 1402, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406312, 1403, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406313, 1404, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406313, 1405, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406908, 1406, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406908, 1407, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406908, 1408, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406909, 1409, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406909, 1410, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406910, 1411, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406910, 1412, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406911, 1413, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406911, 1414, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406912, 1415, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406912, 1416, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695406912, 1417, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407509, 1418, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407510, 1419, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407510, 1420, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407510, 1421, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407511, 1422, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407511, 1423, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407512, 1424, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407512, 1425, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407513, 1426, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407513, 1427, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407514, 1428, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695407514, 1429, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408108, 1430, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408109, 1431, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408109, 1432, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408110, 1433, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408110, 1434, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408111, 1435, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408111, 1436, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408111, 1437, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408112, 1438, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408112, 1439, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408113, 1440, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408113, 1441, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408708, 1442, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408708, 1443, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408709, 1444, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408709, 1445, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408710, 1446, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408710, 1447, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408710, 1448, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408711, 1449, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408711, 1450, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408712, 1451, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408712, 1452, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695408713, 1453, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409307, 1454, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409308, 1455, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409308, 1456, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409308, 1457, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409309, 1458, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409309, 1459, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409310, 1460, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409310, 1461, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409311, 1462, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409311, 1463, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409311, 1464, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409312, 1465, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409908, 1466, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409909, 1467, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409909, 1468, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409910, 1469, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409910, 1470, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409911, 1471, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409911, 1472, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409912, 1473, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409912, 1474, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409912, 1475, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409913, 1476, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695409913, 1477, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410508, 1478, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410508, 1479, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410509, 1480, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410509, 1481, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410510, 1482, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410510, 1483, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410511, 1484, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410511, 1485, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410511, 1486, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410512, 1487, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410512, 1488, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695410513, 1489, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411107, 1490, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411108, 1491, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411108, 1492, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411109, 1493, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411109, 1494, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411110, 1495, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411110, 1496, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411110, 1497, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411111, 1498, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411111, 1499, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411112, 1500, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411112, 1501, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411710, 1502, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411711, 1503, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411711, 1504, NULL, NULL); INSERT INTO lost_and_found VALUES(782, 782, 2, NULL, 1695411711, 1505, NULL, NULL); INSERT INTO lost_and_found VALUES(783, 783, 4, 1339, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695403309); INSERT INTO lost_and_found VALUES(783, 783, 4, 1340, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695403309); INSERT INTO lost_and_found VALUES(783, 783, 4, 1341, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695403310); INSERT INTO lost_and_found VALUES(783, 783, 4, 1342, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695403310); INSERT INTO lost_and_found VALUES(783, 783, 4, 1343, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695403311); INSERT INTO lost_and_found VALUES(783, 783, 4, 1344, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695403311); INSERT INTO lost_and_found VALUES(783, 783, 4, 1345, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695403311); INSERT INTO lost_and_found VALUES(783, 783, 4, 1346, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695403909); INSERT INTO lost_and_found VALUES(783, 783, 4, 1347, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695403909); INSERT INTO lost_and_found VALUES(783, 783, 4, 1348, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695403910); INSERT INTO lost_and_found VALUES(783, 783, 4, 1349, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695403910); INSERT INTO lost_and_found VALUES(783, 783, 4, 1350, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695403910); INSERT INTO lost_and_found VALUES(783, 783, 4, 1351, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695403911); INSERT INTO lost_and_found VALUES(783, 783, 4, 1352, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695403911); INSERT INTO lost_and_found VALUES(783, 783, 4, 1353, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695403912); INSERT INTO lost_and_found VALUES(783, 783, 4, 1354, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695403912); INSERT INTO lost_and_found VALUES(783, 783, 4, 1355, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695403913); INSERT INTO lost_and_found VALUES(784, 784, 4, 1356, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695403913); INSERT INTO lost_and_found VALUES(784, 784, 4, 1357, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695403913); INSERT INTO lost_and_found VALUES(784, 784, 4, 1358, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695404508); INSERT INTO lost_and_found VALUES(784, 784, 4, 1359, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695404508); INSERT INTO lost_and_found VALUES(784, 784, 4, 1360, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695404509); INSERT INTO lost_and_found VALUES(784, 784, 4, 1361, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695404509); INSERT INTO lost_and_found VALUES(784, 784, 4, 1362, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695404510); INSERT INTO lost_and_found VALUES(784, 784, 4, 1363, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695404510); INSERT INTO lost_and_found VALUES(784, 784, 4, 1364, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695404511); INSERT INTO lost_and_found VALUES(784, 784, 4, 1365, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695404511); INSERT INTO lost_and_found VALUES(784, 784, 4, 1366, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695404511); INSERT INTO lost_and_found VALUES(784, 784, 4, 1367, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695404512); INSERT INTO lost_and_found VALUES(784, 784, 4, 1368, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695404512); INSERT INTO lost_and_found VALUES(784, 784, 4, 1369, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695404513); INSERT INTO lost_and_found VALUES(784, 784, 4, 1370, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695405107); INSERT INTO lost_and_found VALUES(784, 784, 4, 1371, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695405108); INSERT INTO lost_and_found VALUES(784, 784, 4, 1372, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695405108); INSERT INTO lost_and_found VALUES(785, 785, 4, 1373, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695405109); INSERT INTO lost_and_found VALUES(785, 785, 4, 1374, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695405109); INSERT INTO lost_and_found VALUES(785, 785, 4, 1375, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695405110); INSERT INTO lost_and_found VALUES(785, 785, 4, 1376, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695405110); INSERT INTO lost_and_found VALUES(785, 785, 4, 1377, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695405110); INSERT INTO lost_and_found VALUES(785, 785, 4, 1378, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695405111); INSERT INTO lost_and_found VALUES(785, 785, 4, 1379, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695405111); INSERT INTO lost_and_found VALUES(785, 785, 4, 1380, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695405112); INSERT INTO lost_and_found VALUES(785, 785, 4, 1381, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695405112); INSERT INTO lost_and_found VALUES(785, 785, 4, 1382, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695405709); INSERT INTO lost_and_found VALUES(785, 785, 4, 1383, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695405709); INSERT INTO lost_and_found VALUES(785, 785, 4, 1384, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695405710); INSERT INTO lost_and_found VALUES(785, 785, 4, 1385, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695405710); INSERT INTO lost_and_found VALUES(785, 785, 4, 1386, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695405711); INSERT INTO lost_and_found VALUES(785, 785, 4, 1387, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695405711); INSERT INTO lost_and_found VALUES(785, 785, 4, 1388, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695405712); INSERT INTO lost_and_found VALUES(785, 785, 4, 1389, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695405713); INSERT INTO lost_and_found VALUES(786, 786, 4, 1390, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695405713); INSERT INTO lost_and_found VALUES(786, 786, 4, 1391, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695405714); INSERT INTO lost_and_found VALUES(786, 786, 4, 1392, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695405715); INSERT INTO lost_and_found VALUES(786, 786, 4, 1393, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695405715); INSERT INTO lost_and_found VALUES(786, 786, 4, 1394, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695406308); INSERT INTO lost_and_found VALUES(786, 786, 4, 1395, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695406309); INSERT INTO lost_and_found VALUES(786, 786, 4, 1396, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695406309); INSERT INTO lost_and_found VALUES(786, 786, 4, 1397, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695406310); INSERT INTO lost_and_found VALUES(786, 786, 4, 1398, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695406310); INSERT INTO lost_and_found VALUES(786, 786, 4, 1399, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695406310); INSERT INTO lost_and_found VALUES(786, 786, 4, 1400, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695406311); INSERT INTO lost_and_found VALUES(786, 786, 4, 1401, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695406311); INSERT INTO lost_and_found VALUES(786, 786, 4, 1402, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695406312); INSERT INTO lost_and_found VALUES(786, 786, 4, 1403, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695406312); INSERT INTO lost_and_found VALUES(786, 786, 4, 1404, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695406313); INSERT INTO lost_and_found VALUES(786, 786, 4, 1405, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695406313); INSERT INTO lost_and_found VALUES(786, 786, 4, 1406, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695406908); INSERT INTO lost_and_found VALUES(787, 787, 4, 1407, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695406908); INSERT INTO lost_and_found VALUES(787, 787, 4, 1408, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695406908); INSERT INTO lost_and_found VALUES(787, 787, 4, 1409, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695406909); INSERT INTO lost_and_found VALUES(787, 787, 4, 1410, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695406909); INSERT INTO lost_and_found VALUES(787, 787, 4, 1411, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695406910); INSERT INTO lost_and_found VALUES(787, 787, 4, 1412, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695406910); INSERT INTO lost_and_found VALUES(787, 787, 4, 1413, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695406911); INSERT INTO lost_and_found VALUES(787, 787, 4, 1414, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695406911); INSERT INTO lost_and_found VALUES(787, 787, 4, 1415, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695406912); INSERT INTO lost_and_found VALUES(787, 787, 4, 1416, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695406912); INSERT INTO lost_and_found VALUES(787, 787, 4, 1417, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695406912); INSERT INTO lost_and_found VALUES(787, 787, 4, 1418, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695407509); INSERT INTO lost_and_found VALUES(787, 787, 4, 1419, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695407510); INSERT INTO lost_and_found VALUES(787, 787, 4, 1420, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695407510); INSERT INTO lost_and_found VALUES(787, 787, 4, 1421, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695407510); INSERT INTO lost_and_found VALUES(787, 787, 4, 1422, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695407511); INSERT INTO lost_and_found VALUES(787, 787, 4, 1423, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695407511); INSERT INTO lost_and_found VALUES(787, 787, 4, 1424, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695407512); INSERT INTO lost_and_found VALUES(788, 788, 4, 1425, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695407512); INSERT INTO lost_and_found VALUES(788, 788, 4, 1426, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695407513); INSERT INTO lost_and_found VALUES(788, 788, 4, 1427, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695407513); INSERT INTO lost_and_found VALUES(788, 788, 4, 1428, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695407514); INSERT INTO lost_and_found VALUES(788, 788, 4, 1429, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695407514); INSERT INTO lost_and_found VALUES(788, 788, 4, 1430, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695408108); INSERT INTO lost_and_found VALUES(788, 788, 4, 1431, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695408109); INSERT INTO lost_and_found VALUES(788, 788, 4, 1432, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695408109); INSERT INTO lost_and_found VALUES(788, 788, 4, 1433, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695408110); INSERT INTO lost_and_found VALUES(788, 788, 4, 1434, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695408110); INSERT INTO lost_and_found VALUES(788, 788, 4, 1435, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695408111); INSERT INTO lost_and_found VALUES(788, 788, 4, 1436, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695408111); INSERT INTO lost_and_found VALUES(788, 788, 4, 1437, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695408111); INSERT INTO lost_and_found VALUES(788, 788, 4, 1438, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695408112); INSERT INTO lost_and_found VALUES(788, 788, 4, 1439, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695408112); INSERT INTO lost_and_found VALUES(788, 788, 4, 1440, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695408113); INSERT INTO lost_and_found VALUES(788, 788, 4, 1441, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695408113); INSERT INTO lost_and_found VALUES(789, 789, 4, 1442, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695408708); INSERT INTO lost_and_found VALUES(789, 789, 4, 1443, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695408708); INSERT INTO lost_and_found VALUES(789, 789, 4, 1444, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695408709); INSERT INTO lost_and_found VALUES(789, 789, 4, 1445, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695408709); INSERT INTO lost_and_found VALUES(789, 789, 4, 1446, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695408710); INSERT INTO lost_and_found VALUES(789, 789, 4, 1447, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695408710); INSERT INTO lost_and_found VALUES(789, 789, 4, 1448, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695408710); INSERT INTO lost_and_found VALUES(789, 789, 4, 1449, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695408711); INSERT INTO lost_and_found VALUES(789, 789, 4, 1450, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695408711); INSERT INTO lost_and_found VALUES(789, 789, 4, 1451, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695408712); INSERT INTO lost_and_found VALUES(789, 789, 4, 1452, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695408712); INSERT INTO lost_and_found VALUES(789, 789, 4, 1453, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695408713); INSERT INTO lost_and_found VALUES(789, 789, 4, 1454, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695409307); INSERT INTO lost_and_found VALUES(789, 789, 4, 1455, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695409308); INSERT INTO lost_and_found VALUES(789, 789, 4, 1456, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695409308); INSERT INTO lost_and_found VALUES(789, 789, 4, 1457, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695409308); INSERT INTO lost_and_found VALUES(789, 789, 4, 1458, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695409309); INSERT INTO lost_and_found VALUES(790, 790, 4, 1459, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695409309); INSERT INTO lost_and_found VALUES(790, 790, 4, 1460, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695409310); INSERT INTO lost_and_found VALUES(790, 790, 4, 1461, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695409310); INSERT INTO lost_and_found VALUES(790, 790, 4, 1462, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695409311); INSERT INTO lost_and_found VALUES(790, 790, 4, 1463, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695409311); INSERT INTO lost_and_found VALUES(790, 790, 4, 1464, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695409311); INSERT INTO lost_and_found VALUES(790, 790, 4, 1465, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695409312); INSERT INTO lost_and_found VALUES(790, 790, 4, 1466, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695409908); INSERT INTO lost_and_found VALUES(790, 790, 4, 1467, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695409909); INSERT INTO lost_and_found VALUES(790, 790, 4, 1468, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695409909); INSERT INTO lost_and_found VALUES(790, 790, 4, 1469, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695409910); INSERT INTO lost_and_found VALUES(790, 790, 4, 1470, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695409910); INSERT INTO lost_and_found VALUES(790, 790, 4, 1471, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695409911); INSERT INTO lost_and_found VALUES(790, 790, 4, 1472, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695409911); INSERT INTO lost_and_found VALUES(790, 790, 4, 1473, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695409912); INSERT INTO lost_and_found VALUES(790, 790, 4, 1474, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695409912); INSERT INTO lost_and_found VALUES(790, 790, 4, 1475, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695409912); INSERT INTO lost_and_found VALUES(791, 791, 4, 1476, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695409913); INSERT INTO lost_and_found VALUES(791, 791, 4, 1477, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695409913); INSERT INTO lost_and_found VALUES(791, 791, 4, 1478, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695410508); INSERT INTO lost_and_found VALUES(791, 791, 4, 1479, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695410508); INSERT INTO lost_and_found VALUES(791, 791, 4, 1480, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695410509); INSERT INTO lost_and_found VALUES(791, 791, 4, 1481, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695410509); INSERT INTO lost_and_found VALUES(791, 791, 4, 1482, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695410510); INSERT INTO lost_and_found VALUES(791, 791, 4, 1483, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695410510); INSERT INTO lost_and_found VALUES(791, 791, 4, 1484, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695410511); INSERT INTO lost_and_found VALUES(791, 791, 4, 1485, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695410511); INSERT INTO lost_and_found VALUES(791, 791, 4, 1486, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695410511); INSERT INTO lost_and_found VALUES(791, 791, 4, 1487, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695410512); INSERT INTO lost_and_found VALUES(791, 791, 4, 1488, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695410512); INSERT INTO lost_and_found VALUES(791, 791, 4, 1489, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695410513); INSERT INTO lost_and_found VALUES(791, 791, 4, 1490, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695411107); INSERT INTO lost_and_found VALUES(791, 791, 4, 1491, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695411108); INSERT INTO lost_and_found VALUES(791, 791, 4, 1492, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695411108); INSERT INTO lost_and_found VALUES(792, 792, 4, 1493, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695411109); INSERT INTO lost_and_found VALUES(792, 792, 4, 1494, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695411109); INSERT INTO lost_and_found VALUES(792, 792, 4, 1495, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695411110); INSERT INTO lost_and_found VALUES(792, 792, 4, 1496, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695411110); INSERT INTO lost_and_found VALUES(792, 792, 4, 1497, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695411110); INSERT INTO lost_and_found VALUES(792, 792, 4, 1498, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695411111); INSERT INTO lost_and_found VALUES(792, 792, 4, 1499, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695411111); INSERT INTO lost_and_found VALUES(792, 792, 4, 1500, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695411112); INSERT INTO lost_and_found VALUES(792, 792, 4, 1501, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695411112); INSERT INTO lost_and_found VALUES(792, 792, 4, 1502, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695411710); INSERT INTO lost_and_found VALUES(792, 792, 4, 1503, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695411711); INSERT INTO lost_and_found VALUES(792, 792, 4, 1504, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695411711); INSERT INTO lost_and_found VALUES(792, 792, 4, 1505, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695411711); INSERT INTO lost_and_found VALUES(792, 792, 4, 1506, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695411712); INSERT INTO lost_and_found VALUES(792, 792, 4, 1507, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695411712); INSERT INTO lost_and_found VALUES(792, 792, 4, 1508, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695411713); INSERT INTO lost_and_found VALUES(792, 792, 4, 1509, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695411713); INSERT INTO lost_and_found VALUES(793, 793, 4, 1510, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695411714); INSERT INTO lost_and_found VALUES(793, 793, 4, 1511, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695411714); INSERT INTO lost_and_found VALUES(793, 793, 4, 1512, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695411715); INSERT INTO lost_and_found VALUES(793, 793, 4, 1513, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695411715); INSERT INTO lost_and_found VALUES(793, 793, 4, 1514, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695412308); INSERT INTO lost_and_found VALUES(793, 793, 4, 1515, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695412309); INSERT INTO lost_and_found VALUES(793, 793, 4, 1516, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695412309); INSERT INTO lost_and_found VALUES(793, 793, 4, 1517, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695412309); INSERT INTO lost_and_found VALUES(793, 793, 4, 1518, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695412310); INSERT INTO lost_and_found VALUES(793, 793, 4, 1519, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695412310); INSERT INTO lost_and_found VALUES(793, 793, 4, 1520, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695412311); INSERT INTO lost_and_found VALUES(793, 793, 4, 1521, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695412312); INSERT INTO lost_and_found VALUES(793, 793, 4, 1522, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695412312); INSERT INTO lost_and_found VALUES(793, 793, 4, 1523, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695412313); INSERT INTO lost_and_found VALUES(793, 793, 4, 1524, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695412313); INSERT INTO lost_and_found VALUES(793, 793, 4, 1525, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695412314); INSERT INTO lost_and_found VALUES(793, 793, 4, 1526, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695412907); INSERT INTO lost_and_found VALUES(794, 794, 4, 1527, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695412908); INSERT INTO lost_and_found VALUES(794, 794, 4, 1528, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695412908); INSERT INTO lost_and_found VALUES(794, 794, 4, 1529, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695412909); INSERT INTO lost_and_found VALUES(794, 794, 4, 1530, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695412909); INSERT INTO lost_and_found VALUES(794, 794, 4, 1531, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695412910); INSERT INTO lost_and_found VALUES(794, 794, 4, 1532, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695412910); INSERT INTO lost_and_found VALUES(794, 794, 4, 1533, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695412910); INSERT INTO lost_and_found VALUES(794, 794, 4, 1534, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695412911); INSERT INTO lost_and_found VALUES(794, 794, 4, 1535, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695412911); INSERT INTO lost_and_found VALUES(794, 794, 4, 1536, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695412912); INSERT INTO lost_and_found VALUES(794, 794, 4, 1537, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695412912); INSERT INTO lost_and_found VALUES(794, 794, 4, 1538, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695413509); INSERT INTO lost_and_found VALUES(794, 794, 4, 1539, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695413509); INSERT INTO lost_and_found VALUES(794, 794, 4, 1540, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695413510); INSERT INTO lost_and_found VALUES(794, 794, 4, 1541, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695413510); INSERT INTO lost_and_found VALUES(794, 794, 4, 1542, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695413511); INSERT INTO lost_and_found VALUES(794, 794, 4, 1543, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695413511); INSERT INTO lost_and_found VALUES(794, 794, 4, 1544, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695413512); INSERT INTO lost_and_found VALUES(795, 795, 4, 1545, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695413512); INSERT INTO lost_and_found VALUES(795, 795, 4, 1546, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695413512); INSERT INTO lost_and_found VALUES(795, 795, 4, 1547, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695413513); INSERT INTO lost_and_found VALUES(795, 795, 4, 1548, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695413513); INSERT INTO lost_and_found VALUES(795, 795, 4, 1549, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695413514); INSERT INTO lost_and_found VALUES(795, 795, 4, 1550, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695414108); INSERT INTO lost_and_found VALUES(795, 795, 4, 1551, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695414109); INSERT INTO lost_and_found VALUES(795, 795, 4, 1552, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695414109); INSERT INTO lost_and_found VALUES(795, 795, 4, 1553, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695414110); INSERT INTO lost_and_found VALUES(795, 795, 4, 1554, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695414110); INSERT INTO lost_and_found VALUES(795, 795, 4, 1555, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695414110); INSERT INTO lost_and_found VALUES(795, 795, 4, 1556, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695414111); INSERT INTO lost_and_found VALUES(795, 795, 4, 1557, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695414111); INSERT INTO lost_and_found VALUES(795, 795, 4, 1558, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695414112); INSERT INTO lost_and_found VALUES(795, 795, 4, 1559, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695414112); INSERT INTO lost_and_found VALUES(795, 795, 4, 1560, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695414113); INSERT INTO lost_and_found VALUES(795, 795, 4, 1561, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695414113); INSERT INTO lost_and_found VALUES(796, 796, 4, 1562, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695414708); INSERT INTO lost_and_found VALUES(796, 796, 4, 1563, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695414708); INSERT INTO lost_and_found VALUES(796, 796, 4, 1564, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695414709); INSERT INTO lost_and_found VALUES(796, 796, 4, 1565, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695414709); INSERT INTO lost_and_found VALUES(796, 796, 4, 1566, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695414709); INSERT INTO lost_and_found VALUES(796, 796, 4, 1567, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695414710); INSERT INTO lost_and_found VALUES(796, 796, 4, 1568, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695414710); INSERT INTO lost_and_found VALUES(796, 796, 4, 1569, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695414711); INSERT INTO lost_and_found VALUES(796, 796, 4, 1570, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695414711); INSERT INTO lost_and_found VALUES(796, 796, 4, 1571, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695414712); INSERT INTO lost_and_found VALUES(796, 796, 4, 1572, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695414712); INSERT INTO lost_and_found VALUES(796, 796, 4, 1573, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695414712); INSERT INTO lost_and_found VALUES(796, 796, 4, 1574, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695415307); INSERT INTO lost_and_found VALUES(796, 796, 4, 1575, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695415307); INSERT INTO lost_and_found VALUES(796, 796, 4, 1576, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695415307); INSERT INTO lost_and_found VALUES(796, 796, 4, 1577, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695415308); INSERT INTO lost_and_found VALUES(796, 796, 4, 1578, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695415308); INSERT INTO lost_and_found VALUES(797, 797, 4, 1579, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695415308); INSERT INTO lost_and_found VALUES(797, 797, 4, 1580, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695415309); INSERT INTO lost_and_found VALUES(797, 797, 4, 1581, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695415309); INSERT INTO lost_and_found VALUES(797, 797, 4, 1582, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695415310); INSERT INTO lost_and_found VALUES(797, 797, 4, 1583, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695415310); INSERT INTO lost_and_found VALUES(797, 797, 4, 1584, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695415311); INSERT INTO lost_and_found VALUES(797, 797, 4, 1585, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695415311); INSERT INTO lost_and_found VALUES(797, 797, 4, 1586, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695415909); INSERT INTO lost_and_found VALUES(797, 797, 4, 1587, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695415909); INSERT INTO lost_and_found VALUES(797, 797, 4, 1588, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695415909); INSERT INTO lost_and_found VALUES(797, 797, 4, 1589, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695415910); INSERT INTO lost_and_found VALUES(797, 797, 4, 1590, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695415910); INSERT INTO lost_and_found VALUES(797, 797, 4, 1591, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695415911); INSERT INTO lost_and_found VALUES(797, 797, 4, 1592, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695415911); INSERT INTO lost_and_found VALUES(797, 797, 4, 1593, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695415912); INSERT INTO lost_and_found VALUES(797, 797, 4, 1594, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695415912); INSERT INTO lost_and_found VALUES(797, 797, 4, 1595, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695415913); INSERT INTO lost_and_found VALUES(798, 798, 4, 1596, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695415913); INSERT INTO lost_and_found VALUES(798, 798, 4, 1597, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695415913); INSERT INTO lost_and_found VALUES(798, 798, 4, 1598, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695416508); INSERT INTO lost_and_found VALUES(798, 798, 4, 1599, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695416509); INSERT INTO lost_and_found VALUES(798, 798, 4, 1600, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695416509); INSERT INTO lost_and_found VALUES(798, 798, 4, 1601, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695416510); INSERT INTO lost_and_found VALUES(798, 798, 4, 1602, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695416510); INSERT INTO lost_and_found VALUES(798, 798, 4, 1603, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695416511); INSERT INTO lost_and_found VALUES(798, 798, 4, 1604, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695416511); INSERT INTO lost_and_found VALUES(798, 798, 4, 1605, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695416512); INSERT INTO lost_and_found VALUES(798, 798, 4, 1606, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695416512); INSERT INTO lost_and_found VALUES(798, 798, 4, 1607, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695416513); INSERT INTO lost_and_found VALUES(798, 798, 4, 1608, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695416513); INSERT INTO lost_and_found VALUES(798, 798, 4, 1609, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695416514); INSERT INTO lost_and_found VALUES(798, 798, 4, 1610, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695417107); INSERT INTO lost_and_found VALUES(798, 798, 4, 1611, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695417108); INSERT INTO lost_and_found VALUES(798, 798, 4, 1612, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695417108); INSERT INTO lost_and_found VALUES(799, 799, 4, 1613, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695417109); INSERT INTO lost_and_found VALUES(799, 799, 4, 1614, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695417109); INSERT INTO lost_and_found VALUES(799, 799, 4, 1615, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695417110); INSERT INTO lost_and_found VALUES(799, 799, 4, 1616, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695417110); INSERT INTO lost_and_found VALUES(799, 799, 4, 1617, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695417110); INSERT INTO lost_and_found VALUES(799, 799, 4, 1618, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695417111); INSERT INTO lost_and_found VALUES(799, 799, 4, 1619, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695417111); INSERT INTO lost_and_found VALUES(799, 799, 4, 1620, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695417112); INSERT INTO lost_and_found VALUES(799, 799, 4, 1621, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695417112); INSERT INTO lost_and_found VALUES(799, 799, 4, 1622, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695417709); INSERT INTO lost_and_found VALUES(799, 799, 4, 1623, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695417709); INSERT INTO lost_and_found VALUES(799, 799, 4, 1624, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695417710); INSERT INTO lost_and_found VALUES(799, 799, 4, 1625, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695417710); INSERT INTO lost_and_found VALUES(799, 799, 4, 1626, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695417711); INSERT INTO lost_and_found VALUES(799, 799, 4, 1627, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695417711); INSERT INTO lost_and_found VALUES(799, 799, 4, 1628, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695417711); INSERT INTO lost_and_found VALUES(799, 799, 4, 1629, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695417712); INSERT INTO lost_and_found VALUES(800, 800, 4, 1630, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695417712); INSERT INTO lost_and_found VALUES(800, 800, 4, 1631, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695417713); INSERT INTO lost_and_found VALUES(800, 800, 4, 1632, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695417713); INSERT INTO lost_and_found VALUES(800, 800, 4, 1633, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695417714); INSERT INTO lost_and_found VALUES(800, 800, 4, 1634, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695418308); INSERT INTO lost_and_found VALUES(800, 800, 4, 1635, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695418309); INSERT INTO lost_and_found VALUES(800, 800, 4, 1636, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695418309); INSERT INTO lost_and_found VALUES(800, 800, 4, 1637, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695418309); INSERT INTO lost_and_found VALUES(800, 800, 4, 1638, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695418310); INSERT INTO lost_and_found VALUES(800, 800, 4, 1639, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695418310); INSERT INTO lost_and_found VALUES(800, 800, 4, 1640, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695418311); INSERT INTO lost_and_found VALUES(800, 800, 4, 1641, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695418311); INSERT INTO lost_and_found VALUES(800, 800, 4, 1642, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695418312); INSERT INTO lost_and_found VALUES(800, 800, 4, 1643, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695418312); INSERT INTO lost_and_found VALUES(800, 800, 4, 1644, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695418313); INSERT INTO lost_and_found VALUES(800, 800, 4, 1645, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695418313); INSERT INTO lost_and_found VALUES(800, 800, 4, 1646, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695418908); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695411712, 1507, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695411713, 1508, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695411713, 1509, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695411714, 1510, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695411714, 1511, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695411715, 1512, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695411715, 1513, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412308, 1514, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412309, 1515, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412309, 1516, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412309, 1517, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412310, 1518, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412310, 1519, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412311, 1520, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412312, 1521, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412312, 1522, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412313, 1523, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412313, 1524, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412314, 1525, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412907, 1526, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412908, 1527, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412908, 1528, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412909, 1529, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412909, 1530, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412910, 1531, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412910, 1532, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412910, 1533, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412911, 1534, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412911, 1535, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412912, 1536, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695412912, 1537, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413509, 1538, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413509, 1539, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413510, 1540, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413510, 1541, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413511, 1542, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413511, 1543, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413512, 1544, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413512, 1545, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413512, 1546, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413513, 1547, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413513, 1548, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695413514, 1549, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414108, 1550, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414109, 1551, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414109, 1552, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414110, 1553, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414110, 1554, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414110, 1555, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414111, 1556, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414111, 1557, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414112, 1558, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414112, 1559, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414113, 1560, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414113, 1561, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414708, 1562, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414708, 1563, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414709, 1564, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414709, 1565, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414709, 1566, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414710, 1567, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414710, 1568, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414711, 1569, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414711, 1570, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414712, 1571, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414712, 1572, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695414712, 1573, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415307, 1574, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415307, 1575, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415307, 1576, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415308, 1577, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415308, 1578, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415308, 1579, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415309, 1580, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415309, 1581, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415310, 1582, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415310, 1583, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415311, 1584, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415311, 1585, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415909, 1586, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415909, 1587, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415909, 1588, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415910, 1589, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415910, 1590, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415911, 1591, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415911, 1592, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415912, 1593, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415912, 1594, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415913, 1595, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415913, 1596, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695415913, 1597, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416508, 1598, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416509, 1599, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416509, 1600, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416510, 1601, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416510, 1602, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416511, 1603, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416511, 1604, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416512, 1605, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416512, 1606, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416513, 1607, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416513, 1608, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695416514, 1609, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417107, 1610, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417108, 1611, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417108, 1612, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417109, 1613, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417109, 1614, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417110, 1615, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417110, 1616, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417110, 1617, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417111, 1618, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417111, 1619, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417112, 1620, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417112, 1621, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417709, 1622, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417709, 1623, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417710, 1624, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417710, 1625, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417711, 1626, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417711, 1627, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417711, 1628, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417712, 1629, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417712, 1630, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417713, 1631, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417713, 1632, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695417714, 1633, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418308, 1634, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418309, 1635, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418309, 1636, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418309, 1637, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418310, 1638, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418310, 1639, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418311, 1640, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418311, 1641, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418312, 1642, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418312, 1643, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418313, 1644, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418313, 1645, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418908, 1646, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418908, 1647, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418909, 1648, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418909, 1649, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418909, 1650, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418910, 1651, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418910, 1652, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418911, 1653, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418911, 1654, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418912, 1655, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418912, 1656, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695418912, 1657, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419509, 1658, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419509, 1659, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419510, 1660, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419510, 1661, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419511, 1662, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419511, 1663, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419512, 1664, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419512, 1665, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419513, 1666, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419513, 1667, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419513, 1668, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695419514, 1669, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420109, 1670, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420109, 1671, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420110, 1672, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420110, 1673, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420111, 1674, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420111, 1675, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420112, 1676, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420112, 1677, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420113, 1678, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420113, 1679, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420114, 1680, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420114, 1681, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420708, 1682, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420708, 1683, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420709, 1684, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420709, 1685, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420710, 1686, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420710, 1687, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420710, 1688, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420711, 1689, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420711, 1690, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420712, 1691, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420712, 1692, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695420713, 1693, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421307, 1694, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421308, 1695, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421308, 1696, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421309, 1697, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421309, 1698, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421309, 1699, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421310, 1700, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421310, 1701, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421311, 1702, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421311, 1703, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421312, 1704, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421312, 1705, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421909, 1706, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421909, 1707, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421909, 1708, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421910, 1709, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421910, 1710, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421911, 1711, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421911, 1712, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421912, 1713, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421912, 1714, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421913, 1715, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421913, 1716, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695421913, 1717, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422508, 1718, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422508, 1719, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422509, 1720, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422510, 1721, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422510, 1722, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422511, 1723, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422511, 1724, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422512, 1725, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422512, 1726, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422512, 1727, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422513, 1728, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695422513, 1729, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423107, 1730, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423108, 1731, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423108, 1732, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423109, 1733, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423109, 1734, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423110, 1735, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423110, 1736, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423111, 1737, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423111, 1738, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423111, 1739, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423112, 1740, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423112, 1741, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423709, 1742, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423709, 1743, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423710, 1744, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423710, 1745, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423711, 1746, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423711, 1747, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423712, 1748, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423712, 1749, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423712, 1750, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423713, 1751, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423713, 1752, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695423714, 1753, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424308, 1754, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424309, 1755, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424309, 1756, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424309, 1757, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424310, 1758, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424310, 1759, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424311, 1760, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424311, 1761, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424312, 1762, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424312, 1763, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424313, 1764, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424313, 1765, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424908, 1766, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424908, 1767, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424908, 1768, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424909, 1769, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424909, 1770, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424910, 1771, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424910, 1772, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424911, 1773, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424911, 1774, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424911, 1775, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424912, 1776, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695424912, 1777, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425509, 1778, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425509, 1779, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425510, 1780, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425510, 1781, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425511, 1782, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425511, 1783, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425512, 1784, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425512, 1785, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425513, 1786, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425513, 1787, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425513, 1788, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695425514, 1789, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426108, 1790, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426109, 1791, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426109, 1792, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426110, 1793, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426110, 1794, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426111, 1795, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426111, 1796, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426112, 1797, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426112, 1798, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426112, 1799, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426113, 1800, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426113, 1801, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426712, 1802, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426712, 1803, NULL, NULL); INSERT INTO lost_and_found VALUES(801, 801, 2, NULL, 1695426713, 1804, NULL, NULL); INSERT INTO lost_and_found VALUES(802, 802, 4, 1647, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695418908); INSERT INTO lost_and_found VALUES(802, 802, 4, 1648, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695418909); INSERT INTO lost_and_found VALUES(802, 802, 4, 1649, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695418909); INSERT INTO lost_and_found VALUES(802, 802, 4, 1650, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695418909); INSERT INTO lost_and_found VALUES(802, 802, 4, 1651, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695418910); INSERT INTO lost_and_found VALUES(802, 802, 4, 1652, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695418910); INSERT INTO lost_and_found VALUES(802, 802, 4, 1653, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695418911); INSERT INTO lost_and_found VALUES(802, 802, 4, 1654, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695418911); INSERT INTO lost_and_found VALUES(802, 802, 4, 1655, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695418912); INSERT INTO lost_and_found VALUES(802, 802, 4, 1656, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695418912); INSERT INTO lost_and_found VALUES(802, 802, 4, 1657, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695418912); INSERT INTO lost_and_found VALUES(802, 802, 4, 1658, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695419509); INSERT INTO lost_and_found VALUES(802, 802, 4, 1659, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695419509); INSERT INTO lost_and_found VALUES(802, 802, 4, 1660, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695419510); INSERT INTO lost_and_found VALUES(802, 802, 4, 1661, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695419510); INSERT INTO lost_and_found VALUES(802, 802, 4, 1662, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695419511); INSERT INTO lost_and_found VALUES(802, 802, 4, 1663, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695419511); INSERT INTO lost_and_found VALUES(802, 802, 4, 1664, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695419512); INSERT INTO lost_and_found VALUES(803, 803, 4, 1665, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695419512); INSERT INTO lost_and_found VALUES(803, 803, 4, 1666, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695419513); INSERT INTO lost_and_found VALUES(803, 803, 4, 1667, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695419513); INSERT INTO lost_and_found VALUES(803, 803, 4, 1668, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695419513); INSERT INTO lost_and_found VALUES(803, 803, 4, 1669, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695419514); INSERT INTO lost_and_found VALUES(803, 803, 4, 1670, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695420109); INSERT INTO lost_and_found VALUES(803, 803, 4, 1671, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695420109); INSERT INTO lost_and_found VALUES(803, 803, 4, 1672, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695420110); INSERT INTO lost_and_found VALUES(803, 803, 4, 1673, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695420110); INSERT INTO lost_and_found VALUES(803, 803, 4, 1674, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695420111); INSERT INTO lost_and_found VALUES(803, 803, 4, 1675, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695420111); INSERT INTO lost_and_found VALUES(803, 803, 4, 1676, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695420112); INSERT INTO lost_and_found VALUES(803, 803, 4, 1677, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695420112); INSERT INTO lost_and_found VALUES(803, 803, 4, 1678, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695420113); INSERT INTO lost_and_found VALUES(803, 803, 4, 1679, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695420113); INSERT INTO lost_and_found VALUES(803, 803, 4, 1680, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695420114); INSERT INTO lost_and_found VALUES(803, 803, 4, 1681, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695420114); INSERT INTO lost_and_found VALUES(804, 804, 4, 1682, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695420708); INSERT INTO lost_and_found VALUES(804, 804, 4, 1683, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695420708); INSERT INTO lost_and_found VALUES(804, 804, 4, 1684, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695420709); INSERT INTO lost_and_found VALUES(804, 804, 4, 1685, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695420709); INSERT INTO lost_and_found VALUES(804, 804, 4, 1686, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695420710); INSERT INTO lost_and_found VALUES(804, 804, 4, 1687, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695420710); INSERT INTO lost_and_found VALUES(804, 804, 4, 1688, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695420710); INSERT INTO lost_and_found VALUES(804, 804, 4, 1689, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695420711); INSERT INTO lost_and_found VALUES(804, 804, 4, 1690, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695420711); INSERT INTO lost_and_found VALUES(804, 804, 4, 1691, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695420712); INSERT INTO lost_and_found VALUES(804, 804, 4, 1692, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695420712); INSERT INTO lost_and_found VALUES(804, 804, 4, 1693, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695420713); INSERT INTO lost_and_found VALUES(804, 804, 4, 1694, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695421307); INSERT INTO lost_and_found VALUES(804, 804, 4, 1695, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695421308); INSERT INTO lost_and_found VALUES(804, 804, 4, 1696, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695421308); INSERT INTO lost_and_found VALUES(804, 804, 4, 1697, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695421309); INSERT INTO lost_and_found VALUES(804, 804, 4, 1698, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695421309); INSERT INTO lost_and_found VALUES(805, 805, 4, 1699, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695421309); INSERT INTO lost_and_found VALUES(805, 805, 4, 1700, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695421310); INSERT INTO lost_and_found VALUES(805, 805, 4, 1701, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695421310); INSERT INTO lost_and_found VALUES(805, 805, 4, 1702, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695421311); INSERT INTO lost_and_found VALUES(805, 805, 4, 1703, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695421311); INSERT INTO lost_and_found VALUES(805, 805, 4, 1704, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695421312); INSERT INTO lost_and_found VALUES(805, 805, 4, 1705, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695421312); INSERT INTO lost_and_found VALUES(805, 805, 4, 1706, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695421909); INSERT INTO lost_and_found VALUES(805, 805, 4, 1707, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695421909); INSERT INTO lost_and_found VALUES(805, 805, 4, 1708, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695421909); INSERT INTO lost_and_found VALUES(805, 805, 4, 1709, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695421910); INSERT INTO lost_and_found VALUES(805, 805, 4, 1710, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695421910); INSERT INTO lost_and_found VALUES(805, 805, 4, 1711, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695421911); INSERT INTO lost_and_found VALUES(805, 805, 4, 1712, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695421911); INSERT INTO lost_and_found VALUES(805, 805, 4, 1713, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695421912); INSERT INTO lost_and_found VALUES(805, 805, 4, 1714, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695421912); INSERT INTO lost_and_found VALUES(805, 805, 4, 1715, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695421913); INSERT INTO lost_and_found VALUES(806, 806, 4, 1716, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695421913); INSERT INTO lost_and_found VALUES(806, 806, 4, 1717, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695421913); INSERT INTO lost_and_found VALUES(806, 806, 4, 1718, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695422508); INSERT INTO lost_and_found VALUES(806, 806, 4, 1719, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695422508); INSERT INTO lost_and_found VALUES(806, 806, 4, 1720, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695422509); INSERT INTO lost_and_found VALUES(806, 806, 4, 1721, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695422510); INSERT INTO lost_and_found VALUES(806, 806, 4, 1722, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695422510); INSERT INTO lost_and_found VALUES(806, 806, 4, 1723, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695422511); INSERT INTO lost_and_found VALUES(806, 806, 4, 1724, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695422511); INSERT INTO lost_and_found VALUES(806, 806, 4, 1725, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695422512); INSERT INTO lost_and_found VALUES(806, 806, 4, 1726, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695422512); INSERT INTO lost_and_found VALUES(806, 806, 4, 1727, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695422512); INSERT INTO lost_and_found VALUES(806, 806, 4, 1728, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695422513); INSERT INTO lost_and_found VALUES(806, 806, 4, 1729, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695422513); INSERT INTO lost_and_found VALUES(806, 806, 4, 1730, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695423107); INSERT INTO lost_and_found VALUES(806, 806, 4, 1731, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695423108); INSERT INTO lost_and_found VALUES(806, 806, 4, 1732, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695423108); INSERT INTO lost_and_found VALUES(807, 807, 4, 1733, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695423109); INSERT INTO lost_and_found VALUES(807, 807, 4, 1734, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695423109); INSERT INTO lost_and_found VALUES(807, 807, 4, 1735, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695423110); INSERT INTO lost_and_found VALUES(807, 807, 4, 1736, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695423110); INSERT INTO lost_and_found VALUES(807, 807, 4, 1737, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695423111); INSERT INTO lost_and_found VALUES(807, 807, 4, 1738, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695423111); INSERT INTO lost_and_found VALUES(807, 807, 4, 1739, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695423111); INSERT INTO lost_and_found VALUES(807, 807, 4, 1740, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695423112); INSERT INTO lost_and_found VALUES(807, 807, 4, 1741, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695423112); INSERT INTO lost_and_found VALUES(807, 807, 4, 1742, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695423709); INSERT INTO lost_and_found VALUES(807, 807, 4, 1743, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695423709); INSERT INTO lost_and_found VALUES(807, 807, 4, 1744, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695423710); INSERT INTO lost_and_found VALUES(807, 807, 4, 1745, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695423710); INSERT INTO lost_and_found VALUES(807, 807, 4, 1746, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695423711); INSERT INTO lost_and_found VALUES(807, 807, 4, 1747, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695423711); INSERT INTO lost_and_found VALUES(807, 807, 4, 1748, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695423712); INSERT INTO lost_and_found VALUES(807, 807, 4, 1749, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695423712); INSERT INTO lost_and_found VALUES(808, 808, 4, 1750, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695423712); INSERT INTO lost_and_found VALUES(808, 808, 4, 1751, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695423713); INSERT INTO lost_and_found VALUES(808, 808, 4, 1752, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695423713); INSERT INTO lost_and_found VALUES(808, 808, 4, 1753, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695423714); INSERT INTO lost_and_found VALUES(808, 808, 4, 1754, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695424308); INSERT INTO lost_and_found VALUES(808, 808, 4, 1755, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695424309); INSERT INTO lost_and_found VALUES(808, 808, 4, 1756, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695424309); INSERT INTO lost_and_found VALUES(808, 808, 4, 1757, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695424309); INSERT INTO lost_and_found VALUES(808, 808, 4, 1758, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695424310); INSERT INTO lost_and_found VALUES(808, 808, 4, 1759, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695424310); INSERT INTO lost_and_found VALUES(808, 808, 4, 1760, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695424311); INSERT INTO lost_and_found VALUES(808, 808, 4, 1761, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695424311); INSERT INTO lost_and_found VALUES(808, 808, 4, 1762, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695424312); INSERT INTO lost_and_found VALUES(808, 808, 4, 1763, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695424312); INSERT INTO lost_and_found VALUES(808, 808, 4, 1764, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695424313); INSERT INTO lost_and_found VALUES(808, 808, 4, 1765, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695424313); INSERT INTO lost_and_found VALUES(808, 808, 4, 1766, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695424908); INSERT INTO lost_and_found VALUES(809, 809, 4, 1767, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695424908); INSERT INTO lost_and_found VALUES(809, 809, 4, 1768, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695424908); INSERT INTO lost_and_found VALUES(809, 809, 4, 1769, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695424909); INSERT INTO lost_and_found VALUES(809, 809, 4, 1770, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695424909); INSERT INTO lost_and_found VALUES(809, 809, 4, 1771, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695424910); INSERT INTO lost_and_found VALUES(809, 809, 4, 1772, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695424910); INSERT INTO lost_and_found VALUES(809, 809, 4, 1773, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695424911); INSERT INTO lost_and_found VALUES(809, 809, 4, 1774, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695424911); INSERT INTO lost_and_found VALUES(809, 809, 4, 1775, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695424911); INSERT INTO lost_and_found VALUES(809, 809, 4, 1776, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695424912); INSERT INTO lost_and_found VALUES(809, 809, 4, 1777, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695424912); INSERT INTO lost_and_found VALUES(809, 809, 4, 1778, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695425509); INSERT INTO lost_and_found VALUES(809, 809, 4, 1779, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695425509); INSERT INTO lost_and_found VALUES(809, 809, 4, 1780, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695425510); INSERT INTO lost_and_found VALUES(809, 809, 4, 1781, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695425510); INSERT INTO lost_and_found VALUES(809, 809, 4, 1782, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695425511); INSERT INTO lost_and_found VALUES(809, 809, 4, 1783, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695425511); INSERT INTO lost_and_found VALUES(809, 809, 4, 1784, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695425512); INSERT INTO lost_and_found VALUES(810, 810, 4, 1785, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695425512); INSERT INTO lost_and_found VALUES(810, 810, 4, 1786, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695425513); INSERT INTO lost_and_found VALUES(810, 810, 4, 1787, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695425513); INSERT INTO lost_and_found VALUES(810, 810, 4, 1788, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695425513); INSERT INTO lost_and_found VALUES(810, 810, 4, 1789, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695425514); INSERT INTO lost_and_found VALUES(810, 810, 4, 1790, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695426108); INSERT INTO lost_and_found VALUES(810, 810, 4, 1791, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695426109); INSERT INTO lost_and_found VALUES(810, 810, 4, 1792, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695426109); INSERT INTO lost_and_found VALUES(810, 810, 4, 1793, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695426110); INSERT INTO lost_and_found VALUES(810, 810, 4, 1794, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695426110); INSERT INTO lost_and_found VALUES(810, 810, 4, 1795, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695426111); INSERT INTO lost_and_found VALUES(810, 810, 4, 1796, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695426111); INSERT INTO lost_and_found VALUES(810, 810, 4, 1797, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695426112); INSERT INTO lost_and_found VALUES(810, 810, 4, 1798, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695426112); INSERT INTO lost_and_found VALUES(810, 810, 4, 1799, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695426112); INSERT INTO lost_and_found VALUES(810, 810, 4, 1800, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695426113); INSERT INTO lost_and_found VALUES(810, 810, 4, 1801, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695426113); INSERT INTO lost_and_found VALUES(811, 811, 4, 1802, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695426712); INSERT INTO lost_and_found VALUES(811, 811, 4, 1803, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695426712); INSERT INTO lost_and_found VALUES(811, 811, 4, 1804, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695426713); INSERT INTO lost_and_found VALUES(811, 811, 4, 1805, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695426713); INSERT INTO lost_and_found VALUES(811, 811, 4, 1806, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695426714); INSERT INTO lost_and_found VALUES(811, 811, 4, 1807, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695426714); INSERT INTO lost_and_found VALUES(811, 811, 4, 1808, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695426715); INSERT INTO lost_and_found VALUES(811, 811, 4, 1809, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695426715); INSERT INTO lost_and_found VALUES(811, 811, 4, 1810, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695426715); INSERT INTO lost_and_found VALUES(811, 811, 4, 1811, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695426716); INSERT INTO lost_and_found VALUES(811, 811, 4, 1812, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695426716); INSERT INTO lost_and_found VALUES(811, 811, 4, 1813, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695426717); INSERT INTO lost_and_found VALUES(811, 811, 4, 1814, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695427311); INSERT INTO lost_and_found VALUES(811, 811, 4, 1815, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695427311); INSERT INTO lost_and_found VALUES(811, 811, 4, 1816, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695427312); INSERT INTO lost_and_found VALUES(811, 811, 4, 1817, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695427312); INSERT INTO lost_and_found VALUES(811, 811, 4, 1818, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695427313); INSERT INTO lost_and_found VALUES(812, 812, 4, 1819, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695427313); INSERT INTO lost_and_found VALUES(812, 812, 4, 1820, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695427313); INSERT INTO lost_and_found VALUES(812, 812, 4, 1821, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695427314); INSERT INTO lost_and_found VALUES(812, 812, 4, 1822, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695427314); INSERT INTO lost_and_found VALUES(812, 812, 4, 1823, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695427315); INSERT INTO lost_and_found VALUES(812, 812, 4, 1824, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695427315); INSERT INTO lost_and_found VALUES(812, 812, 4, 1825, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695427316); INSERT INTO lost_and_found VALUES(812, 812, 4, 1826, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695427909); INSERT INTO lost_and_found VALUES(812, 812, 4, 1827, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695427909); INSERT INTO lost_and_found VALUES(812, 812, 4, 1828, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695427909); INSERT INTO lost_and_found VALUES(812, 812, 4, 1829, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695427910); INSERT INTO lost_and_found VALUES(812, 812, 4, 1830, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695427910); INSERT INTO lost_and_found VALUES(812, 812, 4, 1831, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695427911); INSERT INTO lost_and_found VALUES(812, 812, 4, 1832, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695427911); INSERT INTO lost_and_found VALUES(812, 812, 4, 1833, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695427912); INSERT INTO lost_and_found VALUES(812, 812, 4, 1834, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695427912); INSERT INTO lost_and_found VALUES(812, 812, 4, 1835, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695427913); INSERT INTO lost_and_found VALUES(813, 813, 4, 1836, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695427913); INSERT INTO lost_and_found VALUES(813, 813, 4, 1837, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695427913); INSERT INTO lost_and_found VALUES(813, 813, 4, 1838, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695428508); INSERT INTO lost_and_found VALUES(813, 813, 4, 1839, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695428508); INSERT INTO lost_and_found VALUES(813, 813, 4, 1840, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695428509); INSERT INTO lost_and_found VALUES(813, 813, 4, 1841, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695428509); INSERT INTO lost_and_found VALUES(813, 813, 4, 1842, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695428510); INSERT INTO lost_and_found VALUES(813, 813, 4, 1843, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695428510); INSERT INTO lost_and_found VALUES(813, 813, 4, 1844, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695428511); INSERT INTO lost_and_found VALUES(813, 813, 4, 1845, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695428511); INSERT INTO lost_and_found VALUES(813, 813, 4, 1846, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695428511); INSERT INTO lost_and_found VALUES(813, 813, 4, 1847, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695428512); INSERT INTO lost_and_found VALUES(813, 813, 4, 1848, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695428512); INSERT INTO lost_and_found VALUES(813, 813, 4, 1849, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695428513); INSERT INTO lost_and_found VALUES(813, 813, 4, 1850, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695429107); INSERT INTO lost_and_found VALUES(813, 813, 4, 1851, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695429108); INSERT INTO lost_and_found VALUES(813, 813, 4, 1852, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695429108); INSERT INTO lost_and_found VALUES(814, 814, 4, 1853, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695429109); INSERT INTO lost_and_found VALUES(814, 814, 4, 1854, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695429109); INSERT INTO lost_and_found VALUES(814, 814, 4, 1855, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695429110); INSERT INTO lost_and_found VALUES(814, 814, 4, 1856, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695429110); INSERT INTO lost_and_found VALUES(814, 814, 4, 1857, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695429110); INSERT INTO lost_and_found VALUES(814, 814, 4, 1858, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695429111); INSERT INTO lost_and_found VALUES(814, 814, 4, 1859, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695429111); INSERT INTO lost_and_found VALUES(814, 814, 4, 1860, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695429112); INSERT INTO lost_and_found VALUES(814, 814, 4, 1861, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695429112); INSERT INTO lost_and_found VALUES(814, 814, 4, 1862, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695429709); INSERT INTO lost_and_found VALUES(814, 814, 4, 1863, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695429709); INSERT INTO lost_and_found VALUES(814, 814, 4, 1864, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695429710); INSERT INTO lost_and_found VALUES(814, 814, 4, 1865, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695429711); INSERT INTO lost_and_found VALUES(814, 814, 4, 1866, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695429711); INSERT INTO lost_and_found VALUES(814, 814, 4, 1867, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695429712); INSERT INTO lost_and_found VALUES(814, 814, 4, 1868, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695429713); INSERT INTO lost_and_found VALUES(814, 814, 4, 1869, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695429714); INSERT INTO lost_and_found VALUES(815, 815, 4, 1870, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695429714); INSERT INTO lost_and_found VALUES(815, 815, 4, 1871, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695429715); INSERT INTO lost_and_found VALUES(815, 815, 4, 1872, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695429715); INSERT INTO lost_and_found VALUES(815, 815, 4, 1873, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695429716); INSERT INTO lost_and_found VALUES(815, 815, 4, 1874, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695430308); INSERT INTO lost_and_found VALUES(815, 815, 4, 1875, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695430309); INSERT INTO lost_and_found VALUES(815, 815, 4, 1876, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695430309); INSERT INTO lost_and_found VALUES(815, 815, 4, 1877, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695430310); INSERT INTO lost_and_found VALUES(815, 815, 4, 1878, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695430310); INSERT INTO lost_and_found VALUES(815, 815, 4, 1879, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695430310); INSERT INTO lost_and_found VALUES(815, 815, 4, 1880, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695430311); INSERT INTO lost_and_found VALUES(815, 815, 4, 1881, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695430311); INSERT INTO lost_and_found VALUES(815, 815, 4, 1882, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695430312); INSERT INTO lost_and_found VALUES(815, 815, 4, 1883, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695430312); INSERT INTO lost_and_found VALUES(815, 815, 4, 1884, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695430313); INSERT INTO lost_and_found VALUES(815, 815, 4, 1885, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695430313); INSERT INTO lost_and_found VALUES(815, 815, 4, 1886, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695430908); INSERT INTO lost_and_found VALUES(816, 816, 4, 1887, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695430908); INSERT INTO lost_and_found VALUES(816, 816, 4, 1888, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695430909); INSERT INTO lost_and_found VALUES(816, 816, 4, 1889, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695430909); INSERT INTO lost_and_found VALUES(816, 816, 4, 1890, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695430910); INSERT INTO lost_and_found VALUES(816, 816, 4, 1891, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695430910); INSERT INTO lost_and_found VALUES(816, 816, 4, 1892, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695430911); INSERT INTO lost_and_found VALUES(816, 816, 4, 1893, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695430912); INSERT INTO lost_and_found VALUES(816, 816, 4, 1894, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695430912); INSERT INTO lost_and_found VALUES(816, 816, 4, 1895, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695430913); INSERT INTO lost_and_found VALUES(816, 816, 4, 1896, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695430913); INSERT INTO lost_and_found VALUES(816, 816, 4, 1897, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695430914); INSERT INTO lost_and_found VALUES(816, 816, 4, 1898, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695431509); INSERT INTO lost_and_found VALUES(816, 816, 4, 1899, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695431509); INSERT INTO lost_and_found VALUES(816, 816, 4, 1900, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695431510); INSERT INTO lost_and_found VALUES(816, 816, 4, 1901, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695431510); INSERT INTO lost_and_found VALUES(816, 816, 4, 1902, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695431511); INSERT INTO lost_and_found VALUES(816, 816, 4, 1903, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695431511); INSERT INTO lost_and_found VALUES(816, 816, 4, 1904, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695431512); INSERT INTO lost_and_found VALUES(817, 817, 4, 1905, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695431512); INSERT INTO lost_and_found VALUES(817, 817, 4, 1906, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695431513); INSERT INTO lost_and_found VALUES(817, 817, 4, 1907, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695431513); INSERT INTO lost_and_found VALUES(817, 817, 4, 1908, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695431513); INSERT INTO lost_and_found VALUES(817, 817, 4, 1909, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695431514); INSERT INTO lost_and_found VALUES(817, 817, 4, 1910, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695432108); INSERT INTO lost_and_found VALUES(817, 817, 4, 1911, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695432109); INSERT INTO lost_and_found VALUES(817, 817, 4, 1912, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695432109); INSERT INTO lost_and_found VALUES(817, 817, 4, 1913, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695432110); INSERT INTO lost_and_found VALUES(817, 817, 4, 1914, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695432110); INSERT INTO lost_and_found VALUES(817, 817, 4, 1915, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695432111); INSERT INTO lost_and_found VALUES(817, 817, 4, 1916, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695432111); INSERT INTO lost_and_found VALUES(817, 817, 4, 1917, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695432112); INSERT INTO lost_and_found VALUES(817, 817, 4, 1918, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695432112); INSERT INTO lost_and_found VALUES(817, 817, 4, 1919, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695432113); INSERT INTO lost_and_found VALUES(817, 817, 4, 1920, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695432113); INSERT INTO lost_and_found VALUES(817, 817, 4, 1921, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695432113); INSERT INTO lost_and_found VALUES(818, 818, 4, 1922, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695432708); INSERT INTO lost_and_found VALUES(818, 818, 4, 1923, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695432708); INSERT INTO lost_and_found VALUES(818, 818, 4, 1924, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695432709); INSERT INTO lost_and_found VALUES(818, 818, 4, 1925, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695432709); INSERT INTO lost_and_found VALUES(818, 818, 4, 1926, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695432710); INSERT INTO lost_and_found VALUES(818, 818, 4, 1927, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695432710); INSERT INTO lost_and_found VALUES(818, 818, 4, 1928, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695432710); INSERT INTO lost_and_found VALUES(818, 818, 4, 1929, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695432711); INSERT INTO lost_and_found VALUES(818, 818, 4, 1930, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695432711); INSERT INTO lost_and_found VALUES(818, 818, 4, 1931, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695432712); INSERT INTO lost_and_found VALUES(818, 818, 4, 1932, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695432712); INSERT INTO lost_and_found VALUES(818, 818, 4, 1933, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695432713); INSERT INTO lost_and_found VALUES(818, 818, 4, 1934, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695433307); INSERT INTO lost_and_found VALUES(818, 818, 4, 1935, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695433308); INSERT INTO lost_and_found VALUES(818, 818, 4, 1936, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695433308); INSERT INTO lost_and_found VALUES(818, 818, 4, 1937, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695433308); INSERT INTO lost_and_found VALUES(818, 818, 4, 1938, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695433309); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426714, 1806, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426714, 1807, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426715, 1808, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426715, 1809, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426715, 1810, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426716, 1811, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426716, 1812, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695426717, 1813, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427311, 1814, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427311, 1815, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427312, 1816, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427312, 1817, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427313, 1818, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427313, 1819, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427313, 1820, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427314, 1821, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427314, 1822, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427315, 1823, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427315, 1824, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427316, 1825, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427909, 1826, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427909, 1827, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427909, 1828, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427910, 1829, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427910, 1830, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427911, 1831, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427911, 1832, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427912, 1833, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427912, 1834, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427913, 1835, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427913, 1836, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695427913, 1837, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428508, 1838, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428508, 1839, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428509, 1840, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428509, 1841, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428510, 1842, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428510, 1843, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428511, 1844, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428511, 1845, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428511, 1846, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428512, 1847, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428512, 1848, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695428513, 1849, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429107, 1850, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429108, 1851, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429108, 1852, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429109, 1853, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429109, 1854, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429110, 1855, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429110, 1856, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429110, 1857, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429111, 1858, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429111, 1859, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429112, 1860, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429112, 1861, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429709, 1862, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429709, 1863, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429710, 1864, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429711, 1865, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429711, 1866, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429712, 1867, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429713, 1868, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429714, 1869, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429714, 1870, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429715, 1871, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429715, 1872, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695429716, 1873, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430308, 1874, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430309, 1875, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430309, 1876, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430310, 1877, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430310, 1878, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430310, 1879, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430311, 1880, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430311, 1881, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430312, 1882, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430312, 1883, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430313, 1884, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430313, 1885, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430908, 1886, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430908, 1887, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430909, 1888, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430909, 1889, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430910, 1890, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430910, 1891, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430911, 1892, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430912, 1893, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430912, 1894, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430913, 1895, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430913, 1896, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695430914, 1897, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431509, 1898, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431509, 1899, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431510, 1900, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431510, 1901, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431511, 1902, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431511, 1903, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431512, 1904, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431512, 1905, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431513, 1906, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431513, 1907, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431513, 1908, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695431514, 1909, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432108, 1910, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432109, 1911, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432109, 1912, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432110, 1913, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432110, 1914, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432111, 1915, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432111, 1916, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432112, 1917, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432112, 1918, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432113, 1919, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432113, 1920, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432113, 1921, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432708, 1922, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432708, 1923, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432709, 1924, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432709, 1925, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432710, 1926, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432710, 1927, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432710, 1928, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432711, 1929, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432711, 1930, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432712, 1931, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432712, 1932, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695432713, 1933, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433307, 1934, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433308, 1935, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433308, 1936, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433308, 1937, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433309, 1938, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433309, 1939, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433310, 1940, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433310, 1941, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433311, 1942, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433311, 1943, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433312, 1944, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433312, 1945, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433909, 1946, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433909, 1947, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433910, 1948, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433910, 1949, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433910, 1950, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433911, 1951, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433911, 1952, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433912, 1953, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433912, 1954, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433913, 1955, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433913, 1956, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695433913, 1957, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434508, 1958, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434508, 1959, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434509, 1960, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434509, 1961, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434510, 1962, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434510, 1963, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434511, 1964, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434511, 1965, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434512, 1966, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434512, 1967, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434512, 1968, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695434513, 1969, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435107, 1970, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435108, 1971, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435108, 1972, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435109, 1973, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435109, 1974, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435110, 1975, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435110, 1976, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435111, 1977, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435111, 1978, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435112, 1979, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435112, 1980, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435112, 1981, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435709, 1982, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435709, 1983, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435710, 1984, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435710, 1985, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435711, 1986, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435711, 1987, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435711, 1988, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435712, 1989, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435712, 1990, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435713, 1991, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435713, 1992, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695435714, 1993, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436308, 1994, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436309, 1995, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436309, 1996, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436310, 1997, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436310, 1998, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436310, 1999, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436311, 2000, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436311, 2001, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436312, 2002, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436312, 2003, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436313, 2004, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436313, 2005, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436908, 2006, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436908, 2007, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436909, 2008, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436909, 2009, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436909, 2010, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436910, 2011, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436910, 2012, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436911, 2013, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436911, 2014, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436912, 2015, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436912, 2016, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695436913, 2017, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437509, 2018, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437509, 2019, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437510, 2020, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437510, 2021, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437511, 2022, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437511, 2023, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437512, 2024, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437512, 2025, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437513, 2026, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437513, 2027, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437513, 2028, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695437514, 2029, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438109, 2030, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438109, 2031, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438109, 2032, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438110, 2033, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438110, 2034, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438111, 2035, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438111, 2036, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438112, 2037, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438112, 2038, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438112, 2039, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438113, 2040, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438113, 2041, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438708, 2042, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438708, 2043, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438709, 2044, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438709, 2045, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438710, 2046, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438710, 2047, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438711, 2048, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438711, 2049, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438711, 2050, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438712, 2051, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438712, 2052, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695438713, 2053, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439307, 2054, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439308, 2055, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439308, 2056, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439309, 2057, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439309, 2058, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439310, 2059, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439310, 2060, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439310, 2061, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439311, 2062, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439311, 2063, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439312, 2064, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439312, 2065, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439909, 2066, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439909, 2067, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439909, 2068, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439910, 2069, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439910, 2070, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439911, 2071, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439911, 2072, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439912, 2073, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439912, 2074, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439913, 2075, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439913, 2076, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695439913, 2077, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440508, 2078, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440509, 2079, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440509, 2080, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440509, 2081, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440510, 2082, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440510, 2083, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440511, 2084, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440511, 2085, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440512, 2086, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440512, 2087, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440513, 2088, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695440513, 2089, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441109, 2090, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441109, 2091, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441110, 2092, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441110, 2093, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441110, 2094, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441111, 2095, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441111, 2096, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441112, 2097, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441112, 2098, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441113, 2099, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441113, 2100, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441114, 2101, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441709, 2102, NULL, NULL); INSERT INTO lost_and_found VALUES(819, 819, 2, NULL, 1695441709, 2103, NULL, NULL); INSERT INTO lost_and_found VALUES(820, 820, 4, 1939, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695433309); INSERT INTO lost_and_found VALUES(820, 820, 4, 1940, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695433310); INSERT INTO lost_and_found VALUES(820, 820, 4, 1941, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695433310); INSERT INTO lost_and_found VALUES(820, 820, 4, 1942, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695433311); INSERT INTO lost_and_found VALUES(820, 820, 4, 1943, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695433311); INSERT INTO lost_and_found VALUES(820, 820, 4, 1944, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695433312); INSERT INTO lost_and_found VALUES(820, 820, 4, 1945, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695433312); INSERT INTO lost_and_found VALUES(820, 820, 4, 1946, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695433909); INSERT INTO lost_and_found VALUES(820, 820, 4, 1947, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695433909); INSERT INTO lost_and_found VALUES(820, 820, 4, 1948, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695433910); INSERT INTO lost_and_found VALUES(820, 820, 4, 1949, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695433910); INSERT INTO lost_and_found VALUES(820, 820, 4, 1950, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695433910); INSERT INTO lost_and_found VALUES(820, 820, 4, 1951, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695433911); INSERT INTO lost_and_found VALUES(820, 820, 4, 1952, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695433911); INSERT INTO lost_and_found VALUES(820, 820, 4, 1953, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695433912); INSERT INTO lost_and_found VALUES(820, 820, 4, 1954, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695433912); INSERT INTO lost_and_found VALUES(820, 820, 4, 1955, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695433913); INSERT INTO lost_and_found VALUES(821, 821, 4, 1956, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695433913); INSERT INTO lost_and_found VALUES(821, 821, 4, 1957, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695433913); INSERT INTO lost_and_found VALUES(821, 821, 4, 1958, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695434508); INSERT INTO lost_and_found VALUES(821, 821, 4, 1959, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695434508); INSERT INTO lost_and_found VALUES(821, 821, 4, 1960, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695434509); INSERT INTO lost_and_found VALUES(821, 821, 4, 1961, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695434509); INSERT INTO lost_and_found VALUES(821, 821, 4, 1962, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695434510); INSERT INTO lost_and_found VALUES(821, 821, 4, 1963, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695434510); INSERT INTO lost_and_found VALUES(821, 821, 4, 1964, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695434511); INSERT INTO lost_and_found VALUES(821, 821, 4, 1965, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695434511); INSERT INTO lost_and_found VALUES(821, 821, 4, 1966, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695434512); INSERT INTO lost_and_found VALUES(821, 821, 4, 1967, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695434512); INSERT INTO lost_and_found VALUES(821, 821, 4, 1968, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695434512); INSERT INTO lost_and_found VALUES(821, 821, 4, 1969, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695434513); INSERT INTO lost_and_found VALUES(821, 821, 4, 1970, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695435107); INSERT INTO lost_and_found VALUES(821, 821, 4, 1971, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695435108); INSERT INTO lost_and_found VALUES(821, 821, 4, 1972, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695435108); INSERT INTO lost_and_found VALUES(822, 822, 4, 1973, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695435109); INSERT INTO lost_and_found VALUES(822, 822, 4, 1974, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695435109); INSERT INTO lost_and_found VALUES(822, 822, 4, 1975, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695435110); INSERT INTO lost_and_found VALUES(822, 822, 4, 1976, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695435110); INSERT INTO lost_and_found VALUES(822, 822, 4, 1977, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695435111); INSERT INTO lost_and_found VALUES(822, 822, 4, 1978, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695435111); INSERT INTO lost_and_found VALUES(822, 822, 4, 1979, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695435112); INSERT INTO lost_and_found VALUES(822, 822, 4, 1980, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695435112); INSERT INTO lost_and_found VALUES(822, 822, 4, 1981, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695435112); INSERT INTO lost_and_found VALUES(822, 822, 4, 1982, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695435709); INSERT INTO lost_and_found VALUES(822, 822, 4, 1983, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695435709); INSERT INTO lost_and_found VALUES(822, 822, 4, 1984, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695435710); INSERT INTO lost_and_found VALUES(822, 822, 4, 1985, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695435710); INSERT INTO lost_and_found VALUES(822, 822, 4, 1986, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695435711); INSERT INTO lost_and_found VALUES(822, 822, 4, 1987, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695435711); INSERT INTO lost_and_found VALUES(822, 822, 4, 1988, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695435711); INSERT INTO lost_and_found VALUES(822, 822, 4, 1989, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695435712); INSERT INTO lost_and_found VALUES(823, 823, 4, 1990, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695435712); INSERT INTO lost_and_found VALUES(823, 823, 4, 1991, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695435713); INSERT INTO lost_and_found VALUES(823, 823, 4, 1992, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695435713); INSERT INTO lost_and_found VALUES(823, 823, 4, 1993, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695435714); INSERT INTO lost_and_found VALUES(823, 823, 4, 1994, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695436308); INSERT INTO lost_and_found VALUES(823, 823, 4, 1995, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695436309); INSERT INTO lost_and_found VALUES(823, 823, 4, 1996, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695436309); INSERT INTO lost_and_found VALUES(823, 823, 4, 1997, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695436310); INSERT INTO lost_and_found VALUES(823, 823, 4, 1998, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695436310); INSERT INTO lost_and_found VALUES(823, 823, 4, 1999, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695436310); INSERT INTO lost_and_found VALUES(823, 823, 4, 2000, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695436311); INSERT INTO lost_and_found VALUES(823, 823, 4, 2001, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695436311); INSERT INTO lost_and_found VALUES(823, 823, 4, 2002, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695436312); INSERT INTO lost_and_found VALUES(823, 823, 4, 2003, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695436312); INSERT INTO lost_and_found VALUES(823, 823, 4, 2004, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695436313); INSERT INTO lost_and_found VALUES(823, 823, 4, 2005, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695436313); INSERT INTO lost_and_found VALUES(823, 823, 4, 2006, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695436908); INSERT INTO lost_and_found VALUES(824, 824, 4, 2007, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695436908); INSERT INTO lost_and_found VALUES(824, 824, 4, 2008, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695436909); INSERT INTO lost_and_found VALUES(824, 824, 4, 2009, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695436909); INSERT INTO lost_and_found VALUES(824, 824, 4, 2010, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695436909); INSERT INTO lost_and_found VALUES(824, 824, 4, 2011, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695436910); INSERT INTO lost_and_found VALUES(824, 824, 4, 2012, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695436910); INSERT INTO lost_and_found VALUES(824, 824, 4, 2013, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695436911); INSERT INTO lost_and_found VALUES(824, 824, 4, 2014, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695436911); INSERT INTO lost_and_found VALUES(824, 824, 4, 2015, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695436912); INSERT INTO lost_and_found VALUES(824, 824, 4, 2016, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695436912); INSERT INTO lost_and_found VALUES(824, 824, 4, 2017, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695436913); INSERT INTO lost_and_found VALUES(824, 824, 4, 2018, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695437509); INSERT INTO lost_and_found VALUES(824, 824, 4, 2019, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695437509); INSERT INTO lost_and_found VALUES(824, 824, 4, 2020, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695437510); INSERT INTO lost_and_found VALUES(824, 824, 4, 2021, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695437510); INSERT INTO lost_and_found VALUES(824, 824, 4, 2022, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695437511); INSERT INTO lost_and_found VALUES(824, 824, 4, 2023, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695437511); INSERT INTO lost_and_found VALUES(824, 824, 4, 2024, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695437512); INSERT INTO lost_and_found VALUES(825, 825, 4, 2025, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695437512); INSERT INTO lost_and_found VALUES(825, 825, 4, 2026, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695437513); INSERT INTO lost_and_found VALUES(825, 825, 4, 2027, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695437513); INSERT INTO lost_and_found VALUES(825, 825, 4, 2028, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695437513); INSERT INTO lost_and_found VALUES(825, 825, 4, 2029, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695437514); INSERT INTO lost_and_found VALUES(825, 825, 4, 2030, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695438109); INSERT INTO lost_and_found VALUES(825, 825, 4, 2031, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695438109); INSERT INTO lost_and_found VALUES(825, 825, 4, 2032, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695438109); INSERT INTO lost_and_found VALUES(825, 825, 4, 2033, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695438110); INSERT INTO lost_and_found VALUES(825, 825, 4, 2034, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695438110); INSERT INTO lost_and_found VALUES(825, 825, 4, 2035, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695438111); INSERT INTO lost_and_found VALUES(825, 825, 4, 2036, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695438111); INSERT INTO lost_and_found VALUES(825, 825, 4, 2037, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695438112); INSERT INTO lost_and_found VALUES(825, 825, 4, 2038, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695438112); INSERT INTO lost_and_found VALUES(825, 825, 4, 2039, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695438112); INSERT INTO lost_and_found VALUES(825, 825, 4, 2040, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695438113); INSERT INTO lost_and_found VALUES(825, 825, 4, 2041, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695438113); INSERT INTO lost_and_found VALUES(826, 826, 4, 2042, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695438708); INSERT INTO lost_and_found VALUES(826, 826, 4, 2043, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695438708); INSERT INTO lost_and_found VALUES(826, 826, 4, 2044, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695438709); INSERT INTO lost_and_found VALUES(826, 826, 4, 2045, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695438709); INSERT INTO lost_and_found VALUES(826, 826, 4, 2046, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695438710); INSERT INTO lost_and_found VALUES(826, 826, 4, 2047, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695438710); INSERT INTO lost_and_found VALUES(826, 826, 4, 2048, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695438711); INSERT INTO lost_and_found VALUES(826, 826, 4, 2049, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695438711); INSERT INTO lost_and_found VALUES(826, 826, 4, 2050, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695438711); INSERT INTO lost_and_found VALUES(826, 826, 4, 2051, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695438712); INSERT INTO lost_and_found VALUES(826, 826, 4, 2052, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695438712); INSERT INTO lost_and_found VALUES(826, 826, 4, 2053, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695438713); INSERT INTO lost_and_found VALUES(826, 826, 4, 2054, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695439307); INSERT INTO lost_and_found VALUES(826, 826, 4, 2055, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695439308); INSERT INTO lost_and_found VALUES(826, 826, 4, 2056, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695439308); INSERT INTO lost_and_found VALUES(826, 826, 4, 2057, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695439309); INSERT INTO lost_and_found VALUES(826, 826, 4, 2058, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695439309); INSERT INTO lost_and_found VALUES(827, 827, 4, 2059, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695439310); INSERT INTO lost_and_found VALUES(827, 827, 4, 2060, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695439310); INSERT INTO lost_and_found VALUES(827, 827, 4, 2061, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695439310); INSERT INTO lost_and_found VALUES(827, 827, 4, 2062, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695439311); INSERT INTO lost_and_found VALUES(827, 827, 4, 2063, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695439311); INSERT INTO lost_and_found VALUES(827, 827, 4, 2064, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695439312); INSERT INTO lost_and_found VALUES(827, 827, 4, 2065, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695439312); INSERT INTO lost_and_found VALUES(827, 827, 4, 2066, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695439909); INSERT INTO lost_and_found VALUES(827, 827, 4, 2067, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695439909); INSERT INTO lost_and_found VALUES(827, 827, 4, 2068, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695439909); INSERT INTO lost_and_found VALUES(827, 827, 4, 2069, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695439910); INSERT INTO lost_and_found VALUES(827, 827, 4, 2070, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695439910); INSERT INTO lost_and_found VALUES(827, 827, 4, 2071, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695439911); INSERT INTO lost_and_found VALUES(827, 827, 4, 2072, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695439911); INSERT INTO lost_and_found VALUES(827, 827, 4, 2073, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695439912); INSERT INTO lost_and_found VALUES(827, 827, 4, 2074, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695439912); INSERT INTO lost_and_found VALUES(827, 827, 4, 2075, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695439913); INSERT INTO lost_and_found VALUES(828, 828, 4, 2076, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695439913); INSERT INTO lost_and_found VALUES(828, 828, 4, 2077, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695439913); INSERT INTO lost_and_found VALUES(828, 828, 4, 2078, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695440508); INSERT INTO lost_and_found VALUES(828, 828, 4, 2079, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695440509); INSERT INTO lost_and_found VALUES(828, 828, 4, 2080, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695440509); INSERT INTO lost_and_found VALUES(828, 828, 4, 2081, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695440509); INSERT INTO lost_and_found VALUES(828, 828, 4, 2082, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695440510); INSERT INTO lost_and_found VALUES(828, 828, 4, 2083, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695440510); INSERT INTO lost_and_found VALUES(828, 828, 4, 2084, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695440511); INSERT INTO lost_and_found VALUES(828, 828, 4, 2085, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695440511); INSERT INTO lost_and_found VALUES(828, 828, 4, 2086, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695440512); INSERT INTO lost_and_found VALUES(828, 828, 4, 2087, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695440512); INSERT INTO lost_and_found VALUES(828, 828, 4, 2088, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695440513); INSERT INTO lost_and_found VALUES(828, 828, 4, 2089, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695440513); INSERT INTO lost_and_found VALUES(828, 828, 4, 2090, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695441109); INSERT INTO lost_and_found VALUES(828, 828, 4, 2091, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695441109); INSERT INTO lost_and_found VALUES(828, 828, 4, 2092, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695441110); INSERT INTO lost_and_found VALUES(829, 829, 4, 2093, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695441110); INSERT INTO lost_and_found VALUES(829, 829, 4, 2094, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695441110); INSERT INTO lost_and_found VALUES(829, 829, 4, 2095, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695441111); INSERT INTO lost_and_found VALUES(829, 829, 4, 2096, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695441111); INSERT INTO lost_and_found VALUES(829, 829, 4, 2097, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695441112); INSERT INTO lost_and_found VALUES(829, 829, 4, 2098, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695441112); INSERT INTO lost_and_found VALUES(829, 829, 4, 2099, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695441113); INSERT INTO lost_and_found VALUES(829, 829, 4, 2100, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695441113); INSERT INTO lost_and_found VALUES(829, 829, 4, 2101, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695441114); INSERT INTO lost_and_found VALUES(829, 829, 4, 2102, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695441709); INSERT INTO lost_and_found VALUES(829, 829, 4, 2103, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695441709); INSERT INTO lost_and_found VALUES(829, 829, 4, 2104, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695441710); INSERT INTO lost_and_found VALUES(829, 829, 4, 2105, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695441710); INSERT INTO lost_and_found VALUES(829, 829, 4, 2106, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695441711); INSERT INTO lost_and_found VALUES(829, 829, 4, 2107, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695441711); INSERT INTO lost_and_found VALUES(829, 829, 4, 2108, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695441712); INSERT INTO lost_and_found VALUES(829, 829, 4, 2109, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695441712); INSERT INTO lost_and_found VALUES(830, 830, 4, 2110, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695441712); INSERT INTO lost_and_found VALUES(830, 830, 4, 2111, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695441713); INSERT INTO lost_and_found VALUES(830, 830, 4, 2112, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695441713); INSERT INTO lost_and_found VALUES(830, 830, 4, 2113, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695441714); INSERT INTO lost_and_found VALUES(830, 830, 4, 2114, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695442308); INSERT INTO lost_and_found VALUES(830, 830, 4, 2115, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695442309); INSERT INTO lost_and_found VALUES(830, 830, 4, 2116, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695442309); INSERT INTO lost_and_found VALUES(830, 830, 4, 2117, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695442310); INSERT INTO lost_and_found VALUES(830, 830, 4, 2118, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695442310); INSERT INTO lost_and_found VALUES(830, 830, 4, 2119, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695442310); INSERT INTO lost_and_found VALUES(830, 830, 4, 2120, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695442311); INSERT INTO lost_and_found VALUES(830, 830, 4, 2121, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695442311); INSERT INTO lost_and_found VALUES(830, 830, 4, 2122, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695442312); INSERT INTO lost_and_found VALUES(830, 830, 4, 2123, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695442312); INSERT INTO lost_and_found VALUES(830, 830, 4, 2124, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695442313); INSERT INTO lost_and_found VALUES(830, 830, 4, 2125, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695442313); INSERT INTO lost_and_found VALUES(830, 830, 4, 2126, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695442908); INSERT INTO lost_and_found VALUES(831, 831, 4, 2127, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695442908); INSERT INTO lost_and_found VALUES(831, 831, 4, 2128, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695442909); INSERT INTO lost_and_found VALUES(831, 831, 4, 2129, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695442909); INSERT INTO lost_and_found VALUES(831, 831, 4, 2130, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695442909); INSERT INTO lost_and_found VALUES(831, 831, 4, 2131, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695442910); INSERT INTO lost_and_found VALUES(831, 831, 4, 2132, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695442910); INSERT INTO lost_and_found VALUES(831, 831, 4, 2133, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695442911); INSERT INTO lost_and_found VALUES(831, 831, 4, 2134, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695442911); INSERT INTO lost_and_found VALUES(831, 831, 4, 2135, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695442912); INSERT INTO lost_and_found VALUES(831, 831, 4, 2136, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695442912); INSERT INTO lost_and_found VALUES(831, 831, 4, 2137, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695442913); INSERT INTO lost_and_found VALUES(831, 831, 4, 2138, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695443509); INSERT INTO lost_and_found VALUES(831, 831, 4, 2139, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695443509); INSERT INTO lost_and_found VALUES(831, 831, 4, 2140, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695443510); INSERT INTO lost_and_found VALUES(831, 831, 4, 2141, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695443510); INSERT INTO lost_and_found VALUES(831, 831, 4, 2142, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695443511); INSERT INTO lost_and_found VALUES(831, 831, 4, 2143, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695443511); INSERT INTO lost_and_found VALUES(831, 831, 4, 2144, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695443512); INSERT INTO lost_and_found VALUES(832, 832, 4, 2145, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695443512); INSERT INTO lost_and_found VALUES(832, 832, 4, 2146, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695443513); INSERT INTO lost_and_found VALUES(832, 832, 4, 2147, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695443513); INSERT INTO lost_and_found VALUES(832, 832, 4, 2148, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695443513); INSERT INTO lost_and_found VALUES(832, 832, 4, 2149, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695443514); INSERT INTO lost_and_found VALUES(832, 832, 4, 2150, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695444108); INSERT INTO lost_and_found VALUES(832, 832, 4, 2151, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695444109); INSERT INTO lost_and_found VALUES(832, 832, 4, 2152, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695444109); INSERT INTO lost_and_found VALUES(832, 832, 4, 2153, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695444110); INSERT INTO lost_and_found VALUES(832, 832, 4, 2154, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695444110); INSERT INTO lost_and_found VALUES(832, 832, 4, 2155, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695444111); INSERT INTO lost_and_found VALUES(832, 832, 4, 2156, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695444111); INSERT INTO lost_and_found VALUES(832, 832, 4, 2157, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695444111); INSERT INTO lost_and_found VALUES(832, 832, 4, 2158, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695444112); INSERT INTO lost_and_found VALUES(832, 832, 4, 2159, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695444112); INSERT INTO lost_and_found VALUES(832, 832, 4, 2160, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695444113); INSERT INTO lost_and_found VALUES(832, 832, 4, 2161, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695444113); INSERT INTO lost_and_found VALUES(833, 833, 4, 2162, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695444708); INSERT INTO lost_and_found VALUES(833, 833, 4, 2163, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695444708); INSERT INTO lost_and_found VALUES(833, 833, 4, 2164, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695444709); INSERT INTO lost_and_found VALUES(833, 833, 4, 2165, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695444709); INSERT INTO lost_and_found VALUES(833, 833, 4, 2166, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695444710); INSERT INTO lost_and_found VALUES(833, 833, 4, 2167, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695444710); INSERT INTO lost_and_found VALUES(833, 833, 4, 2168, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695444710); INSERT INTO lost_and_found VALUES(833, 833, 4, 2169, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695444711); INSERT INTO lost_and_found VALUES(833, 833, 4, 2170, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695444711); INSERT INTO lost_and_found VALUES(833, 833, 4, 2171, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695444712); INSERT INTO lost_and_found VALUES(833, 833, 4, 2172, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695444712); INSERT INTO lost_and_found VALUES(833, 833, 4, 2173, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695444713); INSERT INTO lost_and_found VALUES(833, 833, 4, 2174, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695445307); INSERT INTO lost_and_found VALUES(833, 833, 4, 2175, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695445308); INSERT INTO lost_and_found VALUES(833, 833, 4, 2176, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695445308); INSERT INTO lost_and_found VALUES(833, 833, 4, 2177, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695445309); INSERT INTO lost_and_found VALUES(833, 833, 4, 2178, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695445309); INSERT INTO lost_and_found VALUES(834, 834, 4, 2179, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695445310); INSERT INTO lost_and_found VALUES(834, 834, 4, 2180, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695445310); INSERT INTO lost_and_found VALUES(834, 834, 4, 2181, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695445311); INSERT INTO lost_and_found VALUES(834, 834, 4, 2182, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695445312); INSERT INTO lost_and_found VALUES(834, 834, 4, 2183, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695445312); INSERT INTO lost_and_found VALUES(834, 834, 4, 2184, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695445313); INSERT INTO lost_and_found VALUES(834, 834, 4, 2185, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695445313); INSERT INTO lost_and_found VALUES(834, 834, 4, 2186, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695445909); INSERT INTO lost_and_found VALUES(834, 834, 4, 2187, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695445909); INSERT INTO lost_and_found VALUES(834, 834, 4, 2188, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695445910); INSERT INTO lost_and_found VALUES(834, 834, 4, 2189, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695445910); INSERT INTO lost_and_found VALUES(834, 834, 4, 2190, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695445911); INSERT INTO lost_and_found VALUES(834, 834, 4, 2191, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695445911); INSERT INTO lost_and_found VALUES(834, 834, 4, 2192, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695445911); INSERT INTO lost_and_found VALUES(834, 834, 4, 2193, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695445912); INSERT INTO lost_and_found VALUES(834, 834, 4, 2194, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695445912); INSERT INTO lost_and_found VALUES(834, 834, 4, 2195, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695445913); INSERT INTO lost_and_found VALUES(835, 835, 4, 2196, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695445913); INSERT INTO lost_and_found VALUES(835, 835, 4, 2197, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695445914); INSERT INTO lost_and_found VALUES(835, 835, 4, 2198, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695446508); INSERT INTO lost_and_found VALUES(835, 835, 4, 2199, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695446509); INSERT INTO lost_and_found VALUES(835, 835, 4, 2200, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695446509); INSERT INTO lost_and_found VALUES(835, 835, 4, 2201, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695446509); INSERT INTO lost_and_found VALUES(835, 835, 4, 2202, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695446510); INSERT INTO lost_and_found VALUES(835, 835, 4, 2203, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695446510); INSERT INTO lost_and_found VALUES(835, 835, 4, 2204, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695446511); INSERT INTO lost_and_found VALUES(835, 835, 4, 2205, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695446511); INSERT INTO lost_and_found VALUES(835, 835, 4, 2206, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695446512); INSERT INTO lost_and_found VALUES(835, 835, 4, 2207, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695446512); INSERT INTO lost_and_found VALUES(835, 835, 4, 2208, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695446513); INSERT INTO lost_and_found VALUES(835, 835, 4, 2209, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695446513); INSERT INTO lost_and_found VALUES(835, 835, 4, 2210, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695447107); INSERT INTO lost_and_found VALUES(835, 835, 4, 2211, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695447108); INSERT INTO lost_and_found VALUES(835, 835, 4, 2212, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695447108); INSERT INTO lost_and_found VALUES(836, 836, 4, 2213, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695447109); INSERT INTO lost_and_found VALUES(836, 836, 4, 2214, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695447109); INSERT INTO lost_and_found VALUES(836, 836, 4, 2215, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695447110); INSERT INTO lost_and_found VALUES(836, 836, 4, 2216, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695447110); INSERT INTO lost_and_found VALUES(836, 836, 4, 2217, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695447111); INSERT INTO lost_and_found VALUES(836, 836, 4, 2218, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695447111); INSERT INTO lost_and_found VALUES(836, 836, 4, 2219, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695447111); INSERT INTO lost_and_found VALUES(836, 836, 4, 2220, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695447112); INSERT INTO lost_and_found VALUES(836, 836, 4, 2221, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695447112); INSERT INTO lost_and_found VALUES(836, 836, 4, 2222, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695447709); INSERT INTO lost_and_found VALUES(836, 836, 4, 2223, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695447709); INSERT INTO lost_and_found VALUES(836, 836, 4, 2224, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695447710); INSERT INTO lost_and_found VALUES(836, 836, 4, 2225, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695447710); INSERT INTO lost_and_found VALUES(836, 836, 4, 2226, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695447711); INSERT INTO lost_and_found VALUES(836, 836, 4, 2227, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695447711); INSERT INTO lost_and_found VALUES(836, 836, 4, 2228, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695447712); INSERT INTO lost_and_found VALUES(836, 836, 4, 2229, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695447712); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441710, 2105, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441711, 2106, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441711, 2107, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441712, 2108, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441712, 2109, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441712, 2110, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441713, 2111, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441713, 2112, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695441714, 2113, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442308, 2114, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442309, 2115, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442309, 2116, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442310, 2117, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442310, 2118, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442310, 2119, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442311, 2120, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442311, 2121, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442312, 2122, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442312, 2123, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442313, 2124, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442313, 2125, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442908, 2126, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442908, 2127, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442909, 2128, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442909, 2129, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442909, 2130, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442910, 2131, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442910, 2132, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442911, 2133, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442911, 2134, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442912, 2135, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442912, 2136, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695442913, 2137, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443509, 2138, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443509, 2139, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443510, 2140, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443510, 2141, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443511, 2142, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443511, 2143, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443512, 2144, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443512, 2145, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443513, 2146, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443513, 2147, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443513, 2148, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695443514, 2149, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444108, 2150, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444109, 2151, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444109, 2152, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444110, 2153, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444110, 2154, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444111, 2155, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444111, 2156, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444111, 2157, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444112, 2158, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444112, 2159, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444113, 2160, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444113, 2161, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444708, 2162, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444708, 2163, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444709, 2164, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444709, 2165, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444710, 2166, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444710, 2167, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444710, 2168, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444711, 2169, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444711, 2170, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444712, 2171, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444712, 2172, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695444713, 2173, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445307, 2174, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445308, 2175, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445308, 2176, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445309, 2177, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445309, 2178, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445310, 2179, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445310, 2180, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445311, 2181, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445312, 2182, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445312, 2183, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445313, 2184, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445313, 2185, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445909, 2186, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445909, 2187, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445910, 2188, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445910, 2189, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445911, 2190, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445911, 2191, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445911, 2192, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445912, 2193, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445912, 2194, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445913, 2195, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445913, 2196, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695445914, 2197, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446508, 2198, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446509, 2199, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446509, 2200, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446509, 2201, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446510, 2202, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446510, 2203, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446511, 2204, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446511, 2205, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446512, 2206, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446512, 2207, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446513, 2208, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695446513, 2209, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447107, 2210, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447108, 2211, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447108, 2212, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447109, 2213, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447109, 2214, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447110, 2215, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447110, 2216, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447111, 2217, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447111, 2218, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447111, 2219, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447112, 2220, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447112, 2221, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447709, 2222, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447709, 2223, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447710, 2224, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447710, 2225, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447711, 2226, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447711, 2227, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447712, 2228, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447712, 2229, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447712, 2230, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447713, 2231, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447713, 2232, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695447714, 2233, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448308, 2234, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448309, 2235, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448309, 2236, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448310, 2237, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448310, 2238, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448310, 2239, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448311, 2240, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448311, 2241, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448312, 2242, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448312, 2243, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448313, 2244, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448313, 2245, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448908, 2246, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448908, 2247, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448909, 2248, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448909, 2249, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448909, 2250, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448910, 2251, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448910, 2252, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448911, 2253, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448911, 2254, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448912, 2255, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448912, 2256, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695448913, 2257, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449509, 2258, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449510, 2259, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449510, 2260, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449510, 2261, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449511, 2262, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449511, 2263, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449512, 2264, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449512, 2265, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449513, 2266, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449513, 2267, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449514, 2268, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695449514, 2269, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450108, 2270, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450109, 2271, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450109, 2272, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450110, 2273, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450110, 2274, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450111, 2275, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450111, 2276, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450112, 2277, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450112, 2278, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450112, 2279, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450113, 2280, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450113, 2281, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450708, 2282, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450708, 2283, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450709, 2284, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450709, 2285, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450710, 2286, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450710, 2287, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450710, 2288, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450711, 2289, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450711, 2290, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450712, 2291, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450712, 2292, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695450713, 2293, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451307, 2294, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451308, 2295, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451308, 2296, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451309, 2297, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451309, 2298, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451310, 2299, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451310, 2300, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451310, 2301, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451311, 2302, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451311, 2303, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451312, 2304, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451312, 2305, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451909, 2306, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451909, 2307, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451910, 2308, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451910, 2309, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451910, 2310, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451911, 2311, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451911, 2312, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451912, 2313, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451912, 2314, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451913, 2315, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451913, 2316, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695451914, 2317, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452508, 2318, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452509, 2319, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452509, 2320, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452509, 2321, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452510, 2322, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452510, 2323, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452511, 2324, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452511, 2325, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452512, 2326, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452512, 2327, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452513, 2328, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695452513, 2329, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453107, 2330, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453108, 2331, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453108, 2332, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453109, 2333, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453109, 2334, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453110, 2335, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453110, 2336, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453111, 2337, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453111, 2338, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453111, 2339, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453112, 2340, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453112, 2341, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453709, 2342, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453709, 2343, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453710, 2344, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453710, 2345, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453711, 2346, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453711, 2347, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453712, 2348, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453712, 2349, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453713, 2350, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453713, 2351, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453713, 2352, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695453714, 2353, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454308, 2354, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454309, 2355, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454309, 2356, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454310, 2357, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454310, 2358, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454311, 2359, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454311, 2360, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454312, 2361, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454312, 2362, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454312, 2363, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454313, 2364, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454313, 2365, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454908, 2366, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454908, 2367, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454909, 2368, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454909, 2369, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454909, 2370, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454910, 2371, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454910, 2372, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454911, 2373, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454911, 2374, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454912, 2375, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454912, 2376, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695454912, 2377, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455509, 2378, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455509, 2379, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455510, 2380, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455510, 2381, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455511, 2382, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455511, 2383, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455512, 2384, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455512, 2385, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455513, 2386, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455513, 2387, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455513, 2388, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695455514, 2389, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456112, 2390, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456113, 2391, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456113, 2392, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456114, 2393, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456114, 2394, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456115, 2395, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456115, 2396, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456116, 2397, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456116, 2398, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456116, 2399, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456117, 2400, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456117, 2401, NULL, NULL); INSERT INTO lost_and_found VALUES(837, 837, 2, NULL, 1695456710, 2402, NULL, NULL); INSERT INTO lost_and_found VALUES(838, 838, 4, 2230, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695447712); INSERT INTO lost_and_found VALUES(838, 838, 4, 2231, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695447713); INSERT INTO lost_and_found VALUES(838, 838, 4, 2232, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695447713); INSERT INTO lost_and_found VALUES(838, 838, 4, 2233, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695447714); INSERT INTO lost_and_found VALUES(838, 838, 4, 2234, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695448308); INSERT INTO lost_and_found VALUES(838, 838, 4, 2235, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695448309); INSERT INTO lost_and_found VALUES(838, 838, 4, 2236, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695448309); INSERT INTO lost_and_found VALUES(838, 838, 4, 2237, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695448310); INSERT INTO lost_and_found VALUES(838, 838, 4, 2238, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695448310); INSERT INTO lost_and_found VALUES(838, 838, 4, 2239, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695448310); INSERT INTO lost_and_found VALUES(838, 838, 4, 2240, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695448311); INSERT INTO lost_and_found VALUES(838, 838, 4, 2241, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695448311); INSERT INTO lost_and_found VALUES(838, 838, 4, 2242, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695448312); INSERT INTO lost_and_found VALUES(838, 838, 4, 2243, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695448312); INSERT INTO lost_and_found VALUES(838, 838, 4, 2244, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695448313); INSERT INTO lost_and_found VALUES(838, 838, 4, 2245, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695448313); INSERT INTO lost_and_found VALUES(838, 838, 4, 2246, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695448908); INSERT INTO lost_and_found VALUES(839, 839, 4, 2247, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695448908); INSERT INTO lost_and_found VALUES(839, 839, 4, 2248, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695448909); INSERT INTO lost_and_found VALUES(839, 839, 4, 2249, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695448909); INSERT INTO lost_and_found VALUES(839, 839, 4, 2250, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695448909); INSERT INTO lost_and_found VALUES(839, 839, 4, 2251, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695448910); INSERT INTO lost_and_found VALUES(839, 839, 4, 2252, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695448910); INSERT INTO lost_and_found VALUES(839, 839, 4, 2253, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695448911); INSERT INTO lost_and_found VALUES(839, 839, 4, 2254, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695448911); INSERT INTO lost_and_found VALUES(839, 839, 4, 2255, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695448912); INSERT INTO lost_and_found VALUES(839, 839, 4, 2256, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695448912); INSERT INTO lost_and_found VALUES(839, 839, 4, 2257, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695448913); INSERT INTO lost_and_found VALUES(839, 839, 4, 2258, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695449509); INSERT INTO lost_and_found VALUES(839, 839, 4, 2259, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695449510); INSERT INTO lost_and_found VALUES(839, 839, 4, 2260, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695449510); INSERT INTO lost_and_found VALUES(839, 839, 4, 2261, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695449510); INSERT INTO lost_and_found VALUES(839, 839, 4, 2262, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695449511); INSERT INTO lost_and_found VALUES(839, 839, 4, 2263, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695449511); INSERT INTO lost_and_found VALUES(839, 839, 4, 2264, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695449512); INSERT INTO lost_and_found VALUES(840, 840, 4, 2265, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695449512); INSERT INTO lost_and_found VALUES(840, 840, 4, 2266, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695449513); INSERT INTO lost_and_found VALUES(840, 840, 4, 2267, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695449513); INSERT INTO lost_and_found VALUES(840, 840, 4, 2268, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695449514); INSERT INTO lost_and_found VALUES(840, 840, 4, 2269, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695449514); INSERT INTO lost_and_found VALUES(840, 840, 4, 2270, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695450108); INSERT INTO lost_and_found VALUES(840, 840, 4, 2271, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695450109); INSERT INTO lost_and_found VALUES(840, 840, 4, 2272, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695450109); INSERT INTO lost_and_found VALUES(840, 840, 4, 2273, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695450110); INSERT INTO lost_and_found VALUES(840, 840, 4, 2274, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695450110); INSERT INTO lost_and_found VALUES(840, 840, 4, 2275, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695450111); INSERT INTO lost_and_found VALUES(840, 840, 4, 2276, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695450111); INSERT INTO lost_and_found VALUES(840, 840, 4, 2277, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695450112); INSERT INTO lost_and_found VALUES(840, 840, 4, 2278, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695450112); INSERT INTO lost_and_found VALUES(840, 840, 4, 2279, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695450112); INSERT INTO lost_and_found VALUES(840, 840, 4, 2280, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695450113); INSERT INTO lost_and_found VALUES(840, 840, 4, 2281, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695450113); INSERT INTO lost_and_found VALUES(841, 841, 4, 2282, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695450708); INSERT INTO lost_and_found VALUES(841, 841, 4, 2283, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695450708); INSERT INTO lost_and_found VALUES(841, 841, 4, 2284, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695450709); INSERT INTO lost_and_found VALUES(841, 841, 4, 2285, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695450709); INSERT INTO lost_and_found VALUES(841, 841, 4, 2286, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695450710); INSERT INTO lost_and_found VALUES(841, 841, 4, 2287, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695450710); INSERT INTO lost_and_found VALUES(841, 841, 4, 2288, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695450710); INSERT INTO lost_and_found VALUES(841, 841, 4, 2289, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695450711); INSERT INTO lost_and_found VALUES(841, 841, 4, 2290, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695450711); INSERT INTO lost_and_found VALUES(841, 841, 4, 2291, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695450712); INSERT INTO lost_and_found VALUES(841, 841, 4, 2292, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695450712); INSERT INTO lost_and_found VALUES(841, 841, 4, 2293, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695450713); INSERT INTO lost_and_found VALUES(841, 841, 4, 2294, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695451307); INSERT INTO lost_and_found VALUES(841, 841, 4, 2295, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695451308); INSERT INTO lost_and_found VALUES(841, 841, 4, 2296, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695451308); INSERT INTO lost_and_found VALUES(841, 841, 4, 2297, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695451309); INSERT INTO lost_and_found VALUES(841, 841, 4, 2298, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695451309); INSERT INTO lost_and_found VALUES(842, 842, 4, 2299, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695451310); INSERT INTO lost_and_found VALUES(842, 842, 4, 2300, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695451310); INSERT INTO lost_and_found VALUES(842, 842, 4, 2301, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695451310); INSERT INTO lost_and_found VALUES(842, 842, 4, 2302, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695451311); INSERT INTO lost_and_found VALUES(842, 842, 4, 2303, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695451311); INSERT INTO lost_and_found VALUES(842, 842, 4, 2304, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695451312); INSERT INTO lost_and_found VALUES(842, 842, 4, 2305, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695451312); INSERT INTO lost_and_found VALUES(842, 842, 4, 2306, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695451909); INSERT INTO lost_and_found VALUES(842, 842, 4, 2307, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695451909); INSERT INTO lost_and_found VALUES(842, 842, 4, 2308, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695451910); INSERT INTO lost_and_found VALUES(842, 842, 4, 2309, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695451910); INSERT INTO lost_and_found VALUES(842, 842, 4, 2310, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695451910); INSERT INTO lost_and_found VALUES(842, 842, 4, 2311, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695451911); INSERT INTO lost_and_found VALUES(842, 842, 4, 2312, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695451911); INSERT INTO lost_and_found VALUES(842, 842, 4, 2313, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695451912); INSERT INTO lost_and_found VALUES(842, 842, 4, 2314, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695451912); INSERT INTO lost_and_found VALUES(842, 842, 4, 2315, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695451913); INSERT INTO lost_and_found VALUES(843, 843, 4, 2316, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695451913); INSERT INTO lost_and_found VALUES(843, 843, 4, 2317, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695451914); INSERT INTO lost_and_found VALUES(843, 843, 4, 2318, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695452508); INSERT INTO lost_and_found VALUES(843, 843, 4, 2319, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695452509); INSERT INTO lost_and_found VALUES(843, 843, 4, 2320, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695452509); INSERT INTO lost_and_found VALUES(843, 843, 4, 2321, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695452509); INSERT INTO lost_and_found VALUES(843, 843, 4, 2322, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695452510); INSERT INTO lost_and_found VALUES(843, 843, 4, 2323, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695452510); INSERT INTO lost_and_found VALUES(843, 843, 4, 2324, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695452511); INSERT INTO lost_and_found VALUES(843, 843, 4, 2325, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695452511); INSERT INTO lost_and_found VALUES(843, 843, 4, 2326, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695452512); INSERT INTO lost_and_found VALUES(843, 843, 4, 2327, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695452512); INSERT INTO lost_and_found VALUES(843, 843, 4, 2328, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695452513); INSERT INTO lost_and_found VALUES(843, 843, 4, 2329, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695452513); INSERT INTO lost_and_found VALUES(843, 843, 4, 2330, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695453107); INSERT INTO lost_and_found VALUES(843, 843, 4, 2331, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695453108); INSERT INTO lost_and_found VALUES(843, 843, 4, 2332, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695453108); INSERT INTO lost_and_found VALUES(844, 844, 4, 2333, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695453109); INSERT INTO lost_and_found VALUES(844, 844, 4, 2334, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695453109); INSERT INTO lost_and_found VALUES(844, 844, 4, 2335, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695453110); INSERT INTO lost_and_found VALUES(844, 844, 4, 2336, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695453110); INSERT INTO lost_and_found VALUES(844, 844, 4, 2337, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695453111); INSERT INTO lost_and_found VALUES(844, 844, 4, 2338, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695453111); INSERT INTO lost_and_found VALUES(844, 844, 4, 2339, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695453111); INSERT INTO lost_and_found VALUES(844, 844, 4, 2340, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695453112); INSERT INTO lost_and_found VALUES(844, 844, 4, 2341, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695453112); INSERT INTO lost_and_found VALUES(844, 844, 4, 2342, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695453709); INSERT INTO lost_and_found VALUES(844, 844, 4, 2343, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695453709); INSERT INTO lost_and_found VALUES(844, 844, 4, 2344, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695453710); INSERT INTO lost_and_found VALUES(844, 844, 4, 2345, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695453710); INSERT INTO lost_and_found VALUES(844, 844, 4, 2346, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695453711); INSERT INTO lost_and_found VALUES(844, 844, 4, 2347, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695453711); INSERT INTO lost_and_found VALUES(844, 844, 4, 2348, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695453712); INSERT INTO lost_and_found VALUES(844, 844, 4, 2349, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695453712); INSERT INTO lost_and_found VALUES(845, 845, 4, 2350, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695453713); INSERT INTO lost_and_found VALUES(845, 845, 4, 2351, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695453713); INSERT INTO lost_and_found VALUES(845, 845, 4, 2352, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695453713); INSERT INTO lost_and_found VALUES(845, 845, 4, 2353, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695453714); INSERT INTO lost_and_found VALUES(845, 845, 4, 2354, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695454308); INSERT INTO lost_and_found VALUES(845, 845, 4, 2355, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695454309); INSERT INTO lost_and_found VALUES(845, 845, 4, 2356, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695454309); INSERT INTO lost_and_found VALUES(845, 845, 4, 2357, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695454310); INSERT INTO lost_and_found VALUES(845, 845, 4, 2358, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695454310); INSERT INTO lost_and_found VALUES(845, 845, 4, 2359, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695454311); INSERT INTO lost_and_found VALUES(845, 845, 4, 2360, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695454311); INSERT INTO lost_and_found VALUES(845, 845, 4, 2361, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695454312); INSERT INTO lost_and_found VALUES(845, 845, 4, 2362, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695454312); INSERT INTO lost_and_found VALUES(845, 845, 4, 2363, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695454312); INSERT INTO lost_and_found VALUES(845, 845, 4, 2364, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695454313); INSERT INTO lost_and_found VALUES(845, 845, 4, 2365, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695454313); INSERT INTO lost_and_found VALUES(845, 845, 4, 2366, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695454908); INSERT INTO lost_and_found VALUES(846, 846, 4, 2367, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695454908); INSERT INTO lost_and_found VALUES(846, 846, 4, 2368, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695454909); INSERT INTO lost_and_found VALUES(846, 846, 4, 2369, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695454909); INSERT INTO lost_and_found VALUES(846, 846, 4, 2370, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695454909); INSERT INTO lost_and_found VALUES(846, 846, 4, 2371, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695454910); INSERT INTO lost_and_found VALUES(846, 846, 4, 2372, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695454910); INSERT INTO lost_and_found VALUES(846, 846, 4, 2373, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695454911); INSERT INTO lost_and_found VALUES(846, 846, 4, 2374, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695454911); INSERT INTO lost_and_found VALUES(846, 846, 4, 2375, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695454912); INSERT INTO lost_and_found VALUES(846, 846, 4, 2376, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695454912); INSERT INTO lost_and_found VALUES(846, 846, 4, 2377, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695454912); INSERT INTO lost_and_found VALUES(846, 846, 4, 2378, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695455509); INSERT INTO lost_and_found VALUES(846, 846, 4, 2379, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695455509); INSERT INTO lost_and_found VALUES(846, 846, 4, 2380, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695455510); INSERT INTO lost_and_found VALUES(846, 846, 4, 2381, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695455510); INSERT INTO lost_and_found VALUES(846, 846, 4, 2382, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695455511); INSERT INTO lost_and_found VALUES(846, 846, 4, 2383, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695455511); INSERT INTO lost_and_found VALUES(846, 846, 4, 2384, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695455512); INSERT INTO lost_and_found VALUES(847, 847, 4, 2385, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695455512); INSERT INTO lost_and_found VALUES(847, 847, 4, 2386, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695455513); INSERT INTO lost_and_found VALUES(847, 847, 4, 2387, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695455513); INSERT INTO lost_and_found VALUES(847, 847, 4, 2388, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695455513); INSERT INTO lost_and_found VALUES(847, 847, 4, 2389, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695455514); INSERT INTO lost_and_found VALUES(847, 847, 4, 2390, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695456112); INSERT INTO lost_and_found VALUES(847, 847, 4, 2391, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695456113); INSERT INTO lost_and_found VALUES(847, 847, 4, 2392, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695456113); INSERT INTO lost_and_found VALUES(847, 847, 4, 2393, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695456114); INSERT INTO lost_and_found VALUES(847, 847, 4, 2394, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695456114); INSERT INTO lost_and_found VALUES(847, 847, 4, 2395, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695456115); INSERT INTO lost_and_found VALUES(847, 847, 4, 2396, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695456115); INSERT INTO lost_and_found VALUES(847, 847, 4, 2397, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695456116); INSERT INTO lost_and_found VALUES(847, 847, 4, 2398, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695456116); INSERT INTO lost_and_found VALUES(847, 847, 4, 2399, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695456116); INSERT INTO lost_and_found VALUES(847, 847, 4, 2400, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695456117); INSERT INTO lost_and_found VALUES(847, 847, 4, 2401, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695456117); INSERT INTO lost_and_found VALUES(848, 848, 4, 2402, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695456710); INSERT INTO lost_and_found VALUES(848, 848, 4, 2403, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695456710); INSERT INTO lost_and_found VALUES(848, 848, 4, 2404, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695456711); INSERT INTO lost_and_found VALUES(848, 848, 4, 2405, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695456711); INSERT INTO lost_and_found VALUES(848, 848, 4, 2406, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695456711); INSERT INTO lost_and_found VALUES(848, 848, 4, 2407, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695456712); INSERT INTO lost_and_found VALUES(848, 848, 4, 2408, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695456712); INSERT INTO lost_and_found VALUES(848, 848, 4, 2409, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695456713); INSERT INTO lost_and_found VALUES(848, 848, 4, 2410, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695456713); INSERT INTO lost_and_found VALUES(848, 848, 4, 2411, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695456714); INSERT INTO lost_and_found VALUES(848, 848, 4, 2412, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695456714); INSERT INTO lost_and_found VALUES(848, 848, 4, 2413, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695456715); INSERT INTO lost_and_found VALUES(848, 848, 4, 2414, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695457307); INSERT INTO lost_and_found VALUES(848, 848, 4, 2415, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695457308); INSERT INTO lost_and_found VALUES(848, 848, 4, 2416, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695457308); INSERT INTO lost_and_found VALUES(848, 848, 4, 2417, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695457309); INSERT INTO lost_and_found VALUES(848, 848, 4, 2418, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695457310); INSERT INTO lost_and_found VALUES(849, 849, 4, 2419, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695457310); INSERT INTO lost_and_found VALUES(849, 849, 4, 2420, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695457311); INSERT INTO lost_and_found VALUES(849, 849, 4, 2421, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695457311); INSERT INTO lost_and_found VALUES(849, 849, 4, 2422, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695457312); INSERT INTO lost_and_found VALUES(849, 849, 4, 2423, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695457313); INSERT INTO lost_and_found VALUES(849, 849, 4, 2424, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695457313); INSERT INTO lost_and_found VALUES(849, 849, 4, 2425, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695457313); INSERT INTO lost_and_found VALUES(849, 849, 4, 2426, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695457909); INSERT INTO lost_and_found VALUES(849, 849, 4, 2427, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695457909); INSERT INTO lost_and_found VALUES(849, 849, 4, 2428, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695457910); INSERT INTO lost_and_found VALUES(849, 849, 4, 2429, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695457910); INSERT INTO lost_and_found VALUES(849, 849, 4, 2430, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695457911); INSERT INTO lost_and_found VALUES(849, 849, 4, 2431, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695457911); INSERT INTO lost_and_found VALUES(849, 849, 4, 2432, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695457911); INSERT INTO lost_and_found VALUES(849, 849, 4, 2433, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695457912); INSERT INTO lost_and_found VALUES(849, 849, 4, 2434, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695457912); INSERT INTO lost_and_found VALUES(849, 849, 4, 2435, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695457913); INSERT INTO lost_and_found VALUES(850, 850, 4, 2436, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695457913); INSERT INTO lost_and_found VALUES(850, 850, 4, 2437, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695457914); INSERT INTO lost_and_found VALUES(850, 850, 4, 2438, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695458508); INSERT INTO lost_and_found VALUES(850, 850, 4, 2439, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695458509); INSERT INTO lost_and_found VALUES(850, 850, 4, 2440, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695458509); INSERT INTO lost_and_found VALUES(850, 850, 4, 2441, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695458509); INSERT INTO lost_and_found VALUES(850, 850, 4, 2442, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695458510); INSERT INTO lost_and_found VALUES(850, 850, 4, 2443, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695458510); INSERT INTO lost_and_found VALUES(850, 850, 4, 2444, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695458511); INSERT INTO lost_and_found VALUES(850, 850, 4, 2445, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695458511); INSERT INTO lost_and_found VALUES(850, 850, 4, 2446, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695458512); INSERT INTO lost_and_found VALUES(850, 850, 4, 2447, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695458512); INSERT INTO lost_and_found VALUES(850, 850, 4, 2448, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695458512); INSERT INTO lost_and_found VALUES(850, 850, 4, 2449, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695458513); INSERT INTO lost_and_found VALUES(850, 850, 4, 2450, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695459107); INSERT INTO lost_and_found VALUES(850, 850, 4, 2451, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695459108); INSERT INTO lost_and_found VALUES(850, 850, 4, 2452, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695459108); INSERT INTO lost_and_found VALUES(851, 851, 4, 2453, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695459109); INSERT INTO lost_and_found VALUES(851, 851, 4, 2454, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695459109); INSERT INTO lost_and_found VALUES(851, 851, 4, 2455, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695459110); INSERT INTO lost_and_found VALUES(851, 851, 4, 2456, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695459110); INSERT INTO lost_and_found VALUES(851, 851, 4, 2457, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695459111); INSERT INTO lost_and_found VALUES(851, 851, 4, 2458, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695459111); INSERT INTO lost_and_found VALUES(851, 851, 4, 2459, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695459111); INSERT INTO lost_and_found VALUES(851, 851, 4, 2460, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695459112); INSERT INTO lost_and_found VALUES(851, 851, 4, 2461, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695459112); INSERT INTO lost_and_found VALUES(851, 851, 4, 2462, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695459709); INSERT INTO lost_and_found VALUES(851, 851, 4, 2463, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695459709); INSERT INTO lost_and_found VALUES(851, 851, 4, 2464, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695459710); INSERT INTO lost_and_found VALUES(851, 851, 4, 2465, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695459711); INSERT INTO lost_and_found VALUES(851, 851, 4, 2466, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695459711); INSERT INTO lost_and_found VALUES(851, 851, 4, 2467, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695459712); INSERT INTO lost_and_found VALUES(851, 851, 4, 2468, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695459712); INSERT INTO lost_and_found VALUES(851, 851, 4, 2469, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695459713); INSERT INTO lost_and_found VALUES(852, 852, 4, 2470, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695459713); INSERT INTO lost_and_found VALUES(852, 852, 4, 2471, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695459714); INSERT INTO lost_and_found VALUES(852, 852, 4, 2472, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695459714); INSERT INTO lost_and_found VALUES(852, 852, 4, 2473, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695459715); INSERT INTO lost_and_found VALUES(852, 852, 4, 2474, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695460308); INSERT INTO lost_and_found VALUES(852, 852, 4, 2475, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695460309); INSERT INTO lost_and_found VALUES(852, 852, 4, 2476, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695460309); INSERT INTO lost_and_found VALUES(852, 852, 4, 2477, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695460310); INSERT INTO lost_and_found VALUES(852, 852, 4, 2478, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695460310); INSERT INTO lost_and_found VALUES(852, 852, 4, 2479, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695460311); INSERT INTO lost_and_found VALUES(852, 852, 4, 2480, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695460311); INSERT INTO lost_and_found VALUES(852, 852, 4, 2481, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695460311); INSERT INTO lost_and_found VALUES(852, 852, 4, 2482, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695460312); INSERT INTO lost_and_found VALUES(852, 852, 4, 2483, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695460312); INSERT INTO lost_and_found VALUES(852, 852, 4, 2484, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695460313); INSERT INTO lost_and_found VALUES(852, 852, 4, 2485, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695460313); INSERT INTO lost_and_found VALUES(852, 852, 4, 2486, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695460908); INSERT INTO lost_and_found VALUES(853, 853, 4, 2487, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695460908); INSERT INTO lost_and_found VALUES(853, 853, 4, 2488, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695460909); INSERT INTO lost_and_found VALUES(853, 853, 4, 2489, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695460909); INSERT INTO lost_and_found VALUES(853, 853, 4, 2490, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695460909); INSERT INTO lost_and_found VALUES(853, 853, 4, 2491, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695460910); INSERT INTO lost_and_found VALUES(853, 853, 4, 2492, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695460910); INSERT INTO lost_and_found VALUES(853, 853, 4, 2493, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695460911); INSERT INTO lost_and_found VALUES(853, 853, 4, 2494, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695460911); INSERT INTO lost_and_found VALUES(853, 853, 4, 2495, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695460912); INSERT INTO lost_and_found VALUES(853, 853, 4, 2496, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695460912); INSERT INTO lost_and_found VALUES(853, 853, 4, 2497, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695460912); INSERT INTO lost_and_found VALUES(853, 853, 4, 2498, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695461509); INSERT INTO lost_and_found VALUES(853, 853, 4, 2499, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695461510); INSERT INTO lost_and_found VALUES(853, 853, 4, 2500, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695461510); INSERT INTO lost_and_found VALUES(853, 853, 4, 2501, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695461511); INSERT INTO lost_and_found VALUES(853, 853, 4, 2502, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695461511); INSERT INTO lost_and_found VALUES(853, 853, 4, 2503, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695461511); INSERT INTO lost_and_found VALUES(853, 853, 4, 2504, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695461512); INSERT INTO lost_and_found VALUES(854, 854, 4, 2505, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695461512); INSERT INTO lost_and_found VALUES(854, 854, 4, 2506, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695461513); INSERT INTO lost_and_found VALUES(854, 854, 4, 2507, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695461513); INSERT INTO lost_and_found VALUES(854, 854, 4, 2508, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695461514); INSERT INTO lost_and_found VALUES(854, 854, 4, 2509, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695461514); INSERT INTO lost_and_found VALUES(854, 854, 4, 2510, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695462108); INSERT INTO lost_and_found VALUES(854, 854, 4, 2511, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695462109); INSERT INTO lost_and_found VALUES(854, 854, 4, 2512, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695462109); INSERT INTO lost_and_found VALUES(854, 854, 4, 2513, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695462110); INSERT INTO lost_and_found VALUES(854, 854, 4, 2514, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695462110); INSERT INTO lost_and_found VALUES(854, 854, 4, 2515, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695462111); INSERT INTO lost_and_found VALUES(854, 854, 4, 2516, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695462111); INSERT INTO lost_and_found VALUES(854, 854, 4, 2517, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695462111); INSERT INTO lost_and_found VALUES(854, 854, 4, 2518, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695462112); INSERT INTO lost_and_found VALUES(854, 854, 4, 2519, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695462112); INSERT INTO lost_and_found VALUES(854, 854, 4, 2520, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695462113); INSERT INTO lost_and_found VALUES(854, 854, 4, 2521, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695462113); INSERT INTO lost_and_found VALUES(855, 855, 4, 2522, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695462708); INSERT INTO lost_and_found VALUES(855, 855, 4, 2523, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695462708); INSERT INTO lost_and_found VALUES(855, 855, 4, 2524, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695462709); INSERT INTO lost_and_found VALUES(855, 855, 4, 2525, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695462709); INSERT INTO lost_and_found VALUES(855, 855, 4, 2526, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695462710); INSERT INTO lost_and_found VALUES(855, 855, 4, 2527, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695462710); INSERT INTO lost_and_found VALUES(855, 855, 4, 2528, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695462711); INSERT INTO lost_and_found VALUES(855, 855, 4, 2529, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695462711); INSERT INTO lost_and_found VALUES(855, 855, 4, 2530, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695462712); INSERT INTO lost_and_found VALUES(855, 855, 4, 2531, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695462713); INSERT INTO lost_and_found VALUES(855, 855, 4, 2532, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695462713); INSERT INTO lost_and_found VALUES(855, 855, 4, 2533, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695462714); INSERT INTO lost_and_found VALUES(855, 855, 4, 2534, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695463307); INSERT INTO lost_and_found VALUES(855, 855, 4, 2535, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695463308); INSERT INTO lost_and_found VALUES(855, 855, 4, 2536, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695463308); INSERT INTO lost_and_found VALUES(855, 855, 4, 2537, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695463309); INSERT INTO lost_and_found VALUES(855, 855, 4, 2538, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695463309); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456711, 2404, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456711, 2405, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456711, 2406, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456712, 2407, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456712, 2408, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456713, 2409, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456713, 2410, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456714, 2411, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456714, 2412, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695456715, 2413, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457307, 2414, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457308, 2415, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457308, 2416, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457309, 2417, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457310, 2418, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457310, 2419, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457311, 2420, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457311, 2421, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457312, 2422, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457313, 2423, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457313, 2424, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457313, 2425, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457909, 2426, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457909, 2427, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457910, 2428, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457910, 2429, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457911, 2430, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457911, 2431, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457911, 2432, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457912, 2433, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457912, 2434, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457913, 2435, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457913, 2436, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695457914, 2437, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458508, 2438, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458509, 2439, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458509, 2440, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458509, 2441, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458510, 2442, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458510, 2443, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458511, 2444, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458511, 2445, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458512, 2446, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458512, 2447, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458512, 2448, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695458513, 2449, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459107, 2450, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459108, 2451, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459108, 2452, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459109, 2453, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459109, 2454, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459110, 2455, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459110, 2456, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459111, 2457, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459111, 2458, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459111, 2459, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459112, 2460, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459112, 2461, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459709, 2462, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459709, 2463, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459710, 2464, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459711, 2465, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459711, 2466, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459712, 2467, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459712, 2468, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459713, 2469, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459713, 2470, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459714, 2471, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459714, 2472, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695459715, 2473, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460308, 2474, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460309, 2475, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460309, 2476, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460310, 2477, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460310, 2478, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460311, 2479, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460311, 2480, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460311, 2481, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460312, 2482, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460312, 2483, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460313, 2484, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460313, 2485, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460908, 2486, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460908, 2487, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460909, 2488, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460909, 2489, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460909, 2490, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460910, 2491, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460910, 2492, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460911, 2493, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460911, 2494, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460912, 2495, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460912, 2496, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695460912, 2497, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461509, 2498, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461510, 2499, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461510, 2500, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461511, 2501, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461511, 2502, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461511, 2503, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461512, 2504, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461512, 2505, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461513, 2506, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461513, 2507, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461514, 2508, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695461514, 2509, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462108, 2510, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462109, 2511, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462109, 2512, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462110, 2513, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462110, 2514, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462111, 2515, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462111, 2516, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462111, 2517, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462112, 2518, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462112, 2519, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462113, 2520, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462113, 2521, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462708, 2522, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462708, 2523, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462709, 2524, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462709, 2525, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462710, 2526, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462710, 2527, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462711, 2528, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462711, 2529, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462712, 2530, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462713, 2531, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462713, 2532, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695462714, 2533, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463307, 2534, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463308, 2535, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463308, 2536, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463309, 2537, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463309, 2538, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463309, 2539, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463310, 2540, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463310, 2541, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463311, 2542, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463311, 2543, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463312, 2544, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463312, 2545, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463909, 2546, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463909, 2547, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463910, 2548, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463910, 2549, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463910, 2550, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463911, 2551, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463911, 2552, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463912, 2553, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463912, 2554, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463913, 2555, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463913, 2556, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695463914, 2557, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464508, 2558, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464508, 2559, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464509, 2560, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464509, 2561, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464510, 2562, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464510, 2563, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464511, 2564, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464511, 2565, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464512, 2566, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464512, 2567, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464512, 2568, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695464513, 2569, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465107, 2570, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465108, 2571, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465108, 2572, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465109, 2573, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465109, 2574, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465110, 2575, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465110, 2576, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465111, 2577, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465111, 2578, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465111, 2579, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465112, 2580, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465112, 2581, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465709, 2582, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465709, 2583, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465710, 2584, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465710, 2585, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465711, 2586, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465711, 2587, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465712, 2588, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465712, 2589, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465712, 2590, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465713, 2591, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465713, 2592, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695465714, 2593, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466308, 2594, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466309, 2595, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466309, 2596, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466309, 2597, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466310, 2598, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466310, 2599, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466311, 2600, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466311, 2601, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466312, 2602, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466312, 2603, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466313, 2604, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466313, 2605, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466908, 2606, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466908, 2607, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466909, 2608, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466909, 2609, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466909, 2610, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466910, 2611, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466910, 2612, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466911, 2613, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466911, 2614, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466912, 2615, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466912, 2616, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695466913, 2617, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467509, 2618, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467509, 2619, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467510, 2620, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467510, 2621, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467511, 2622, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467511, 2623, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467512, 2624, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467512, 2625, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467513, 2626, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467513, 2627, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467513, 2628, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695467514, 2629, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468108, 2630, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468109, 2631, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468109, 2632, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468110, 2633, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468110, 2634, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468111, 2635, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468111, 2636, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468111, 2637, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468112, 2638, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468112, 2639, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468113, 2640, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468113, 2641, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468708, 2642, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468708, 2643, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468709, 2644, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468709, 2645, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468710, 2646, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468710, 2647, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468711, 2648, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468711, 2649, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468711, 2650, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468712, 2651, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468712, 2652, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695468713, 2653, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469307, 2654, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469308, 2655, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469308, 2656, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469309, 2657, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469309, 2658, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469309, 2659, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469310, 2660, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469310, 2661, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469311, 2662, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469311, 2663, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469312, 2664, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469312, 2665, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469909, 2666, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469909, 2667, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469910, 2668, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469910, 2669, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469910, 2670, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469911, 2671, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469911, 2672, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469912, 2673, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469912, 2674, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469913, 2675, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469913, 2676, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695469914, 2677, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470509, 2678, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470510, 2679, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470510, 2680, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470510, 2681, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470511, 2682, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470511, 2683, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470512, 2684, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470512, 2685, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470513, 2686, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470513, 2687, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470514, 2688, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695470514, 2689, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471107, 2690, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471108, 2691, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471108, 2692, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471109, 2693, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471109, 2694, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471110, 2695, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471110, 2696, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471110, 2697, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471111, 2698, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471111, 2699, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471112, 2700, NULL, NULL); INSERT INTO lost_and_found VALUES(856, 856, 2, NULL, 1695471112, 2701, NULL, NULL); INSERT INTO lost_and_found VALUES(857, 857, 4, 2539, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695463309); INSERT INTO lost_and_found VALUES(857, 857, 4, 2540, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695463310); INSERT INTO lost_and_found VALUES(857, 857, 4, 2541, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695463310); INSERT INTO lost_and_found VALUES(857, 857, 4, 2542, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695463311); INSERT INTO lost_and_found VALUES(857, 857, 4, 2543, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695463311); INSERT INTO lost_and_found VALUES(857, 857, 4, 2544, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695463312); INSERT INTO lost_and_found VALUES(857, 857, 4, 2545, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695463312); INSERT INTO lost_and_found VALUES(857, 857, 4, 2546, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695463909); INSERT INTO lost_and_found VALUES(857, 857, 4, 2547, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695463909); INSERT INTO lost_and_found VALUES(857, 857, 4, 2548, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695463910); INSERT INTO lost_and_found VALUES(857, 857, 4, 2549, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695463910); INSERT INTO lost_and_found VALUES(857, 857, 4, 2550, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695463910); INSERT INTO lost_and_found VALUES(857, 857, 4, 2551, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695463911); INSERT INTO lost_and_found VALUES(857, 857, 4, 2552, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695463911); INSERT INTO lost_and_found VALUES(857, 857, 4, 2553, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695463912); INSERT INTO lost_and_found VALUES(857, 857, 4, 2554, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695463912); INSERT INTO lost_and_found VALUES(857, 857, 4, 2555, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695463913); INSERT INTO lost_and_found VALUES(858, 858, 4, 2556, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695463913); INSERT INTO lost_and_found VALUES(858, 858, 4, 2557, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695463914); INSERT INTO lost_and_found VALUES(858, 858, 4, 2558, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695464508); INSERT INTO lost_and_found VALUES(858, 858, 4, 2559, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695464508); INSERT INTO lost_and_found VALUES(858, 858, 4, 2560, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695464509); INSERT INTO lost_and_found VALUES(858, 858, 4, 2561, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695464509); INSERT INTO lost_and_found VALUES(858, 858, 4, 2562, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695464510); INSERT INTO lost_and_found VALUES(858, 858, 4, 2563, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695464510); INSERT INTO lost_and_found VALUES(858, 858, 4, 2564, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695464511); INSERT INTO lost_and_found VALUES(858, 858, 4, 2565, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695464511); INSERT INTO lost_and_found VALUES(858, 858, 4, 2566, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695464512); INSERT INTO lost_and_found VALUES(858, 858, 4, 2567, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695464512); INSERT INTO lost_and_found VALUES(858, 858, 4, 2568, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695464512); INSERT INTO lost_and_found VALUES(858, 858, 4, 2569, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695464513); INSERT INTO lost_and_found VALUES(858, 858, 4, 2570, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695465107); INSERT INTO lost_and_found VALUES(858, 858, 4, 2571, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695465108); INSERT INTO lost_and_found VALUES(858, 858, 4, 2572, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695465108); INSERT INTO lost_and_found VALUES(859, 859, 4, 2573, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695465109); INSERT INTO lost_and_found VALUES(859, 859, 4, 2574, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695465109); INSERT INTO lost_and_found VALUES(859, 859, 4, 2575, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695465110); INSERT INTO lost_and_found VALUES(859, 859, 4, 2576, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695465110); INSERT INTO lost_and_found VALUES(859, 859, 4, 2577, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695465111); INSERT INTO lost_and_found VALUES(859, 859, 4, 2578, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695465111); INSERT INTO lost_and_found VALUES(859, 859, 4, 2579, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695465111); INSERT INTO lost_and_found VALUES(859, 859, 4, 2580, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695465112); INSERT INTO lost_and_found VALUES(859, 859, 4, 2581, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695465112); INSERT INTO lost_and_found VALUES(859, 859, 4, 2582, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695465709); INSERT INTO lost_and_found VALUES(859, 859, 4, 2583, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695465709); INSERT INTO lost_and_found VALUES(859, 859, 4, 2584, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695465710); INSERT INTO lost_and_found VALUES(859, 859, 4, 2585, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695465710); INSERT INTO lost_and_found VALUES(859, 859, 4, 2586, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695465711); INSERT INTO lost_and_found VALUES(859, 859, 4, 2587, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695465711); INSERT INTO lost_and_found VALUES(859, 859, 4, 2588, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695465712); INSERT INTO lost_and_found VALUES(859, 859, 4, 2589, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695465712); INSERT INTO lost_and_found VALUES(860, 860, 4, 2590, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695465712); INSERT INTO lost_and_found VALUES(860, 860, 4, 2591, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695465713); INSERT INTO lost_and_found VALUES(860, 860, 4, 2592, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695465713); INSERT INTO lost_and_found VALUES(860, 860, 4, 2593, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695465714); INSERT INTO lost_and_found VALUES(860, 860, 4, 2594, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695466308); INSERT INTO lost_and_found VALUES(860, 860, 4, 2595, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695466309); INSERT INTO lost_and_found VALUES(860, 860, 4, 2596, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695466309); INSERT INTO lost_and_found VALUES(860, 860, 4, 2597, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695466309); INSERT INTO lost_and_found VALUES(860, 860, 4, 2598, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695466310); INSERT INTO lost_and_found VALUES(860, 860, 4, 2599, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695466310); INSERT INTO lost_and_found VALUES(860, 860, 4, 2600, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695466311); INSERT INTO lost_and_found VALUES(860, 860, 4, 2601, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695466311); INSERT INTO lost_and_found VALUES(860, 860, 4, 2602, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695466312); INSERT INTO lost_and_found VALUES(860, 860, 4, 2603, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695466312); INSERT INTO lost_and_found VALUES(860, 860, 4, 2604, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695466313); INSERT INTO lost_and_found VALUES(860, 860, 4, 2605, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695466313); INSERT INTO lost_and_found VALUES(860, 860, 4, 2606, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695466908); INSERT INTO lost_and_found VALUES(861, 861, 4, 2607, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695466908); INSERT INTO lost_and_found VALUES(861, 861, 4, 2608, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695466909); INSERT INTO lost_and_found VALUES(861, 861, 4, 2609, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695466909); INSERT INTO lost_and_found VALUES(861, 861, 4, 2610, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695466909); INSERT INTO lost_and_found VALUES(861, 861, 4, 2611, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695466910); INSERT INTO lost_and_found VALUES(861, 861, 4, 2612, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695466910); INSERT INTO lost_and_found VALUES(861, 861, 4, 2613, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695466911); INSERT INTO lost_and_found VALUES(861, 861, 4, 2614, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695466911); INSERT INTO lost_and_found VALUES(861, 861, 4, 2615, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695466912); INSERT INTO lost_and_found VALUES(861, 861, 4, 2616, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695466912); INSERT INTO lost_and_found VALUES(861, 861, 4, 2617, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695466913); INSERT INTO lost_and_found VALUES(861, 861, 4, 2618, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695467509); INSERT INTO lost_and_found VALUES(861, 861, 4, 2619, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695467509); INSERT INTO lost_and_found VALUES(861, 861, 4, 2620, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695467510); INSERT INTO lost_and_found VALUES(861, 861, 4, 2621, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695467510); INSERT INTO lost_and_found VALUES(861, 861, 4, 2622, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695467511); INSERT INTO lost_and_found VALUES(861, 861, 4, 2623, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695467511); INSERT INTO lost_and_found VALUES(861, 861, 4, 2624, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695467512); INSERT INTO lost_and_found VALUES(862, 862, 4, 2625, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695467512); INSERT INTO lost_and_found VALUES(862, 862, 4, 2626, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695467513); INSERT INTO lost_and_found VALUES(862, 862, 4, 2627, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695467513); INSERT INTO lost_and_found VALUES(862, 862, 4, 2628, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695467513); INSERT INTO lost_and_found VALUES(862, 862, 4, 2629, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695467514); INSERT INTO lost_and_found VALUES(862, 862, 4, 2630, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695468108); INSERT INTO lost_and_found VALUES(862, 862, 4, 2631, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695468109); INSERT INTO lost_and_found VALUES(862, 862, 4, 2632, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695468109); INSERT INTO lost_and_found VALUES(862, 862, 4, 2633, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695468110); INSERT INTO lost_and_found VALUES(862, 862, 4, 2634, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695468110); INSERT INTO lost_and_found VALUES(862, 862, 4, 2635, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695468111); INSERT INTO lost_and_found VALUES(862, 862, 4, 2636, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695468111); INSERT INTO lost_and_found VALUES(862, 862, 4, 2637, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695468111); INSERT INTO lost_and_found VALUES(862, 862, 4, 2638, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695468112); INSERT INTO lost_and_found VALUES(862, 862, 4, 2639, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695468112); INSERT INTO lost_and_found VALUES(862, 862, 4, 2640, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695468113); INSERT INTO lost_and_found VALUES(862, 862, 4, 2641, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695468113); INSERT INTO lost_and_found VALUES(863, 863, 4, 2642, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695468708); INSERT INTO lost_and_found VALUES(863, 863, 4, 2643, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695468708); INSERT INTO lost_and_found VALUES(863, 863, 4, 2644, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695468709); INSERT INTO lost_and_found VALUES(863, 863, 4, 2645, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695468709); INSERT INTO lost_and_found VALUES(863, 863, 4, 2646, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695468710); INSERT INTO lost_and_found VALUES(863, 863, 4, 2647, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695468710); INSERT INTO lost_and_found VALUES(863, 863, 4, 2648, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695468711); INSERT INTO lost_and_found VALUES(863, 863, 4, 2649, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695468711); INSERT INTO lost_and_found VALUES(863, 863, 4, 2650, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695468711); INSERT INTO lost_and_found VALUES(863, 863, 4, 2651, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695468712); INSERT INTO lost_and_found VALUES(863, 863, 4, 2652, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695468712); INSERT INTO lost_and_found VALUES(863, 863, 4, 2653, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695468713); INSERT INTO lost_and_found VALUES(863, 863, 4, 2654, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695469307); INSERT INTO lost_and_found VALUES(863, 863, 4, 2655, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695469308); INSERT INTO lost_and_found VALUES(863, 863, 4, 2656, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695469308); INSERT INTO lost_and_found VALUES(863, 863, 4, 2657, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695469309); INSERT INTO lost_and_found VALUES(863, 863, 4, 2658, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695469309); INSERT INTO lost_and_found VALUES(864, 864, 4, 2659, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695469309); INSERT INTO lost_and_found VALUES(864, 864, 4, 2660, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695469310); INSERT INTO lost_and_found VALUES(864, 864, 4, 2661, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695469310); INSERT INTO lost_and_found VALUES(864, 864, 4, 2662, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695469311); INSERT INTO lost_and_found VALUES(864, 864, 4, 2663, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695469311); INSERT INTO lost_and_found VALUES(864, 864, 4, 2664, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695469312); INSERT INTO lost_and_found VALUES(864, 864, 4, 2665, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695469312); INSERT INTO lost_and_found VALUES(864, 864, 4, 2666, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695469909); INSERT INTO lost_and_found VALUES(864, 864, 4, 2667, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695469909); INSERT INTO lost_and_found VALUES(864, 864, 4, 2668, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695469910); INSERT INTO lost_and_found VALUES(864, 864, 4, 2669, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695469910); INSERT INTO lost_and_found VALUES(864, 864, 4, 2670, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695469910); INSERT INTO lost_and_found VALUES(864, 864, 4, 2671, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695469911); INSERT INTO lost_and_found VALUES(864, 864, 4, 2672, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695469911); INSERT INTO lost_and_found VALUES(864, 864, 4, 2673, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695469912); INSERT INTO lost_and_found VALUES(864, 864, 4, 2674, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695469912); INSERT INTO lost_and_found VALUES(864, 864, 4, 2675, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695469913); INSERT INTO lost_and_found VALUES(865, 865, 4, 2676, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695469913); INSERT INTO lost_and_found VALUES(865, 865, 4, 2677, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695469914); INSERT INTO lost_and_found VALUES(865, 865, 4, 2678, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695470509); INSERT INTO lost_and_found VALUES(865, 865, 4, 2679, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695470510); INSERT INTO lost_and_found VALUES(865, 865, 4, 2680, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695470510); INSERT INTO lost_and_found VALUES(865, 865, 4, 2681, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695470510); INSERT INTO lost_and_found VALUES(865, 865, 4, 2682, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695470511); INSERT INTO lost_and_found VALUES(865, 865, 4, 2683, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695470511); INSERT INTO lost_and_found VALUES(865, 865, 4, 2684, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695470512); INSERT INTO lost_and_found VALUES(865, 865, 4, 2685, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695470512); INSERT INTO lost_and_found VALUES(865, 865, 4, 2686, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695470513); INSERT INTO lost_and_found VALUES(865, 865, 4, 2687, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695470513); INSERT INTO lost_and_found VALUES(865, 865, 4, 2688, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695470514); INSERT INTO lost_and_found VALUES(865, 865, 4, 2689, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695470514); INSERT INTO lost_and_found VALUES(865, 865, 4, 2690, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695471107); INSERT INTO lost_and_found VALUES(865, 865, 4, 2691, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695471108); INSERT INTO lost_and_found VALUES(865, 865, 4, 2692, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695471108); INSERT INTO lost_and_found VALUES(866, 866, 4, 2693, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695471109); INSERT INTO lost_and_found VALUES(866, 866, 4, 2694, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695471109); INSERT INTO lost_and_found VALUES(866, 866, 4, 2695, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695471110); INSERT INTO lost_and_found VALUES(866, 866, 4, 2696, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695471110); INSERT INTO lost_and_found VALUES(866, 866, 4, 2697, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695471110); INSERT INTO lost_and_found VALUES(866, 866, 4, 2698, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695471111); INSERT INTO lost_and_found VALUES(866, 866, 4, 2699, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695471111); INSERT INTO lost_and_found VALUES(866, 866, 4, 2700, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695471112); INSERT INTO lost_and_found VALUES(866, 866, 4, 2701, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695471112); INSERT INTO lost_and_found VALUES(866, 866, 4, 2702, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695471709); INSERT INTO lost_and_found VALUES(866, 866, 4, 2703, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695471709); INSERT INTO lost_and_found VALUES(866, 866, 4, 2704, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695471710); INSERT INTO lost_and_found VALUES(866, 866, 4, 2705, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695471710); INSERT INTO lost_and_found VALUES(866, 866, 4, 2706, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695471710); INSERT INTO lost_and_found VALUES(866, 866, 4, 2707, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695471711); INSERT INTO lost_and_found VALUES(866, 866, 4, 2708, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695471711); INSERT INTO lost_and_found VALUES(866, 866, 4, 2709, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695471712); INSERT INTO lost_and_found VALUES(867, 867, 4, 2710, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695471712); INSERT INTO lost_and_found VALUES(867, 867, 4, 2711, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695471713); INSERT INTO lost_and_found VALUES(867, 867, 4, 2712, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695471713); INSERT INTO lost_and_found VALUES(867, 867, 4, 2713, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695471713); INSERT INTO lost_and_found VALUES(867, 867, 4, 2714, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695472308); INSERT INTO lost_and_found VALUES(867, 867, 4, 2715, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695472309); INSERT INTO lost_and_found VALUES(867, 867, 4, 2716, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695472309); INSERT INTO lost_and_found VALUES(867, 867, 4, 2717, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695472310); INSERT INTO lost_and_found VALUES(867, 867, 4, 2718, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695472310); INSERT INTO lost_and_found VALUES(867, 867, 4, 2719, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695472310); INSERT INTO lost_and_found VALUES(867, 867, 4, 2720, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695472311); INSERT INTO lost_and_found VALUES(867, 867, 4, 2721, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695472311); INSERT INTO lost_and_found VALUES(867, 867, 4, 2722, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695472312); INSERT INTO lost_and_found VALUES(867, 867, 4, 2723, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695472312); INSERT INTO lost_and_found VALUES(867, 867, 4, 2724, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695472313); INSERT INTO lost_and_found VALUES(867, 867, 4, 2725, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695472313); INSERT INTO lost_and_found VALUES(867, 867, 4, 2726, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695472908); INSERT INTO lost_and_found VALUES(868, 868, 4, 2727, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695472908); INSERT INTO lost_and_found VALUES(868, 868, 4, 2728, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695472908); INSERT INTO lost_and_found VALUES(868, 868, 4, 2729, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695472909); INSERT INTO lost_and_found VALUES(868, 868, 4, 2730, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695472910); INSERT INTO lost_and_found VALUES(868, 868, 4, 2731, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695472910); INSERT INTO lost_and_found VALUES(868, 868, 4, 2732, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695472911); INSERT INTO lost_and_found VALUES(868, 868, 4, 2733, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695472911); INSERT INTO lost_and_found VALUES(868, 868, 4, 2734, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695472912); INSERT INTO lost_and_found VALUES(868, 868, 4, 2735, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695472912); INSERT INTO lost_and_found VALUES(868, 868, 4, 2736, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695472913); INSERT INTO lost_and_found VALUES(868, 868, 4, 2737, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695472913); INSERT INTO lost_and_found VALUES(868, 868, 4, 2738, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695473509); INSERT INTO lost_and_found VALUES(868, 868, 4, 2739, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695473510); INSERT INTO lost_and_found VALUES(868, 868, 4, 2740, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695473510); INSERT INTO lost_and_found VALUES(868, 868, 4, 2741, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695473510); INSERT INTO lost_and_found VALUES(868, 868, 4, 2742, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695473511); INSERT INTO lost_and_found VALUES(868, 868, 4, 2743, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695473511); INSERT INTO lost_and_found VALUES(868, 868, 4, 2744, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695473512); INSERT INTO lost_and_found VALUES(869, 869, 4, 2745, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695473512); INSERT INTO lost_and_found VALUES(869, 869, 4, 2746, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695473513); INSERT INTO lost_and_found VALUES(869, 869, 4, 2747, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695473513); INSERT INTO lost_and_found VALUES(869, 869, 4, 2748, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695473513); INSERT INTO lost_and_found VALUES(869, 869, 4, 2749, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695473514); INSERT INTO lost_and_found VALUES(869, 869, 4, 2750, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695474108); INSERT INTO lost_and_found VALUES(869, 869, 4, 2751, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695474109); INSERT INTO lost_and_found VALUES(869, 869, 4, 2752, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695474109); INSERT INTO lost_and_found VALUES(869, 869, 4, 2753, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695474110); INSERT INTO lost_and_found VALUES(869, 869, 4, 2754, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695474111); INSERT INTO lost_and_found VALUES(869, 869, 4, 2755, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695474111); INSERT INTO lost_and_found VALUES(869, 869, 4, 2756, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695474112); INSERT INTO lost_and_found VALUES(869, 869, 4, 2757, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695474112); INSERT INTO lost_and_found VALUES(869, 869, 4, 2758, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695474113); INSERT INTO lost_and_found VALUES(869, 869, 4, 2759, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695474113); INSERT INTO lost_and_found VALUES(869, 869, 4, 2760, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695474114); INSERT INTO lost_and_found VALUES(869, 869, 4, 2761, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695474114); INSERT INTO lost_and_found VALUES(870, 870, 4, 2762, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695474708); INSERT INTO lost_and_found VALUES(870, 870, 4, 2763, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695474708); INSERT INTO lost_and_found VALUES(870, 870, 4, 2764, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695474709); INSERT INTO lost_and_found VALUES(870, 870, 4, 2765, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695474709); INSERT INTO lost_and_found VALUES(870, 870, 4, 2766, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695474710); INSERT INTO lost_and_found VALUES(870, 870, 4, 2767, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695474710); INSERT INTO lost_and_found VALUES(870, 870, 4, 2768, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695474710); INSERT INTO lost_and_found VALUES(870, 870, 4, 2769, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695474711); INSERT INTO lost_and_found VALUES(870, 870, 4, 2770, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695474711); INSERT INTO lost_and_found VALUES(870, 870, 4, 2771, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695474712); INSERT INTO lost_and_found VALUES(870, 870, 4, 2772, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695474712); INSERT INTO lost_and_found VALUES(870, 870, 4, 2773, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695474713); INSERT INTO lost_and_found VALUES(870, 870, 4, 2774, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695475307); INSERT INTO lost_and_found VALUES(870, 870, 4, 2775, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695475308); INSERT INTO lost_and_found VALUES(870, 870, 4, 2776, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695475308); INSERT INTO lost_and_found VALUES(870, 870, 4, 2777, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695475309); INSERT INTO lost_and_found VALUES(870, 870, 4, 2778, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695475309); INSERT INTO lost_and_found VALUES(871, 871, 4, 2779, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695475309); INSERT INTO lost_and_found VALUES(871, 871, 4, 2780, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695475310); INSERT INTO lost_and_found VALUES(871, 871, 4, 2781, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695475310); INSERT INTO lost_and_found VALUES(871, 871, 4, 2782, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695475311); INSERT INTO lost_and_found VALUES(871, 871, 4, 2783, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695475311); INSERT INTO lost_and_found VALUES(871, 871, 4, 2784, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695475312); INSERT INTO lost_and_found VALUES(871, 871, 4, 2785, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695475312); INSERT INTO lost_and_found VALUES(871, 871, 4, 2786, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695475909); INSERT INTO lost_and_found VALUES(871, 871, 4, 2787, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695475909); INSERT INTO lost_and_found VALUES(871, 871, 4, 2788, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695475909); INSERT INTO lost_and_found VALUES(871, 871, 4, 2789, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695475910); INSERT INTO lost_and_found VALUES(871, 871, 4, 2790, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695475910); INSERT INTO lost_and_found VALUES(871, 871, 4, 2791, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695475911); INSERT INTO lost_and_found VALUES(871, 871, 4, 2792, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695475911); INSERT INTO lost_and_found VALUES(871, 871, 4, 2793, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695475912); INSERT INTO lost_and_found VALUES(871, 871, 4, 2794, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695475912); INSERT INTO lost_and_found VALUES(871, 871, 4, 2795, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695475913); INSERT INTO lost_and_found VALUES(872, 872, 4, 2796, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695475913); INSERT INTO lost_and_found VALUES(872, 872, 4, 2797, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695475913); INSERT INTO lost_and_found VALUES(872, 872, 4, 2798, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695476508); INSERT INTO lost_and_found VALUES(872, 872, 4, 2799, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695476508); INSERT INTO lost_and_found VALUES(872, 872, 4, 2800, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695476509); INSERT INTO lost_and_found VALUES(872, 872, 4, 2801, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695476509); INSERT INTO lost_and_found VALUES(872, 872, 4, 2802, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695476510); INSERT INTO lost_and_found VALUES(872, 872, 4, 2803, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695476510); INSERT INTO lost_and_found VALUES(872, 872, 4, 2804, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695476511); INSERT INTO lost_and_found VALUES(872, 872, 4, 2805, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695476511); INSERT INTO lost_and_found VALUES(872, 872, 4, 2806, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695476511); INSERT INTO lost_and_found VALUES(872, 872, 4, 2807, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695476512); INSERT INTO lost_and_found VALUES(872, 872, 4, 2808, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695476512); INSERT INTO lost_and_found VALUES(872, 872, 4, 2809, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695476513); INSERT INTO lost_and_found VALUES(872, 872, 4, 2810, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695477107); INSERT INTO lost_and_found VALUES(872, 872, 4, 2811, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695477108); INSERT INTO lost_and_found VALUES(872, 872, 4, 2812, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695477108); INSERT INTO lost_and_found VALUES(873, 873, 4, 2813, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695477109); INSERT INTO lost_and_found VALUES(873, 873, 4, 2814, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695477109); INSERT INTO lost_and_found VALUES(873, 873, 4, 2815, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695477110); INSERT INTO lost_and_found VALUES(873, 873, 4, 2816, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695477110); INSERT INTO lost_and_found VALUES(873, 873, 4, 2817, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695477110); INSERT INTO lost_and_found VALUES(873, 873, 4, 2818, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695477111); INSERT INTO lost_and_found VALUES(873, 873, 4, 2819, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695477111); INSERT INTO lost_and_found VALUES(873, 873, 4, 2820, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695477112); INSERT INTO lost_and_found VALUES(873, 873, 4, 2821, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695477112); INSERT INTO lost_and_found VALUES(873, 873, 4, 2822, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695477709); INSERT INTO lost_and_found VALUES(873, 873, 4, 2823, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695477709); INSERT INTO lost_and_found VALUES(873, 873, 4, 2824, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695477710); INSERT INTO lost_and_found VALUES(873, 873, 4, 2825, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695477710); INSERT INTO lost_and_found VALUES(873, 873, 4, 2826, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695477710); INSERT INTO lost_and_found VALUES(873, 873, 4, 2827, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695477711); INSERT INTO lost_and_found VALUES(873, 873, 4, 2828, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695477711); INSERT INTO lost_and_found VALUES(873, 873, 4, 2829, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695477712); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471709, 2703, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471710, 2704, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471710, 2705, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471710, 2706, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471711, 2707, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471711, 2708, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471712, 2709, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471712, 2710, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471713, 2711, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471713, 2712, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695471713, 2713, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472308, 2714, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472309, 2715, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472309, 2716, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472310, 2717, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472310, 2718, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472310, 2719, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472311, 2720, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472311, 2721, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472312, 2722, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472312, 2723, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472313, 2724, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472313, 2725, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472908, 2726, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472908, 2727, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472908, 2728, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472909, 2729, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472910, 2730, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472910, 2731, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472911, 2732, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472911, 2733, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472912, 2734, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472912, 2735, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472913, 2736, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695472913, 2737, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473509, 2738, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473510, 2739, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473510, 2740, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473510, 2741, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473511, 2742, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473511, 2743, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473512, 2744, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473512, 2745, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473513, 2746, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473513, 2747, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473513, 2748, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695473514, 2749, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474108, 2750, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474109, 2751, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474109, 2752, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474110, 2753, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474111, 2754, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474111, 2755, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474112, 2756, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474112, 2757, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474113, 2758, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474113, 2759, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474114, 2760, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474114, 2761, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474708, 2762, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474708, 2763, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474709, 2764, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474709, 2765, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474710, 2766, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474710, 2767, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474710, 2768, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474711, 2769, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474711, 2770, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474712, 2771, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474712, 2772, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695474713, 2773, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475307, 2774, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475308, 2775, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475308, 2776, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475309, 2777, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475309, 2778, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475309, 2779, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475310, 2780, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475310, 2781, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475311, 2782, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475311, 2783, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475312, 2784, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475312, 2785, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475909, 2786, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475909, 2787, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475909, 2788, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475910, 2789, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475910, 2790, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475911, 2791, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475911, 2792, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475912, 2793, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475912, 2794, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475913, 2795, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475913, 2796, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695475913, 2797, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476508, 2798, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476508, 2799, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476509, 2800, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476509, 2801, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476510, 2802, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476510, 2803, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476511, 2804, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476511, 2805, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476511, 2806, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476512, 2807, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476512, 2808, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695476513, 2809, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477107, 2810, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477108, 2811, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477108, 2812, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477109, 2813, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477109, 2814, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477110, 2815, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477110, 2816, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477110, 2817, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477111, 2818, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477111, 2819, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477112, 2820, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477112, 2821, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477709, 2822, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477709, 2823, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477710, 2824, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477710, 2825, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477710, 2826, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477711, 2827, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477711, 2828, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477712, 2829, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477712, 2830, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477713, 2831, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477713, 2832, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695477714, 2833, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478308, 2834, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478309, 2835, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478309, 2836, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478310, 2837, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478310, 2838, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478310, 2839, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478311, 2840, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478311, 2841, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478312, 2842, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478312, 2843, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478313, 2844, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478313, 2845, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478908, 2846, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478908, 2847, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478908, 2848, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478909, 2849, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478909, 2850, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478910, 2851, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478910, 2852, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478911, 2853, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478911, 2854, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478911, 2855, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478912, 2856, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695478912, 2857, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479509, 2858, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479509, 2859, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479510, 2860, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479510, 2861, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479511, 2862, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479511, 2863, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479512, 2864, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479512, 2865, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479513, 2866, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479513, 2867, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479513, 2868, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695479514, 2869, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480108, 2870, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480109, 2871, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480110, 2872, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480110, 2873, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480111, 2874, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480111, 2875, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480112, 2876, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480112, 2877, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480112, 2878, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480113, 2879, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480113, 2880, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480114, 2881, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480708, 2882, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480708, 2883, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480709, 2884, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480709, 2885, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480709, 2886, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480710, 2887, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480710, 2888, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480711, 2889, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480711, 2890, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480712, 2891, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480712, 2892, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695480713, 2893, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481307, 2894, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481308, 2895, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481308, 2896, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481309, 2897, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481309, 2898, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481309, 2899, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481310, 2900, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481310, 2901, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481311, 2902, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481311, 2903, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481312, 2904, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481312, 2905, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481909, 2906, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481909, 2907, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481909, 2908, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481910, 2909, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481910, 2910, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481911, 2911, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481911, 2912, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481912, 2913, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481912, 2914, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481912, 2915, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481913, 2916, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695481913, 2917, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482508, 2918, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482508, 2919, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482509, 2920, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482509, 2921, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482510, 2922, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482510, 2923, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482511, 2924, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482511, 2925, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482511, 2926, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482512, 2927, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482512, 2928, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695482513, 2929, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483107, 2930, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483108, 2931, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483108, 2932, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483109, 2933, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483109, 2934, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483109, 2935, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483110, 2936, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483110, 2937, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483111, 2938, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483111, 2939, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483112, 2940, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483112, 2941, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483709, 2942, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483709, 2943, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483710, 2944, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483710, 2945, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483711, 2946, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483711, 2947, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483711, 2948, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483712, 2949, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483712, 2950, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483713, 2951, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483713, 2952, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695483714, 2953, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484308, 2954, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484309, 2955, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484309, 2956, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484309, 2957, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484310, 2958, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484310, 2959, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484311, 2960, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484311, 2961, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484312, 2962, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484312, 2963, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484312, 2964, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484313, 2965, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484908, 2966, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484908, 2967, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484908, 2968, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484909, 2969, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484909, 2970, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484910, 2971, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484910, 2972, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484911, 2973, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484911, 2974, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484911, 2975, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484912, 2976, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695484912, 2977, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485513, 2978, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485514, 2979, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485515, 2980, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485516, 2981, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485516, 2982, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485517, 2983, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485517, 2984, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485518, 2985, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485518, 2986, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485518, 2987, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485519, 2988, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695485519, 2989, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486109, 2990, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486110, 2991, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486110, 2992, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486111, 2993, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486111, 2994, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486111, 2995, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486112, 2996, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486112, 2997, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486113, 2998, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486113, 2999, NULL, NULL); INSERT INTO lost_and_found VALUES(874, 874, 2, NULL, 1695486114, 3000, NULL, NULL); INSERT INTO lost_and_found VALUES(875, 875, 4, 2830, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695477712); INSERT INTO lost_and_found VALUES(875, 875, 4, 2831, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695477713); INSERT INTO lost_and_found VALUES(875, 875, 4, 2832, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695477713); INSERT INTO lost_and_found VALUES(875, 875, 4, 2833, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695477714); INSERT INTO lost_and_found VALUES(875, 875, 4, 2834, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695478308); INSERT INTO lost_and_found VALUES(875, 875, 4, 2835, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695478309); INSERT INTO lost_and_found VALUES(875, 875, 4, 2836, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695478309); INSERT INTO lost_and_found VALUES(875, 875, 4, 2837, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695478310); INSERT INTO lost_and_found VALUES(875, 875, 4, 2838, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695478310); INSERT INTO lost_and_found VALUES(875, 875, 4, 2839, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695478310); INSERT INTO lost_and_found VALUES(875, 875, 4, 2840, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695478311); INSERT INTO lost_and_found VALUES(875, 875, 4, 2841, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695478311); INSERT INTO lost_and_found VALUES(875, 875, 4, 2842, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695478312); INSERT INTO lost_and_found VALUES(875, 875, 4, 2843, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695478312); INSERT INTO lost_and_found VALUES(875, 875, 4, 2844, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695478313); INSERT INTO lost_and_found VALUES(875, 875, 4, 2845, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695478313); INSERT INTO lost_and_found VALUES(875, 875, 4, 2846, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695478908); INSERT INTO lost_and_found VALUES(876, 876, 4, 2847, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695478908); INSERT INTO lost_and_found VALUES(876, 876, 4, 2848, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695478908); INSERT INTO lost_and_found VALUES(876, 876, 4, 2849, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695478909); INSERT INTO lost_and_found VALUES(876, 876, 4, 2850, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695478909); INSERT INTO lost_and_found VALUES(876, 876, 4, 2851, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695478910); INSERT INTO lost_and_found VALUES(876, 876, 4, 2852, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695478910); INSERT INTO lost_and_found VALUES(876, 876, 4, 2853, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695478911); INSERT INTO lost_and_found VALUES(876, 876, 4, 2854, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695478911); INSERT INTO lost_and_found VALUES(876, 876, 4, 2855, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695478911); INSERT INTO lost_and_found VALUES(876, 876, 4, 2856, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695478912); INSERT INTO lost_and_found VALUES(876, 876, 4, 2857, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695478912); INSERT INTO lost_and_found VALUES(876, 876, 4, 2858, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695479509); INSERT INTO lost_and_found VALUES(876, 876, 4, 2859, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695479509); INSERT INTO lost_and_found VALUES(876, 876, 4, 2860, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695479510); INSERT INTO lost_and_found VALUES(876, 876, 4, 2861, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695479510); INSERT INTO lost_and_found VALUES(876, 876, 4, 2862, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695479511); INSERT INTO lost_and_found VALUES(876, 876, 4, 2863, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695479511); INSERT INTO lost_and_found VALUES(876, 876, 4, 2864, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695479512); INSERT INTO lost_and_found VALUES(877, 877, 4, 2865, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695479512); INSERT INTO lost_and_found VALUES(877, 877, 4, 2866, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695479513); INSERT INTO lost_and_found VALUES(877, 877, 4, 2867, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695479513); INSERT INTO lost_and_found VALUES(877, 877, 4, 2868, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695479513); INSERT INTO lost_and_found VALUES(877, 877, 4, 2869, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695479514); INSERT INTO lost_and_found VALUES(877, 877, 4, 2870, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695480108); INSERT INTO lost_and_found VALUES(877, 877, 4, 2871, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695480109); INSERT INTO lost_and_found VALUES(877, 877, 4, 2872, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695480110); INSERT INTO lost_and_found VALUES(877, 877, 4, 2873, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695480110); INSERT INTO lost_and_found VALUES(877, 877, 4, 2874, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695480111); INSERT INTO lost_and_found VALUES(877, 877, 4, 2875, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695480111); INSERT INTO lost_and_found VALUES(877, 877, 4, 2876, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695480112); INSERT INTO lost_and_found VALUES(877, 877, 4, 2877, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695480112); INSERT INTO lost_and_found VALUES(877, 877, 4, 2878, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695480112); INSERT INTO lost_and_found VALUES(877, 877, 4, 2879, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695480113); INSERT INTO lost_and_found VALUES(877, 877, 4, 2880, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695480113); INSERT INTO lost_and_found VALUES(877, 877, 4, 2881, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695480114); INSERT INTO lost_and_found VALUES(878, 878, 4, 2882, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695480708); INSERT INTO lost_and_found VALUES(878, 878, 4, 2883, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695480708); INSERT INTO lost_and_found VALUES(878, 878, 4, 2884, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695480709); INSERT INTO lost_and_found VALUES(878, 878, 4, 2885, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695480709); INSERT INTO lost_and_found VALUES(878, 878, 4, 2886, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695480709); INSERT INTO lost_and_found VALUES(878, 878, 4, 2887, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695480710); INSERT INTO lost_and_found VALUES(878, 878, 4, 2888, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695480710); INSERT INTO lost_and_found VALUES(878, 878, 4, 2889, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695480711); INSERT INTO lost_and_found VALUES(878, 878, 4, 2890, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695480711); INSERT INTO lost_and_found VALUES(878, 878, 4, 2891, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695480712); INSERT INTO lost_and_found VALUES(878, 878, 4, 2892, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695480712); INSERT INTO lost_and_found VALUES(878, 878, 4, 2893, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695480713); INSERT INTO lost_and_found VALUES(878, 878, 4, 2894, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695481307); INSERT INTO lost_and_found VALUES(878, 878, 4, 2895, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695481308); INSERT INTO lost_and_found VALUES(878, 878, 4, 2896, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695481308); INSERT INTO lost_and_found VALUES(878, 878, 4, 2897, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695481309); INSERT INTO lost_and_found VALUES(878, 878, 4, 2898, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695481309); INSERT INTO lost_and_found VALUES(879, 879, 4, 2899, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695481309); INSERT INTO lost_and_found VALUES(879, 879, 4, 2900, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695481310); INSERT INTO lost_and_found VALUES(879, 879, 4, 2901, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695481310); INSERT INTO lost_and_found VALUES(879, 879, 4, 2902, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695481311); INSERT INTO lost_and_found VALUES(879, 879, 4, 2903, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695481311); INSERT INTO lost_and_found VALUES(879, 879, 4, 2904, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695481312); INSERT INTO lost_and_found VALUES(879, 879, 4, 2905, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695481312); INSERT INTO lost_and_found VALUES(879, 879, 4, 2906, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695481909); INSERT INTO lost_and_found VALUES(879, 879, 4, 2907, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695481909); INSERT INTO lost_and_found VALUES(879, 879, 4, 2908, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695481909); INSERT INTO lost_and_found VALUES(879, 879, 4, 2909, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695481910); INSERT INTO lost_and_found VALUES(879, 879, 4, 2910, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695481910); INSERT INTO lost_and_found VALUES(879, 879, 4, 2911, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695481911); INSERT INTO lost_and_found VALUES(879, 879, 4, 2912, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695481911); INSERT INTO lost_and_found VALUES(879, 879, 4, 2913, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695481912); INSERT INTO lost_and_found VALUES(879, 879, 4, 2914, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695481912); INSERT INTO lost_and_found VALUES(879, 879, 4, 2915, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695481912); INSERT INTO lost_and_found VALUES(880, 880, 4, 2916, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695481913); INSERT INTO lost_and_found VALUES(880, 880, 4, 2917, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695481913); INSERT INTO lost_and_found VALUES(880, 880, 4, 2918, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695482508); INSERT INTO lost_and_found VALUES(880, 880, 4, 2919, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695482508); INSERT INTO lost_and_found VALUES(880, 880, 4, 2920, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695482509); INSERT INTO lost_and_found VALUES(880, 880, 4, 2921, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695482509); INSERT INTO lost_and_found VALUES(880, 880, 4, 2922, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695482510); INSERT INTO lost_and_found VALUES(880, 880, 4, 2923, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695482510); INSERT INTO lost_and_found VALUES(880, 880, 4, 2924, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695482511); INSERT INTO lost_and_found VALUES(880, 880, 4, 2925, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695482511); INSERT INTO lost_and_found VALUES(880, 880, 4, 2926, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695482511); INSERT INTO lost_and_found VALUES(880, 880, 4, 2927, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695482512); INSERT INTO lost_and_found VALUES(880, 880, 4, 2928, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695482512); INSERT INTO lost_and_found VALUES(880, 880, 4, 2929, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695482513); INSERT INTO lost_and_found VALUES(880, 880, 4, 2930, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695483107); INSERT INTO lost_and_found VALUES(880, 880, 4, 2931, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695483108); INSERT INTO lost_and_found VALUES(880, 880, 4, 2932, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695483108); INSERT INTO lost_and_found VALUES(881, 881, 4, 2933, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695483109); INSERT INTO lost_and_found VALUES(881, 881, 4, 2934, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695483109); INSERT INTO lost_and_found VALUES(881, 881, 4, 2935, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695483109); INSERT INTO lost_and_found VALUES(881, 881, 4, 2936, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695483110); INSERT INTO lost_and_found VALUES(881, 881, 4, 2937, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695483110); INSERT INTO lost_and_found VALUES(881, 881, 4, 2938, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695483111); INSERT INTO lost_and_found VALUES(881, 881, 4, 2939, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695483111); INSERT INTO lost_and_found VALUES(881, 881, 4, 2940, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695483112); INSERT INTO lost_and_found VALUES(881, 881, 4, 2941, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695483112); INSERT INTO lost_and_found VALUES(881, 881, 4, 2942, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695483709); INSERT INTO lost_and_found VALUES(881, 881, 4, 2943, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695483709); INSERT INTO lost_and_found VALUES(881, 881, 4, 2944, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695483710); INSERT INTO lost_and_found VALUES(881, 881, 4, 2945, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695483710); INSERT INTO lost_and_found VALUES(881, 881, 4, 2946, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695483711); INSERT INTO lost_and_found VALUES(881, 881, 4, 2947, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695483711); INSERT INTO lost_and_found VALUES(881, 881, 4, 2948, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695483711); INSERT INTO lost_and_found VALUES(881, 881, 4, 2949, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695483712); INSERT INTO lost_and_found VALUES(882, 882, 4, 2950, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695483712); INSERT INTO lost_and_found VALUES(882, 882, 4, 2951, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695483713); INSERT INTO lost_and_found VALUES(882, 882, 4, 2952, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695483713); INSERT INTO lost_and_found VALUES(882, 882, 4, 2953, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695483714); INSERT INTO lost_and_found VALUES(882, 882, 4, 2954, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695484308); INSERT INTO lost_and_found VALUES(882, 882, 4, 2955, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695484309); INSERT INTO lost_and_found VALUES(882, 882, 4, 2956, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695484309); INSERT INTO lost_and_found VALUES(882, 882, 4, 2957, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695484309); INSERT INTO lost_and_found VALUES(882, 882, 4, 2958, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695484310); INSERT INTO lost_and_found VALUES(882, 882, 4, 2959, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695484310); INSERT INTO lost_and_found VALUES(882, 882, 4, 2960, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695484311); INSERT INTO lost_and_found VALUES(882, 882, 4, 2961, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695484311); INSERT INTO lost_and_found VALUES(882, 882, 4, 2962, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695484312); INSERT INTO lost_and_found VALUES(882, 882, 4, 2963, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695484312); INSERT INTO lost_and_found VALUES(882, 882, 4, 2964, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695484312); INSERT INTO lost_and_found VALUES(882, 882, 4, 2965, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695484313); INSERT INTO lost_and_found VALUES(882, 882, 4, 2966, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695484908); INSERT INTO lost_and_found VALUES(883, 883, 4, 2967, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695484908); INSERT INTO lost_and_found VALUES(883, 883, 4, 2968, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695484908); INSERT INTO lost_and_found VALUES(883, 883, 4, 2969, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695484909); INSERT INTO lost_and_found VALUES(883, 883, 4, 2970, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695484909); INSERT INTO lost_and_found VALUES(883, 883, 4, 2971, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695484910); INSERT INTO lost_and_found VALUES(883, 883, 4, 2972, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695484910); INSERT INTO lost_and_found VALUES(883, 883, 4, 2973, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695484911); INSERT INTO lost_and_found VALUES(883, 883, 4, 2974, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695484911); INSERT INTO lost_and_found VALUES(883, 883, 4, 2975, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695484911); INSERT INTO lost_and_found VALUES(883, 883, 4, 2976, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695484912); INSERT INTO lost_and_found VALUES(883, 883, 4, 2977, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695484912); INSERT INTO lost_and_found VALUES(883, 883, 4, 2978, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695485513); INSERT INTO lost_and_found VALUES(883, 883, 4, 2979, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695485514); INSERT INTO lost_and_found VALUES(883, 883, 4, 2980, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695485515); INSERT INTO lost_and_found VALUES(883, 883, 4, 2981, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695485516); INSERT INTO lost_and_found VALUES(883, 883, 4, 2982, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695485516); INSERT INTO lost_and_found VALUES(883, 883, 4, 2983, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695485517); INSERT INTO lost_and_found VALUES(883, 883, 4, 2984, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695485517); INSERT INTO lost_and_found VALUES(884, 884, 4, 2985, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695485518); INSERT INTO lost_and_found VALUES(884, 884, 4, 2986, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695485518); INSERT INTO lost_and_found VALUES(884, 884, 4, 2987, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695485518); INSERT INTO lost_and_found VALUES(884, 884, 4, 2988, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695485519); INSERT INTO lost_and_found VALUES(884, 884, 4, 2989, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695485519); INSERT INTO lost_and_found VALUES(884, 884, 4, 2990, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695486109); INSERT INTO lost_and_found VALUES(884, 884, 4, 2991, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695486110); INSERT INTO lost_and_found VALUES(884, 884, 4, 2992, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695486110); INSERT INTO lost_and_found VALUES(884, 884, 4, 2993, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695486111); INSERT INTO lost_and_found VALUES(884, 884, 4, 2994, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695486111); INSERT INTO lost_and_found VALUES(884, 884, 4, 2995, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695486111); INSERT INTO lost_and_found VALUES(884, 884, 4, 2996, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695486112); INSERT INTO lost_and_found VALUES(884, 884, 4, 2997, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695486112); INSERT INTO lost_and_found VALUES(884, 884, 4, 2998, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695486113); INSERT INTO lost_and_found VALUES(884, 884, 4, 2999, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695486113); INSERT INTO lost_and_found VALUES(884, 884, 4, 3000, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695486114); INSERT INTO lost_and_found VALUES(884, 884, 4, 3001, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695486114); INSERT INTO lost_and_found VALUES(885, 885, 4, 3002, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695486708); INSERT INTO lost_and_found VALUES(885, 885, 4, 3003, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695486708); INSERT INTO lost_and_found VALUES(885, 885, 4, 3004, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695486709); INSERT INTO lost_and_found VALUES(885, 885, 4, 3005, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695486709); INSERT INTO lost_and_found VALUES(885, 885, 4, 3006, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695486709); INSERT INTO lost_and_found VALUES(885, 885, 4, 3007, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695486710); INSERT INTO lost_and_found VALUES(885, 885, 4, 3008, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695486710); INSERT INTO lost_and_found VALUES(885, 885, 4, 3009, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695486711); INSERT INTO lost_and_found VALUES(885, 885, 4, 3010, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695486711); INSERT INTO lost_and_found VALUES(885, 885, 4, 3011, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695486712); INSERT INTO lost_and_found VALUES(885, 885, 4, 3012, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695486712); INSERT INTO lost_and_found VALUES(885, 885, 4, 3013, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695486712); INSERT INTO lost_and_found VALUES(885, 885, 4, 3014, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695487307); INSERT INTO lost_and_found VALUES(885, 885, 4, 3015, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695487308); INSERT INTO lost_and_found VALUES(885, 885, 4, 3016, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695487309); INSERT INTO lost_and_found VALUES(885, 885, 4, 3017, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695487309); INSERT INTO lost_and_found VALUES(885, 885, 4, 3018, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695487309); INSERT INTO lost_and_found VALUES(886, 886, 4, 3019, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695487310); INSERT INTO lost_and_found VALUES(886, 886, 4, 3020, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695487310); INSERT INTO lost_and_found VALUES(886, 886, 4, 3021, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695487311); INSERT INTO lost_and_found VALUES(886, 886, 4, 3022, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695487311); INSERT INTO lost_and_found VALUES(886, 886, 4, 3023, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695487312); INSERT INTO lost_and_found VALUES(886, 886, 4, 3024, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695487312); INSERT INTO lost_and_found VALUES(886, 886, 4, 3025, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695487313); INSERT INTO lost_and_found VALUES(886, 886, 4, 3026, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695487909); INSERT INTO lost_and_found VALUES(886, 886, 4, 3027, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695487909); INSERT INTO lost_and_found VALUES(886, 886, 4, 3028, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695487909); INSERT INTO lost_and_found VALUES(886, 886, 4, 3029, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695487910); INSERT INTO lost_and_found VALUES(886, 886, 4, 3030, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695487910); INSERT INTO lost_and_found VALUES(886, 886, 4, 3031, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695487911); INSERT INTO lost_and_found VALUES(886, 886, 4, 3032, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695487911); INSERT INTO lost_and_found VALUES(886, 886, 4, 3033, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695487912); INSERT INTO lost_and_found VALUES(886, 886, 4, 3034, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695487912); INSERT INTO lost_and_found VALUES(886, 886, 4, 3035, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695487912); INSERT INTO lost_and_found VALUES(887, 887, 4, 3036, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695487913); INSERT INTO lost_and_found VALUES(887, 887, 4, 3037, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695487913); INSERT INTO lost_and_found VALUES(887, 887, 4, 3038, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695488508); INSERT INTO lost_and_found VALUES(887, 887, 4, 3039, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695488509); INSERT INTO lost_and_found VALUES(887, 887, 4, 3040, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695488509); INSERT INTO lost_and_found VALUES(887, 887, 4, 3041, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695488510); INSERT INTO lost_and_found VALUES(887, 887, 4, 3042, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695488510); INSERT INTO lost_and_found VALUES(887, 887, 4, 3043, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695488511); INSERT INTO lost_and_found VALUES(887, 887, 4, 3044, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695488512); INSERT INTO lost_and_found VALUES(887, 887, 4, 3045, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695488512); INSERT INTO lost_and_found VALUES(887, 887, 4, 3046, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695488513); INSERT INTO lost_and_found VALUES(887, 887, 4, 3047, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695488513); INSERT INTO lost_and_found VALUES(887, 887, 4, 3048, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695488514); INSERT INTO lost_and_found VALUES(887, 887, 4, 3049, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695488514); INSERT INTO lost_and_found VALUES(887, 887, 4, 3050, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695489107); INSERT INTO lost_and_found VALUES(887, 887, 4, 3051, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695489108); INSERT INTO lost_and_found VALUES(887, 887, 4, 3052, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695489109); INSERT INTO lost_and_found VALUES(888, 888, 4, 3053, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695489109); INSERT INTO lost_and_found VALUES(888, 888, 4, 3054, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695489110); INSERT INTO lost_and_found VALUES(888, 888, 4, 3055, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695489110); INSERT INTO lost_and_found VALUES(888, 888, 4, 3056, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695489111); INSERT INTO lost_and_found VALUES(888, 888, 4, 3057, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695489111); INSERT INTO lost_and_found VALUES(888, 888, 4, 3058, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695489112); INSERT INTO lost_and_found VALUES(888, 888, 4, 3059, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695489112); INSERT INTO lost_and_found VALUES(888, 888, 4, 3060, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695489112); INSERT INTO lost_and_found VALUES(888, 888, 4, 3061, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695489113); INSERT INTO lost_and_found VALUES(888, 888, 4, 3062, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695489709); INSERT INTO lost_and_found VALUES(888, 888, 4, 3063, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695489709); INSERT INTO lost_and_found VALUES(888, 888, 4, 3064, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695489710); INSERT INTO lost_and_found VALUES(888, 888, 4, 3065, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695489710); INSERT INTO lost_and_found VALUES(888, 888, 4, 3066, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695489711); INSERT INTO lost_and_found VALUES(888, 888, 4, 3067, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695489711); INSERT INTO lost_and_found VALUES(888, 888, 4, 3068, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695489711); INSERT INTO lost_and_found VALUES(888, 888, 4, 3069, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695489712); INSERT INTO lost_and_found VALUES(889, 889, 4, 3070, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695489712); INSERT INTO lost_and_found VALUES(889, 889, 4, 3071, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695489713); INSERT INTO lost_and_found VALUES(889, 889, 4, 3072, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695489713); INSERT INTO lost_and_found VALUES(889, 889, 4, 3073, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695489714); INSERT INTO lost_and_found VALUES(889, 889, 4, 3074, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695490308); INSERT INTO lost_and_found VALUES(889, 889, 4, 3075, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695490309); INSERT INTO lost_and_found VALUES(889, 889, 4, 3076, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695490309); INSERT INTO lost_and_found VALUES(889, 889, 4, 3077, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695490309); INSERT INTO lost_and_found VALUES(889, 889, 4, 3078, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695490310); INSERT INTO lost_and_found VALUES(889, 889, 4, 3079, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695490310); INSERT INTO lost_and_found VALUES(889, 889, 4, 3080, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695490311); INSERT INTO lost_and_found VALUES(889, 889, 4, 3081, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695490311); INSERT INTO lost_and_found VALUES(889, 889, 4, 3082, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695490312); INSERT INTO lost_and_found VALUES(889, 889, 4, 3083, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695490312); INSERT INTO lost_and_found VALUES(889, 889, 4, 3084, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695490313); INSERT INTO lost_and_found VALUES(889, 889, 4, 3085, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695490313); INSERT INTO lost_and_found VALUES(889, 889, 4, 3086, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695490908); INSERT INTO lost_and_found VALUES(890, 890, 4, 3087, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695490908); INSERT INTO lost_and_found VALUES(890, 890, 4, 3088, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695490908); INSERT INTO lost_and_found VALUES(890, 890, 4, 3089, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695490909); INSERT INTO lost_and_found VALUES(890, 890, 4, 3090, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695490909); INSERT INTO lost_and_found VALUES(890, 890, 4, 3091, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695490910); INSERT INTO lost_and_found VALUES(890, 890, 4, 3092, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695490910); INSERT INTO lost_and_found VALUES(890, 890, 4, 3093, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695490911); INSERT INTO lost_and_found VALUES(890, 890, 4, 3094, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695490911); INSERT INTO lost_and_found VALUES(890, 890, 4, 3095, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695490911); INSERT INTO lost_and_found VALUES(890, 890, 4, 3096, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695490912); INSERT INTO lost_and_found VALUES(890, 890, 4, 3097, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695490912); INSERT INTO lost_and_found VALUES(890, 890, 4, 3098, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695491509); INSERT INTO lost_and_found VALUES(890, 890, 4, 3099, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695491509); INSERT INTO lost_and_found VALUES(890, 890, 4, 3100, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695491510); INSERT INTO lost_and_found VALUES(890, 890, 4, 3101, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695491510); INSERT INTO lost_and_found VALUES(890, 890, 4, 3102, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695491511); INSERT INTO lost_and_found VALUES(890, 890, 4, 3103, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695491511); INSERT INTO lost_and_found VALUES(890, 890, 4, 3104, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695491512); INSERT INTO lost_and_found VALUES(891, 891, 4, 3105, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695491512); INSERT INTO lost_and_found VALUES(891, 891, 4, 3106, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695491513); INSERT INTO lost_and_found VALUES(891, 891, 4, 3107, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695491513); INSERT INTO lost_and_found VALUES(891, 891, 4, 3108, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695491513); INSERT INTO lost_and_found VALUES(891, 891, 4, 3109, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695491514); INSERT INTO lost_and_found VALUES(891, 891, 4, 3110, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695492108); INSERT INTO lost_and_found VALUES(891, 891, 4, 3111, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695492109); INSERT INTO lost_and_found VALUES(891, 891, 4, 3112, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695492109); INSERT INTO lost_and_found VALUES(891, 891, 4, 3113, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695492110); INSERT INTO lost_and_found VALUES(891, 891, 4, 3114, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695492110); INSERT INTO lost_and_found VALUES(891, 891, 4, 3115, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695492111); INSERT INTO lost_and_found VALUES(891, 891, 4, 3116, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695492111); INSERT INTO lost_and_found VALUES(891, 891, 4, 3117, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695492111); INSERT INTO lost_and_found VALUES(891, 891, 4, 3118, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695492112); INSERT INTO lost_and_found VALUES(891, 891, 4, 3119, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695492112); INSERT INTO lost_and_found VALUES(891, 891, 4, 3120, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695492113); INSERT INTO lost_and_found VALUES(891, 891, 4, 3121, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695492113); INSERT INTO lost_and_found VALUES(892, 892, 4, 3122, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695492708); INSERT INTO lost_and_found VALUES(892, 892, 4, 3123, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695492708); INSERT INTO lost_and_found VALUES(892, 892, 4, 3124, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695492709); INSERT INTO lost_and_found VALUES(892, 892, 4, 3125, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695492709); INSERT INTO lost_and_found VALUES(892, 892, 4, 3126, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695492710); INSERT INTO lost_and_found VALUES(892, 892, 4, 3127, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695492710); INSERT INTO lost_and_found VALUES(892, 892, 4, 3128, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695492710); INSERT INTO lost_and_found VALUES(892, 892, 4, 3129, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695492711); INSERT INTO lost_and_found VALUES(892, 892, 4, 3130, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695492711); INSERT INTO lost_and_found VALUES(892, 892, 4, 3131, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695492712); INSERT INTO lost_and_found VALUES(892, 892, 4, 3132, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695492712); INSERT INTO lost_and_found VALUES(892, 892, 4, 3133, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695492713); INSERT INTO lost_and_found VALUES(892, 892, 4, 3134, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695493307); INSERT INTO lost_and_found VALUES(892, 892, 4, 3135, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695493307); INSERT INTO lost_and_found VALUES(892, 892, 4, 3136, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695493308); INSERT INTO lost_and_found VALUES(892, 892, 4, 3137, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695493308); INSERT INTO lost_and_found VALUES(892, 892, 4, 3138, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695493309); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486708, 3002, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486708, 3003, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486709, 3004, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486709, 3005, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486709, 3006, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486710, 3007, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486710, 3008, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486711, 3009, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486711, 3010, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486712, 3011, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486712, 3012, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695486712, 3013, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487307, 3014, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487308, 3015, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487309, 3016, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487309, 3017, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487309, 3018, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487310, 3019, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487310, 3020, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487311, 3021, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487311, 3022, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487312, 3023, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487312, 3024, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487313, 3025, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487909, 3026, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487909, 3027, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487909, 3028, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487910, 3029, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487910, 3030, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487911, 3031, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487911, 3032, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487912, 3033, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487912, 3034, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487912, 3035, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487913, 3036, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695487913, 3037, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488508, 3038, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488509, 3039, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488509, 3040, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488510, 3041, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488510, 3042, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488511, 3043, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488512, 3044, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488512, 3045, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488513, 3046, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488513, 3047, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488514, 3048, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695488514, 3049, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489107, 3050, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489108, 3051, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489109, 3052, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489109, 3053, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489110, 3054, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489110, 3055, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489111, 3056, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489111, 3057, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489112, 3058, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489112, 3059, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489112, 3060, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489113, 3061, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489709, 3062, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489709, 3063, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489710, 3064, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489710, 3065, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489711, 3066, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489711, 3067, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489711, 3068, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489712, 3069, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489712, 3070, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489713, 3071, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489713, 3072, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695489714, 3073, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490308, 3074, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490309, 3075, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490309, 3076, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490309, 3077, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490310, 3078, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490310, 3079, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490311, 3080, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490311, 3081, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490312, 3082, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490312, 3083, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490313, 3084, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490313, 3085, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490908, 3086, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490908, 3087, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490908, 3088, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490909, 3089, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490909, 3090, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490910, 3091, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490910, 3092, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490911, 3093, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490911, 3094, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490911, 3095, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490912, 3096, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695490912, 3097, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491509, 3098, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491509, 3099, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491510, 3100, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491510, 3101, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491511, 3102, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491511, 3103, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491512, 3104, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491512, 3105, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491513, 3106, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491513, 3107, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491513, 3108, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695491514, 3109, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492108, 3110, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492109, 3111, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492109, 3112, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492110, 3113, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492110, 3114, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492111, 3115, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492111, 3116, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492111, 3117, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492112, 3118, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492112, 3119, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492113, 3120, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492113, 3121, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492708, 3122, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492708, 3123, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492709, 3124, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492709, 3125, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492710, 3126, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492710, 3127, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492710, 3128, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492711, 3129, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492711, 3130, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492712, 3131, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492712, 3132, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695492713, 3133, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493307, 3134, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493307, 3135, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493308, 3136, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493308, 3137, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493309, 3138, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493309, 3139, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493310, 3140, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493310, 3141, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493311, 3142, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493311, 3143, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493311, 3144, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493312, 3145, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493909, 3146, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493909, 3147, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493909, 3148, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493910, 3149, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493910, 3150, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493911, 3151, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493911, 3152, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493912, 3153, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493912, 3154, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493913, 3155, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493913, 3156, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695493913, 3157, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494508, 3158, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494508, 3159, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494509, 3160, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494509, 3161, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494510, 3162, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494510, 3163, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494511, 3164, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494511, 3165, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494511, 3166, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494512, 3167, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494512, 3168, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695494513, 3169, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495107, 3170, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495108, 3171, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495108, 3172, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495109, 3173, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495109, 3174, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495110, 3175, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495110, 3176, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495110, 3177, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495111, 3178, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495111, 3179, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495112, 3180, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495112, 3181, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495709, 3182, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495709, 3183, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495710, 3184, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495710, 3185, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495711, 3186, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495711, 3187, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495711, 3188, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495712, 3189, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495712, 3190, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495713, 3191, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495713, 3192, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695495714, 3193, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496308, 3194, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496309, 3195, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496309, 3196, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496309, 3197, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496310, 3198, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496310, 3199, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496311, 3200, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496311, 3201, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496312, 3202, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496312, 3203, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496313, 3204, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496313, 3205, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496908, 3206, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496908, 3207, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496908, 3208, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496909, 3209, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496909, 3210, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496910, 3211, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496910, 3212, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496911, 3213, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496911, 3214, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496912, 3215, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496912, 3216, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695496912, 3217, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497509, 3218, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497509, 3219, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497510, 3220, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497510, 3221, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497511, 3222, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497511, 3223, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497512, 3224, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497512, 3225, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497512, 3226, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497513, 3227, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497513, 3228, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695497514, 3229, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498108, 3230, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498109, 3231, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498109, 3232, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498110, 3233, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498110, 3234, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498111, 3235, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498111, 3236, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498111, 3237, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498112, 3238, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498112, 3239, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498113, 3240, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498113, 3241, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498708, 3242, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498708, 3243, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498709, 3244, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498709, 3245, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498709, 3246, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498710, 3247, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498710, 3248, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498711, 3249, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498711, 3250, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498712, 3251, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498712, 3252, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695498713, 3253, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499307, 3254, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499308, 3255, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499308, 3256, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499308, 3257, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499309, 3258, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499309, 3259, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499310, 3260, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499310, 3261, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499311, 3262, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499311, 3263, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499312, 3264, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499312, 3265, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499910, 3266, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499910, 3267, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499911, 3268, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499911, 3269, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499912, 3270, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499912, 3271, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499912, 3272, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499913, 3273, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499913, 3274, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499914, 3275, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499914, 3276, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695499915, 3277, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500508, 3278, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500508, 3279, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500509, 3280, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500509, 3281, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500510, 3282, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500510, 3283, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500511, 3284, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500511, 3285, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500512, 3286, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500512, 3287, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500512, 3288, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695500513, 3289, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501107, 3290, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501108, 3291, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501108, 3292, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501109, 3293, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501110, 3294, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501110, 3295, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501111, 3296, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501112, 3297, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501112, 3298, NULL, NULL); INSERT INTO lost_and_found VALUES(893, 893, 2, NULL, 1695501113, 3299, NULL, NULL); INSERT INTO lost_and_found VALUES(894, 894, 4, 3139, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695493309); INSERT INTO lost_and_found VALUES(894, 894, 4, 3140, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695493310); INSERT INTO lost_and_found VALUES(894, 894, 4, 3141, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695493310); INSERT INTO lost_and_found VALUES(894, 894, 4, 3142, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695493311); INSERT INTO lost_and_found VALUES(894, 894, 4, 3143, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695493311); INSERT INTO lost_and_found VALUES(894, 894, 4, 3144, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695493311); INSERT INTO lost_and_found VALUES(894, 894, 4, 3145, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695493312); INSERT INTO lost_and_found VALUES(894, 894, 4, 3146, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695493909); INSERT INTO lost_and_found VALUES(894, 894, 4, 3147, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695493909); INSERT INTO lost_and_found VALUES(894, 894, 4, 3148, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695493909); INSERT INTO lost_and_found VALUES(894, 894, 4, 3149, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695493910); INSERT INTO lost_and_found VALUES(894, 894, 4, 3150, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695493910); INSERT INTO lost_and_found VALUES(894, 894, 4, 3151, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695493911); INSERT INTO lost_and_found VALUES(894, 894, 4, 3152, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695493911); INSERT INTO lost_and_found VALUES(894, 894, 4, 3153, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695493912); INSERT INTO lost_and_found VALUES(894, 894, 4, 3154, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695493912); INSERT INTO lost_and_found VALUES(894, 894, 4, 3155, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695493913); INSERT INTO lost_and_found VALUES(895, 895, 4, 3156, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695493913); INSERT INTO lost_and_found VALUES(895, 895, 4, 3157, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695493913); INSERT INTO lost_and_found VALUES(895, 895, 4, 3158, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695494508); INSERT INTO lost_and_found VALUES(895, 895, 4, 3159, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695494508); INSERT INTO lost_and_found VALUES(895, 895, 4, 3160, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695494509); INSERT INTO lost_and_found VALUES(895, 895, 4, 3161, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695494509); INSERT INTO lost_and_found VALUES(895, 895, 4, 3162, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695494510); INSERT INTO lost_and_found VALUES(895, 895, 4, 3163, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695494510); INSERT INTO lost_and_found VALUES(895, 895, 4, 3164, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695494511); INSERT INTO lost_and_found VALUES(895, 895, 4, 3165, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695494511); INSERT INTO lost_and_found VALUES(895, 895, 4, 3166, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695494511); INSERT INTO lost_and_found VALUES(895, 895, 4, 3167, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695494512); INSERT INTO lost_and_found VALUES(895, 895, 4, 3168, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695494512); INSERT INTO lost_and_found VALUES(895, 895, 4, 3169, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695494513); INSERT INTO lost_and_found VALUES(895, 895, 4, 3170, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695495107); INSERT INTO lost_and_found VALUES(895, 895, 4, 3171, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695495108); INSERT INTO lost_and_found VALUES(895, 895, 4, 3172, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695495108); INSERT INTO lost_and_found VALUES(896, 896, 4, 3173, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695495109); INSERT INTO lost_and_found VALUES(896, 896, 4, 3174, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695495109); INSERT INTO lost_and_found VALUES(896, 896, 4, 3175, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695495110); INSERT INTO lost_and_found VALUES(896, 896, 4, 3176, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695495110); INSERT INTO lost_and_found VALUES(896, 896, 4, 3177, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695495110); INSERT INTO lost_and_found VALUES(896, 896, 4, 3178, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695495111); INSERT INTO lost_and_found VALUES(896, 896, 4, 3179, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695495111); INSERT INTO lost_and_found VALUES(896, 896, 4, 3180, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695495112); INSERT INTO lost_and_found VALUES(896, 896, 4, 3181, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695495112); INSERT INTO lost_and_found VALUES(896, 896, 4, 3182, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695495709); INSERT INTO lost_and_found VALUES(896, 896, 4, 3183, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695495709); INSERT INTO lost_and_found VALUES(896, 896, 4, 3184, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695495710); INSERT INTO lost_and_found VALUES(896, 896, 4, 3185, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695495710); INSERT INTO lost_and_found VALUES(896, 896, 4, 3186, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695495711); INSERT INTO lost_and_found VALUES(896, 896, 4, 3187, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695495711); INSERT INTO lost_and_found VALUES(896, 896, 4, 3188, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695495711); INSERT INTO lost_and_found VALUES(896, 896, 4, 3189, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695495712); INSERT INTO lost_and_found VALUES(897, 897, 4, 3190, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695495712); INSERT INTO lost_and_found VALUES(897, 897, 4, 3191, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695495713); INSERT INTO lost_and_found VALUES(897, 897, 4, 3192, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695495713); INSERT INTO lost_and_found VALUES(897, 897, 4, 3193, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695495714); INSERT INTO lost_and_found VALUES(897, 897, 4, 3194, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695496308); INSERT INTO lost_and_found VALUES(897, 897, 4, 3195, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695496309); INSERT INTO lost_and_found VALUES(897, 897, 4, 3196, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695496309); INSERT INTO lost_and_found VALUES(897, 897, 4, 3197, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695496309); INSERT INTO lost_and_found VALUES(897, 897, 4, 3198, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695496310); INSERT INTO lost_and_found VALUES(897, 897, 4, 3199, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695496310); INSERT INTO lost_and_found VALUES(897, 897, 4, 3200, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695496311); INSERT INTO lost_and_found VALUES(897, 897, 4, 3201, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695496311); INSERT INTO lost_and_found VALUES(897, 897, 4, 3202, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695496312); INSERT INTO lost_and_found VALUES(897, 897, 4, 3203, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695496312); INSERT INTO lost_and_found VALUES(897, 897, 4, 3204, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695496313); INSERT INTO lost_and_found VALUES(897, 897, 4, 3205, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695496313); INSERT INTO lost_and_found VALUES(897, 897, 4, 3206, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695496908); INSERT INTO lost_and_found VALUES(898, 898, 4, 3207, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695496908); INSERT INTO lost_and_found VALUES(898, 898, 4, 3208, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695496908); INSERT INTO lost_and_found VALUES(898, 898, 4, 3209, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695496909); INSERT INTO lost_and_found VALUES(898, 898, 4, 3210, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695496909); INSERT INTO lost_and_found VALUES(898, 898, 4, 3211, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695496910); INSERT INTO lost_and_found VALUES(898, 898, 4, 3212, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695496910); INSERT INTO lost_and_found VALUES(898, 898, 4, 3213, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695496911); INSERT INTO lost_and_found VALUES(898, 898, 4, 3214, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695496911); INSERT INTO lost_and_found VALUES(898, 898, 4, 3215, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695496912); INSERT INTO lost_and_found VALUES(898, 898, 4, 3216, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695496912); INSERT INTO lost_and_found VALUES(898, 898, 4, 3217, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695496912); INSERT INTO lost_and_found VALUES(898, 898, 4, 3218, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695497509); INSERT INTO lost_and_found VALUES(898, 898, 4, 3219, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695497509); INSERT INTO lost_and_found VALUES(898, 898, 4, 3220, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695497510); INSERT INTO lost_and_found VALUES(898, 898, 4, 3221, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695497510); INSERT INTO lost_and_found VALUES(898, 898, 4, 3222, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695497511); INSERT INTO lost_and_found VALUES(898, 898, 4, 3223, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695497511); INSERT INTO lost_and_found VALUES(898, 898, 4, 3224, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695497512); INSERT INTO lost_and_found VALUES(899, 899, 4, 3225, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695497512); INSERT INTO lost_and_found VALUES(899, 899, 4, 3226, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695497512); INSERT INTO lost_and_found VALUES(899, 899, 4, 3227, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695497513); INSERT INTO lost_and_found VALUES(899, 899, 4, 3228, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695497513); INSERT INTO lost_and_found VALUES(899, 899, 4, 3229, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695497514); INSERT INTO lost_and_found VALUES(899, 899, 4, 3230, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695498108); INSERT INTO lost_and_found VALUES(899, 899, 4, 3231, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695498109); INSERT INTO lost_and_found VALUES(899, 899, 4, 3232, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695498109); INSERT INTO lost_and_found VALUES(899, 899, 4, 3233, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695498110); INSERT INTO lost_and_found VALUES(899, 899, 4, 3234, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695498110); INSERT INTO lost_and_found VALUES(899, 899, 4, 3235, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695498111); INSERT INTO lost_and_found VALUES(899, 899, 4, 3236, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695498111); INSERT INTO lost_and_found VALUES(899, 899, 4, 3237, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695498111); INSERT INTO lost_and_found VALUES(899, 899, 4, 3238, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695498112); INSERT INTO lost_and_found VALUES(899, 899, 4, 3239, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695498112); INSERT INTO lost_and_found VALUES(899, 899, 4, 3240, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695498113); INSERT INTO lost_and_found VALUES(899, 899, 4, 3241, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695498113); INSERT INTO lost_and_found VALUES(900, 900, 4, 3242, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695498708); INSERT INTO lost_and_found VALUES(900, 900, 4, 3243, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695498708); INSERT INTO lost_and_found VALUES(900, 900, 4, 3244, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695498709); INSERT INTO lost_and_found VALUES(900, 900, 4, 3245, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695498709); INSERT INTO lost_and_found VALUES(900, 900, 4, 3246, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695498709); INSERT INTO lost_and_found VALUES(900, 900, 4, 3247, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695498710); INSERT INTO lost_and_found VALUES(900, 900, 4, 3248, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695498710); INSERT INTO lost_and_found VALUES(900, 900, 4, 3249, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695498711); INSERT INTO lost_and_found VALUES(900, 900, 4, 3250, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695498711); INSERT INTO lost_and_found VALUES(900, 900, 4, 3251, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695498712); INSERT INTO lost_and_found VALUES(900, 900, 4, 3252, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695498712); INSERT INTO lost_and_found VALUES(900, 900, 4, 3253, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695498713); INSERT INTO lost_and_found VALUES(900, 900, 4, 3254, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695499307); INSERT INTO lost_and_found VALUES(900, 900, 4, 3255, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695499308); INSERT INTO lost_and_found VALUES(900, 900, 4, 3256, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695499308); INSERT INTO lost_and_found VALUES(900, 900, 4, 3257, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695499308); INSERT INTO lost_and_found VALUES(900, 900, 4, 3258, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695499309); INSERT INTO lost_and_found VALUES(901, 901, 4, 3259, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695499309); INSERT INTO lost_and_found VALUES(901, 901, 4, 3260, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695499310); INSERT INTO lost_and_found VALUES(901, 901, 4, 3261, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695499310); INSERT INTO lost_and_found VALUES(901, 901, 4, 3262, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695499311); INSERT INTO lost_and_found VALUES(901, 901, 4, 3263, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695499311); INSERT INTO lost_and_found VALUES(901, 901, 4, 3264, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695499312); INSERT INTO lost_and_found VALUES(901, 901, 4, 3265, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695499312); INSERT INTO lost_and_found VALUES(901, 901, 4, 3266, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695499910); INSERT INTO lost_and_found VALUES(901, 901, 4, 3267, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695499910); INSERT INTO lost_and_found VALUES(901, 901, 4, 3268, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695499911); INSERT INTO lost_and_found VALUES(901, 901, 4, 3269, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695499911); INSERT INTO lost_and_found VALUES(901, 901, 4, 3270, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695499912); INSERT INTO lost_and_found VALUES(901, 901, 4, 3271, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695499912); INSERT INTO lost_and_found VALUES(901, 901, 4, 3272, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695499912); INSERT INTO lost_and_found VALUES(901, 901, 4, 3273, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695499913); INSERT INTO lost_and_found VALUES(901, 901, 4, 3274, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695499913); INSERT INTO lost_and_found VALUES(901, 901, 4, 3275, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695499914); INSERT INTO lost_and_found VALUES(902, 902, 4, 3276, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695499914); INSERT INTO lost_and_found VALUES(902, 902, 4, 3277, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695499915); INSERT INTO lost_and_found VALUES(902, 902, 4, 3278, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695500508); INSERT INTO lost_and_found VALUES(902, 902, 4, 3279, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695500508); INSERT INTO lost_and_found VALUES(902, 902, 4, 3280, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695500509); INSERT INTO lost_and_found VALUES(902, 902, 4, 3281, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695500509); INSERT INTO lost_and_found VALUES(902, 902, 4, 3282, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695500510); INSERT INTO lost_and_found VALUES(902, 902, 4, 3283, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695500510); INSERT INTO lost_and_found VALUES(902, 902, 4, 3284, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695500511); INSERT INTO lost_and_found VALUES(902, 902, 4, 3285, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695500511); INSERT INTO lost_and_found VALUES(902, 902, 4, 3286, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695500512); INSERT INTO lost_and_found VALUES(902, 902, 4, 3287, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695500512); INSERT INTO lost_and_found VALUES(902, 902, 4, 3288, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695500512); INSERT INTO lost_and_found VALUES(902, 902, 4, 3289, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695500513); INSERT INTO lost_and_found VALUES(902, 902, 4, 3290, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695501107); INSERT INTO lost_and_found VALUES(902, 902, 4, 3291, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695501108); INSERT INTO lost_and_found VALUES(902, 902, 4, 3292, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695501108); INSERT INTO lost_and_found VALUES(903, 903, 4, 3293, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695501109); INSERT INTO lost_and_found VALUES(903, 903, 4, 3294, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695501110); INSERT INTO lost_and_found VALUES(903, 903, 4, 3295, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695501110); INSERT INTO lost_and_found VALUES(903, 903, 4, 3296, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695501111); INSERT INTO lost_and_found VALUES(903, 903, 4, 3297, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695501112); INSERT INTO lost_and_found VALUES(903, 903, 4, 3298, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695501112); INSERT INTO lost_and_found VALUES(903, 903, 4, 3299, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695501113); INSERT INTO lost_and_found VALUES(903, 903, 4, 3300, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695501113); INSERT INTO lost_and_found VALUES(903, 903, 4, 3301, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695501114); INSERT INTO lost_and_found VALUES(903, 903, 4, 3302, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695501709); INSERT INTO lost_and_found VALUES(903, 903, 4, 3303, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695501709); INSERT INTO lost_and_found VALUES(903, 903, 4, 3304, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695501710); INSERT INTO lost_and_found VALUES(903, 903, 4, 3305, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695501710); INSERT INTO lost_and_found VALUES(903, 903, 4, 3306, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695501711); INSERT INTO lost_and_found VALUES(903, 903, 4, 3307, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695501711); INSERT INTO lost_and_found VALUES(903, 903, 4, 3308, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695501711); INSERT INTO lost_and_found VALUES(903, 903, 4, 3309, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695501712); INSERT INTO lost_and_found VALUES(904, 904, 4, 3310, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695501712); INSERT INTO lost_and_found VALUES(904, 904, 4, 3311, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695501713); INSERT INTO lost_and_found VALUES(904, 904, 4, 3312, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695501713); INSERT INTO lost_and_found VALUES(904, 904, 4, 3313, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695501714); INSERT INTO lost_and_found VALUES(904, 904, 4, 3314, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695502308); INSERT INTO lost_and_found VALUES(904, 904, 4, 3315, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695502309); INSERT INTO lost_and_found VALUES(904, 904, 4, 3316, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695502309); INSERT INTO lost_and_found VALUES(904, 904, 4, 3317, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695502309); INSERT INTO lost_and_found VALUES(904, 904, 4, 3318, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695502310); INSERT INTO lost_and_found VALUES(904, 904, 4, 3319, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695502310); INSERT INTO lost_and_found VALUES(904, 904, 4, 3320, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695502311); INSERT INTO lost_and_found VALUES(904, 904, 4, 3321, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695502311); INSERT INTO lost_and_found VALUES(904, 904, 4, 3322, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695502312); INSERT INTO lost_and_found VALUES(904, 904, 4, 3323, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695502312); INSERT INTO lost_and_found VALUES(904, 904, 4, 3324, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695502312); INSERT INTO lost_and_found VALUES(904, 904, 4, 3325, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695502313); INSERT INTO lost_and_found VALUES(904, 904, 4, 3326, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695502908); INSERT INTO lost_and_found VALUES(905, 905, 4, 3327, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695502908); INSERT INTO lost_and_found VALUES(905, 905, 4, 3328, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695502909); INSERT INTO lost_and_found VALUES(905, 905, 4, 3329, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695502909); INSERT INTO lost_and_found VALUES(905, 905, 4, 3330, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695502910); INSERT INTO lost_and_found VALUES(905, 905, 4, 3331, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695502910); INSERT INTO lost_and_found VALUES(905, 905, 4, 3332, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695502911); INSERT INTO lost_and_found VALUES(905, 905, 4, 3333, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695502911); INSERT INTO lost_and_found VALUES(905, 905, 4, 3334, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695502912); INSERT INTO lost_and_found VALUES(905, 905, 4, 3335, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695502912); INSERT INTO lost_and_found VALUES(905, 905, 4, 3336, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695502913); INSERT INTO lost_and_found VALUES(905, 905, 4, 3337, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695502914); INSERT INTO lost_and_found VALUES(905, 905, 4, 3338, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695503509); INSERT INTO lost_and_found VALUES(905, 905, 4, 3339, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695503509); INSERT INTO lost_and_found VALUES(905, 905, 4, 3340, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695503510); INSERT INTO lost_and_found VALUES(905, 905, 4, 3341, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695503510); INSERT INTO lost_and_found VALUES(905, 905, 4, 3342, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695503511); INSERT INTO lost_and_found VALUES(905, 905, 4, 3343, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695503511); INSERT INTO lost_and_found VALUES(905, 905, 4, 3344, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695503512); INSERT INTO lost_and_found VALUES(906, 906, 4, 3345, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695503512); INSERT INTO lost_and_found VALUES(906, 906, 4, 3346, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695503512); INSERT INTO lost_and_found VALUES(906, 906, 4, 3347, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695503513); INSERT INTO lost_and_found VALUES(906, 906, 4, 3348, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695503513); INSERT INTO lost_and_found VALUES(906, 906, 4, 3349, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695503514); INSERT INTO lost_and_found VALUES(906, 906, 4, 3350, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695504108); INSERT INTO lost_and_found VALUES(906, 906, 4, 3351, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695504109); INSERT INTO lost_and_found VALUES(906, 906, 4, 3352, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695504109); INSERT INTO lost_and_found VALUES(906, 906, 4, 3353, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695504110); INSERT INTO lost_and_found VALUES(906, 906, 4, 3354, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695504110); INSERT INTO lost_and_found VALUES(906, 906, 4, 3355, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695504111); INSERT INTO lost_and_found VALUES(906, 906, 4, 3356, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695504111); INSERT INTO lost_and_found VALUES(906, 906, 4, 3357, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695504111); INSERT INTO lost_and_found VALUES(906, 906, 4, 3358, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695504112); INSERT INTO lost_and_found VALUES(906, 906, 4, 3359, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695504112); INSERT INTO lost_and_found VALUES(906, 906, 4, 3360, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695504113); INSERT INTO lost_and_found VALUES(906, 906, 4, 3361, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695504113); INSERT INTO lost_and_found VALUES(907, 907, 4, 3362, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695504708); INSERT INTO lost_and_found VALUES(907, 907, 4, 3363, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695504708); INSERT INTO lost_and_found VALUES(907, 907, 4, 3364, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695504709); INSERT INTO lost_and_found VALUES(907, 907, 4, 3365, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695504709); INSERT INTO lost_and_found VALUES(907, 907, 4, 3366, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695504710); INSERT INTO lost_and_found VALUES(907, 907, 4, 3367, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695504710); INSERT INTO lost_and_found VALUES(907, 907, 4, 3368, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695504710); INSERT INTO lost_and_found VALUES(907, 907, 4, 3369, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695504711); INSERT INTO lost_and_found VALUES(907, 907, 4, 3370, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695504711); INSERT INTO lost_and_found VALUES(907, 907, 4, 3371, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695504712); INSERT INTO lost_and_found VALUES(907, 907, 4, 3372, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695504712); INSERT INTO lost_and_found VALUES(907, 907, 4, 3373, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695504713); INSERT INTO lost_and_found VALUES(907, 907, 4, 3374, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695505307); INSERT INTO lost_and_found VALUES(907, 907, 4, 3375, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695505308); INSERT INTO lost_and_found VALUES(907, 907, 4, 3376, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695505308); INSERT INTO lost_and_found VALUES(907, 907, 4, 3377, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695505308); INSERT INTO lost_and_found VALUES(907, 907, 4, 3378, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695505309); INSERT INTO lost_and_found VALUES(908, 908, 4, 3379, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695505309); INSERT INTO lost_and_found VALUES(908, 908, 4, 3380, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695505310); INSERT INTO lost_and_found VALUES(908, 908, 4, 3381, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695505310); INSERT INTO lost_and_found VALUES(908, 908, 4, 3382, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695505311); INSERT INTO lost_and_found VALUES(908, 908, 4, 3383, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695505311); INSERT INTO lost_and_found VALUES(908, 908, 4, 3384, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695505312); INSERT INTO lost_and_found VALUES(908, 908, 4, 3385, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695505312); INSERT INTO lost_and_found VALUES(908, 908, 4, 3386, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695505909); INSERT INTO lost_and_found VALUES(908, 908, 4, 3387, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695505909); INSERT INTO lost_and_found VALUES(908, 908, 4, 3388, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695505909); INSERT INTO lost_and_found VALUES(908, 908, 4, 3389, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695505910); INSERT INTO lost_and_found VALUES(908, 908, 4, 3390, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695505910); INSERT INTO lost_and_found VALUES(908, 908, 4, 3391, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695505911); INSERT INTO lost_and_found VALUES(908, 908, 4, 3392, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695505911); INSERT INTO lost_and_found VALUES(908, 908, 4, 3393, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695505912); INSERT INTO lost_and_found VALUES(908, 908, 4, 3394, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695505912); INSERT INTO lost_and_found VALUES(908, 908, 4, 3395, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695505912); INSERT INTO lost_and_found VALUES(909, 909, 4, 3396, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695505913); INSERT INTO lost_and_found VALUES(909, 909, 4, 3397, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695505913); INSERT INTO lost_and_found VALUES(909, 909, 4, 3398, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695506508); INSERT INTO lost_and_found VALUES(909, 909, 4, 3399, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695506509); INSERT INTO lost_and_found VALUES(909, 909, 4, 3400, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695506509); INSERT INTO lost_and_found VALUES(909, 909, 4, 3401, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695506510); INSERT INTO lost_and_found VALUES(909, 909, 4, 3402, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695506510); INSERT INTO lost_and_found VALUES(909, 909, 4, 3403, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695506511); INSERT INTO lost_and_found VALUES(909, 909, 4, 3404, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695506511); INSERT INTO lost_and_found VALUES(909, 909, 4, 3405, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695506512); INSERT INTO lost_and_found VALUES(909, 909, 4, 3406, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695506512); INSERT INTO lost_and_found VALUES(909, 909, 4, 3407, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695506513); INSERT INTO lost_and_found VALUES(909, 909, 4, 3408, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695506513); INSERT INTO lost_and_found VALUES(909, 909, 4, 3409, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695506514); INSERT INTO lost_and_found VALUES(909, 909, 4, 3410, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695507107); INSERT INTO lost_and_found VALUES(909, 909, 4, 3411, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695507108); INSERT INTO lost_and_found VALUES(909, 909, 4, 3412, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695507108); INSERT INTO lost_and_found VALUES(910, 910, 4, 3413, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695507109); INSERT INTO lost_and_found VALUES(910, 910, 4, 3414, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695507109); INSERT INTO lost_and_found VALUES(910, 910, 4, 3415, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695507110); INSERT INTO lost_and_found VALUES(910, 910, 4, 3416, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695507110); INSERT INTO lost_and_found VALUES(910, 910, 4, 3417, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695507111); INSERT INTO lost_and_found VALUES(910, 910, 4, 3418, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695507111); INSERT INTO lost_and_found VALUES(910, 910, 4, 3419, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695507111); INSERT INTO lost_and_found VALUES(910, 910, 4, 3420, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695507112); INSERT INTO lost_and_found VALUES(910, 910, 4, 3421, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695507112); INSERT INTO lost_and_found VALUES(910, 910, 4, 3422, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695507709); INSERT INTO lost_and_found VALUES(910, 910, 4, 3423, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695507709); INSERT INTO lost_and_found VALUES(910, 910, 4, 3424, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695507710); INSERT INTO lost_and_found VALUES(910, 910, 4, 3425, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695507710); INSERT INTO lost_and_found VALUES(910, 910, 4, 3426, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695507711); INSERT INTO lost_and_found VALUES(910, 910, 4, 3427, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695507711); INSERT INTO lost_and_found VALUES(910, 910, 4, 3428, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695507711); INSERT INTO lost_and_found VALUES(910, 910, 4, 3429, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695507712); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501114, 3301, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501709, 3302, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501709, 3303, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501710, 3304, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501710, 3305, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501711, 3306, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501711, 3307, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501711, 3308, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501712, 3309, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501712, 3310, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501713, 3311, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501713, 3312, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695501714, 3313, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502308, 3314, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502309, 3315, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502309, 3316, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502309, 3317, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502310, 3318, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502310, 3319, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502311, 3320, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502311, 3321, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502312, 3322, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502312, 3323, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502312, 3324, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502313, 3325, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502908, 3326, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502908, 3327, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502909, 3328, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502909, 3329, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502910, 3330, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502910, 3331, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502911, 3332, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502911, 3333, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502912, 3334, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502912, 3335, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502913, 3336, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695502914, 3337, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503509, 3338, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503509, 3339, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503510, 3340, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503510, 3341, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503511, 3342, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503511, 3343, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503512, 3344, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503512, 3345, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503512, 3346, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503513, 3347, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503513, 3348, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695503514, 3349, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504108, 3350, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504109, 3351, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504109, 3352, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504110, 3353, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504110, 3354, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504111, 3355, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504111, 3356, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504111, 3357, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504112, 3358, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504112, 3359, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504113, 3360, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504113, 3361, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504708, 3362, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504708, 3363, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504709, 3364, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504709, 3365, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504710, 3366, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504710, 3367, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504710, 3368, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504711, 3369, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504711, 3370, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504712, 3371, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504712, 3372, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695504713, 3373, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505307, 3374, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505308, 3375, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505308, 3376, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505308, 3377, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505309, 3378, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505309, 3379, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505310, 3380, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505310, 3381, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505311, 3382, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505311, 3383, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505312, 3384, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505312, 3385, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505909, 3386, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505909, 3387, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505909, 3388, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505910, 3389, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505910, 3390, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505911, 3391, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505911, 3392, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505912, 3393, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505912, 3394, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505912, 3395, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505913, 3396, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695505913, 3397, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506508, 3398, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506509, 3399, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506509, 3400, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506510, 3401, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506510, 3402, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506511, 3403, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506511, 3404, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506512, 3405, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506512, 3406, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506513, 3407, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506513, 3408, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695506514, 3409, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507107, 3410, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507108, 3411, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507108, 3412, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507109, 3413, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507109, 3414, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507110, 3415, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507110, 3416, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507111, 3417, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507111, 3418, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507111, 3419, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507112, 3420, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507112, 3421, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507709, 3422, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507709, 3423, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507710, 3424, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507710, 3425, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507711, 3426, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507711, 3427, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507711, 3428, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507712, 3429, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507712, 3430, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507713, 3431, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507713, 3432, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695507714, 3433, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508308, 3434, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508309, 3435, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508309, 3436, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508310, 3437, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508310, 3438, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508310, 3439, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508311, 3440, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508311, 3441, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508312, 3442, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508312, 3443, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508313, 3444, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508313, 3445, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508908, 3446, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508908, 3447, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508908, 3448, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508909, 3449, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508909, 3450, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508910, 3451, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508910, 3452, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508911, 3453, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508911, 3454, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508912, 3455, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508912, 3456, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695508912, 3457, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509509, 3458, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509509, 3459, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509510, 3460, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509510, 3461, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509511, 3462, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509512, 3463, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509512, 3464, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509513, 3465, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509514, 3466, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509515, 3467, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509515, 3468, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695509516, 3469, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510108, 3470, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510109, 3471, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510109, 3472, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510110, 3473, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510110, 3474, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510111, 3475, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510111, 3476, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510111, 3477, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510112, 3478, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510112, 3479, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510113, 3480, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510113, 3481, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510708, 3482, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510708, 3483, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510709, 3484, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510709, 3485, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510710, 3486, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510710, 3487, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510710, 3488, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510711, 3489, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510711, 3490, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510712, 3491, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510712, 3492, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695510713, 3493, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511307, 3494, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511308, 3495, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511308, 3496, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511309, 3497, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511309, 3498, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511309, 3499, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511310, 3500, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511310, 3501, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511311, 3502, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511311, 3503, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511312, 3504, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511312, 3505, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511909, 3506, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511909, 3507, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511910, 3508, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511910, 3509, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511910, 3510, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511911, 3511, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511911, 3512, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511912, 3513, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511912, 3514, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511913, 3515, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511913, 3516, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695511913, 3517, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512508, 3518, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512508, 3519, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512509, 3520, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512509, 3521, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512510, 3522, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512510, 3523, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512511, 3524, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512511, 3525, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512511, 3526, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512512, 3527, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512512, 3528, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695512513, 3529, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513107, 3530, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513108, 3531, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513108, 3532, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513109, 3533, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513109, 3534, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513110, 3535, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513110, 3536, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513111, 3537, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513111, 3538, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513111, 3539, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513112, 3540, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513112, 3541, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513709, 3542, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513709, 3543, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513710, 3544, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513710, 3545, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513710, 3546, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513711, 3547, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513711, 3548, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513712, 3549, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513712, 3550, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513713, 3551, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513713, 3552, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695513714, 3553, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514308, 3554, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514309, 3555, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514309, 3556, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514310, 3557, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514310, 3558, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514310, 3559, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514311, 3560, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514311, 3561, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514312, 3562, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514312, 3563, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514313, 3564, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514313, 3565, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514912, 3566, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514912, 3567, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514913, 3568, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514913, 3569, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514914, 3570, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514914, 3571, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514915, 3572, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514915, 3573, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514916, 3574, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514916, 3575, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514917, 3576, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695514917, 3577, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515512, 3578, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515512, 3579, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515513, 3580, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515513, 3581, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515513, 3582, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515514, 3583, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515514, 3584, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515515, 3585, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515515, 3586, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515516, 3587, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515516, 3588, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695515517, 3589, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516108, 3590, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516109, 3591, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516109, 3592, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516110, 3593, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516110, 3594, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516111, 3595, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516111, 3596, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516111, 3597, NULL, NULL); INSERT INTO lost_and_found VALUES(911, 911, 2, NULL, 1695516112, 3598, NULL, NULL); INSERT INTO lost_and_found VALUES(912, 912, 4, 3430, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695507712); INSERT INTO lost_and_found VALUES(912, 912, 4, 3431, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695507713); INSERT INTO lost_and_found VALUES(912, 912, 4, 3432, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695507713); INSERT INTO lost_and_found VALUES(912, 912, 4, 3433, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695507714); INSERT INTO lost_and_found VALUES(912, 912, 4, 3434, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695508308); INSERT INTO lost_and_found VALUES(912, 912, 4, 3435, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695508309); INSERT INTO lost_and_found VALUES(912, 912, 4, 3436, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695508309); INSERT INTO lost_and_found VALUES(912, 912, 4, 3437, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695508310); INSERT INTO lost_and_found VALUES(912, 912, 4, 3438, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695508310); INSERT INTO lost_and_found VALUES(912, 912, 4, 3439, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695508310); INSERT INTO lost_and_found VALUES(912, 912, 4, 3440, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695508311); INSERT INTO lost_and_found VALUES(912, 912, 4, 3441, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695508311); INSERT INTO lost_and_found VALUES(912, 912, 4, 3442, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695508312); INSERT INTO lost_and_found VALUES(912, 912, 4, 3443, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695508312); INSERT INTO lost_and_found VALUES(912, 912, 4, 3444, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695508313); INSERT INTO lost_and_found VALUES(912, 912, 4, 3445, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695508313); INSERT INTO lost_and_found VALUES(912, 912, 4, 3446, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695508908); INSERT INTO lost_and_found VALUES(913, 913, 4, 3447, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695508908); INSERT INTO lost_and_found VALUES(913, 913, 4, 3448, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695508908); INSERT INTO lost_and_found VALUES(913, 913, 4, 3449, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695508909); INSERT INTO lost_and_found VALUES(913, 913, 4, 3450, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695508909); INSERT INTO lost_and_found VALUES(913, 913, 4, 3451, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695508910); INSERT INTO lost_and_found VALUES(913, 913, 4, 3452, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695508910); INSERT INTO lost_and_found VALUES(913, 913, 4, 3453, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695508911); INSERT INTO lost_and_found VALUES(913, 913, 4, 3454, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695508911); INSERT INTO lost_and_found VALUES(913, 913, 4, 3455, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695508912); INSERT INTO lost_and_found VALUES(913, 913, 4, 3456, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695508912); INSERT INTO lost_and_found VALUES(913, 913, 4, 3457, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695508912); INSERT INTO lost_and_found VALUES(913, 913, 4, 3458, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695509509); INSERT INTO lost_and_found VALUES(913, 913, 4, 3459, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695509509); INSERT INTO lost_and_found VALUES(913, 913, 4, 3460, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695509510); INSERT INTO lost_and_found VALUES(913, 913, 4, 3461, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695509510); INSERT INTO lost_and_found VALUES(913, 913, 4, 3462, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695509511); INSERT INTO lost_and_found VALUES(913, 913, 4, 3463, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695509512); INSERT INTO lost_and_found VALUES(913, 913, 4, 3464, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695509512); INSERT INTO lost_and_found VALUES(914, 914, 4, 3465, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695509513); INSERT INTO lost_and_found VALUES(914, 914, 4, 3466, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695509514); INSERT INTO lost_and_found VALUES(914, 914, 4, 3467, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695509515); INSERT INTO lost_and_found VALUES(914, 914, 4, 3468, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695509515); INSERT INTO lost_and_found VALUES(914, 914, 4, 3469, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695509516); INSERT INTO lost_and_found VALUES(914, 914, 4, 3470, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695510108); INSERT INTO lost_and_found VALUES(914, 914, 4, 3471, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695510109); INSERT INTO lost_and_found VALUES(914, 914, 4, 3472, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695510109); INSERT INTO lost_and_found VALUES(914, 914, 4, 3473, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695510110); INSERT INTO lost_and_found VALUES(914, 914, 4, 3474, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695510110); INSERT INTO lost_and_found VALUES(914, 914, 4, 3475, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695510111); INSERT INTO lost_and_found VALUES(914, 914, 4, 3476, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695510111); INSERT INTO lost_and_found VALUES(914, 914, 4, 3477, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695510111); INSERT INTO lost_and_found VALUES(914, 914, 4, 3478, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695510112); INSERT INTO lost_and_found VALUES(914, 914, 4, 3479, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695510112); INSERT INTO lost_and_found VALUES(914, 914, 4, 3480, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695510113); INSERT INTO lost_and_found VALUES(914, 914, 4, 3481, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695510113); INSERT INTO lost_and_found VALUES(915, 915, 4, 3482, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695510708); INSERT INTO lost_and_found VALUES(915, 915, 4, 3483, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695510708); INSERT INTO lost_and_found VALUES(915, 915, 4, 3484, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695510709); INSERT INTO lost_and_found VALUES(915, 915, 4, 3485, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695510709); INSERT INTO lost_and_found VALUES(915, 915, 4, 3486, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695510710); INSERT INTO lost_and_found VALUES(915, 915, 4, 3487, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695510710); INSERT INTO lost_and_found VALUES(915, 915, 4, 3488, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695510710); INSERT INTO lost_and_found VALUES(915, 915, 4, 3489, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695510711); INSERT INTO lost_and_found VALUES(915, 915, 4, 3490, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695510711); INSERT INTO lost_and_found VALUES(915, 915, 4, 3491, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695510712); INSERT INTO lost_and_found VALUES(915, 915, 4, 3492, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695510712); INSERT INTO lost_and_found VALUES(915, 915, 4, 3493, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695510713); INSERT INTO lost_and_found VALUES(915, 915, 4, 3494, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695511307); INSERT INTO lost_and_found VALUES(915, 915, 4, 3495, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695511308); INSERT INTO lost_and_found VALUES(915, 915, 4, 3496, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695511308); INSERT INTO lost_and_found VALUES(915, 915, 4, 3497, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695511309); INSERT INTO lost_and_found VALUES(915, 915, 4, 3498, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695511309); INSERT INTO lost_and_found VALUES(916, 916, 4, 3499, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695511309); INSERT INTO lost_and_found VALUES(916, 916, 4, 3500, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695511310); INSERT INTO lost_and_found VALUES(916, 916, 4, 3501, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695511310); INSERT INTO lost_and_found VALUES(916, 916, 4, 3502, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695511311); INSERT INTO lost_and_found VALUES(916, 916, 4, 3503, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695511311); INSERT INTO lost_and_found VALUES(916, 916, 4, 3504, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695511312); INSERT INTO lost_and_found VALUES(916, 916, 4, 3505, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695511312); INSERT INTO lost_and_found VALUES(916, 916, 4, 3506, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695511909); INSERT INTO lost_and_found VALUES(916, 916, 4, 3507, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695511909); INSERT INTO lost_and_found VALUES(916, 916, 4, 3508, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695511910); INSERT INTO lost_and_found VALUES(916, 916, 4, 3509, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695511910); INSERT INTO lost_and_found VALUES(916, 916, 4, 3510, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695511910); INSERT INTO lost_and_found VALUES(916, 916, 4, 3511, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695511911); INSERT INTO lost_and_found VALUES(916, 916, 4, 3512, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695511911); INSERT INTO lost_and_found VALUES(916, 916, 4, 3513, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695511912); INSERT INTO lost_and_found VALUES(916, 916, 4, 3514, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695511912); INSERT INTO lost_and_found VALUES(916, 916, 4, 3515, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695511913); INSERT INTO lost_and_found VALUES(917, 917, 4, 3516, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695511913); INSERT INTO lost_and_found VALUES(917, 917, 4, 3517, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695511913); INSERT INTO lost_and_found VALUES(917, 917, 4, 3518, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695512508); INSERT INTO lost_and_found VALUES(917, 917, 4, 3519, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695512508); INSERT INTO lost_and_found VALUES(917, 917, 4, 3520, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695512509); INSERT INTO lost_and_found VALUES(917, 917, 4, 3521, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695512509); INSERT INTO lost_and_found VALUES(917, 917, 4, 3522, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695512510); INSERT INTO lost_and_found VALUES(917, 917, 4, 3523, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695512510); INSERT INTO lost_and_found VALUES(917, 917, 4, 3524, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695512511); INSERT INTO lost_and_found VALUES(917, 917, 4, 3525, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695512511); INSERT INTO lost_and_found VALUES(917, 917, 4, 3526, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695512511); INSERT INTO lost_and_found VALUES(917, 917, 4, 3527, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695512512); INSERT INTO lost_and_found VALUES(917, 917, 4, 3528, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695512512); INSERT INTO lost_and_found VALUES(917, 917, 4, 3529, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695512513); INSERT INTO lost_and_found VALUES(917, 917, 4, 3530, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695513107); INSERT INTO lost_and_found VALUES(917, 917, 4, 3531, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695513108); INSERT INTO lost_and_found VALUES(917, 917, 4, 3532, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695513108); INSERT INTO lost_and_found VALUES(918, 918, 4, 3533, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695513109); INSERT INTO lost_and_found VALUES(918, 918, 4, 3534, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695513109); INSERT INTO lost_and_found VALUES(918, 918, 4, 3535, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695513110); INSERT INTO lost_and_found VALUES(918, 918, 4, 3536, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695513110); INSERT INTO lost_and_found VALUES(918, 918, 4, 3537, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695513111); INSERT INTO lost_and_found VALUES(918, 918, 4, 3538, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695513111); INSERT INTO lost_and_found VALUES(918, 918, 4, 3539, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695513111); INSERT INTO lost_and_found VALUES(918, 918, 4, 3540, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695513112); INSERT INTO lost_and_found VALUES(918, 918, 4, 3541, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695513112); INSERT INTO lost_and_found VALUES(918, 918, 4, 3542, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695513709); INSERT INTO lost_and_found VALUES(918, 918, 4, 3543, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695513709); INSERT INTO lost_and_found VALUES(918, 918, 4, 3544, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695513710); INSERT INTO lost_and_found VALUES(918, 918, 4, 3545, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695513710); INSERT INTO lost_and_found VALUES(918, 918, 4, 3546, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695513710); INSERT INTO lost_and_found VALUES(918, 918, 4, 3547, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695513711); INSERT INTO lost_and_found VALUES(918, 918, 4, 3548, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695513711); INSERT INTO lost_and_found VALUES(918, 918, 4, 3549, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695513712); INSERT INTO lost_and_found VALUES(919, 919, 4, 3550, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695513712); INSERT INTO lost_and_found VALUES(919, 919, 4, 3551, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695513713); INSERT INTO lost_and_found VALUES(919, 919, 4, 3552, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695513713); INSERT INTO lost_and_found VALUES(919, 919, 4, 3553, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695513714); INSERT INTO lost_and_found VALUES(919, 919, 4, 3554, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695514308); INSERT INTO lost_and_found VALUES(919, 919, 4, 3555, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695514309); INSERT INTO lost_and_found VALUES(919, 919, 4, 3556, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695514309); INSERT INTO lost_and_found VALUES(919, 919, 4, 3557, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695514310); INSERT INTO lost_and_found VALUES(919, 919, 4, 3558, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695514310); INSERT INTO lost_and_found VALUES(919, 919, 4, 3559, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695514310); INSERT INTO lost_and_found VALUES(919, 919, 4, 3560, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695514311); INSERT INTO lost_and_found VALUES(919, 919, 4, 3561, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695514311); INSERT INTO lost_and_found VALUES(919, 919, 4, 3562, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695514312); INSERT INTO lost_and_found VALUES(919, 919, 4, 3563, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695514312); INSERT INTO lost_and_found VALUES(919, 919, 4, 3564, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695514313); INSERT INTO lost_and_found VALUES(919, 919, 4, 3565, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695514313); INSERT INTO lost_and_found VALUES(919, 919, 4, 3566, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695514912); INSERT INTO lost_and_found VALUES(920, 920, 4, 3567, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695514912); INSERT INTO lost_and_found VALUES(920, 920, 4, 3568, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695514913); INSERT INTO lost_and_found VALUES(920, 920, 4, 3569, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695514913); INSERT INTO lost_and_found VALUES(920, 920, 4, 3570, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695514914); INSERT INTO lost_and_found VALUES(920, 920, 4, 3571, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695514914); INSERT INTO lost_and_found VALUES(920, 920, 4, 3572, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695514915); INSERT INTO lost_and_found VALUES(920, 920, 4, 3573, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695514915); INSERT INTO lost_and_found VALUES(920, 920, 4, 3574, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695514916); INSERT INTO lost_and_found VALUES(920, 920, 4, 3575, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695514916); INSERT INTO lost_and_found VALUES(920, 920, 4, 3576, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695514917); INSERT INTO lost_and_found VALUES(920, 920, 4, 3577, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695514917); INSERT INTO lost_and_found VALUES(920, 920, 4, 3578, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695515512); INSERT INTO lost_and_found VALUES(920, 920, 4, 3579, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695515512); INSERT INTO lost_and_found VALUES(920, 920, 4, 3580, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695515513); INSERT INTO lost_and_found VALUES(920, 920, 4, 3581, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695515513); INSERT INTO lost_and_found VALUES(920, 920, 4, 3582, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695515513); INSERT INTO lost_and_found VALUES(920, 920, 4, 3583, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695515514); INSERT INTO lost_and_found VALUES(920, 920, 4, 3584, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695515514); INSERT INTO lost_and_found VALUES(921, 921, 4, 3585, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695515515); INSERT INTO lost_and_found VALUES(921, 921, 4, 3586, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695515515); INSERT INTO lost_and_found VALUES(921, 921, 4, 3587, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695515516); INSERT INTO lost_and_found VALUES(921, 921, 4, 3588, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695515516); INSERT INTO lost_and_found VALUES(921, 921, 4, 3589, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695515517); INSERT INTO lost_and_found VALUES(921, 921, 4, 3590, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695516108); INSERT INTO lost_and_found VALUES(921, 921, 4, 3591, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695516109); INSERT INTO lost_and_found VALUES(921, 921, 4, 3592, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695516109); INSERT INTO lost_and_found VALUES(921, 921, 4, 3593, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695516110); INSERT INTO lost_and_found VALUES(921, 921, 4, 3594, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695516110); INSERT INTO lost_and_found VALUES(921, 921, 4, 3595, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695516111); INSERT INTO lost_and_found VALUES(921, 921, 4, 3596, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695516111); INSERT INTO lost_and_found VALUES(921, 921, 4, 3597, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695516111); INSERT INTO lost_and_found VALUES(921, 921, 4, 3598, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695516112); INSERT INTO lost_and_found VALUES(921, 921, 4, 3599, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695516112); INSERT INTO lost_and_found VALUES(921, 921, 4, 3600, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695516113); INSERT INTO lost_and_found VALUES(921, 921, 4, 3601, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695516113); INSERT INTO lost_and_found VALUES(922, 922, 4, 3602, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695516708); INSERT INTO lost_and_found VALUES(922, 922, 4, 3603, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695516708); INSERT INTO lost_and_found VALUES(922, 922, 4, 3604, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695516709); INSERT INTO lost_and_found VALUES(922, 922, 4, 3605, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695516709); INSERT INTO lost_and_found VALUES(922, 922, 4, 3606, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695516710); INSERT INTO lost_and_found VALUES(922, 922, 4, 3607, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695516710); INSERT INTO lost_and_found VALUES(922, 922, 4, 3608, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695516710); INSERT INTO lost_and_found VALUES(922, 922, 4, 3609, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695516711); INSERT INTO lost_and_found VALUES(922, 922, 4, 3610, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695516711); INSERT INTO lost_and_found VALUES(922, 922, 4, 3611, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695516712); INSERT INTO lost_and_found VALUES(922, 922, 4, 3612, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695516712); INSERT INTO lost_and_found VALUES(922, 922, 4, 3613, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695516713); INSERT INTO lost_and_found VALUES(922, 922, 4, 3614, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695517307); INSERT INTO lost_and_found VALUES(922, 922, 4, 3615, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695517308); INSERT INTO lost_and_found VALUES(922, 922, 4, 3616, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695517308); INSERT INTO lost_and_found VALUES(922, 922, 4, 3617, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695517309); INSERT INTO lost_and_found VALUES(922, 922, 4, 3618, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695517309); INSERT INTO lost_and_found VALUES(923, 923, 4, 3619, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695517310); INSERT INTO lost_and_found VALUES(923, 923, 4, 3620, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695517310); INSERT INTO lost_and_found VALUES(923, 923, 4, 3621, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695517311); INSERT INTO lost_and_found VALUES(923, 923, 4, 3622, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695517312); INSERT INTO lost_and_found VALUES(923, 923, 4, 3623, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695517312); INSERT INTO lost_and_found VALUES(923, 923, 4, 3624, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695517313); INSERT INTO lost_and_found VALUES(923, 923, 4, 3625, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695517313); INSERT INTO lost_and_found VALUES(923, 923, 4, 3626, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695517909); INSERT INTO lost_and_found VALUES(923, 923, 4, 3627, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695517909); INSERT INTO lost_and_found VALUES(923, 923, 4, 3628, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695517909); INSERT INTO lost_and_found VALUES(923, 923, 4, 3629, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695517910); INSERT INTO lost_and_found VALUES(923, 923, 4, 3630, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695517910); INSERT INTO lost_and_found VALUES(923, 923, 4, 3631, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695517911); INSERT INTO lost_and_found VALUES(923, 923, 4, 3632, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695517911); INSERT INTO lost_and_found VALUES(923, 923, 4, 3633, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695517912); INSERT INTO lost_and_found VALUES(923, 923, 4, 3634, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695517912); INSERT INTO lost_and_found VALUES(923, 923, 4, 3635, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695517912); INSERT INTO lost_and_found VALUES(924, 924, 4, 3636, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695517913); INSERT INTO lost_and_found VALUES(924, 924, 4, 3637, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695517913); INSERT INTO lost_and_found VALUES(924, 924, 4, 3638, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695518508); INSERT INTO lost_and_found VALUES(924, 924, 4, 3639, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695518508); INSERT INTO lost_and_found VALUES(924, 924, 4, 3640, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695518509); INSERT INTO lost_and_found VALUES(924, 924, 4, 3641, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695518509); INSERT INTO lost_and_found VALUES(924, 924, 4, 3642, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695518510); INSERT INTO lost_and_found VALUES(924, 924, 4, 3643, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695518510); INSERT INTO lost_and_found VALUES(924, 924, 4, 3644, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695518511); INSERT INTO lost_and_found VALUES(924, 924, 4, 3645, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695518511); INSERT INTO lost_and_found VALUES(924, 924, 4, 3646, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695518511); INSERT INTO lost_and_found VALUES(924, 924, 4, 3647, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695518512); INSERT INTO lost_and_found VALUES(924, 924, 4, 3648, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695518512); INSERT INTO lost_and_found VALUES(924, 924, 4, 3649, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695518513); INSERT INTO lost_and_found VALUES(924, 924, 4, 3650, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695519107); INSERT INTO lost_and_found VALUES(924, 924, 4, 3651, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695519108); INSERT INTO lost_and_found VALUES(924, 924, 4, 3652, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695519108); INSERT INTO lost_and_found VALUES(925, 925, 4, 3653, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695519109); INSERT INTO lost_and_found VALUES(925, 925, 4, 3654, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695519109); INSERT INTO lost_and_found VALUES(925, 925, 4, 3655, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695519109); INSERT INTO lost_and_found VALUES(925, 925, 4, 3656, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695519110); INSERT INTO lost_and_found VALUES(925, 925, 4, 3657, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695519110); INSERT INTO lost_and_found VALUES(925, 925, 4, 3658, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695519111); INSERT INTO lost_and_found VALUES(925, 925, 4, 3659, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695519111); INSERT INTO lost_and_found VALUES(925, 925, 4, 3660, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695519112); INSERT INTO lost_and_found VALUES(925, 925, 4, 3661, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695519112); INSERT INTO lost_and_found VALUES(925, 925, 4, 3662, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695519709); INSERT INTO lost_and_found VALUES(925, 925, 4, 3663, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695519709); INSERT INTO lost_and_found VALUES(925, 925, 4, 3664, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695519710); INSERT INTO lost_and_found VALUES(925, 925, 4, 3665, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695519710); INSERT INTO lost_and_found VALUES(925, 925, 4, 3666, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695519711); INSERT INTO lost_and_found VALUES(925, 925, 4, 3667, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695519711); INSERT INTO lost_and_found VALUES(925, 925, 4, 3668, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695519711); INSERT INTO lost_and_found VALUES(925, 925, 4, 3669, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695519712); INSERT INTO lost_and_found VALUES(926, 926, 4, 3670, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695519712); INSERT INTO lost_and_found VALUES(926, 926, 4, 3671, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695519713); INSERT INTO lost_and_found VALUES(926, 926, 4, 3672, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695519713); INSERT INTO lost_and_found VALUES(926, 926, 4, 3673, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695519714); INSERT INTO lost_and_found VALUES(926, 926, 4, 3674, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695520308); INSERT INTO lost_and_found VALUES(926, 926, 4, 3675, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695520309); INSERT INTO lost_and_found VALUES(926, 926, 4, 3676, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695520309); INSERT INTO lost_and_found VALUES(926, 926, 4, 3677, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695520309); INSERT INTO lost_and_found VALUES(926, 926, 4, 3678, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695520310); INSERT INTO lost_and_found VALUES(926, 926, 4, 3679, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695520310); INSERT INTO lost_and_found VALUES(926, 926, 4, 3680, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695520311); INSERT INTO lost_and_found VALUES(926, 926, 4, 3681, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695520311); INSERT INTO lost_and_found VALUES(926, 926, 4, 3682, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695520312); INSERT INTO lost_and_found VALUES(926, 926, 4, 3683, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695520312); INSERT INTO lost_and_found VALUES(926, 926, 4, 3684, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695520313); INSERT INTO lost_and_found VALUES(926, 926, 4, 3685, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695520313); INSERT INTO lost_and_found VALUES(926, 926, 4, 3686, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695520907); INSERT INTO lost_and_found VALUES(927, 927, 4, 3687, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695520908); INSERT INTO lost_and_found VALUES(927, 927, 4, 3688, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695520908); INSERT INTO lost_and_found VALUES(927, 927, 4, 3689, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695520909); INSERT INTO lost_and_found VALUES(927, 927, 4, 3690, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695520909); INSERT INTO lost_and_found VALUES(927, 927, 4, 3691, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695520910); INSERT INTO lost_and_found VALUES(927, 927, 4, 3692, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695520910); INSERT INTO lost_and_found VALUES(927, 927, 4, 3693, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695520911); INSERT INTO lost_and_found VALUES(927, 927, 4, 3694, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695520911); INSERT INTO lost_and_found VALUES(927, 927, 4, 3695, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695520911); INSERT INTO lost_and_found VALUES(927, 927, 4, 3696, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695520912); INSERT INTO lost_and_found VALUES(927, 927, 4, 3697, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695520912); INSERT INTO lost_and_found VALUES(927, 927, 4, 3698, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695521509); INSERT INTO lost_and_found VALUES(927, 927, 4, 3699, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695521509); INSERT INTO lost_and_found VALUES(927, 927, 4, 3700, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695521510); INSERT INTO lost_and_found VALUES(927, 927, 4, 3701, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695521510); INSERT INTO lost_and_found VALUES(927, 927, 4, 3702, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695521511); INSERT INTO lost_and_found VALUES(927, 927, 4, 3703, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695521511); INSERT INTO lost_and_found VALUES(927, 927, 4, 3704, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695521511); INSERT INTO lost_and_found VALUES(928, 928, 4, 3705, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695521512); INSERT INTO lost_and_found VALUES(928, 928, 4, 3706, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695521512); INSERT INTO lost_and_found VALUES(928, 928, 4, 3707, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695521513); INSERT INTO lost_and_found VALUES(928, 928, 4, 3708, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695521513); INSERT INTO lost_and_found VALUES(928, 928, 4, 3709, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695521514); INSERT INTO lost_and_found VALUES(928, 928, 4, 3710, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695522108); INSERT INTO lost_and_found VALUES(928, 928, 4, 3711, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695522109); INSERT INTO lost_and_found VALUES(928, 928, 4, 3712, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695522109); INSERT INTO lost_and_found VALUES(928, 928, 4, 3713, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695522110); INSERT INTO lost_and_found VALUES(928, 928, 4, 3714, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695522110); INSERT INTO lost_and_found VALUES(928, 928, 4, 3715, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695522110); INSERT INTO lost_and_found VALUES(928, 928, 4, 3716, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695522111); INSERT INTO lost_and_found VALUES(928, 928, 4, 3717, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695522111); INSERT INTO lost_and_found VALUES(928, 928, 4, 3718, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695522112); INSERT INTO lost_and_found VALUES(928, 928, 4, 3719, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695522112); INSERT INTO lost_and_found VALUES(928, 928, 4, 3720, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695522113); INSERT INTO lost_and_found VALUES(928, 928, 4, 3721, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695522113); INSERT INTO lost_and_found VALUES(929, 929, 4, 3722, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695522708); INSERT INTO lost_and_found VALUES(929, 929, 4, 3723, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695522708); INSERT INTO lost_and_found VALUES(929, 929, 4, 3724, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695522709); INSERT INTO lost_and_found VALUES(929, 929, 4, 3725, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695522709); INSERT INTO lost_and_found VALUES(929, 929, 4, 3726, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695522709); INSERT INTO lost_and_found VALUES(929, 929, 4, 3727, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695522710); INSERT INTO lost_and_found VALUES(929, 929, 4, 3728, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695522710); INSERT INTO lost_and_found VALUES(929, 929, 4, 3729, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695522711); INSERT INTO lost_and_found VALUES(929, 929, 4, 3730, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695522711); INSERT INTO lost_and_found VALUES(929, 929, 4, 3731, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695522712); INSERT INTO lost_and_found VALUES(929, 929, 4, 3732, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695522712); INSERT INTO lost_and_found VALUES(929, 929, 4, 3733, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695522712); INSERT INTO lost_and_found VALUES(929, 929, 4, 3734, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695523309); INSERT INTO lost_and_found VALUES(929, 929, 4, 3735, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695523309); INSERT INTO lost_and_found VALUES(929, 929, 4, 3736, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695523310); INSERT INTO lost_and_found VALUES(929, 929, 4, 3737, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695523310); INSERT INTO lost_and_found VALUES(929, 929, 4, 3738, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695523311); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516113, 3600, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516113, 3601, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516708, 3602, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516708, 3603, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516709, 3604, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516709, 3605, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516710, 3606, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516710, 3607, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516710, 3608, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516711, 3609, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516711, 3610, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516712, 3611, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516712, 3612, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695516713, 3613, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517307, 3614, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517308, 3615, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517308, 3616, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517309, 3617, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517309, 3618, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517310, 3619, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517310, 3620, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517311, 3621, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517312, 3622, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517312, 3623, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517313, 3624, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517313, 3625, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517909, 3626, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517909, 3627, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517909, 3628, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517910, 3629, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517910, 3630, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517911, 3631, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517911, 3632, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517912, 3633, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517912, 3634, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517912, 3635, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517913, 3636, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695517913, 3637, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518508, 3638, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518508, 3639, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518509, 3640, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518509, 3641, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518510, 3642, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518510, 3643, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518511, 3644, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518511, 3645, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518511, 3646, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518512, 3647, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518512, 3648, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695518513, 3649, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519107, 3650, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519108, 3651, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519108, 3652, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519109, 3653, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519109, 3654, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519109, 3655, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519110, 3656, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519110, 3657, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519111, 3658, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519111, 3659, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519112, 3660, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519112, 3661, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519709, 3662, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519709, 3663, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519710, 3664, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519710, 3665, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519711, 3666, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519711, 3667, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519711, 3668, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519712, 3669, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519712, 3670, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519713, 3671, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519713, 3672, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695519714, 3673, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520308, 3674, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520309, 3675, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520309, 3676, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520309, 3677, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520310, 3678, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520310, 3679, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520311, 3680, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520311, 3681, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520312, 3682, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520312, 3683, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520313, 3684, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520313, 3685, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520907, 3686, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520908, 3687, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520908, 3688, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520909, 3689, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520909, 3690, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520910, 3691, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520910, 3692, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520911, 3693, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520911, 3694, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520911, 3695, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520912, 3696, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695520912, 3697, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521509, 3698, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521509, 3699, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521510, 3700, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521510, 3701, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521511, 3702, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521511, 3703, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521511, 3704, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521512, 3705, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521512, 3706, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521513, 3707, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521513, 3708, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695521514, 3709, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522108, 3710, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522109, 3711, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522109, 3712, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522110, 3713, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522110, 3714, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522110, 3715, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522111, 3716, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522111, 3717, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522112, 3718, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522112, 3719, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522113, 3720, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522113, 3721, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522708, 3722, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522708, 3723, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522709, 3724, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522709, 3725, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522709, 3726, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522710, 3727, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522710, 3728, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522711, 3729, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522711, 3730, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522712, 3731, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522712, 3732, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695522712, 3733, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523309, 3734, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523309, 3735, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523310, 3736, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523310, 3737, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523311, 3738, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523311, 3739, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523312, 3740, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523312, 3741, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523312, 3742, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523313, 3743, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523313, 3744, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523314, 3745, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523908, 3746, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523909, 3747, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523909, 3748, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523910, 3749, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523910, 3750, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523911, 3751, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523911, 3752, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523911, 3753, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523912, 3754, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523912, 3755, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523913, 3756, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695523913, 3757, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524508, 3758, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524508, 3759, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524509, 3760, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524509, 3761, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524510, 3762, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524510, 3763, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524510, 3764, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524511, 3765, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524511, 3766, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524512, 3767, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524512, 3768, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695524513, 3769, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525107, 3770, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525108, 3771, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525108, 3772, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525109, 3773, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525109, 3774, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525109, 3775, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525110, 3776, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525110, 3777, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525111, 3778, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525111, 3779, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525112, 3780, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525112, 3781, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525709, 3782, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525709, 3783, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525710, 3784, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525710, 3785, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525710, 3786, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525711, 3787, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525711, 3788, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525712, 3789, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525712, 3790, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525713, 3791, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525713, 3792, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695525713, 3793, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526308, 3794, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526308, 3795, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526309, 3796, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526310, 3797, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526310, 3798, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526310, 3799, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526311, 3800, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526311, 3801, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526312, 3802, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526312, 3803, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526313, 3804, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526313, 3805, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526907, 3806, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526908, 3807, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526908, 3808, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526909, 3809, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526909, 3810, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526910, 3811, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526910, 3812, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526911, 3813, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526911, 3814, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526911, 3815, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526912, 3816, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695526912, 3817, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527509, 3818, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527509, 3819, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527510, 3820, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527510, 3821, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527511, 3822, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527511, 3823, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527511, 3824, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527512, 3825, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527512, 3826, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527513, 3827, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527513, 3828, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695527514, 3829, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528108, 3830, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528109, 3831, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528109, 3832, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528110, 3833, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528110, 3834, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528110, 3835, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528111, 3836, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528111, 3837, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528112, 3838, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528112, 3839, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528113, 3840, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528113, 3841, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528708, 3842, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528708, 3843, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528708, 3844, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528709, 3845, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528709, 3846, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528710, 3847, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528710, 3848, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528711, 3849, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528711, 3850, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528712, 3851, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528712, 3852, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695528713, 3853, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529310, 3854, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529311, 3855, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529311, 3856, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529312, 3857, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529312, 3858, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529313, 3859, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529313, 3860, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529313, 3861, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529314, 3862, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529314, 3863, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529315, 3864, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529315, 3865, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529908, 3866, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529909, 3867, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529909, 3868, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529910, 3869, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529910, 3870, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529911, 3871, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529911, 3872, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529911, 3873, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529912, 3874, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529912, 3875, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529913, 3876, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695529913, 3877, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530508, 3878, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530508, 3879, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530509, 3880, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530509, 3881, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530510, 3882, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530510, 3883, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530510, 3884, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530511, 3885, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530511, 3886, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530512, 3887, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530512, 3888, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695530513, 3889, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531107, 3890, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531108, 3891, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531108, 3892, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531108, 3893, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531109, 3894, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531109, 3895, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531110, 3896, NULL, NULL); INSERT INTO lost_and_found VALUES(930, 930, 2, NULL, 1695531110, 3897, NULL, NULL); INSERT INTO lost_and_found VALUES(931, 931, 4, 3739, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695523311); INSERT INTO lost_and_found VALUES(931, 931, 4, 3740, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695523312); INSERT INTO lost_and_found VALUES(931, 931, 4, 3741, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695523312); INSERT INTO lost_and_found VALUES(931, 931, 4, 3742, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695523312); INSERT INTO lost_and_found VALUES(931, 931, 4, 3743, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695523313); INSERT INTO lost_and_found VALUES(931, 931, 4, 3744, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695523313); INSERT INTO lost_and_found VALUES(931, 931, 4, 3745, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695523314); INSERT INTO lost_and_found VALUES(931, 931, 4, 3746, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695523908); INSERT INTO lost_and_found VALUES(931, 931, 4, 3747, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695523909); INSERT INTO lost_and_found VALUES(931, 931, 4, 3748, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695523909); INSERT INTO lost_and_found VALUES(931, 931, 4, 3749, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695523910); INSERT INTO lost_and_found VALUES(931, 931, 4, 3750, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695523910); INSERT INTO lost_and_found VALUES(931, 931, 4, 3751, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695523911); INSERT INTO lost_and_found VALUES(931, 931, 4, 3752, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695523911); INSERT INTO lost_and_found VALUES(931, 931, 4, 3753, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695523911); INSERT INTO lost_and_found VALUES(931, 931, 4, 3754, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695523912); INSERT INTO lost_and_found VALUES(931, 931, 4, 3755, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695523912); INSERT INTO lost_and_found VALUES(932, 932, 4, 3756, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695523913); INSERT INTO lost_and_found VALUES(932, 932, 4, 3757, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695523913); INSERT INTO lost_and_found VALUES(932, 932, 4, 3758, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695524508); INSERT INTO lost_and_found VALUES(932, 932, 4, 3759, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695524508); INSERT INTO lost_and_found VALUES(932, 932, 4, 3760, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695524509); INSERT INTO lost_and_found VALUES(932, 932, 4, 3761, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695524509); INSERT INTO lost_and_found VALUES(932, 932, 4, 3762, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695524510); INSERT INTO lost_and_found VALUES(932, 932, 4, 3763, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695524510); INSERT INTO lost_and_found VALUES(932, 932, 4, 3764, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695524510); INSERT INTO lost_and_found VALUES(932, 932, 4, 3765, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695524511); INSERT INTO lost_and_found VALUES(932, 932, 4, 3766, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695524511); INSERT INTO lost_and_found VALUES(932, 932, 4, 3767, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695524512); INSERT INTO lost_and_found VALUES(932, 932, 4, 3768, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695524512); INSERT INTO lost_and_found VALUES(932, 932, 4, 3769, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695524513); INSERT INTO lost_and_found VALUES(932, 932, 4, 3770, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695525107); INSERT INTO lost_and_found VALUES(932, 932, 4, 3771, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695525108); INSERT INTO lost_and_found VALUES(932, 932, 4, 3772, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695525108); INSERT INTO lost_and_found VALUES(933, 933, 4, 3773, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695525109); INSERT INTO lost_and_found VALUES(933, 933, 4, 3774, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695525109); INSERT INTO lost_and_found VALUES(933, 933, 4, 3775, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695525109); INSERT INTO lost_and_found VALUES(933, 933, 4, 3776, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695525110); INSERT INTO lost_and_found VALUES(933, 933, 4, 3777, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695525110); INSERT INTO lost_and_found VALUES(933, 933, 4, 3778, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695525111); INSERT INTO lost_and_found VALUES(933, 933, 4, 3779, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695525111); INSERT INTO lost_and_found VALUES(933, 933, 4, 3780, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695525112); INSERT INTO lost_and_found VALUES(933, 933, 4, 3781, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695525112); INSERT INTO lost_and_found VALUES(933, 933, 4, 3782, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695525709); INSERT INTO lost_and_found VALUES(933, 933, 4, 3783, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695525709); INSERT INTO lost_and_found VALUES(933, 933, 4, 3784, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695525710); INSERT INTO lost_and_found VALUES(933, 933, 4, 3785, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695525710); INSERT INTO lost_and_found VALUES(933, 933, 4, 3786, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695525710); INSERT INTO lost_and_found VALUES(933, 933, 4, 3787, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695525711); INSERT INTO lost_and_found VALUES(933, 933, 4, 3788, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695525711); INSERT INTO lost_and_found VALUES(933, 933, 4, 3789, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695525712); INSERT INTO lost_and_found VALUES(934, 934, 4, 3790, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695525712); INSERT INTO lost_and_found VALUES(934, 934, 4, 3791, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695525713); INSERT INTO lost_and_found VALUES(934, 934, 4, 3792, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695525713); INSERT INTO lost_and_found VALUES(934, 934, 4, 3793, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695525713); INSERT INTO lost_and_found VALUES(934, 934, 4, 3794, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695526308); INSERT INTO lost_and_found VALUES(934, 934, 4, 3795, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695526308); INSERT INTO lost_and_found VALUES(934, 934, 4, 3796, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695526309); INSERT INTO lost_and_found VALUES(934, 934, 4, 3797, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695526310); INSERT INTO lost_and_found VALUES(934, 934, 4, 3798, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695526310); INSERT INTO lost_and_found VALUES(934, 934, 4, 3799, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695526310); INSERT INTO lost_and_found VALUES(934, 934, 4, 3800, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695526311); INSERT INTO lost_and_found VALUES(934, 934, 4, 3801, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695526311); INSERT INTO lost_and_found VALUES(934, 934, 4, 3802, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695526312); INSERT INTO lost_and_found VALUES(934, 934, 4, 3803, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695526312); INSERT INTO lost_and_found VALUES(934, 934, 4, 3804, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695526313); INSERT INTO lost_and_found VALUES(934, 934, 4, 3805, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695526313); INSERT INTO lost_and_found VALUES(934, 934, 4, 3806, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695526907); INSERT INTO lost_and_found VALUES(935, 935, 4, 3807, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695526908); INSERT INTO lost_and_found VALUES(935, 935, 4, 3808, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695526908); INSERT INTO lost_and_found VALUES(935, 935, 4, 3809, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695526909); INSERT INTO lost_and_found VALUES(935, 935, 4, 3810, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695526909); INSERT INTO lost_and_found VALUES(935, 935, 4, 3811, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695526910); INSERT INTO lost_and_found VALUES(935, 935, 4, 3812, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695526910); INSERT INTO lost_and_found VALUES(935, 935, 4, 3813, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695526911); INSERT INTO lost_and_found VALUES(935, 935, 4, 3814, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695526911); INSERT INTO lost_and_found VALUES(935, 935, 4, 3815, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695526911); INSERT INTO lost_and_found VALUES(935, 935, 4, 3816, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695526912); INSERT INTO lost_and_found VALUES(935, 935, 4, 3817, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695526912); INSERT INTO lost_and_found VALUES(935, 935, 4, 3818, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695527509); INSERT INTO lost_and_found VALUES(935, 935, 4, 3819, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695527509); INSERT INTO lost_and_found VALUES(935, 935, 4, 3820, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695527510); INSERT INTO lost_and_found VALUES(935, 935, 4, 3821, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695527510); INSERT INTO lost_and_found VALUES(935, 935, 4, 3822, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695527511); INSERT INTO lost_and_found VALUES(935, 935, 4, 3823, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695527511); INSERT INTO lost_and_found VALUES(935, 935, 4, 3824, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695527511); INSERT INTO lost_and_found VALUES(936, 936, 4, 3825, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695527512); INSERT INTO lost_and_found VALUES(936, 936, 4, 3826, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695527512); INSERT INTO lost_and_found VALUES(936, 936, 4, 3827, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695527513); INSERT INTO lost_and_found VALUES(936, 936, 4, 3828, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695527513); INSERT INTO lost_and_found VALUES(936, 936, 4, 3829, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695527514); INSERT INTO lost_and_found VALUES(936, 936, 4, 3830, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695528108); INSERT INTO lost_and_found VALUES(936, 936, 4, 3831, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695528109); INSERT INTO lost_and_found VALUES(936, 936, 4, 3832, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695528109); INSERT INTO lost_and_found VALUES(936, 936, 4, 3833, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695528110); INSERT INTO lost_and_found VALUES(936, 936, 4, 3834, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695528110); INSERT INTO lost_and_found VALUES(936, 936, 4, 3835, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695528110); INSERT INTO lost_and_found VALUES(936, 936, 4, 3836, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695528111); INSERT INTO lost_and_found VALUES(936, 936, 4, 3837, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695528111); INSERT INTO lost_and_found VALUES(936, 936, 4, 3838, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695528112); INSERT INTO lost_and_found VALUES(936, 936, 4, 3839, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695528112); INSERT INTO lost_and_found VALUES(936, 936, 4, 3840, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695528113); INSERT INTO lost_and_found VALUES(936, 936, 4, 3841, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695528113); INSERT INTO lost_and_found VALUES(937, 937, 4, 3842, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695528708); INSERT INTO lost_and_found VALUES(937, 937, 4, 3843, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695528708); INSERT INTO lost_and_found VALUES(937, 937, 4, 3844, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695528708); INSERT INTO lost_and_found VALUES(937, 937, 4, 3845, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695528709); INSERT INTO lost_and_found VALUES(937, 937, 4, 3846, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695528709); INSERT INTO lost_and_found VALUES(937, 937, 4, 3847, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695528710); INSERT INTO lost_and_found VALUES(937, 937, 4, 3848, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695528710); INSERT INTO lost_and_found VALUES(937, 937, 4, 3849, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695528711); INSERT INTO lost_and_found VALUES(937, 937, 4, 3850, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695528711); INSERT INTO lost_and_found VALUES(937, 937, 4, 3851, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695528712); INSERT INTO lost_and_found VALUES(937, 937, 4, 3852, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695528712); INSERT INTO lost_and_found VALUES(937, 937, 4, 3853, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695528713); INSERT INTO lost_and_found VALUES(937, 937, 4, 3854, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695529310); INSERT INTO lost_and_found VALUES(937, 937, 4, 3855, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695529311); INSERT INTO lost_and_found VALUES(937, 937, 4, 3856, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695529311); INSERT INTO lost_and_found VALUES(937, 937, 4, 3857, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695529312); INSERT INTO lost_and_found VALUES(937, 937, 4, 3858, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695529312); INSERT INTO lost_and_found VALUES(938, 938, 4, 3859, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695529313); INSERT INTO lost_and_found VALUES(938, 938, 4, 3860, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695529313); INSERT INTO lost_and_found VALUES(938, 938, 4, 3861, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695529313); INSERT INTO lost_and_found VALUES(938, 938, 4, 3862, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695529314); INSERT INTO lost_and_found VALUES(938, 938, 4, 3863, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695529314); INSERT INTO lost_and_found VALUES(938, 938, 4, 3864, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695529315); INSERT INTO lost_and_found VALUES(938, 938, 4, 3865, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695529315); INSERT INTO lost_and_found VALUES(938, 938, 4, 3866, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695529908); INSERT INTO lost_and_found VALUES(938, 938, 4, 3867, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695529909); INSERT INTO lost_and_found VALUES(938, 938, 4, 3868, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695529909); INSERT INTO lost_and_found VALUES(938, 938, 4, 3869, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695529910); INSERT INTO lost_and_found VALUES(938, 938, 4, 3870, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695529910); INSERT INTO lost_and_found VALUES(938, 938, 4, 3871, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695529911); INSERT INTO lost_and_found VALUES(938, 938, 4, 3872, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695529911); INSERT INTO lost_and_found VALUES(938, 938, 4, 3873, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695529911); INSERT INTO lost_and_found VALUES(938, 938, 4, 3874, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695529912); INSERT INTO lost_and_found VALUES(938, 938, 4, 3875, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695529912); INSERT INTO lost_and_found VALUES(939, 939, 4, 3876, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695529913); INSERT INTO lost_and_found VALUES(939, 939, 4, 3877, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695529913); INSERT INTO lost_and_found VALUES(939, 939, 4, 3878, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695530508); INSERT INTO lost_and_found VALUES(939, 939, 4, 3879, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695530508); INSERT INTO lost_and_found VALUES(939, 939, 4, 3880, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695530509); INSERT INTO lost_and_found VALUES(939, 939, 4, 3881, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695530509); INSERT INTO lost_and_found VALUES(939, 939, 4, 3882, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695530510); INSERT INTO lost_and_found VALUES(939, 939, 4, 3883, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695530510); INSERT INTO lost_and_found VALUES(939, 939, 4, 3884, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695530510); INSERT INTO lost_and_found VALUES(939, 939, 4, 3885, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695530511); INSERT INTO lost_and_found VALUES(939, 939, 4, 3886, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695530511); INSERT INTO lost_and_found VALUES(939, 939, 4, 3887, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695530512); INSERT INTO lost_and_found VALUES(939, 939, 4, 3888, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695530512); INSERT INTO lost_and_found VALUES(939, 939, 4, 3889, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695530513); INSERT INTO lost_and_found VALUES(939, 939, 4, 3890, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695531107); INSERT INTO lost_and_found VALUES(939, 939, 4, 3891, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695531108); INSERT INTO lost_and_found VALUES(939, 939, 4, 3892, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695531108); INSERT INTO lost_and_found VALUES(940, 940, 4, 3893, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695531108); INSERT INTO lost_and_found VALUES(940, 940, 4, 3894, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695531109); INSERT INTO lost_and_found VALUES(940, 940, 4, 3895, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695531109); INSERT INTO lost_and_found VALUES(940, 940, 4, 3896, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695531110); INSERT INTO lost_and_found VALUES(940, 940, 4, 3897, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695531110); INSERT INTO lost_and_found VALUES(940, 940, 4, 3898, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695531111); INSERT INTO lost_and_found VALUES(940, 940, 4, 3899, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695531111); INSERT INTO lost_and_found VALUES(940, 940, 4, 3900, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695531112); INSERT INTO lost_and_found VALUES(940, 940, 4, 3901, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695531112); INSERT INTO lost_and_found VALUES(940, 940, 4, 3902, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695531709); INSERT INTO lost_and_found VALUES(940, 940, 4, 3903, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695531709); INSERT INTO lost_and_found VALUES(940, 940, 4, 3904, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695531710); INSERT INTO lost_and_found VALUES(940, 940, 4, 3905, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695531710); INSERT INTO lost_and_found VALUES(940, 940, 4, 3906, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695531711); INSERT INTO lost_and_found VALUES(940, 940, 4, 3907, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695531711); INSERT INTO lost_and_found VALUES(940, 940, 4, 3908, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695531712); INSERT INTO lost_and_found VALUES(940, 940, 4, 3909, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695531712); INSERT INTO lost_and_found VALUES(941, 941, 4, 3910, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695531713); INSERT INTO lost_and_found VALUES(941, 941, 4, 3911, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695531713); INSERT INTO lost_and_found VALUES(941, 941, 4, 3912, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695531714); INSERT INTO lost_and_found VALUES(941, 941, 4, 3913, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695531714); INSERT INTO lost_and_found VALUES(941, 941, 4, 3914, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695532308); INSERT INTO lost_and_found VALUES(941, 941, 4, 3915, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695532308); INSERT INTO lost_and_found VALUES(941, 941, 4, 3916, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695532309); INSERT INTO lost_and_found VALUES(941, 941, 4, 3917, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695532309); INSERT INTO lost_and_found VALUES(941, 941, 4, 3918, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695532310); INSERT INTO lost_and_found VALUES(941, 941, 4, 3919, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695532310); INSERT INTO lost_and_found VALUES(941, 941, 4, 3920, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695532311); INSERT INTO lost_and_found VALUES(941, 941, 4, 3921, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695532311); INSERT INTO lost_and_found VALUES(941, 941, 4, 3922, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695532311); INSERT INTO lost_and_found VALUES(941, 941, 4, 3923, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695532312); INSERT INTO lost_and_found VALUES(941, 941, 4, 3924, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695532312); INSERT INTO lost_and_found VALUES(941, 941, 4, 3925, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695532313); INSERT INTO lost_and_found VALUES(941, 941, 4, 3926, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695532907); INSERT INTO lost_and_found VALUES(942, 942, 4, 3927, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695532908); INSERT INTO lost_and_found VALUES(942, 942, 4, 3928, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695532908); INSERT INTO lost_and_found VALUES(942, 942, 4, 3929, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695532909); INSERT INTO lost_and_found VALUES(942, 942, 4, 3930, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695532909); INSERT INTO lost_and_found VALUES(942, 942, 4, 3931, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695532909); INSERT INTO lost_and_found VALUES(942, 942, 4, 3932, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695532910); INSERT INTO lost_and_found VALUES(942, 942, 4, 3933, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695532910); INSERT INTO lost_and_found VALUES(942, 942, 4, 3934, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695532911); INSERT INTO lost_and_found VALUES(942, 942, 4, 3935, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695532911); INSERT INTO lost_and_found VALUES(942, 942, 4, 3936, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695532912); INSERT INTO lost_and_found VALUES(942, 942, 4, 3937, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695532912); INSERT INTO lost_and_found VALUES(942, 942, 4, 3938, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695533509); INSERT INTO lost_and_found VALUES(942, 942, 4, 3939, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695533509); INSERT INTO lost_and_found VALUES(942, 942, 4, 3940, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695533510); INSERT INTO lost_and_found VALUES(942, 942, 4, 3941, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695533510); INSERT INTO lost_and_found VALUES(942, 942, 4, 3942, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695533510); INSERT INTO lost_and_found VALUES(942, 942, 4, 3943, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695533511); INSERT INTO lost_and_found VALUES(942, 942, 4, 3944, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695533511); INSERT INTO lost_and_found VALUES(943, 943, 4, 3945, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695533512); INSERT INTO lost_and_found VALUES(943, 943, 4, 3946, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695533512); INSERT INTO lost_and_found VALUES(943, 943, 4, 3947, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695533513); INSERT INTO lost_and_found VALUES(943, 943, 4, 3948, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695533513); INSERT INTO lost_and_found VALUES(943, 943, 4, 3949, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695533514); INSERT INTO lost_and_found VALUES(943, 943, 4, 3950, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695534108); INSERT INTO lost_and_found VALUES(943, 943, 4, 3951, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695534109); INSERT INTO lost_and_found VALUES(943, 943, 4, 3952, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695534109); INSERT INTO lost_and_found VALUES(943, 943, 4, 3953, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695534109); INSERT INTO lost_and_found VALUES(943, 943, 4, 3954, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695534110); INSERT INTO lost_and_found VALUES(943, 943, 4, 3955, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695534110); INSERT INTO lost_and_found VALUES(943, 943, 4, 3956, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695534111); INSERT INTO lost_and_found VALUES(943, 943, 4, 3957, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695534111); INSERT INTO lost_and_found VALUES(943, 943, 4, 3958, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695534112); INSERT INTO lost_and_found VALUES(943, 943, 4, 3959, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695534112); INSERT INTO lost_and_found VALUES(943, 943, 4, 3960, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695534113); INSERT INTO lost_and_found VALUES(943, 943, 4, 3961, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695534113); INSERT INTO lost_and_found VALUES(944, 944, 4, 3962, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695534708); INSERT INTO lost_and_found VALUES(944, 944, 4, 3963, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695534708); INSERT INTO lost_and_found VALUES(944, 944, 4, 3964, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695534708); INSERT INTO lost_and_found VALUES(944, 944, 4, 3965, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695534709); INSERT INTO lost_and_found VALUES(944, 944, 4, 3966, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695534709); INSERT INTO lost_and_found VALUES(944, 944, 4, 3967, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695534710); INSERT INTO lost_and_found VALUES(944, 944, 4, 3968, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695534710); INSERT INTO lost_and_found VALUES(944, 944, 4, 3969, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695534711); INSERT INTO lost_and_found VALUES(944, 944, 4, 3970, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695534711); INSERT INTO lost_and_found VALUES(944, 944, 4, 3971, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695534712); INSERT INTO lost_and_found VALUES(944, 944, 4, 3972, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695534712); INSERT INTO lost_and_found VALUES(944, 944, 4, 3973, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695534712); INSERT INTO lost_and_found VALUES(944, 944, 4, 3974, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695535309); INSERT INTO lost_and_found VALUES(944, 944, 4, 3975, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695535309); INSERT INTO lost_and_found VALUES(944, 944, 4, 3976, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695535310); INSERT INTO lost_and_found VALUES(944, 944, 4, 3977, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695535310); INSERT INTO lost_and_found VALUES(944, 944, 4, 3978, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695535311); INSERT INTO lost_and_found VALUES(945, 945, 4, 3979, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695535311); INSERT INTO lost_and_found VALUES(945, 945, 4, 3980, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695535312); INSERT INTO lost_and_found VALUES(945, 945, 4, 3981, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695535312); INSERT INTO lost_and_found VALUES(945, 945, 4, 3982, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695535313); INSERT INTO lost_and_found VALUES(945, 945, 4, 3983, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695535313); INSERT INTO lost_and_found VALUES(945, 945, 4, 3984, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695535313); INSERT INTO lost_and_found VALUES(945, 945, 4, 3985, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695535314); INSERT INTO lost_and_found VALUES(945, 945, 4, 3986, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695535908); INSERT INTO lost_and_found VALUES(945, 945, 4, 3987, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695535909); INSERT INTO lost_and_found VALUES(945, 945, 4, 3988, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695535909); INSERT INTO lost_and_found VALUES(945, 945, 4, 3989, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695535910); INSERT INTO lost_and_found VALUES(945, 945, 4, 3990, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695535910); INSERT INTO lost_and_found VALUES(945, 945, 4, 3991, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695535911); INSERT INTO lost_and_found VALUES(945, 945, 4, 3992, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695535911); INSERT INTO lost_and_found VALUES(945, 945, 4, 3993, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695535911); INSERT INTO lost_and_found VALUES(945, 945, 4, 3994, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695535912); INSERT INTO lost_and_found VALUES(945, 945, 4, 3995, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695535912); INSERT INTO lost_and_found VALUES(946, 946, 4, 3996, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695535913); INSERT INTO lost_and_found VALUES(946, 946, 4, 3997, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695535913); INSERT INTO lost_and_found VALUES(946, 946, 4, 3998, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695536508); INSERT INTO lost_and_found VALUES(946, 946, 4, 3999, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695536508); INSERT INTO lost_and_found VALUES(946, 946, 4, 4000, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695536509); INSERT INTO lost_and_found VALUES(946, 946, 4, 4001, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695536509); INSERT INTO lost_and_found VALUES(946, 946, 4, 4002, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695536510); INSERT INTO lost_and_found VALUES(946, 946, 4, 4003, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695536510); INSERT INTO lost_and_found VALUES(946, 946, 4, 4004, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695536510); INSERT INTO lost_and_found VALUES(946, 946, 4, 4005, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695536511); INSERT INTO lost_and_found VALUES(946, 946, 4, 4006, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695536511); INSERT INTO lost_and_found VALUES(946, 946, 4, 4007, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695536512); INSERT INTO lost_and_found VALUES(946, 946, 4, 4008, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695536512); INSERT INTO lost_and_found VALUES(946, 946, 4, 4009, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695536513); INSERT INTO lost_and_found VALUES(946, 946, 4, 4010, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695537107); INSERT INTO lost_and_found VALUES(946, 946, 4, 4011, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695537108); INSERT INTO lost_and_found VALUES(946, 946, 4, 4012, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695537108); INSERT INTO lost_and_found VALUES(947, 947, 4, 4013, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695537108); INSERT INTO lost_and_found VALUES(947, 947, 4, 4014, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695537109); INSERT INTO lost_and_found VALUES(947, 947, 4, 4015, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695537109); INSERT INTO lost_and_found VALUES(947, 947, 4, 4016, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695537110); INSERT INTO lost_and_found VALUES(947, 947, 4, 4017, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695537110); INSERT INTO lost_and_found VALUES(947, 947, 4, 4018, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695537111); INSERT INTO lost_and_found VALUES(947, 947, 4, 4019, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695537111); INSERT INTO lost_and_found VALUES(947, 947, 4, 4020, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695537111); INSERT INTO lost_and_found VALUES(947, 947, 4, 4021, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695537112); INSERT INTO lost_and_found VALUES(947, 947, 4, 4022, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695537709); INSERT INTO lost_and_found VALUES(947, 947, 4, 4023, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695537709); INSERT INTO lost_and_found VALUES(947, 947, 4, 4024, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695537709); INSERT INTO lost_and_found VALUES(947, 947, 4, 4025, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695537710); INSERT INTO lost_and_found VALUES(947, 947, 4, 4026, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695537710); INSERT INTO lost_and_found VALUES(947, 947, 4, 4027, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695537711); INSERT INTO lost_and_found VALUES(947, 947, 4, 4028, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695537711); INSERT INTO lost_and_found VALUES(947, 947, 4, 4029, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695537712); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531111, 3899, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531112, 3900, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531112, 3901, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531709, 3902, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531709, 3903, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531710, 3904, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531710, 3905, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531711, 3906, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531711, 3907, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531712, 3908, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531712, 3909, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531713, 3910, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531713, 3911, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531714, 3912, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695531714, 3913, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532308, 3914, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532308, 3915, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532309, 3916, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532309, 3917, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532310, 3918, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532310, 3919, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532311, 3920, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532311, 3921, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532311, 3922, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532312, 3923, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532312, 3924, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532313, 3925, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532907, 3926, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532908, 3927, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532908, 3928, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532909, 3929, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532909, 3930, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532909, 3931, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532910, 3932, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532910, 3933, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532911, 3934, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532911, 3935, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532912, 3936, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695532912, 3937, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533509, 3938, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533509, 3939, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533510, 3940, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533510, 3941, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533510, 3942, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533511, 3943, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533511, 3944, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533512, 3945, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533512, 3946, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533513, 3947, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533513, 3948, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695533514, 3949, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534108, 3950, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534109, 3951, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534109, 3952, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534109, 3953, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534110, 3954, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534110, 3955, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534111, 3956, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534111, 3957, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534112, 3958, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534112, 3959, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534113, 3960, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534113, 3961, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534708, 3962, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534708, 3963, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534708, 3964, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534709, 3965, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534709, 3966, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534710, 3967, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534710, 3968, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534711, 3969, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534711, 3970, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534712, 3971, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534712, 3972, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695534712, 3973, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535309, 3974, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535309, 3975, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535310, 3976, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535310, 3977, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535311, 3978, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535311, 3979, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535312, 3980, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535312, 3981, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535313, 3982, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535313, 3983, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535313, 3984, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535314, 3985, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535908, 3986, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535909, 3987, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535909, 3988, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535910, 3989, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535910, 3990, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535911, 3991, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535911, 3992, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535911, 3993, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535912, 3994, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535912, 3995, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535913, 3996, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695535913, 3997, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536508, 3998, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536508, 3999, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536509, 4000, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536509, 4001, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536510, 4002, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536510, 4003, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536510, 4004, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536511, 4005, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536511, 4006, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536512, 4007, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536512, 4008, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695536513, 4009, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537107, 4010, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537108, 4011, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537108, 4012, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537108, 4013, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537109, 4014, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537109, 4015, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537110, 4016, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537110, 4017, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537111, 4018, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537111, 4019, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537111, 4020, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537112, 4021, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537709, 4022, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537709, 4023, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537709, 4024, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537710, 4025, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537710, 4026, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537711, 4027, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537711, 4028, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537712, 4029, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537712, 4030, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537712, 4031, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537713, 4032, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695537713, 4033, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538308, 4034, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538308, 4035, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538309, 4036, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538309, 4037, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538310, 4038, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538310, 4039, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538311, 4040, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538311, 4041, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538311, 4042, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538312, 4043, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538312, 4044, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538313, 4045, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538907, 4046, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538908, 4047, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538908, 4048, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538909, 4049, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538909, 4050, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538909, 4051, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538910, 4052, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538910, 4053, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538911, 4054, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538911, 4055, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538912, 4056, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695538912, 4057, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539509, 4058, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539509, 4059, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539510, 4060, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539510, 4061, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539510, 4062, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539511, 4063, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539511, 4064, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539512, 4065, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539512, 4066, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539513, 4067, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539513, 4068, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695539513, 4069, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540108, 4070, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540109, 4071, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540109, 4072, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540109, 4073, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540110, 4074, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540110, 4075, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540111, 4076, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540111, 4077, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540112, 4078, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540112, 4079, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540113, 4080, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540113, 4081, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540707, 4082, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540708, 4083, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540708, 4084, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540709, 4085, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540709, 4086, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540710, 4087, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540710, 4088, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540711, 4089, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540711, 4090, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540711, 4091, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540712, 4092, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695540712, 4093, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541309, 4094, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541309, 4095, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541310, 4096, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541310, 4097, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541311, 4098, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541311, 4099, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541312, 4100, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541312, 4101, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541312, 4102, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541313, 4103, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541313, 4104, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541314, 4105, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541908, 4106, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541909, 4107, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541909, 4108, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541910, 4109, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541910, 4110, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541910, 4111, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541911, 4112, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541911, 4113, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541912, 4114, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541912, 4115, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541913, 4116, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695541913, 4117, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542508, 4118, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542508, 4119, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542509, 4120, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542509, 4121, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542509, 4122, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542510, 4123, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542511, 4124, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542511, 4125, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542512, 4126, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542512, 4127, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542513, 4128, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695542513, 4129, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543109, 4130, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543110, 4131, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543110, 4132, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543110, 4133, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543111, 4134, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543111, 4135, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543112, 4136, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543112, 4137, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543113, 4138, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543113, 4139, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543113, 4140, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543114, 4141, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543708, 4142, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543709, 4143, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543709, 4144, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543710, 4145, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543710, 4146, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543711, 4147, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543711, 4148, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543712, 4149, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543712, 4150, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543712, 4151, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543713, 4152, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695543713, 4153, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544312, 4154, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544312, 4155, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544313, 4156, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544313, 4157, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544314, 4158, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544314, 4159, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544314, 4160, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544315, 4161, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544315, 4162, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544316, 4163, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544316, 4164, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544317, 4165, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544909, 4166, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544909, 4167, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544910, 4168, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544910, 4169, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544910, 4170, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544911, 4171, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544911, 4172, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544912, 4173, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544912, 4174, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544913, 4175, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544913, 4176, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695544914, 4177, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545509, 4178, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545509, 4179, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545510, 4180, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545510, 4181, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545510, 4182, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545511, 4183, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545511, 4184, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545512, 4185, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545512, 4186, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545513, 4187, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545513, 4188, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695545513, 4189, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695546108, 4190, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695546109, 4191, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695546109, 4192, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695546110, 4193, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695546110, 4194, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695546111, 4195, NULL, NULL); INSERT INTO lost_and_found VALUES(948, 948, 2, NULL, 1695546111, 4196, NULL, NULL); INSERT INTO lost_and_found VALUES(949, 949, 4, 4030, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695537712); INSERT INTO lost_and_found VALUES(949, 949, 4, 4031, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695537712); INSERT INTO lost_and_found VALUES(949, 949, 4, 4032, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695537713); INSERT INTO lost_and_found VALUES(949, 949, 4, 4033, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695537713); INSERT INTO lost_and_found VALUES(949, 949, 4, 4034, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695538308); INSERT INTO lost_and_found VALUES(949, 949, 4, 4035, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695538308); INSERT INTO lost_and_found VALUES(949, 949, 4, 4036, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695538309); INSERT INTO lost_and_found VALUES(949, 949, 4, 4037, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695538309); INSERT INTO lost_and_found VALUES(949, 949, 4, 4038, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695538310); INSERT INTO lost_and_found VALUES(949, 949, 4, 4039, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695538310); INSERT INTO lost_and_found VALUES(949, 949, 4, 4040, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695538311); INSERT INTO lost_and_found VALUES(949, 949, 4, 4041, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695538311); INSERT INTO lost_and_found VALUES(949, 949, 4, 4042, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695538311); INSERT INTO lost_and_found VALUES(949, 949, 4, 4043, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695538312); INSERT INTO lost_and_found VALUES(949, 949, 4, 4044, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695538312); INSERT INTO lost_and_found VALUES(949, 949, 4, 4045, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695538313); INSERT INTO lost_and_found VALUES(949, 949, 4, 4046, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695538907); INSERT INTO lost_and_found VALUES(950, 950, 4, 4047, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695538908); INSERT INTO lost_and_found VALUES(950, 950, 4, 4048, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695538908); INSERT INTO lost_and_found VALUES(950, 950, 4, 4049, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695538909); INSERT INTO lost_and_found VALUES(950, 950, 4, 4050, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695538909); INSERT INTO lost_and_found VALUES(950, 950, 4, 4051, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695538909); INSERT INTO lost_and_found VALUES(950, 950, 4, 4052, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695538910); INSERT INTO lost_and_found VALUES(950, 950, 4, 4053, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695538910); INSERT INTO lost_and_found VALUES(950, 950, 4, 4054, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695538911); INSERT INTO lost_and_found VALUES(950, 950, 4, 4055, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695538911); INSERT INTO lost_and_found VALUES(950, 950, 4, 4056, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695538912); INSERT INTO lost_and_found VALUES(950, 950, 4, 4057, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695538912); INSERT INTO lost_and_found VALUES(950, 950, 4, 4058, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695539509); INSERT INTO lost_and_found VALUES(950, 950, 4, 4059, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695539509); INSERT INTO lost_and_found VALUES(950, 950, 4, 4060, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695539510); INSERT INTO lost_and_found VALUES(950, 950, 4, 4061, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695539510); INSERT INTO lost_and_found VALUES(950, 950, 4, 4062, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695539510); INSERT INTO lost_and_found VALUES(950, 950, 4, 4063, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695539511); INSERT INTO lost_and_found VALUES(950, 950, 4, 4064, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695539511); INSERT INTO lost_and_found VALUES(951, 951, 4, 4065, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695539512); INSERT INTO lost_and_found VALUES(951, 951, 4, 4066, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695539512); INSERT INTO lost_and_found VALUES(951, 951, 4, 4067, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695539513); INSERT INTO lost_and_found VALUES(951, 951, 4, 4068, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695539513); INSERT INTO lost_and_found VALUES(951, 951, 4, 4069, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695539513); INSERT INTO lost_and_found VALUES(951, 951, 4, 4070, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695540108); INSERT INTO lost_and_found VALUES(951, 951, 4, 4071, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695540109); INSERT INTO lost_and_found VALUES(951, 951, 4, 4072, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695540109); INSERT INTO lost_and_found VALUES(951, 951, 4, 4073, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695540109); INSERT INTO lost_and_found VALUES(951, 951, 4, 4074, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695540110); INSERT INTO lost_and_found VALUES(951, 951, 4, 4075, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695540110); INSERT INTO lost_and_found VALUES(951, 951, 4, 4076, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695540111); INSERT INTO lost_and_found VALUES(951, 951, 4, 4077, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695540111); INSERT INTO lost_and_found VALUES(951, 951, 4, 4078, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695540112); INSERT INTO lost_and_found VALUES(951, 951, 4, 4079, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695540112); INSERT INTO lost_and_found VALUES(951, 951, 4, 4080, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695540113); INSERT INTO lost_and_found VALUES(951, 951, 4, 4081, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695540113); INSERT INTO lost_and_found VALUES(952, 952, 4, 4082, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695540707); INSERT INTO lost_and_found VALUES(952, 952, 4, 4083, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695540708); INSERT INTO lost_and_found VALUES(952, 952, 4, 4084, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695540708); INSERT INTO lost_and_found VALUES(952, 952, 4, 4085, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695540709); INSERT INTO lost_and_found VALUES(952, 952, 4, 4086, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695540709); INSERT INTO lost_and_found VALUES(952, 952, 4, 4087, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695540710); INSERT INTO lost_and_found VALUES(952, 952, 4, 4088, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695540710); INSERT INTO lost_and_found VALUES(952, 952, 4, 4089, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695540711); INSERT INTO lost_and_found VALUES(952, 952, 4, 4090, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695540711); INSERT INTO lost_and_found VALUES(952, 952, 4, 4091, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695540711); INSERT INTO lost_and_found VALUES(952, 952, 4, 4092, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695540712); INSERT INTO lost_and_found VALUES(952, 952, 4, 4093, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695540712); INSERT INTO lost_and_found VALUES(952, 952, 4, 4094, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695541309); INSERT INTO lost_and_found VALUES(952, 952, 4, 4095, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695541309); INSERT INTO lost_and_found VALUES(952, 952, 4, 4096, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695541310); INSERT INTO lost_and_found VALUES(952, 952, 4, 4097, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695541310); INSERT INTO lost_and_found VALUES(952, 952, 4, 4098, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695541311); INSERT INTO lost_and_found VALUES(953, 953, 4, 4099, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695541311); INSERT INTO lost_and_found VALUES(953, 953, 4, 4100, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695541312); INSERT INTO lost_and_found VALUES(953, 953, 4, 4101, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695541312); INSERT INTO lost_and_found VALUES(953, 953, 4, 4102, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695541312); INSERT INTO lost_and_found VALUES(953, 953, 4, 4103, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695541313); INSERT INTO lost_and_found VALUES(953, 953, 4, 4104, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695541313); INSERT INTO lost_and_found VALUES(953, 953, 4, 4105, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695541314); INSERT INTO lost_and_found VALUES(953, 953, 4, 4106, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695541908); INSERT INTO lost_and_found VALUES(953, 953, 4, 4107, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695541909); INSERT INTO lost_and_found VALUES(953, 953, 4, 4108, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695541909); INSERT INTO lost_and_found VALUES(953, 953, 4, 4109, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695541910); INSERT INTO lost_and_found VALUES(953, 953, 4, 4110, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695541910); INSERT INTO lost_and_found VALUES(953, 953, 4, 4111, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695541910); INSERT INTO lost_and_found VALUES(953, 953, 4, 4112, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695541911); INSERT INTO lost_and_found VALUES(953, 953, 4, 4113, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695541911); INSERT INTO lost_and_found VALUES(953, 953, 4, 4114, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695541912); INSERT INTO lost_and_found VALUES(953, 953, 4, 4115, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695541912); INSERT INTO lost_and_found VALUES(954, 954, 4, 4116, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695541913); INSERT INTO lost_and_found VALUES(954, 954, 4, 4117, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695541913); INSERT INTO lost_and_found VALUES(954, 954, 4, 4118, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695542508); INSERT INTO lost_and_found VALUES(954, 954, 4, 4119, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695542508); INSERT INTO lost_and_found VALUES(954, 954, 4, 4120, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695542509); INSERT INTO lost_and_found VALUES(954, 954, 4, 4121, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695542509); INSERT INTO lost_and_found VALUES(954, 954, 4, 4122, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695542509); INSERT INTO lost_and_found VALUES(954, 954, 4, 4123, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695542510); INSERT INTO lost_and_found VALUES(954, 954, 4, 4124, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695542511); INSERT INTO lost_and_found VALUES(954, 954, 4, 4125, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695542511); INSERT INTO lost_and_found VALUES(954, 954, 4, 4126, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695542512); INSERT INTO lost_and_found VALUES(954, 954, 4, 4127, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695542512); INSERT INTO lost_and_found VALUES(954, 954, 4, 4128, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695542513); INSERT INTO lost_and_found VALUES(954, 954, 4, 4129, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695542513); INSERT INTO lost_and_found VALUES(954, 954, 4, 4130, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695543109); INSERT INTO lost_and_found VALUES(954, 954, 4, 4131, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695543110); INSERT INTO lost_and_found VALUES(954, 954, 4, 4132, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695543110); INSERT INTO lost_and_found VALUES(955, 955, 4, 4133, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695543110); INSERT INTO lost_and_found VALUES(955, 955, 4, 4134, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695543111); INSERT INTO lost_and_found VALUES(955, 955, 4, 4135, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695543111); INSERT INTO lost_and_found VALUES(955, 955, 4, 4136, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695543112); INSERT INTO lost_and_found VALUES(955, 955, 4, 4137, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695543112); INSERT INTO lost_and_found VALUES(955, 955, 4, 4138, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695543113); INSERT INTO lost_and_found VALUES(955, 955, 4, 4139, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695543113); INSERT INTO lost_and_found VALUES(955, 955, 4, 4140, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695543113); INSERT INTO lost_and_found VALUES(955, 955, 4, 4141, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695543114); INSERT INTO lost_and_found VALUES(955, 955, 4, 4142, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695543708); INSERT INTO lost_and_found VALUES(955, 955, 4, 4143, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695543709); INSERT INTO lost_and_found VALUES(955, 955, 4, 4144, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695543709); INSERT INTO lost_and_found VALUES(955, 955, 4, 4145, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695543710); INSERT INTO lost_and_found VALUES(955, 955, 4, 4146, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695543710); INSERT INTO lost_and_found VALUES(955, 955, 4, 4147, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695543711); INSERT INTO lost_and_found VALUES(955, 955, 4, 4148, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695543711); INSERT INTO lost_and_found VALUES(955, 955, 4, 4149, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695543712); INSERT INTO lost_and_found VALUES(956, 956, 4, 4150, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695543712); INSERT INTO lost_and_found VALUES(956, 956, 4, 4151, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695543712); INSERT INTO lost_and_found VALUES(956, 956, 4, 4152, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695543713); INSERT INTO lost_and_found VALUES(956, 956, 4, 4153, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695543713); INSERT INTO lost_and_found VALUES(956, 956, 4, 4154, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695544312); INSERT INTO lost_and_found VALUES(956, 956, 4, 4155, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695544312); INSERT INTO lost_and_found VALUES(956, 956, 4, 4156, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695544313); INSERT INTO lost_and_found VALUES(956, 956, 4, 4157, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695544313); INSERT INTO lost_and_found VALUES(956, 956, 4, 4158, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695544314); INSERT INTO lost_and_found VALUES(956, 956, 4, 4159, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695544314); INSERT INTO lost_and_found VALUES(956, 956, 4, 4160, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695544314); INSERT INTO lost_and_found VALUES(956, 956, 4, 4161, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695544315); INSERT INTO lost_and_found VALUES(956, 956, 4, 4162, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695544315); INSERT INTO lost_and_found VALUES(956, 956, 4, 4163, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695544316); INSERT INTO lost_and_found VALUES(956, 956, 4, 4164, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695544316); INSERT INTO lost_and_found VALUES(956, 956, 4, 4165, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695544317); INSERT INTO lost_and_found VALUES(956, 956, 4, 4166, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695544909); INSERT INTO lost_and_found VALUES(957, 957, 4, 4167, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695544909); INSERT INTO lost_and_found VALUES(957, 957, 4, 4168, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695544910); INSERT INTO lost_and_found VALUES(957, 957, 4, 4169, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695544910); INSERT INTO lost_and_found VALUES(957, 957, 4, 4170, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695544910); INSERT INTO lost_and_found VALUES(957, 957, 4, 4171, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695544911); INSERT INTO lost_and_found VALUES(957, 957, 4, 4172, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695544911); INSERT INTO lost_and_found VALUES(957, 957, 4, 4173, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695544912); INSERT INTO lost_and_found VALUES(957, 957, 4, 4174, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695544912); INSERT INTO lost_and_found VALUES(957, 957, 4, 4175, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695544913); INSERT INTO lost_and_found VALUES(957, 957, 4, 4176, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695544913); INSERT INTO lost_and_found VALUES(957, 957, 4, 4177, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695544914); INSERT INTO lost_and_found VALUES(957, 957, 4, 4178, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695545509); INSERT INTO lost_and_found VALUES(957, 957, 4, 4179, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695545509); INSERT INTO lost_and_found VALUES(957, 957, 4, 4180, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695545510); INSERT INTO lost_and_found VALUES(957, 957, 4, 4181, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695545510); INSERT INTO lost_and_found VALUES(957, 957, 4, 4182, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695545510); INSERT INTO lost_and_found VALUES(957, 957, 4, 4183, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695545511); INSERT INTO lost_and_found VALUES(957, 957, 4, 4184, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695545511); INSERT INTO lost_and_found VALUES(958, 958, 4, 4185, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695545512); INSERT INTO lost_and_found VALUES(958, 958, 4, 4186, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695545512); INSERT INTO lost_and_found VALUES(958, 958, 4, 4187, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695545513); INSERT INTO lost_and_found VALUES(958, 958, 4, 4188, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695545513); INSERT INTO lost_and_found VALUES(958, 958, 4, 4189, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695545513); INSERT INTO lost_and_found VALUES(958, 958, 4, 4190, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695546108); INSERT INTO lost_and_found VALUES(958, 958, 4, 4191, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695546109); INSERT INTO lost_and_found VALUES(958, 958, 4, 4192, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695546109); INSERT INTO lost_and_found VALUES(958, 958, 4, 4193, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695546110); INSERT INTO lost_and_found VALUES(958, 958, 4, 4194, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695546110); INSERT INTO lost_and_found VALUES(958, 958, 4, 4195, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695546111); INSERT INTO lost_and_found VALUES(958, 958, 4, 4196, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695546111); INSERT INTO lost_and_found VALUES(958, 958, 4, 4197, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695546112); INSERT INTO lost_and_found VALUES(958, 958, 4, 4198, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695546112); INSERT INTO lost_and_found VALUES(958, 958, 4, 4199, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695546113); INSERT INTO lost_and_found VALUES(958, 958, 4, 4200, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695546113); INSERT INTO lost_and_found VALUES(958, 958, 4, 4201, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695546114); INSERT INTO lost_and_found VALUES(959, 959, 4, 4202, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695546707); INSERT INTO lost_and_found VALUES(959, 959, 4, 4203, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695546708); INSERT INTO lost_and_found VALUES(959, 959, 4, 4204, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695546708); INSERT INTO lost_and_found VALUES(959, 959, 4, 4205, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695546709); INSERT INTO lost_and_found VALUES(959, 959, 4, 4206, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695546709); INSERT INTO lost_and_found VALUES(959, 959, 4, 4207, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695546710); INSERT INTO lost_and_found VALUES(959, 959, 4, 4208, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695546710); INSERT INTO lost_and_found VALUES(959, 959, 4, 4209, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695546711); INSERT INTO lost_and_found VALUES(959, 959, 4, 4210, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695546711); INSERT INTO lost_and_found VALUES(959, 959, 4, 4211, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695546711); INSERT INTO lost_and_found VALUES(959, 959, 4, 4212, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695546712); INSERT INTO lost_and_found VALUES(959, 959, 4, 4213, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695546712); INSERT INTO lost_and_found VALUES(959, 959, 4, 4214, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695547309); INSERT INTO lost_and_found VALUES(959, 959, 4, 4215, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695547309); INSERT INTO lost_and_found VALUES(959, 959, 4, 4216, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695547310); INSERT INTO lost_and_found VALUES(959, 959, 4, 4217, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695547310); INSERT INTO lost_and_found VALUES(959, 959, 4, 4218, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695547311); INSERT INTO lost_and_found VALUES(960, 960, 4, 4219, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695547311); INSERT INTO lost_and_found VALUES(960, 960, 4, 4220, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695547311); INSERT INTO lost_and_found VALUES(960, 960, 4, 4221, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695547312); INSERT INTO lost_and_found VALUES(960, 960, 4, 4222, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695547312); INSERT INTO lost_and_found VALUES(960, 960, 4, 4223, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695547313); INSERT INTO lost_and_found VALUES(960, 960, 4, 4224, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695547313); INSERT INTO lost_and_found VALUES(960, 960, 4, 4225, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695547314); INSERT INTO lost_and_found VALUES(960, 960, 4, 4226, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695547908); INSERT INTO lost_and_found VALUES(960, 960, 4, 4227, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695547909); INSERT INTO lost_and_found VALUES(960, 960, 4, 4228, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695547909); INSERT INTO lost_and_found VALUES(960, 960, 4, 4229, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695547910); INSERT INTO lost_and_found VALUES(960, 960, 4, 4230, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695547910); INSERT INTO lost_and_found VALUES(960, 960, 4, 4231, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695547910); INSERT INTO lost_and_found VALUES(960, 960, 4, 4232, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695547911); INSERT INTO lost_and_found VALUES(960, 960, 4, 4233, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695547911); INSERT INTO lost_and_found VALUES(960, 960, 4, 4234, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695547912); INSERT INTO lost_and_found VALUES(960, 960, 4, 4235, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695547912); INSERT INTO lost_and_found VALUES(961, 961, 4, 4236, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695547913); INSERT INTO lost_and_found VALUES(961, 961, 4, 4237, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695547913); INSERT INTO lost_and_found VALUES(961, 961, 4, 4238, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695548508); INSERT INTO lost_and_found VALUES(961, 961, 4, 4239, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695548508); INSERT INTO lost_and_found VALUES(961, 961, 4, 4240, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695548509); INSERT INTO lost_and_found VALUES(961, 961, 4, 4241, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695548509); INSERT INTO lost_and_found VALUES(961, 961, 4, 4242, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695548509); INSERT INTO lost_and_found VALUES(961, 961, 4, 4243, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695548510); INSERT INTO lost_and_found VALUES(961, 961, 4, 4244, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695548510); INSERT INTO lost_and_found VALUES(961, 961, 4, 4245, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695548511); INSERT INTO lost_and_found VALUES(961, 961, 4, 4246, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695548511); INSERT INTO lost_and_found VALUES(961, 961, 4, 4247, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695548512); INSERT INTO lost_and_found VALUES(961, 961, 4, 4248, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695548512); INSERT INTO lost_and_found VALUES(961, 961, 4, 4249, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695548512); INSERT INTO lost_and_found VALUES(961, 961, 4, 4250, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695549109); INSERT INTO lost_and_found VALUES(961, 961, 4, 4251, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695549109); INSERT INTO lost_and_found VALUES(961, 961, 4, 4252, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695549110); INSERT INTO lost_and_found VALUES(962, 962, 4, 4253, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695549110); INSERT INTO lost_and_found VALUES(962, 962, 4, 4254, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695549111); INSERT INTO lost_and_found VALUES(962, 962, 4, 4255, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695549111); INSERT INTO lost_and_found VALUES(962, 962, 4, 4256, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695549112); INSERT INTO lost_and_found VALUES(962, 962, 4, 4257, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695549112); INSERT INTO lost_and_found VALUES(962, 962, 4, 4258, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695549112); INSERT INTO lost_and_found VALUES(962, 962, 4, 4259, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695549113); INSERT INTO lost_and_found VALUES(962, 962, 4, 4260, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695549113); INSERT INTO lost_and_found VALUES(962, 962, 4, 4261, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695549114); INSERT INTO lost_and_found VALUES(962, 962, 4, 4262, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695549708); INSERT INTO lost_and_found VALUES(962, 962, 4, 4263, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695549709); INSERT INTO lost_and_found VALUES(962, 962, 4, 4264, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695549709); INSERT INTO lost_and_found VALUES(962, 962, 4, 4265, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695549710); INSERT INTO lost_and_found VALUES(962, 962, 4, 4266, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695549710); INSERT INTO lost_and_found VALUES(962, 962, 4, 4267, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695549711); INSERT INTO lost_and_found VALUES(962, 962, 4, 4268, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695549711); INSERT INTO lost_and_found VALUES(962, 962, 4, 4269, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695549711); INSERT INTO lost_and_found VALUES(963, 963, 4, 4270, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695549712); INSERT INTO lost_and_found VALUES(963, 963, 4, 4271, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695549712); INSERT INTO lost_and_found VALUES(963, 963, 4, 4272, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695549713); INSERT INTO lost_and_found VALUES(963, 963, 4, 4273, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695549713); INSERT INTO lost_and_found VALUES(963, 963, 4, 4274, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695550308); INSERT INTO lost_and_found VALUES(963, 963, 4, 4275, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695550308); INSERT INTO lost_and_found VALUES(963, 963, 4, 4276, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695550309); INSERT INTO lost_and_found VALUES(963, 963, 4, 4277, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695550309); INSERT INTO lost_and_found VALUES(963, 963, 4, 4278, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695550310); INSERT INTO lost_and_found VALUES(963, 963, 4, 4279, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695550310); INSERT INTO lost_and_found VALUES(963, 963, 4, 4280, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695550310); INSERT INTO lost_and_found VALUES(963, 963, 4, 4281, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695550311); INSERT INTO lost_and_found VALUES(963, 963, 4, 4282, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695550311); INSERT INTO lost_and_found VALUES(963, 963, 4, 4283, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695550312); INSERT INTO lost_and_found VALUES(963, 963, 4, 4284, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695550312); INSERT INTO lost_and_found VALUES(963, 963, 4, 4285, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695550313); INSERT INTO lost_and_found VALUES(963, 963, 4, 4286, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695550907); INSERT INTO lost_and_found VALUES(964, 964, 4, 4287, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695550908); INSERT INTO lost_and_found VALUES(964, 964, 4, 4288, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695550908); INSERT INTO lost_and_found VALUES(964, 964, 4, 4289, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695550909); INSERT INTO lost_and_found VALUES(964, 964, 4, 4290, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695550909); INSERT INTO lost_and_found VALUES(964, 964, 4, 4291, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695550910); INSERT INTO lost_and_found VALUES(964, 964, 4, 4292, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695550910); INSERT INTO lost_and_found VALUES(964, 964, 4, 4293, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695550910); INSERT INTO lost_and_found VALUES(964, 964, 4, 4294, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695550911); INSERT INTO lost_and_found VALUES(964, 964, 4, 4295, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695550911); INSERT INTO lost_and_found VALUES(964, 964, 4, 4296, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695550912); INSERT INTO lost_and_found VALUES(964, 964, 4, 4297, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695550912); INSERT INTO lost_and_found VALUES(964, 964, 4, 4298, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695551509); INSERT INTO lost_and_found VALUES(964, 964, 4, 4299, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695551509); INSERT INTO lost_and_found VALUES(964, 964, 4, 4300, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695551509); INSERT INTO lost_and_found VALUES(964, 964, 4, 4301, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695551510); INSERT INTO lost_and_found VALUES(964, 964, 4, 4302, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695551510); INSERT INTO lost_and_found VALUES(964, 964, 4, 4303, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695551511); INSERT INTO lost_and_found VALUES(964, 964, 4, 4304, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695551511); INSERT INTO lost_and_found VALUES(965, 965, 4, 4305, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695551512); INSERT INTO lost_and_found VALUES(965, 965, 4, 4306, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695551512); INSERT INTO lost_and_found VALUES(965, 965, 4, 4307, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695551513); INSERT INTO lost_and_found VALUES(965, 965, 4, 4308, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695551513); INSERT INTO lost_and_found VALUES(965, 965, 4, 4309, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695551513); INSERT INTO lost_and_found VALUES(965, 965, 4, 4310, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695552108); INSERT INTO lost_and_found VALUES(965, 965, 4, 4311, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695552108); INSERT INTO lost_and_found VALUES(965, 965, 4, 4312, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695552109); INSERT INTO lost_and_found VALUES(965, 965, 4, 4313, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695552109); INSERT INTO lost_and_found VALUES(965, 965, 4, 4314, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695552110); INSERT INTO lost_and_found VALUES(965, 965, 4, 4315, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695552110); INSERT INTO lost_and_found VALUES(965, 965, 4, 4316, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695552111); INSERT INTO lost_and_found VALUES(965, 965, 4, 4317, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695552111); INSERT INTO lost_and_found VALUES(965, 965, 4, 4318, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695552111); INSERT INTO lost_and_found VALUES(965, 965, 4, 4319, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695552112); INSERT INTO lost_and_found VALUES(965, 965, 4, 4320, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695552112); INSERT INTO lost_and_found VALUES(965, 965, 4, 4321, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695552113); INSERT INTO lost_and_found VALUES(966, 966, 4, 4322, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695552707); INSERT INTO lost_and_found VALUES(966, 966, 4, 4323, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695552708); INSERT INTO lost_and_found VALUES(966, 966, 4, 4324, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695552708); INSERT INTO lost_and_found VALUES(966, 966, 4, 4325, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695552709); INSERT INTO lost_and_found VALUES(966, 966, 4, 4326, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695552709); INSERT INTO lost_and_found VALUES(966, 966, 4, 4327, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695552710); INSERT INTO lost_and_found VALUES(966, 966, 4, 4328, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695552710); INSERT INTO lost_and_found VALUES(966, 966, 4, 4329, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695552710); INSERT INTO lost_and_found VALUES(966, 966, 4, 4330, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695552711); INSERT INTO lost_and_found VALUES(966, 966, 4, 4331, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695552711); INSERT INTO lost_and_found VALUES(966, 966, 4, 4332, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695552712); INSERT INTO lost_and_found VALUES(966, 966, 4, 4333, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695552712); INSERT INTO lost_and_found VALUES(966, 966, 4, 4334, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695553309); INSERT INTO lost_and_found VALUES(966, 966, 4, 4335, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695553309); INSERT INTO lost_and_found VALUES(966, 966, 4, 4336, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695553310); INSERT INTO lost_and_found VALUES(966, 966, 4, 4337, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695553310); INSERT INTO lost_and_found VALUES(966, 966, 4, 4338, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695553311); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546112, 4198, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546113, 4199, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546113, 4200, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546114, 4201, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546707, 4202, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546708, 4203, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546708, 4204, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546709, 4205, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546709, 4206, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546710, 4207, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546710, 4208, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546711, 4209, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546711, 4210, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546711, 4211, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546712, 4212, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695546712, 4213, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547309, 4214, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547309, 4215, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547310, 4216, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547310, 4217, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547311, 4218, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547311, 4219, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547311, 4220, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547312, 4221, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547312, 4222, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547313, 4223, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547313, 4224, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547314, 4225, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547908, 4226, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547909, 4227, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547909, 4228, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547910, 4229, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547910, 4230, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547910, 4231, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547911, 4232, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547911, 4233, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547912, 4234, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547912, 4235, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547913, 4236, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695547913, 4237, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548508, 4238, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548508, 4239, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548509, 4240, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548509, 4241, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548509, 4242, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548510, 4243, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548510, 4244, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548511, 4245, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548511, 4246, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548512, 4247, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548512, 4248, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695548512, 4249, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549109, 4250, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549109, 4251, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549110, 4252, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549110, 4253, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549111, 4254, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549111, 4255, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549112, 4256, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549112, 4257, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549112, 4258, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549113, 4259, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549113, 4260, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549114, 4261, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549708, 4262, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549709, 4263, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549709, 4264, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549710, 4265, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549710, 4266, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549711, 4267, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549711, 4268, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549711, 4269, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549712, 4270, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549712, 4271, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549713, 4272, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695549713, 4273, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550308, 4274, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550308, 4275, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550309, 4276, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550309, 4277, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550310, 4278, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550310, 4279, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550310, 4280, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550311, 4281, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550311, 4282, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550312, 4283, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550312, 4284, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550313, 4285, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550907, 4286, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550908, 4287, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550908, 4288, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550909, 4289, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550909, 4290, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550910, 4291, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550910, 4292, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550910, 4293, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550911, 4294, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550911, 4295, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550912, 4296, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695550912, 4297, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551509, 4298, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551509, 4299, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551509, 4300, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551510, 4301, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551510, 4302, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551511, 4303, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551511, 4304, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551512, 4305, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551512, 4306, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551513, 4307, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551513, 4308, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695551513, 4309, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552108, 4310, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552108, 4311, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552109, 4312, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552109, 4313, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552110, 4314, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552110, 4315, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552111, 4316, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552111, 4317, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552111, 4318, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552112, 4319, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552112, 4320, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552113, 4321, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552707, 4322, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552708, 4323, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552708, 4324, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552709, 4325, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552709, 4326, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552710, 4327, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552710, 4328, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552710, 4329, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552711, 4330, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552711, 4331, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552712, 4332, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695552712, 4333, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553309, 4334, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553309, 4335, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553310, 4336, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553310, 4337, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553311, 4338, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553311, 4339, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553311, 4340, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553312, 4341, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553312, 4342, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553313, 4343, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553313, 4344, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553314, 4345, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553908, 4346, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553909, 4347, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553909, 4348, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553909, 4349, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553910, 4350, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553910, 4351, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553911, 4352, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553911, 4353, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553912, 4354, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553912, 4355, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553913, 4356, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695553913, 4357, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554508, 4358, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554508, 4359, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554508, 4360, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554509, 4361, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554509, 4362, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554510, 4363, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554510, 4364, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554511, 4365, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554511, 4366, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554512, 4367, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554512, 4368, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695554512, 4369, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555109, 4370, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555109, 4371, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555110, 4372, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555110, 4373, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555111, 4374, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555111, 4375, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555112, 4376, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555112, 4377, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555113, 4378, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555113, 4379, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555114, 4380, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555114, 4381, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555708, 4382, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555709, 4383, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555710, 4384, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555710, 4385, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555711, 4386, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555712, 4387, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555712, 4388, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555712, 4389, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555713, 4390, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555713, 4391, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555714, 4392, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695555714, 4393, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556308, 4394, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556308, 4395, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556309, 4396, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556309, 4397, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556310, 4398, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556310, 4399, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556310, 4400, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556311, 4401, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556311, 4402, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556312, 4403, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556312, 4404, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556313, 4405, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556907, 4406, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556908, 4407, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556908, 4408, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556908, 4409, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556909, 4410, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556909, 4411, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556910, 4412, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556910, 4413, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556911, 4414, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556911, 4415, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556912, 4416, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695556912, 4417, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557509, 4418, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557509, 4419, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557509, 4420, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557510, 4421, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557510, 4422, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557511, 4423, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557511, 4424, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557512, 4425, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557513, 4426, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557513, 4427, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557514, 4428, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695557515, 4429, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558108, 4430, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558108, 4431, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558109, 4432, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558109, 4433, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558110, 4434, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558110, 4435, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558111, 4436, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558111, 4437, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558111, 4438, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558112, 4439, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558112, 4440, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558113, 4441, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558709, 4442, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558709, 4443, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558710, 4444, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558710, 4445, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558710, 4446, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558711, 4447, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558711, 4448, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558712, 4449, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558712, 4450, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558713, 4451, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558713, 4452, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695558713, 4453, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559309, 4454, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559309, 4455, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559310, 4456, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559310, 4457, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559310, 4458, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559311, 4459, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559311, 4460, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559312, 4461, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559312, 4462, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559313, 4463, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559313, 4464, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559314, 4465, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559908, 4466, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559909, 4467, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559909, 4468, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559909, 4469, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559910, 4470, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559910, 4471, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559911, 4472, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559911, 4473, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559912, 4474, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559912, 4475, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559912, 4476, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695559913, 4477, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560508, 4478, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560508, 4479, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560509, 4480, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560509, 4481, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560510, 4482, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560510, 4483, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560511, 4484, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560511, 4485, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560512, 4486, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560513, 4487, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560513, 4488, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695560514, 4489, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695561109, 4490, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695561109, 4491, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695561110, 4492, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695561110, 4493, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695561111, 4494, NULL, NULL); INSERT INTO lost_and_found VALUES(967, 967, 2, NULL, 1695561111, 4495, NULL, NULL); INSERT INTO lost_and_found VALUES(968, 968, 4, 4339, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695553311); INSERT INTO lost_and_found VALUES(968, 968, 4, 4340, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695553311); INSERT INTO lost_and_found VALUES(968, 968, 4, 4341, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695553312); INSERT INTO lost_and_found VALUES(968, 968, 4, 4342, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695553312); INSERT INTO lost_and_found VALUES(968, 968, 4, 4343, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695553313); INSERT INTO lost_and_found VALUES(968, 968, 4, 4344, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695553313); INSERT INTO lost_and_found VALUES(968, 968, 4, 4345, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695553314); INSERT INTO lost_and_found VALUES(968, 968, 4, 4346, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695553908); INSERT INTO lost_and_found VALUES(968, 968, 4, 4347, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695553909); INSERT INTO lost_and_found VALUES(968, 968, 4, 4348, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695553909); INSERT INTO lost_and_found VALUES(968, 968, 4, 4349, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695553909); INSERT INTO lost_and_found VALUES(968, 968, 4, 4350, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695553910); INSERT INTO lost_and_found VALUES(968, 968, 4, 4351, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695553910); INSERT INTO lost_and_found VALUES(968, 968, 4, 4352, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695553911); INSERT INTO lost_and_found VALUES(968, 968, 4, 4353, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695553911); INSERT INTO lost_and_found VALUES(968, 968, 4, 4354, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695553912); INSERT INTO lost_and_found VALUES(968, 968, 4, 4355, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695553912); INSERT INTO lost_and_found VALUES(969, 969, 4, 4356, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695553913); INSERT INTO lost_and_found VALUES(969, 969, 4, 4357, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695553913); INSERT INTO lost_and_found VALUES(969, 969, 4, 4358, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695554508); INSERT INTO lost_and_found VALUES(969, 969, 4, 4359, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695554508); INSERT INTO lost_and_found VALUES(969, 969, 4, 4360, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695554508); INSERT INTO lost_and_found VALUES(969, 969, 4, 4361, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695554509); INSERT INTO lost_and_found VALUES(969, 969, 4, 4362, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695554509); INSERT INTO lost_and_found VALUES(969, 969, 4, 4363, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695554510); INSERT INTO lost_and_found VALUES(969, 969, 4, 4364, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695554510); INSERT INTO lost_and_found VALUES(969, 969, 4, 4365, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695554511); INSERT INTO lost_and_found VALUES(969, 969, 4, 4366, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695554511); INSERT INTO lost_and_found VALUES(969, 969, 4, 4367, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695554512); INSERT INTO lost_and_found VALUES(969, 969, 4, 4368, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695554512); INSERT INTO lost_and_found VALUES(969, 969, 4, 4369, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695554512); INSERT INTO lost_and_found VALUES(969, 969, 4, 4370, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695555109); INSERT INTO lost_and_found VALUES(969, 969, 4, 4371, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695555109); INSERT INTO lost_and_found VALUES(969, 969, 4, 4372, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695555110); INSERT INTO lost_and_found VALUES(970, 970, 4, 4373, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695555110); INSERT INTO lost_and_found VALUES(970, 970, 4, 4374, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695555111); INSERT INTO lost_and_found VALUES(970, 970, 4, 4375, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695555111); INSERT INTO lost_and_found VALUES(970, 970, 4, 4376, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695555112); INSERT INTO lost_and_found VALUES(970, 970, 4, 4377, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695555112); INSERT INTO lost_and_found VALUES(970, 970, 4, 4378, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695555113); INSERT INTO lost_and_found VALUES(970, 970, 4, 4379, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695555113); INSERT INTO lost_and_found VALUES(970, 970, 4, 4380, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695555114); INSERT INTO lost_and_found VALUES(970, 970, 4, 4381, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695555114); INSERT INTO lost_and_found VALUES(970, 970, 4, 4382, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695555708); INSERT INTO lost_and_found VALUES(970, 970, 4, 4383, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695555709); INSERT INTO lost_and_found VALUES(970, 970, 4, 4384, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695555710); INSERT INTO lost_and_found VALUES(970, 970, 4, 4385, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695555710); INSERT INTO lost_and_found VALUES(970, 970, 4, 4386, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695555711); INSERT INTO lost_and_found VALUES(970, 970, 4, 4387, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695555712); INSERT INTO lost_and_found VALUES(970, 970, 4, 4388, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695555712); INSERT INTO lost_and_found VALUES(970, 970, 4, 4389, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695555712); INSERT INTO lost_and_found VALUES(971, 971, 4, 4390, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695555713); INSERT INTO lost_and_found VALUES(971, 971, 4, 4391, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695555713); INSERT INTO lost_and_found VALUES(971, 971, 4, 4392, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695555714); INSERT INTO lost_and_found VALUES(971, 971, 4, 4393, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695555714); INSERT INTO lost_and_found VALUES(971, 971, 4, 4394, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695556308); INSERT INTO lost_and_found VALUES(971, 971, 4, 4395, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695556308); INSERT INTO lost_and_found VALUES(971, 971, 4, 4396, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695556309); INSERT INTO lost_and_found VALUES(971, 971, 4, 4397, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695556309); INSERT INTO lost_and_found VALUES(971, 971, 4, 4398, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695556310); INSERT INTO lost_and_found VALUES(971, 971, 4, 4399, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695556310); INSERT INTO lost_and_found VALUES(971, 971, 4, 4400, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695556310); INSERT INTO lost_and_found VALUES(971, 971, 4, 4401, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695556311); INSERT INTO lost_and_found VALUES(971, 971, 4, 4402, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695556311); INSERT INTO lost_and_found VALUES(971, 971, 4, 4403, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695556312); INSERT INTO lost_and_found VALUES(971, 971, 4, 4404, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695556312); INSERT INTO lost_and_found VALUES(971, 971, 4, 4405, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695556313); INSERT INTO lost_and_found VALUES(971, 971, 4, 4406, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695556907); INSERT INTO lost_and_found VALUES(972, 972, 4, 4407, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695556908); INSERT INTO lost_and_found VALUES(972, 972, 4, 4408, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695556908); INSERT INTO lost_and_found VALUES(972, 972, 4, 4409, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695556908); INSERT INTO lost_and_found VALUES(972, 972, 4, 4410, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695556909); INSERT INTO lost_and_found VALUES(972, 972, 4, 4411, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695556909); INSERT INTO lost_and_found VALUES(972, 972, 4, 4412, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695556910); INSERT INTO lost_and_found VALUES(972, 972, 4, 4413, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695556910); INSERT INTO lost_and_found VALUES(972, 972, 4, 4414, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695556911); INSERT INTO lost_and_found VALUES(972, 972, 4, 4415, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695556911); INSERT INTO lost_and_found VALUES(972, 972, 4, 4416, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695556912); INSERT INTO lost_and_found VALUES(972, 972, 4, 4417, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695556912); INSERT INTO lost_and_found VALUES(972, 972, 4, 4418, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695557509); INSERT INTO lost_and_found VALUES(972, 972, 4, 4419, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695557509); INSERT INTO lost_and_found VALUES(972, 972, 4, 4420, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695557509); INSERT INTO lost_and_found VALUES(972, 972, 4, 4421, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695557510); INSERT INTO lost_and_found VALUES(972, 972, 4, 4422, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695557510); INSERT INTO lost_and_found VALUES(972, 972, 4, 4423, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695557511); INSERT INTO lost_and_found VALUES(972, 972, 4, 4424, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695557511); INSERT INTO lost_and_found VALUES(973, 973, 4, 4425, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695557512); INSERT INTO lost_and_found VALUES(973, 973, 4, 4426, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695557513); INSERT INTO lost_and_found VALUES(973, 973, 4, 4427, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695557513); INSERT INTO lost_and_found VALUES(973, 973, 4, 4428, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695557514); INSERT INTO lost_and_found VALUES(973, 973, 4, 4429, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695557515); INSERT INTO lost_and_found VALUES(973, 973, 4, 4430, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695558108); INSERT INTO lost_and_found VALUES(973, 973, 4, 4431, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695558108); INSERT INTO lost_and_found VALUES(973, 973, 4, 4432, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695558109); INSERT INTO lost_and_found VALUES(973, 973, 4, 4433, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695558109); INSERT INTO lost_and_found VALUES(973, 973, 4, 4434, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695558110); INSERT INTO lost_and_found VALUES(973, 973, 4, 4435, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695558110); INSERT INTO lost_and_found VALUES(973, 973, 4, 4436, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695558111); INSERT INTO lost_and_found VALUES(973, 973, 4, 4437, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695558111); INSERT INTO lost_and_found VALUES(973, 973, 4, 4438, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695558111); INSERT INTO lost_and_found VALUES(973, 973, 4, 4439, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695558112); INSERT INTO lost_and_found VALUES(973, 973, 4, 4440, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695558112); INSERT INTO lost_and_found VALUES(973, 973, 4, 4441, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695558113); INSERT INTO lost_and_found VALUES(974, 974, 4, 4442, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695558709); INSERT INTO lost_and_found VALUES(974, 974, 4, 4443, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695558709); INSERT INTO lost_and_found VALUES(974, 974, 4, 4444, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695558710); INSERT INTO lost_and_found VALUES(974, 974, 4, 4445, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695558710); INSERT INTO lost_and_found VALUES(974, 974, 4, 4446, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695558710); INSERT INTO lost_and_found VALUES(974, 974, 4, 4447, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695558711); INSERT INTO lost_and_found VALUES(974, 974, 4, 4448, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695558711); INSERT INTO lost_and_found VALUES(974, 974, 4, 4449, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695558712); INSERT INTO lost_and_found VALUES(974, 974, 4, 4450, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695558712); INSERT INTO lost_and_found VALUES(974, 974, 4, 4451, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695558713); INSERT INTO lost_and_found VALUES(974, 974, 4, 4452, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695558713); INSERT INTO lost_and_found VALUES(974, 974, 4, 4453, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695558713); INSERT INTO lost_and_found VALUES(974, 974, 4, 4454, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695559309); INSERT INTO lost_and_found VALUES(974, 974, 4, 4455, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695559309); INSERT INTO lost_and_found VALUES(974, 974, 4, 4456, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695559310); INSERT INTO lost_and_found VALUES(974, 974, 4, 4457, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695559310); INSERT INTO lost_and_found VALUES(974, 974, 4, 4458, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695559310); INSERT INTO lost_and_found VALUES(975, 975, 4, 4459, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695559311); INSERT INTO lost_and_found VALUES(975, 975, 4, 4460, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695559311); INSERT INTO lost_and_found VALUES(975, 975, 4, 4461, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695559312); INSERT INTO lost_and_found VALUES(975, 975, 4, 4462, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695559312); INSERT INTO lost_and_found VALUES(975, 975, 4, 4463, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695559313); INSERT INTO lost_and_found VALUES(975, 975, 4, 4464, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695559313); INSERT INTO lost_and_found VALUES(975, 975, 4, 4465, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695559314); INSERT INTO lost_and_found VALUES(975, 975, 4, 4466, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695559908); INSERT INTO lost_and_found VALUES(975, 975, 4, 4467, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695559909); INSERT INTO lost_and_found VALUES(975, 975, 4, 4468, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695559909); INSERT INTO lost_and_found VALUES(975, 975, 4, 4469, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695559909); INSERT INTO lost_and_found VALUES(975, 975, 4, 4470, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695559910); INSERT INTO lost_and_found VALUES(975, 975, 4, 4471, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695559910); INSERT INTO lost_and_found VALUES(975, 975, 4, 4472, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695559911); INSERT INTO lost_and_found VALUES(975, 975, 4, 4473, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695559911); INSERT INTO lost_and_found VALUES(975, 975, 4, 4474, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695559912); INSERT INTO lost_and_found VALUES(975, 975, 4, 4475, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695559912); INSERT INTO lost_and_found VALUES(976, 976, 4, 4476, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695559912); INSERT INTO lost_and_found VALUES(976, 976, 4, 4477, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695559913); INSERT INTO lost_and_found VALUES(976, 976, 4, 4478, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695560508); INSERT INTO lost_and_found VALUES(976, 976, 4, 4479, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695560508); INSERT INTO lost_and_found VALUES(976, 976, 4, 4480, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695560509); INSERT INTO lost_and_found VALUES(976, 976, 4, 4481, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695560509); INSERT INTO lost_and_found VALUES(976, 976, 4, 4482, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695560510); INSERT INTO lost_and_found VALUES(976, 976, 4, 4483, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695560510); INSERT INTO lost_and_found VALUES(976, 976, 4, 4484, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695560511); INSERT INTO lost_and_found VALUES(976, 976, 4, 4485, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695560511); INSERT INTO lost_and_found VALUES(976, 976, 4, 4486, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695560512); INSERT INTO lost_and_found VALUES(976, 976, 4, 4487, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695560513); INSERT INTO lost_and_found VALUES(976, 976, 4, 4488, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695560513); INSERT INTO lost_and_found VALUES(976, 976, 4, 4489, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695560514); INSERT INTO lost_and_found VALUES(976, 976, 4, 4490, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695561109); INSERT INTO lost_and_found VALUES(976, 976, 4, 4491, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695561109); INSERT INTO lost_and_found VALUES(976, 976, 4, 4492, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695561110); INSERT INTO lost_and_found VALUES(977, 977, 4, 4493, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695561110); INSERT INTO lost_and_found VALUES(977, 977, 4, 4494, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695561111); INSERT INTO lost_and_found VALUES(977, 977, 4, 4495, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695561111); INSERT INTO lost_and_found VALUES(977, 977, 4, 4496, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695561111); INSERT INTO lost_and_found VALUES(977, 977, 4, 4497, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695561112); INSERT INTO lost_and_found VALUES(977, 977, 4, 4498, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695561112); INSERT INTO lost_and_found VALUES(977, 977, 4, 4499, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695561113); INSERT INTO lost_and_found VALUES(977, 977, 4, 4500, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695561113); INSERT INTO lost_and_found VALUES(977, 977, 4, 4501, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695561114); INSERT INTO lost_and_found VALUES(977, 977, 4, 4502, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695561708); INSERT INTO lost_and_found VALUES(977, 977, 4, 4503, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695561709); INSERT INTO lost_and_found VALUES(977, 977, 4, 4504, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695561709); INSERT INTO lost_and_found VALUES(977, 977, 4, 4505, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695561710); INSERT INTO lost_and_found VALUES(977, 977, 4, 4506, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695561710); INSERT INTO lost_and_found VALUES(977, 977, 4, 4507, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695561711); INSERT INTO lost_and_found VALUES(977, 977, 4, 4508, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695561711); INSERT INTO lost_and_found VALUES(977, 977, 4, 4509, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695561711); INSERT INTO lost_and_found VALUES(978, 978, 4, 4510, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695561712); INSERT INTO lost_and_found VALUES(978, 978, 4, 4511, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695561712); INSERT INTO lost_and_found VALUES(978, 978, 4, 4512, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695561713); INSERT INTO lost_and_found VALUES(978, 978, 4, 4513, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695561713); INSERT INTO lost_and_found VALUES(978, 978, 4, 4514, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695562308); INSERT INTO lost_and_found VALUES(978, 978, 4, 4515, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695562308); INSERT INTO lost_and_found VALUES(978, 978, 4, 4516, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695562309); INSERT INTO lost_and_found VALUES(978, 978, 4, 4517, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695562309); INSERT INTO lost_and_found VALUES(978, 978, 4, 4518, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695562310); INSERT INTO lost_and_found VALUES(978, 978, 4, 4519, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695562310); INSERT INTO lost_and_found VALUES(978, 978, 4, 4520, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695562311); INSERT INTO lost_and_found VALUES(978, 978, 4, 4521, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695562311); INSERT INTO lost_and_found VALUES(978, 978, 4, 4522, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695562311); INSERT INTO lost_and_found VALUES(978, 978, 4, 4523, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695562312); INSERT INTO lost_and_found VALUES(978, 978, 4, 4524, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695562312); INSERT INTO lost_and_found VALUES(978, 978, 4, 4525, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695562313); INSERT INTO lost_and_found VALUES(978, 978, 4, 4526, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695562907); INSERT INTO lost_and_found VALUES(979, 979, 4, 4527, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695562907); INSERT INTO lost_and_found VALUES(979, 979, 4, 4528, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695562908); INSERT INTO lost_and_found VALUES(979, 979, 4, 4529, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695562908); INSERT INTO lost_and_found VALUES(979, 979, 4, 4530, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695562909); INSERT INTO lost_and_found VALUES(979, 979, 4, 4531, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695562909); INSERT INTO lost_and_found VALUES(979, 979, 4, 4532, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695562910); INSERT INTO lost_and_found VALUES(979, 979, 4, 4533, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695562910); INSERT INTO lost_and_found VALUES(979, 979, 4, 4534, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695562910); INSERT INTO lost_and_found VALUES(979, 979, 4, 4535, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695562911); INSERT INTO lost_and_found VALUES(979, 979, 4, 4536, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695562911); INSERT INTO lost_and_found VALUES(979, 979, 4, 4537, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695562912); INSERT INTO lost_and_found VALUES(979, 979, 4, 4538, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695563509); INSERT INTO lost_and_found VALUES(979, 979, 4, 4539, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695563509); INSERT INTO lost_and_found VALUES(979, 979, 4, 4540, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695563509); INSERT INTO lost_and_found VALUES(979, 979, 4, 4541, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695563510); INSERT INTO lost_and_found VALUES(979, 979, 4, 4542, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695563510); INSERT INTO lost_and_found VALUES(979, 979, 4, 4543, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695563511); INSERT INTO lost_and_found VALUES(979, 979, 4, 4544, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695563511); INSERT INTO lost_and_found VALUES(980, 980, 4, 4545, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695563512); INSERT INTO lost_and_found VALUES(980, 980, 4, 4546, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695563512); INSERT INTO lost_and_found VALUES(980, 980, 4, 4547, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695563513); INSERT INTO lost_and_found VALUES(980, 980, 4, 4548, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695563513); INSERT INTO lost_and_found VALUES(980, 980, 4, 4549, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695563514); INSERT INTO lost_and_found VALUES(980, 980, 4, 4550, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695564108); INSERT INTO lost_and_found VALUES(980, 980, 4, 4551, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695564108); INSERT INTO lost_and_found VALUES(980, 980, 4, 4552, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695564109); INSERT INTO lost_and_found VALUES(980, 980, 4, 4553, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695564109); INSERT INTO lost_and_found VALUES(980, 980, 4, 4554, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695564110); INSERT INTO lost_and_found VALUES(980, 980, 4, 4555, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695564110); INSERT INTO lost_and_found VALUES(980, 980, 4, 4556, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695564111); INSERT INTO lost_and_found VALUES(980, 980, 4, 4557, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695564111); INSERT INTO lost_and_found VALUES(980, 980, 4, 4558, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695564112); INSERT INTO lost_and_found VALUES(980, 980, 4, 4559, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695564112); INSERT INTO lost_and_found VALUES(980, 980, 4, 4560, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695564113); INSERT INTO lost_and_found VALUES(980, 980, 4, 4561, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695564113); INSERT INTO lost_and_found VALUES(981, 981, 4, 4562, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695564707); INSERT INTO lost_and_found VALUES(981, 981, 4, 4563, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695564708); INSERT INTO lost_and_found VALUES(981, 981, 4, 4564, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695564708); INSERT INTO lost_and_found VALUES(981, 981, 4, 4565, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695564709); INSERT INTO lost_and_found VALUES(981, 981, 4, 4566, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695564709); INSERT INTO lost_and_found VALUES(981, 981, 4, 4567, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695564710); INSERT INTO lost_and_found VALUES(981, 981, 4, 4568, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695564710); INSERT INTO lost_and_found VALUES(981, 981, 4, 4569, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695564710); INSERT INTO lost_and_found VALUES(981, 981, 4, 4570, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695564711); INSERT INTO lost_and_found VALUES(981, 981, 4, 4571, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695564711); INSERT INTO lost_and_found VALUES(981, 981, 4, 4572, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695564712); INSERT INTO lost_and_found VALUES(981, 981, 4, 4573, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695564712); INSERT INTO lost_and_found VALUES(981, 981, 4, 4574, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695565309); INSERT INTO lost_and_found VALUES(981, 981, 4, 4575, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695565309); INSERT INTO lost_and_found VALUES(981, 981, 4, 4576, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695565310); INSERT INTO lost_and_found VALUES(981, 981, 4, 4577, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695565310); INSERT INTO lost_and_found VALUES(981, 981, 4, 4578, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695565310); INSERT INTO lost_and_found VALUES(982, 982, 4, 4579, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695565311); INSERT INTO lost_and_found VALUES(982, 982, 4, 4580, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695565311); INSERT INTO lost_and_found VALUES(982, 982, 4, 4581, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695565312); INSERT INTO lost_and_found VALUES(982, 982, 4, 4582, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695565312); INSERT INTO lost_and_found VALUES(982, 982, 4, 4583, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695565313); INSERT INTO lost_and_found VALUES(982, 982, 4, 4584, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695565313); INSERT INTO lost_and_found VALUES(982, 982, 4, 4585, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695565313); INSERT INTO lost_and_found VALUES(982, 982, 4, 4586, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695565908); INSERT INTO lost_and_found VALUES(982, 982, 4, 4587, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695565909); INSERT INTO lost_and_found VALUES(982, 982, 4, 4588, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695565909); INSERT INTO lost_and_found VALUES(982, 982, 4, 4589, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695565909); INSERT INTO lost_and_found VALUES(982, 982, 4, 4590, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695565910); INSERT INTO lost_and_found VALUES(982, 982, 4, 4591, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695565910); INSERT INTO lost_and_found VALUES(982, 982, 4, 4592, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695565911); INSERT INTO lost_and_found VALUES(982, 982, 4, 4593, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695565911); INSERT INTO lost_and_found VALUES(982, 982, 4, 4594, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695565912); INSERT INTO lost_and_found VALUES(982, 982, 4, 4595, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695565912); INSERT INTO lost_and_found VALUES(983, 983, 4, 4596, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695565912); INSERT INTO lost_and_found VALUES(983, 983, 4, 4597, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695565913); INSERT INTO lost_and_found VALUES(983, 983, 4, 4598, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695566508); INSERT INTO lost_and_found VALUES(983, 983, 4, 4599, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695566508); INSERT INTO lost_and_found VALUES(983, 983, 4, 4600, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695566508); INSERT INTO lost_and_found VALUES(983, 983, 4, 4601, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695566509); INSERT INTO lost_and_found VALUES(983, 983, 4, 4602, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695566509); INSERT INTO lost_and_found VALUES(983, 983, 4, 4603, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695566510); INSERT INTO lost_and_found VALUES(983, 983, 4, 4604, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695566510); INSERT INTO lost_and_found VALUES(983, 983, 4, 4605, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695566511); INSERT INTO lost_and_found VALUES(983, 983, 4, 4606, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695566511); INSERT INTO lost_and_found VALUES(983, 983, 4, 4607, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695566511); INSERT INTO lost_and_found VALUES(983, 983, 4, 4608, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695566512); INSERT INTO lost_and_found VALUES(983, 983, 4, 4609, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695566512); INSERT INTO lost_and_found VALUES(983, 983, 4, 4610, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695567109); INSERT INTO lost_and_found VALUES(983, 983, 4, 4611, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695567109); INSERT INTO lost_and_found VALUES(983, 983, 4, 4612, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695567110); INSERT INTO lost_and_found VALUES(984, 984, 4, 4613, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695567110); INSERT INTO lost_and_found VALUES(984, 984, 4, 4614, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695567111); INSERT INTO lost_and_found VALUES(984, 984, 4, 4615, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695567111); INSERT INTO lost_and_found VALUES(984, 984, 4, 4616, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695567112); INSERT INTO lost_and_found VALUES(984, 984, 4, 4617, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695567112); INSERT INTO lost_and_found VALUES(984, 984, 4, 4618, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695567112); INSERT INTO lost_and_found VALUES(984, 984, 4, 4619, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695567113); INSERT INTO lost_and_found VALUES(984, 984, 4, 4620, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695567113); INSERT INTO lost_and_found VALUES(984, 984, 4, 4621, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695567114); INSERT INTO lost_and_found VALUES(984, 984, 4, 4622, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695567708); INSERT INTO lost_and_found VALUES(984, 984, 4, 4623, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695567709); INSERT INTO lost_and_found VALUES(984, 984, 4, 4624, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695567709); INSERT INTO lost_and_found VALUES(984, 984, 4, 4625, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695567710); INSERT INTO lost_and_found VALUES(984, 984, 4, 4626, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695567710); INSERT INTO lost_and_found VALUES(984, 984, 4, 4627, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695567710); INSERT INTO lost_and_found VALUES(984, 984, 4, 4628, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695567711); INSERT INTO lost_and_found VALUES(984, 984, 4, 4629, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695567711); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561112, 4497, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561112, 4498, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561113, 4499, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561113, 4500, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561114, 4501, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561708, 4502, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561709, 4503, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561709, 4504, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561710, 4505, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561710, 4506, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561711, 4507, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561711, 4508, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561711, 4509, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561712, 4510, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561712, 4511, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561713, 4512, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695561713, 4513, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562308, 4514, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562308, 4515, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562309, 4516, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562309, 4517, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562310, 4518, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562310, 4519, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562311, 4520, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562311, 4521, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562311, 4522, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562312, 4523, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562312, 4524, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562313, 4525, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562907, 4526, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562907, 4527, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562908, 4528, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562908, 4529, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562909, 4530, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562909, 4531, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562910, 4532, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562910, 4533, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562910, 4534, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562911, 4535, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562911, 4536, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695562912, 4537, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563509, 4538, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563509, 4539, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563509, 4540, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563510, 4541, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563510, 4542, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563511, 4543, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563511, 4544, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563512, 4545, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563512, 4546, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563513, 4547, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563513, 4548, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695563514, 4549, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564108, 4550, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564108, 4551, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564109, 4552, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564109, 4553, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564110, 4554, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564110, 4555, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564111, 4556, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564111, 4557, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564112, 4558, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564112, 4559, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564113, 4560, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564113, 4561, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564707, 4562, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564708, 4563, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564708, 4564, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564709, 4565, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564709, 4566, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564710, 4567, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564710, 4568, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564710, 4569, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564711, 4570, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564711, 4571, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564712, 4572, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695564712, 4573, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565309, 4574, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565309, 4575, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565310, 4576, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565310, 4577, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565310, 4578, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565311, 4579, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565311, 4580, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565312, 4581, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565312, 4582, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565313, 4583, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565313, 4584, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565313, 4585, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565908, 4586, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565909, 4587, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565909, 4588, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565909, 4589, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565910, 4590, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565910, 4591, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565911, 4592, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565911, 4593, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565912, 4594, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565912, 4595, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565912, 4596, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695565913, 4597, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566508, 4598, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566508, 4599, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566508, 4600, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566509, 4601, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566509, 4602, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566510, 4603, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566510, 4604, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566511, 4605, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566511, 4606, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566511, 4607, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566512, 4608, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695566512, 4609, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567109, 4610, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567109, 4611, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567110, 4612, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567110, 4613, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567111, 4614, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567111, 4615, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567112, 4616, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567112, 4617, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567112, 4618, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567113, 4619, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567113, 4620, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567114, 4621, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567708, 4622, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567709, 4623, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567709, 4624, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567710, 4625, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567710, 4626, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567710, 4627, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567711, 4628, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567711, 4629, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567712, 4630, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567712, 4631, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567713, 4632, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695567713, 4633, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568308, 4634, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568308, 4635, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568309, 4636, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568310, 4637, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568310, 4638, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568311, 4639, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568311, 4640, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568312, 4641, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568312, 4642, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568313, 4643, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568313, 4644, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568313, 4645, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568907, 4646, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568907, 4647, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568907, 4648, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568908, 4649, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568908, 4650, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568909, 4651, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568909, 4652, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568910, 4653, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568910, 4654, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568911, 4655, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568911, 4656, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695568911, 4657, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569509, 4658, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569509, 4659, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569509, 4660, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569510, 4661, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569510, 4662, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569511, 4663, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569511, 4664, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569512, 4665, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569512, 4666, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569512, 4667, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569513, 4668, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695569513, 4669, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570108, 4670, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570108, 4671, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570109, 4672, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570109, 4673, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570110, 4674, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570110, 4675, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570111, 4676, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570111, 4677, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570112, 4678, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570112, 4679, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570112, 4680, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570113, 4681, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570707, 4682, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570708, 4683, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570708, 4684, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570709, 4685, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570709, 4686, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570710, 4687, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570710, 4688, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570711, 4689, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570711, 4690, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570711, 4691, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570712, 4692, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695570712, 4693, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571309, 4694, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571310, 4695, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571310, 4696, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571311, 4697, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571311, 4698, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571312, 4699, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571312, 4700, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571312, 4701, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571313, 4702, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571313, 4703, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571314, 4704, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571314, 4705, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571908, 4706, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571909, 4707, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571909, 4708, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571910, 4709, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571910, 4710, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571910, 4711, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571911, 4712, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571911, 4713, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571912, 4714, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571912, 4715, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571913, 4716, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695571913, 4717, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572508, 4718, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572508, 4719, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572508, 4720, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572509, 4721, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572509, 4722, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572510, 4723, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572510, 4724, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572511, 4725, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572511, 4726, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572512, 4727, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572513, 4728, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695572513, 4729, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573109, 4730, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573109, 4731, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573110, 4732, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573110, 4733, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573111, 4734, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573111, 4735, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573112, 4736, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573112, 4737, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573113, 4738, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573113, 4739, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573114, 4740, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573114, 4741, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573713, 4742, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573713, 4743, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573714, 4744, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573714, 4745, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573715, 4746, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573715, 4747, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573716, 4748, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573716, 4749, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573717, 4750, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573717, 4751, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573717, 4752, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695573718, 4753, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574311, 4754, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574311, 4755, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574311, 4756, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574312, 4757, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574312, 4758, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574313, 4759, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574313, 4760, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574314, 4761, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574314, 4762, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574315, 4763, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574315, 4764, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574315, 4765, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574907, 4766, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574908, 4767, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574908, 4768, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574909, 4769, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574909, 4770, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574910, 4771, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574911, 4772, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574911, 4773, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574912, 4774, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574912, 4775, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574913, 4776, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695574913, 4777, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575509, 4778, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575509, 4779, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575510, 4780, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575510, 4781, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575511, 4782, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575511, 4783, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575511, 4784, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575512, 4785, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575512, 4786, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575513, 4787, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575513, 4788, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695575514, 4789, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695576108, 4790, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695576109, 4791, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695576109, 4792, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695576109, 4793, NULL, NULL); INSERT INTO lost_and_found VALUES(985, 985, 2, NULL, 1695576110, 4794, NULL, NULL); INSERT INTO lost_and_found VALUES(986, 986, 4, 4630, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695567712); INSERT INTO lost_and_found VALUES(986, 986, 4, 4631, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695567712); INSERT INTO lost_and_found VALUES(986, 986, 4, 4632, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695567713); INSERT INTO lost_and_found VALUES(986, 986, 4, 4633, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695567713); INSERT INTO lost_and_found VALUES(986, 986, 4, 4634, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695568308); INSERT INTO lost_and_found VALUES(986, 986, 4, 4635, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695568308); INSERT INTO lost_and_found VALUES(986, 986, 4, 4636, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695568309); INSERT INTO lost_and_found VALUES(986, 986, 4, 4637, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695568310); INSERT INTO lost_and_found VALUES(986, 986, 4, 4638, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695568310); INSERT INTO lost_and_found VALUES(986, 986, 4, 4639, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695568311); INSERT INTO lost_and_found VALUES(986, 986, 4, 4640, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695568311); INSERT INTO lost_and_found VALUES(986, 986, 4, 4641, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695568312); INSERT INTO lost_and_found VALUES(986, 986, 4, 4642, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695568312); INSERT INTO lost_and_found VALUES(986, 986, 4, 4643, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695568313); INSERT INTO lost_and_found VALUES(986, 986, 4, 4644, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695568313); INSERT INTO lost_and_found VALUES(986, 986, 4, 4645, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695568313); INSERT INTO lost_and_found VALUES(986, 986, 4, 4646, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695568907); INSERT INTO lost_and_found VALUES(987, 987, 4, 4647, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695568907); INSERT INTO lost_and_found VALUES(987, 987, 4, 4648, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695568907); INSERT INTO lost_and_found VALUES(987, 987, 4, 4649, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695568908); INSERT INTO lost_and_found VALUES(987, 987, 4, 4650, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695568908); INSERT INTO lost_and_found VALUES(987, 987, 4, 4651, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695568909); INSERT INTO lost_and_found VALUES(987, 987, 4, 4652, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695568909); INSERT INTO lost_and_found VALUES(987, 987, 4, 4653, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695568910); INSERT INTO lost_and_found VALUES(987, 987, 4, 4654, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695568910); INSERT INTO lost_and_found VALUES(987, 987, 4, 4655, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695568911); INSERT INTO lost_and_found VALUES(987, 987, 4, 4656, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695568911); INSERT INTO lost_and_found VALUES(987, 987, 4, 4657, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695568911); INSERT INTO lost_and_found VALUES(987, 987, 4, 4658, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695569509); INSERT INTO lost_and_found VALUES(987, 987, 4, 4659, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695569509); INSERT INTO lost_and_found VALUES(987, 987, 4, 4660, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695569509); INSERT INTO lost_and_found VALUES(987, 987, 4, 4661, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695569510); INSERT INTO lost_and_found VALUES(987, 987, 4, 4662, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695569510); INSERT INTO lost_and_found VALUES(987, 987, 4, 4663, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695569511); INSERT INTO lost_and_found VALUES(987, 987, 4, 4664, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695569511); INSERT INTO lost_and_found VALUES(988, 988, 4, 4665, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695569512); INSERT INTO lost_and_found VALUES(988, 988, 4, 4666, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695569512); INSERT INTO lost_and_found VALUES(988, 988, 4, 4667, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695569512); INSERT INTO lost_and_found VALUES(988, 988, 4, 4668, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695569513); INSERT INTO lost_and_found VALUES(988, 988, 4, 4669, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695569513); INSERT INTO lost_and_found VALUES(988, 988, 4, 4670, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695570108); INSERT INTO lost_and_found VALUES(988, 988, 4, 4671, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695570108); INSERT INTO lost_and_found VALUES(988, 988, 4, 4672, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695570109); INSERT INTO lost_and_found VALUES(988, 988, 4, 4673, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695570109); INSERT INTO lost_and_found VALUES(988, 988, 4, 4674, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695570110); INSERT INTO lost_and_found VALUES(988, 988, 4, 4675, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695570110); INSERT INTO lost_and_found VALUES(988, 988, 4, 4676, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695570111); INSERT INTO lost_and_found VALUES(988, 988, 4, 4677, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695570111); INSERT INTO lost_and_found VALUES(988, 988, 4, 4678, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695570112); INSERT INTO lost_and_found VALUES(988, 988, 4, 4679, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695570112); INSERT INTO lost_and_found VALUES(988, 988, 4, 4680, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695570112); INSERT INTO lost_and_found VALUES(988, 988, 4, 4681, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695570113); INSERT INTO lost_and_found VALUES(989, 989, 4, 4682, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695570707); INSERT INTO lost_and_found VALUES(989, 989, 4, 4683, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695570708); INSERT INTO lost_and_found VALUES(989, 989, 4, 4684, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695570708); INSERT INTO lost_and_found VALUES(989, 989, 4, 4685, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695570709); INSERT INTO lost_and_found VALUES(989, 989, 4, 4686, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695570709); INSERT INTO lost_and_found VALUES(989, 989, 4, 4687, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695570710); INSERT INTO lost_and_found VALUES(989, 989, 4, 4688, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695570710); INSERT INTO lost_and_found VALUES(989, 989, 4, 4689, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695570711); INSERT INTO lost_and_found VALUES(989, 989, 4, 4690, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695570711); INSERT INTO lost_and_found VALUES(989, 989, 4, 4691, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695570711); INSERT INTO lost_and_found VALUES(989, 989, 4, 4692, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695570712); INSERT INTO lost_and_found VALUES(989, 989, 4, 4693, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695570712); INSERT INTO lost_and_found VALUES(989, 989, 4, 4694, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695571309); INSERT INTO lost_and_found VALUES(989, 989, 4, 4695, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695571310); INSERT INTO lost_and_found VALUES(989, 989, 4, 4696, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695571310); INSERT INTO lost_and_found VALUES(989, 989, 4, 4697, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695571311); INSERT INTO lost_and_found VALUES(989, 989, 4, 4698, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695571311); INSERT INTO lost_and_found VALUES(990, 990, 4, 4699, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695571312); INSERT INTO lost_and_found VALUES(990, 990, 4, 4700, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695571312); INSERT INTO lost_and_found VALUES(990, 990, 4, 4701, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695571312); INSERT INTO lost_and_found VALUES(990, 990, 4, 4702, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695571313); INSERT INTO lost_and_found VALUES(990, 990, 4, 4703, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695571313); INSERT INTO lost_and_found VALUES(990, 990, 4, 4704, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695571314); INSERT INTO lost_and_found VALUES(990, 990, 4, 4705, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695571314); INSERT INTO lost_and_found VALUES(990, 990, 4, 4706, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695571908); INSERT INTO lost_and_found VALUES(990, 990, 4, 4707, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695571909); INSERT INTO lost_and_found VALUES(990, 990, 4, 4708, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695571909); INSERT INTO lost_and_found VALUES(990, 990, 4, 4709, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695571910); INSERT INTO lost_and_found VALUES(990, 990, 4, 4710, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695571910); INSERT INTO lost_and_found VALUES(990, 990, 4, 4711, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695571910); INSERT INTO lost_and_found VALUES(990, 990, 4, 4712, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695571911); INSERT INTO lost_and_found VALUES(990, 990, 4, 4713, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695571911); INSERT INTO lost_and_found VALUES(990, 990, 4, 4714, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695571912); INSERT INTO lost_and_found VALUES(990, 990, 4, 4715, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695571912); INSERT INTO lost_and_found VALUES(991, 991, 4, 4716, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695571913); INSERT INTO lost_and_found VALUES(991, 991, 4, 4717, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695571913); INSERT INTO lost_and_found VALUES(991, 991, 4, 4718, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695572508); INSERT INTO lost_and_found VALUES(991, 991, 4, 4719, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695572508); INSERT INTO lost_and_found VALUES(991, 991, 4, 4720, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695572508); INSERT INTO lost_and_found VALUES(991, 991, 4, 4721, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695572509); INSERT INTO lost_and_found VALUES(991, 991, 4, 4722, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695572509); INSERT INTO lost_and_found VALUES(991, 991, 4, 4723, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695572510); INSERT INTO lost_and_found VALUES(991, 991, 4, 4724, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695572510); INSERT INTO lost_and_found VALUES(991, 991, 4, 4725, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695572511); INSERT INTO lost_and_found VALUES(991, 991, 4, 4726, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695572511); INSERT INTO lost_and_found VALUES(991, 991, 4, 4727, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695572512); INSERT INTO lost_and_found VALUES(991, 991, 4, 4728, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695572513); INSERT INTO lost_and_found VALUES(991, 991, 4, 4729, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695572513); INSERT INTO lost_and_found VALUES(991, 991, 4, 4730, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695573109); INSERT INTO lost_and_found VALUES(991, 991, 4, 4731, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695573109); INSERT INTO lost_and_found VALUES(991, 991, 4, 4732, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695573110); INSERT INTO lost_and_found VALUES(992, 992, 4, 4733, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695573110); INSERT INTO lost_and_found VALUES(992, 992, 4, 4734, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695573111); INSERT INTO lost_and_found VALUES(992, 992, 4, 4735, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695573111); INSERT INTO lost_and_found VALUES(992, 992, 4, 4736, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695573112); INSERT INTO lost_and_found VALUES(992, 992, 4, 4737, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695573112); INSERT INTO lost_and_found VALUES(992, 992, 4, 4738, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695573113); INSERT INTO lost_and_found VALUES(992, 992, 4, 4739, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695573113); INSERT INTO lost_and_found VALUES(992, 992, 4, 4740, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695573114); INSERT INTO lost_and_found VALUES(992, 992, 4, 4741, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695573114); INSERT INTO lost_and_found VALUES(992, 992, 4, 4742, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695573713); INSERT INTO lost_and_found VALUES(992, 992, 4, 4743, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695573713); INSERT INTO lost_and_found VALUES(992, 992, 4, 4744, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695573714); INSERT INTO lost_and_found VALUES(992, 992, 4, 4745, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695573714); INSERT INTO lost_and_found VALUES(992, 992, 4, 4746, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695573715); INSERT INTO lost_and_found VALUES(992, 992, 4, 4747, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695573715); INSERT INTO lost_and_found VALUES(992, 992, 4, 4748, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695573716); INSERT INTO lost_and_found VALUES(992, 992, 4, 4749, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695573716); INSERT INTO lost_and_found VALUES(993, 993, 4, 4750, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695573717); INSERT INTO lost_and_found VALUES(993, 993, 4, 4751, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695573717); INSERT INTO lost_and_found VALUES(993, 993, 4, 4752, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695573717); INSERT INTO lost_and_found VALUES(993, 993, 4, 4753, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695573718); INSERT INTO lost_and_found VALUES(993, 993, 4, 4754, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695574311); INSERT INTO lost_and_found VALUES(993, 993, 4, 4755, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695574311); INSERT INTO lost_and_found VALUES(993, 993, 4, 4756, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695574311); INSERT INTO lost_and_found VALUES(993, 993, 4, 4757, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695574312); INSERT INTO lost_and_found VALUES(993, 993, 4, 4758, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695574312); INSERT INTO lost_and_found VALUES(993, 993, 4, 4759, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695574313); INSERT INTO lost_and_found VALUES(993, 993, 4, 4760, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695574313); INSERT INTO lost_and_found VALUES(993, 993, 4, 4761, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695574314); INSERT INTO lost_and_found VALUES(993, 993, 4, 4762, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695574314); INSERT INTO lost_and_found VALUES(993, 993, 4, 4763, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695574315); INSERT INTO lost_and_found VALUES(993, 993, 4, 4764, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695574315); INSERT INTO lost_and_found VALUES(993, 993, 4, 4765, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695574315); INSERT INTO lost_and_found VALUES(993, 993, 4, 4766, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695574907); INSERT INTO lost_and_found VALUES(994, 994, 4, 4767, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695574908); INSERT INTO lost_and_found VALUES(994, 994, 4, 4768, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695574908); INSERT INTO lost_and_found VALUES(994, 994, 4, 4769, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695574909); INSERT INTO lost_and_found VALUES(994, 994, 4, 4770, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695574909); INSERT INTO lost_and_found VALUES(994, 994, 4, 4771, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695574910); INSERT INTO lost_and_found VALUES(994, 994, 4, 4772, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695574911); INSERT INTO lost_and_found VALUES(994, 994, 4, 4773, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695574911); INSERT INTO lost_and_found VALUES(994, 994, 4, 4774, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695574912); INSERT INTO lost_and_found VALUES(994, 994, 4, 4775, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695574912); INSERT INTO lost_and_found VALUES(994, 994, 4, 4776, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695574913); INSERT INTO lost_and_found VALUES(994, 994, 4, 4777, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695574913); INSERT INTO lost_and_found VALUES(994, 994, 4, 4778, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695575509); INSERT INTO lost_and_found VALUES(994, 994, 4, 4779, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695575509); INSERT INTO lost_and_found VALUES(994, 994, 4, 4780, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695575510); INSERT INTO lost_and_found VALUES(994, 994, 4, 4781, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695575510); INSERT INTO lost_and_found VALUES(994, 994, 4, 4782, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695575511); INSERT INTO lost_and_found VALUES(994, 994, 4, 4783, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695575511); INSERT INTO lost_and_found VALUES(994, 994, 4, 4784, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695575511); INSERT INTO lost_and_found VALUES(995, 995, 4, 4785, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695575512); INSERT INTO lost_and_found VALUES(995, 995, 4, 4786, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695575512); INSERT INTO lost_and_found VALUES(995, 995, 4, 4787, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695575513); INSERT INTO lost_and_found VALUES(995, 995, 4, 4788, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695575513); INSERT INTO lost_and_found VALUES(995, 995, 4, 4789, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695575514); INSERT INTO lost_and_found VALUES(995, 995, 4, 4790, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695576108); INSERT INTO lost_and_found VALUES(995, 995, 4, 4791, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695576109); INSERT INTO lost_and_found VALUES(995, 995, 4, 4792, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695576109); INSERT INTO lost_and_found VALUES(995, 995, 4, 4793, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695576109); INSERT INTO lost_and_found VALUES(995, 995, 4, 4794, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695576110); INSERT INTO lost_and_found VALUES(995, 995, 4, 4795, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695576110); INSERT INTO lost_and_found VALUES(995, 995, 4, 4796, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695576111); INSERT INTO lost_and_found VALUES(995, 995, 4, 4797, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695576111); INSERT INTO lost_and_found VALUES(995, 995, 4, 4798, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695576112); INSERT INTO lost_and_found VALUES(995, 995, 4, 4799, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695576112); INSERT INTO lost_and_found VALUES(995, 995, 4, 4800, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695576113); INSERT INTO lost_and_found VALUES(995, 995, 4, 4801, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695576113); INSERT INTO lost_and_found VALUES(996, 996, 4, 4802, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695576708); INSERT INTO lost_and_found VALUES(996, 996, 4, 4803, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695576708); INSERT INTO lost_and_found VALUES(996, 996, 4, 4804, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695576708); INSERT INTO lost_and_found VALUES(996, 996, 4, 4805, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695576709); INSERT INTO lost_and_found VALUES(996, 996, 4, 4806, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695576709); INSERT INTO lost_and_found VALUES(996, 996, 4, 4807, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695576710); INSERT INTO lost_and_found VALUES(996, 996, 4, 4808, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695576710); INSERT INTO lost_and_found VALUES(996, 996, 4, 4809, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695576711); INSERT INTO lost_and_found VALUES(996, 996, 4, 4810, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695576711); INSERT INTO lost_and_found VALUES(996, 996, 4, 4811, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695576712); INSERT INTO lost_and_found VALUES(996, 996, 4, 4812, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695576712); INSERT INTO lost_and_found VALUES(996, 996, 4, 4813, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695576712); INSERT INTO lost_and_found VALUES(996, 996, 4, 4814, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695577309); INSERT INTO lost_and_found VALUES(996, 996, 4, 4815, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695577309); INSERT INTO lost_and_found VALUES(996, 996, 4, 4816, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695577310); INSERT INTO lost_and_found VALUES(996, 996, 4, 4817, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695577310); INSERT INTO lost_and_found VALUES(996, 996, 4, 4818, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695577311); INSERT INTO lost_and_found VALUES(997, 997, 4, 4819, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695577311); INSERT INTO lost_and_found VALUES(997, 997, 4, 4820, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695577312); INSERT INTO lost_and_found VALUES(997, 997, 4, 4821, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695577312); INSERT INTO lost_and_found VALUES(997, 997, 4, 4822, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695577312); INSERT INTO lost_and_found VALUES(997, 997, 4, 4823, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695577313); INSERT INTO lost_and_found VALUES(997, 997, 4, 4824, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695577313); INSERT INTO lost_and_found VALUES(997, 997, 4, 4825, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695577314); INSERT INTO lost_and_found VALUES(997, 997, 4, 4826, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695577908); INSERT INTO lost_and_found VALUES(997, 997, 4, 4827, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695577909); INSERT INTO lost_and_found VALUES(997, 997, 4, 4828, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695577909); INSERT INTO lost_and_found VALUES(997, 997, 4, 4829, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695577910); INSERT INTO lost_and_found VALUES(997, 997, 4, 4830, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695577911); INSERT INTO lost_and_found VALUES(997, 997, 4, 4831, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695577911); INSERT INTO lost_and_found VALUES(997, 997, 4, 4832, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695577912); INSERT INTO lost_and_found VALUES(997, 997, 4, 4833, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695577913); INSERT INTO lost_and_found VALUES(997, 997, 4, 4834, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695577913); INSERT INTO lost_and_found VALUES(997, 997, 4, 4835, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695577914); INSERT INTO lost_and_found VALUES(998, 998, 4, 4836, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695577915); INSERT INTO lost_and_found VALUES(998, 998, 4, 4837, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695577915); INSERT INTO lost_and_found VALUES(998, 998, 4, 4838, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695578508); INSERT INTO lost_and_found VALUES(998, 998, 4, 4839, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695578508); INSERT INTO lost_and_found VALUES(998, 998, 4, 4840, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695578509); INSERT INTO lost_and_found VALUES(998, 998, 4, 4841, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695578509); INSERT INTO lost_and_found VALUES(998, 998, 4, 4842, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695578510); INSERT INTO lost_and_found VALUES(998, 998, 4, 4843, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695578510); INSERT INTO lost_and_found VALUES(998, 998, 4, 4844, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695578510); INSERT INTO lost_and_found VALUES(998, 998, 4, 4845, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695578511); INSERT INTO lost_and_found VALUES(998, 998, 4, 4846, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695578511); INSERT INTO lost_and_found VALUES(998, 998, 4, 4847, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695578512); INSERT INTO lost_and_found VALUES(998, 998, 4, 4848, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695578512); INSERT INTO lost_and_found VALUES(998, 998, 4, 4849, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695578513); INSERT INTO lost_and_found VALUES(998, 998, 4, 4850, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695579107); INSERT INTO lost_and_found VALUES(998, 998, 4, 4851, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695579108); INSERT INTO lost_and_found VALUES(998, 998, 4, 4852, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695579108); INSERT INTO lost_and_found VALUES(999, 999, 4, 4853, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695579108); INSERT INTO lost_and_found VALUES(999, 999, 4, 4854, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695579109); INSERT INTO lost_and_found VALUES(999, 999, 4, 4855, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695579109); INSERT INTO lost_and_found VALUES(999, 999, 4, 4856, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695579110); INSERT INTO lost_and_found VALUES(999, 999, 4, 4857, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695579110); INSERT INTO lost_and_found VALUES(999, 999, 4, 4858, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695579111); INSERT INTO lost_and_found VALUES(999, 999, 4, 4859, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695579111); INSERT INTO lost_and_found VALUES(999, 999, 4, 4860, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695579112); INSERT INTO lost_and_found VALUES(999, 999, 4, 4861, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695579112); INSERT INTO lost_and_found VALUES(999, 999, 4, 4862, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695579709); INSERT INTO lost_and_found VALUES(999, 999, 4, 4863, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695579709); INSERT INTO lost_and_found VALUES(999, 999, 4, 4864, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695579710); INSERT INTO lost_and_found VALUES(999, 999, 4, 4865, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695579710); INSERT INTO lost_and_found VALUES(999, 999, 4, 4866, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695579711); INSERT INTO lost_and_found VALUES(999, 999, 4, 4867, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695579711); INSERT INTO lost_and_found VALUES(999, 999, 4, 4868, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695579711); INSERT INTO lost_and_found VALUES(999, 999, 4, 4869, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695579712); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4870, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695579712); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4871, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695579713); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4872, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695579713); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4873, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695579714); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4874, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695580308); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4875, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695580308); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4876, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695580309); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4877, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695580309); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4878, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695580310); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4879, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695580310); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4880, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695580311); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4881, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695580311); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4882, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695580311); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4883, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695580312); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4884, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695580312); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4885, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695580313); INSERT INTO lost_and_found VALUES(1000, 1000, 4, 4886, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695580907); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4887, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695580908); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4888, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695580908); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4889, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695580909); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4890, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695580909); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4891, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695580910); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4892, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695580910); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4893, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695580911); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4894, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695580911); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4895, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695580911); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4896, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695580912); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4897, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695580912); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4898, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695581509); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4899, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695581509); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4900, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695581510); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4901, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695581510); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4902, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695581511); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4903, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695581511); INSERT INTO lost_and_found VALUES(1001, 1001, 4, 4904, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695581512); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4905, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695581512); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4906, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695581513); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4907, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695581513); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4908, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695581514); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4909, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695581514); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4910, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695582108); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4911, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695582109); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4912, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695582109); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4913, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695582110); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4914, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695582110); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4915, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695582111); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4916, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695582111); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4917, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695582111); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4918, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695582112); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4919, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695582112); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4920, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695582113); INSERT INTO lost_and_found VALUES(1002, 1002, 4, 4921, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695582113); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576111, 4796, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576111, 4797, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576112, 4798, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576112, 4799, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576113, 4800, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576113, 4801, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576708, 4802, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576708, 4803, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576708, 4804, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576709, 4805, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576709, 4806, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576710, 4807, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576710, 4808, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576711, 4809, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576711, 4810, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576712, 4811, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576712, 4812, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695576712, 4813, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577309, 4814, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577309, 4815, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577310, 4816, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577310, 4817, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577311, 4818, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577311, 4819, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577312, 4820, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577312, 4821, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577312, 4822, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577313, 4823, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577313, 4824, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577314, 4825, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577908, 4826, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577909, 4827, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577909, 4828, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577910, 4829, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577911, 4830, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577911, 4831, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577912, 4832, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577913, 4833, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577913, 4834, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577914, 4835, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577915, 4836, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695577915, 4837, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578508, 4838, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578508, 4839, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578509, 4840, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578509, 4841, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578510, 4842, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578510, 4843, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578510, 4844, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578511, 4845, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578511, 4846, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578512, 4847, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578512, 4848, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695578513, 4849, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579107, 4850, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579108, 4851, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579108, 4852, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579108, 4853, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579109, 4854, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579109, 4855, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579110, 4856, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579110, 4857, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579111, 4858, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579111, 4859, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579112, 4860, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579112, 4861, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579709, 4862, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579709, 4863, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579710, 4864, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579710, 4865, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579711, 4866, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579711, 4867, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579711, 4868, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579712, 4869, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579712, 4870, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579713, 4871, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579713, 4872, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695579714, 4873, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580308, 4874, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580308, 4875, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580309, 4876, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580309, 4877, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580310, 4878, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580310, 4879, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580311, 4880, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580311, 4881, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580311, 4882, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580312, 4883, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580312, 4884, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580313, 4885, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580907, 4886, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580908, 4887, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580908, 4888, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580909, 4889, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580909, 4890, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580910, 4891, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580910, 4892, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580911, 4893, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580911, 4894, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580911, 4895, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580912, 4896, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695580912, 4897, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581509, 4898, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581509, 4899, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581510, 4900, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581510, 4901, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581511, 4902, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581511, 4903, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581512, 4904, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581512, 4905, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581513, 4906, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581513, 4907, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581514, 4908, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695581514, 4909, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582108, 4910, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582109, 4911, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582109, 4912, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582110, 4913, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582110, 4914, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582111, 4915, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582111, 4916, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582111, 4917, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582112, 4918, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582112, 4919, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582113, 4920, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582113, 4921, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582708, 4922, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582708, 4923, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582708, 4924, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582709, 4925, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582709, 4926, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582710, 4927, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582710, 4928, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582711, 4929, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582711, 4930, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582712, 4931, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582712, 4932, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695582712, 4933, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583309, 4934, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583309, 4935, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583310, 4936, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583310, 4937, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583311, 4938, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583311, 4939, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583312, 4940, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583312, 4941, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583313, 4942, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583313, 4943, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583313, 4944, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583314, 4945, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583908, 4946, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583909, 4947, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583909, 4948, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583910, 4949, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583910, 4950, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583911, 4951, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583911, 4952, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583912, 4953, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583912, 4954, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583913, 4955, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583913, 4956, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695583913, 4957, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584508, 4958, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584508, 4959, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584509, 4960, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584509, 4961, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584510, 4962, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584510, 4963, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584510, 4964, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584511, 4965, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584511, 4966, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584512, 4967, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584512, 4968, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695584513, 4969, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585107, 4970, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585108, 4971, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585108, 4972, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585109, 4973, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585110, 4974, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585110, 4975, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585110, 4976, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585111, 4977, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585111, 4978, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585112, 4979, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585112, 4980, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585113, 4981, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585709, 4982, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585709, 4983, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585710, 4984, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585710, 4985, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585711, 4986, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585711, 4987, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585712, 4988, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585712, 4989, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585713, 4990, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585713, 4991, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585714, 4992, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695585715, 4993, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586308, 4994, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586309, 4995, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586309, 4996, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586309, 4997, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586310, 4998, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586310, 4999, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586311, 5000, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586311, 5001, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586312, 5002, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586312, 5003, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586313, 5004, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586313, 5005, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586907, 5006, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586908, 5007, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586908, 5008, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586909, 5009, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586909, 5010, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586910, 5011, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586910, 5012, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586911, 5013, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586911, 5014, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586911, 5015, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586912, 5016, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695586912, 5017, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587509, 5018, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587509, 5019, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587510, 5020, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587510, 5021, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587511, 5022, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587511, 5023, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587512, 5024, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587512, 5025, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587512, 5026, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587513, 5027, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587513, 5028, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695587514, 5029, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588110, 5030, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588110, 5031, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588111, 5032, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588111, 5033, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588112, 5034, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588112, 5035, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588113, 5036, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588113, 5037, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588113, 5038, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588114, 5039, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588114, 5040, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588115, 5041, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588708, 5042, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588708, 5043, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588709, 5044, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588709, 5045, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588710, 5046, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588710, 5047, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588710, 5048, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588711, 5049, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588711, 5050, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588712, 5051, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588712, 5052, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695588713, 5053, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589309, 5054, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589310, 5055, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589310, 5056, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589311, 5057, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589311, 5058, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589312, 5059, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589313, 5060, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589313, 5061, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589314, 5062, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589314, 5063, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589315, 5064, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589315, 5065, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589909, 5066, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589909, 5067, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589909, 5068, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589910, 5069, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589910, 5070, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589911, 5071, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589911, 5072, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589912, 5073, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589912, 5074, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589913, 5075, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589913, 5076, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695589913, 5077, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590508, 5078, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590508, 5079, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590509, 5080, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590509, 5081, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590510, 5082, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590510, 5083, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590510, 5084, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590511, 5085, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590511, 5086, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590512, 5087, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590512, 5088, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695590513, 5089, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695591107, 5090, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695591108, 5091, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695591108, 5092, NULL, NULL); INSERT INTO lost_and_found VALUES(1003, 1003, 2, NULL, 1695591109, 5093, NULL, NULL); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4922, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695582708); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4923, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695582708); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4924, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695582708); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4925, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695582709); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4926, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695582709); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4927, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695582710); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4928, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695582710); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4929, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695582711); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4930, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695582711); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4931, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695582712); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4932, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695582712); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4933, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695582712); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4934, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695583309); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4935, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695583309); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4936, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695583310); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4937, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695583310); INSERT INTO lost_and_found VALUES(1004, 1004, 4, 4938, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695583311); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4939, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695583311); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4940, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695583312); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4941, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695583312); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4942, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695583313); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4943, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695583313); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4944, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695583313); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4945, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695583314); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4946, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695583908); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4947, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695583909); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4948, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695583909); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4949, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695583910); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4950, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695583910); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4951, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695583911); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4952, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695583911); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4953, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695583912); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4954, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695583912); INSERT INTO lost_and_found VALUES(1005, 1005, 4, 4955, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695583913); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4956, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695583913); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4957, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695583913); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4958, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695584508); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4959, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695584508); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4960, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695584509); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4961, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695584509); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4962, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695584510); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4963, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695584510); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4964, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695584510); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4965, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695584511); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4966, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695584511); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4967, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695584512); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4968, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695584512); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4969, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695584513); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4970, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695585107); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4971, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695585108); INSERT INTO lost_and_found VALUES(1006, 1006, 4, 4972, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695585108); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4973, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695585109); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4974, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695585110); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4975, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695585110); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4976, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695585110); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4977, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695585111); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4978, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695585111); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4979, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695585112); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4980, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695585112); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4981, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695585113); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4982, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695585709); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4983, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695585709); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4984, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695585710); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4985, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695585710); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4986, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695585711); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4987, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695585711); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4988, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695585712); INSERT INTO lost_and_found VALUES(1007, 1007, 4, 4989, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695585712); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4990, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695585713); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4991, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695585713); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4992, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695585714); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4993, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695585715); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4994, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695586308); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4995, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695586309); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4996, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695586309); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4997, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695586309); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4998, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695586310); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 4999, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695586310); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 5000, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695586311); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 5001, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695586311); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 5002, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695586312); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 5003, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695586312); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 5004, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695586313); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 5005, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695586313); INSERT INTO lost_and_found VALUES(1008, 1008, 4, 5006, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695586907); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5007, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695586908); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5008, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695586908); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5009, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695586909); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5010, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695586909); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5011, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695586910); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5012, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695586910); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5013, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695586911); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5014, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695586911); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5015, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695586911); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5016, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695586912); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5017, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695586912); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5018, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695587509); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5019, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695587509); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5020, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695587510); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5021, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695587510); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5022, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695587511); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5023, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695587511); INSERT INTO lost_and_found VALUES(1009, 1009, 4, 5024, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695587512); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5025, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695587512); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5026, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695587512); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5027, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695587513); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5028, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695587513); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5029, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695587514); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5030, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695588110); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5031, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695588110); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5032, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695588111); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5033, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695588111); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5034, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695588112); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5035, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695588112); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5036, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695588113); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5037, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695588113); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5038, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695588113); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5039, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695588114); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5040, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695588114); INSERT INTO lost_and_found VALUES(1010, 1010, 4, 5041, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695588115); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5042, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695588708); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5043, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695588708); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5044, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695588709); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5045, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695588709); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5046, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695588710); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5047, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695588710); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5048, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695588710); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5049, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695588711); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5050, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695588711); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5051, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695588712); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5052, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695588712); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5053, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695588713); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5054, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695589309); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5055, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695589310); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5056, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695589310); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5057, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695589311); INSERT INTO lost_and_found VALUES(1011, 1011, 4, 5058, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695589311); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5059, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695589312); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5060, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695589313); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5061, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695589313); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5062, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695589314); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5063, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695589314); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5064, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695589315); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5065, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695589315); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5066, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695589909); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5067, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695589909); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5068, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695589909); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5069, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695589910); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5070, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695589910); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5071, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695589911); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5072, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695589911); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5073, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695589912); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5074, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695589912); INSERT INTO lost_and_found VALUES(1012, 1012, 4, 5075, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695589913); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5076, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695589913); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5077, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695589913); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5078, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695590508); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5079, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695590508); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5080, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695590509); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5081, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695590509); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5082, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695590510); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5083, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695590510); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5084, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695590510); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5085, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695590511); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5086, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695590511); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5087, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695590512); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5088, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695590512); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5089, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695590513); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5090, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695591107); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5091, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695591108); INSERT INTO lost_and_found VALUES(1013, 1013, 4, 5092, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695591108); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5093, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695591109); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5094, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695591109); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5095, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695591109); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5096, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695591110); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5097, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695591110); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5098, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695591111); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5099, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695591111); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5100, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695591112); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5101, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695591112); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5102, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695591709); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5103, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695591709); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5104, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695591710); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5105, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695591710); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5106, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695591710); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5107, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695591711); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5108, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695591711); INSERT INTO lost_and_found VALUES(1014, 1014, 4, 5109, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695591712); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5110, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695591712); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5111, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695591713); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5112, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695591713); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5113, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695591714); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5114, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695592308); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5115, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695592309); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5116, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695592309); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5117, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695592310); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5118, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695592311); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5119, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695592312); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5120, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695592312); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5121, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695592313); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5122, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695592313); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5123, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695592314); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5124, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695592314); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5125, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695592314); INSERT INTO lost_and_found VALUES(1015, 1015, 4, 5126, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695592908); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5127, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695592908); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5128, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695592909); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5129, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695592909); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5130, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695592910); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5131, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695592910); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5132, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695592911); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5133, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695592911); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5134, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695592912); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5135, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695592912); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5136, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695592913); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5137, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695592913); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5138, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695593509); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5139, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695593509); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5140, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695593510); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5141, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695593510); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5142, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695593511); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5143, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695593511); INSERT INTO lost_and_found VALUES(1016, 1016, 4, 5144, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695593512); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5145, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695593512); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5146, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695593512); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5147, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695593513); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5148, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695593513); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5149, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695593514); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5150, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695594108); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5151, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695594109); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5152, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695594109); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5153, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695594110); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5154, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695594110); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5155, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695594110); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5156, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695594111); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5157, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695594111); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5158, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695594112); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5159, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695594112); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5160, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695594113); INSERT INTO lost_and_found VALUES(1017, 1017, 4, 5161, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695594113); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5162, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695594708); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5163, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695594708); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5164, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695594709); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5165, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695594709); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5166, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695594709); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5167, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695594710); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5168, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695594710); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5169, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695594711); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5170, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695594711); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5171, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695594712); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5172, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695594712); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5173, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695594713); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5174, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695595307); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5175, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695595308); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5176, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695595308); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5177, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695595308); INSERT INTO lost_and_found VALUES(1018, 1018, 4, 5178, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695595309); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5179, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695595309); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5180, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695595310); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5181, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695595310); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5182, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695595311); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5183, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695595311); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5184, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695595311); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5185, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695595312); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5186, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695595909); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5187, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695595909); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5188, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695595909); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5189, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695595910); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5190, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695595910); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5191, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695595911); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5192, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695595911); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5193, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695595912); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5194, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695595912); INSERT INTO lost_and_found VALUES(1019, 1019, 4, 5195, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695595913); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5196, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695595913); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5197, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695595913); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5198, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695596508); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5199, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695596508); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5200, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695596509); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5201, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695596509); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5202, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695596510); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5203, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695596510); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5204, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695596511); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5205, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695596511); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5206, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695596511); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5207, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695596512); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5208, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695596512); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5209, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695596513); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5210, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695597107); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5211, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695597108); INSERT INTO lost_and_found VALUES(1020, 1020, 4, 5212, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695597108); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5213, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695597109); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5214, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695597109); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5215, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695597110); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5216, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695597110); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5217, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695597110); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5218, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695597111); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5219, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695597111); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5220, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695597112); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5221, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695597112); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5222, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695597709); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5223, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695597709); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5224, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695597710); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5225, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695597710); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5226, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695597711); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5227, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695597711); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5228, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695597711); INSERT INTO lost_and_found VALUES(1021, 1021, 4, 5229, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695597712); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591109, 5095, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591110, 5096, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591110, 5097, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591111, 5098, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591111, 5099, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591112, 5100, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591112, 5101, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591709, 5102, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591709, 5103, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591710, 5104, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591710, 5105, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591710, 5106, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591711, 5107, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591711, 5108, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591712, 5109, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591712, 5110, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591713, 5111, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591713, 5112, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695591714, 5113, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592308, 5114, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592309, 5115, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592309, 5116, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592310, 5117, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592311, 5118, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592312, 5119, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592312, 5120, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592313, 5121, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592313, 5122, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592314, 5123, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592314, 5124, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592314, 5125, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592908, 5126, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592908, 5127, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592909, 5128, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592909, 5129, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592910, 5130, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592910, 5131, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592911, 5132, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592911, 5133, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592912, 5134, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592912, 5135, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592913, 5136, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695592913, 5137, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593509, 5138, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593509, 5139, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593510, 5140, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593510, 5141, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593511, 5142, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593511, 5143, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593512, 5144, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593512, 5145, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593512, 5146, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593513, 5147, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593513, 5148, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695593514, 5149, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594108, 5150, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594109, 5151, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594109, 5152, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594110, 5153, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594110, 5154, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594110, 5155, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594111, 5156, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594111, 5157, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594112, 5158, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594112, 5159, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594113, 5160, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594113, 5161, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594708, 5162, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594708, 5163, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594709, 5164, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594709, 5165, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594709, 5166, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594710, 5167, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594710, 5168, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594711, 5169, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594711, 5170, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594712, 5171, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594712, 5172, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695594713, 5173, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595307, 5174, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595308, 5175, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595308, 5176, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595308, 5177, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595309, 5178, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595309, 5179, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595310, 5180, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595310, 5181, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595311, 5182, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595311, 5183, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595311, 5184, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595312, 5185, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595909, 5186, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595909, 5187, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595909, 5188, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595910, 5189, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595910, 5190, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595911, 5191, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595911, 5192, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595912, 5193, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595912, 5194, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595913, 5195, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595913, 5196, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695595913, 5197, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596508, 5198, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596508, 5199, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596509, 5200, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596509, 5201, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596510, 5202, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596510, 5203, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596511, 5204, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596511, 5205, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596511, 5206, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596512, 5207, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596512, 5208, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695596513, 5209, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597107, 5210, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597108, 5211, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597108, 5212, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597109, 5213, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597109, 5214, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597110, 5215, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597110, 5216, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597110, 5217, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597111, 5218, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597111, 5219, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597112, 5220, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597112, 5221, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597709, 5222, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597709, 5223, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597710, 5224, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597710, 5225, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597711, 5226, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597711, 5227, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597711, 5228, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597712, 5229, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597712, 5230, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597713, 5231, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597713, 5232, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695597714, 5233, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598308, 5234, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598309, 5235, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598309, 5236, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598310, 5237, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598310, 5238, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598310, 5239, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598311, 5240, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598311, 5241, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598312, 5242, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598312, 5243, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598313, 5244, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598313, 5245, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598908, 5246, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598908, 5247, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598909, 5248, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598909, 5249, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598909, 5250, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598910, 5251, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598911, 5252, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598911, 5253, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598912, 5254, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598913, 5255, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598913, 5256, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695598913, 5257, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599509, 5258, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599509, 5259, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599510, 5260, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599510, 5261, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599511, 5262, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599511, 5263, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599512, 5264, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599512, 5265, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599512, 5266, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599513, 5267, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599513, 5268, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695599514, 5269, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600108, 5270, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600109, 5271, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600109, 5272, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600110, 5273, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600110, 5274, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600111, 5275, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600111, 5276, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600111, 5277, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600112, 5278, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600112, 5279, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600113, 5280, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600113, 5281, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600708, 5282, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600708, 5283, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600709, 5284, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600709, 5285, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600710, 5286, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600710, 5287, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600711, 5288, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600711, 5289, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600711, 5290, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600712, 5291, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600712, 5292, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695600713, 5293, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601307, 5294, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601308, 5295, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601308, 5296, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601308, 5297, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601309, 5298, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601309, 5299, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601310, 5300, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601310, 5301, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601311, 5302, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601311, 5303, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601312, 5304, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601312, 5305, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601909, 5306, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601909, 5307, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601910, 5308, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601910, 5309, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601910, 5310, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601911, 5311, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601911, 5312, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601912, 5313, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601912, 5314, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601913, 5315, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601913, 5316, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695601913, 5317, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602508, 5318, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602508, 5319, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602509, 5320, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602509, 5321, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602510, 5322, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602510, 5323, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602511, 5324, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602511, 5325, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602512, 5326, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602512, 5327, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602512, 5328, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695602513, 5329, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603112, 5330, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603112, 5331, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603113, 5332, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603113, 5333, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603114, 5334, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603114, 5335, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603115, 5336, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603115, 5337, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603116, 5338, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603116, 5339, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603116, 5340, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603117, 5341, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603712, 5342, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603713, 5343, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603713, 5344, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603714, 5345, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603714, 5346, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603715, 5347, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603715, 5348, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603716, 5349, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603716, 5350, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603717, 5351, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603717, 5352, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695603718, 5353, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604308, 5354, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604309, 5355, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604309, 5356, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604310, 5357, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604310, 5358, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604311, 5359, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604311, 5360, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604311, 5361, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604312, 5362, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604312, 5363, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604313, 5364, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604313, 5365, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604908, 5366, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604908, 5367, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604909, 5368, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604909, 5369, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604909, 5370, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604910, 5371, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604910, 5372, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604911, 5373, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604911, 5374, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604912, 5375, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604912, 5376, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695604912, 5377, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605509, 5378, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605510, 5379, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605510, 5380, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605510, 5381, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605511, 5382, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605511, 5383, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605512, 5384, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605512, 5385, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605513, 5386, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605513, 5387, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605513, 5388, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695605514, 5389, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695606108, 5390, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695606109, 5391, NULL, NULL); INSERT INTO lost_and_found VALUES(1022, 1022, 2, NULL, 1695606109, 5392, NULL, NULL); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5230, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695597712); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5231, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695597713); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5232, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695597713); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5233, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695597714); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5234, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695598308); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5235, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695598309); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5236, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695598309); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5237, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695598310); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5238, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695598310); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5239, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695598310); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5240, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695598311); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5241, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695598311); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5242, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695598312); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5243, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695598312); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5244, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695598313); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5245, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695598313); INSERT INTO lost_and_found VALUES(1023, 1023, 4, 5246, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695598908); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5247, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695598908); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5248, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695598909); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5249, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695598909); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5250, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695598909); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5251, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695598910); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5252, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695598911); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5253, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695598911); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5254, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695598912); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5255, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695598913); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5256, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695598913); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5257, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695598913); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5258, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695599509); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5259, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695599509); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5260, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695599510); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5261, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695599510); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5262, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695599511); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5263, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695599511); INSERT INTO lost_and_found VALUES(1024, 1024, 4, 5264, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695599512); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5265, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695599512); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5266, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695599512); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5267, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695599513); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5268, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695599513); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5269, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695599514); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5270, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695600108); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5271, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695600109); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5272, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695600109); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5273, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695600110); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5274, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695600110); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5275, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695600111); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5276, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695600111); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5277, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695600111); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5278, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695600112); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5279, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695600112); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5280, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695600113); INSERT INTO lost_and_found VALUES(1025, 1025, 4, 5281, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695600113); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5282, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695600708); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5283, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695600708); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5284, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695600709); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5285, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695600709); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5286, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695600710); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5287, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695600710); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5288, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695600711); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5289, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695600711); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5290, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695600711); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5291, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695600712); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5292, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695600712); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5293, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695600713); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5294, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695601307); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5295, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695601308); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5296, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695601308); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5297, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695601308); INSERT INTO lost_and_found VALUES(1026, 1026, 4, 5298, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695601309); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5299, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695601309); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5300, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695601310); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5301, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695601310); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5302, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695601311); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5303, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695601311); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5304, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695601312); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5305, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695601312); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5306, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695601909); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5307, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695601909); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5308, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695601910); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5309, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695601910); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5310, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695601910); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5311, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695601911); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5312, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695601911); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5313, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695601912); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5314, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695601912); INSERT INTO lost_and_found VALUES(1027, 1027, 4, 5315, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695601913); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5316, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695601913); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5317, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695601913); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5318, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695602508); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5319, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695602508); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5320, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695602509); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5321, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695602509); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5322, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695602510); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5323, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695602510); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5324, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695602511); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5325, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695602511); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5326, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695602512); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5327, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695602512); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5328, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695602512); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5329, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695602513); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5330, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695603112); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5331, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695603112); INSERT INTO lost_and_found VALUES(1028, 1028, 4, 5332, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695603113); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5333, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695603113); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5334, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695603114); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5335, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695603114); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5336, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695603115); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5337, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695603115); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5338, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695603116); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5339, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695603116); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5340, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695603116); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5341, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695603117); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5342, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695603712); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5343, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695603713); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5344, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695603713); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5345, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695603714); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5346, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695603714); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5347, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695603715); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5348, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695603715); INSERT INTO lost_and_found VALUES(1029, 1029, 4, 5349, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695603716); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5350, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695603716); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5351, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695603717); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5352, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695603717); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5353, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695603718); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5354, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695604308); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5355, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695604309); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5356, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695604309); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5357, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695604310); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5358, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695604310); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5359, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695604311); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5360, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695604311); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5361, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695604311); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5362, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695604312); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5363, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695604312); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5364, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695604313); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5365, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695604313); INSERT INTO lost_and_found VALUES(1030, 1030, 4, 5366, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695604908); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5367, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695604908); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5368, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695604909); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5369, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695604909); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5370, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695604909); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5371, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695604910); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5372, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695604910); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5373, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695604911); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5374, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695604911); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5375, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695604912); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5376, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695604912); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5377, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695604912); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5378, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695605509); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5379, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695605510); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5380, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695605510); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5381, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695605510); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5382, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695605511); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5383, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695605511); INSERT INTO lost_and_found VALUES(1031, 1031, 4, 5384, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695605512); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5385, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695605512); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5386, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695605513); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5387, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695605513); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5388, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695605513); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5389, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695605514); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5390, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695606108); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5391, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695606109); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5392, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695606109); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5393, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695606110); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5394, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695606110); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5395, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695606111); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5396, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695606111); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5397, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695606111); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5398, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695606112); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5399, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695606112); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5400, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695606113); INSERT INTO lost_and_found VALUES(1032, 1032, 4, 5401, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695606113); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5402, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695606708); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5403, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695606708); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5404, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695606709); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5405, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695606709); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5406, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695606710); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5407, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695606710); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5408, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695606710); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5409, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695606711); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5410, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695606711); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5411, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695606712); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5412, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695606712); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5413, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695606713); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5414, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695607307); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5415, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695607308); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5416, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695607308); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5417, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695607309); INSERT INTO lost_and_found VALUES(1033, 1033, 4, 5418, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695607309); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5419, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695607309); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5420, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695607310); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5421, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695607310); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5422, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695607311); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5423, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695607311); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5424, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695607312); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5425, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695607312); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5426, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695607909); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5427, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695607909); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5428, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695607910); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5429, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695607910); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5430, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695607911); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5431, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695607911); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5432, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695607911); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5433, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695607912); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5434, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695607912); INSERT INTO lost_and_found VALUES(1034, 1034, 4, 5435, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695607913); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5436, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695607913); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5437, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695607914); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5438, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695608508); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5439, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695608509); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5440, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695608509); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5441, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695608509); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5442, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695608510); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5443, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695608510); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5444, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695608511); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5445, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695608511); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5446, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695608512); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5447, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695608512); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5448, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695608512); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5449, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695608513); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5450, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695609107); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5451, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695609108); INSERT INTO lost_and_found VALUES(1035, 1035, 4, 5452, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695609108); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5453, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695609109); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5454, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695609109); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5455, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695609110); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5456, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695609110); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5457, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695609110); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5458, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695609111); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5459, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695609111); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5460, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695609112); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5461, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695609112); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5462, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695609709); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5463, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695609709); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5464, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695609710); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5465, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695609710); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5466, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695609711); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5467, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695609711); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5468, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695609711); INSERT INTO lost_and_found VALUES(1036, 1036, 4, 5469, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695609712); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5470, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695609712); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5471, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695609713); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5472, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695609713); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5473, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695609714); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5474, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695610308); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5475, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695610309); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5476, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695610309); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5477, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695610310); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5478, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695610310); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5479, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695610310); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5480, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695610311); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5481, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695610311); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5482, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695610312); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5483, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695610312); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5484, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695610313); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5485, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695610313); INSERT INTO lost_and_found VALUES(1037, 1037, 4, 5486, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695610908); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5487, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695610908); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5488, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695610909); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5489, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695610909); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5490, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695610909); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5491, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695610910); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5492, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695610910); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5493, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695610911); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5494, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695610911); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5495, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695610912); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5496, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695610912); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5497, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695610912); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5498, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695611509); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5499, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695611510); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5500, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695611510); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5501, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695611510); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5502, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695611511); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5503, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695611511); INSERT INTO lost_and_found VALUES(1038, 1038, 4, 5504, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695611512); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5505, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695611512); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5506, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695611513); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5507, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695611513); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5508, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695611513); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5509, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695611514); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5510, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695612108); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5511, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695612109); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5512, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695612109); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5513, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695612110); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5514, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695612110); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5515, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695612111); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5516, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695612111); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5517, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695612112); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5518, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695612112); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5519, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695612112); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5520, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695612113); INSERT INTO lost_and_found VALUES(1039, 1039, 4, 5521, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695612113); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606110, 5394, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606111, 5395, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606111, 5396, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606111, 5397, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606112, 5398, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606112, 5399, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606113, 5400, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606113, 5401, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606708, 5402, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606708, 5403, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606709, 5404, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606709, 5405, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606710, 5406, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606710, 5407, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606710, 5408, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606711, 5409, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606711, 5410, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606712, 5411, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606712, 5412, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695606713, 5413, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607307, 5414, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607308, 5415, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607308, 5416, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607309, 5417, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607309, 5418, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607309, 5419, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607310, 5420, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607310, 5421, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607311, 5422, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607311, 5423, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607312, 5424, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607312, 5425, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607909, 5426, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607909, 5427, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607910, 5428, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607910, 5429, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607911, 5430, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607911, 5431, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607911, 5432, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607912, 5433, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607912, 5434, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607913, 5435, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607913, 5436, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695607914, 5437, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608508, 5438, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608509, 5439, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608509, 5440, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608509, 5441, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608510, 5442, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608510, 5443, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608511, 5444, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608511, 5445, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608512, 5446, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608512, 5447, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608512, 5448, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695608513, 5449, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609107, 5450, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609108, 5451, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609108, 5452, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609109, 5453, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609109, 5454, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609110, 5455, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609110, 5456, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609110, 5457, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609111, 5458, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609111, 5459, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609112, 5460, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609112, 5461, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609709, 5462, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609709, 5463, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609710, 5464, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609710, 5465, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609711, 5466, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609711, 5467, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609711, 5468, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609712, 5469, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609712, 5470, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609713, 5471, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609713, 5472, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695609714, 5473, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610308, 5474, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610309, 5475, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610309, 5476, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610310, 5477, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610310, 5478, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610310, 5479, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610311, 5480, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610311, 5481, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610312, 5482, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610312, 5483, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610313, 5484, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610313, 5485, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610908, 5486, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610908, 5487, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610909, 5488, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610909, 5489, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610909, 5490, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610910, 5491, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610910, 5492, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610911, 5493, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610911, 5494, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610912, 5495, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610912, 5496, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695610912, 5497, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611509, 5498, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611510, 5499, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611510, 5500, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611510, 5501, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611511, 5502, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611511, 5503, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611512, 5504, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611512, 5505, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611513, 5506, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611513, 5507, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611513, 5508, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695611514, 5509, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612108, 5510, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612109, 5511, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612109, 5512, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612110, 5513, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612110, 5514, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612111, 5515, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612111, 5516, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612112, 5517, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612112, 5518, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612112, 5519, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612113, 5520, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612113, 5521, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612708, 5522, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612708, 5523, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612709, 5524, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612709, 5525, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612710, 5526, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612710, 5527, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612710, 5528, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612711, 5529, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612711, 5530, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612712, 5531, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612712, 5532, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695612713, 5533, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613307, 5534, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613308, 5535, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613308, 5536, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613309, 5537, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613309, 5538, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613309, 5539, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613310, 5540, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613310, 5541, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613311, 5542, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613311, 5543, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613312, 5544, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613312, 5545, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613909, 5546, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613909, 5547, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613910, 5548, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613910, 5549, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613910, 5550, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613911, 5551, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613911, 5552, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613912, 5553, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613912, 5554, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613913, 5555, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613913, 5556, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695613914, 5557, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614508, 5558, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614508, 5559, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614509, 5560, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614509, 5561, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614510, 5562, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614510, 5563, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614511, 5564, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614511, 5565, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614512, 5566, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614512, 5567, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614512, 5568, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695614513, 5569, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615107, 5570, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615108, 5571, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615108, 5572, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615109, 5573, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615109, 5574, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615110, 5575, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615110, 5576, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615110, 5577, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615111, 5578, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615111, 5579, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615112, 5580, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615112, 5581, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615709, 5582, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615709, 5583, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615710, 5584, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615710, 5585, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615711, 5586, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615711, 5587, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615712, 5588, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615712, 5589, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615712, 5590, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615713, 5591, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615713, 5592, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695615714, 5593, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616308, 5594, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616309, 5595, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616309, 5596, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616310, 5597, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616310, 5598, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616310, 5599, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616311, 5600, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616311, 5601, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616312, 5602, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616312, 5603, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616313, 5604, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616313, 5605, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616908, 5606, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616908, 5607, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616909, 5608, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616909, 5609, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616910, 5610, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616910, 5611, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616910, 5612, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616911, 5613, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616911, 5614, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616912, 5615, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616912, 5616, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695616913, 5617, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617510, 5618, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617511, 5619, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617511, 5620, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617512, 5621, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617512, 5622, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617512, 5623, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617513, 5624, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617513, 5625, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617514, 5626, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617514, 5627, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617515, 5628, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695617515, 5629, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618109, 5630, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618109, 5631, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618110, 5632, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618110, 5633, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618111, 5634, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618111, 5635, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618112, 5636, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618112, 5637, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618113, 5638, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618113, 5639, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618114, 5640, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618114, 5641, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618708, 5642, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618708, 5643, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618709, 5644, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618709, 5645, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618710, 5646, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618710, 5647, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618711, 5648, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618711, 5649, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618711, 5650, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618712, 5651, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618712, 5652, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695618713, 5653, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619307, 5654, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619308, 5655, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619308, 5656, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619309, 5657, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619309, 5658, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619310, 5659, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619310, 5660, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619310, 5661, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619311, 5662, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619311, 5663, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619312, 5664, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619312, 5665, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619909, 5666, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619909, 5667, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619910, 5668, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619910, 5669, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619910, 5670, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619911, 5671, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619911, 5672, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619912, 5673, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619912, 5674, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619913, 5675, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619913, 5676, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695619914, 5677, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620508, 5678, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620509, 5679, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620509, 5680, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620509, 5681, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620510, 5682, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620510, 5683, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620511, 5684, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620511, 5685, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620512, 5686, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620512, 5687, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620513, 5688, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695620513, 5689, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695621108, 5690, NULL, NULL); INSERT INTO lost_and_found VALUES(1040, 1040, 2, NULL, 1695621108, 5691, NULL, NULL); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5522, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695612708); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5523, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695612708); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5524, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695612709); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5525, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695612709); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5526, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695612710); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5527, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695612710); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5528, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695612710); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5529, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695612711); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5530, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695612711); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5531, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695612712); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5532, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695612712); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5533, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695612713); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5534, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695613307); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5535, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695613308); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5536, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695613308); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5537, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695613309); INSERT INTO lost_and_found VALUES(1041, 1041, 4, 5538, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695613309); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5539, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695613309); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5540, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695613310); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5541, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695613310); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5542, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695613311); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5543, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695613311); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5544, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695613312); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5545, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695613312); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5546, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695613909); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5547, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695613909); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5548, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695613910); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5549, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695613910); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5550, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695613910); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5551, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695613911); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5552, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695613911); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5553, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695613912); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5554, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695613912); INSERT INTO lost_and_found VALUES(1042, 1042, 4, 5555, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695613913); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5556, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695613913); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5557, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695613914); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5558, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695614508); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5559, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695614508); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5560, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695614509); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5561, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695614509); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5562, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695614510); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5563, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695614510); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5564, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695614511); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5565, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695614511); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5566, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695614512); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5567, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695614512); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5568, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695614512); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5569, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695614513); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5570, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695615107); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5571, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695615108); INSERT INTO lost_and_found VALUES(1043, 1043, 4, 5572, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695615108); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5573, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695615109); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5574, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695615109); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5575, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695615110); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5576, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695615110); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5577, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695615110); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5578, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695615111); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5579, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695615111); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5580, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695615112); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5581, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695615112); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5582, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695615709); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5583, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695615709); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5584, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695615710); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5585, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695615710); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5586, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695615711); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5587, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695615711); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5588, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695615712); INSERT INTO lost_and_found VALUES(1044, 1044, 4, 5589, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695615712); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5590, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695615712); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5591, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695615713); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5592, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695615713); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5593, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695615714); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5594, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695616308); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5595, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695616309); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5596, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695616309); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5597, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695616310); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5598, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695616310); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5599, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695616310); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5600, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695616311); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5601, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695616311); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5602, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695616312); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5603, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695616312); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5604, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695616313); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5605, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695616313); INSERT INTO lost_and_found VALUES(1045, 1045, 4, 5606, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695616908); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5607, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695616908); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5608, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695616909); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5609, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695616909); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5610, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695616910); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5611, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695616910); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5612, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695616910); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5613, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695616911); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5614, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695616911); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5615, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695616912); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5616, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695616912); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5617, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695616913); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5618, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695617510); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5619, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695617511); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5620, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695617511); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5621, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695617512); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5622, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695617512); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5623, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695617512); INSERT INTO lost_and_found VALUES(1046, 1046, 4, 5624, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695617513); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5625, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695617513); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5626, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695617514); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5627, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695617514); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5628, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695617515); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5629, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695617515); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5630, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695618109); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5631, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695618109); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5632, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695618110); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5633, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695618110); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5634, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695618111); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5635, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695618111); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5636, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695618112); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5637, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695618112); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5638, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695618113); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5639, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695618113); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5640, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695618114); INSERT INTO lost_and_found VALUES(1047, 1047, 4, 5641, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695618114); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5642, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695618708); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5643, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695618708); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5644, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695618709); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5645, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695618709); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5646, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695618710); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5647, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695618710); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5648, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695618711); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5649, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695618711); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5650, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695618711); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5651, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695618712); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5652, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695618712); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5653, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695618713); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5654, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695619307); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5655, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695619308); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5656, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695619308); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5657, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695619309); INSERT INTO lost_and_found VALUES(1048, 1048, 4, 5658, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695619309); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5659, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695619310); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5660, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695619310); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5661, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695619310); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5662, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695619311); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5663, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695619311); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5664, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695619312); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5665, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695619312); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5666, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695619909); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5667, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695619909); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5668, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695619910); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5669, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695619910); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5670, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695619910); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5671, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695619911); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5672, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695619911); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5673, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695619912); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5674, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695619912); INSERT INTO lost_and_found VALUES(1049, 1049, 4, 5675, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695619913); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5676, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695619913); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5677, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695619914); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5678, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695620508); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5679, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695620509); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5680, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695620509); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5681, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695620509); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5682, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695620510); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5683, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695620510); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5684, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695620511); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5685, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695620511); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5686, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695620512); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5687, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695620512); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5688, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695620513); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5689, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695620513); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5690, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695621108); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5691, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695621108); INSERT INTO lost_and_found VALUES(1050, 1050, 4, 5692, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695621108); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5693, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695621109); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5694, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695621109); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5695, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695621110); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5696, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695621110); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5697, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695621111); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5698, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695621111); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5699, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695621111); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5700, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695621112); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5701, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695621112); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5702, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695621709); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5703, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695621709); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5704, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695621710); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5705, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695621710); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5706, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695621711); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5707, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695621711); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5708, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695621712); INSERT INTO lost_and_found VALUES(1051, 1051, 4, 5709, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695621712); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5710, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695621713); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5711, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695621713); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5712, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695621714); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5713, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695621714); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5714, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695622308); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5715, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695622309); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5716, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695622309); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5717, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695622310); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5718, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695622310); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5719, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695622311); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5720, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695622311); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5721, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695622311); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5722, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695622312); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5723, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695622312); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5724, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695622313); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5725, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695622313); INSERT INTO lost_and_found VALUES(1052, 1052, 4, 5726, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695622908); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5727, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695622908); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5728, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695622909); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5729, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695622909); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5730, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695622909); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5731, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695622910); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5732, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695622910); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5733, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695622911); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5734, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695622911); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5735, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695622912); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5736, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695622912); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5737, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695622913); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5738, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695623507); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5739, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695623508); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5740, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695623508); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5741, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695623508); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5742, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695623509); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5743, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695623509); INSERT INTO lost_and_found VALUES(1053, 1053, 4, 5744, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695623510); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5745, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695623510); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5746, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695623511); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5747, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695623511); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5748, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695623512); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5749, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695623512); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5750, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695624109); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5751, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695624109); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5752, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695624110); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5753, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695624110); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5754, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695624110); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5755, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695624111); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5756, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695624111); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5757, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695624112); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5758, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695624112); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5759, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695624113); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5760, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695624113); INSERT INTO lost_and_found VALUES(1054, 1054, 4, 5761, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695624114); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5762, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695624708); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5763, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695624708); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5764, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695624709); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5765, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695624709); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5766, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695624710); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5767, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695624710); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5768, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695624711); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5769, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695624711); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5770, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695624712); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5771, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695624712); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5772, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695624713); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5773, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695624713); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5774, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695625307); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5775, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695625308); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5776, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695625308); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5777, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695625309); INSERT INTO lost_and_found VALUES(1055, 1055, 4, 5778, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695625309); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5779, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695625310); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5780, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695625310); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5781, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695625311); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5782, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695625311); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5783, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695625311); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5784, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695625312); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5785, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695625312); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5786, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695625909); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5787, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695625909); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5788, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695625910); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5789, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695625910); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5790, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695625911); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5791, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695625911); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5792, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695625911); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5793, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695625912); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5794, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695625912); INSERT INTO lost_and_found VALUES(1056, 1056, 4, 5795, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695625913); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5796, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695625913); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5797, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695625914); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5798, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695626508); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5799, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695626509); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5800, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695626509); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5801, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695626510); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5802, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695626510); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5803, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695626510); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5804, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695626511); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5805, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695626511); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5806, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695626512); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5807, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695626512); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5808, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695626513); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5809, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695626513); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5810, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695627108); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5811, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695627108); INSERT INTO lost_and_found VALUES(1057, 1057, 4, 5812, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695627108); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5813, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695627109); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5814, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695627109); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5815, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695627110); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5816, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695627110); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5817, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695627111); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5818, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695627111); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5819, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695627112); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5820, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695627112); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5821, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695627112); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5822, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695627709); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5823, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695627709); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5824, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695627710); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5825, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695627710); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5826, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695627711); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5827, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695627711); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5828, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695627712); INSERT INTO lost_and_found VALUES(1058, 1058, 4, 5829, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695627712); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621109, 5693, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621109, 5694, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621110, 5695, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621110, 5696, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621111, 5697, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621111, 5698, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621111, 5699, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621112, 5700, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621112, 5701, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621709, 5702, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621709, 5703, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621710, 5704, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621710, 5705, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621711, 5706, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621711, 5707, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621712, 5708, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621712, 5709, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621713, 5710, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621713, 5711, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621714, 5712, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695621714, 5713, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622308, 5714, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622309, 5715, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622309, 5716, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622310, 5717, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622310, 5718, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622311, 5719, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622311, 5720, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622311, 5721, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622312, 5722, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622312, 5723, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622313, 5724, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622313, 5725, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622908, 5726, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622908, 5727, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622909, 5728, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622909, 5729, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622909, 5730, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622910, 5731, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622910, 5732, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622911, 5733, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622911, 5734, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622912, 5735, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622912, 5736, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695622913, 5737, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623507, 5738, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623508, 5739, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623508, 5740, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623508, 5741, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623509, 5742, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623509, 5743, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623510, 5744, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623510, 5745, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623511, 5746, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623511, 5747, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623512, 5748, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695623512, 5749, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624109, 5750, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624109, 5751, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624110, 5752, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624110, 5753, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624110, 5754, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624111, 5755, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624111, 5756, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624112, 5757, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624112, 5758, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624113, 5759, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624113, 5760, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624114, 5761, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624708, 5762, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624708, 5763, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624709, 5764, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624709, 5765, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624710, 5766, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624710, 5767, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624711, 5768, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624711, 5769, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624712, 5770, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624712, 5771, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624713, 5772, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695624713, 5773, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625307, 5774, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625308, 5775, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625308, 5776, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625309, 5777, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625309, 5778, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625310, 5779, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625310, 5780, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625311, 5781, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625311, 5782, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625311, 5783, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625312, 5784, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625312, 5785, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625909, 5786, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625909, 5787, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625910, 5788, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625910, 5789, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625911, 5790, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625911, 5791, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625911, 5792, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625912, 5793, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625912, 5794, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625913, 5795, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625913, 5796, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695625914, 5797, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626508, 5798, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626509, 5799, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626509, 5800, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626510, 5801, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626510, 5802, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626510, 5803, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626511, 5804, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626511, 5805, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626512, 5806, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626512, 5807, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626513, 5808, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695626513, 5809, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627108, 5810, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627108, 5811, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627108, 5812, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627109, 5813, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627109, 5814, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627110, 5815, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627110, 5816, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627111, 5817, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627111, 5818, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627112, 5819, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627112, 5820, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627112, 5821, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627709, 5822, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627709, 5823, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627710, 5824, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627710, 5825, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627711, 5826, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627711, 5827, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627712, 5828, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627712, 5829, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627713, 5830, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627713, 5831, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627713, 5832, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695627714, 5833, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628308, 5834, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628309, 5835, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628309, 5836, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628310, 5837, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628310, 5838, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628311, 5839, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628311, 5840, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628312, 5841, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628312, 5842, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628312, 5843, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628313, 5844, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628313, 5845, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628908, 5846, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628908, 5847, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628909, 5848, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628909, 5849, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628910, 5850, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628910, 5851, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628910, 5852, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628911, 5853, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628911, 5854, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628912, 5855, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628912, 5856, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695628913, 5857, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629507, 5858, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629508, 5859, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629508, 5860, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629509, 5861, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629509, 5862, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629509, 5863, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629510, 5864, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629510, 5865, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629511, 5866, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629511, 5867, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629512, 5868, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695629512, 5869, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630109, 5870, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630109, 5871, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630110, 5872, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630110, 5873, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630110, 5874, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630111, 5875, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630111, 5876, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630112, 5877, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630112, 5878, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630113, 5879, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630113, 5880, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630113, 5881, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630708, 5882, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630709, 5883, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630709, 5884, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630709, 5885, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630710, 5886, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630710, 5887, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630711, 5888, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630711, 5889, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630712, 5890, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630712, 5891, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630713, 5892, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695630713, 5893, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631307, 5894, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631308, 5895, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631308, 5896, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631309, 5897, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631309, 5898, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631310, 5899, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631310, 5900, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631311, 5901, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631311, 5902, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631311, 5903, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631312, 5904, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631312, 5905, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631909, 5906, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631909, 5907, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631910, 5908, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631910, 5909, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631911, 5910, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631911, 5911, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631912, 5912, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631912, 5913, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631912, 5914, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631913, 5915, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631913, 5916, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695631914, 5917, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632515, 5918, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632515, 5919, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632516, 5920, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632516, 5921, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632517, 5922, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632517, 5923, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632518, 5924, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632518, 5925, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632519, 5926, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632520, 5927, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632520, 5928, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695632521, 5929, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633111, 5930, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633111, 5931, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633112, 5932, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633112, 5933, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633113, 5934, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633113, 5935, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633113, 5936, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633114, 5937, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633114, 5938, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633115, 5939, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633115, 5940, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633116, 5941, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633709, 5942, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633709, 5943, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633710, 5944, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633710, 5945, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633711, 5946, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633711, 5947, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633712, 5948, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633712, 5949, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633713, 5950, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633713, 5951, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633713, 5952, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695633714, 5953, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634308, 5954, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634309, 5955, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634309, 5956, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634310, 5957, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634310, 5958, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634311, 5959, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634311, 5960, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634311, 5961, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634312, 5962, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634312, 5963, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634313, 5964, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634313, 5965, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634908, 5966, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634908, 5967, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634909, 5968, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634909, 5969, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634910, 5970, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634910, 5971, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634911, 5972, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634911, 5973, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634911, 5974, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634912, 5975, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634912, 5976, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695634913, 5977, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635507, 5978, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635508, 5979, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635508, 5980, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635509, 5981, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635509, 5982, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635509, 5983, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635510, 5984, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635510, 5985, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635511, 5986, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635511, 5987, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635512, 5988, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695635512, 5989, NULL, NULL); INSERT INTO lost_and_found VALUES(1059, 1059, 2, NULL, 1695636109, 5990, NULL, NULL); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5830, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695627713); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5831, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695627713); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5832, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695627713); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5833, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695627714); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5834, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695628308); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5835, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695628309); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5836, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695628309); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5837, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695628310); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5838, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695628310); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5839, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695628311); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5840, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695628311); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5841, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695628312); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5842, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695628312); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5843, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695628312); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5844, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695628313); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5845, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695628313); INSERT INTO lost_and_found VALUES(1060, 1060, 4, 5846, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695628908); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5847, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695628908); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5848, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695628909); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5849, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695628909); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5850, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695628910); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5851, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695628910); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5852, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695628910); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5853, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695628911); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5854, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695628911); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5855, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695628912); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5856, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695628912); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5857, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695628913); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5858, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695629507); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5859, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695629508); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5860, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695629508); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5861, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695629509); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5862, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695629509); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5863, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695629509); INSERT INTO lost_and_found VALUES(1061, 1061, 4, 5864, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695629510); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5865, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695629510); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5866, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695629511); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5867, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695629511); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5868, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695629512); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5869, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695629512); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5870, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695630109); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5871, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695630109); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5872, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695630110); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5873, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695630110); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5874, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695630110); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5875, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695630111); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5876, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695630111); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5877, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695630112); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5878, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695630112); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5879, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695630113); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5880, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695630113); INSERT INTO lost_and_found VALUES(1062, 1062, 4, 5881, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695630113); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5882, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695630708); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5883, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695630709); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5884, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695630709); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5885, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695630709); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5886, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695630710); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5887, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695630710); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5888, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695630711); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5889, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695630711); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5890, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695630712); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5891, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695630712); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5892, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695630713); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5893, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695630713); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5894, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695631307); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5895, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695631308); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5896, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695631308); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5897, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695631309); INSERT INTO lost_and_found VALUES(1063, 1063, 4, 5898, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695631309); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5899, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695631310); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5900, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695631310); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5901, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695631311); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5902, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695631311); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5903, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695631311); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5904, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695631312); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5905, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695631312); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5906, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695631909); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5907, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695631909); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5908, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695631910); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5909, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695631910); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5910, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695631911); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5911, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695631911); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5912, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695631912); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5913, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695631912); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5914, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695631912); INSERT INTO lost_and_found VALUES(1064, 1064, 4, 5915, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695631913); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5916, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695631913); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5917, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695631914); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5918, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695632515); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5919, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695632515); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5920, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695632516); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5921, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695632516); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5922, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695632517); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5923, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695632517); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5924, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695632518); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5925, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695632518); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5926, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695632519); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5927, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695632520); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5928, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695632520); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5929, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695632521); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5930, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695633111); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5931, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695633111); INSERT INTO lost_and_found VALUES(1065, 1065, 4, 5932, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695633112); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5933, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695633112); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5934, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695633113); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5935, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695633113); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5936, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695633113); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5937, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695633114); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5938, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695633114); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5939, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695633115); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5940, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695633115); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5941, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695633116); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5942, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695633709); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5943, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695633709); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5944, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695633710); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5945, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695633710); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5946, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695633711); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5947, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695633711); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5948, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695633712); INSERT INTO lost_and_found VALUES(1066, 1066, 4, 5949, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695633712); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5950, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695633713); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5951, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695633713); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5952, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695633713); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5953, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695633714); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5954, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695634308); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5955, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695634309); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5956, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695634309); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5957, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695634310); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5958, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695634310); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5959, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695634311); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5960, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695634311); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5961, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695634311); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5962, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695634312); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5963, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695634312); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5964, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695634313); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5965, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695634313); INSERT INTO lost_and_found VALUES(1067, 1067, 4, 5966, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695634908); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5967, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695634908); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5968, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695634909); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5969, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695634909); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5970, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695634910); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5971, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695634910); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5972, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695634911); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5973, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695634911); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5974, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695634911); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5975, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695634912); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5976, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695634912); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5977, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695634913); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5978, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695635507); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5979, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695635508); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5980, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695635508); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5981, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695635509); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5982, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695635509); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5983, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695635509); INSERT INTO lost_and_found VALUES(1068, 1068, 4, 5984, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695635510); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5985, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695635510); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5986, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695635511); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5987, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695635511); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5988, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695635512); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5989, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695635512); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5990, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695636109); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5991, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695636109); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5992, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695636110); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5993, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695636110); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5994, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695636110); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5995, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695636111); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5996, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695636111); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5997, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695636112); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5998, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695636112); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 5999, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695636113); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 6000, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695636113); INSERT INTO lost_and_found VALUES(1069, 1069, 4, 6001, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695636113); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6002, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695636708); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6003, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695636708); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6004, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695636709); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6005, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695636709); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6006, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695636710); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6007, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695636710); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6008, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695636711); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6009, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695636711); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6010, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695636712); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6011, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695636712); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6012, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695636712); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6013, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695636713); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6014, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695637307); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6015, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695637308); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6016, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695637308); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6017, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695637309); INSERT INTO lost_and_found VALUES(1070, 1070, 4, 6018, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695637309); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6019, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695637310); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6020, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695637310); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6021, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695637310); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6022, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695637311); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6023, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695637311); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6024, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695637312); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6025, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695637312); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6026, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695637909); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6027, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695637909); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6028, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695637910); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6029, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695637910); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6030, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695637911); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6031, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695637911); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6032, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695637912); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6033, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695637912); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6034, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695637913); INSERT INTO lost_and_found VALUES(1071, 1071, 4, 6035, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695637913); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6036, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695637914); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6037, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695637914); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6038, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695638508); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6039, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695638509); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6040, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695638509); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6041, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695638510); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6042, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695638510); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6043, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695638510); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6044, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695638511); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6045, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695638511); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6046, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695638512); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6047, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695638512); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6048, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695638513); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6049, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695638513); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6050, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695639108); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6051, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695639108); INSERT INTO lost_and_found VALUES(1072, 1072, 4, 6052, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695639109); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6053, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695639109); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6054, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695639109); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6055, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695639110); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6056, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695639110); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6057, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695639111); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6058, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695639111); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6059, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695639112); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6060, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695639112); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6061, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695639112); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6062, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695639707); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6063, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695639708); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6064, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695639708); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6065, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695639709); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6066, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695639709); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6067, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695639709); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6068, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695639710); INSERT INTO lost_and_found VALUES(1073, 1073, 4, 6069, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695639710); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6070, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695639711); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6071, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695639711); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6072, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695639712); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6073, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695639712); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6074, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695640309); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6075, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695640309); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6076, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695640309); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6077, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695640310); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6078, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695640310); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6079, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695640311); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6080, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695640311); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6081, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695640312); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6082, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695640312); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6083, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695640313); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6084, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695640313); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6085, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695640313); INSERT INTO lost_and_found VALUES(1074, 1074, 4, 6086, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695640908); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6087, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695640908); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6088, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695640909); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6089, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695640909); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6090, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695640910); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6091, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695640910); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6092, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695640911); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6093, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695640911); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6094, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695640911); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6095, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695640912); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6096, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695640912); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6097, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695640913); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6098, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695641507); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6099, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695641508); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6100, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695641508); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6101, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695641509); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6102, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695641509); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6103, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695641510); INSERT INTO lost_and_found VALUES(1075, 1075, 4, 6104, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695641510); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6105, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695641510); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6106, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695641511); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6107, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695641511); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6108, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695641512); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6109, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695641512); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6110, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695642109); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6111, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695642109); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6112, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695642110); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6113, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695642111); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6114, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695642111); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6115, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695642112); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6116, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695642112); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6117, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695642112); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6118, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695642113); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6119, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695642113); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6120, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695642114); INSERT INTO lost_and_found VALUES(1076, 1076, 4, 6121, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695642114); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636110, 5992, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636110, 5993, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636110, 5994, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636111, 5995, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636111, 5996, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636112, 5997, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636112, 5998, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636113, 5999, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636113, 6000, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636113, 6001, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636708, 6002, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636708, 6003, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636709, 6004, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636709, 6005, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636710, 6006, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636710, 6007, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636711, 6008, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636711, 6009, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636712, 6010, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636712, 6011, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636712, 6012, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695636713, 6013, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637307, 6014, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637308, 6015, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637308, 6016, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637309, 6017, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637309, 6018, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637310, 6019, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637310, 6020, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637310, 6021, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637311, 6022, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637311, 6023, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637312, 6024, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637312, 6025, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637909, 6026, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637909, 6027, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637910, 6028, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637910, 6029, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637911, 6030, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637911, 6031, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637912, 6032, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637912, 6033, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637913, 6034, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637913, 6035, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637914, 6036, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695637914, 6037, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638508, 6038, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638509, 6039, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638509, 6040, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638510, 6041, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638510, 6042, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638510, 6043, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638511, 6044, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638511, 6045, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638512, 6046, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638512, 6047, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638513, 6048, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695638513, 6049, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639108, 6050, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639108, 6051, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639109, 6052, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639109, 6053, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639109, 6054, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639110, 6055, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639110, 6056, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639111, 6057, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639111, 6058, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639112, 6059, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639112, 6060, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639112, 6061, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639707, 6062, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639708, 6063, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639708, 6064, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639709, 6065, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639709, 6066, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639709, 6067, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639710, 6068, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639710, 6069, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639711, 6070, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639711, 6071, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639712, 6072, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695639712, 6073, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640309, 6074, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640309, 6075, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640309, 6076, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640310, 6077, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640310, 6078, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640311, 6079, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640311, 6080, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640312, 6081, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640312, 6082, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640313, 6083, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640313, 6084, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640313, 6085, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640908, 6086, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640908, 6087, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640909, 6088, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640909, 6089, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640910, 6090, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640910, 6091, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640911, 6092, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640911, 6093, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640911, 6094, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640912, 6095, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640912, 6096, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695640913, 6097, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641507, 6098, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641508, 6099, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641508, 6100, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641509, 6101, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641509, 6102, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641510, 6103, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641510, 6104, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641510, 6105, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641511, 6106, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641511, 6107, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641512, 6108, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695641512, 6109, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642109, 6110, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642109, 6111, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642110, 6112, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642111, 6113, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642111, 6114, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642112, 6115, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642112, 6116, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642112, 6117, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642113, 6118, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642113, 6119, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642114, 6120, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642114, 6121, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642708, 6122, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642709, 6123, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642709, 6124, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642710, 6125, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642710, 6126, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642710, 6127, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642711, 6128, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642711, 6129, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642712, 6130, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642712, 6131, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642713, 6132, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695642713, 6133, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643308, 6134, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643308, 6135, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643308, 6136, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643309, 6137, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643309, 6138, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643310, 6139, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643310, 6140, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643311, 6141, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643311, 6142, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643312, 6143, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643312, 6144, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643312, 6145, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643909, 6146, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643909, 6147, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643910, 6148, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643910, 6149, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643911, 6150, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643911, 6151, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643912, 6152, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643912, 6153, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643913, 6154, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643913, 6155, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643913, 6156, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695643914, 6157, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644508, 6158, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644509, 6159, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644509, 6160, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644510, 6161, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644510, 6162, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644511, 6163, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644511, 6164, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644511, 6165, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644512, 6166, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644512, 6167, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644513, 6168, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695644513, 6169, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645108, 6170, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645108, 6171, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645109, 6172, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645109, 6173, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645110, 6174, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645110, 6175, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645110, 6176, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645111, 6177, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645111, 6178, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645112, 6179, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645112, 6180, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645113, 6181, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645712, 6182, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645712, 6183, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645713, 6184, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645714, 6185, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645715, 6186, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645715, 6187, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645716, 6188, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645716, 6189, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645717, 6190, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645718, 6191, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645719, 6192, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695645720, 6193, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646310, 6194, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646310, 6195, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646311, 6196, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646311, 6197, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646312, 6198, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646312, 6199, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646313, 6200, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646313, 6201, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646314, 6202, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646314, 6203, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646315, 6204, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646315, 6205, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646910, 6206, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646910, 6207, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646911, 6208, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646911, 6209, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646912, 6210, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646912, 6211, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646913, 6212, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646913, 6213, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646914, 6214, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646914, 6215, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646915, 6216, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695646915, 6217, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647508, 6218, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647508, 6219, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647509, 6220, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647509, 6221, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647510, 6222, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647510, 6223, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647511, 6224, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647511, 6225, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647512, 6226, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647512, 6227, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647512, 6228, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695647513, 6229, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659302, 6230, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659302, 6231, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659302, 6232, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659303, 6233, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659303, 6234, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659304, 6235, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659304, 6236, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659305, 6237, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659305, 6238, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659306, 6239, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659306, 6240, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659307, 6241, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659900, 6242, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659900, 6243, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659901, 6244, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659901, 6245, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659902, 6246, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659902, 6247, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659903, 6248, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659903, 6249, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659904, 6250, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659904, 6251, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659904, 6252, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695659905, 6253, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660499, 6254, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660500, 6255, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660500, 6256, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660501, 6257, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660501, 6258, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660502, 6259, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660502, 6260, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660502, 6261, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660503, 6262, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660503, 6263, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660504, 6264, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695660504, 6265, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661101, 6266, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661101, 6267, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661102, 6268, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661102, 6269, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661103, 6270, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661103, 6271, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661103, 6272, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661104, 6273, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661104, 6274, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661105, 6275, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661105, 6276, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661106, 6277, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661704, 6278, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661705, 6279, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661705, 6280, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661706, 6281, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661706, 6282, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661707, 6283, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661707, 6284, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661708, 6285, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661708, 6286, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661708, 6287, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661709, 6288, NULL, NULL); INSERT INTO lost_and_found VALUES(1077, 1077, 2, NULL, 1695661709, 6289, NULL, NULL); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6122, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695642708); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6123, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695642709); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6124, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695642709); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6125, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695642710); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6126, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695642710); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6127, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695642710); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6128, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695642711); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6129, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695642711); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6130, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695642712); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6131, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695642712); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6132, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695642713); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6133, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695642713); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6134, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695643308); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6135, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695643308); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6136, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695643308); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6137, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695643309); INSERT INTO lost_and_found VALUES(1078, 1078, 4, 6138, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695643309); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6139, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695643310); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6140, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695643310); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6141, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695643311); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6142, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695643311); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6143, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695643312); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6144, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695643312); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6145, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695643312); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6146, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695643909); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6147, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695643909); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6148, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695643910); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6149, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695643910); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6150, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695643911); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6151, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695643911); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6152, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695643912); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6153, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695643912); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6154, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695643913); INSERT INTO lost_and_found VALUES(1079, 1079, 4, 6155, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695643913); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6156, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695643913); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6157, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695643914); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6158, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695644508); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6159, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695644509); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6160, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695644509); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6161, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695644510); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6162, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695644510); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6163, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695644511); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6164, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695644511); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6165, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695644511); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6166, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695644512); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6167, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695644512); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6168, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695644513); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6169, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695644513); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6170, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695645108); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6171, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695645108); INSERT INTO lost_and_found VALUES(1080, 1080, 4, 6172, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695645109); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6173, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695645109); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6174, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695645110); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6175, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695645110); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6176, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695645110); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6177, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695645111); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6178, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695645111); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6179, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695645112); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6180, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695645112); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6181, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695645113); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6182, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695645712); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6183, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695645712); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6184, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695645713); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6185, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695645714); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6186, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695645715); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6187, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695645715); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6188, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695645716); INSERT INTO lost_and_found VALUES(1081, 1081, 4, 6189, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695645716); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6190, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695645717); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6191, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695645718); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6192, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695645719); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6193, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695645720); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6194, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695646310); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6195, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695646310); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6196, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695646311); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6197, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695646311); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6198, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695646312); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6199, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695646312); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6200, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695646313); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6201, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695646313); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6202, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695646314); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6203, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695646314); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6204, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695646315); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6205, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695646315); INSERT INTO lost_and_found VALUES(1082, 1082, 4, 6206, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695646910); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6207, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695646910); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6208, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695646911); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6209, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695646911); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6210, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695646912); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6211, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695646912); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6212, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695646913); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6213, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695646913); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6214, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695646914); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6215, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695646914); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6216, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695646915); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6217, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695646915); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6218, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695647508); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6219, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695647508); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6220, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695647509); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6221, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695647509); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6222, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695647510); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6223, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695647510); INSERT INTO lost_and_found VALUES(1083, 1083, 4, 6224, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695647511); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6225, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695647511); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6226, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695647512); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6227, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695647512); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6228, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695647512); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6229, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695647513); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6230, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/shell-intro.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/shell-intro/paruzpro.git/'': The requested URL returned error: 403 ', 1695659302); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6231, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/bash.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/bash/paruzpro.git/'': The requested URL returned error: 403 ', 1695659302); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6232, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/sed.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/sed/paruzpro.git/'': The requested URL returned error: 403 ', 1695659302); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6233, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/awk.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/awk/paruzpro.git/'': The requested URL returned error: 403 ', 1695659303); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6234, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlhello.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/hello/paruzpro.git/'': The requested URL returned error: 403 ', 1695659303); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6235, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_1/paruzpro.git/'': The requested URL returned error: 403 ', 1695659304); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6236, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcut2.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/cut_2/paruzpro.git/'': The requested URL returned error: 403 ', 1695659304); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6237, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlcompare.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/compare/paruzpro.git/'': The requested URL returned error: 403 ', 1695659305); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6238, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlpod.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/pod/paruzpro.git/'': The requested URL returned error: 403 ', 1695659305); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6239, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/perlboom.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/boom/paruzpro.git/'': The requested URL returned error: 403 ', 1695659306); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6240, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/count.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/count/paruzpro.git/'': The requested URL returned error: 403 ', 1695659306); INSERT INTO lost_and_found VALUES(1084, 1084, 4, 6241, NULL, 1, 'Failed to update mirror repository ''/home/git/gitea/data/gitea-repositories/skj/match.git'': fatal: unable to access ''https://gitlab.wr.cz/bi-skj/b222/match/paruzpro.git/'': The requested URL returned error: 403 ', 1695659307); CREATE INDEX `IDX_oauth2_authorization_code_valid_until` ON `oauth2_authorization_code` (`valid_until`); CREATE INDEX `IDX_oauth2_grant_user_id` ON `oauth2_grant` (`user_id`); CREATE INDEX `IDX_oauth2_grant_application_id` ON `oauth2_grant` (`application_id`); CREATE INDEX `IDX_login_source_is_sync_enabled` ON `login_source` (`is_sync_enabled`); CREATE INDEX `IDX_login_source_created_unix` ON `login_source` (`created_unix`); CREATE INDEX `IDX_login_source_updated_unix` ON `login_source` (`updated_unix`); CREATE INDEX `IDX_login_source_is_active` ON `login_source` (`is_active`); CREATE INDEX `IDX_two_factor_created_unix` ON `two_factor` (`created_unix`); CREATE INDEX `IDX_two_factor_updated_unix` ON `two_factor` (`updated_unix`); CREATE INDEX `IDX_webauthn_credential_updated_unix` ON `webauthn_credential` (`updated_unix`); CREATE INDEX `IDX_webauthn_credential_user_id` ON `webauthn_credential` (`user_id`); CREATE INDEX `IDX_webauthn_credential_credential_id` ON `webauthn_credential` (`credential_id`); CREATE INDEX `IDX_webauthn_credential_created_unix` ON `webauthn_credential` (`created_unix`); CREATE INDEX `IDX_email_address_uid` ON `email_address` (`uid`); CREATE INDEX `IDX_external_login_user_user_id` ON `external_login_user` (`user_id`); CREATE INDEX `IDX_external_login_user_provider` ON `external_login_user` (`provider`); CREATE INDEX `IDX_follow_created_unix` ON `follow` (`created_unix`); CREATE INDEX `IDX_user_open_id_uid` ON `user_open_id` (`uid`); CREATE INDEX `IDX_user_redirect_lower_name` ON `user_redirect` (`lower_name`); CREATE INDEX `IDX_user_setting_user_id` ON `user_setting` (`user_id`); CREATE INDEX `IDX_user_setting_setting_key` ON `user_setting` (`setting_key`); CREATE INDEX `IDX_user_updated_unix` ON `user` (`updated_unix`); CREATE INDEX `IDX_user_last_login_unix` ON `user` (`last_login_unix`); CREATE INDEX `IDX_user_is_active` ON `user` (`is_active`); CREATE INDEX `IDX_user_created_unix` ON `user` (`created_unix`); CREATE INDEX `IDX_repo_archiver_repo_id` ON `repo_archiver` (`repo_id`); CREATE INDEX `IDX_repo_archiver_created_unix` ON `repo_archiver` (`created_unix`); CREATE INDEX `IDX_collaboration_repo_id` ON `collaboration` (`repo_id`); CREATE INDEX `IDX_collaboration_user_id` ON `collaboration` (`user_id`); CREATE INDEX `IDX_collaboration_created_unix` ON `collaboration` (`created_unix`); CREATE INDEX `IDX_collaboration_updated_unix` ON `collaboration` (`updated_unix`); CREATE INDEX `IDX_language_stat_repo_id` ON `language_stat` (`repo_id`); CREATE INDEX `IDX_language_stat_language` ON `language_stat` (`language`); CREATE INDEX `IDX_language_stat_created_unix` ON `language_stat` (`created_unix`); CREATE INDEX `IDX_repo_redirect_lower_name` ON `repo_redirect` (`lower_name`); CREATE INDEX `IDX_repo_indexer_status_s` ON `repo_indexer_status` (`repo_id`,`indexer_type`); CREATE INDEX `IDX_star_created_unix` ON `star` (`created_unix`); CREATE INDEX `IDX_topic_created_unix` ON `topic` (`created_unix`); CREATE INDEX `IDX_topic_updated_unix` ON `topic` (`updated_unix`); CREATE INDEX `IDX_watch_created_unix` ON `watch` (`created_unix`); CREATE INDEX `IDX_watch_updated_unix` ON `watch` (`updated_unix`); CREATE INDEX `IDX_org_user_is_public` ON `org_user` (`is_public`); CREATE INDEX `IDX_org_user_uid` ON `org_user` (`uid`); CREATE INDEX `IDX_org_user_org_id` ON `org_user` (`org_id`); CREATE INDEX `IDX_team_org_id` ON `team` (`org_id`); CREATE INDEX `IDX_team_user_org_id` ON `team_user` (`org_id`); CREATE INDEX `IDX_team_repo_org_id` ON `team_repo` (`org_id`); CREATE INDEX `IDX_team_unit_org_id` ON `team_unit` (`org_id`); CREATE INDEX `IDX_gpg_key_owner_id` ON `gpg_key` (`owner_id`); CREATE INDEX `IDX_gpg_key_key_id` ON `gpg_key` (`key_id`); CREATE INDEX `IDX_public_key_owner_id` ON `public_key` (`owner_id`); CREATE INDEX `IDX_public_key_fingerprint` ON `public_key` (`fingerprint`); CREATE INDEX `IDX_deploy_key_repo_id` ON `deploy_key` (`repo_id`); CREATE INDEX `IDX_deploy_key_key_id` ON `deploy_key` (`key_id`); CREATE INDEX `IDX_renamed_branch_repo_id` ON `renamed_branch` (`repo_id`); CREATE INDEX `IDX_commit_status_updated_unix` ON `commit_status` (`updated_unix`); CREATE INDEX `IDX_commit_status_index` ON `commit_status` (`index`); CREATE INDEX `IDX_commit_status_repo_id` ON `commit_status` (`repo_id`); CREATE INDEX `IDX_commit_status_sha` ON `commit_status` (`sha`); CREATE INDEX `IDX_commit_status_context_hash` ON `commit_status` (`context_hash`); CREATE INDEX `IDX_commit_status_created_unix` ON `commit_status` (`created_unix`); CREATE INDEX `IDX_commit_status_index_max_index` ON `commit_status_index` (`max_index`); CREATE INDEX `IDX_lfs_meta_object_oid` ON `lfs_meta_object` (`oid`); CREATE INDEX `IDX_lfs_meta_object_repository_id` ON `lfs_meta_object` (`repository_id`); CREATE INDEX `IDX_lfs_lock_repo_id` ON `lfs_lock` (`repo_id`); CREATE INDEX `IDX_lfs_lock_owner_id` ON `lfs_lock` (`owner_id`); CREATE INDEX `IDX_project_board_created_unix` ON `project_board` (`created_unix`); CREATE INDEX `IDX_project_board_updated_unix` ON `project_board` (`updated_unix`); CREATE INDEX `IDX_project_board_project_id` ON `project_board` (`project_id`); CREATE INDEX `IDX_project_issue_project_id` ON `project_issue` (`project_id`); CREATE INDEX `IDX_project_issue_issue_id` ON `project_issue` (`issue_id`); CREATE INDEX `IDX_notice_created_unix` ON `notice` (`created_unix`); CREATE INDEX `IDX_review_state_pull_id` ON `review_state` (`pull_id`); CREATE INDEX `IDX_issue_assignees_assignee_id` ON `issue_assignees` (`assignee_id`); CREATE INDEX `IDX_issue_assignees_issue_id` ON `issue_assignees` (`issue_id`); CREATE INDEX `IDX_issue_content_history_issue_id` ON `issue_content_history` (`issue_id`); CREATE INDEX `IDX_issue_content_history_comment_id` ON `issue_content_history` (`comment_id`); CREATE INDEX `IDX_issue_content_history_edited_unix` ON `issue_content_history` (`edited_unix`); CREATE INDEX `IDX_issue_index_max_index` ON `issue_index` (`max_index`); CREATE INDEX `IDX_milestone_created_unix` ON `milestone` (`created_unix`); CREATE INDEX `IDX_milestone_updated_unix` ON `milestone` (`updated_unix`); CREATE INDEX `IDX_milestone_repo_id` ON `milestone` (`repo_id`); CREATE INDEX `IDX_pull_request_merger_id` ON `pull_request` (`merger_id`); CREATE INDEX `IDX_pull_request_merged_unix` ON `pull_request` (`merged_unix`); CREATE INDEX `IDX_pull_request_issue_id` ON `pull_request` (`issue_id`); CREATE INDEX `IDX_pull_request_head_repo_id` ON `pull_request` (`head_repo_id`); CREATE INDEX `IDX_pull_request_base_repo_id` ON `pull_request` (`base_repo_id`); CREATE INDEX `IDX_pull_request_has_merged` ON `pull_request` (`has_merged`); CREATE INDEX `IDX_reaction_type` ON `reaction` (`type`); CREATE INDEX `IDX_reaction_issue_id` ON `reaction` (`issue_id`); CREATE INDEX `IDX_reaction_comment_id` ON `reaction` (`comment_id`); CREATE INDEX `IDX_reaction_user_id` ON `reaction` (`user_id`); CREATE INDEX `IDX_reaction_original_author_id` ON `reaction` (`original_author_id`); CREATE INDEX `IDX_reaction_original_author` ON `reaction` (`original_author`); CREATE INDEX `IDX_reaction_created_unix` ON `reaction` (`created_unix`); CREATE INDEX `IDX_review_reviewer_id` ON `review` (`reviewer_id`); CREATE INDEX `IDX_review_issue_id` ON `review` (`issue_id`); CREATE INDEX `IDX_review_created_unix` ON `review` (`created_unix`); CREATE INDEX `IDX_review_updated_unix` ON `review` (`updated_unix`); CREATE INDEX `IDX_stopwatch_issue_id` ON `stopwatch` (`issue_id`); CREATE INDEX `IDX_stopwatch_user_id` ON `stopwatch` (`user_id`); CREATE INDEX `IDX_tracked_time_issue_id` ON `tracked_time` (`issue_id`); CREATE INDEX `IDX_tracked_time_user_id` ON `tracked_time` (`user_id`); CREATE INDEX `IDX_notification_user_id` ON `notification` (`user_id`); CREATE INDEX `IDX_notification_status` ON `notification` (`status`); CREATE INDEX `IDX_notification_repo_id` ON `notification` (`repo_id`); CREATE INDEX `IDX_notification_source` ON `notification` (`source`); CREATE INDEX `IDX_notification_issue_id` ON `notification` (`issue_id`); CREATE INDEX `IDX_notification_commit_id` ON `notification` (`commit_id`); CREATE INDEX `IDX_notification_updated_by` ON `notification` (`updated_by`); CREATE INDEX `IDX_repo_transfer_created_unix` ON `repo_transfer` (`created_unix`); CREATE INDEX `IDX_repo_transfer_updated_unix` ON `repo_transfer` (`updated_unix`); CREATE INDEX `IDX_task_repo_id` ON `task` (`repo_id`); CREATE INDEX `IDX_task_status` ON `task` (`status`); CREATE INDEX `IDX_task_doer_id` ON `task` (`doer_id`); CREATE INDEX `IDX_task_owner_id` ON `task` (`owner_id`); CREATE INDEX `IDX_package_type` ON `package` (`type`); CREATE INDEX `IDX_package_lower_name` ON `package` (`lower_name`); CREATE INDEX `IDX_package_owner_id` ON `package` (`owner_id`); CREATE INDEX `IDX_package_repo_id` ON `package` (`repo_id`); CREATE INDEX `IDX_package_blob_hash_sha512` ON `package_blob` (`hash_sha512`); CREATE INDEX `IDX_package_blob_created_unix` ON `package_blob` (`created_unix`); CREATE INDEX `IDX_package_blob_hash_md5` ON `package_blob` (`hash_md5`); CREATE INDEX `IDX_package_blob_hash_sha1` ON `package_blob` (`hash_sha1`); CREATE INDEX `IDX_package_blob_hash_sha256` ON `package_blob` (`hash_sha256`); CREATE INDEX `IDX_package_blob_upload_updated_unix` ON `package_blob_upload` (`updated_unix`); CREATE INDEX `IDX_package_file_lower_name` ON `package_file` (`lower_name`); CREATE INDEX `IDX_package_file_composite_key` ON `package_file` (`composite_key`); CREATE INDEX `IDX_package_file_created_unix` ON `package_file` (`created_unix`); CREATE INDEX `IDX_package_file_version_id` ON `package_file` (`version_id`); CREATE INDEX `IDX_package_file_blob_id` ON `package_file` (`blob_id`); CREATE INDEX `IDX_package_property_ref_type` ON `package_property` (`ref_type`); CREATE INDEX `IDX_package_property_ref_id` ON `package_property` (`ref_id`); CREATE INDEX `IDX_package_property_name` ON `package_property` (`name`); CREATE INDEX `IDX_package_version_created_unix` ON `package_version` (`created_unix`); CREATE INDEX `IDX_package_version_is_internal` ON `package_version` (`is_internal`); CREATE INDEX `IDX_package_version_package_id` ON `package_version` (`package_id`); CREATE INDEX `IDX_package_version_lower_version` ON `package_version` (`lower_version`); CREATE INDEX `IDX_user_badge_user_id` ON `user_badge` (`user_id`); CREATE INDEX `IDX_team_invite_created_unix` ON `team_invite` (`created_unix`); CREATE INDEX `IDX_team_invite_updated_unix` ON `team_invite` (`updated_unix`); CREATE INDEX `IDX_team_invite_token` ON `team_invite` (`token`); CREATE INDEX `IDX_team_invite_org_id` ON `team_invite` (`org_id`); CREATE INDEX `IDX_team_invite_team_id` ON `team_invite` (`team_id`); CREATE INDEX `IDX_package_cleanup_rule_enabled` ON `package_cleanup_rule` (`enabled`); CREATE INDEX `IDX_package_cleanup_rule_owner_id` ON `package_cleanup_rule` (`owner_id`); CREATE INDEX `IDX_package_cleanup_rule_type` ON `package_cleanup_rule` (`type`); CREATE INDEX `IDX_secret_owner_id` ON `secret` (`owner_id`); CREATE INDEX `IDX_secret_repo_id` ON `secret` (`repo_id`); CREATE INDEX `IDX_lfs_meta_object_updated_unix` ON `lfs_meta_object` (`updated_unix`); CREATE INDEX `IDX_action_runner_token_owner_id` ON `action_runner_token` (`owner_id`); CREATE INDEX `IDX_action_runner_token_repo_id` ON `action_runner_token` (`repo_id`); CREATE INDEX `IDX_action_run_job_owner_id` ON `action_run_job` (`owner_id`); CREATE INDEX `IDX_action_run_job_commit_sha` ON `action_run_job` (`commit_sha`); CREATE INDEX `IDX_action_run_job_status` ON `action_run_job` (`status`); CREATE INDEX `IDX_action_run_job_updated` ON `action_run_job` (`updated`); CREATE INDEX `IDX_action_run_job_run_id` ON `action_run_job` (`run_id`); CREATE INDEX `IDX_action_run_job_repo_id` ON `action_run_job` (`repo_id`); CREATE INDEX `IDX_action_run_index_max_index` ON `action_run_index` (`max_index`); CREATE INDEX `IDX_action_task_step_task_id` ON `action_task_step` (`task_id`); CREATE INDEX `IDX_action_task_step_index` ON `action_task_step` (`index`); CREATE INDEX `IDX_action_task_step_repo_id` ON `action_task_step` (`repo_id`); CREATE INDEX `IDX_action_task_step_status` ON `action_task_step` (`status`); CREATE INDEX `IDX_dbfs_data_meta_offset` ON `dbfs_data` (`meta_id`,`blob_offset`); CREATE INDEX `IDX_access_token_uid` ON `access_token` (`uid`); CREATE INDEX `IDX_access_token_token_last_eight` ON `access_token` (`token_last_eight`); CREATE INDEX `IDX_access_token_created_unix` ON `access_token` (`created_unix`); CREATE INDEX `IDX_access_token_updated_unix` ON `access_token` (`updated_unix`); CREATE INDEX `IDX_project_owner_id` ON `project` (`owner_id`); CREATE INDEX `IDX_action_task_output_task_id` ON `action_task_output` (`task_id`); CREATE INDEX `IDX_project_updated_unix` ON `project` (`updated_unix`); CREATE INDEX `IDX_project_title` ON `project` (`title`); CREATE INDEX `IDX_project_repo_id` ON `project` (`repo_id`); CREATE INDEX `IDX_project_is_closed` ON `project` (`is_closed`); CREATE INDEX `IDX_project_created_unix` ON `project` (`created_unix`); CREATE INDEX `IDX_webhook_is_active` ON `webhook` (`is_active`); CREATE INDEX `IDX_webhook_created_unix` ON `webhook` (`created_unix`); CREATE INDEX `IDX_webhook_updated_unix` ON `webhook` (`updated_unix`); CREATE INDEX `IDX_webhook_repo_id` ON `webhook` (`repo_id`); CREATE INDEX `IDX_webhook_owner_id` ON `webhook` (`owner_id`); CREATE INDEX `IDX_action_variable_repo_id` ON `action_variable` (`repo_id`); CREATE INDEX `IDX_branch_is_deleted` ON `branch` (`is_deleted`); CREATE INDEX `IDX_branch_deleted_unix` ON `branch` (`deleted_unix`); CREATE INDEX `IDX_action_tasks_version_repo_id` ON `action_tasks_version` (`repo_id`); CREATE INDEX `IDX_action_schedule_repo_id` ON `action_schedule` (`repo_id`); CREATE INDEX `IDX_action_schedule_owner_id` ON `action_schedule` (`owner_id`); CREATE INDEX `IDX_action_schedule_spec_repo_id` ON `action_schedule_spec` (`repo_id`); CREATE INDEX `IDX_action_schedule_spec_schedule_id` ON `action_schedule_spec` (`schedule_id`); CREATE INDEX `IDX_action_schedule_spec_next` ON `action_schedule_spec` (`next`); CREATE INDEX `IDX_action_artifact_expired_unix` ON `action_artifact` (`expired_unix`); CREATE INDEX `IDX_issue_user_issue_id` ON `issue_user` (`issue_id`); CREATE INDEX `IDX_action_user_id` ON `action` (`user_id`); CREATE INDEX `IDX_mirror_repo_id` ON `mirror` (`repo_id`); CREATE INDEX `IDX_mirror_updated_unix` ON `mirror` (`updated_unix`); CREATE INDEX `IDX_mirror_next_update_unix` ON `mirror` (`next_update_unix`); CREATE INDEX `IDX_push_mirror_repo_id` ON `push_mirror` (`repo_id`); CREATE INDEX `IDX_push_mirror_last_update` ON `push_mirror` (`last_update`); CREATE INDEX `IDX_action_artifact_run_id` ON `action_artifact` (`run_id`); CREATE INDEX `IDX_action_artifact_repo_id` ON `action_artifact` (`repo_id`); CREATE INDEX `IDX_action_artifact_artifact_path` ON `action_artifact` (`artifact_path`); CREATE INDEX `IDX_action_artifact_artifact_name` ON `action_artifact` (`artifact_name`); CREATE INDEX `IDX_action_artifact_status` ON `action_artifact` (`status`); CREATE INDEX `IDX_action_artifact_updated_unix` ON `action_artifact` (`updated_unix`); CREATE INDEX `IDX_action_runner_last_online` ON `action_runner` (`last_online`); CREATE INDEX `IDX_action_runner_last_active` ON `action_runner` (`last_active`); CREATE INDEX `IDX_action_runner_owner_id` ON `action_runner` (`owner_id`); CREATE INDEX `IDX_action_runner_repo_id` ON `action_runner` (`repo_id`); CREATE INDEX `IDX_issue_user_uid` ON `issue_user` (`uid`); CREATE INDEX `IDX_label_repo_id` ON `label` (`repo_id`); CREATE INDEX `IDX_label_org_id` ON `label` (`org_id`); CREATE INDEX `IDX_label_created_unix` ON `label` (`created_unix`); CREATE INDEX `IDX_label_updated_unix` ON `label` (`updated_unix`); CREATE INDEX `IDX_action_comment_id` ON `action` (`comment_id`); CREATE INDEX `IDX_action_au_r_c_u_d` ON `action` (`act_user_id`,`repo_id`,`created_unix`,`user_id`,`is_deleted`); CREATE INDEX `IDX_action_r_u_d` ON `action` (`repo_id`,`user_id`,`is_deleted`); CREATE INDEX `IDX_action_c_u_d` ON `action` (`created_unix`,`user_id`,`is_deleted`); CREATE INDEX `IDX_auth_token_expires_unix` ON `auth_token` (`expires_unix`); CREATE INDEX `IDX_auth_token_user_id` ON `auth_token` (`user_id`); CREATE INDEX `IDX_pull_auto_merge_doer_id` ON `pull_auto_merge` (`doer_id`); CREATE INDEX `IDX_user_blocking_created_unix` ON `user_blocking` (`created_unix`); CREATE INDEX `IDX_attachment_comment_id` ON `attachment` (`comment_id`); CREATE INDEX `IDX_attachment_repo_id` ON `attachment` (`repo_id`); CREATE INDEX `IDX_attachment_issue_id` ON `attachment` (`issue_id`); CREATE INDEX `IDX_attachment_release_id` ON `attachment` (`release_id`); CREATE INDEX `IDX_attachment_uploader_id` ON `attachment` (`uploader_id`); CREATE INDEX `IDX_repository_name` ON `repository` (`name`); CREATE INDEX `IDX_repository_is_private` ON `repository` (`is_private`); CREATE INDEX `IDX_repository_is_mirror` ON `repository` (`is_mirror`); CREATE INDEX `IDX_repository_updated_unix` ON `repository` (`updated_unix`); CREATE INDEX `IDX_repository_is_empty` ON `repository` (`is_empty`); CREATE INDEX `IDX_repository_template_id` ON `repository` (`template_id`); CREATE INDEX `IDX_repository_original_service_type` ON `repository` (`original_service_type`); CREATE INDEX `IDX_repository_created_unix` ON `repository` (`created_unix`); CREATE INDEX `IDX_repository_is_fork` ON `repository` (`is_fork`); CREATE INDEX `IDX_repository_is_template` ON `repository` (`is_template`); CREATE INDEX `IDX_repository_owner_id` ON `repository` (`owner_id`); CREATE INDEX `IDX_repository_is_archived` ON `repository` (`is_archived`); CREATE INDEX `IDX_repository_lower_name` ON `repository` (`lower_name`); CREATE INDEX `IDX_repository_fork_id` ON `repository` (`fork_id`); CREATE INDEX `IDX_repo_unit_created_unix` ON `repo_unit` (`created_unix`); CREATE INDEX `IDX_repo_unit_s` ON `repo_unit` (`repo_id`,`type`); CREATE INDEX `IDX_action_run_workflow_id` ON `action_run` (`workflow_id`); CREATE INDEX `IDX_action_run_approved_by` ON `action_run` (`approved_by`); CREATE INDEX `IDX_action_run_status` ON `action_run` (`status`); CREATE INDEX `IDX_action_run_owner_id` ON `action_run` (`owner_id`); CREATE INDEX `IDX_action_run_ref` ON `action_run` (`ref`); CREATE INDEX `IDX_action_run_repo_id` ON `action_run` (`repo_id`); CREATE INDEX `IDX_action_run_index` ON `action_run` (`index`); CREATE INDEX `IDX_action_run_trigger_user_id` ON `action_run` (`trigger_user_id`); CREATE INDEX `IDX_project_issue_project_board_id` ON `project_issue` (`project_board_id`); CREATE INDEX `IDX_hook_task_hook_id` ON `hook_task` (`hook_id`); CREATE INDEX `IDX_commit_status_summary_repo_id` ON `commit_status_summary` (`repo_id`); CREATE INDEX `IDX_commit_status_summary_sha` ON `commit_status_summary` (`sha`); CREATE INDEX `IDX_action_task_stopped_log_expired` ON `action_task` (`stopped`,`log_expired`); CREATE INDEX `IDX_release_sha1` ON `release` (`sha1`); CREATE INDEX `IDX_repo_license_created_unix` ON `repo_license` (`created_unix`); CREATE INDEX `IDX_repo_license_updated_unix` ON `repo_license` (`updated_unix`); CREATE INDEX `IDX_action_c_u` ON `action` (`user_id`,`is_deleted`); CREATE INDEX `IDX_notification_u_s_uu` ON `notification` (`user_id`,`status`,`updated_unix`); CREATE INDEX `IDX_oauth2_application_uid` ON `oauth2_application` (`uid`); CREATE INDEX `IDX_oauth2_application_created_unix` ON `oauth2_application` (`created_unix`); CREATE INDEX `IDX_oauth2_application_updated_unix` ON `oauth2_application` (`updated_unix`); CREATE INDEX `IDX_release_publisher_id` ON `release` (`publisher_id`); CREATE INDEX `IDX_release_tag_name` ON `release` (`tag_name`); CREATE INDEX `IDX_release_original_author_id` ON `release` (`original_author_id`); CREATE INDEX `IDX_release_created_unix` ON `release` (`created_unix`); CREATE INDEX `IDX_release_repo_id` ON `release` (`repo_id`); CREATE INDEX `IDX_action_task_owner_id` ON `action_task` (`owner_id`); CREATE INDEX `IDX_action_task_updated` ON `action_task` (`updated`); CREATE INDEX `IDX_action_task_repo_id` ON `action_task` (`repo_id`); CREATE INDEX `IDX_action_task_token_last_eight` ON `action_task` (`token_last_eight`); CREATE INDEX `IDX_action_task_started` ON `action_task` (`started`); CREATE INDEX `IDX_action_task_runner_id` ON `action_task` (`runner_id`); CREATE INDEX `IDX_action_task_commit_sha` ON `action_task` (`commit_sha`); CREATE INDEX `IDX_action_task_status` ON `action_task` (`status`); CREATE INDEX `IDX_comment_ref_repo_id` ON `comment` (`ref_repo_id`); CREATE INDEX `IDX_comment_poster_id` ON `comment` (`poster_id`); CREATE INDEX `IDX_comment_issue_id` ON `comment` (`issue_id`); CREATE INDEX `IDX_comment_created_unix` ON `comment` (`created_unix`); CREATE INDEX `IDX_comment_ref_comment_id` ON `comment` (`ref_comment_id`); CREATE INDEX `IDX_comment_type` ON `comment` (`type`); CREATE INDEX `IDX_comment_dependent_issue_id` ON `comment` (`dependent_issue_id`); CREATE INDEX `IDX_comment_updated_unix` ON `comment` (`updated_unix`); CREATE INDEX `IDX_comment_review_id` ON `comment` (`review_id`); CREATE INDEX `IDX_comment_ref_issue_id` ON `comment` (`ref_issue_id`); CREATE INDEX `IDX_issue_deadline_unix` ON `issue` (`deadline_unix`); CREATE INDEX `IDX_issue_milestone_id` ON `issue` (`milestone_id`); CREATE INDEX `IDX_issue_closed_unix` ON `issue` (`closed_unix`); CREATE INDEX `IDX_issue_poster_id` ON `issue` (`poster_id`); CREATE INDEX `IDX_issue_is_closed` ON `issue` (`is_closed`); CREATE INDEX `IDX_issue_original_author_id` ON `issue` (`original_author_id`); CREATE INDEX `IDX_issue_updated_unix` ON `issue` (`updated_unix`); CREATE INDEX `IDX_issue_is_pull` ON `issue` (`is_pull`); CREATE INDEX `IDX_issue_created_unix` ON `issue` (`created_unix`); CREATE INDEX `IDX_issue_repo_id` ON `issue` (`repo_id`); PRAGMA writable_schema = off; COMMIT;