diff --git a/.ptp-sync-folder b/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/.ptp-sync-folder b/.ptp-sync/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/COMMIT_EDITMSG b/.ptp-sync/COMMIT_EDITMSG deleted file mode 100644 index 3d1e08cd..00000000 --- a/.ptp-sync/COMMIT_EDITMSG +++ /dev/null @@ -1 +0,0 @@ -Eclipse Automatic Commit diff --git a/.ptp-sync/HEAD b/.ptp-sync/HEAD deleted file mode 100644 index cb089cd8..00000000 --- a/.ptp-sync/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/.ptp-sync/ORIG_HEAD b/.ptp-sync/ORIG_HEAD deleted file mode 100644 index b8a1388d..00000000 --- a/.ptp-sync/ORIG_HEAD +++ /dev/null @@ -1 +0,0 @@ -2b373a75a8966b8c7a25149e0ebde2842bbcff7e diff --git a/.ptp-sync/config b/.ptp-sync/config deleted file mode 100644 index 62f36adb..00000000 --- a/.ptp-sync/config +++ /dev/null @@ -1,8 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = true - preloadindex = true -[user] - email = ptp-dev@eclipse.org - name = PTP diff --git a/.ptp-sync/description b/.ptp-sync/description deleted file mode 100644 index 498b267a..00000000 --- a/.ptp-sync/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/.ptp-sync/hooks/.ptp-sync-folder b/.ptp-sync/hooks/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/hooks/applypatch-msg.sample b/.ptp-sync/hooks/applypatch-msg.sample deleted file mode 100644 index a5d7b84a..00000000 --- a/.ptp-sync/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -: diff --git a/.ptp-sync/hooks/commit-msg.sample b/.ptp-sync/hooks/commit-msg.sample deleted file mode 100644 index b58d1184..00000000 --- a/.ptp-sync/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/.ptp-sync/hooks/fsmonitor-watchman.sample b/.ptp-sync/hooks/fsmonitor-watchman.sample deleted file mode 100644 index 14ed0aa4..00000000 --- a/.ptp-sync/hooks/fsmonitor-watchman.sample +++ /dev/null @@ -1,173 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use IPC::Open2; - -# An example hook script to integrate Watchman -# (https://facebook.github.io/watchman/) with git to speed up detecting -# new and modified files. -# -# The hook is passed a version (currently 2) and last update token -# formatted as a string and outputs to stdout a new update token and -# all files that have been modified since the update token. Paths must -# be relative to the root of the working tree and separated by a single NUL. -# -# To enable this hook, rename this file to "query-watchman" and set -# 'git config core.fsmonitor .git/hooks/query-watchman' -# -my ($version, $last_update_token) = @ARGV; - -# Uncomment for debugging -# print STDERR "$0 $version $last_update_token\n"; - -# Check the hook interface version -if ($version ne 2) { - die "Unsupported query-fsmonitor hook version '$version'.\n" . - "Falling back to scanning...\n"; -} - -my $git_work_tree = get_working_dir(); - -my $retry = 1; - -my $json_pkg; -eval { - require JSON::XS; - $json_pkg = "JSON::XS"; - 1; -} or do { - require JSON::PP; - $json_pkg = "JSON::PP"; -}; - -launch_watchman(); - -sub launch_watchman { - my $o = watchman_query(); - if (is_work_tree_watched($o)) { - output_result($o->{clock}, @{$o->{files}}); - } -} - -sub output_result { - my ($clockid, @files) = @_; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # binmode $fh, ":utf8"; - # print $fh "$clockid\n@files\n"; - # close $fh; - - binmode STDOUT, ":utf8"; - print $clockid; - print "\0"; - local $, = "\0"; - print @files; -} - -sub watchman_clock { - my $response = qx/watchman clock "$git_work_tree"/; - die "Failed to get clock id on '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - - return $json_pkg->new->utf8->decode($response); -} - -sub watchman_query { - my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') - or die "open2() failed: $!\n" . - "Falling back to scanning...\n"; - - # In the query expression below we're asking for names of files that - # changed since $last_update_token but not from the .git folder. - # - # To accomplish this, we're using the "since" generator to use the - # recency index to select candidate nodes and "fields" to limit the - # output to file names only. Then we're using the "expression" term to - # further constrain the results. - if (substr($last_update_token, 0, 1) eq "c") { - $last_update_token = "\"$last_update_token\""; - } - my $query = <<" END"; - ["query", "$git_work_tree", { - "since": $last_update_token, - "fields": ["name"], - "expression": ["not", ["dirname", ".git"]] - }] - END - - # Uncomment for debugging the watchman query - # open (my $fh, ">", ".git/watchman-query.json"); - # print $fh $query; - # close $fh; - - print CHLD_IN $query; - close CHLD_IN; - my $response = do {local $/; }; - - # Uncomment for debugging the watch response - # open ($fh, ">", ".git/watchman-response.json"); - # print $fh $response; - # close $fh; - - die "Watchman: command returned no output.\n" . - "Falling back to scanning...\n" if $response eq ""; - die "Watchman: command returned invalid output: $response\n" . - "Falling back to scanning...\n" unless $response =~ /^\{/; - - return $json_pkg->new->utf8->decode($response); -} - -sub is_work_tree_watched { - my ($output) = @_; - my $error = $output->{error}; - if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { - $retry--; - my $response = qx/watchman watch "$git_work_tree"/; - die "Failed to make watchman watch '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - $output = $json_pkg->new->utf8->decode($response); - $error = $output->{error}; - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # close $fh; - - # Watchman will always return all files on the first query so - # return the fast "everything is dirty" flag to git and do the - # Watchman query just to get it over with now so we won't pay - # the cost in git to look up each individual file. - my $o = watchman_clock(); - $error = $output->{error}; - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - output_result($o->{clock}, ("/")); - $last_update_token = $o->{clock}; - - eval { launch_watchman() }; - return 0; - } - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - return 1; -} - -sub get_working_dir { - my $working_dir; - if ($^O =~ 'msys' || $^O =~ 'cygwin') { - $working_dir = Win32::GetCwd(); - $working_dir =~ tr/\\/\//; - } else { - require Cwd; - $working_dir = Cwd::cwd(); - } - - return $working_dir; -} diff --git a/.ptp-sync/hooks/post-update.sample b/.ptp-sync/hooks/post-update.sample deleted file mode 100644 index ec17ec19..00000000 --- a/.ptp-sync/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/.ptp-sync/hooks/pre-applypatch.sample b/.ptp-sync/hooks/pre-applypatch.sample deleted file mode 100644 index 4142082b..00000000 --- a/.ptp-sync/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -: diff --git a/.ptp-sync/hooks/pre-commit.sample b/.ptp-sync/hooks/pre-commit.sample deleted file mode 100644 index e144712c..00000000 --- a/.ptp-sync/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=$(git hash-object -t tree /dev/null) -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --type=bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/.ptp-sync/hooks/pre-merge-commit.sample b/.ptp-sync/hooks/pre-merge-commit.sample deleted file mode 100644 index 399eab19..00000000 --- a/.ptp-sync/hooks/pre-merge-commit.sample +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git merge" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message to -# stderr if it wants to stop the merge commit. -# -# To enable this hook, rename this file to "pre-merge-commit". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" -: diff --git a/.ptp-sync/hooks/pre-push.sample b/.ptp-sync/hooks/pre-push.sample deleted file mode 100644 index 4ce688d3..00000000 --- a/.ptp-sync/hooks/pre-push.sample +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/.ptp-sync/hooks/pre-rebase.sample b/.ptp-sync/hooks/pre-rebase.sample deleted file mode 100644 index 6cbef5c3..00000000 --- a/.ptp-sync/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up to date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -<<\DOC_END - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". - -DOC_END diff --git a/.ptp-sync/hooks/pre-receive.sample b/.ptp-sync/hooks/pre-receive.sample deleted file mode 100644 index a1fd29ec..00000000 --- a/.ptp-sync/hooks/pre-receive.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to make use of push options. -# The example simply echoes all push options that start with 'echoback=' -# and rejects all pushes when the "reject" push option is used. -# -# To enable this hook, rename this file to "pre-receive". - -if test -n "$GIT_PUSH_OPTION_COUNT" -then - i=0 - while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" - do - eval "value=\$GIT_PUSH_OPTION_$i" - case "$value" in - echoback=*) - echo "echo from the pre-receive-hook: ${value#*=}" >&2 - ;; - reject) - exit 1 - esac - i=$((i + 1)) - done -fi diff --git a/.ptp-sync/hooks/prepare-commit-msg.sample b/.ptp-sync/hooks/prepare-commit-msg.sample deleted file mode 100644 index 10fa14c5..00000000 --- a/.ptp-sync/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first one removes the -# "# Please enter the commit message..." help message. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -COMMIT_MSG_FILE=$1 -COMMIT_SOURCE=$2 -SHA1=$3 - -/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" - -# case "$COMMIT_SOURCE,$SHA1" in -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; -# *) ;; -# esac - -# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" -# if test -z "$COMMIT_SOURCE" -# then -# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" -# fi diff --git a/.ptp-sync/hooks/push-to-checkout.sample b/.ptp-sync/hooks/push-to-checkout.sample deleted file mode 100644 index af5a0c00..00000000 --- a/.ptp-sync/hooks/push-to-checkout.sample +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# An example hook script to update a checked-out tree on a git push. -# -# This hook is invoked by git-receive-pack(1) when it reacts to git -# push and updates reference(s) in its repository, and when the push -# tries to update the branch that is currently checked out and the -# receive.denyCurrentBranch configuration variable is set to -# updateInstead. -# -# By default, such a push is refused if the working tree and the index -# of the remote repository has any difference from the currently -# checked out commit; when both the working tree and the index match -# the current commit, they are updated to match the newly pushed tip -# of the branch. This hook is to be used to override the default -# behaviour; however the code below reimplements the default behaviour -# as a starting point for convenient modification. -# -# The hook receives the commit with which the tip of the current -# branch is going to be updated: -commit=$1 - -# It can exit with a non-zero status to refuse the push (when it does -# so, it must not modify the index or the working tree). -die () { - echo >&2 "$*" - exit 1 -} - -# Or it can make any necessary changes to the working tree and to the -# index to bring them to the desired state when the tip of the current -# branch is updated to the new commit, and exit with a zero status. -# -# For example, the hook can simply run git read-tree -u -m HEAD "$1" -# in order to emulate git fetch that is run in the reverse direction -# with git push, as the two-tree form of git read-tree -u -m is -# essentially the same as git switch or git checkout that switches -# branches while keeping the local changes in the working tree that do -# not interfere with the difference between the branches. - -# The below is a more-or-less exact translation to shell of the C code -# for the default behaviour for git's push-to-checkout hook defined in -# the push_to_deploy() function in builtin/receive-pack.c. -# -# Note that the hook will be executed from the repository directory, -# not from the working tree, so if you want to perform operations on -# the working tree, you will have to adapt your code accordingly, e.g. -# by adding "cd .." or using relative paths. - -if ! git update-index -q --ignore-submodules --refresh -then - die "Up-to-date check failed" -fi - -if ! git diff-files --quiet --ignore-submodules -- -then - die "Working directory has unstaged changes" -fi - -# This is a rough translation of: -# -# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX -if git cat-file -e HEAD 2>/dev/null -then - head=HEAD -else - head=$(git hash-object -t tree --stdin &2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --type=bool hooks.allowunannotated) -allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) -denycreatebranch=$(git config --type=bool hooks.denycreatebranch) -allowdeletetag=$(git config --type=bool hooks.allowdeletetag) -allowmodifytag=$(git config --type=bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero=$(git hash-object --stdin &2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/.ptp-sync/index b/.ptp-sync/index deleted file mode 100644 index d56481e5..00000000 Binary files a/.ptp-sync/index and /dev/null differ diff --git a/.ptp-sync/info/.ptp-sync-folder b/.ptp-sync/info/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/info/exclude b/.ptp-sync/info/exclude deleted file mode 100644 index 2175ba7c..00000000 --- a/.ptp-sync/info/exclude +++ /dev/null @@ -1,11 +0,0 @@ -/.project -/.cproject -/.buildpath -/.settings/ -coredir.[0-9]*/ -core -!core/ -core.[0-9]* -!core.[0-9]*/ -CVS/ -/.ptp-sync/ diff --git a/.ptp-sync/logs/.ptp-sync-folder b/.ptp-sync/logs/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/logs/HEAD b/.ptp-sync/logs/HEAD deleted file mode 100644 index c63c5549..00000000 --- a/.ptp-sync/logs/HEAD +++ /dev/null @@ -1,4 +0,0 @@ -0000000000000000000000000000000000000000 4c1fb25ab9ef07279e97e2d7dc237e8e7af5159f PTP 1706812896 +0000 commit (initial): Eclipse Automatic Commit -4c1fb25ab9ef07279e97e2d7dc237e8e7af5159f 4834a4ecbe83d7ca7fe353e031df13738189b53a PTP 1706812896 +0000 commit: Eclipse Automatic Commit -4834a4ecbe83d7ca7fe353e031df13738189b53a 2b373a75a8966b8c7a25149e0ebde2842bbcff7e PTP 1706812896 +0000 commit: Eclipse Automatic Commit -2b373a75a8966b8c7a25149e0ebde2842bbcff7e 06effbd226fee46bef928d9cf76854a18cd1d752 PTP 1706812900 +0000 merge ptp-push: Fast-forward diff --git a/.ptp-sync/logs/refs/.ptp-sync-folder b/.ptp-sync/logs/refs/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/logs/refs/heads/.ptp-sync-folder b/.ptp-sync/logs/refs/heads/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/logs/refs/heads/master b/.ptp-sync/logs/refs/heads/master deleted file mode 100644 index c63c5549..00000000 --- a/.ptp-sync/logs/refs/heads/master +++ /dev/null @@ -1,4 +0,0 @@ -0000000000000000000000000000000000000000 4c1fb25ab9ef07279e97e2d7dc237e8e7af5159f PTP 1706812896 +0000 commit (initial): Eclipse Automatic Commit -4c1fb25ab9ef07279e97e2d7dc237e8e7af5159f 4834a4ecbe83d7ca7fe353e031df13738189b53a PTP 1706812896 +0000 commit: Eclipse Automatic Commit -4834a4ecbe83d7ca7fe353e031df13738189b53a 2b373a75a8966b8c7a25149e0ebde2842bbcff7e PTP 1706812896 +0000 commit: Eclipse Automatic Commit -2b373a75a8966b8c7a25149e0ebde2842bbcff7e 06effbd226fee46bef928d9cf76854a18cd1d752 PTP 1706812900 +0000 merge ptp-push: Fast-forward diff --git a/.ptp-sync/objects/.ptp-sync-folder b/.ptp-sync/objects/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/00/.ptp-sync-folder b/.ptp-sync/objects/00/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/00/10da16fbdab7a027c24180b02ae38db112c3f4 b/.ptp-sync/objects/00/10da16fbdab7a027c24180b02ae38db112c3f4 deleted file mode 100644 index 6dba82e4..00000000 Binary files a/.ptp-sync/objects/00/10da16fbdab7a027c24180b02ae38db112c3f4 and /dev/null differ diff --git a/.ptp-sync/objects/00/60a1ce712b43433249c7951a5c6895bf711dbd b/.ptp-sync/objects/00/60a1ce712b43433249c7951a5c6895bf711dbd deleted file mode 100644 index a0df8213..00000000 --- a/.ptp-sync/objects/00/60a1ce712b43433249c7951a5c6895bf711dbd +++ /dev/null @@ -1,2 +0,0 @@ -xS]o0s~yDi_k -AZ$Nbؑm@Hu^sK=鷳OI),r!9fAx:aX56EHexVn ?F/23a#jPT:3Pl2nJMe}eyN7LbKb R,#>bKaxĽ0i&bVpA+n,u_cG؁6^s^=n C/PR$2rRbα<_ʎ/Cs?yMD8삒]镯JTdjrz#AA?|ao2(Fq' 1Ѥ&'Gsf># ig4RKd86bER]{eˤVEcs;$Ciׁ%yU[B-]a; %|]ZdSӔlJ$1 hoj.XyoΧ{[hAنȎEpvrvht?tS]]7Lq ZvKWhvɈ& [Qi4äA?:ύA\g@wJ%VpuG/i j.uh@'*r?"h́p6V<l9_ ^/_ٛp \ No newline at end of file diff --git a/.ptp-sync/objects/00/d1ac6af318bdace52171a772828d0dada1495e b/.ptp-sync/objects/00/d1ac6af318bdace52171a772828d0dada1495e deleted file mode 100644 index eb02c864..00000000 Binary files a/.ptp-sync/objects/00/d1ac6af318bdace52171a772828d0dada1495e and /dev/null differ diff --git a/.ptp-sync/objects/00/ee5dd28a2567f264f45efadd828f718b7f4a7b b/.ptp-sync/objects/00/ee5dd28a2567f264f45efadd828f718b7f4a7b deleted file mode 100644 index d74727fc..00000000 --- a/.ptp-sync/objects/00/ee5dd28a2567f264f45efadd828f718b7f4a7b +++ /dev/null @@ -1,2 +0,0 @@ -xŎ -P Fܥ>@BQd rŌ8tT!I8UF]RJ "03r2X#DaI!#'Taṿpʲ*x>pꎛn?/2SM<$,hfx~t \ No newline at end of file diff --git a/.ptp-sync/objects/02/.ptp-sync-folder b/.ptp-sync/objects/02/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/02/703f58c1ee7a9455e5724731aa3d53b6b6c326 b/.ptp-sync/objects/02/703f58c1ee7a9455e5724731aa3d53b6b6c326 deleted file mode 100644 index b8e87bfe..00000000 Binary files a/.ptp-sync/objects/02/703f58c1ee7a9455e5724731aa3d53b6b6c326 and /dev/null differ diff --git a/.ptp-sync/objects/02/c3a9775d3ff0e53d1e9c9123e77754a1d1c9e2 b/.ptp-sync/objects/02/c3a9775d3ff0e53d1e9c9123e77754a1d1c9e2 deleted file mode 100644 index 45c589d0..00000000 Binary files a/.ptp-sync/objects/02/c3a9775d3ff0e53d1e9c9123e77754a1d1c9e2 and /dev/null differ diff --git a/.ptp-sync/objects/02/e975c67775468dc99adc243fbb1ff8fce5989b b/.ptp-sync/objects/02/e975c67775468dc99adc243fbb1ff8fce5989b deleted file mode 100644 index d82b0065..00000000 Binary files a/.ptp-sync/objects/02/e975c67775468dc99adc243fbb1ff8fce5989b and /dev/null differ diff --git a/.ptp-sync/objects/02/eef891037b03e34e6f425fd4ba74d8c19c5a93 b/.ptp-sync/objects/02/eef891037b03e34e6f425fd4ba74d8c19c5a93 deleted file mode 100644 index b41b9145..00000000 Binary files a/.ptp-sync/objects/02/eef891037b03e34e6f425fd4ba74d8c19c5a93 and /dev/null differ diff --git a/.ptp-sync/objects/04/.ptp-sync-folder b/.ptp-sync/objects/04/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/04/afec952f53f17a14f2193ad82a23c5a5bb4ce8 b/.ptp-sync/objects/04/afec952f53f17a14f2193ad82a23c5a5bb4ce8 deleted file mode 100644 index fec9a49f..00000000 Binary files a/.ptp-sync/objects/04/afec952f53f17a14f2193ad82a23c5a5bb4ce8 and /dev/null differ diff --git a/.ptp-sync/objects/06/.ptp-sync-folder b/.ptp-sync/objects/06/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/06/2122b2f954699ad2d4c83aa7c1d224ab4f14a1 b/.ptp-sync/objects/06/2122b2f954699ad2d4c83aa7c1d224ab4f14a1 deleted file mode 100644 index 2fa0b88d..00000000 Binary files a/.ptp-sync/objects/06/2122b2f954699ad2d4c83aa7c1d224ab4f14a1 and /dev/null differ diff --git a/.ptp-sync/objects/06/6869a23f7da36e2e3635b872ddea547fab18a9 b/.ptp-sync/objects/06/6869a23f7da36e2e3635b872ddea547fab18a9 deleted file mode 100644 index 818f0f10..00000000 Binary files a/.ptp-sync/objects/06/6869a23f7da36e2e3635b872ddea547fab18a9 and /dev/null differ diff --git a/.ptp-sync/objects/06/effbd226fee46bef928d9cf76854a18cd1d752 b/.ptp-sync/objects/06/effbd226fee46bef928d9cf76854a18cd1d752 deleted file mode 100644 index 4ae90d5d..00000000 --- a/.ptp-sync/objects/06/effbd226fee46bef928d9cf76854a18cd1d752 +++ /dev/null @@ -1,2 +0,0 @@ -xM -@ F]Dq$ik(^dǡ*X ќ!0'\iQnل6rX,.%.ɷ.vʽ=emU 3\Hz{¶Fq.c*wa Yusx*^u=M \ No newline at end of file diff --git a/.ptp-sync/objects/06/f613ef49d04353d17dec1249bdab958ec0467c b/.ptp-sync/objects/06/f613ef49d04353d17dec1249bdab958ec0467c deleted file mode 100644 index f56191d3..00000000 Binary files a/.ptp-sync/objects/06/f613ef49d04353d17dec1249bdab958ec0467c and /dev/null differ diff --git a/.ptp-sync/objects/06/fb0783dc53c77d657d6860173993e50a68fd49 b/.ptp-sync/objects/06/fb0783dc53c77d657d6860173993e50a68fd49 deleted file mode 100644 index a3f56a46..00000000 Binary files a/.ptp-sync/objects/06/fb0783dc53c77d657d6860173993e50a68fd49 and /dev/null differ diff --git a/.ptp-sync/objects/08/.ptp-sync-folder b/.ptp-sync/objects/08/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/08/66b19109a759e46384321bdb7acfb5e43f6cd3 b/.ptp-sync/objects/08/66b19109a759e46384321bdb7acfb5e43f6cd3 deleted file mode 100644 index dcb1c215..00000000 Binary files a/.ptp-sync/objects/08/66b19109a759e46384321bdb7acfb5e43f6cd3 and /dev/null differ diff --git a/.ptp-sync/objects/0a/.ptp-sync-folder b/.ptp-sync/objects/0a/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/0a/e4b39066efba265f913c8c2b3554553e6b7091 b/.ptp-sync/objects/0a/e4b39066efba265f913c8c2b3554553e6b7091 deleted file mode 100644 index 83dcaba6..00000000 Binary files a/.ptp-sync/objects/0a/e4b39066efba265f913c8c2b3554553e6b7091 and /dev/null differ diff --git a/.ptp-sync/objects/0b/.ptp-sync-folder b/.ptp-sync/objects/0b/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/0b/f75b217dc69abaa050e4ccc87a13206005d076 b/.ptp-sync/objects/0b/f75b217dc69abaa050e4ccc87a13206005d076 deleted file mode 100644 index d8ecc385..00000000 --- a/.ptp-sync/objects/0b/f75b217dc69abaa050e4ccc87a13206005d076 +++ /dev/null @@ -1 +0,0 @@ -xuSMn`S:"JXmuY)zꢉRAwh.M, |>muͼoκ}ѻ85r|ηS{Ch+&uPf5lnG֤i Sk>KP6ܶ{;;{V/% \ No newline at end of file diff --git a/.ptp-sync/objects/0c/.ptp-sync-folder b/.ptp-sync/objects/0c/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/0c/9e369b7d7b016645588af4fada6aabf6f67444 b/.ptp-sync/objects/0c/9e369b7d7b016645588af4fada6aabf6f67444 deleted file mode 100644 index 5899caa2..00000000 --- a/.ptp-sync/objects/0c/9e369b7d7b016645588af4fada6aabf6f67444 +++ /dev/null @@ -1,2 +0,0 @@ -x-INQEaǵhؔ1nF$^R0-^;^`+8J47,ǹ6K]F+얐*gY%AJ }%s&t6:(}r T M|~+&_\cA+KQ& Kd{;L%;V1W)$'F:8ڻPu`|?Df0CAST4nBvoڜh7Y=rOx˼ \ No newline at end of file diff --git a/.ptp-sync/objects/11/972260a2665f4c9d69e328694c1df72edd1656 b/.ptp-sync/objects/11/972260a2665f4c9d69e328694c1df72edd1656 deleted file mode 100644 index 86dbe3dd..00000000 Binary files a/.ptp-sync/objects/11/972260a2665f4c9d69e328694c1df72edd1656 and /dev/null differ diff --git a/.ptp-sync/objects/11/c4c4616f1a84b75d3781d80acf1a7b4c7e424f b/.ptp-sync/objects/11/c4c4616f1a84b75d3781d80acf1a7b4c7e424f deleted file mode 100644 index f7742d67..00000000 Binary files a/.ptp-sync/objects/11/c4c4616f1a84b75d3781d80acf1a7b4c7e424f and /dev/null differ diff --git a/.ptp-sync/objects/11/fd63411e43bf95a7b444d5596cb2785b09d3a2 b/.ptp-sync/objects/11/fd63411e43bf95a7b444d5596cb2785b09d3a2 deleted file mode 100644 index 0d6eb063..00000000 Binary files a/.ptp-sync/objects/11/fd63411e43bf95a7b444d5596cb2785b09d3a2 and /dev/null differ diff --git a/.ptp-sync/objects/12/.ptp-sync-folder b/.ptp-sync/objects/12/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/12/6262eaa015c961b691970f7a45498b10541e76 b/.ptp-sync/objects/12/6262eaa015c961b691970f7a45498b10541e76 deleted file mode 100644 index d003d860..00000000 Binary files a/.ptp-sync/objects/12/6262eaa015c961b691970f7a45498b10541e76 and /dev/null differ diff --git a/.ptp-sync/objects/12/e07d17694cdbddaf1b53dac6ee91c79665827b b/.ptp-sync/objects/12/e07d17694cdbddaf1b53dac6ee91c79665827b deleted file mode 100644 index cd3bffab..00000000 Binary files a/.ptp-sync/objects/12/e07d17694cdbddaf1b53dac6ee91c79665827b and /dev/null differ diff --git a/.ptp-sync/objects/13/.ptp-sync-folder b/.ptp-sync/objects/13/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/13/a997c170452d3257979cf0fce95a13e436dfa3 b/.ptp-sync/objects/13/a997c170452d3257979cf0fce95a13e436dfa3 deleted file mode 100644 index 75e37759..00000000 Binary files a/.ptp-sync/objects/13/a997c170452d3257979cf0fce95a13e436dfa3 and /dev/null differ diff --git a/.ptp-sync/objects/13/bcbeab6c9fc68334224ed90f8884a44837ff04 b/.ptp-sync/objects/13/bcbeab6c9fc68334224ed90f8884a44837ff04 deleted file mode 100644 index 429ac7c9..00000000 Binary files a/.ptp-sync/objects/13/bcbeab6c9fc68334224ed90f8884a44837ff04 and /dev/null differ diff --git a/.ptp-sync/objects/13/bfda65f8c97222a9cd8f31ab2d47f78047731d b/.ptp-sync/objects/13/bfda65f8c97222a9cd8f31ab2d47f78047731d deleted file mode 100644 index 27797779..00000000 Binary files a/.ptp-sync/objects/13/bfda65f8c97222a9cd8f31ab2d47f78047731d and /dev/null differ diff --git a/.ptp-sync/objects/13/e97a21f3b3cf82fa9d16e9a2fb0b52e778e21e b/.ptp-sync/objects/13/e97a21f3b3cf82fa9d16e9a2fb0b52e778e21e deleted file mode 100644 index 86038912..00000000 Binary files a/.ptp-sync/objects/13/e97a21f3b3cf82fa9d16e9a2fb0b52e778e21e and /dev/null differ diff --git a/.ptp-sync/objects/14/.ptp-sync-folder b/.ptp-sync/objects/14/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/14/8dd037ee3e07876fc39fd8d9e51d0c68d57d33 b/.ptp-sync/objects/14/8dd037ee3e07876fc39fd8d9e51d0c68d57d33 deleted file mode 100644 index 1bbe4e22..00000000 Binary files a/.ptp-sync/objects/14/8dd037ee3e07876fc39fd8d9e51d0c68d57d33 and /dev/null differ diff --git a/.ptp-sync/objects/14/cb14f70d436f9088004ced17d55f0b058b151c b/.ptp-sync/objects/14/cb14f70d436f9088004ced17d55f0b058b151c deleted file mode 100644 index e1faec04..00000000 Binary files a/.ptp-sync/objects/14/cb14f70d436f9088004ced17d55f0b058b151c and /dev/null differ diff --git a/.ptp-sync/objects/16/.ptp-sync-folder b/.ptp-sync/objects/16/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/16/e6e4632713f8235a6dec4ef671f0fda8a8a59d b/.ptp-sync/objects/16/e6e4632713f8235a6dec4ef671f0fda8a8a59d deleted file mode 100644 index f78b313c..00000000 Binary files a/.ptp-sync/objects/16/e6e4632713f8235a6dec4ef671f0fda8a8a59d and /dev/null differ diff --git a/.ptp-sync/objects/17/.ptp-sync-folder b/.ptp-sync/objects/17/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/17/83837c2250c59346bdd14174494e360d502fe2 b/.ptp-sync/objects/17/83837c2250c59346bdd14174494e360d502fe2 deleted file mode 100644 index 59c9e913..00000000 Binary files a/.ptp-sync/objects/17/83837c2250c59346bdd14174494e360d502fe2 and /dev/null differ diff --git a/.ptp-sync/objects/17/a42bd5f8f097265ef14f4ab38e65a89e3c9231 b/.ptp-sync/objects/17/a42bd5f8f097265ef14f4ab38e65a89e3c9231 deleted file mode 100644 index 943454cd..00000000 --- a/.ptp-sync/objects/17/a42bd5f8f097265ef14f4ab38e65a89e3c9231 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU04b040031Q+()-KMII-bx6M9{wk+qIODڤ҂ʂԢ̲̒lbۛ%[lcx}=+qQ\ZPM:pG/G%o&0<*+J-./J%lwL;f:87Ԛm@D#6Y| \ No newline at end of file diff --git a/.ptp-sync/objects/17/b7b23b1690fc1c40affa994e22b82d33204fb3 b/.ptp-sync/objects/17/b7b23b1690fc1c40affa994e22b82d33204fb3 deleted file mode 100644 index e247cebf..00000000 Binary files a/.ptp-sync/objects/17/b7b23b1690fc1c40affa994e22b82d33204fb3 and /dev/null differ diff --git a/.ptp-sync/objects/18/.ptp-sync-folder b/.ptp-sync/objects/18/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/18/3b68a534de6b4782906927ddf049d8f2842111 b/.ptp-sync/objects/18/3b68a534de6b4782906927ddf049d8f2842111 deleted file mode 100644 index a2521839..00000000 Binary files a/.ptp-sync/objects/18/3b68a534de6b4782906927ddf049d8f2842111 and /dev/null differ diff --git a/.ptp-sync/objects/18/dbd397143fa253d7268c661d9d167133f07ba8 b/.ptp-sync/objects/18/dbd397143fa253d7268c661d9d167133f07ba8 deleted file mode 100644 index e265101d..00000000 Binary files a/.ptp-sync/objects/18/dbd397143fa253d7268c661d9d167133f07ba8 and /dev/null differ diff --git a/.ptp-sync/objects/1a/.ptp-sync-folder b/.ptp-sync/objects/1a/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/1a/1091e11bd7c91f621abecbfe65786f2bd3183e b/.ptp-sync/objects/1a/1091e11bd7c91f621abecbfe65786f2bd3183e deleted file mode 100644 index a6ff2024..00000000 Binary files a/.ptp-sync/objects/1a/1091e11bd7c91f621abecbfe65786f2bd3183e and /dev/null differ diff --git a/.ptp-sync/objects/1a/633e8f000738936361ef2ef89bab4cdc668cb8 b/.ptp-sync/objects/1a/633e8f000738936361ef2ef89bab4cdc668cb8 deleted file mode 100644 index 4c5d3063..00000000 Binary files a/.ptp-sync/objects/1a/633e8f000738936361ef2ef89bab4cdc668cb8 and /dev/null differ diff --git a/.ptp-sync/objects/1a/bc79e34961755d363854db5ded3e1217d904ed b/.ptp-sync/objects/1a/bc79e34961755d363854db5ded3e1217d904ed deleted file mode 100644 index 9873405c..00000000 Binary files a/.ptp-sync/objects/1a/bc79e34961755d363854db5ded3e1217d904ed and /dev/null differ diff --git a/.ptp-sync/objects/1a/e318c86f6035b62966c0f927dde731c1fc91ea b/.ptp-sync/objects/1a/e318c86f6035b62966c0f927dde731c1fc91ea deleted file mode 100644 index 06ab4531..00000000 --- a/.ptp-sync/objects/1a/e318c86f6035b62966c0f927dde731c1fc91ea +++ /dev/null @@ -1,2 +0,0 @@ -x-NQD]WC !$潤aZd0PM%;#84kw/\B$L˕ D"Aea#6G*8f 8ה9UPм KkGx0].;4 Li? Rǟ-ZҞpFT|G[K#W0Vt2HSXXF;LR%P QjّY>!oaAbJ;xp䥤~jEEGr>]'_ӫc+؛+ u1JO۔ -*kF2j׵\4BHn3=!Lݠ>m{>E겿^GQ977ԜڏW劉(KUBmj~P`3d|Jӱ E:h$|j57 3ͫ[{O畝%t r0Nl$Z9脢(a ^}NCָ;qԊ`;ȗ$B#U);"%Abm=t6m웝g޴qZHiqP,l2+"qp9uu8} \ No newline at end of file diff --git a/.ptp-sync/objects/4c/388587f09eddb04d3d1a59c4672ce9638c453b b/.ptp-sync/objects/4c/388587f09eddb04d3d1a59c4672ce9638c453b deleted file mode 100644 index 37921daa..00000000 Binary files a/.ptp-sync/objects/4c/388587f09eddb04d3d1a59c4672ce9638c453b and /dev/null differ diff --git a/.ptp-sync/objects/4c/59b0fc032b2ae237dbc0227ef5490cd06980f9 b/.ptp-sync/objects/4c/59b0fc032b2ae237dbc0227ef5490cd06980f9 deleted file mode 100644 index f39a3b20..00000000 Binary files a/.ptp-sync/objects/4c/59b0fc032b2ae237dbc0227ef5490cd06980f9 and /dev/null differ diff --git a/.ptp-sync/objects/4c/702f72d9815c3a708172886e5fe35a495787a0 b/.ptp-sync/objects/4c/702f72d9815c3a708172886e5fe35a495787a0 deleted file mode 100644 index 8637e0fd..00000000 Binary files a/.ptp-sync/objects/4c/702f72d9815c3a708172886e5fe35a495787a0 and /dev/null differ diff --git a/.ptp-sync/objects/4d/.ptp-sync-folder b/.ptp-sync/objects/4d/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/4d/5db4e76299cc80052458ec509299078c75290e b/.ptp-sync/objects/4d/5db4e76299cc80052458ec509299078c75290e deleted file mode 100644 index d67712e6..00000000 Binary files a/.ptp-sync/objects/4d/5db4e76299cc80052458ec509299078c75290e and /dev/null differ diff --git a/.ptp-sync/objects/4e/.ptp-sync-folder b/.ptp-sync/objects/4e/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/4e/6c1cf7039991080a007949d312f9b49219eb78 b/.ptp-sync/objects/4e/6c1cf7039991080a007949d312f9b49219eb78 deleted file mode 100644 index 8ea5a75d..00000000 Binary files a/.ptp-sync/objects/4e/6c1cf7039991080a007949d312f9b49219eb78 and /dev/null differ diff --git a/.ptp-sync/objects/4f/.ptp-sync-folder b/.ptp-sync/objects/4f/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/4f/e20b4cf1c990b99599e743708a9fd360a60500 b/.ptp-sync/objects/4f/e20b4cf1c990b99599e743708a9fd360a60500 deleted file mode 100644 index f7ddde6f..00000000 Binary files a/.ptp-sync/objects/4f/e20b4cf1c990b99599e743708a9fd360a60500 and /dev/null differ diff --git a/.ptp-sync/objects/50/.ptp-sync-folder b/.ptp-sync/objects/50/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/50/b1fd83ef0093703b26127a9d8a16dd94d322c7 b/.ptp-sync/objects/50/b1fd83ef0093703b26127a9d8a16dd94d322c7 deleted file mode 100644 index b6bcba96..00000000 Binary files a/.ptp-sync/objects/50/b1fd83ef0093703b26127a9d8a16dd94d322c7 and /dev/null differ diff --git a/.ptp-sync/objects/50/f68d0b5f43074421371cd110a3cb143ac7695f b/.ptp-sync/objects/50/f68d0b5f43074421371cd110a3cb143ac7695f deleted file mode 100644 index d5933680..00000000 Binary files a/.ptp-sync/objects/50/f68d0b5f43074421371cd110a3cb143ac7695f and /dev/null differ diff --git a/.ptp-sync/objects/52/.ptp-sync-folder b/.ptp-sync/objects/52/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/52/4849cffd94fa353b13260b5c753a0c41862fdc b/.ptp-sync/objects/52/4849cffd94fa353b13260b5c753a0c41862fdc deleted file mode 100644 index 8c8fb9f9..00000000 --- a/.ptp-sync/objects/52/4849cffd94fa353b13260b5c753a0c41862fdc +++ /dev/null @@ -1,3 +0,0 @@ -x-Ja* 6 b> -Oll}RoBWueRy]]69F6a=Xo \ No newline at end of file diff --git a/.ptp-sync/objects/52/c4fe5f21b937ad8e0ddec3a0bbec355723cc69 b/.ptp-sync/objects/52/c4fe5f21b937ad8e0ddec3a0bbec355723cc69 deleted file mode 100644 index dceff4b5..00000000 Binary files a/.ptp-sync/objects/52/c4fe5f21b937ad8e0ddec3a0bbec355723cc69 and /dev/null differ diff --git a/.ptp-sync/objects/53/.ptp-sync-folder b/.ptp-sync/objects/53/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/53/c8694099b8a569404354cfee95e3b9657c52b6 b/.ptp-sync/objects/53/c8694099b8a569404354cfee95e3b9657c52b6 deleted file mode 100644 index c606ff3f..00000000 Binary files a/.ptp-sync/objects/53/c8694099b8a569404354cfee95e3b9657c52b6 and /dev/null differ diff --git a/.ptp-sync/objects/55/.ptp-sync-folder b/.ptp-sync/objects/55/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/55/aaf60742684355950b2956b8580ccc3f43ae46 b/.ptp-sync/objects/55/aaf60742684355950b2956b8580ccc3f43ae46 deleted file mode 100644 index 2fc33625..00000000 Binary files a/.ptp-sync/objects/55/aaf60742684355950b2956b8580ccc3f43ae46 and /dev/null differ diff --git a/.ptp-sync/objects/56/.ptp-sync-folder b/.ptp-sync/objects/56/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/56/7dce204ac0147449c97a9bec3c473d3ea90fb5 b/.ptp-sync/objects/56/7dce204ac0147449c97a9bec3c473d3ea90fb5 deleted file mode 100644 index 45c687ce..00000000 Binary files a/.ptp-sync/objects/56/7dce204ac0147449c97a9bec3c473d3ea90fb5 and /dev/null differ diff --git a/.ptp-sync/objects/57/.ptp-sync-folder b/.ptp-sync/objects/57/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/57/7a3495ecb9a32f96bac643aab6e739674ef1c2 b/.ptp-sync/objects/57/7a3495ecb9a32f96bac643aab6e739674ef1c2 deleted file mode 100644 index 645ca330..00000000 Binary files a/.ptp-sync/objects/57/7a3495ecb9a32f96bac643aab6e739674ef1c2 and /dev/null differ diff --git a/.ptp-sync/objects/58/.ptp-sync-folder b/.ptp-sync/objects/58/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/58/6632dd41a5506861f4c8d039a6b1646709175d b/.ptp-sync/objects/58/6632dd41a5506861f4c8d039a6b1646709175d deleted file mode 100644 index 092c8a90..00000000 Binary files a/.ptp-sync/objects/58/6632dd41a5506861f4c8d039a6b1646709175d and /dev/null differ diff --git a/.ptp-sync/objects/59/.ptp-sync-folder b/.ptp-sync/objects/59/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/59/0408b17babc75e574605f80faee4e38282f59d b/.ptp-sync/objects/59/0408b17babc75e574605f80faee4e38282f59d deleted file mode 100644 index f113fdb5..00000000 Binary files a/.ptp-sync/objects/59/0408b17babc75e574605f80faee4e38282f59d and /dev/null differ diff --git a/.ptp-sync/objects/59/575658b4dcd502b698f7085b8c40dfcf9e277c b/.ptp-sync/objects/59/575658b4dcd502b698f7085b8c40dfcf9e277c deleted file mode 100644 index 5ae7e136..00000000 Binary files a/.ptp-sync/objects/59/575658b4dcd502b698f7085b8c40dfcf9e277c and /dev/null differ diff --git a/.ptp-sync/objects/59/867f4b8e82f4ba9ffe11fda687119e37a46f51 b/.ptp-sync/objects/59/867f4b8e82f4ba9ffe11fda687119e37a46f51 deleted file mode 100644 index 57af657c..00000000 Binary files a/.ptp-sync/objects/59/867f4b8e82f4ba9ffe11fda687119e37a46f51 and /dev/null differ diff --git a/.ptp-sync/objects/59/db0bea73deb64c557888871744ee00f9c33020 b/.ptp-sync/objects/59/db0bea73deb64c557888871744ee00f9c33020 deleted file mode 100644 index b453d7bf..00000000 Binary files a/.ptp-sync/objects/59/db0bea73deb64c557888871744ee00f9c33020 and /dev/null differ diff --git a/.ptp-sync/objects/5b/.ptp-sync-folder b/.ptp-sync/objects/5b/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/5b/050ba6f49116bceee5ba236145088c7ece505a b/.ptp-sync/objects/5b/050ba6f49116bceee5ba236145088c7ece505a deleted file mode 100644 index a99c6aee..00000000 Binary files a/.ptp-sync/objects/5b/050ba6f49116bceee5ba236145088c7ece505a and /dev/null differ diff --git a/.ptp-sync/objects/5b/4b275155be17b1f9b2b60a0f0324846203b927 b/.ptp-sync/objects/5b/4b275155be17b1f9b2b60a0f0324846203b927 deleted file mode 100644 index b7917fd7..00000000 Binary files a/.ptp-sync/objects/5b/4b275155be17b1f9b2b60a0f0324846203b927 and /dev/null differ diff --git a/.ptp-sync/objects/5b/79e4b45bd4a762321fc7d76bde248facdaf622 b/.ptp-sync/objects/5b/79e4b45bd4a762321fc7d76bde248facdaf622 deleted file mode 100644 index 02e7e8a2..00000000 Binary files a/.ptp-sync/objects/5b/79e4b45bd4a762321fc7d76bde248facdaf622 and /dev/null differ diff --git a/.ptp-sync/objects/5b/7e563e936d7c840618268fb37cced3650fa3a5 b/.ptp-sync/objects/5b/7e563e936d7c840618268fb37cced3650fa3a5 deleted file mode 100644 index b079f54b..00000000 --- a/.ptp-sync/objects/5b/7e563e936d7c840618268fb37cced3650fa3a5 +++ /dev/null @@ -1,5 +0,0 @@ -xuSN0sbdhsZEzwdlԏg; A]I{<4gp}U4CGyZlO ]IjrK~?:Xb7&H)2"9Wa tKufg1¥f2US(c(hiTozz}롆jf@t h -Y,b5˟%µ]ѵrW8ŧN.Ci; \ No newline at end of file diff --git a/.ptp-sync/objects/5b/b9912425d9a4983de43b94b37941219823ae7e b/.ptp-sync/objects/5b/b9912425d9a4983de43b94b37941219823ae7e deleted file mode 100644 index 47c5a970..00000000 Binary files a/.ptp-sync/objects/5b/b9912425d9a4983de43b94b37941219823ae7e and /dev/null differ diff --git a/.ptp-sync/objects/5c/.ptp-sync-folder b/.ptp-sync/objects/5c/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/5c/606a247efa62051bef68d249e5702801e1cb62 b/.ptp-sync/objects/5c/606a247efa62051bef68d249e5702801e1cb62 deleted file mode 100644 index 83dc9f8d..00000000 Binary files a/.ptp-sync/objects/5c/606a247efa62051bef68d249e5702801e1cb62 and /dev/null differ diff --git a/.ptp-sync/objects/5c/906d1af48ae9c90341498aee62d8079b86ed9b b/.ptp-sync/objects/5c/906d1af48ae9c90341498aee62d8079b86ed9b deleted file mode 100644 index 8de38ac6..00000000 Binary files a/.ptp-sync/objects/5c/906d1af48ae9c90341498aee62d8079b86ed9b and /dev/null differ diff --git a/.ptp-sync/objects/5c/99a60e45a1200afd4cf2655874ed31422c37e4 b/.ptp-sync/objects/5c/99a60e45a1200afd4cf2655874ed31422c37e4 deleted file mode 100644 index 54f81263..00000000 --- a/.ptp-sync/objects/5c/99a60e45a1200afd4cf2655874ed31422c37e4 +++ /dev/null @@ -1,6 +0,0 @@ -xVo6gb eNbqY4AgM -$ehN{qˇX"y=5v -o߽Ӈ,o13a43VkBx^Kcz:Dvl0P*#c`n -#Alp gh WT*AqiaTsSK"(k;X{Ԁ`i؜ZDwZuhYOIPdٜr[*aPxz!1So|~y=>u`|sHCfiXAy%I:aŠ3EwxrN!?zio EДz:^?;oq5I٤ϐg!Ns\W_aA>t$n4'~۹ݲaCL~wAW -C :]&:lIKuا!$Zxs_Ґ$uSµp[ -n HkX| p*SA]K({3tHgRRX\LV{}-)ѿGԂ(q#D2:ܽeҺ\Qݿɸ99 ξg gYZC 3M5Q"l4`ӆcW7s֣Usm$HaH[(!ճqv\5;ӫ锓*şO :~B|1I%]W_HOVGTcb~R%TU9ZK5pRu+YR#,^ONߓ}LϚ#)Sh-Ur#!8L+>9v5QO%-'FTLyU9Gq#(* Cjvȝxr47k*Qc> -;N51MҔ4ƉAMihY^hGoO slvzOr˦T6Lʧx aOx KTܐ $r}dJ*6R*6?zjUmv"E3G&~/u2%? oTbS vCMܞg \ No newline at end of file diff --git a/.ptp-sync/objects/5e/403f68121811b49f7a2f6423d25a2f1905940b b/.ptp-sync/objects/5e/403f68121811b49f7a2f6423d25a2f1905940b deleted file mode 100644 index 43e4db1b..00000000 Binary files a/.ptp-sync/objects/5e/403f68121811b49f7a2f6423d25a2f1905940b and /dev/null differ diff --git a/.ptp-sync/objects/5e/dab7e790146543f61c40d2b6617dfec021d9fa b/.ptp-sync/objects/5e/dab7e790146543f61c40d2b6617dfec021d9fa deleted file mode 100644 index 70fa524b..00000000 Binary files a/.ptp-sync/objects/5e/dab7e790146543f61c40d2b6617dfec021d9fa and /dev/null differ diff --git a/.ptp-sync/objects/5f/.ptp-sync-folder b/.ptp-sync/objects/5f/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/5f/d7cc54813787e2cad68bdb6a3d56156811187c b/.ptp-sync/objects/5f/d7cc54813787e2cad68bdb6a3d56156811187c deleted file mode 100644 index bf36228d..00000000 Binary files a/.ptp-sync/objects/5f/d7cc54813787e2cad68bdb6a3d56156811187c and /dev/null differ diff --git a/.ptp-sync/objects/5f/e874e4d7cf7cf8287039c92de4cbd368823239 b/.ptp-sync/objects/5f/e874e4d7cf7cf8287039c92de4cbd368823239 deleted file mode 100644 index 88e52768..00000000 Binary files a/.ptp-sync/objects/5f/e874e4d7cf7cf8287039c92de4cbd368823239 and /dev/null differ diff --git a/.ptp-sync/objects/5f/f6b9a88d923ac48a4eb68569504a811ace7ec3 b/.ptp-sync/objects/5f/f6b9a88d923ac48a4eb68569504a811ace7ec3 deleted file mode 100644 index 95553012..00000000 Binary files a/.ptp-sync/objects/5f/f6b9a88d923ac48a4eb68569504a811ace7ec3 and /dev/null differ diff --git a/.ptp-sync/objects/60/.ptp-sync-folder b/.ptp-sync/objects/60/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/60/28542cd1bd46e7148a9f93d0d83f08d8aeac85 b/.ptp-sync/objects/60/28542cd1bd46e7148a9f93d0d83f08d8aeac85 deleted file mode 100644 index 4f583f83..00000000 Binary files a/.ptp-sync/objects/60/28542cd1bd46e7148a9f93d0d83f08d8aeac85 and /dev/null differ diff --git a/.ptp-sync/objects/61/.ptp-sync-folder b/.ptp-sync/objects/61/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/61/03bac9c6a266ec04977389017aff0c7fc5ccff b/.ptp-sync/objects/61/03bac9c6a266ec04977389017aff0c7fc5ccff deleted file mode 100644 index 3e990bde..00000000 Binary files a/.ptp-sync/objects/61/03bac9c6a266ec04977389017aff0c7fc5ccff and /dev/null differ diff --git a/.ptp-sync/objects/61/e5e26af7b0b39e3b2c72f6375d6bc58317671e b/.ptp-sync/objects/61/e5e26af7b0b39e3b2c72f6375d6bc58317671e deleted file mode 100644 index 93206ab2..00000000 Binary files a/.ptp-sync/objects/61/e5e26af7b0b39e3b2c72f6375d6bc58317671e and /dev/null differ diff --git a/.ptp-sync/objects/62/.ptp-sync-folder b/.ptp-sync/objects/62/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/62/ebdf07ec397bc5b737b34fceed99e9e812ede2 b/.ptp-sync/objects/62/ebdf07ec397bc5b737b34fceed99e9e812ede2 deleted file mode 100644 index f5a89850..00000000 Binary files a/.ptp-sync/objects/62/ebdf07ec397bc5b737b34fceed99e9e812ede2 and /dev/null differ diff --git a/.ptp-sync/objects/62/fd0b8b29e6f4ff9bb1718445f1ea8ed005e378 b/.ptp-sync/objects/62/fd0b8b29e6f4ff9bb1718445f1ea8ed005e378 deleted file mode 100644 index 5b4a540b..00000000 Binary files a/.ptp-sync/objects/62/fd0b8b29e6f4ff9bb1718445f1ea8ed005e378 and /dev/null differ diff --git a/.ptp-sync/objects/63/.ptp-sync-folder b/.ptp-sync/objects/63/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/63/1e600434b6bbf14c45b4bab4dd1e29dddc9434 b/.ptp-sync/objects/63/1e600434b6bbf14c45b4bab4dd1e29dddc9434 deleted file mode 100644 index 1ba7fc5d..00000000 Binary files a/.ptp-sync/objects/63/1e600434b6bbf14c45b4bab4dd1e29dddc9434 and /dev/null differ diff --git a/.ptp-sync/objects/63/d334ad04fd7c1fc963d3b2e419d178bab12ba1 b/.ptp-sync/objects/63/d334ad04fd7c1fc963d3b2e419d178bab12ba1 deleted file mode 100644 index 936a8e8d..00000000 Binary files a/.ptp-sync/objects/63/d334ad04fd7c1fc963d3b2e419d178bab12ba1 and /dev/null differ diff --git a/.ptp-sync/objects/64/.ptp-sync-folder b/.ptp-sync/objects/64/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/64/dd22cc4cc8b189064601329fb0b8739fc12075 b/.ptp-sync/objects/64/dd22cc4cc8b189064601329fb0b8739fc12075 deleted file mode 100644 index 818935af..00000000 Binary files a/.ptp-sync/objects/64/dd22cc4cc8b189064601329fb0b8739fc12075 and /dev/null differ diff --git a/.ptp-sync/objects/66/.ptp-sync-folder b/.ptp-sync/objects/66/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/66/3019e79e1d312fd3e287a73f6f9193687e45e2 b/.ptp-sync/objects/66/3019e79e1d312fd3e287a73f6f9193687e45e2 deleted file mode 100644 index 1913bbde..00000000 Binary files a/.ptp-sync/objects/66/3019e79e1d312fd3e287a73f6f9193687e45e2 and /dev/null differ diff --git a/.ptp-sync/objects/67/.ptp-sync-folder b/.ptp-sync/objects/67/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/67/3b661389c52abb8ca3d12451bba48bb31fb2c1 b/.ptp-sync/objects/67/3b661389c52abb8ca3d12451bba48bb31fb2c1 deleted file mode 100644 index e794c523..00000000 Binary files a/.ptp-sync/objects/67/3b661389c52abb8ca3d12451bba48bb31fb2c1 and /dev/null differ diff --git a/.ptp-sync/objects/67/53a65c23ef929d867cf8499f468904c280192a b/.ptp-sync/objects/67/53a65c23ef929d867cf8499f468904c280192a deleted file mode 100644 index 7b66c8f6..00000000 --- a/.ptp-sync/objects/67/53a65c23ef929d867cf8499f468904c280192a +++ /dev/null @@ -1,5 +0,0 @@ -xWRFͳE6d&a dW -0Zx53YO.k YUQ> uUn7 $x}>q'MX|- pJbUFFsaSJo -~s2n䷱bQ\H_{P$I]u&"N/tN = E$…Q.S>i21[SjL g\4"Gq[t! a\yc^aEeNCJL̝B=ƞH K\!')`xA&r&Tޯr f"l(򥿼=叿H,OVVm~,nF x5*8֫02:tpI| "]n 1TxEZȞPL(N{gó8>6eAeZ bx \0>גͫD_ -堉Qx&0mBhFBݱ|&n&OW`]mR\M] WL9PRNƊ+h+f! ]tUNtCH슌]'T[Eى}x1ux }̐sb(ߜv;[t)@t u)AHꐔ&f+k^ F.l*iS/SiGkBYW[Wm5sn^tpl vwm;wpo1 Ep՞[Mk j's@?տR,ܲre${r A?\+fUݮveUzs#:t+ʽ۶/M}& \ No newline at end of file diff --git a/.ptp-sync/objects/67/e75fb7dc52e064b9455ab3883faddbce083795 b/.ptp-sync/objects/67/e75fb7dc52e064b9455ab3883faddbce083795 deleted file mode 100644 index ef7969b0..00000000 Binary files a/.ptp-sync/objects/67/e75fb7dc52e064b9455ab3883faddbce083795 and /dev/null differ diff --git a/.ptp-sync/objects/68/.ptp-sync-folder b/.ptp-sync/objects/68/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/68/1621f65ae39c454e105967eb71729a2707f74c b/.ptp-sync/objects/68/1621f65ae39c454e105967eb71729a2707f74c deleted file mode 100644 index 2103aab0..00000000 Binary files a/.ptp-sync/objects/68/1621f65ae39c454e105967eb71729a2707f74c and /dev/null differ diff --git a/.ptp-sync/objects/68/ea55573fa067979dcfcf786c88fde6acd7a801 b/.ptp-sync/objects/68/ea55573fa067979dcfcf786c88fde6acd7a801 deleted file mode 100644 index be77b8bb..00000000 Binary files a/.ptp-sync/objects/68/ea55573fa067979dcfcf786c88fde6acd7a801 and /dev/null differ diff --git a/.ptp-sync/objects/69/.ptp-sync-folder b/.ptp-sync/objects/69/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/69/38286db405a54a1461a93733a9f00d99f9814f b/.ptp-sync/objects/69/38286db405a54a1461a93733a9f00d99f9814f deleted file mode 100644 index 75e36e76..00000000 Binary files a/.ptp-sync/objects/69/38286db405a54a1461a93733a9f00d99f9814f and /dev/null differ diff --git a/.ptp-sync/objects/69/60f63ca93909f2d5d3a8dc480541c5604416fe b/.ptp-sync/objects/69/60f63ca93909f2d5d3a8dc480541c5604416fe deleted file mode 100644 index 1c1c49fe..00000000 Binary files a/.ptp-sync/objects/69/60f63ca93909f2d5d3a8dc480541c5604416fe and /dev/null differ diff --git a/.ptp-sync/objects/69/6844f035d0f7269f59caa23f666c04640f4149 b/.ptp-sync/objects/69/6844f035d0f7269f59caa23f666c04640f4149 deleted file mode 100644 index 8d896aea..00000000 Binary files a/.ptp-sync/objects/69/6844f035d0f7269f59caa23f666c04640f4149 and /dev/null differ diff --git a/.ptp-sync/objects/69/f95e3ef0aabdc7464753feb56045e4719a0046 b/.ptp-sync/objects/69/f95e3ef0aabdc7464753feb56045e4719a0046 deleted file mode 100644 index f4f0a7b9..00000000 Binary files a/.ptp-sync/objects/69/f95e3ef0aabdc7464753feb56045e4719a0046 and /dev/null differ diff --git a/.ptp-sync/objects/6a/.ptp-sync-folder b/.ptp-sync/objects/6a/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/6a/28ad09dd366b84d8ca7d8696db5fb51010b50a b/.ptp-sync/objects/6a/28ad09dd366b84d8ca7d8696db5fb51010b50a deleted file mode 100644 index a5bf556e..00000000 Binary files a/.ptp-sync/objects/6a/28ad09dd366b84d8ca7d8696db5fb51010b50a and /dev/null differ diff --git a/.ptp-sync/objects/6a/5041f1182d2bc8bcf5eaaebe7a95040101c982 b/.ptp-sync/objects/6a/5041f1182d2bc8bcf5eaaebe7a95040101c982 deleted file mode 100644 index 45326f64..00000000 Binary files a/.ptp-sync/objects/6a/5041f1182d2bc8bcf5eaaebe7a95040101c982 and /dev/null differ diff --git a/.ptp-sync/objects/6b/.ptp-sync-folder b/.ptp-sync/objects/6b/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/6b/a018ef0d47a44dfa5a695d69bffe2a6627e3bd b/.ptp-sync/objects/6b/a018ef0d47a44dfa5a695d69bffe2a6627e3bd deleted file mode 100644 index 4aaa5785..00000000 Binary files a/.ptp-sync/objects/6b/a018ef0d47a44dfa5a695d69bffe2a6627e3bd and /dev/null differ diff --git a/.ptp-sync/objects/6b/fbdd08e044ceb3df0a65d7fd2f056cb01f052a b/.ptp-sync/objects/6b/fbdd08e044ceb3df0a65d7fd2f056cb01f052a deleted file mode 100644 index 83004c58..00000000 Binary files a/.ptp-sync/objects/6b/fbdd08e044ceb3df0a65d7fd2f056cb01f052a and /dev/null differ diff --git a/.ptp-sync/objects/6c/.ptp-sync-folder b/.ptp-sync/objects/6c/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/6c/98dac548784b00fe229d298241f37d754719eb b/.ptp-sync/objects/6c/98dac548784b00fe229d298241f37d754719eb deleted file mode 100644 index 1f2abcab..00000000 Binary files a/.ptp-sync/objects/6c/98dac548784b00fe229d298241f37d754719eb and /dev/null differ diff --git a/.ptp-sync/objects/6d/.ptp-sync-folder b/.ptp-sync/objects/6d/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/6d/f45bbbde0ffd91eea7f9615c5a9f98f5c872a9 b/.ptp-sync/objects/6d/f45bbbde0ffd91eea7f9615c5a9f98f5c872a9 deleted file mode 100644 index ea53fd9a..00000000 Binary files a/.ptp-sync/objects/6d/f45bbbde0ffd91eea7f9615c5a9f98f5c872a9 and /dev/null differ diff --git a/.ptp-sync/objects/6e/.ptp-sync-folder b/.ptp-sync/objects/6e/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/6e/ef86433346942b51894a3c41ac4c495b14c75c b/.ptp-sync/objects/6e/ef86433346942b51894a3c41ac4c495b14c75c deleted file mode 100644 index c6232ac1..00000000 Binary files a/.ptp-sync/objects/6e/ef86433346942b51894a3c41ac4c495b14c75c and /dev/null differ diff --git a/.ptp-sync/objects/6e/fef9082033c25fbda3a7d112183cfe600f030e b/.ptp-sync/objects/6e/fef9082033c25fbda3a7d112183cfe600f030e deleted file mode 100644 index 6864fe4d..00000000 Binary files a/.ptp-sync/objects/6e/fef9082033c25fbda3a7d112183cfe600f030e and /dev/null differ diff --git a/.ptp-sync/objects/70/.ptp-sync-folder b/.ptp-sync/objects/70/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/70/f2c8820b34a5e5d5c41578d451b15e5bc86120 b/.ptp-sync/objects/70/f2c8820b34a5e5d5c41578d451b15e5bc86120 deleted file mode 100644 index 43fb1b6f..00000000 Binary files a/.ptp-sync/objects/70/f2c8820b34a5e5d5c41578d451b15e5bc86120 and /dev/null differ diff --git a/.ptp-sync/objects/70/f6ca64ee6ce87b8268e4a51355ac5cb9a0d131 b/.ptp-sync/objects/70/f6ca64ee6ce87b8268e4a51355ac5cb9a0d131 deleted file mode 100644 index 7e680c8d..00000000 Binary files a/.ptp-sync/objects/70/f6ca64ee6ce87b8268e4a51355ac5cb9a0d131 and /dev/null differ diff --git a/.ptp-sync/objects/71/.ptp-sync-folder b/.ptp-sync/objects/71/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/71/da247194984700b7871cd45364a60f40deefe4 b/.ptp-sync/objects/71/da247194984700b7871cd45364a60f40deefe4 deleted file mode 100644 index 134c2cad..00000000 Binary files a/.ptp-sync/objects/71/da247194984700b7871cd45364a60f40deefe4 and /dev/null differ diff --git a/.ptp-sync/objects/72/.ptp-sync-folder b/.ptp-sync/objects/72/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/72/2e29664af78d2ef9c1d3e16cbd1d88c91d4ef8 b/.ptp-sync/objects/72/2e29664af78d2ef9c1d3e16cbd1d88c91d4ef8 deleted file mode 100644 index d57885c6..00000000 Binary files a/.ptp-sync/objects/72/2e29664af78d2ef9c1d3e16cbd1d88c91d4ef8 and /dev/null differ diff --git a/.ptp-sync/objects/72/4f274a65ac7a92f42893411c6e8321448b5005 b/.ptp-sync/objects/72/4f274a65ac7a92f42893411c6e8321448b5005 deleted file mode 100644 index 38444746..00000000 Binary files a/.ptp-sync/objects/72/4f274a65ac7a92f42893411c6e8321448b5005 and /dev/null differ diff --git a/.ptp-sync/objects/72/6d591ccd55bf69b6d094313dea00860677bcb9 b/.ptp-sync/objects/72/6d591ccd55bf69b6d094313dea00860677bcb9 deleted file mode 100644 index 7de4b8c8..00000000 --- a/.ptp-sync/objects/72/6d591ccd55bf69b6d094313dea00860677bcb9 +++ /dev/null @@ -1,8 +0,0 @@ -xVmo9QuBD^+UjHDrUDȬw^^H̾Ҧv<εwo>,q TyX(@pN8^1pXc"xpnm0P*RFJ BЭ<7's8ANhsGW|E8f -[J, 蹃5:O>JLSFf"C;OL<qI)(a{\ǐ?rv>vpzq@Cj)LVVDTu„[N{_(WП^|8OЅQw<>t0:&!8O]qPה/i X#6A&l1 -mͲYy``lh'x+m6ר\uvxo{WdȒ6 D7Ka \,bn8DX"nd 8L=|X$)jMʫCg -Z 9EaKGX\i+F7F - eP6ӳY8퍇AԂA*l=JrɄ4b_? -/*6Q=h[Kr+Bt}&a?Cd12KQt -,VRx~M9pځ'CĚ7A/ΫLM/(8j;m}tU~8r3ӃО74͈>F$?};=C|Bzkڍ \ No newline at end of file diff --git a/.ptp-sync/objects/73/.ptp-sync-folder b/.ptp-sync/objects/73/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/73/821c1e4cef2172171f628868a12faa371dcd8c b/.ptp-sync/objects/73/821c1e4cef2172171f628868a12faa371dcd8c deleted file mode 100644 index 92c41b14..00000000 Binary files a/.ptp-sync/objects/73/821c1e4cef2172171f628868a12faa371dcd8c and /dev/null differ diff --git a/.ptp-sync/objects/73/b605205d38dba5c8863eed521a8d3090f8e264 b/.ptp-sync/objects/73/b605205d38dba5c8863eed521a8d3090f8e264 deleted file mode 100644 index e681a4a6..00000000 Binary files a/.ptp-sync/objects/73/b605205d38dba5c8863eed521a8d3090f8e264 and /dev/null differ diff --git a/.ptp-sync/objects/73/f4d3e0be1ae13bae8b6242a95923614ab05a8d b/.ptp-sync/objects/73/f4d3e0be1ae13bae8b6242a95923614ab05a8d deleted file mode 100644 index 8e930e52..00000000 Binary files a/.ptp-sync/objects/73/f4d3e0be1ae13bae8b6242a95923614ab05a8d and /dev/null differ diff --git a/.ptp-sync/objects/74/.ptp-sync-folder b/.ptp-sync/objects/74/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/74/ade459bfc058e23b8ee085b240903d72838b2f b/.ptp-sync/objects/74/ade459bfc058e23b8ee085b240903d72838b2f deleted file mode 100644 index b0075397..00000000 Binary files a/.ptp-sync/objects/74/ade459bfc058e23b8ee085b240903d72838b2f and /dev/null differ diff --git a/.ptp-sync/objects/75/.ptp-sync-folder b/.ptp-sync/objects/75/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/75/20b39ff64714e60da5d05bbd9232926d44bc28 b/.ptp-sync/objects/75/20b39ff64714e60da5d05bbd9232926d44bc28 deleted file mode 100644 index 668e9566..00000000 Binary files a/.ptp-sync/objects/75/20b39ff64714e60da5d05bbd9232926d44bc28 and /dev/null differ diff --git a/.ptp-sync/objects/76/.ptp-sync-folder b/.ptp-sync/objects/76/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/76/b1610d2177237f9f3d92db3985ffb3519d643c b/.ptp-sync/objects/76/b1610d2177237f9f3d92db3985ffb3519d643c deleted file mode 100644 index 0f34f03d..00000000 Binary files a/.ptp-sync/objects/76/b1610d2177237f9f3d92db3985ffb3519d643c and /dev/null differ diff --git a/.ptp-sync/objects/77/.ptp-sync-folder b/.ptp-sync/objects/77/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/77/7a86972f10bc7762574e59fdf9995ebf64d006 b/.ptp-sync/objects/77/7a86972f10bc7762574e59fdf9995ebf64d006 deleted file mode 100644 index 45bb772b..00000000 Binary files a/.ptp-sync/objects/77/7a86972f10bc7762574e59fdf9995ebf64d006 and /dev/null differ diff --git a/.ptp-sync/objects/78/.ptp-sync-folder b/.ptp-sync/objects/78/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/78/2660a10cf5cad7dbd46321fd40f96a1c6b1c0e b/.ptp-sync/objects/78/2660a10cf5cad7dbd46321fd40f96a1c6b1c0e deleted file mode 100644 index 041ac38d..00000000 --- a/.ptp-sync/objects/78/2660a10cf5cad7dbd46321fd40f96a1c6b1c0e +++ /dev/null @@ -1 +0,0 @@ -xݓAN1 EY^wS7l\/@DZgʦE0OS2\ ;NVR%y C窄Ti-`SVKȽ/pUBv:D(m7! -aTwjYyJAZ++Uzh2[3M :Zj@4% Nl1j'oQ Wl<='i ˮjiI贄\ZZ6-w -mMVj`MR0CI^Rl6T֨2<z^H"Z$}Aɜie燴מ"WdTO2v/~QHr%kNabW:E՝]RcìܯtCUkRkEI^ψq5w5ThLx:|RapIBd3OK8YN2cFDo%iU8{D1L&؍^.$j,.cǽ{01t4WHMRXXzL8[Z]N%ѿ=c2q${x _Q]/+QqGo'ӳ?ŋfNFOʊWΔm"uZQrmˆW۴іvKO6|&$CLHi\C+`T"$SlPsQTѶi?^Ķp'sE`{!vS) AsT2 ٩bcX:K ==t XXW_vZl HkE_d v&x:P /Ǻô㨓V#w>  Ǵ9n n`'M? -ɟZfH_%ۀ~s'j? x \ No newline at end of file diff --git a/.ptp-sync/objects/a9/.ptp-sync-folder b/.ptp-sync/objects/a9/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/a9/035d68dcef0443ade23a32c2bbb5909b5af28d b/.ptp-sync/objects/a9/035d68dcef0443ade23a32c2bbb5909b5af28d deleted file mode 100644 index 6e96652e..00000000 --- a/.ptp-sync/objects/a9/035d68dcef0443ade23a32c2bbb5909b5af28d +++ /dev/null @@ -1 +0,0 @@ -xuAn1 s+tŰ/h|? ˮDlٜ׷g2VFQn\Kg^K>kX`,-lUK>p<򊋗TbQ,Z:Kxr|E*8hzY gjY,!N=aXB?YMϐUY=%Lw!JSw @HVE֚=z󄭋5*Y6`j*u}QrsFO//O}fБvwUm#3ED >7]@,glt.bMi# g:Y3 uXċPdzgDnmjdi(#ӿh͕^t#DLiO$&!=YPRfTT@$[ܥjNPk/]ժ]o:B^{'SRcA?>18<^kݲsFǚ2}z# F߀D)'v(Qdmi&ʔvJY)Xvioۿ[B͖ \ No newline at end of file diff --git a/.ptp-sync/objects/ab/.ptp-sync-folder b/.ptp-sync/objects/ab/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/ab/1f85580b9ee0d77cbedec0643826a568f1d2c6 b/.ptp-sync/objects/ab/1f85580b9ee0d77cbedec0643826a568f1d2c6 deleted file mode 100644 index d7e1e712..00000000 Binary files a/.ptp-sync/objects/ab/1f85580b9ee0d77cbedec0643826a568f1d2c6 and /dev/null differ diff --git a/.ptp-sync/objects/ac/.ptp-sync-folder b/.ptp-sync/objects/ac/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/ac/2aabb5bbecdd2dca3cdc98ec254908f1ea0477 b/.ptp-sync/objects/ac/2aabb5bbecdd2dca3cdc98ec254908f1ea0477 deleted file mode 100644 index 87a1d6b2..00000000 --- a/.ptp-sync/objects/ac/2aabb5bbecdd2dca3cdc98ec254908f1ea0477 +++ /dev/null @@ -1,4 +0,0 @@ -x5.aq빊qfip#& dBR,hiU:p&oh]9=o{?084ֶ{|ұ\qꌭUL9 -ϲ$HN - 6)rS7Dݚg2Oʣd;.zkS`KrTr͖1 R5޾Xgy8 -؄ ={ \ No newline at end of file diff --git a/.ptp-sync/objects/ac/582f1cfadad252a25ebe52f9e3a6269e100386 b/.ptp-sync/objects/ac/582f1cfadad252a25ebe52f9e3a6269e100386 deleted file mode 100644 index f6725b95..00000000 Binary files a/.ptp-sync/objects/ac/582f1cfadad252a25ebe52f9e3a6269e100386 and /dev/null differ diff --git a/.ptp-sync/objects/ac/5f66b58fc59e92e2620548a5dadd00dbeb7468 b/.ptp-sync/objects/ac/5f66b58fc59e92e2620548a5dadd00dbeb7468 deleted file mode 100644 index a541ca9c..00000000 Binary files a/.ptp-sync/objects/ac/5f66b58fc59e92e2620548a5dadd00dbeb7468 and /dev/null differ diff --git a/.ptp-sync/objects/ae/.ptp-sync-folder b/.ptp-sync/objects/ae/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/ae/3ec4a42e5e6ceeb192e60b67ce3d00f4fb9fba b/.ptp-sync/objects/ae/3ec4a42e5e6ceeb192e60b67ce3d00f4fb9fba deleted file mode 100644 index 8df39916..00000000 Binary files a/.ptp-sync/objects/ae/3ec4a42e5e6ceeb192e60b67ce3d00f4fb9fba and /dev/null differ diff --git a/.ptp-sync/objects/af/.ptp-sync-folder b/.ptp-sync/objects/af/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/af/378da5d2148e736af025547852cb2a0e98a6d3 b/.ptp-sync/objects/af/378da5d2148e736af025547852cb2a0e98a6d3 deleted file mode 100644 index 3d404df2..00000000 Binary files a/.ptp-sync/objects/af/378da5d2148e736af025547852cb2a0e98a6d3 and /dev/null differ diff --git a/.ptp-sync/objects/b0/.ptp-sync-folder b/.ptp-sync/objects/b0/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/b0/efe2fdc58c243fc427c79b58a8ef716f2cf9c4 b/.ptp-sync/objects/b0/efe2fdc58c243fc427c79b58a8ef716f2cf9c4 deleted file mode 100644 index ee04b8d5..00000000 Binary files a/.ptp-sync/objects/b0/efe2fdc58c243fc427c79b58a8ef716f2cf9c4 and /dev/null differ diff --git a/.ptp-sync/objects/b1/.ptp-sync-folder b/.ptp-sync/objects/b1/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/b1/e9ec78da42e5eac182bff31a95af64d7316e97 b/.ptp-sync/objects/b1/e9ec78da42e5eac182bff31a95af64d7316e97 deleted file mode 100644 index 274b9c76..00000000 Binary files a/.ptp-sync/objects/b1/e9ec78da42e5eac182bff31a95af64d7316e97 and /dev/null differ diff --git a/.ptp-sync/objects/b2/.ptp-sync-folder b/.ptp-sync/objects/b2/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/b2/c0448ab73627bfcef25179ad734bafedc8dce7 b/.ptp-sync/objects/b2/c0448ab73627bfcef25179ad734bafedc8dce7 deleted file mode 100644 index f94b5599..00000000 Binary files a/.ptp-sync/objects/b2/c0448ab73627bfcef25179ad734bafedc8dce7 and /dev/null differ diff --git a/.ptp-sync/objects/b2/ef93f0c159ec7724ea0a84ffe10c5f4d64f275 b/.ptp-sync/objects/b2/ef93f0c159ec7724ea0a84ffe10c5f4d64f275 deleted file mode 100644 index 2292ef52..00000000 --- a/.ptp-sync/objects/b2/ef93f0c159ec7724ea0a84ffe10c5f4d64f275 +++ /dev/null @@ -1 +0,0 @@ -xAn1 EFah1vsp+Fb(P`Q5Rb/+q6{aD!OflC@_ɜ -\sLfYT=e XsJY3:5s}wYS --^ӏ_am=\yﶞKwxkPw(t淎kw G_*ww\j7>G04wQ=Do}N6r悥R˿ \ No newline at end of file diff --git a/.ptp-sync/objects/cc/870f6153d0c445e20b27aca3dc505d99026ceb b/.ptp-sync/objects/cc/870f6153d0c445e20b27aca3dc505d99026ceb deleted file mode 100644 index e4341a01..00000000 Binary files a/.ptp-sync/objects/cc/870f6153d0c445e20b27aca3dc505d99026ceb and /dev/null differ diff --git a/.ptp-sync/objects/cd/.ptp-sync-folder b/.ptp-sync/objects/cd/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/cd/51100ff8b1bb41b49af4fc131302f6a425e4cf b/.ptp-sync/objects/cd/51100ff8b1bb41b49af4fc131302f6a425e4cf deleted file mode 100644 index c4f87b0c..00000000 Binary files a/.ptp-sync/objects/cd/51100ff8b1bb41b49af4fc131302f6a425e4cf and /dev/null differ diff --git a/.ptp-sync/objects/cd/708f43128b8364b40171d69c734aea56e54cbe b/.ptp-sync/objects/cd/708f43128b8364b40171d69c734aea56e54cbe deleted file mode 100644 index 9f7c792c..00000000 Binary files a/.ptp-sync/objects/cd/708f43128b8364b40171d69c734aea56e54cbe and /dev/null differ diff --git a/.ptp-sync/objects/cf/.ptp-sync-folder b/.ptp-sync/objects/cf/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/cf/30d0dd0d38513b34c868a530af300c9278feff b/.ptp-sync/objects/cf/30d0dd0d38513b34c868a530af300c9278feff deleted file mode 100644 index 0d8c89a6..00000000 Binary files a/.ptp-sync/objects/cf/30d0dd0d38513b34c868a530af300c9278feff and /dev/null differ diff --git a/.ptp-sync/objects/cf/cb5eb5018698cf2d07baa2998c78383dd3519d b/.ptp-sync/objects/cf/cb5eb5018698cf2d07baa2998c78383dd3519d deleted file mode 100644 index 20d9800a..00000000 Binary files a/.ptp-sync/objects/cf/cb5eb5018698cf2d07baa2998c78383dd3519d and /dev/null differ diff --git a/.ptp-sync/objects/d0/.ptp-sync-folder b/.ptp-sync/objects/d0/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/d0/062beb55e08734a897f69f85e6268fe8d8640c b/.ptp-sync/objects/d0/062beb55e08734a897f69f85e6268fe8d8640c deleted file mode 100644 index a921af86..00000000 Binary files a/.ptp-sync/objects/d0/062beb55e08734a897f69f85e6268fe8d8640c and /dev/null differ diff --git a/.ptp-sync/objects/d1/.ptp-sync-folder b/.ptp-sync/objects/d1/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/d1/94bbcafd1c96a7a4a9f709b80c4bf370f46102 b/.ptp-sync/objects/d1/94bbcafd1c96a7a4a9f709b80c4bf370f46102 deleted file mode 100644 index 819a9e61..00000000 --- a/.ptp-sync/objects/d1/94bbcafd1c96a7a4a9f709b80c4bf370f46102 +++ /dev/null @@ -1,4 +0,0 @@ -xTMoF9H (A`4%7&9.iI}Cr[y8zvJ2$_61^~mf$Rl.6UpmHW"~$6JD=F0m")FCFEH1Vq0Qx"9+1;`$|VFbec:}N1DG޼~I$IMSA-b&s\eL8\b7F(!v9~R*ռu/p^BZob|Ύq?C>-^Fc掠;Ķyyrg@N"k -{@'0hLxwl/wޚ.ž䦙t(a#v"ŔZ?| e!))6#zLOg:|O}Z3FdHo gK.q0y]_8[= myd<./)]ci@%,2W^d԰c]W2O6$/hE<"tT#*ELYJ-xrh=/wZ e2{#34:-b(¦#\OL4_Ū  ք#jCl)\.9[y;łꝦO$<,,_ -_6O&8%`veGjqC5ZAuqeUuUVylS8+ON΋Op -J*C:'yETRcuv -Ν%1 :"?*ك EHPx0!ܔZ{Ij$[5S?-CWbH{W*J}M>AVlOH L{#&B;uB5 peT褤 ONaPݫteU#!Q/T[э/"-j}#4:swh;']*”^=#cL^]PmϯXB&OL7LID`J=B'L#R>;J)#ȼm5ÒC[q/K%UtYv<481FfO3d0)D{ch党)Lԫ' -c -s*9Ù^S)Ό7aA@ے2@1LLLߡ>Jz#&$A|+񼿖b8 Dm=| \ No newline at end of file diff --git a/.ptp-sync/objects/de/94817455484012db2169ab71286dd4b49a3faa b/.ptp-sync/objects/de/94817455484012db2169ab71286dd4b49a3faa deleted file mode 100644 index 4b942e77..00000000 Binary files a/.ptp-sync/objects/de/94817455484012db2169ab71286dd4b49a3faa and /dev/null differ diff --git a/.ptp-sync/objects/e1/.ptp-sync-folder b/.ptp-sync/objects/e1/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/e1/54702868a4949fa64468182c13044ee9e7e55c b/.ptp-sync/objects/e1/54702868a4949fa64468182c13044ee9e7e55c deleted file mode 100644 index 9823e8e0..00000000 Binary files a/.ptp-sync/objects/e1/54702868a4949fa64468182c13044ee9e7e55c and /dev/null differ diff --git a/.ptp-sync/objects/e1/7632c6236e5017011a801471d86199d0e60ebd b/.ptp-sync/objects/e1/7632c6236e5017011a801471d86199d0e60ebd deleted file mode 100644 index 2f949a4b..00000000 Binary files a/.ptp-sync/objects/e1/7632c6236e5017011a801471d86199d0e60ebd and /dev/null differ diff --git a/.ptp-sync/objects/e1/ee2d9d54394f820f13ec835f30b77e521f70e4 b/.ptp-sync/objects/e1/ee2d9d54394f820f13ec835f30b77e521f70e4 deleted file mode 100644 index 94fbb78a..00000000 Binary files a/.ptp-sync/objects/e1/ee2d9d54394f820f13ec835f30b77e521f70e4 and /dev/null differ diff --git a/.ptp-sync/objects/e2/.ptp-sync-folder b/.ptp-sync/objects/e2/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/e2/b048270f8c45f0c2539f606129440275cf96bf b/.ptp-sync/objects/e2/b048270f8c45f0c2539f606129440275cf96bf deleted file mode 100644 index 10aba0e8..00000000 Binary files a/.ptp-sync/objects/e2/b048270f8c45f0c2539f606129440275cf96bf and /dev/null differ diff --git a/.ptp-sync/objects/e2/e813c8413b8cdc9e587ac209268354d588adc9 b/.ptp-sync/objects/e2/e813c8413b8cdc9e587ac209268354d588adc9 deleted file mode 100644 index e3cb10d3..00000000 Binary files a/.ptp-sync/objects/e2/e813c8413b8cdc9e587ac209268354d588adc9 and /dev/null differ diff --git a/.ptp-sync/objects/e4/.ptp-sync-folder b/.ptp-sync/objects/e4/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/e4/339d5f150909fca1a33f9aa87d61c568d5b8da b/.ptp-sync/objects/e4/339d5f150909fca1a33f9aa87d61c568d5b8da deleted file mode 100644 index f78499d0..00000000 Binary files a/.ptp-sync/objects/e4/339d5f150909fca1a33f9aa87d61c568d5b8da and /dev/null differ diff --git a/.ptp-sync/objects/e5/.ptp-sync-folder b/.ptp-sync/objects/e5/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/e5/21bf28ed8c775c8d90078d2249650dc45d1b2c b/.ptp-sync/objects/e5/21bf28ed8c775c8d90078d2249650dc45d1b2c deleted file mode 100644 index d11476a2..00000000 Binary files a/.ptp-sync/objects/e5/21bf28ed8c775c8d90078d2249650dc45d1b2c and /dev/null differ diff --git a/.ptp-sync/objects/e5/b5f81dcf816ce2e520e9fbef6dd76107f279b8 b/.ptp-sync/objects/e5/b5f81dcf816ce2e520e9fbef6dd76107f279b8 deleted file mode 100644 index 6ea8bde1..00000000 --- a/.ptp-sync/objects/e5/b5f81dcf816ce2e520e9fbef6dd76107f279b8 +++ /dev/null @@ -1,3 +0,0 @@ -xuSn0x`Z$hK uP<H7$xgN#/i -iS7 -F+``b讻o#4RM.#%LIզJpwڼO۾G {v OAPR3s^$sHD'ΩGiV %}>u_aMKɧH:t{bvA[ɌMD[қFG7˩Z|`7O/MHf\OM CGvJ]dj.cb(9L^>ѐ8LRϵE'^[gkMzgW쩡Z2U](cV2d:7: 8ԿO5Uˀ:B@;gi۳YBV/T.NBPz ulT|܁zE=Zf /_~U2Ȕ#L\AL^nrHwEyC >CGZΎg&P!Oѐ.@WMxܔ.xhgLpk, L^}LC | jR=ydtJu<hZOImJȰTz8G%0/Զikw2xd8brKVgToAx_ުBNYh?Wve9x+H%"G~b'Ei~Sm2{”oӃ3q2[ Fj(2ޣ%[t9R^Ӟ#(Q{d;ƶ \ No newline at end of file diff --git a/.ptp-sync/objects/f2/.ptp-sync-folder b/.ptp-sync/objects/f2/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/f2/3725b8025a56ba9df096fae9d1a0bdef2a9cf1 b/.ptp-sync/objects/f2/3725b8025a56ba9df096fae9d1a0bdef2a9cf1 deleted file mode 100644 index 54eadb55..00000000 Binary files a/.ptp-sync/objects/f2/3725b8025a56ba9df096fae9d1a0bdef2a9cf1 and /dev/null differ diff --git a/.ptp-sync/objects/f2/37b7c5cffcc8dae42488584bcc463bb61edfeb b/.ptp-sync/objects/f2/37b7c5cffcc8dae42488584bcc463bb61edfeb deleted file mode 100644 index b3274572..00000000 Binary files a/.ptp-sync/objects/f2/37b7c5cffcc8dae42488584bcc463bb61edfeb and /dev/null differ diff --git a/.ptp-sync/objects/f2/4b5575f8bdcce7952f2561afa7ccde30e52020 b/.ptp-sync/objects/f2/4b5575f8bdcce7952f2561afa7ccde30e52020 deleted file mode 100644 index 3079a642..00000000 Binary files a/.ptp-sync/objects/f2/4b5575f8bdcce7952f2561afa7ccde30e52020 and /dev/null differ diff --git a/.ptp-sync/objects/f2/526e2e1731d8489e2fa7be49d9799213655d83 b/.ptp-sync/objects/f2/526e2e1731d8489e2fa7be49d9799213655d83 deleted file mode 100644 index f11f82e0..00000000 Binary files a/.ptp-sync/objects/f2/526e2e1731d8489e2fa7be49d9799213655d83 and /dev/null differ diff --git a/.ptp-sync/objects/f3/.ptp-sync-folder b/.ptp-sync/objects/f3/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/f3/27cdbb1068fc2bde55ef5ecf5fd3f458dbd2a4 b/.ptp-sync/objects/f3/27cdbb1068fc2bde55ef5ecf5fd3f458dbd2a4 deleted file mode 100644 index 75a539c4..00000000 --- a/.ptp-sync/objects/f3/27cdbb1068fc2bde55ef5ecf5fd3f458dbd2a4 +++ /dev/null @@ -1,2 +0,0 @@ -xuSn0x`Rh%K yR<(J${W|zc1KOqt"BڴatMԖ8prS&O!ْ(cpI&˗}Oyv'/w=]h 1QR7r 8ݑ,S1Ok35/]{ZBF8a[E 5$[;]L3˒:vҦ0΂hzE;T-@!(&$SnU>YEi{E|.@'9K-2 A͂YL^Pq(N[O|^B[nƪw%F t -Z,;Ygwc=USI~P2#UY,R%kľrW×V.CyBV9 \ No newline at end of file diff --git a/.ptp-sync/objects/f3/375bde5dd466c76c424ab27d9c242d7390f224 b/.ptp-sync/objects/f3/375bde5dd466c76c424ab27d9c242d7390f224 deleted file mode 100644 index b461b7e2..00000000 Binary files a/.ptp-sync/objects/f3/375bde5dd466c76c424ab27d9c242d7390f224 and /dev/null differ diff --git a/.ptp-sync/objects/f4/.ptp-sync-folder b/.ptp-sync/objects/f4/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/f4/34f1f0bbfd3fa231edcbb6a91856fa75bfca10 b/.ptp-sync/objects/f4/34f1f0bbfd3fa231edcbb6a91856fa75bfca10 deleted file mode 100644 index ad1a40ca..00000000 Binary files a/.ptp-sync/objects/f4/34f1f0bbfd3fa231edcbb6a91856fa75bfca10 and /dev/null differ diff --git a/.ptp-sync/objects/f4/369ab4d7ab501179964deb69e1fafb28a7769f b/.ptp-sync/objects/f4/369ab4d7ab501179964deb69e1fafb28a7769f deleted file mode 100644 index 6e534eac..00000000 Binary files a/.ptp-sync/objects/f4/369ab4d7ab501179964deb69e1fafb28a7769f and /dev/null differ diff --git a/.ptp-sync/objects/f5/.ptp-sync-folder b/.ptp-sync/objects/f5/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/f5/8c286e065da7cdf171c5be78c046d62fd0a4cb b/.ptp-sync/objects/f5/8c286e065da7cdf171c5be78c046d62fd0a4cb deleted file mode 100644 index e729c7b8..00000000 Binary files a/.ptp-sync/objects/f5/8c286e065da7cdf171c5be78c046d62fd0a4cb and /dev/null differ diff --git a/.ptp-sync/objects/f5/aed8e1c340ace9e875c7086a1b3634643f67ae b/.ptp-sync/objects/f5/aed8e1c340ace9e875c7086a1b3634643f67ae deleted file mode 100644 index 3a97839d..00000000 Binary files a/.ptp-sync/objects/f5/aed8e1c340ace9e875c7086a1b3634643f67ae and /dev/null differ diff --git a/.ptp-sync/objects/f7/.ptp-sync-folder b/.ptp-sync/objects/f7/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/f7/7ed322f0ec4a1c7b2f8357e08d25906bb5a14e b/.ptp-sync/objects/f7/7ed322f0ec4a1c7b2f8357e08d25906bb5a14e deleted file mode 100644 index 422f58ab..00000000 Binary files a/.ptp-sync/objects/f7/7ed322f0ec4a1c7b2f8357e08d25906bb5a14e and /dev/null differ diff --git a/.ptp-sync/objects/f8/.ptp-sync-folder b/.ptp-sync/objects/f8/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/f8/884ba03f1d59c40968dd0e051fe583634b22ff b/.ptp-sync/objects/f8/884ba03f1d59c40968dd0e051fe583634b22ff deleted file mode 100644 index 584fed20..00000000 Binary files a/.ptp-sync/objects/f8/884ba03f1d59c40968dd0e051fe583634b22ff and /dev/null differ diff --git a/.ptp-sync/objects/f9/.ptp-sync-folder b/.ptp-sync/objects/f9/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/f9/c0c4b4e958531361aedbf5a608b6b554c948e1 b/.ptp-sync/objects/f9/c0c4b4e958531361aedbf5a608b6b554c948e1 deleted file mode 100644 index 3d14434d..00000000 Binary files a/.ptp-sync/objects/f9/c0c4b4e958531361aedbf5a608b6b554c948e1 and /dev/null differ diff --git a/.ptp-sync/objects/fa/.ptp-sync-folder b/.ptp-sync/objects/fa/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/fa/b5bd588fec7e2690cf8996926edbb32d4e9a03 b/.ptp-sync/objects/fa/b5bd588fec7e2690cf8996926edbb32d4e9a03 deleted file mode 100644 index 8d4703fc..00000000 Binary files a/.ptp-sync/objects/fa/b5bd588fec7e2690cf8996926edbb32d4e9a03 and /dev/null differ diff --git a/.ptp-sync/objects/fc/.ptp-sync-folder b/.ptp-sync/objects/fc/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/fc/7ae1d9daf4a03e48dd8ebe681bce5675265c86 b/.ptp-sync/objects/fc/7ae1d9daf4a03e48dd8ebe681bce5675265c86 deleted file mode 100644 index afc49fe5..00000000 Binary files a/.ptp-sync/objects/fc/7ae1d9daf4a03e48dd8ebe681bce5675265c86 and /dev/null differ diff --git a/.ptp-sync/objects/fc/888964666f9bc65428eb59ba61cbc90fb17e14 b/.ptp-sync/objects/fc/888964666f9bc65428eb59ba61cbc90fb17e14 deleted file mode 100644 index a6119ecf..00000000 Binary files a/.ptp-sync/objects/fc/888964666f9bc65428eb59ba61cbc90fb17e14 and /dev/null differ diff --git a/.ptp-sync/objects/fc/fbc99b450ef7d8d3b4b3ea5f2d1d838b656dd9 b/.ptp-sync/objects/fc/fbc99b450ef7d8d3b4b3ea5f2d1d838b656dd9 deleted file mode 100644 index 8da293fe..00000000 Binary files a/.ptp-sync/objects/fc/fbc99b450ef7d8d3b4b3ea5f2d1d838b656dd9 and /dev/null differ diff --git a/.ptp-sync/objects/fd/.ptp-sync-folder b/.ptp-sync/objects/fd/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/fd/4a1af5200ab867fed85cc1d6139decb8f192a5 b/.ptp-sync/objects/fd/4a1af5200ab867fed85cc1d6139decb8f192a5 deleted file mode 100644 index a926105f..00000000 Binary files a/.ptp-sync/objects/fd/4a1af5200ab867fed85cc1d6139decb8f192a5 and /dev/null differ diff --git a/.ptp-sync/objects/fe/.ptp-sync-folder b/.ptp-sync/objects/fe/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/objects/fe/3936ff5cf59580928f56facaba134409ece653 b/.ptp-sync/objects/fe/3936ff5cf59580928f56facaba134409ece653 deleted file mode 100644 index 88c3fa25..00000000 --- a/.ptp-sync/objects/fe/3936ff5cf59580928f56facaba134409ece653 +++ /dev/null @@ -1,4 +0,0 @@ -xV1n0 WhΒi/2_!@ENH xԝ(}|z^|_%p}+(v`?r8BUJlܨsW7U) - -0Q b޹^ _,dxO C W2/?}+d8E5:hWpKՄ˷(Q(J ß -3G< vdbfy`:|F9Fhčb9 JJj78O3Bd`1LF nb:j欶-əR23ڦ7Dv!es#Q=E,gQ"!G^{&ŕaonqY.|ۑ+*j:Z%.=eL:eDu?S(B:g/ \ No newline at end of file diff --git a/.ptp-sync/objects/fe/47845587012d05360970eced71ea87e0fcc514 b/.ptp-sync/objects/fe/47845587012d05360970eced71ea87e0fcc514 deleted file mode 100644 index fffbd283..00000000 Binary files a/.ptp-sync/objects/fe/47845587012d05360970eced71ea87e0fcc514 and /dev/null differ diff --git a/.ptp-sync/refs/.ptp-sync-folder b/.ptp-sync/refs/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/refs/heads/.ptp-sync-folder b/.ptp-sync/refs/heads/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/.ptp-sync/refs/heads/master b/.ptp-sync/refs/heads/master deleted file mode 100644 index f188d95e..00000000 --- a/.ptp-sync/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -06effbd226fee46bef928d9cf76854a18cd1d752 diff --git a/.ptp-sync/refs/heads/ptp-push b/.ptp-sync/refs/heads/ptp-push deleted file mode 100644 index f188d95e..00000000 --- a/.ptp-sync/refs/heads/ptp-push +++ /dev/null @@ -1 +0,0 @@ -06effbd226fee46bef928d9cf76854a18cd1d752 diff --git a/backup/.ptp-sync-folder b/backup/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/backup/moodle2/.ptp-sync-folder b/backup/moodle2/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/classes/.ptp-sync-folder b/classes/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/classes/completion/.ptp-sync-folder b/classes/completion/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/classes/event/.ptp-sync-folder b/classes/event/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/classes/grades/.ptp-sync-folder b/classes/grades/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/classes/local/.ptp-sync-folder b/classes/local/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/classes/privacy/.ptp-sync-folder b/classes/privacy/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/classes/task/.ptp-sync-folder b/classes/task/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/db/.ptp-sync-folder b/db/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/lang/.ptp-sync-folder b/lang/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/lang/en/.ptp-sync-folder b/lang/en/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/layouts/.ptp-sync-folder b/layouts/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/lessons/.ptp-sync-folder b/lessons/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/pix/.ptp-sync-folder b/pix/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/.ptp-sync-folder b/tests/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/behat/.ptp-sync-folder b/tests/behat/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/fixtures/.ptp-sync-folder b/tests/fixtures/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/generator/.ptp-sync-folder b/tests/generator/.ptp-sync-folder deleted file mode 100644 index e69de29b..00000000