diff --git a/BTExpansionCode/BTExpansionAlgorithm.py b/BTExpansionCode/BTExpansionAlgorithm.py
index 723bcbb..4c84d78 100644
--- a/BTExpansionCode/BTExpansionAlgorithm.py
+++ b/BTExpansionCode/BTExpansionAlgorithm.py
@@ -66,8 +66,8 @@ class BTExpAlgorithm:
valid = True
# 这样剪枝存在错误性
- if conflict(c_attr):
- continue
+ # if conflict(c_attr):
+ # continue
for j in self.traversed: # 剪枝操作
if j <= c_attr:
@@ -98,6 +98,11 @@ class BTExpAlgorithm:
return bt
+ def run_algorithm_test(self, start, goal, actions):
+ self.bt = self.run_algorithm_selTree(start, goal, actions)
+ return True
+
+
def run_algorithm(self, start, goal, actions):
# goal_ls = goal.replace(" ", "")
diff --git a/BTExpansionCode/EXP/behavior_lib/cond/AnomalyDetected.py b/BTExpansionCode/EXP/behavior_lib/cond/AnomalyDetected.py
deleted file mode 100644
index 15532d4..0000000
--- a/BTExpansionCode/EXP/behavior_lib/cond/AnomalyDetected.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import py_trees as ptree
-from typing import Any
-from EXP.behavior_lib._base.Cond import Cond
-
-class AnomalyDetected(Cond):
-
-
- def __init__(self):
- super().__init__()
-
-
- def _update(self) -> ptree.common.Status:
- # if self.scene.status?
-
- light_set = {'Is(HallLight,Off)', 'Is(TubeLight,Off)', 'Is(Curtain,Off)'}
- if light_set.issubset(self.scene.state["condition_set"]):
- self.scene.state["anomaly"] = "NoLight"
- return ptree.common.Status.SUCCESS
-
- # light_set = {'Is(Curtain,On)'}
- # if light_set.issubset(self.scene.state["condition_set"]):
- # self.scene.chat_bubble("太暗了,开灯")
- # self.scene.state["anomaly"] = "NoLight"
- # return ptree.common.Status.SUCCESS
-
-
- return ptree.common.Status.FAILURE
diff --git a/BTExpansionCode/EXP/behavior_lib/cond/Chatting.py b/BTExpansionCode/EXP/behavior_lib/cond/Chatting.py
deleted file mode 100644
index 80a7065..0000000
--- a/BTExpansionCode/EXP/behavior_lib/cond/Chatting.py
+++ /dev/null
@@ -1,33 +0,0 @@
-import py_trees as ptree
-from typing import Any
-from EXP.behavior_lib._base.Cond import Cond
-
-class Chatting(Cond):
-
-
- def __init__(self):
- super().__init__()
-
-
- def _update(self) -> ptree.common.Status:
- # if self.scene.status?
- if self.scene.state['chat_list'] == []:
- return ptree.common.Status.FAILURE
-
- name,sentence = self.scene.state['chat_list'][0]
- if name == "Goal":
- return ptree.common.Status.SUCCESS
-
-
- if "customer" in self.scene.state["attention"]:
- attention_customer = self.scene.state["attention"]["customer"]
- if name == attention_customer:
- return ptree.common.Status.SUCCESS
- else:
- # self.scene.chat_bubble("请稍等一下") # 机器人输出对话
- # self.scene.wait_history.add(sentence)
-
- return ptree.common.Status.FAILURE
- else:
- self.scene.state["attention"]["customer"] = name
- return ptree.common.Status.SUCCESS
diff --git a/BTExpansionCode/EXP/behavior_lib/cond/CustomerServed.py b/BTExpansionCode/EXP/behavior_lib/cond/CustomerServed.py
deleted file mode 100644
index be6754e..0000000
--- a/BTExpansionCode/EXP/behavior_lib/cond/CustomerServed.py
+++ /dev/null
@@ -1,33 +0,0 @@
-import py_trees as ptree
-from typing import Any
-from EXP.behavior_lib._base.Cond import Cond
-import itertools
-
-class CustomerServed(Cond):
- can_be_expanded = True
-
- def __init__(self,*args):
- super().__init__(*args)
-
-
- def _update(self) -> ptree.common.Status:
- # if self.scene.status?
-
- customer = self.scene.state["attention"]["customer"]
- serve_state = self.scene.state["serve_state"][customer]
- if serve_state['served']:
- return ptree.common.Status.SUCCESS
- else:
- return ptree.common.Status.FAILURE
-
- # if self.scene.state["attention"]["customer"]
- #
- # if self.name in self.scene.state["condition_set"]:
- # return ptree.common.Status.SUCCESS
- # else:
- # return ptree.common.Status.FAILURE
-
- # if self.scene.state['chat_list'] == []:
- # return ptree.common.Status.FAILURE
- # else:
- # return ptree.common.Status.SUCCESS
diff --git a/BTExpansionCode/EXP/behavior_lib/cond/FocusingCustomer.py b/BTExpansionCode/EXP/behavior_lib/cond/FocusingCustomer.py
deleted file mode 100644
index 9c7a537..0000000
--- a/BTExpansionCode/EXP/behavior_lib/cond/FocusingCustomer.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import py_trees as ptree
-from typing import Any
-from EXP.behavior_lib._base.Cond import Cond
-
-class FocusingCustomer(Cond):
-
- def __init__(self):
- super().__init__()
-
-
- def _update(self) -> ptree.common.Status:
- # if self.scene.status?
- if "customer" in self.scene.state['attention']:
- # if self.scene.take_picture:
- # self.scene.get_obstacle_point(self.scene.db, self.status, map_ratio=self.scene.map_ratio)
- return ptree.common.Status.SUCCESS
- else:
- goal = Cond.place_xy_yaw_dic['Bar']
- self.scene.walk_to(goal[0] - 5, goal[1], 180, 180, 0)
- return ptree.common.Status.FAILURE
diff --git a/BTExpansionCode/EXP/behavior_lib/cond/HasSubTask.py b/BTExpansionCode/EXP/behavior_lib/cond/HasSubTask.py
deleted file mode 100644
index 508785a..0000000
--- a/BTExpansionCode/EXP/behavior_lib/cond/HasSubTask.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import py_trees as ptree
-from typing import Any
-from EXP.behavior_lib._base.Cond import Cond
-
-class HasSubTask(Cond):
- def __init__(self):
- super().__init__()
-
- def _update(self) -> ptree.common.Status:
- # if self.scene.status?
- if not self.scene.sub_task_seq or not self.scene.sub_task_seq.children:
- return ptree.common.Status.FAILURE
- else:
- return ptree.common.Status.SUCCESS
diff --git a/BTExpansionCode/EXP/behavior_lib/cond/NeedExplore.py b/BTExpansionCode/EXP/behavior_lib/cond/NeedExplore.py
deleted file mode 100644
index 1c477e6..0000000
--- a/BTExpansionCode/EXP/behavior_lib/cond/NeedExplore.py
+++ /dev/null
@@ -1,23 +0,0 @@
-import py_trees as ptree
-from typing import Any
-from EXP.behavior_lib._base.Cond import Cond
-
-class NeedExplore(Cond):
- def __init__(self):
- super().__init__()
-
- def _update(self) -> ptree.common.Status:
- # arg_str = self.arg_str
- #
- # if f'EnvExplored()' not in self.scene.state["condition_set"]:
- # return ptree.common.Status.SUCCESS
- # else:
- # return ptree.common.Status.FAILURE
- return ptree.common.Status.FAILURE
-
-
- # if self.scene.status?
- # if self.scene.state['map']['2d'] == None:
- # return ptree.common.Status.FAILURE
- # else:
- # return ptree.common.Status.SUCCESS
diff --git a/BTExpansionCode/EXP/behavior_lib/cond/NewCustomer.py b/BTExpansionCode/EXP/behavior_lib/cond/NewCustomer.py
deleted file mode 100644
index 812c6f0..0000000
--- a/BTExpansionCode/EXP/behavior_lib/cond/NewCustomer.py
+++ /dev/null
@@ -1,41 +0,0 @@
-import py_trees as ptree
-from typing import Any
-from EXP.behavior_lib._base.Cond import Cond
-import itertools
-
-class NewCustomer(Cond):
- can_be_expanded = False
- num_params = 0
- valid_args = ()
-
- def __init__(self,*args):
- super().__init__(*args)
-
-
- def _update(self) -> ptree.common.Status:
-
- if self.scene.show_ui:
- self.scene.get_obstacle_point(self.scene.db, self.status, map_ratio=self.scene.map_ratio)
-
- # 获取customer的位置
- # bar (247.0, 520.0, 100.0)
- close_to_bar = False
- scene = self.scene.status
- queue_list = []
- for walker in scene.walkers:
- x, y, yaw = walker.pose.X, walker.pose.Y, walker.pose.Yaw
- # 到达一定区域就打招呼
- if y >= 450 and y <= 620 and x >= 40 and x <= 100 and yaw>=-10 and yaw <=10: #450-620
- # close_to_bar = True
- queue_list.append((x,y,walker.name))
-
- if queue_list == []:
- return ptree.common.Status.FAILURE
-
- queue_list.sort()
- x,y,name = queue_list[0]
- if name not in self.scene.state["greeted_customers"]:
- self.scene.state['attention']["customer"] = name
- return ptree.common.Status.SUCCESS
- else:
- return ptree.common.Status.FAILURE
\ No newline at end of file
diff --git a/BTExpansionCode/EXP/exp2.py b/BTExpansionCode/EXP/exp2.py
index 3535971..8f08211 100644
--- a/BTExpansionCode/EXP/exp2.py
+++ b/BTExpansionCode/EXP/exp2.py
@@ -1,9 +1,13 @@
from EXP.exp_tools import collect_action_nodes,get_start,BTTest,goal_transfer_str
import copy
+import random
+seed = 1
+random.seed(seed)
-
-action_list = collect_action_nodes()
+action_list = collect_action_nodes(random)
+for act in action_list:
+ print(act.name,act.cost)
start_robowaiter = get_start()
@@ -21,15 +25,17 @@ print(goal_states)
# goal_set_ls.append(goal)
# print(goal_set_ls)
-goal_states={"On_Dessert_Bar"}
-goal_states={"On_MilkDrink_Bar2"}
+# goal_states={"On_Dessert_Bar"}
+# goal_states={"On_MilkDrink_Bar2"}
# goal_states={"Is_TubeLight_On"}
# goal_states = goal_set_ls
-# goal_states = [{'On(VacuumCup,WaterTable)'}]
+# goal_states = {'On(VacuumCup,WaterTable)'}
+# goal_states = {'At(Robot,WaterTable)'}
+# goal_states = {'Is(Table1,Clean)'}
# todo: 行为树鲁棒性测试,随机生成规划问题
# # 设置生成规划问题集的超参数:文字数、解深度、迭代次数
-seed = 1
+
BTTest(bt_algo_opt=True, goal_states=goal_states,action_list=action_list,start_robowaiter=start_robowaiter)
print("\n")
# 对比
diff --git a/BTExpansionCode/EXP/exp_tools.py b/BTExpansionCode/EXP/exp_tools.py
index c3ec0af..7eef699 100644
--- a/BTExpansionCode/EXP/exp_tools.py
+++ b/BTExpansionCode/EXP/exp_tools.py
@@ -3,7 +3,7 @@
from utils.bt.load import load_behavior_tree_lib
from OptimalBTExpansionAlgorithm import Action,OptBTExpAlgorithm
-import random
+
import copy
from tabulate import tabulate
import numpy as np
@@ -50,11 +50,45 @@ def goal_transfer_str(goal):
goal_set.append(g_set)
return goal_set
-
-def collect_action_nodes():
+def collect_action_nodes(random):
+ multiple_num=2
action_list = []
behavior_dict = load_behavior_tree_lib()
+
for cls in behavior_dict["act"].values():
+ if cls.can_be_expanded:
+ print(f"可扩展动作:{cls.__name__}, 存在{len(cls.valid_args)}个有效论域组合")
+ if cls.num_args == 0:
+ for num in range(multiple_num):
+ info = cls.get_info()
+ action_list.append(Action(name=cls.get_ins_name() + str(num), **info))
+ if cls.num_args == 1:
+ for num in range(multiple_num):
+ for arg in cls.valid_args:
+ info = cls.get_info(arg)
+ action_list.append(Action(name=cls.get_ins_name(arg) + str(num), **info))
+ if cls.num_args > 1:
+ for num in range(multiple_num):
+ for args in cls.valid_args:
+ info = cls.get_info(*args)
+ action_list.append(Action(name=cls.get_ins_name(*args) + str(num),**info))
+
+ action_list = sorted(action_list, key=lambda x: x.name)
+ for i in range(len(action_list)):
+ cost = random.randint(1, 100)
+ action_list[i].cost=cost
+ return action_list
+
+def collect_action_nodes_old(random):
+ action_list = []
+ behavior_dict = load_behavior_tree_lib()
+ behavior_ls = list()
+ # behavior_ls.sort()
+
+ behavior_ls = [cls for cls in behavior_ls]
+ behavior_ls = sorted(behavior_ls, key=lambda x: x.__class__.__name__)
+
+ for cls in behavior_ls:
if cls.can_be_expanded:
print(f"可扩展动作:{cls.__name__}, 存在{len(cls.valid_args)}个有效论域组合")
if cls.num_args == 0:
@@ -126,28 +160,17 @@ def BTTest(bt_algo_opt,goal_states,action_list,start_robowaiter):
success_count = 0
failure_count = 0
planning_time_total = 0.0
-
- states = []
+ states=[] ####???
actions = copy.deepcopy(action_list)
start = copy.deepcopy(start_robowaiter)
- state = copy.deepcopy(start)
- states.append(state)
+
error=False
for count, goal_str in enumerate(goal_states):
- # if count>=2:
- # break
- # goal = goal_str
goal = copy.deepcopy(goal_transfer_str(goal_str))
print("count:", count, "goal:", goal)
- # 生成一个规划问题,包括随机的状态和行动,以及目标状态
- states = []
- actions = copy.deepcopy(action_list)
- start = copy.deepcopy(start_robowaiter)
- state = copy.deepcopy(start)
- states.append(state)
if bt_algo_opt:
# if count==874:
@@ -165,21 +188,24 @@ def BTTest(bt_algo_opt,goal_states,action_list,start_robowaiter):
# print_action_data_table(goal, start, list(actions))
if algo.run_algorithm(start, goal, actions): # 运行算法,规划后行为树为algo.bt
total_tree_size.append(algo.bt.count_size() - 1)
- # if count==11:
+ # if count==10:
# algo.print_solution()
# algo.print_solution() # 打印行为树
# 画出行为树
- # ptml_string = algo.get_ptml()
- ptml_string = algo.get_ptml_many_act()
- file_name = "sub_task"
- file_path = f'./{file_name}.ptml'
- with open(file_path, 'w') as file:
- file.write(ptml_string)
- ptml_path = os.path.join(root_path, 'BTExpansionCode/EXP/sub_task.ptml')
- behavior_lib_path = os.path.join(root_path, 'BTExpansionCode/EXP/behavior_lib')
- bt = load_bt_from_ptml(None, ptml_path, behavior_lib_path)
- render_dot_tree(bt.root, target_directory="", name="expanded_bt", png_only=False)
+ # if count == 11:
+ # ptml_string = algo.get_ptml_many_act()
+ # file_name = "sub_task"
+ # file_path = f'./{file_name}.ptml'
+ # with open(file_path, 'w') as file:
+ # file.write(ptml_string)
+ # ptml_path = os.path.join(root_path, 'BTExpansionCode/EXP/sub_task.ptml')
+ # behavior_lib_path = os.path.join(root_path, 'BTExpansionCode/EXP/behavior_lib')
+ # bt = load_bt_from_ptml(None, ptml_path, behavior_lib_path)
+ # if bt_algo_opt:
+ # render_dot_tree(bt.root, target_directory="", name="expanded_bt_obt", png_only=False)
+ # else:
+ # render_dot_tree(bt.root, target_directory="", name="expanded_bt_xiaocai", png_only=False)
else:
print("error")
diff --git a/BTExpansionCode/EXP/expanded_bt.dot b/BTExpansionCode/EXP/expanded_bt.dot
deleted file mode 100644
index 784128a..0000000
--- a/BTExpansionCode/EXP/expanded_bt.dot
+++ /dev/null
@@ -1,641 +0,0 @@
-digraph pastafarianism {
-ordering=out;
-graph [fontname="times-roman"];
-node [fontname="times-roman"];
-edge [fontname="times-roman"];
-"b3eb0566-c750-43a0-94cc-a5ce1383d2a8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"cb3e3b43-c0b7-4ed3-879a-ff11e3eff193" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="On(MilkDrink,Bar2)", shape=ellipse, style=filled];
-"b3eb0566-c750-43a0-94cc-a5ce1383d2a8" -> "cb3e3b43-c0b7-4ed3-879a-ff11e3eff193";
-"7d290e06-450b-4d6a-873e-cb1add89b66a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"b3eb0566-c750-43a0-94cc-a5ce1383d2a8" -> "7d290e06-450b-4d6a-873e-cb1add89b66a";
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"7d290e06-450b-4d6a-873e-cb1add89b66a" -> "c16089c9-362b-4a60-8c32-f5f5bff3637d";
-"2b126874-c3aa-4db5-9d9e-506d18287d98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "2b126874-c3aa-4db5-9d9e-506d18287d98";
-"ac7a52a4-be91-4eec-b832-3d11eb642f57" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "ac7a52a4-be91-4eec-b832-3d11eb642f57";
-"cbff45f9-d7ce-46f6-a04c-33e10b807a2b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "cbff45f9-d7ce-46f6-a04c-33e10b807a2b";
-"4cd5bc0c-dd37-49cb-ac58-6f4f9030b991" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"cbff45f9-d7ce-46f6-a04c-33e10b807a2b" -> "4cd5bc0c-dd37-49cb-ac58-6f4f9030b991";
-"30fdd783-867c-4de3-b395-7318156630f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"4cd5bc0c-dd37-49cb-ac58-6f4f9030b991" -> "30fdd783-867c-4de3-b395-7318156630f0";
-"50d308bd-0b9f-4e78-9faf-09443718d733" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4cd5bc0c-dd37-49cb-ac58-6f4f9030b991" -> "50d308bd-0b9f-4e78-9faf-09443718d733";
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"50d308bd-0b9f-4e78-9faf-09443718d733" -> "4613e442-b6f7-4bcf-9e67-f0dc6873cdb3";
-"acc8e037-9586-4dea-b069-8352470356c7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "acc8e037-9586-4dea-b069-8352470356c7";
-"a4c1d6fa-915c-4d11-839f-1eb1d89bcef2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "a4c1d6fa-915c-4d11-839f-1eb1d89bcef2";
-"3c6f0dc6-37d2-4c2e-a7d5-48d4989f50b5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "3c6f0dc6-37d2-4c2e-a7d5-48d4989f50b5";
-"bf523e58-f4b7-48ed-bb19-ff3fbbdac825" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"3c6f0dc6-37d2-4c2e-a7d5-48d4989f50b5" -> "bf523e58-f4b7-48ed-bb19-ff3fbbdac825";
-"d63ceb7c-64ec-4978-9c6a-dd37071eed2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"3c6f0dc6-37d2-4c2e-a7d5-48d4989f50b5" -> "d63ceb7c-64ec-4978-9c6a-dd37071eed2d";
-"21e5f34b-df90-426d-9ed4-a5284e71b766" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"3c6f0dc6-37d2-4c2e-a7d5-48d4989f50b5" -> "21e5f34b-df90-426d-9ed4-a5284e71b766";
-"4cbecb8a-2176-493f-8ad7-2c978d8aee78" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Table)", shape=box, style=filled];
-"3c6f0dc6-37d2-4c2e-a7d5-48d4989f50b5" -> "4cbecb8a-2176-493f-8ad7-2c978d8aee78";
-"d6141816-9ec5-4f69-8294-95e6afedf2df" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "d6141816-9ec5-4f69-8294-95e6afedf2df";
-"dd03d5ad-298e-4879-b410-4cebe7e5301b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"d6141816-9ec5-4f69-8294-95e6afedf2df" -> "dd03d5ad-298e-4879-b410-4cebe7e5301b";
-"6ac400ea-28fc-4579-ae01-1271cc108eef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"d6141816-9ec5-4f69-8294-95e6afedf2df" -> "6ac400ea-28fc-4579-ae01-1271cc108eef";
-"28caac60-3bc2-4cbc-924e-592fcb75b220" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"d6141816-9ec5-4f69-8294-95e6afedf2df" -> "28caac60-3bc2-4cbc-924e-592fcb75b220";
-"fe4a0aef-1611-4dee-b36c-3d68b1768f55" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Floor)", shape=box, style=filled];
-"d6141816-9ec5-4f69-8294-95e6afedf2df" -> "fe4a0aef-1611-4dee-b36c-3d68b1768f55";
-"73993498-2bd7-42c4-92b9-af98cd9355be" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "73993498-2bd7-42c4-92b9-af98cd9355be";
-"8383d4cf-83fb-402b-8989-2eefe3527780" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"73993498-2bd7-42c4-92b9-af98cd9355be" -> "8383d4cf-83fb-402b-8989-2eefe3527780";
-"5d863aca-2e38-4d78-951a-5ee5384461ca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"73993498-2bd7-42c4-92b9-af98cd9355be" -> "5d863aca-2e38-4d78-951a-5ee5384461ca";
-"267a5828-5a67-43fe-bc23-91883e18dd5c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"73993498-2bd7-42c4-92b9-af98cd9355be" -> "267a5828-5a67-43fe-bc23-91883e18dd5c";
-"34a9bc45-5d40-4780-9e34-435ec597b474" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Chairs)", shape=box, style=filled];
-"73993498-2bd7-42c4-92b9-af98cd9355be" -> "34a9bc45-5d40-4780-9e34-435ec597b474";
-"221a92eb-77ca-4b46-a447-6ced2dde199e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "221a92eb-77ca-4b46-a447-6ced2dde199e";
-"46da3cba-4037-43ad-a28b-ed1713085eb1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"221a92eb-77ca-4b46-a447-6ced2dde199e" -> "46da3cba-4037-43ad-a28b-ed1713085eb1";
-"e1270279-2b0c-451f-96ce-cf858a78fc2a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"221a92eb-77ca-4b46-a447-6ced2dde199e" -> "e1270279-2b0c-451f-96ce-cf858a78fc2a";
-"d4885691-9035-4e4c-986f-08bde5cd1140" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"221a92eb-77ca-4b46-a447-6ced2dde199e" -> "d4885691-9035-4e4c-986f-08bde5cd1140";
-"7e4fd7f6-9542-4d1a-9c5a-b561399862dd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Table)", shape=box, style=filled];
-"221a92eb-77ca-4b46-a447-6ced2dde199e" -> "7e4fd7f6-9542-4d1a-9c5a-b561399862dd";
-"3893c45b-be0e-4870-916b-be83e76b6eca" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "3893c45b-be0e-4870-916b-be83e76b6eca";
-"ca9a5bd5-8e39-433c-9b33-0db38b7e1cef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"3893c45b-be0e-4870-916b-be83e76b6eca" -> "ca9a5bd5-8e39-433c-9b33-0db38b7e1cef";
-"38324a6a-57a8-4f85-9287-4e4242c0b576" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"3893c45b-be0e-4870-916b-be83e76b6eca" -> "38324a6a-57a8-4f85-9287-4e4242c0b576";
-"20b6fd32-d773-4df3-897f-d8f7365fa41f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"3893c45b-be0e-4870-916b-be83e76b6eca" -> "20b6fd32-d773-4df3-897f-d8f7365fa41f";
-"81f32838-fc32-42b9-b71c-8b2837afb48b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Floor)", shape=box, style=filled];
-"3893c45b-be0e-4870-916b-be83e76b6eca" -> "81f32838-fc32-42b9-b71c-8b2837afb48b";
-"7adf22ba-3552-42dd-973c-5083a2e9df3f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "7adf22ba-3552-42dd-973c-5083a2e9df3f";
-"4efe8d2f-7463-4871-b406-fef9e9b849b0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"7adf22ba-3552-42dd-973c-5083a2e9df3f" -> "4efe8d2f-7463-4871-b406-fef9e9b849b0";
-"0e23d529-cc12-4590-8a80-4e5a20d1b2c4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"7adf22ba-3552-42dd-973c-5083a2e9df3f" -> "0e23d529-cc12-4590-8a80-4e5a20d1b2c4";
-"64b4013d-3084-4187-aca5-2523f3d62d9a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"7adf22ba-3552-42dd-973c-5083a2e9df3f" -> "64b4013d-3084-4187-aca5-2523f3d62d9a";
-"adfbcb36-dc0b-4be8-9b0e-93439598f01f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Chairs)", shape=box, style=filled];
-"7adf22ba-3552-42dd-973c-5083a2e9df3f" -> "adfbcb36-dc0b-4be8-9b0e-93439598f01f";
-"318e8f0a-c94e-4004-8a50-044ba9a940e3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "318e8f0a-c94e-4004-8a50-044ba9a940e3";
-"be2b6bb9-5aee-4e23-9395-f2abed7c7760" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"318e8f0a-c94e-4004-8a50-044ba9a940e3" -> "be2b6bb9-5aee-4e23-9395-f2abed7c7760";
-"b423d136-ceba-4ccb-b0a8-88c2a2679a65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"318e8f0a-c94e-4004-8a50-044ba9a940e3" -> "b423d136-ceba-4ccb-b0a8-88c2a2679a65";
-"4bb85ff0-bf11-4384-bc1b-12d57d7864fc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Coffee)", shape=box, style=filled];
-"318e8f0a-c94e-4004-8a50-044ba9a940e3" -> "4bb85ff0-bf11-4384-bc1b-12d57d7864fc";
-"bced885c-967e-492a-8f9f-ca4f60a8d3ae" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "bced885c-967e-492a-8f9f-ca4f60a8d3ae";
-"a0fd2a70-d401-4222-aac9-32dd0cafc391" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"bced885c-967e-492a-8f9f-ca4f60a8d3ae" -> "a0fd2a70-d401-4222-aac9-32dd0cafc391";
-"5d0166a7-5577-47ad-b279-67f2826a70a9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"bced885c-967e-492a-8f9f-ca4f60a8d3ae" -> "5d0166a7-5577-47ad-b279-67f2826a70a9";
-"8ba192fa-9371-453e-8bbc-e46f9f62f67f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Water)", shape=box, style=filled];
-"bced885c-967e-492a-8f9f-ca4f60a8d3ae" -> "8ba192fa-9371-453e-8bbc-e46f9f62f67f";
-"dd4b5f3e-d3f3-447b-939a-9fbde458f34a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "dd4b5f3e-d3f3-447b-939a-9fbde458f34a";
-"11fcb082-2d08-4d47-9e4b-ed12ff852cf2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"dd4b5f3e-d3f3-447b-939a-9fbde458f34a" -> "11fcb082-2d08-4d47-9e4b-ed12ff852cf2";
-"059f330d-1acd-4f1d-8228-46226e35d352" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"dd4b5f3e-d3f3-447b-939a-9fbde458f34a" -> "059f330d-1acd-4f1d-8228-46226e35d352";
-"29df8bf2-d992-4b8e-ad29-954c97ac37e4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Dessert)", shape=box, style=filled];
-"dd4b5f3e-d3f3-447b-939a-9fbde458f34a" -> "29df8bf2-d992-4b8e-ad29-954c97ac37e4";
-"c539da29-e5e0-40f5-bd90-fbeb5d318b27" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "c539da29-e5e0-40f5-bd90-fbeb5d318b27";
-"fed083fe-4ce3-45f5-933a-105002353a6d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"c539da29-e5e0-40f5-bd90-fbeb5d318b27" -> "fed083fe-4ce3-45f5-933a-105002353a6d";
-"74d447e1-9deb-493d-becd-7717cab47f1e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"c539da29-e5e0-40f5-bd90-fbeb5d318b27" -> "74d447e1-9deb-493d-becd-7717cab47f1e";
-"39651307-860f-44d6-9e4a-f4159af82219" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Coffee)", shape=box, style=filled];
-"c539da29-e5e0-40f5-bd90-fbeb5d318b27" -> "39651307-860f-44d6-9e4a-f4159af82219";
-"a4f0ce82-2e33-4342-a7d2-7093398e97cb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "a4f0ce82-2e33-4342-a7d2-7093398e97cb";
-"474dbf8f-fac5-43d8-a0eb-425fb2bec1b4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"a4f0ce82-2e33-4342-a7d2-7093398e97cb" -> "474dbf8f-fac5-43d8-a0eb-425fb2bec1b4";
-"c251b754-ca9a-41cc-8a05-65ee5214e948" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"a4f0ce82-2e33-4342-a7d2-7093398e97cb" -> "c251b754-ca9a-41cc-8a05-65ee5214e948";
-"6cdebed6-9524-416a-8dda-1b18430b4f5c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Water)", shape=box, style=filled];
-"a4f0ce82-2e33-4342-a7d2-7093398e97cb" -> "6cdebed6-9524-416a-8dda-1b18430b4f5c";
-"8a67ce82-8716-4210-b50e-ccdafee410f4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "8a67ce82-8716-4210-b50e-ccdafee410f4";
-"3348b2d0-12ee-4857-8dc8-d5e394167931" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"8a67ce82-8716-4210-b50e-ccdafee410f4" -> "3348b2d0-12ee-4857-8dc8-d5e394167931";
-"5e00ce08-f61b-4469-a8fd-1afc9b94ed63" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"8a67ce82-8716-4210-b50e-ccdafee410f4" -> "5e00ce08-f61b-4469-a8fd-1afc9b94ed63";
-"296bfdd0-7d70-4d37-b02e-6c32bc1ba261" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Dessert)", shape=box, style=filled];
-"8a67ce82-8716-4210-b50e-ccdafee410f4" -> "296bfdd0-7d70-4d37-b02e-6c32bc1ba261";
-"4de16a97-73ae-44ed-8b98-25ea2ee0725e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "4de16a97-73ae-44ed-8b98-25ea2ee0725e";
-"2f46975d-5f7f-43ab-8f26-f3e4cd0aecb9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"4de16a97-73ae-44ed-8b98-25ea2ee0725e" -> "2f46975d-5f7f-43ab-8f26-f3e4cd0aecb9";
-"5eed14de-c9e4-4968-b2b7-0df15ced8282" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Exist(MilkDrink)", shape=ellipse, style=filled];
-"4de16a97-73ae-44ed-8b98-25ea2ee0725e" -> "5eed14de-c9e4-4968-b2b7-0df15ced8282";
-"56f947c3-a7ef-482c-88d3-1e892d03e971" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(MilkDrink)", shape=box, style=filled];
-"4de16a97-73ae-44ed-8b98-25ea2ee0725e" -> "56f947c3-a7ef-482c-88d3-1e892d03e971";
-"9761f0df-20ad-4368-b815-7576f6c9b4f4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "9761f0df-20ad-4368-b815-7576f6c9b4f4";
-"5fdcb93a-7d36-4d4d-a08c-a68e5ddb55f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"9761f0df-20ad-4368-b815-7576f6c9b4f4" -> "5fdcb93a-7d36-4d4d-a08c-a68e5ddb55f3";
-"08bf7582-b422-4976-87cf-b25b746e19fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Exist(MilkDrink)", shape=ellipse, style=filled];
-"9761f0df-20ad-4368-b815-7576f6c9b4f4" -> "08bf7582-b422-4976-87cf-b25b746e19fb";
-"e9c25e50-1e8f-4d0f-9ad1-76ca67f37002" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(MilkDrink)", shape=box, style=filled];
-"9761f0df-20ad-4368-b815-7576f6c9b4f4" -> "e9c25e50-1e8f-4d0f-9ad1-76ca67f37002";
-"10512191-862f-45f4-b4ff-daa01cfeaa44" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "10512191-862f-45f4-b4ff-daa01cfeaa44";
-"80c77308-4fb9-4cbe-9d37-f270f324e26a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"10512191-862f-45f4-b4ff-daa01cfeaa44" -> "80c77308-4fb9-4cbe-9d37-f270f324e26a";
-"dac9f6fd-9b96-4da1-ae54-d214d02bce62" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
-"10512191-862f-45f4-b4ff-daa01cfeaa44" -> "dac9f6fd-9b96-4da1-ae54-d214d02bce62";
-"dbc5d392-21be-4e06-876d-2ee6b5057385" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "dbc5d392-21be-4e06-876d-2ee6b5057385";
-"38bb3c20-e2b7-429d-aff5-56d65fd2f556" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"dbc5d392-21be-4e06-876d-2ee6b5057385" -> "38bb3c20-e2b7-429d-aff5-56d65fd2f556";
-"dd5b035d-0570-4897-9f68-edf69deca78b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
-"dbc5d392-21be-4e06-876d-2ee6b5057385" -> "dd5b035d-0570-4897-9f68-edf69deca78b";
-"001db2b2-a63b-4dbf-9891-d545b67b55dd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "001db2b2-a63b-4dbf-9891-d545b67b55dd";
-"737bea98-cadc-41be-a0cf-b224c4e8d916" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"001db2b2-a63b-4dbf-9891-d545b67b55dd" -> "737bea98-cadc-41be-a0cf-b224c4e8d916";
-"3abb4835-1ade-4d5c-8f76-706728f224f4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"001db2b2-a63b-4dbf-9891-d545b67b55dd" -> "3abb4835-1ade-4d5c-8f76-706728f224f4";
-"d1091912-39d2-4121-8498-f1028f426d91" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,Off)", shape=ellipse, style=filled];
-"001db2b2-a63b-4dbf-9891-d545b67b55dd" -> "d1091912-39d2-4121-8498-f1028f426d91";
-"c16e8314-3dae-4e78-b3be-67c178fcb824" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,On)", shape=box, style=filled];
-"001db2b2-a63b-4dbf-9891-d545b67b55dd" -> "c16e8314-3dae-4e78-b3be-67c178fcb824";
-"ba9a025d-704e-46ad-8914-f1c3cb37bf9b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "ba9a025d-704e-46ad-8914-f1c3cb37bf9b";
-"b7f165c3-8330-4d5f-a4dd-7b49ed02a2ca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"ba9a025d-704e-46ad-8914-f1c3cb37bf9b" -> "b7f165c3-8330-4d5f-a4dd-7b49ed02a2ca";
-"25286e27-8a1d-43a7-9d45-5d45f6013ddf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
-"ba9a025d-704e-46ad-8914-f1c3cb37bf9b" -> "25286e27-8a1d-43a7-9d45-5d45f6013ddf";
-"4fa868aa-8de3-4309-8962-8b111bfbe118" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"ba9a025d-704e-46ad-8914-f1c3cb37bf9b" -> "4fa868aa-8de3-4309-8962-8b111bfbe118";
-"5c24e079-1cc0-4108-ab42-3d6c70fca4eb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,Off)", shape=box, style=filled];
-"ba9a025d-704e-46ad-8914-f1c3cb37bf9b" -> "5c24e079-1cc0-4108-ab42-3d6c70fca4eb";
-"6e642af8-2255-4359-96b0-20ef4e019923" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "6e642af8-2255-4359-96b0-20ef4e019923";
-"955e69c2-7ed0-4d8f-a5fc-00204a52250a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"6e642af8-2255-4359-96b0-20ef4e019923" -> "955e69c2-7ed0-4d8f-a5fc-00204a52250a";
-"0b8fbdd3-8217-49da-a772-b03c38e46479" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,Off)", shape=ellipse, style=filled];
-"6e642af8-2255-4359-96b0-20ef4e019923" -> "0b8fbdd3-8217-49da-a772-b03c38e46479";
-"2a766e0f-b111-40d8-9e25-eddd17a632b4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"6e642af8-2255-4359-96b0-20ef4e019923" -> "2a766e0f-b111-40d8-9e25-eddd17a632b4";
-"ddcdd6cf-30db-44a4-a0c9-c1a9d8c137d8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,On)", shape=box, style=filled];
-"6e642af8-2255-4359-96b0-20ef4e019923" -> "ddcdd6cf-30db-44a4-a0c9-c1a9d8c137d8";
-"34b7a2df-c9ad-4f1f-9cb4-ec26ea94ebab" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "34b7a2df-c9ad-4f1f-9cb4-ec26ea94ebab";
-"50ce95f0-3c0f-422d-95f9-8afafdbe63a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"34b7a2df-c9ad-4f1f-9cb4-ec26ea94ebab" -> "50ce95f0-3c0f-422d-95f9-8afafdbe63a3";
-"7841cb82-d316-4229-831e-2e0cc9264060" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,On)", shape=ellipse, style=filled];
-"34b7a2df-c9ad-4f1f-9cb4-ec26ea94ebab" -> "7841cb82-d316-4229-831e-2e0cc9264060";
-"3bce6c5b-78cd-4a98-9670-e26d7a997274" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"34b7a2df-c9ad-4f1f-9cb4-ec26ea94ebab" -> "3bce6c5b-78cd-4a98-9670-e26d7a997274";
-"84cf96c8-87a2-4f74-a9f3-273ffaca42fb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,Off)", shape=box, style=filled];
-"34b7a2df-c9ad-4f1f-9cb4-ec26ea94ebab" -> "84cf96c8-87a2-4f74-a9f3-273ffaca42fb";
-"d081bc62-37e9-456c-a712-33f0416040a7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "d081bc62-37e9-456c-a712-33f0416040a7";
-"a8acf507-a0a6-47b9-b107-17519abe05ce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"d081bc62-37e9-456c-a712-33f0416040a7" -> "a8acf507-a0a6-47b9-b107-17519abe05ce";
-"9b15dd48-fa96-4f58-93e2-685297c63e8d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,Off)", shape=ellipse, style=filled];
-"d081bc62-37e9-456c-a712-33f0416040a7" -> "9b15dd48-fa96-4f58-93e2-685297c63e8d";
-"708c11c8-5c85-4e04-99a3-756a736688d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"d081bc62-37e9-456c-a712-33f0416040a7" -> "708c11c8-5c85-4e04-99a3-756a736688d9";
-"6de67c8e-3a77-4f5d-9b31-e283d79b4095" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,On)", shape=box, style=filled];
-"d081bc62-37e9-456c-a712-33f0416040a7" -> "6de67c8e-3a77-4f5d-9b31-e283d79b4095";
-"939040ff-67a9-48b2-9454-35dba4ea130a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "939040ff-67a9-48b2-9454-35dba4ea130a";
-"6c935d52-7772-4a9b-bc87-bc268bed9756" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"939040ff-67a9-48b2-9454-35dba4ea130a" -> "6c935d52-7772-4a9b-bc87-bc268bed9756";
-"242fe73d-0383-4ab4-93fd-160d423c771c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"939040ff-67a9-48b2-9454-35dba4ea130a" -> "242fe73d-0383-4ab4-93fd-160d423c771c";
-"8b928a54-08d2-4e09-beae-54650a7449a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"939040ff-67a9-48b2-9454-35dba4ea130a" -> "8b928a54-08d2-4e09-beae-54650a7449a3";
-"22de8e14-52c5-48ca-8860-f2951858f8e2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,Off)", shape=box, style=filled];
-"939040ff-67a9-48b2-9454-35dba4ea130a" -> "22de8e14-52c5-48ca-8860-f2951858f8e2";
-"32864bf8-4a64-4301-9ab6-24bec24e9836" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "32864bf8-4a64-4301-9ab6-24bec24e9836";
-"81364b16-3506-491d-8392-1adf51543636" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"32864bf8-4a64-4301-9ab6-24bec24e9836" -> "81364b16-3506-491d-8392-1adf51543636";
-"ff4c4c05-b10d-4e36-9975-a8ad9ea0cd29" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
-"32864bf8-4a64-4301-9ab6-24bec24e9836" -> "ff4c4c05-b10d-4e36-9975-a8ad9ea0cd29";
-"422e8f14-6c84-4e8f-802e-f73ea4ce3d81" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"32864bf8-4a64-4301-9ab6-24bec24e9836" -> "422e8f14-6c84-4e8f-802e-f73ea4ce3d81";
-"d37c83f7-5b70-4f65-be46-9bab9fc47868" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Up)", shape=box, style=filled];
-"32864bf8-4a64-4301-9ab6-24bec24e9836" -> "d37c83f7-5b70-4f65-be46-9bab9fc47868";
-"7459d628-3506-4bdd-a0fd-7325819e626c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "7459d628-3506-4bdd-a0fd-7325819e626c";
-"9fc39acf-713f-495a-b972-874d3c793f99" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"7459d628-3506-4bdd-a0fd-7325819e626c" -> "9fc39acf-713f-495a-b972-874d3c793f99";
-"269b4979-a414-44c6-9c01-fdd61158ac2c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
-"7459d628-3506-4bdd-a0fd-7325819e626c" -> "269b4979-a414-44c6-9c01-fdd61158ac2c";
-"b83da396-4a42-47ea-977d-df965e2ff3cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"7459d628-3506-4bdd-a0fd-7325819e626c" -> "b83da396-4a42-47ea-977d-df965e2ff3cd";
-"17a1ebd7-5cb6-4fff-b37f-bd7333ab4ddd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Down)", shape=box, style=filled];
-"7459d628-3506-4bdd-a0fd-7325819e626c" -> "17a1ebd7-5cb6-4fff-b37f-bd7333ab4ddd";
-"a3ad5938-33c0-47a7-be37-686168a53b55" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "a3ad5938-33c0-47a7-be37-686168a53b55";
-"cc12b125-bff5-42ed-b7a3-2b80725e8dec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"a3ad5938-33c0-47a7-be37-686168a53b55" -> "cc12b125-bff5-42ed-b7a3-2b80725e8dec";
-"76fc0d73-28cc-49d5-8a5c-cad3be059655" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"a3ad5938-33c0-47a7-be37-686168a53b55" -> "76fc0d73-28cc-49d5-8a5c-cad3be059655";
-"249cb1d0-00b0-4833-96d9-cd11d92ea7c2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,Off)", shape=ellipse, style=filled];
-"a3ad5938-33c0-47a7-be37-686168a53b55" -> "249cb1d0-00b0-4833-96d9-cd11d92ea7c2";
-"2a83e205-f096-45d9-983e-4343ab93e058" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,On)", shape=box, style=filled];
-"a3ad5938-33c0-47a7-be37-686168a53b55" -> "2a83e205-f096-45d9-983e-4343ab93e058";
-"073e0971-7d89-4eca-9c94-95eb314eda8f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "073e0971-7d89-4eca-9c94-95eb314eda8f";
-"5bd43615-d488-42fc-b758-09eee1cec801" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"073e0971-7d89-4eca-9c94-95eb314eda8f" -> "5bd43615-d488-42fc-b758-09eee1cec801";
-"02a46df5-6bd1-4fab-ac60-c9f0b47d3182" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
-"073e0971-7d89-4eca-9c94-95eb314eda8f" -> "02a46df5-6bd1-4fab-ac60-c9f0b47d3182";
-"98bfaf44-89ee-4ca3-ae79-8c13bd067c98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"073e0971-7d89-4eca-9c94-95eb314eda8f" -> "98bfaf44-89ee-4ca3-ae79-8c13bd067c98";
-"28e3cc40-e68f-4191-b6f0-7f9f011dcc55" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,Off)", shape=box, style=filled];
-"073e0971-7d89-4eca-9c94-95eb314eda8f" -> "28e3cc40-e68f-4191-b6f0-7f9f011dcc55";
-"f7cc45fb-a77c-4abd-aff2-7109ccc9e494" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "f7cc45fb-a77c-4abd-aff2-7109ccc9e494";
-"a936bbd6-d791-4cda-abb3-434ac6da461b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"f7cc45fb-a77c-4abd-aff2-7109ccc9e494" -> "a936bbd6-d791-4cda-abb3-434ac6da461b";
-"14797305-0794-4fe2-8703-51a5eb4e8344" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,Off)", shape=ellipse, style=filled];
-"f7cc45fb-a77c-4abd-aff2-7109ccc9e494" -> "14797305-0794-4fe2-8703-51a5eb4e8344";
-"ec5db45f-f9c8-4827-b31a-5a4b7e28de15" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"f7cc45fb-a77c-4abd-aff2-7109ccc9e494" -> "ec5db45f-f9c8-4827-b31a-5a4b7e28de15";
-"78e72fcf-00a6-4d70-86df-e38413cc8ad4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,On)", shape=box, style=filled];
-"f7cc45fb-a77c-4abd-aff2-7109ccc9e494" -> "78e72fcf-00a6-4d70-86df-e38413cc8ad4";
-"e6811893-4a0d-4533-8b5c-9a9c711c361a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "e6811893-4a0d-4533-8b5c-9a9c711c361a";
-"34701c0b-cbff-4873-9a07-e6d0ed8c6f2c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"e6811893-4a0d-4533-8b5c-9a9c711c361a" -> "34701c0b-cbff-4873-9a07-e6d0ed8c6f2c";
-"b89d488d-787d-4ccd-bfed-ae956f89c508" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,On)", shape=ellipse, style=filled];
-"e6811893-4a0d-4533-8b5c-9a9c711c361a" -> "b89d488d-787d-4ccd-bfed-ae956f89c508";
-"0a55efd3-5cb0-46b8-85a2-10a714cfea3f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"e6811893-4a0d-4533-8b5c-9a9c711c361a" -> "0a55efd3-5cb0-46b8-85a2-10a714cfea3f";
-"2bf92f3e-eb03-4c76-9745-167718e64f69" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,Off)", shape=box, style=filled];
-"e6811893-4a0d-4533-8b5c-9a9c711c361a" -> "2bf92f3e-eb03-4c76-9745-167718e64f69";
-"01869c3a-f558-44b5-aae2-1af1bd0b666f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "01869c3a-f558-44b5-aae2-1af1bd0b666f";
-"6c6c52df-e609-4e06-8b72-1ac98530a9b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"01869c3a-f558-44b5-aae2-1af1bd0b666f" -> "6c6c52df-e609-4e06-8b72-1ac98530a9b6";
-"a9c0da3d-8cbf-4a6b-9f0e-0a43e3983dd2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,Off)", shape=ellipse, style=filled];
-"01869c3a-f558-44b5-aae2-1af1bd0b666f" -> "a9c0da3d-8cbf-4a6b-9f0e-0a43e3983dd2";
-"1d08bf09-a00d-44c6-bd2a-d324c076e80b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"01869c3a-f558-44b5-aae2-1af1bd0b666f" -> "1d08bf09-a00d-44c6-bd2a-d324c076e80b";
-"c6127297-a8db-4ff9-a09b-a7c6f63a52bf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,On)", shape=box, style=filled];
-"01869c3a-f558-44b5-aae2-1af1bd0b666f" -> "c6127297-a8db-4ff9-a09b-a7c6f63a52bf";
-"cd593bf4-6f41-4455-a5df-d67372db6211" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "cd593bf4-6f41-4455-a5df-d67372db6211";
-"be40bff1-fdb0-4523-9a3a-0b711b0eef27" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"cd593bf4-6f41-4455-a5df-d67372db6211" -> "be40bff1-fdb0-4523-9a3a-0b711b0eef27";
-"e921cc5b-d565-461d-b685-6b3a70aec1f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
-"cd593bf4-6f41-4455-a5df-d67372db6211" -> "e921cc5b-d565-461d-b685-6b3a70aec1f3";
-"e6810aaf-ac01-4f22-8837-a9f0d313c3f7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"cd593bf4-6f41-4455-a5df-d67372db6211" -> "e6810aaf-ac01-4f22-8837-a9f0d313c3f7";
-"a3cfb0c8-0a2a-4284-87e0-3f36389969fa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,Off)", shape=box, style=filled];
-"cd593bf4-6f41-4455-a5df-d67372db6211" -> "a3cfb0c8-0a2a-4284-87e0-3f36389969fa";
-"255c953a-e35c-4bd7-a12b-374f106d6d1a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "255c953a-e35c-4bd7-a12b-374f106d6d1a";
-"2746be80-fc4a-4165-a13a-966b5613685c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"255c953a-e35c-4bd7-a12b-374f106d6d1a" -> "2746be80-fc4a-4165-a13a-966b5613685c";
-"4f88c26f-a89b-4029-8d34-024796a7180c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
-"255c953a-e35c-4bd7-a12b-374f106d6d1a" -> "4f88c26f-a89b-4029-8d34-024796a7180c";
-"14561f75-02ea-46de-804f-c16bf350be29" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"255c953a-e35c-4bd7-a12b-374f106d6d1a" -> "14561f75-02ea-46de-804f-c16bf350be29";
-"c7654899-39ad-468d-9730-9396e8174808" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Up)", shape=box, style=filled];
-"255c953a-e35c-4bd7-a12b-374f106d6d1a" -> "c7654899-39ad-468d-9730-9396e8174808";
-"4a17d628-61fa-4ce2-af96-54b974553d66" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4613e442-b6f7-4bcf-9e67-f0dc6873cdb3" -> "4a17d628-61fa-4ce2-af96-54b974553d66";
-"99b783b6-25f7-4119-ae88-b04aee929420" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"4a17d628-61fa-4ce2-af96-54b974553d66" -> "99b783b6-25f7-4119-ae88-b04aee929420";
-"0df71fd0-3dbb-470c-bca5-4ffc0dc02e08" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
-"4a17d628-61fa-4ce2-af96-54b974553d66" -> "0df71fd0-3dbb-470c-bca5-4ffc0dc02e08";
-"d21a5e33-b4c6-446a-b5a8-5e4136682612" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"4a17d628-61fa-4ce2-af96-54b974553d66" -> "d21a5e33-b4c6-446a-b5a8-5e4136682612";
-"8ab02be1-32af-42e7-a1db-e528e916656d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Down)", shape=box, style=filled];
-"4a17d628-61fa-4ce2-af96-54b974553d66" -> "8ab02be1-32af-42e7-a1db-e528e916656d";
-"e3534efa-3884-4192-8ca5-9bf7b8047ca3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
-"50d308bd-0b9f-4e78-9faf-09443718d733" -> "e3534efa-3884-4192-8ca5-9bf7b8047ca3";
-"1d7380cc-249b-44dc-9cfe-c4bf8988f0a2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"4cd5bc0c-dd37-49cb-ac58-6f4f9030b991" -> "1d7380cc-249b-44dc-9cfe-c4bf8988f0a2";
-"be6b509f-4e17-4fc9-95e6-b091cf2a0064" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
-"1d7380cc-249b-44dc-9cfe-c4bf8988f0a2" -> "be6b509f-4e17-4fc9-95e6-b091cf2a0064";
-"46f12db5-5245-4e82-89e7-e819024ec4fe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
-"1d7380cc-249b-44dc-9cfe-c4bf8988f0a2" -> "46f12db5-5245-4e82-89e7-e819024ec4fe";
-"3830f76b-a181-4db5-9cc1-36203fe66bea" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
-"1d7380cc-249b-44dc-9cfe-c4bf8988f0a2" -> "3830f76b-a181-4db5-9cc1-36203fe66bea";
-"a466cc8d-2b66-47e0-9381-99369e6ab41b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(Bar)", shape=box, style=filled];
-"cbff45f9-d7ce-46f6-a04c-33e10b807a2b" -> "a466cc8d-2b66-47e0-9381-99369e6ab41b";
-"c08b5eb3-0fb4-4dd6-8bb4-0dd32ab0f57c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "c08b5eb3-0fb4-4dd6-8bb4-0dd32ab0f57c";
-"1644107b-3086-48a6-8323-e8962edc3656" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"c08b5eb3-0fb4-4dd6-8bb4-0dd32ab0f57c" -> "1644107b-3086-48a6-8323-e8962edc3656";
-"3fe13d3c-0a08-419a-92aa-3de1c52116e1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(Bar)", shape=box, style=filled];
-"c08b5eb3-0fb4-4dd6-8bb4-0dd32ab0f57c" -> "3fe13d3c-0a08-419a-92aa-3de1c52116e1";
-"bf1fa06b-1e89-484c-8a4c-dcfcc37e568c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "bf1fa06b-1e89-484c-8a4c-dcfcc37e568c";
-"37cc0bd8-70d6-486f-9cfc-a4bd51f2f9a0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"bf1fa06b-1e89-484c-8a4c-dcfcc37e568c" -> "37cc0bd8-70d6-486f-9cfc-a4bd51f2f9a0";
-"dfb9ad02-9898-4ad8-a861-8121da623ae5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"37cc0bd8-70d6-486f-9cfc-a4bd51f2f9a0" -> "dfb9ad02-9898-4ad8-a861-8121da623ae5";
-"be2dcdfb-39d1-40a6-b78d-b0b6376e9c3a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
-"37cc0bd8-70d6-486f-9cfc-a4bd51f2f9a0" -> "be2dcdfb-39d1-40a6-b78d-b0b6376e9c3a";
-"083586cc-9313-4246-a37c-322179f894ba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"37cc0bd8-70d6-486f-9cfc-a4bd51f2f9a0" -> "083586cc-9313-4246-a37c-322179f894ba";
-"488f979d-00cf-493b-9f41-e46a1ab3deed" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
-"bf1fa06b-1e89-484c-8a4c-dcfcc37e568c" -> "488f979d-00cf-493b-9f41-e46a1ab3deed";
-"f8204ec2-b0b6-4cd6-b3a1-c7b88a69bb6f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "f8204ec2-b0b6-4cd6-b3a1-c7b88a69bb6f";
-"bc5dee25-9b6c-409a-ac8f-0e7272de2250" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"f8204ec2-b0b6-4cd6-b3a1-c7b88a69bb6f" -> "bc5dee25-9b6c-409a-ac8f-0e7272de2250";
-"6a154453-6991-414c-9222-558a75a4d7ed" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"bc5dee25-9b6c-409a-ac8f-0e7272de2250" -> "6a154453-6991-414c-9222-558a75a4d7ed";
-"879d0bd0-941c-4793-81a2-6d5185b32780" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"bc5dee25-9b6c-409a-ac8f-0e7272de2250" -> "879d0bd0-941c-4793-81a2-6d5185b32780";
-"147bd700-e355-42bd-9eb2-d9e848b9cb2a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
-"bc5dee25-9b6c-409a-ac8f-0e7272de2250" -> "147bd700-e355-42bd-9eb2-d9e848b9cb2a";
-"adddbafa-7866-447f-b51c-cc6fd375097e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
-"f8204ec2-b0b6-4cd6-b3a1-c7b88a69bb6f" -> "adddbafa-7866-447f-b51c-cc6fd375097e";
-"a250d5e9-3079-478b-9bab-b92bc372a6ef" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "a250d5e9-3079-478b-9bab-b92bc372a6ef";
-"542f7157-5919-4494-b1c7-8347fde1ba81" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"a250d5e9-3079-478b-9bab-b92bc372a6ef" -> "542f7157-5919-4494-b1c7-8347fde1ba81";
-"4203eb66-331b-4523-9e0d-bd352085372e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"542f7157-5919-4494-b1c7-8347fde1ba81" -> "4203eb66-331b-4523-9e0d-bd352085372e";
-"1344d196-da12-4225-9e6f-694dc08cb6e4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
-"542f7157-5919-4494-b1c7-8347fde1ba81" -> "1344d196-da12-4225-9e6f-694dc08cb6e4";
-"01e9f37e-743e-491a-b156-20321d0e08de" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"542f7157-5919-4494-b1c7-8347fde1ba81" -> "01e9f37e-743e-491a-b156-20321d0e08de";
-"e645636e-828d-4340-9322-5e77c021fa79" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
-"a250d5e9-3079-478b-9bab-b92bc372a6ef" -> "e645636e-828d-4340-9322-5e77c021fa79";
-"7940c5fc-8811-458c-8ba6-20c1af78eb78" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "7940c5fc-8811-458c-8ba6-20c1af78eb78";
-"a6aa9a54-860b-47a0-a740-56f627904462" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"7940c5fc-8811-458c-8ba6-20c1af78eb78" -> "a6aa9a54-860b-47a0-a740-56f627904462";
-"423f937e-01a3-4792-9289-69802f12f401" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"a6aa9a54-860b-47a0-a740-56f627904462" -> "423f937e-01a3-4792-9289-69802f12f401";
-"6a7a49d5-c4ab-4e2a-9a88-b53a34c13344" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"a6aa9a54-860b-47a0-a740-56f627904462" -> "6a7a49d5-c4ab-4e2a-9a88-b53a34c13344";
-"ba9d685b-2598-403f-bcda-db7037e42d3a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
-"a6aa9a54-860b-47a0-a740-56f627904462" -> "ba9d685b-2598-403f-bcda-db7037e42d3a";
-"4478c605-5af6-4de4-b76f-0153ce265b80" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
-"7940c5fc-8811-458c-8ba6-20c1af78eb78" -> "4478c605-5af6-4de4-b76f-0153ce265b80";
-"01dcea8e-eca2-4b08-994f-b91577ff857d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "01dcea8e-eca2-4b08-994f-b91577ff857d";
-"29d46846-cbac-4f70-bd03-79b1cef1c6ef" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"01dcea8e-eca2-4b08-994f-b91577ff857d" -> "29d46846-cbac-4f70-bd03-79b1cef1c6ef";
-"de004850-94e6-4951-a449-1f67780d4234" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
-"29d46846-cbac-4f70-bd03-79b1cef1c6ef" -> "de004850-94e6-4951-a449-1f67780d4234";
-"bb964d79-cc71-49e4-b3d5-b7640ebbdb4d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"29d46846-cbac-4f70-bd03-79b1cef1c6ef" -> "bb964d79-cc71-49e4-b3d5-b7640ebbdb4d";
-"a7d83f00-dba0-4ee2-bfc5-f48c0a0cfd33" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"29d46846-cbac-4f70-bd03-79b1cef1c6ef" -> "a7d83f00-dba0-4ee2-bfc5-f48c0a0cfd33";
-"b2cb2241-6e78-4bb4-be39-b8a5f8de311a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
-"01dcea8e-eca2-4b08-994f-b91577ff857d" -> "b2cb2241-6e78-4bb4-be39-b8a5f8de311a";
-"182ba254-1346-40aa-b578-4a6bb67fee5a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "182ba254-1346-40aa-b578-4a6bb67fee5a";
-"e036ee91-0689-4407-9702-89c9cb1df247" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"182ba254-1346-40aa-b578-4a6bb67fee5a" -> "e036ee91-0689-4407-9702-89c9cb1df247";
-"3c2592a4-0500-413b-89ac-636b75739834" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
-"e036ee91-0689-4407-9702-89c9cb1df247" -> "3c2592a4-0500-413b-89ac-636b75739834";
-"6278e4b6-e5c0-47ab-a869-6e5203caa2f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"e036ee91-0689-4407-9702-89c9cb1df247" -> "6278e4b6-e5c0-47ab-a869-6e5203caa2f0";
-"d4f187d2-0da7-403b-aca9-3b6f997ee8c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"e036ee91-0689-4407-9702-89c9cb1df247" -> "d4f187d2-0da7-403b-aca9-3b6f997ee8c3";
-"5ba8a58b-b041-4aee-8a04-9b3b45a9f16d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
-"182ba254-1346-40aa-b578-4a6bb67fee5a" -> "5ba8a58b-b041-4aee-8a04-9b3b45a9f16d";
-"51c6f61b-112c-4e76-9cfa-b2bea8a11ec0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "51c6f61b-112c-4e76-9cfa-b2bea8a11ec0";
-"0768ab4b-fdd9-4996-8834-a162ea5de5ef" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"51c6f61b-112c-4e76-9cfa-b2bea8a11ec0" -> "0768ab4b-fdd9-4996-8834-a162ea5de5ef";
-"3929c98a-3444-4f2b-9f23-9572bf5bfbeb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"0768ab4b-fdd9-4996-8834-a162ea5de5ef" -> "3929c98a-3444-4f2b-9f23-9572bf5bfbeb";
-"22181a9b-e398-491a-9c57-d53c16ed51ea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"0768ab4b-fdd9-4996-8834-a162ea5de5ef" -> "22181a9b-e398-491a-9c57-d53c16ed51ea";
-"3118f39d-cf42-4209-bfee-6ef3461dafc6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
-"0768ab4b-fdd9-4996-8834-a162ea5de5ef" -> "3118f39d-cf42-4209-bfee-6ef3461dafc6";
-"9d0993d8-e2db-4cac-aba1-218bec400b24" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
-"51c6f61b-112c-4e76-9cfa-b2bea8a11ec0" -> "9d0993d8-e2db-4cac-aba1-218bec400b24";
-"17e658ad-112c-4274-b068-a8357db2555e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "17e658ad-112c-4274-b068-a8357db2555e";
-"54d7cc55-402c-4390-9d36-17f5bbeef1e8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"17e658ad-112c-4274-b068-a8357db2555e" -> "54d7cc55-402c-4390-9d36-17f5bbeef1e8";
-"6947e039-aa99-47b9-9294-78fcbc113cc9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"54d7cc55-402c-4390-9d36-17f5bbeef1e8" -> "6947e039-aa99-47b9-9294-78fcbc113cc9";
-"bc51cc2e-26a2-47a1-85c9-ab3a6317aeb3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
-"54d7cc55-402c-4390-9d36-17f5bbeef1e8" -> "bc51cc2e-26a2-47a1-85c9-ab3a6317aeb3";
-"b7e3228e-a634-4073-8bdc-99b2d4b7dc45" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"54d7cc55-402c-4390-9d36-17f5bbeef1e8" -> "b7e3228e-a634-4073-8bdc-99b2d4b7dc45";
-"abfb9be4-85cc-4ab5-bc95-bbee33a0ddd3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
-"17e658ad-112c-4274-b068-a8357db2555e" -> "abfb9be4-85cc-4ab5-bc95-bbee33a0ddd3";
-"f6e6bf0b-5751-4c23-a432-4dcea9143cda" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "f6e6bf0b-5751-4c23-a432-4dcea9143cda";
-"291447ed-1951-4814-b8be-730d9b57e51a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"f6e6bf0b-5751-4c23-a432-4dcea9143cda" -> "291447ed-1951-4814-b8be-730d9b57e51a";
-"2774cd34-2c04-4174-84c6-81548241f78f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"291447ed-1951-4814-b8be-730d9b57e51a" -> "2774cd34-2c04-4174-84c6-81548241f78f";
-"b1e770ad-c211-475f-b3d8-a13e23063a1d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"291447ed-1951-4814-b8be-730d9b57e51a" -> "b1e770ad-c211-475f-b3d8-a13e23063a1d";
-"26cbe8ac-83b4-4b6b-bf66-c4a591e3031b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
-"291447ed-1951-4814-b8be-730d9b57e51a" -> "26cbe8ac-83b4-4b6b-bf66-c4a591e3031b";
-"a970259e-20f6-434f-8ded-4f37db6d76cf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
-"f6e6bf0b-5751-4c23-a432-4dcea9143cda" -> "a970259e-20f6-434f-8ded-4f37db6d76cf";
-"b8ae0f43-a7a9-4705-b9e3-3eb3bb5bd64f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "b8ae0f43-a7a9-4705-b9e3-3eb3bb5bd64f";
-"3746b6f6-0c15-4b64-94e5-ec74246cc303" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"b8ae0f43-a7a9-4705-b9e3-3eb3bb5bd64f" -> "3746b6f6-0c15-4b64-94e5-ec74246cc303";
-"b43c7cd5-f898-44b7-a6e4-5d12667ee735" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"3746b6f6-0c15-4b64-94e5-ec74246cc303" -> "b43c7cd5-f898-44b7-a6e4-5d12667ee735";
-"dc10f464-b59f-4bdb-8782-6b92d0a78ddc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
-"3746b6f6-0c15-4b64-94e5-ec74246cc303" -> "dc10f464-b59f-4bdb-8782-6b92d0a78ddc";
-"8ec27e4a-a76d-4518-917a-226a6926b9c1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"3746b6f6-0c15-4b64-94e5-ec74246cc303" -> "8ec27e4a-a76d-4518-917a-226a6926b9c1";
-"c3989486-941b-4098-9f3a-240f3fe88e4b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
-"b8ae0f43-a7a9-4705-b9e3-3eb3bb5bd64f" -> "c3989486-941b-4098-9f3a-240f3fe88e4b";
-"a7d48b08-1bb2-4a73-9c65-42491a102689" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "a7d48b08-1bb2-4a73-9c65-42491a102689";
-"382a4b70-3888-42ec-8f64-fea45299647e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"a7d48b08-1bb2-4a73-9c65-42491a102689" -> "382a4b70-3888-42ec-8f64-fea45299647e";
-"2076aeb9-be66-4686-bb73-358ba2022941" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
-"382a4b70-3888-42ec-8f64-fea45299647e" -> "2076aeb9-be66-4686-bb73-358ba2022941";
-"f4b6f980-21fa-4cf6-b803-7c07221cebc5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"382a4b70-3888-42ec-8f64-fea45299647e" -> "f4b6f980-21fa-4cf6-b803-7c07221cebc5";
-"fb5c1657-e9c5-485f-bd4f-a8dd29aed3ae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"382a4b70-3888-42ec-8f64-fea45299647e" -> "fb5c1657-e9c5-485f-bd4f-a8dd29aed3ae";
-"12d87012-108b-439e-883f-1b419e84041a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
-"a7d48b08-1bb2-4a73-9c65-42491a102689" -> "12d87012-108b-439e-883f-1b419e84041a";
-"4bc12752-f3d7-4627-a627-ec1f43520d8f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "4bc12752-f3d7-4627-a627-ec1f43520d8f";
-"4f162e9a-e745-49e2-b92d-7a6c6cf0b2e5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"4bc12752-f3d7-4627-a627-ec1f43520d8f" -> "4f162e9a-e745-49e2-b92d-7a6c6cf0b2e5";
-"523fd084-b5f2-4657-9dc0-0033395e59c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"4f162e9a-e745-49e2-b92d-7a6c6cf0b2e5" -> "523fd084-b5f2-4657-9dc0-0033395e59c9";
-"22bc3fe5-d861-4798-915b-51e7f785c223" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
-"4f162e9a-e745-49e2-b92d-7a6c6cf0b2e5" -> "22bc3fe5-d861-4798-915b-51e7f785c223";
-"a95802ce-bf2a-44ee-aae6-0fa4a95e3a25" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"4f162e9a-e745-49e2-b92d-7a6c6cf0b2e5" -> "a95802ce-bf2a-44ee-aae6-0fa4a95e3a25";
-"4d8f8dc8-71c7-439a-aa6c-9864cd9601ad" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
-"4bc12752-f3d7-4627-a627-ec1f43520d8f" -> "4d8f8dc8-71c7-439a-aa6c-9864cd9601ad";
-"4d7755da-33ed-47e1-9983-a20a75a8f42e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "4d7755da-33ed-47e1-9983-a20a75a8f42e";
-"848a2572-11f3-4d2c-bb7b-628b79b7dc70" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
-"4d7755da-33ed-47e1-9983-a20a75a8f42e" -> "848a2572-11f3-4d2c-bb7b-628b79b7dc70";
-"918a6e60-f9f6-4354-b865-4498cca28ff4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"848a2572-11f3-4d2c-bb7b-628b79b7dc70" -> "918a6e60-f9f6-4354-b865-4498cca28ff4";
-"e4e4c515-81e2-4261-8e59-5dc3109fb871" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"848a2572-11f3-4d2c-bb7b-628b79b7dc70" -> "e4e4c515-81e2-4261-8e59-5dc3109fb871";
-"3fc7322f-76f4-4513-a768-97f564d246b8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
-"848a2572-11f3-4d2c-bb7b-628b79b7dc70" -> "3fc7322f-76f4-4513-a768-97f564d246b8";
-"10cabde0-a935-4cda-b210-c773ccc0ded6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
-"4d7755da-33ed-47e1-9983-a20a75a8f42e" -> "10cabde0-a935-4cda-b210-c773ccc0ded6";
-"dc5cb3dd-f6e7-4b93-b788-9f2862a0cfa9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "dc5cb3dd-f6e7-4b93-b788-9f2862a0cfa9";
-"36b36b29-fa15-4d42-b625-f2c234167673" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"dc5cb3dd-f6e7-4b93-b788-9f2862a0cfa9" -> "36b36b29-fa15-4d42-b625-f2c234167673";
-"08c98ebc-1ac7-4a01-93cd-9bccd7a48e72" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
-"dc5cb3dd-f6e7-4b93-b788-9f2862a0cfa9" -> "08c98ebc-1ac7-4a01-93cd-9bccd7a48e72";
-"b0d4dfdb-2e86-4116-ab4b-7aca1c0c253f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"dc5cb3dd-f6e7-4b93-b788-9f2862a0cfa9" -> "b0d4dfdb-2e86-4116-ab4b-7aca1c0c253f";
-"78351f8b-40d9-4ca2-a7e4-51ecc67cdbdb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
-"dc5cb3dd-f6e7-4b93-b788-9f2862a0cfa9" -> "78351f8b-40d9-4ca2-a7e4-51ecc67cdbdb";
-"7798fb41-706e-4fdc-86f5-73f69e98d58b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "7798fb41-706e-4fdc-86f5-73f69e98d58b";
-"cd2b377e-a73a-4d23-b97a-caebd44d093b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"7798fb41-706e-4fdc-86f5-73f69e98d58b" -> "cd2b377e-a73a-4d23-b97a-caebd44d093b";
-"f119569e-3499-41d1-9017-e5549bdbd17b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"7798fb41-706e-4fdc-86f5-73f69e98d58b" -> "f119569e-3499-41d1-9017-e5549bdbd17b";
-"9f75f355-b50f-4af9-87ca-3dbc72919f27" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
-"7798fb41-706e-4fdc-86f5-73f69e98d58b" -> "9f75f355-b50f-4af9-87ca-3dbc72919f27";
-"67338261-a68a-4a3e-a228-d031f7fd49d5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
-"7798fb41-706e-4fdc-86f5-73f69e98d58b" -> "67338261-a68a-4a3e-a228-d031f7fd49d5";
-"d27bfb36-f2e6-492a-87f7-0c6517348697" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "d27bfb36-f2e6-492a-87f7-0c6517348697";
-"03893732-2163-41b9-afb8-f31b900d5bcd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"d27bfb36-f2e6-492a-87f7-0c6517348697" -> "03893732-2163-41b9-afb8-f31b900d5bcd";
-"5ce16741-ca81-4f3d-97f3-042a79f2ae1d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
-"d27bfb36-f2e6-492a-87f7-0c6517348697" -> "5ce16741-ca81-4f3d-97f3-042a79f2ae1d";
-"0445fc42-f9cd-49c5-b561-66d220e95c20" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"d27bfb36-f2e6-492a-87f7-0c6517348697" -> "0445fc42-f9cd-49c5-b561-66d220e95c20";
-"60e2142c-ca48-4936-9f74-15860e8c388a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
-"d27bfb36-f2e6-492a-87f7-0c6517348697" -> "60e2142c-ca48-4936-9f74-15860e8c388a";
-"40493118-57ee-4082-952d-147f8ef32b53" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "40493118-57ee-4082-952d-147f8ef32b53";
-"46f3f8a7-d9e3-4500-b125-6b65fad814f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"40493118-57ee-4082-952d-147f8ef32b53" -> "46f3f8a7-d9e3-4500-b125-6b65fad814f2";
-"e834c89f-c3a1-481a-964f-d17712a234b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"40493118-57ee-4082-952d-147f8ef32b53" -> "e834c89f-c3a1-481a-964f-d17712a234b2";
-"f6581294-8006-4897-96f0-2f8a63d43faf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
-"40493118-57ee-4082-952d-147f8ef32b53" -> "f6581294-8006-4897-96f0-2f8a63d43faf";
-"07a610ed-90d4-4f8c-9c3d-60cf62877f5a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
-"40493118-57ee-4082-952d-147f8ef32b53" -> "07a610ed-90d4-4f8c-9c3d-60cf62877f5a";
-"b8b7c80e-ab74-4167-b090-d911d9279854" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "b8b7c80e-ab74-4167-b090-d911d9279854";
-"7c4fe8f0-3960-40ec-9c6b-ed86e85e4300" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
-"b8b7c80e-ab74-4167-b090-d911d9279854" -> "7c4fe8f0-3960-40ec-9c6b-ed86e85e4300";
-"ae561e81-6131-4f61-a626-8c7007d609d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"b8b7c80e-ab74-4167-b090-d911d9279854" -> "ae561e81-6131-4f61-a626-8c7007d609d4";
-"724134fb-4b97-4949-8501-4cde449d3859" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"b8b7c80e-ab74-4167-b090-d911d9279854" -> "724134fb-4b97-4949-8501-4cde449d3859";
-"70572626-cfc5-4864-9696-3f39ea3e7c72" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
-"b8b7c80e-ab74-4167-b090-d911d9279854" -> "70572626-cfc5-4864-9696-3f39ea3e7c72";
-"083162b7-6455-4358-809e-6ee578edc7ae" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "083162b7-6455-4358-809e-6ee578edc7ae";
-"d12c3c7a-2c88-4636-9b73-6f782f771e9d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
-"083162b7-6455-4358-809e-6ee578edc7ae" -> "d12c3c7a-2c88-4636-9b73-6f782f771e9d";
-"3fe89acf-9022-47a4-9d61-1d2b250ed0f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"083162b7-6455-4358-809e-6ee578edc7ae" -> "3fe89acf-9022-47a4-9d61-1d2b250ed0f6";
-"01b8ff5c-8365-4c6e-9c4f-edceed501fa0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"083162b7-6455-4358-809e-6ee578edc7ae" -> "01b8ff5c-8365-4c6e-9c4f-edceed501fa0";
-"e7e046b8-72d5-4c9d-89c3-b07456dc7b73" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
-"083162b7-6455-4358-809e-6ee578edc7ae" -> "e7e046b8-72d5-4c9d-89c3-b07456dc7b73";
-"b83f73a7-b5e8-4049-ae43-05e6a16e96c2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "b83f73a7-b5e8-4049-ae43-05e6a16e96c2";
-"b41a7721-c955-4184-a1ed-72047647e3c1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"b83f73a7-b5e8-4049-ae43-05e6a16e96c2" -> "b41a7721-c955-4184-a1ed-72047647e3c1";
-"9fb804e2-044d-44a9-8c41-40174ff70004" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"b83f73a7-b5e8-4049-ae43-05e6a16e96c2" -> "9fb804e2-044d-44a9-8c41-40174ff70004";
-"01c6142c-2ff7-4a92-a91e-27575850af81" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
-"b83f73a7-b5e8-4049-ae43-05e6a16e96c2" -> "01c6142c-2ff7-4a92-a91e-27575850af81";
-"d9c9a356-a5f8-42ad-b3f0-9129ed5d35c2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
-"b83f73a7-b5e8-4049-ae43-05e6a16e96c2" -> "d9c9a356-a5f8-42ad-b3f0-9129ed5d35c2";
-"89cd87e5-f4a0-493c-9460-819a9d0f8870" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "89cd87e5-f4a0-493c-9460-819a9d0f8870";
-"aefd565a-f6c7-4911-85cf-188476492418" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"89cd87e5-f4a0-493c-9460-819a9d0f8870" -> "aefd565a-f6c7-4911-85cf-188476492418";
-"c0ccd327-af6f-4fef-adb7-b1411d14a59e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
-"89cd87e5-f4a0-493c-9460-819a9d0f8870" -> "c0ccd327-af6f-4fef-adb7-b1411d14a59e";
-"466fe1ba-2890-4691-861f-d29b70a5e11f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"89cd87e5-f4a0-493c-9460-819a9d0f8870" -> "466fe1ba-2890-4691-861f-d29b70a5e11f";
-"2abeda39-c181-4b3e-b5fb-fa9517c4c17d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
-"89cd87e5-f4a0-493c-9460-819a9d0f8870" -> "2abeda39-c181-4b3e-b5fb-fa9517c4c17d";
-"47e4b3b0-160e-47c7-952c-ba6301d69ca7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "47e4b3b0-160e-47c7-952c-ba6301d69ca7";
-"b98ba6db-8280-4490-9e84-49487fde3390" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"47e4b3b0-160e-47c7-952c-ba6301d69ca7" -> "b98ba6db-8280-4490-9e84-49487fde3390";
-"4e420313-0d1c-48dd-966d-ea13066fc57c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"47e4b3b0-160e-47c7-952c-ba6301d69ca7" -> "4e420313-0d1c-48dd-966d-ea13066fc57c";
-"4c67a617-c585-4cff-a7af-80a296d284bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
-"47e4b3b0-160e-47c7-952c-ba6301d69ca7" -> "4c67a617-c585-4cff-a7af-80a296d284bd";
-"c02c9dd2-069f-4e1b-a172-f4aa3e47efb9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
-"47e4b3b0-160e-47c7-952c-ba6301d69ca7" -> "c02c9dd2-069f-4e1b-a172-f4aa3e47efb9";
-"64b7af7f-af4e-4ac0-a762-454230c2182b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "64b7af7f-af4e-4ac0-a762-454230c2182b";
-"4255d0f0-5351-47ec-8bcc-cb920993938e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"64b7af7f-af4e-4ac0-a762-454230c2182b" -> "4255d0f0-5351-47ec-8bcc-cb920993938e";
-"100f8154-f3d0-477e-a5ec-73ee2073c26a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
-"64b7af7f-af4e-4ac0-a762-454230c2182b" -> "100f8154-f3d0-477e-a5ec-73ee2073c26a";
-"166c120d-cb73-44c6-8731-c1424a64cbc0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"64b7af7f-af4e-4ac0-a762-454230c2182b" -> "166c120d-cb73-44c6-8731-c1424a64cbc0";
-"271a95d8-3651-4c9e-936c-dbdcc69e354e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
-"64b7af7f-af4e-4ac0-a762-454230c2182b" -> "271a95d8-3651-4c9e-936c-dbdcc69e354e";
-"7b9e2e65-34e2-4727-b92a-6e433410a967" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "7b9e2e65-34e2-4727-b92a-6e433410a967";
-"e374c32a-9a09-4f00-9776-c568b38c7838" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
-"7b9e2e65-34e2-4727-b92a-6e433410a967" -> "e374c32a-9a09-4f00-9776-c568b38c7838";
-"7ec7305a-ee6e-4410-9e7d-8fdbb72a9d91" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"7b9e2e65-34e2-4727-b92a-6e433410a967" -> "7ec7305a-ee6e-4410-9e7d-8fdbb72a9d91";
-"be476221-722d-4cb4-9113-5e359e524e71" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"7b9e2e65-34e2-4727-b92a-6e433410a967" -> "be476221-722d-4cb4-9113-5e359e524e71";
-"0605a547-3a8f-4502-8efa-1896d0b6cf1e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
-"7b9e2e65-34e2-4727-b92a-6e433410a967" -> "0605a547-3a8f-4502-8efa-1896d0b6cf1e";
-"d86a7a63-841b-427c-bfb1-a0348e95f899" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "d86a7a63-841b-427c-bfb1-a0348e95f899";
-"680344f3-a7c8-4c39-a0d2-8235f99a7d5e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"d86a7a63-841b-427c-bfb1-a0348e95f899" -> "680344f3-a7c8-4c39-a0d2-8235f99a7d5e";
-"6d77ce27-4ee9-4d98-aa6a-2dc0d80af7c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
-"d86a7a63-841b-427c-bfb1-a0348e95f899" -> "6d77ce27-4ee9-4d98-aa6a-2dc0d80af7c3";
-"68455b9a-fe5a-4b55-b34a-3b286769af32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"d86a7a63-841b-427c-bfb1-a0348e95f899" -> "68455b9a-fe5a-4b55-b34a-3b286769af32";
-"c2c8a77b-4424-4660-b04a-1badc4d4c918" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
-"d86a7a63-841b-427c-bfb1-a0348e95f899" -> "c2c8a77b-4424-4660-b04a-1badc4d4c918";
-"992d22b0-61b3-4bff-a0b3-ffb39ed57a83" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"c16089c9-362b-4a60-8c32-f5f5bff3637d" -> "992d22b0-61b3-4bff-a0b3-ffb39ed57a83";
-"0304efc1-278b-4123-9279-e81912d89f27" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"992d22b0-61b3-4bff-a0b3-ffb39ed57a83" -> "0304efc1-278b-4123-9279-e81912d89f27";
-"7a2a94bc-9582-496d-bd8e-49d683fedfaf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"992d22b0-61b3-4bff-a0b3-ffb39ed57a83" -> "7a2a94bc-9582-496d-bd8e-49d683fedfaf";
-"82ebb4a8-ecd2-421b-8477-59c0795e76cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
-"992d22b0-61b3-4bff-a0b3-ffb39ed57a83" -> "82ebb4a8-ecd2-421b-8477-59c0795e76cc";
-"0a56cf17-de4c-4dea-b77f-fd201707d0f3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
-"992d22b0-61b3-4bff-a0b3-ffb39ed57a83" -> "0a56cf17-de4c-4dea-b77f-fd201707d0f3";
-"64bdab11-8733-486c-8be1-42ee6ea6972e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(MilkDrink,Bar)", shape=box, style=filled];
-"7d290e06-450b-4d6a-873e-cb1add89b66a" -> "64bdab11-8733-486c-8be1-42ee6ea6972e";
-"fffb61a5-c080-435f-b642-96656a4c8bd1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
-"b3eb0566-c750-43a0-94cc-a5ce1383d2a8" -> "fffb61a5-c080-435f-b642-96656a4c8bd1";
-"91f406b6-4141-4b9d-8685-3358c1f38016" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
-"fffb61a5-c080-435f-b642-96656a4c8bd1" -> "91f406b6-4141-4b9d-8685-3358c1f38016";
-"461000b9-b5b4-41d8-93be-0daca9273dcf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
-"fffb61a5-c080-435f-b642-96656a4c8bd1" -> "461000b9-b5b4-41d8-93be-0daca9273dcf";
-"4a2642bb-b191-45e1-82f5-7303cb7dddd8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(MilkDrink,Bar)", shape=box, style=filled];
-"fffb61a5-c080-435f-b642-96656a4c8bd1" -> "4a2642bb-b191-45e1-82f5-7303cb7dddd8";
-}
diff --git a/BTExpansionCode/EXP/expanded_bt.png b/BTExpansionCode/EXP/expanded_bt.png
deleted file mode 100644
index 501bdcb..0000000
Binary files a/BTExpansionCode/EXP/expanded_bt.png and /dev/null differ
diff --git a/BTExpansionCode/EXP/expanded_bt.svg b/BTExpansionCode/EXP/expanded_bt.svg
deleted file mode 100644
index 05090e9..0000000
--- a/BTExpansionCode/EXP/expanded_bt.svg
+++ /dev/null
@@ -1,3823 +0,0 @@
-
-
-
-
-
diff --git a/BTExpansionCode/EXP/expanded_bt_obt.dot b/BTExpansionCode/EXP/expanded_bt_obt.dot
new file mode 100644
index 0000000..91d0a17
--- /dev/null
+++ b/BTExpansionCode/EXP/expanded_bt_obt.dot
@@ -0,0 +1,3463 @@
+digraph pastafarianism {
+ordering=out;
+graph [fontname="times-roman"];
+node [fontname="times-roman"];
+edge [fontname="times-roman"];
+"907c9cc7-0491-4cd1-9e87-7ebbfc7d3af6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c98d3c4f-a361-49ba-9243-59937dab3a87" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="On(MilkDrink,Bar2)", shape=ellipse, style=filled];
+"907c9cc7-0491-4cd1-9e87-7ebbfc7d3af6" -> "c98d3c4f-a361-49ba-9243-59937dab3a87";
+"e3b892b9-8a14-4221-9a0b-b6efa1530087" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"907c9cc7-0491-4cd1-9e87-7ebbfc7d3af6" -> "e3b892b9-8a14-4221-9a0b-b6efa1530087";
+"934b732c-df1e-4e75-b131-84752e916551" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"e3b892b9-8a14-4221-9a0b-b6efa1530087" -> "934b732c-df1e-4e75-b131-84752e916551";
+"3ac5de08-3ae5-4fb2-9a86-7d3953ba280f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e3b892b9-8a14-4221-9a0b-b6efa1530087" -> "3ac5de08-3ae5-4fb2-9a86-7d3953ba280f";
+"333add30-4ca7-4f9c-8ccf-f3141eb95a6c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3ac5de08-3ae5-4fb2-9a86-7d3953ba280f" -> "333add30-4ca7-4f9c-8ccf-f3141eb95a6c";
+"e61abeb4-158f-4ca0-a3fd-129e3ea413ab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"333add30-4ca7-4f9c-8ccf-f3141eb95a6c" -> "e61abeb4-158f-4ca0-a3fd-129e3ea413ab";
+"ae0e6ec3-4df3-4e80-969f-d0f7367d1326" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(MilkDrink,Bar)", shape=box, style=filled];
+"333add30-4ca7-4f9c-8ccf-f3141eb95a6c" -> "ae0e6ec3-4df3-4e80-969f-d0f7367d1326";
+"1814b319-a1a2-4002-9081-eb4fb9a82e07" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(Bar)", shape=box, style=filled];
+"3ac5de08-3ae5-4fb2-9a86-7d3953ba280f" -> "1814b319-a1a2-4002-9081-eb4fb9a82e07";
+"85dc3394-0cc9-4ae9-805a-677f9b97488e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"907c9cc7-0491-4cd1-9e87-7ebbfc7d3af6" -> "85dc3394-0cc9-4ae9-805a-677f9b97488e";
+"e5024fd5-49b0-4b3e-b193-d8602bd97d19" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"85dc3394-0cc9-4ae9-805a-677f9b97488e" -> "e5024fd5-49b0-4b3e-b193-d8602bd97d19";
+"c5926178-493b-4995-82c3-48369f2d1b1e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"85dc3394-0cc9-4ae9-805a-677f9b97488e" -> "c5926178-493b-4995-82c3-48369f2d1b1e";
+"93354a82-69b2-420f-8b91-b4b09e020a38" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"85dc3394-0cc9-4ae9-805a-677f9b97488e" -> "93354a82-69b2-420f-8b91-b4b09e020a38";
+"6e11619c-fa19-4518-90cf-2bf10443a780" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"93354a82-69b2-420f-8b91-b4b09e020a38" -> "6e11619c-fa19-4518-90cf-2bf10443a780";
+"f6622ef5-ded4-4fa4-9e43-56305cec0cb6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6e11619c-fa19-4518-90cf-2bf10443a780" -> "f6622ef5-ded4-4fa4-9e43-56305cec0cb6";
+"a42d427d-6a6a-466b-8dcb-a8a3e1a72d02" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f6622ef5-ded4-4fa4-9e43-56305cec0cb6" -> "a42d427d-6a6a-466b-8dcb-a8a3e1a72d02";
+"6f9a8be2-9c21-47d2-aab3-f7589f119916" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a42d427d-6a6a-466b-8dcb-a8a3e1a72d02" -> "6f9a8be2-9c21-47d2-aab3-f7589f119916";
+"0695ccec-35b8-4d8a-84ff-d0b0b265ba1e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6f9a8be2-9c21-47d2-aab3-f7589f119916" -> "0695ccec-35b8-4d8a-84ff-d0b0b265ba1e";
+"ce60738c-9031-4c29-b50b-bdbb4125d3c9" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0695ccec-35b8-4d8a-84ff-d0b0b265ba1e" -> "ce60738c-9031-4c29-b50b-bdbb4125d3c9";
+"59e33d45-b505-422e-9ce7-12c6497822a1" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ce60738c-9031-4c29-b50b-bdbb4125d3c9" -> "59e33d45-b505-422e-9ce7-12c6497822a1";
+"e3b5c8cb-364c-4d73-9389-9f545abf6e4c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"59e33d45-b505-422e-9ce7-12c6497822a1" -> "e3b5c8cb-364c-4d73-9389-9f545abf6e4c";
+"04301f09-3665-4576-9dc7-65f435c7fb1c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e3b5c8cb-364c-4d73-9389-9f545abf6e4c" -> "04301f09-3665-4576-9dc7-65f435c7fb1c";
+"8359dd91-4e7f-4e38-ac18-686902193c44" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"04301f09-3665-4576-9dc7-65f435c7fb1c" -> "8359dd91-4e7f-4e38-ac18-686902193c44";
+"99719962-1745-4dca-ac21-b5bd710e9265" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"8359dd91-4e7f-4e38-ac18-686902193c44" -> "99719962-1745-4dca-ac21-b5bd710e9265";
+"f4b29e1e-2efd-4496-b3a2-4ddffd5ee3f0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"8359dd91-4e7f-4e38-ac18-686902193c44" -> "f4b29e1e-2efd-4496-b3a2-4ddffd5ee3f0";
+"1675f52c-9e6c-4aad-8ec7-3408f34363cc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"04301f09-3665-4576-9dc7-65f435c7fb1c" -> "1675f52c-9e6c-4aad-8ec7-3408f34363cc";
+"3aed8da7-a95e-48cc-b214-9715ad0151d1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"1675f52c-9e6c-4aad-8ec7-3408f34363cc" -> "3aed8da7-a95e-48cc-b214-9715ad0151d1";
+"4d83beff-b5ff-48a0-a34d-66f89180a569" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"1675f52c-9e6c-4aad-8ec7-3408f34363cc" -> "4d83beff-b5ff-48a0-a34d-66f89180a569";
+"b3713b3a-e8c3-4c0b-9b69-06d2e769405f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"1675f52c-9e6c-4aad-8ec7-3408f34363cc" -> "b3713b3a-e8c3-4c0b-9b69-06d2e769405f";
+"c4dc7149-d1cb-43d0-8ac2-6f1e6bff78be" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e3b5c8cb-364c-4d73-9389-9f545abf6e4c" -> "c4dc7149-d1cb-43d0-8ac2-6f1e6bff78be";
+"dc30d4a9-6a3f-4bf3-8261-92b9e28e8efb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"c4dc7149-d1cb-43d0-8ac2-6f1e6bff78be" -> "dc30d4a9-6a3f-4bf3-8261-92b9e28e8efb";
+"6bdeda14-a68a-4392-ac5b-6f258b42e7ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"c4dc7149-d1cb-43d0-8ac2-6f1e6bff78be" -> "6bdeda14-a68a-4392-ac5b-6f258b42e7ff";
+"1f113a11-60c3-408f-ba3d-44b8a6e317e2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"c4dc7149-d1cb-43d0-8ac2-6f1e6bff78be" -> "1f113a11-60c3-408f-ba3d-44b8a6e317e2";
+"d7807e2f-7a70-4a68-8141-9b788635410a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"59e33d45-b505-422e-9ce7-12c6497822a1" -> "d7807e2f-7a70-4a68-8141-9b788635410a";
+"aa2c3d9b-34e3-40c2-8327-80c5215aa1ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"d7807e2f-7a70-4a68-8141-9b788635410a" -> "aa2c3d9b-34e3-40c2-8327-80c5215aa1ff";
+"d45d52fe-0f69-4944-984d-7ccde6ba4875" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"d7807e2f-7a70-4a68-8141-9b788635410a" -> "d45d52fe-0f69-4944-984d-7ccde6ba4875";
+"8a6d9cc1-0dc9-40ba-b6ec-056b501d5503" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ce60738c-9031-4c29-b50b-bdbb4125d3c9" -> "8a6d9cc1-0dc9-40ba-b6ec-056b501d5503";
+"565bf800-35b4-43cb-af04-06ba49e45f4d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"8a6d9cc1-0dc9-40ba-b6ec-056b501d5503" -> "565bf800-35b4-43cb-af04-06ba49e45f4d";
+"facbccd3-3e8d-46f3-9921-5758662b1d10" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"8a6d9cc1-0dc9-40ba-b6ec-056b501d5503" -> "facbccd3-3e8d-46f3-9921-5758662b1d10";
+"05f19593-3310-4c5d-8417-e79cea9edf48" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"8a6d9cc1-0dc9-40ba-b6ec-056b501d5503" -> "05f19593-3310-4c5d-8417-e79cea9edf48";
+"472fd780-d1ea-4c5f-bbd2-875352e800bb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0695ccec-35b8-4d8a-84ff-d0b0b265ba1e" -> "472fd780-d1ea-4c5f-bbd2-875352e800bb";
+"afa452df-5dbd-4319-859a-9c699ec943e7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"472fd780-d1ea-4c5f-bbd2-875352e800bb" -> "afa452df-5dbd-4319-859a-9c699ec943e7";
+"8b83bdf6-09ea-49ff-a1de-96bf7b4d44ba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"472fd780-d1ea-4c5f-bbd2-875352e800bb" -> "8b83bdf6-09ea-49ff-a1de-96bf7b4d44ba";
+"b184fa37-fb38-4114-b4fe-b593bce8e121" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,BrightTable)", shape=box, style=filled];
+"472fd780-d1ea-4c5f-bbd2-875352e800bb" -> "b184fa37-fb38-4114-b4fe-b593bce8e121";
+"5aa383c0-8c31-41c3-a0ea-5b1adfa2748b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6f9a8be2-9c21-47d2-aab3-f7589f119916" -> "5aa383c0-8c31-41c3-a0ea-5b1adfa2748b";
+"a0d15d6e-5686-4a58-a8fc-a672df534ce6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"5aa383c0-8c31-41c3-a0ea-5b1adfa2748b" -> "a0d15d6e-5686-4a58-a8fc-a672df534ce6";
+"af136f79-d28f-47f6-81ed-f067c9670047" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"5aa383c0-8c31-41c3-a0ea-5b1adfa2748b" -> "af136f79-d28f-47f6-81ed-f067c9670047";
+"d2a18f89-c36a-448b-b6d3-827600ff78ea" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"5aa383c0-8c31-41c3-a0ea-5b1adfa2748b" -> "d2a18f89-c36a-448b-b6d3-827600ff78ea";
+"528861ab-2469-413b-828c-2b9a7532c840" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a42d427d-6a6a-466b-8dcb-a8a3e1a72d02" -> "528861ab-2469-413b-828c-2b9a7532c840";
+"576e1266-05b1-4bb4-9d5f-48a60f4ee780" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"528861ab-2469-413b-828c-2b9a7532c840" -> "576e1266-05b1-4bb4-9d5f-48a60f4ee780";
+"beb71c89-e26e-4e5e-af99-b3064c91ba0b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"528861ab-2469-413b-828c-2b9a7532c840" -> "beb71c89-e26e-4e5e-af99-b3064c91ba0b";
+"73d70cda-713f-4762-877a-835dc86720ee" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f6622ef5-ded4-4fa4-9e43-56305cec0cb6" -> "73d70cda-713f-4762-877a-835dc86720ee";
+"24b8c241-9941-4560-a943-d978d92273a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"73d70cda-713f-4762-877a-835dc86720ee" -> "24b8c241-9941-4560-a943-d978d92273a3";
+"751b5e17-c7ff-442a-a512-77b2302cb597" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"73d70cda-713f-4762-877a-835dc86720ee" -> "751b5e17-c7ff-442a-a512-77b2302cb597";
+"c84ec330-60fe-4774-b02d-beae136f8b21" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"73d70cda-713f-4762-877a-835dc86720ee" -> "c84ec330-60fe-4774-b02d-beae136f8b21";
+"ccfa17b9-e9ed-4279-ac19-b47f42dbcb1e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6e11619c-fa19-4518-90cf-2bf10443a780" -> "ccfa17b9-e9ed-4279-ac19-b47f42dbcb1e";
+"589c48c2-7cd7-4253-9da1-8ea310f4d41e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"ccfa17b9-e9ed-4279-ac19-b47f42dbcb1e" -> "589c48c2-7cd7-4253-9da1-8ea310f4d41e";
+"6d9090b6-6af3-481b-b2e1-193a7c5eec13" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"ccfa17b9-e9ed-4279-ac19-b47f42dbcb1e" -> "6d9090b6-6af3-481b-b2e1-193a7c5eec13";
+"3c54d985-16ef-43c2-acc8-40d9fd016472" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"ccfa17b9-e9ed-4279-ac19-b47f42dbcb1e" -> "3c54d985-16ef-43c2-acc8-40d9fd016472";
+"88728b66-edd5-4481-9cdf-60074cea97ce" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"93354a82-69b2-420f-8b91-b4b09e020a38" -> "88728b66-edd5-4481-9cdf-60074cea97ce";
+"7adde901-4eb9-430a-a614-5a8e0500bf5f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"88728b66-edd5-4481-9cdf-60074cea97ce" -> "7adde901-4eb9-430a-a614-5a8e0500bf5f";
+"a407fbbf-f658-4965-ba75-fba2989986c7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"88728b66-edd5-4481-9cdf-60074cea97ce" -> "a407fbbf-f658-4965-ba75-fba2989986c7";
+"7f55a183-54ea-45ad-a17c-d688a17cc7b0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"88728b66-edd5-4481-9cdf-60074cea97ce" -> "7f55a183-54ea-45ad-a17c-d688a17cc7b0";
+"3daadcbe-bbc6-472d-b212-7a46b59cff11" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"907c9cc7-0491-4cd1-9e87-7ebbfc7d3af6" -> "3daadcbe-bbc6-472d-b212-7a46b59cff11";
+"afe8596a-9a5a-49f4-9357-50626b7fc1e1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"3daadcbe-bbc6-472d-b212-7a46b59cff11" -> "afe8596a-9a5a-49f4-9357-50626b7fc1e1";
+"be3db06f-d68b-4687-b121-6d74edcfe280" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(Bar)", shape=box, style=filled];
+"3daadcbe-bbc6-472d-b212-7a46b59cff11" -> "be3db06f-d68b-4687-b121-6d74edcfe280";
+"07c0d609-e7bb-47f7-95cf-362764ac721a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"907c9cc7-0491-4cd1-9e87-7ebbfc7d3af6" -> "07c0d609-e7bb-47f7-95cf-362764ac721a";
+"aa0b4f98-0b19-46a9-88f5-9d9159e081c7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"07c0d609-e7bb-47f7-95cf-362764ac721a" -> "aa0b4f98-0b19-46a9-88f5-9d9159e081c7";
+"e090afcd-0d38-4cea-a058-4040755e753e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"07c0d609-e7bb-47f7-95cf-362764ac721a" -> "e090afcd-0d38-4cea-a058-4040755e753e";
+"6c886d78-0228-41b5-aa69-665bc3244b46" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e090afcd-0d38-4cea-a058-4040755e753e" -> "6c886d78-0228-41b5-aa69-665bc3244b46";
+"9935ba8d-6aa1-4173-9d1d-139838438fcd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6c886d78-0228-41b5-aa69-665bc3244b46" -> "9935ba8d-6aa1-4173-9d1d-139838438fcd";
+"e5e13351-ce74-4939-879f-2f92277efc49" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9935ba8d-6aa1-4173-9d1d-139838438fcd" -> "e5e13351-ce74-4939-879f-2f92277efc49";
+"11da2641-6f1c-4714-8fda-f5e0458afed0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e5e13351-ce74-4939-879f-2f92277efc49" -> "11da2641-6f1c-4714-8fda-f5e0458afed0";
+"400d5413-6dd2-43f6-ad0c-ed19da733394" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"11da2641-6f1c-4714-8fda-f5e0458afed0" -> "400d5413-6dd2-43f6-ad0c-ed19da733394";
+"6f2e7be3-d411-450c-8b0b-ab20a5159c36" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"400d5413-6dd2-43f6-ad0c-ed19da733394" -> "6f2e7be3-d411-450c-8b0b-ab20a5159c36";
+"ebad5a2f-31cc-49f7-b5b3-64a4c32099d3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6f2e7be3-d411-450c-8b0b-ab20a5159c36" -> "ebad5a2f-31cc-49f7-b5b3-64a4c32099d3";
+"0d20f8da-9be4-471e-98ef-3e9f809b3d88" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ebad5a2f-31cc-49f7-b5b3-64a4c32099d3" -> "0d20f8da-9be4-471e-98ef-3e9f809b3d88";
+"a460b03b-745f-4719-90fe-46db5ddf43a8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0d20f8da-9be4-471e-98ef-3e9f809b3d88" -> "a460b03b-745f-4719-90fe-46db5ddf43a8";
+"1a6769bf-f3ee-4218-b9aa-b1bea5fd9a76" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a460b03b-745f-4719-90fe-46db5ddf43a8" -> "1a6769bf-f3ee-4218-b9aa-b1bea5fd9a76";
+"15ad7f5d-f1a0-4c32-8b87-308a5011f459" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1a6769bf-f3ee-4218-b9aa-b1bea5fd9a76" -> "15ad7f5d-f1a0-4c32-8b87-308a5011f459";
+"2f2e37eb-0f14-46a2-862d-7e7887ee36f5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"15ad7f5d-f1a0-4c32-8b87-308a5011f459" -> "2f2e37eb-0f14-46a2-862d-7e7887ee36f5";
+"a5e8af65-f15b-4caf-8479-120456da60f3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2f2e37eb-0f14-46a2-862d-7e7887ee36f5" -> "a5e8af65-f15b-4caf-8479-120456da60f3";
+"3e129f78-f55f-4e80-85a1-158623b1db63" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a5e8af65-f15b-4caf-8479-120456da60f3" -> "3e129f78-f55f-4e80-85a1-158623b1db63";
+"92bc4b9e-cf77-4744-8947-87a8b252cb8f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3e129f78-f55f-4e80-85a1-158623b1db63" -> "92bc4b9e-cf77-4744-8947-87a8b252cb8f";
+"e966e843-c2c1-42a2-9467-434be3dc2079" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"92bc4b9e-cf77-4744-8947-87a8b252cb8f" -> "e966e843-c2c1-42a2-9467-434be3dc2079";
+"e2526972-9479-4ff1-842c-4934730759ee" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e966e843-c2c1-42a2-9467-434be3dc2079" -> "e2526972-9479-4ff1-842c-4934730759ee";
+"92f080b0-ac31-4421-968a-9b4088c0910f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e2526972-9479-4ff1-842c-4934730759ee" -> "92f080b0-ac31-4421-968a-9b4088c0910f";
+"78b5fe64-0f4a-4a9c-aacf-3c960917a552" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"92f080b0-ac31-4421-968a-9b4088c0910f" -> "78b5fe64-0f4a-4a9c-aacf-3c960917a552";
+"363a8a50-ecf1-4ae8-9853-98761c6f0710" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"78b5fe64-0f4a-4a9c-aacf-3c960917a552" -> "363a8a50-ecf1-4ae8-9853-98761c6f0710";
+"c0e15c1f-0cb4-4458-9e5f-3dd0e251f1fe" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"363a8a50-ecf1-4ae8-9853-98761c6f0710" -> "c0e15c1f-0cb4-4458-9e5f-3dd0e251f1fe";
+"18986915-a3c3-44fb-ba64-6b3c6fb0701d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c0e15c1f-0cb4-4458-9e5f-3dd0e251f1fe" -> "18986915-a3c3-44fb-ba64-6b3c6fb0701d";
+"1003765f-f36b-4327-bef7-3c6124abe494" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"18986915-a3c3-44fb-ba64-6b3c6fb0701d" -> "1003765f-f36b-4327-bef7-3c6124abe494";
+"243374c3-6aab-41ca-a2bb-a155eed84368" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1003765f-f36b-4327-bef7-3c6124abe494" -> "243374c3-6aab-41ca-a2bb-a155eed84368";
+"baf1177f-3f68-4597-a8be-73fab71fe07c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"243374c3-6aab-41ca-a2bb-a155eed84368" -> "baf1177f-3f68-4597-a8be-73fab71fe07c";
+"1ae241c9-0d7e-4330-8dfa-7e3659869c4e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"baf1177f-3f68-4597-a8be-73fab71fe07c" -> "1ae241c9-0d7e-4330-8dfa-7e3659869c4e";
+"6a8c3205-5274-40c4-b8e1-46979922bc00" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1ae241c9-0d7e-4330-8dfa-7e3659869c4e" -> "6a8c3205-5274-40c4-b8e1-46979922bc00";
+"11bb2765-fafb-452f-8667-dffb225daa9c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6a8c3205-5274-40c4-b8e1-46979922bc00" -> "11bb2765-fafb-452f-8667-dffb225daa9c";
+"b4f2e147-7fe0-4959-bec3-0be915fd921b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"11bb2765-fafb-452f-8667-dffb225daa9c" -> "b4f2e147-7fe0-4959-bec3-0be915fd921b";
+"ef4b9363-8426-4ea1-8f60-04b4a6635fca" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b4f2e147-7fe0-4959-bec3-0be915fd921b" -> "ef4b9363-8426-4ea1-8f60-04b4a6635fca";
+"a1bdb1c9-c536-4895-82b9-4a391941ab8f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ef4b9363-8426-4ea1-8f60-04b4a6635fca" -> "a1bdb1c9-c536-4895-82b9-4a391941ab8f";
+"ff4e492b-e302-4014-8ba1-8c888c8fb517" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a1bdb1c9-c536-4895-82b9-4a391941ab8f" -> "ff4e492b-e302-4014-8ba1-8c888c8fb517";
+"f02bbf5d-d352-4640-9076-c62f4f0fff1a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ff4e492b-e302-4014-8ba1-8c888c8fb517" -> "f02bbf5d-d352-4640-9076-c62f4f0fff1a";
+"d167ca09-032a-48f0-89d8-23ccc311818c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f02bbf5d-d352-4640-9076-c62f4f0fff1a" -> "d167ca09-032a-48f0-89d8-23ccc311818c";
+"98514241-a181-42e4-a0f4-7aeea836e89c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d167ca09-032a-48f0-89d8-23ccc311818c" -> "98514241-a181-42e4-a0f4-7aeea836e89c";
+"a11e02b9-9c49-4e71-8c63-edddb7797305" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"98514241-a181-42e4-a0f4-7aeea836e89c" -> "a11e02b9-9c49-4e71-8c63-edddb7797305";
+"eb84b869-5e8d-4f44-95a5-67628ce0d729" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a11e02b9-9c49-4e71-8c63-edddb7797305" -> "eb84b869-5e8d-4f44-95a5-67628ce0d729";
+"d0ceabd1-d59b-48e4-ae9f-c083faf26b4d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"eb84b869-5e8d-4f44-95a5-67628ce0d729" -> "d0ceabd1-d59b-48e4-ae9f-c083faf26b4d";
+"9f51ef0c-f9dc-42ba-a72f-2afaf94980c8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d0ceabd1-d59b-48e4-ae9f-c083faf26b4d" -> "9f51ef0c-f9dc-42ba-a72f-2afaf94980c8";
+"be0b5008-39c4-4e72-92ea-ae9ef33f8a47" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9f51ef0c-f9dc-42ba-a72f-2afaf94980c8" -> "be0b5008-39c4-4e72-92ea-ae9ef33f8a47";
+"87ee74fa-dace-40cc-8885-682eda7757c0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"be0b5008-39c4-4e72-92ea-ae9ef33f8a47" -> "87ee74fa-dace-40cc-8885-682eda7757c0";
+"09995e67-a5d9-437b-a475-c800293eb817" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"87ee74fa-dace-40cc-8885-682eda7757c0" -> "09995e67-a5d9-437b-a475-c800293eb817";
+"637c8817-f35b-4ac7-9fc6-b5ed12b5c45e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"09995e67-a5d9-437b-a475-c800293eb817" -> "637c8817-f35b-4ac7-9fc6-b5ed12b5c45e";
+"e680d8b9-3c9e-4a0d-8a62-4ef521a289f7" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"637c8817-f35b-4ac7-9fc6-b5ed12b5c45e" -> "e680d8b9-3c9e-4a0d-8a62-4ef521a289f7";
+"b3b1e9a1-1da6-43cb-99d7-884e7c6a5fb0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e680d8b9-3c9e-4a0d-8a62-4ef521a289f7" -> "b3b1e9a1-1da6-43cb-99d7-884e7c6a5fb0";
+"4da23d52-854e-4ac6-9603-40e1b925c74a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b3b1e9a1-1da6-43cb-99d7-884e7c6a5fb0" -> "4da23d52-854e-4ac6-9603-40e1b925c74a";
+"eab88873-b314-4aaf-92ba-a14c6b261333" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4da23d52-854e-4ac6-9603-40e1b925c74a" -> "eab88873-b314-4aaf-92ba-a14c6b261333";
+"e35245fd-9dec-4330-ac85-b7cab237cb10" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"eab88873-b314-4aaf-92ba-a14c6b261333" -> "e35245fd-9dec-4330-ac85-b7cab237cb10";
+"a630c6f1-fb18-47f6-8939-d0c35e9591fb" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e35245fd-9dec-4330-ac85-b7cab237cb10" -> "a630c6f1-fb18-47f6-8939-d0c35e9591fb";
+"9854a7d1-13d2-4a18-9957-7e7a098e4d64" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a630c6f1-fb18-47f6-8939-d0c35e9591fb" -> "9854a7d1-13d2-4a18-9957-7e7a098e4d64";
+"7ae8d630-722b-47c7-8b03-13e8322231ed" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9854a7d1-13d2-4a18-9957-7e7a098e4d64" -> "7ae8d630-722b-47c7-8b03-13e8322231ed";
+"275fb877-a99f-4336-84b4-b096d2750711" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7ae8d630-722b-47c7-8b03-13e8322231ed" -> "275fb877-a99f-4336-84b4-b096d2750711";
+"2585035d-6cb3-40b9-8bec-f03ac5fd4b0c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"275fb877-a99f-4336-84b4-b096d2750711" -> "2585035d-6cb3-40b9-8bec-f03ac5fd4b0c";
+"84d3b0e7-e084-4f4c-ae40-aa66d05112be" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2585035d-6cb3-40b9-8bec-f03ac5fd4b0c" -> "84d3b0e7-e084-4f4c-ae40-aa66d05112be";
+"49cbd1fa-5a43-4ac5-bd7d-2dda8ef9b3e5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"84d3b0e7-e084-4f4c-ae40-aa66d05112be" -> "49cbd1fa-5a43-4ac5-bd7d-2dda8ef9b3e5";
+"daa4024d-cc1b-4a5e-89c2-8f28691d4c60" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"49cbd1fa-5a43-4ac5-bd7d-2dda8ef9b3e5" -> "daa4024d-cc1b-4a5e-89c2-8f28691d4c60";
+"d4e6522e-6461-4e45-9d8f-d599937d1687" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"daa4024d-cc1b-4a5e-89c2-8f28691d4c60" -> "d4e6522e-6461-4e45-9d8f-d599937d1687";
+"4224d467-afe3-425d-8a83-07ac80640952" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d4e6522e-6461-4e45-9d8f-d599937d1687" -> "4224d467-afe3-425d-8a83-07ac80640952";
+"43623d97-bc75-4f0a-b2db-d164bad8e2be" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4224d467-afe3-425d-8a83-07ac80640952" -> "43623d97-bc75-4f0a-b2db-d164bad8e2be";
+"87233bdc-4529-4173-ab2c-4fc9c9a72c0a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"43623d97-bc75-4f0a-b2db-d164bad8e2be" -> "87233bdc-4529-4173-ab2c-4fc9c9a72c0a";
+"94af08c0-5d38-4f1d-990f-2e4602df2554" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"87233bdc-4529-4173-ab2c-4fc9c9a72c0a" -> "94af08c0-5d38-4f1d-990f-2e4602df2554";
+"2f82702d-34c4-46cd-b7f9-4b2e2ca0635e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"94af08c0-5d38-4f1d-990f-2e4602df2554" -> "2f82702d-34c4-46cd-b7f9-4b2e2ca0635e";
+"2cd34070-8965-4976-8a9e-2c33c6c58451" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2f82702d-34c4-46cd-b7f9-4b2e2ca0635e" -> "2cd34070-8965-4976-8a9e-2c33c6c58451";
+"536cd52c-b59d-477d-ab85-fc2ac82f22cf" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2cd34070-8965-4976-8a9e-2c33c6c58451" -> "536cd52c-b59d-477d-ab85-fc2ac82f22cf";
+"c9206c5f-988d-4e1a-b338-d12c9684f503" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"536cd52c-b59d-477d-ab85-fc2ac82f22cf" -> "c9206c5f-988d-4e1a-b338-d12c9684f503";
+"e2097b24-0043-4672-9a17-2588fe6a5702" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c9206c5f-988d-4e1a-b338-d12c9684f503" -> "e2097b24-0043-4672-9a17-2588fe6a5702";
+"42779d54-c1e7-4437-b8ee-8fdbd9fab767" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e2097b24-0043-4672-9a17-2588fe6a5702" -> "42779d54-c1e7-4437-b8ee-8fdbd9fab767";
+"6e9f0dfd-9fb6-4457-ace9-e535a8f6445d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"42779d54-c1e7-4437-b8ee-8fdbd9fab767" -> "6e9f0dfd-9fb6-4457-ace9-e535a8f6445d";
+"018a7ef8-7e49-43ed-a824-403a85d57153" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6e9f0dfd-9fb6-4457-ace9-e535a8f6445d" -> "018a7ef8-7e49-43ed-a824-403a85d57153";
+"b8bdfba9-0a72-4c32-8c59-3a740e862852" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"018a7ef8-7e49-43ed-a824-403a85d57153" -> "b8bdfba9-0a72-4c32-8c59-3a740e862852";
+"3f370038-82b5-454d-b405-0583cec1b8b6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b8bdfba9-0a72-4c32-8c59-3a740e862852" -> "3f370038-82b5-454d-b405-0583cec1b8b6";
+"c62cc17b-c13d-4456-9a5d-50afe1a37018" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3f370038-82b5-454d-b405-0583cec1b8b6" -> "c62cc17b-c13d-4456-9a5d-50afe1a37018";
+"fecc4010-1c0b-4b80-8011-1b7ce43d05aa" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c62cc17b-c13d-4456-9a5d-50afe1a37018" -> "fecc4010-1c0b-4b80-8011-1b7ce43d05aa";
+"6769b406-2da4-4587-bba1-7cb0e615e545" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"fecc4010-1c0b-4b80-8011-1b7ce43d05aa" -> "6769b406-2da4-4587-bba1-7cb0e615e545";
+"06a54555-8279-4d67-b154-4057720bf0d8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6769b406-2da4-4587-bba1-7cb0e615e545" -> "06a54555-8279-4d67-b154-4057720bf0d8";
+"364c0ad2-34aa-4f0d-914a-7386b8cfa08b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"06a54555-8279-4d67-b154-4057720bf0d8" -> "364c0ad2-34aa-4f0d-914a-7386b8cfa08b";
+"a11bbc34-442a-4d74-b38e-7cd903fc92f5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"364c0ad2-34aa-4f0d-914a-7386b8cfa08b" -> "a11bbc34-442a-4d74-b38e-7cd903fc92f5";
+"4877d42e-8507-4564-be23-3f98f0b6a722" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a11bbc34-442a-4d74-b38e-7cd903fc92f5" -> "4877d42e-8507-4564-be23-3f98f0b6a722";
+"d79592fe-7441-451c-a073-806827f87f3c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4877d42e-8507-4564-be23-3f98f0b6a722" -> "d79592fe-7441-451c-a073-806827f87f3c";
+"e3b0c201-c610-4811-8316-39002e4c3aa8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d79592fe-7441-451c-a073-806827f87f3c" -> "e3b0c201-c610-4811-8316-39002e4c3aa8";
+"7958b4cf-e32a-4635-ba87-ffe12d1322e4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e3b0c201-c610-4811-8316-39002e4c3aa8" -> "7958b4cf-e32a-4635-ba87-ffe12d1322e4";
+"2b2990d2-57c2-4c42-90c5-aa9e9bdc7e36" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7958b4cf-e32a-4635-ba87-ffe12d1322e4" -> "2b2990d2-57c2-4c42-90c5-aa9e9bdc7e36";
+"e0905c84-ce1d-47e5-8fea-c39592969026" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2b2990d2-57c2-4c42-90c5-aa9e9bdc7e36" -> "e0905c84-ce1d-47e5-8fea-c39592969026";
+"2a830835-5e01-4227-8032-062fcba8a54e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e0905c84-ce1d-47e5-8fea-c39592969026" -> "2a830835-5e01-4227-8032-062fcba8a54e";
+"c6fad513-4f47-48b4-9505-1b0911d9651a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2a830835-5e01-4227-8032-062fcba8a54e" -> "c6fad513-4f47-48b4-9505-1b0911d9651a";
+"304f47d3-fb6d-4fa1-90e5-72f670f92c9b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c6fad513-4f47-48b4-9505-1b0911d9651a" -> "304f47d3-fb6d-4fa1-90e5-72f670f92c9b";
+"ebbb4c4f-cac9-4ae0-8caa-51eb6f2d4745" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"304f47d3-fb6d-4fa1-90e5-72f670f92c9b" -> "ebbb4c4f-cac9-4ae0-8caa-51eb6f2d4745";
+"817d0f27-30fb-45c9-af1c-6f23d9c75c7c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ebbb4c4f-cac9-4ae0-8caa-51eb6f2d4745" -> "817d0f27-30fb-45c9-af1c-6f23d9c75c7c";
+"e73c84e1-d76e-4052-b600-a42e317e145b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"817d0f27-30fb-45c9-af1c-6f23d9c75c7c" -> "e73c84e1-d76e-4052-b600-a42e317e145b";
+"679458a2-38ef-4966-a725-99459784ad48" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e73c84e1-d76e-4052-b600-a42e317e145b" -> "679458a2-38ef-4966-a725-99459784ad48";
+"ff780932-ddcf-4f31-974b-24efbabfb53a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"679458a2-38ef-4966-a725-99459784ad48" -> "ff780932-ddcf-4f31-974b-24efbabfb53a";
+"81d7bdaa-1b77-4c28-b108-fbcd2d3b1539" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ff780932-ddcf-4f31-974b-24efbabfb53a" -> "81d7bdaa-1b77-4c28-b108-fbcd2d3b1539";
+"bf7754b1-55bc-46b1-854e-672a5acf3398" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"81d7bdaa-1b77-4c28-b108-fbcd2d3b1539" -> "bf7754b1-55bc-46b1-854e-672a5acf3398";
+"c10a5066-dafb-4c22-aebf-1e70168e094d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"bf7754b1-55bc-46b1-854e-672a5acf3398" -> "c10a5066-dafb-4c22-aebf-1e70168e094d";
+"a09e8739-7fce-49fd-bdd9-16ce943bfd39" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c10a5066-dafb-4c22-aebf-1e70168e094d" -> "a09e8739-7fce-49fd-bdd9-16ce943bfd39";
+"4f33e409-1e85-4707-a192-21c7c4488517" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a09e8739-7fce-49fd-bdd9-16ce943bfd39" -> "4f33e409-1e85-4707-a192-21c7c4488517";
+"e1ed5374-f8e7-4f7c-9dae-f74870072721" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4f33e409-1e85-4707-a192-21c7c4488517" -> "e1ed5374-f8e7-4f7c-9dae-f74870072721";
+"90bbd217-2fd1-4b42-bd2f-f4c2716b77b4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e1ed5374-f8e7-4f7c-9dae-f74870072721" -> "90bbd217-2fd1-4b42-bd2f-f4c2716b77b4";
+"fd3ca530-82e7-4c54-865a-97a3bb36c61a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"90bbd217-2fd1-4b42-bd2f-f4c2716b77b4" -> "fd3ca530-82e7-4c54-865a-97a3bb36c61a";
+"18a1e5ed-fb26-468f-8e57-94c734016075" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"fd3ca530-82e7-4c54-865a-97a3bb36c61a" -> "18a1e5ed-fb26-468f-8e57-94c734016075";
+"3d0ae5c1-0f42-4d5d-82a9-b99342e37ed0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"18a1e5ed-fb26-468f-8e57-94c734016075" -> "3d0ae5c1-0f42-4d5d-82a9-b99342e37ed0";
+"dfb64018-04a9-46df-8fd1-193f227cae97" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3d0ae5c1-0f42-4d5d-82a9-b99342e37ed0" -> "dfb64018-04a9-46df-8fd1-193f227cae97";
+"3c737c2d-d671-4a24-b6bb-dd333ffc9ac6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"dfb64018-04a9-46df-8fd1-193f227cae97" -> "3c737c2d-d671-4a24-b6bb-dd333ffc9ac6";
+"0f6abb0c-d7e7-436e-97d2-88bce1c06640" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3c737c2d-d671-4a24-b6bb-dd333ffc9ac6" -> "0f6abb0c-d7e7-436e-97d2-88bce1c06640";
+"d1c710c7-ed10-4a46-8e99-828eff86718b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0f6abb0c-d7e7-436e-97d2-88bce1c06640" -> "d1c710c7-ed10-4a46-8e99-828eff86718b";
+"18a30aed-ba20-4b43-922e-f83be5f9bfbd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d1c710c7-ed10-4a46-8e99-828eff86718b" -> "18a30aed-ba20-4b43-922e-f83be5f9bfbd";
+"5087f925-32e6-4576-a014-66c60dcf9b9a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"18a30aed-ba20-4b43-922e-f83be5f9bfbd" -> "5087f925-32e6-4576-a014-66c60dcf9b9a";
+"90a5c49b-f033-4c77-b249-8177f9a79187" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"5087f925-32e6-4576-a014-66c60dcf9b9a" -> "90a5c49b-f033-4c77-b249-8177f9a79187";
+"9048adb5-4153-40b4-bfbb-4063d8effece" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"90a5c49b-f033-4c77-b249-8177f9a79187" -> "9048adb5-4153-40b4-bfbb-4063d8effece";
+"c0fc0fab-7a5c-42b7-8a1b-91056c192280" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9048adb5-4153-40b4-bfbb-4063d8effece" -> "c0fc0fab-7a5c-42b7-8a1b-91056c192280";
+"ade49021-14f5-4075-82c7-d73d779e734d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c0fc0fab-7a5c-42b7-8a1b-91056c192280" -> "ade49021-14f5-4075-82c7-d73d779e734d";
+"58a7151a-24d5-44ca-a43e-2a71197b0d5b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ade49021-14f5-4075-82c7-d73d779e734d" -> "58a7151a-24d5-44ca-a43e-2a71197b0d5b";
+"e659f106-6cfa-4b84-9d15-36f2fc80d950" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"58a7151a-24d5-44ca-a43e-2a71197b0d5b" -> "e659f106-6cfa-4b84-9d15-36f2fc80d950";
+"585af931-ed55-4d38-a75c-aa1c24489338" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e659f106-6cfa-4b84-9d15-36f2fc80d950" -> "585af931-ed55-4d38-a75c-aa1c24489338";
+"3d7b0a2e-59c5-4dd8-8c24-dd38e29c9004" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"585af931-ed55-4d38-a75c-aa1c24489338" -> "3d7b0a2e-59c5-4dd8-8c24-dd38e29c9004";
+"2a235c5e-9a5b-4d35-9bfa-e84805a90b29" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3d7b0a2e-59c5-4dd8-8c24-dd38e29c9004" -> "2a235c5e-9a5b-4d35-9bfa-e84805a90b29";
+"0fb7f560-8a14-4b18-b97f-61e64efaf1c8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2a235c5e-9a5b-4d35-9bfa-e84805a90b29" -> "0fb7f560-8a14-4b18-b97f-61e64efaf1c8";
+"8aa760a6-abd5-4bbe-ab76-94648c24b8e3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0fb7f560-8a14-4b18-b97f-61e64efaf1c8" -> "8aa760a6-abd5-4bbe-ab76-94648c24b8e3";
+"84b0c8f4-7297-4441-ba47-cefa147440ac" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8aa760a6-abd5-4bbe-ab76-94648c24b8e3" -> "84b0c8f4-7297-4441-ba47-cefa147440ac";
+"b06a8fa4-471c-4501-b756-146b03cfc2b3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"84b0c8f4-7297-4441-ba47-cefa147440ac" -> "b06a8fa4-471c-4501-b756-146b03cfc2b3";
+"e5e13f57-09db-49b0-9bed-3ff7e9a54778" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b06a8fa4-471c-4501-b756-146b03cfc2b3" -> "e5e13f57-09db-49b0-9bed-3ff7e9a54778";
+"a160c9d3-ce9e-42d0-ba04-83b7f2541209" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e5e13f57-09db-49b0-9bed-3ff7e9a54778" -> "a160c9d3-ce9e-42d0-ba04-83b7f2541209";
+"7fe798d9-1aed-487f-87bd-0e4c0e441f94" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a160c9d3-ce9e-42d0-ba04-83b7f2541209" -> "7fe798d9-1aed-487f-87bd-0e4c0e441f94";
+"62564879-2a5b-441f-b3a4-5f8b716f2bd1" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7fe798d9-1aed-487f-87bd-0e4c0e441f94" -> "62564879-2a5b-441f-b3a4-5f8b716f2bd1";
+"f01b3a96-2a8d-43da-b1af-3e1a55d29d7f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"62564879-2a5b-441f-b3a4-5f8b716f2bd1" -> "f01b3a96-2a8d-43da-b1af-3e1a55d29d7f";
+"bc3d1324-628a-4e9a-967f-e1a34dc200b8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f01b3a96-2a8d-43da-b1af-3e1a55d29d7f" -> "bc3d1324-628a-4e9a-967f-e1a34dc200b8";
+"004f17d7-1676-4f1c-9e6f-7816026332a6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"bc3d1324-628a-4e9a-967f-e1a34dc200b8" -> "004f17d7-1676-4f1c-9e6f-7816026332a6";
+"29bbf4c7-fb1e-4aad-bdb2-5645d3fe7cf0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"004f17d7-1676-4f1c-9e6f-7816026332a6" -> "29bbf4c7-fb1e-4aad-bdb2-5645d3fe7cf0";
+"a53284f9-cd1a-4ee1-9a5d-e2eda0baea7a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"29bbf4c7-fb1e-4aad-bdb2-5645d3fe7cf0" -> "a53284f9-cd1a-4ee1-9a5d-e2eda0baea7a";
+"4c959985-cc3f-4ae6-9c8d-6bd9cdd4e5f4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a53284f9-cd1a-4ee1-9a5d-e2eda0baea7a" -> "4c959985-cc3f-4ae6-9c8d-6bd9cdd4e5f4";
+"e2663fe2-b6b8-46b6-b144-aaed69b30e67" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4c959985-cc3f-4ae6-9c8d-6bd9cdd4e5f4" -> "e2663fe2-b6b8-46b6-b144-aaed69b30e67";
+"e2bda1a6-8ef6-4a06-b2ae-1f5f74934231" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e2663fe2-b6b8-46b6-b144-aaed69b30e67" -> "e2bda1a6-8ef6-4a06-b2ae-1f5f74934231";
+"05f8c3e9-f956-423c-b839-03115d159e07" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e2bda1a6-8ef6-4a06-b2ae-1f5f74934231" -> "05f8c3e9-f956-423c-b839-03115d159e07";
+"08436766-f477-43dd-a09d-b5617b70f31d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"05f8c3e9-f956-423c-b839-03115d159e07" -> "08436766-f477-43dd-a09d-b5617b70f31d";
+"1ce1f06c-48ff-49b0-abaa-7fe6256dff31" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"08436766-f477-43dd-a09d-b5617b70f31d" -> "1ce1f06c-48ff-49b0-abaa-7fe6256dff31";
+"79c089ff-c9df-4d57-b38d-06a107557312" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1ce1f06c-48ff-49b0-abaa-7fe6256dff31" -> "79c089ff-c9df-4d57-b38d-06a107557312";
+"f8c96a86-adb3-42cd-8c08-9ad29a839191" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"79c089ff-c9df-4d57-b38d-06a107557312" -> "f8c96a86-adb3-42cd-8c08-9ad29a839191";
+"1b870b46-c11c-48f3-ae42-efa9bcc80bf6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f8c96a86-adb3-42cd-8c08-9ad29a839191" -> "1b870b46-c11c-48f3-ae42-efa9bcc80bf6";
+"7678f211-e3f5-424f-a13b-613e5d49f6a4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1b870b46-c11c-48f3-ae42-efa9bcc80bf6" -> "7678f211-e3f5-424f-a13b-613e5d49f6a4";
+"8f465d03-72ee-4195-80eb-ea52f1c76f62" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7678f211-e3f5-424f-a13b-613e5d49f6a4" -> "8f465d03-72ee-4195-80eb-ea52f1c76f62";
+"65e8de80-6b8f-438e-a384-c17d1b0d8073" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8f465d03-72ee-4195-80eb-ea52f1c76f62" -> "65e8de80-6b8f-438e-a384-c17d1b0d8073";
+"b21ac636-949e-4516-a2a7-e34b22cc370e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"65e8de80-6b8f-438e-a384-c17d1b0d8073" -> "b21ac636-949e-4516-a2a7-e34b22cc370e";
+"faed8aa8-7da2-4ea4-ad68-0d4e5c5e2a67" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b21ac636-949e-4516-a2a7-e34b22cc370e" -> "faed8aa8-7da2-4ea4-ad68-0d4e5c5e2a67";
+"80f17411-eab1-40af-b212-d24e30cde1fd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"faed8aa8-7da2-4ea4-ad68-0d4e5c5e2a67" -> "80f17411-eab1-40af-b212-d24e30cde1fd";
+"b1837f13-91df-4680-9a3f-eeff143a8f15" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"80f17411-eab1-40af-b212-d24e30cde1fd" -> "b1837f13-91df-4680-9a3f-eeff143a8f15";
+"e569c310-4e0d-4fba-81f6-fa5af4009be5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b1837f13-91df-4680-9a3f-eeff143a8f15" -> "e569c310-4e0d-4fba-81f6-fa5af4009be5";
+"c9515d28-7270-4c16-97a1-2c298923f500" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e569c310-4e0d-4fba-81f6-fa5af4009be5" -> "c9515d28-7270-4c16-97a1-2c298923f500";
+"414d44a1-0e77-46b7-9179-583a13a172c6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c9515d28-7270-4c16-97a1-2c298923f500" -> "414d44a1-0e77-46b7-9179-583a13a172c6";
+"9b4eaf4c-a813-4f92-a4cb-f708fc7543c3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"414d44a1-0e77-46b7-9179-583a13a172c6" -> "9b4eaf4c-a813-4f92-a4cb-f708fc7543c3";
+"33649059-53c2-4864-9769-12789b607fdd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9b4eaf4c-a813-4f92-a4cb-f708fc7543c3" -> "33649059-53c2-4864-9769-12789b607fdd";
+"07cbc80f-9d93-41ff-ba03-4a5843a59bc1" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"33649059-53c2-4864-9769-12789b607fdd" -> "07cbc80f-9d93-41ff-ba03-4a5843a59bc1";
+"4103b74e-5041-47c6-b8ec-53c862abf987" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"07cbc80f-9d93-41ff-ba03-4a5843a59bc1" -> "4103b74e-5041-47c6-b8ec-53c862abf987";
+"37ae94c4-e25e-42e5-931d-35f14eba3ac9" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4103b74e-5041-47c6-b8ec-53c862abf987" -> "37ae94c4-e25e-42e5-931d-35f14eba3ac9";
+"96c1a8e0-8fcf-4d83-b03b-bce55529e5be" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"37ae94c4-e25e-42e5-931d-35f14eba3ac9" -> "96c1a8e0-8fcf-4d83-b03b-bce55529e5be";
+"823b0f9d-95b8-4722-abe2-03d070d5affb" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"96c1a8e0-8fcf-4d83-b03b-bce55529e5be" -> "823b0f9d-95b8-4722-abe2-03d070d5affb";
+"4ff52320-2fbc-4807-8cd4-8c86c3bd119a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"823b0f9d-95b8-4722-abe2-03d070d5affb" -> "4ff52320-2fbc-4807-8cd4-8c86c3bd119a";
+"96323fdd-28e1-4d80-9cf5-0f28f33b94ce" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4ff52320-2fbc-4807-8cd4-8c86c3bd119a" -> "96323fdd-28e1-4d80-9cf5-0f28f33b94ce";
+"442809e0-d9b0-4ec2-adb1-b2e83a53d4f8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"96323fdd-28e1-4d80-9cf5-0f28f33b94ce" -> "442809e0-d9b0-4ec2-adb1-b2e83a53d4f8";
+"55ff074f-91d2-4ea4-b066-15863c193b0b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"442809e0-d9b0-4ec2-adb1-b2e83a53d4f8" -> "55ff074f-91d2-4ea4-b066-15863c193b0b";
+"9b792df2-0b92-4f39-859c-7c18d5f1eb85" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"55ff074f-91d2-4ea4-b066-15863c193b0b" -> "9b792df2-0b92-4f39-859c-7c18d5f1eb85";
+"cdb9ca6b-e71b-415b-bb42-8404948771b6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9b792df2-0b92-4f39-859c-7c18d5f1eb85" -> "cdb9ca6b-e71b-415b-bb42-8404948771b6";
+"880cf0dc-d72a-40ed-9cd0-863be06a4fe9" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"cdb9ca6b-e71b-415b-bb42-8404948771b6" -> "880cf0dc-d72a-40ed-9cd0-863be06a4fe9";
+"96eb2ba9-d846-431c-8f3a-ac62ee7c9a8b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"880cf0dc-d72a-40ed-9cd0-863be06a4fe9" -> "96eb2ba9-d846-431c-8f3a-ac62ee7c9a8b";
+"dc9437d8-2498-4ed4-a0e4-f3e391f22453" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"96eb2ba9-d846-431c-8f3a-ac62ee7c9a8b" -> "dc9437d8-2498-4ed4-a0e4-f3e391f22453";
+"86c955fd-85d8-48f5-9df9-f37a8f99e614" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"dc9437d8-2498-4ed4-a0e4-f3e391f22453" -> "86c955fd-85d8-48f5-9df9-f37a8f99e614";
+"2600578a-a1ec-47d6-a7b8-f7e9568eb7ae" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"86c955fd-85d8-48f5-9df9-f37a8f99e614" -> "2600578a-a1ec-47d6-a7b8-f7e9568eb7ae";
+"d1217769-f4b0-4f6b-ba86-6758da8aa93d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2600578a-a1ec-47d6-a7b8-f7e9568eb7ae" -> "d1217769-f4b0-4f6b-ba86-6758da8aa93d";
+"4c176a70-cb75-40ee-9880-5cb7860cc7fb" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d1217769-f4b0-4f6b-ba86-6758da8aa93d" -> "4c176a70-cb75-40ee-9880-5cb7860cc7fb";
+"31e4a24e-e72b-4fe5-952d-009b10257ac5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4c176a70-cb75-40ee-9880-5cb7860cc7fb" -> "31e4a24e-e72b-4fe5-952d-009b10257ac5";
+"c6516339-3c7c-4c12-a646-e3f6b8031737" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"31e4a24e-e72b-4fe5-952d-009b10257ac5" -> "c6516339-3c7c-4c12-a646-e3f6b8031737";
+"26a0dca4-81b9-4b94-86b2-81b5892e2306" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c6516339-3c7c-4c12-a646-e3f6b8031737" -> "26a0dca4-81b9-4b94-86b2-81b5892e2306";
+"db87691f-3434-40e8-88d8-b9b2d6fb4613" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"26a0dca4-81b9-4b94-86b2-81b5892e2306" -> "db87691f-3434-40e8-88d8-b9b2d6fb4613";
+"6e1e9dd7-8cdd-455d-b782-23d06884073a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"db87691f-3434-40e8-88d8-b9b2d6fb4613" -> "6e1e9dd7-8cdd-455d-b782-23d06884073a";
+"4600ac63-1962-48d3-9ee3-75196c266733" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6e1e9dd7-8cdd-455d-b782-23d06884073a" -> "4600ac63-1962-48d3-9ee3-75196c266733";
+"ae4c6211-be9c-451e-a1c9-3d223b3c93c1" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4600ac63-1962-48d3-9ee3-75196c266733" -> "ae4c6211-be9c-451e-a1c9-3d223b3c93c1";
+"5687d0f9-e491-46fe-a422-5f5020557463" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ae4c6211-be9c-451e-a1c9-3d223b3c93c1" -> "5687d0f9-e491-46fe-a422-5f5020557463";
+"ef63e609-7d1d-4031-b60c-d4b2f310a824" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"5687d0f9-e491-46fe-a422-5f5020557463" -> "ef63e609-7d1d-4031-b60c-d4b2f310a824";
+"1b017079-e14d-4e13-8491-1a1777242d0a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ef63e609-7d1d-4031-b60c-d4b2f310a824" -> "1b017079-e14d-4e13-8491-1a1777242d0a";
+"1e033c88-f144-443b-a7f4-64f7a6139d14" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1b017079-e14d-4e13-8491-1a1777242d0a" -> "1e033c88-f144-443b-a7f4-64f7a6139d14";
+"36acfc44-2032-42c3-bed2-fc59565dab3b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1e033c88-f144-443b-a7f4-64f7a6139d14" -> "36acfc44-2032-42c3-bed2-fc59565dab3b";
+"2ead2019-1dad-47f3-ad5f-7057bf1a4527" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"36acfc44-2032-42c3-bed2-fc59565dab3b" -> "2ead2019-1dad-47f3-ad5f-7057bf1a4527";
+"1bead2bc-87f0-4a21-96c1-c54169b19872" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2ead2019-1dad-47f3-ad5f-7057bf1a4527" -> "1bead2bc-87f0-4a21-96c1-c54169b19872";
+"d97956b7-d14f-4527-a10f-d81f3efced53" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1bead2bc-87f0-4a21-96c1-c54169b19872" -> "d97956b7-d14f-4527-a10f-d81f3efced53";
+"b8a71a53-e324-41b4-90a3-c3c22ac99495" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d97956b7-d14f-4527-a10f-d81f3efced53" -> "b8a71a53-e324-41b4-90a3-c3c22ac99495";
+"041f1fcd-057e-49a5-9bcd-2750002de76e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b8a71a53-e324-41b4-90a3-c3c22ac99495" -> "041f1fcd-057e-49a5-9bcd-2750002de76e";
+"5f582cf9-b773-4b21-a895-6fb51da47bb9" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"041f1fcd-057e-49a5-9bcd-2750002de76e" -> "5f582cf9-b773-4b21-a895-6fb51da47bb9";
+"232af14c-bc2c-4fac-b0b4-a73ab8ebe388" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"5f582cf9-b773-4b21-a895-6fb51da47bb9" -> "232af14c-bc2c-4fac-b0b4-a73ab8ebe388";
+"eb09ed02-bc8b-4849-a77e-1093c6f91298" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"232af14c-bc2c-4fac-b0b4-a73ab8ebe388" -> "eb09ed02-bc8b-4849-a77e-1093c6f91298";
+"c0eaae0d-4e66-4287-a9e9-4e15d751dc0c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"eb09ed02-bc8b-4849-a77e-1093c6f91298" -> "c0eaae0d-4e66-4287-a9e9-4e15d751dc0c";
+"03022e80-ad4d-4ab9-bfb0-2a8f13501f93" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c0eaae0d-4e66-4287-a9e9-4e15d751dc0c" -> "03022e80-ad4d-4ab9-bfb0-2a8f13501f93";
+"64b751a5-e2e9-4fda-add8-fd4006d5258e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"03022e80-ad4d-4ab9-bfb0-2a8f13501f93" -> "64b751a5-e2e9-4fda-add8-fd4006d5258e";
+"7f81c8e8-5fe7-4def-89b8-f108e4c3d790" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"64b751a5-e2e9-4fda-add8-fd4006d5258e" -> "7f81c8e8-5fe7-4def-89b8-f108e4c3d790";
+"cdebe500-7ce8-48b0-9351-012ebdaabf09" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7f81c8e8-5fe7-4def-89b8-f108e4c3d790" -> "cdebe500-7ce8-48b0-9351-012ebdaabf09";
+"9a8ff6ee-7344-4adb-9452-5aeaaa3cb29a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"cdebe500-7ce8-48b0-9351-012ebdaabf09" -> "9a8ff6ee-7344-4adb-9452-5aeaaa3cb29a";
+"750b6912-f074-4612-b12f-dc2718b285fc" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9a8ff6ee-7344-4adb-9452-5aeaaa3cb29a" -> "750b6912-f074-4612-b12f-dc2718b285fc";
+"0322cea6-8fbc-4d89-ad84-c15d4a984d38" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"750b6912-f074-4612-b12f-dc2718b285fc" -> "0322cea6-8fbc-4d89-ad84-c15d4a984d38";
+"8ea19ab2-f32f-4012-bc3b-ce5755487f43" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0322cea6-8fbc-4d89-ad84-c15d4a984d38" -> "8ea19ab2-f32f-4012-bc3b-ce5755487f43";
+"6344bd65-9080-4112-8108-f0591a0e9ffc" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8ea19ab2-f32f-4012-bc3b-ce5755487f43" -> "6344bd65-9080-4112-8108-f0591a0e9ffc";
+"65d3cf0f-75ba-4923-8f85-38c6abbee3df" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6344bd65-9080-4112-8108-f0591a0e9ffc" -> "65d3cf0f-75ba-4923-8f85-38c6abbee3df";
+"8937cf83-4a84-43ea-9287-974867ba5d4a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"65d3cf0f-75ba-4923-8f85-38c6abbee3df" -> "8937cf83-4a84-43ea-9287-974867ba5d4a";
+"2228dd03-f9f2-4278-b48e-5a9193f1e732" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8937cf83-4a84-43ea-9287-974867ba5d4a" -> "2228dd03-f9f2-4278-b48e-5a9193f1e732";
+"ff69c7fb-8568-47c9-b834-0eb33d45fe4c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2228dd03-f9f2-4278-b48e-5a9193f1e732" -> "ff69c7fb-8568-47c9-b834-0eb33d45fe4c";
+"11d8b598-758e-4eb5-95b7-5e131116b4c7" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ff69c7fb-8568-47c9-b834-0eb33d45fe4c" -> "11d8b598-758e-4eb5-95b7-5e131116b4c7";
+"dd20004b-9276-47ff-85ca-58620d796052" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"11d8b598-758e-4eb5-95b7-5e131116b4c7" -> "dd20004b-9276-47ff-85ca-58620d796052";
+"7daa64a6-e717-4779-83b9-2f5262385dba" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"dd20004b-9276-47ff-85ca-58620d796052" -> "7daa64a6-e717-4779-83b9-2f5262385dba";
+"6d188403-a068-4ad0-ab75-95f9e68b0005" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7daa64a6-e717-4779-83b9-2f5262385dba" -> "6d188403-a068-4ad0-ab75-95f9e68b0005";
+"875f0032-4ffc-4976-bc28-4a935ce6ec9e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6d188403-a068-4ad0-ab75-95f9e68b0005" -> "875f0032-4ffc-4976-bc28-4a935ce6ec9e";
+"46b863fb-fc32-4621-807c-ee9d7ecaf437" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"875f0032-4ffc-4976-bc28-4a935ce6ec9e" -> "46b863fb-fc32-4621-807c-ee9d7ecaf437";
+"4e9a10b7-1cef-4d7b-b687-fdc5eaa2e157" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"46b863fb-fc32-4621-807c-ee9d7ecaf437" -> "4e9a10b7-1cef-4d7b-b687-fdc5eaa2e157";
+"a6a03915-2780-4144-a136-e27071f04ae3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4e9a10b7-1cef-4d7b-b687-fdc5eaa2e157" -> "a6a03915-2780-4144-a136-e27071f04ae3";
+"0bd98a5d-756a-49a2-ab3a-d3370b8e123e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a6a03915-2780-4144-a136-e27071f04ae3" -> "0bd98a5d-756a-49a2-ab3a-d3370b8e123e";
+"918a212f-a881-4a48-bf9c-24545a9fbe15" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0bd98a5d-756a-49a2-ab3a-d3370b8e123e" -> "918a212f-a881-4a48-bf9c-24545a9fbe15";
+"12132635-0693-4f02-824a-f5316ed392bd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"918a212f-a881-4a48-bf9c-24545a9fbe15" -> "12132635-0693-4f02-824a-f5316ed392bd";
+"2a03c2de-1bd5-46e8-a39a-7bf3dcd16cbb" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"12132635-0693-4f02-824a-f5316ed392bd" -> "2a03c2de-1bd5-46e8-a39a-7bf3dcd16cbb";
+"0c06bf3b-4753-4a80-b0cf-d478dcae5f3f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2a03c2de-1bd5-46e8-a39a-7bf3dcd16cbb" -> "0c06bf3b-4753-4a80-b0cf-d478dcae5f3f";
+"deef9627-5620-4faf-81c8-9c370f8f41c8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0c06bf3b-4753-4a80-b0cf-d478dcae5f3f" -> "deef9627-5620-4faf-81c8-9c370f8f41c8";
+"b04d93a8-bbcd-4a75-baff-bd7ab1740cfd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"deef9627-5620-4faf-81c8-9c370f8f41c8" -> "b04d93a8-bbcd-4a75-baff-bd7ab1740cfd";
+"f8ba80cb-0f09-4dda-b8ee-85afa7a211b4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b04d93a8-bbcd-4a75-baff-bd7ab1740cfd" -> "f8ba80cb-0f09-4dda-b8ee-85afa7a211b4";
+"a542388b-fb34-42c8-8331-a7bb8dab6228" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f8ba80cb-0f09-4dda-b8ee-85afa7a211b4" -> "a542388b-fb34-42c8-8331-a7bb8dab6228";
+"2a2a7636-ef61-4c94-80b2-ae942007f317" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a542388b-fb34-42c8-8331-a7bb8dab6228" -> "2a2a7636-ef61-4c94-80b2-ae942007f317";
+"59083db9-409f-4a7f-a4b3-4f1a133c2e09" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2a2a7636-ef61-4c94-80b2-ae942007f317" -> "59083db9-409f-4a7f-a4b3-4f1a133c2e09";
+"bd6006db-657d-4cfb-9c4f-f7db747f3a59" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"59083db9-409f-4a7f-a4b3-4f1a133c2e09" -> "bd6006db-657d-4cfb-9c4f-f7db747f3a59";
+"f83aae1b-2c2f-423a-b976-27be5c041f96" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"bd6006db-657d-4cfb-9c4f-f7db747f3a59" -> "f83aae1b-2c2f-423a-b976-27be5c041f96";
+"37674f9e-2668-4867-85e5-87ff7872d728" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f83aae1b-2c2f-423a-b976-27be5c041f96" -> "37674f9e-2668-4867-85e5-87ff7872d728";
+"cfee753a-a203-4019-8229-2c54cab910a6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"37674f9e-2668-4867-85e5-87ff7872d728" -> "cfee753a-a203-4019-8229-2c54cab910a6";
+"5a3281d1-71ee-40c5-84e7-b3d2e1a05403" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cfee753a-a203-4019-8229-2c54cab910a6" -> "5a3281d1-71ee-40c5-84e7-b3d2e1a05403";
+"d2cd94ef-5f6e-425a-b4aa-f9789259cbb2" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"cfee753a-a203-4019-8229-2c54cab910a6" -> "d2cd94ef-5f6e-425a-b4aa-f9789259cbb2";
+"0a5da1ce-9977-4e10-9689-b870ece14a6e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d2cd94ef-5f6e-425a-b4aa-f9789259cbb2" -> "0a5da1ce-9977-4e10-9689-b870ece14a6e";
+"13503e59-ca4e-4874-8bb1-8a1301d2dff9" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0a5da1ce-9977-4e10-9689-b870ece14a6e" -> "13503e59-ca4e-4874-8bb1-8a1301d2dff9";
+"5d229a97-2d12-4200-8cbe-d09f317acf60" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"13503e59-ca4e-4874-8bb1-8a1301d2dff9" -> "5d229a97-2d12-4200-8cbe-d09f317acf60";
+"10016163-9e6a-4af0-88f7-55cef970d54a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"5d229a97-2d12-4200-8cbe-d09f317acf60" -> "10016163-9e6a-4af0-88f7-55cef970d54a";
+"ea8bf2ce-f82a-4664-8e81-ebd92617e2e7" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"10016163-9e6a-4af0-88f7-55cef970d54a" -> "ea8bf2ce-f82a-4664-8e81-ebd92617e2e7";
+"e8f116c7-9b98-4aa7-9bbe-bba05d4eb196" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ea8bf2ce-f82a-4664-8e81-ebd92617e2e7" -> "e8f116c7-9b98-4aa7-9bbe-bba05d4eb196";
+"a92fba10-9dad-43f4-96b6-1f44f8a80d18" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e8f116c7-9b98-4aa7-9bbe-bba05d4eb196" -> "a92fba10-9dad-43f4-96b6-1f44f8a80d18";
+"b98236b8-ac11-4588-b3de-75785853b33d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a92fba10-9dad-43f4-96b6-1f44f8a80d18" -> "b98236b8-ac11-4588-b3de-75785853b33d";
+"b98c289f-eeae-4d76-aa6b-8b8ec4b93334" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b98236b8-ac11-4588-b3de-75785853b33d" -> "b98c289f-eeae-4d76-aa6b-8b8ec4b93334";
+"3801ed79-9e8b-413f-b2b4-7081c7160187" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b98c289f-eeae-4d76-aa6b-8b8ec4b93334" -> "3801ed79-9e8b-413f-b2b4-7081c7160187";
+"c7bced11-3911-4897-89f7-1954bff7e8e5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3801ed79-9e8b-413f-b2b4-7081c7160187" -> "c7bced11-3911-4897-89f7-1954bff7e8e5";
+"975b80c6-d9a3-4a36-a09d-01e3baf3b861" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c7bced11-3911-4897-89f7-1954bff7e8e5" -> "975b80c6-d9a3-4a36-a09d-01e3baf3b861";
+"22b0f4df-118b-4921-bf88-e29e667a20df" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"975b80c6-d9a3-4a36-a09d-01e3baf3b861" -> "22b0f4df-118b-4921-bf88-e29e667a20df";
+"b23bd517-39e5-4ade-a10b-9954cc314de3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"22b0f4df-118b-4921-bf88-e29e667a20df" -> "b23bd517-39e5-4ade-a10b-9954cc314de3";
+"f6c0e26b-991d-4556-8188-fb33372c1db1" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b23bd517-39e5-4ade-a10b-9954cc314de3" -> "f6c0e26b-991d-4556-8188-fb33372c1db1";
+"75a64a3c-9acb-4edd-b73a-fc9da0dd4042" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f6c0e26b-991d-4556-8188-fb33372c1db1" -> "75a64a3c-9acb-4edd-b73a-fc9da0dd4042";
+"91a774b2-afce-4652-a025-0833b932cfad" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"75a64a3c-9acb-4edd-b73a-fc9da0dd4042" -> "91a774b2-afce-4652-a025-0833b932cfad";
+"1b44901e-bc2e-43f7-8184-38a882f90b21" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"91a774b2-afce-4652-a025-0833b932cfad" -> "1b44901e-bc2e-43f7-8184-38a882f90b21";
+"8abbbe14-7bb3-4cdd-a878-f771d9a76405" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1b44901e-bc2e-43f7-8184-38a882f90b21" -> "8abbbe14-7bb3-4cdd-a878-f771d9a76405";
+"dd811019-5e94-4b7a-a8f3-dfaacd919e60" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8abbbe14-7bb3-4cdd-a878-f771d9a76405" -> "dd811019-5e94-4b7a-a8f3-dfaacd919e60";
+"445ff676-c820-4321-b420-3e25bad2fa46" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"dd811019-5e94-4b7a-a8f3-dfaacd919e60" -> "445ff676-c820-4321-b420-3e25bad2fa46";
+"9efe26dc-6d9e-40df-9da8-612f26f2f526" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"445ff676-c820-4321-b420-3e25bad2fa46" -> "9efe26dc-6d9e-40df-9da8-612f26f2f526";
+"25f1e39b-13c8-4683-ac5a-e864873d8e86" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9efe26dc-6d9e-40df-9da8-612f26f2f526" -> "25f1e39b-13c8-4683-ac5a-e864873d8e86";
+"f5213de8-46d3-4031-bf7a-50b67a4aad8b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"25f1e39b-13c8-4683-ac5a-e864873d8e86" -> "f5213de8-46d3-4031-bf7a-50b67a4aad8b";
+"f546a762-d82e-4e69-b5bf-0641685800fc" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f5213de8-46d3-4031-bf7a-50b67a4aad8b" -> "f546a762-d82e-4e69-b5bf-0641685800fc";
+"ed874c4e-fac5-4b27-bc0a-b7e3d882c911" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f546a762-d82e-4e69-b5bf-0641685800fc" -> "ed874c4e-fac5-4b27-bc0a-b7e3d882c911";
+"7f3b2b63-c451-4a6f-a51e-fa147c8a4907" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ed874c4e-fac5-4b27-bc0a-b7e3d882c911" -> "7f3b2b63-c451-4a6f-a51e-fa147c8a4907";
+"cdc9bb04-0e6b-4506-92cf-808b5d9aabb8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7f3b2b63-c451-4a6f-a51e-fa147c8a4907" -> "cdc9bb04-0e6b-4506-92cf-808b5d9aabb8";
+"fb853461-7d8b-4ce2-b08e-7dcc31ce82ac" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"cdc9bb04-0e6b-4506-92cf-808b5d9aabb8" -> "fb853461-7d8b-4ce2-b08e-7dcc31ce82ac";
+"7fa37aa5-c6cb-4c41-8a31-822039df5691" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"fb853461-7d8b-4ce2-b08e-7dcc31ce82ac" -> "7fa37aa5-c6cb-4c41-8a31-822039df5691";
+"b1d9a44d-2900-44c7-9fb4-095eb1158809" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7fa37aa5-c6cb-4c41-8a31-822039df5691" -> "b1d9a44d-2900-44c7-9fb4-095eb1158809";
+"1217cd36-8fd9-4069-b821-63b779906f04" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b1d9a44d-2900-44c7-9fb4-095eb1158809" -> "1217cd36-8fd9-4069-b821-63b779906f04";
+"417d9e62-684c-41dd-a93a-d57f8d814688" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1217cd36-8fd9-4069-b821-63b779906f04" -> "417d9e62-684c-41dd-a93a-d57f8d814688";
+"6c8fc24f-cb94-4f70-b908-f98131cc8383" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"417d9e62-684c-41dd-a93a-d57f8d814688" -> "6c8fc24f-cb94-4f70-b908-f98131cc8383";
+"128867ea-8b98-4274-8f6a-fae2b37d9303" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6c8fc24f-cb94-4f70-b908-f98131cc8383" -> "128867ea-8b98-4274-8f6a-fae2b37d9303";
+"6c02e9ae-74c2-4b96-84ef-7263bb905598" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"128867ea-8b98-4274-8f6a-fae2b37d9303" -> "6c02e9ae-74c2-4b96-84ef-7263bb905598";
+"07da896b-352f-45cc-978a-7910e32e26f8" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6c02e9ae-74c2-4b96-84ef-7263bb905598" -> "07da896b-352f-45cc-978a-7910e32e26f8";
+"f09bba5f-24ff-4feb-815e-168753c794ee" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"07da896b-352f-45cc-978a-7910e32e26f8" -> "f09bba5f-24ff-4feb-815e-168753c794ee";
+"6b38388a-801d-4f80-a3f6-bf0b82eda5eb" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f09bba5f-24ff-4feb-815e-168753c794ee" -> "6b38388a-801d-4f80-a3f6-bf0b82eda5eb";
+"7da565d2-dcc3-4251-aea7-e35220decbd7" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6b38388a-801d-4f80-a3f6-bf0b82eda5eb" -> "7da565d2-dcc3-4251-aea7-e35220decbd7";
+"2eaaa920-ca34-4887-99c3-d7c61a39d397" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7da565d2-dcc3-4251-aea7-e35220decbd7" -> "2eaaa920-ca34-4887-99c3-d7c61a39d397";
+"d3d947bd-4a3e-41a0-abff-ec71e8e7c31f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2eaaa920-ca34-4887-99c3-d7c61a39d397" -> "d3d947bd-4a3e-41a0-abff-ec71e8e7c31f";
+"9054986f-baf2-473b-9d07-6fa7db8b8de4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d3d947bd-4a3e-41a0-abff-ec71e8e7c31f" -> "9054986f-baf2-473b-9d07-6fa7db8b8de4";
+"99eed98e-93ee-4f89-ba57-68a5b996138b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"9054986f-baf2-473b-9d07-6fa7db8b8de4" -> "99eed98e-93ee-4f89-ba57-68a5b996138b";
+"2c18d376-5138-4a46-827e-6cf134091ec5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"99eed98e-93ee-4f89-ba57-68a5b996138b" -> "2c18d376-5138-4a46-827e-6cf134091ec5";
+"1d00a068-b9b8-45b5-a158-687d809a5058" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"2c18d376-5138-4a46-827e-6cf134091ec5" -> "1d00a068-b9b8-45b5-a158-687d809a5058";
+"0af6f2f4-6774-49e8-9a58-21dddb168b66" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1d00a068-b9b8-45b5-a158-687d809a5058" -> "0af6f2f4-6774-49e8-9a58-21dddb168b66";
+"a107a801-1676-4df5-9ee2-53bf3bcdf4a2" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0af6f2f4-6774-49e8-9a58-21dddb168b66" -> "a107a801-1676-4df5-9ee2-53bf3bcdf4a2";
+"d7df84ac-9fe8-481b-b80b-dc57492ee0aa" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a107a801-1676-4df5-9ee2-53bf3bcdf4a2" -> "d7df84ac-9fe8-481b-b80b-dc57492ee0aa";
+"21308556-c633-49f0-91b8-7bb278eeb026" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"d7df84ac-9fe8-481b-b80b-dc57492ee0aa" -> "21308556-c633-49f0-91b8-7bb278eeb026";
+"89288e52-97e1-4145-a293-2f9706b0dfca" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"21308556-c633-49f0-91b8-7bb278eeb026" -> "89288e52-97e1-4145-a293-2f9706b0dfca";
+"19a064ff-4ff2-4a56-b208-d7cc0aca3a80" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"89288e52-97e1-4145-a293-2f9706b0dfca" -> "19a064ff-4ff2-4a56-b208-d7cc0aca3a80";
+"3d1a9ed2-1f2f-4746-ad55-c4636aaad48b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"19a064ff-4ff2-4a56-b208-d7cc0aca3a80" -> "3d1a9ed2-1f2f-4746-ad55-c4636aaad48b";
+"36be88ea-4675-456b-b0df-2a6187d48de7" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3d1a9ed2-1f2f-4746-ad55-c4636aaad48b" -> "36be88ea-4675-456b-b0df-2a6187d48de7";
+"21fd7093-eb00-471a-99a3-ee5a755724cd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"36be88ea-4675-456b-b0df-2a6187d48de7" -> "21fd7093-eb00-471a-99a3-ee5a755724cd";
+"91e05fca-fbb5-4003-92b4-55baac05b1d1" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"21fd7093-eb00-471a-99a3-ee5a755724cd" -> "91e05fca-fbb5-4003-92b4-55baac05b1d1";
+"f2397a99-284e-47a7-a5c6-4906fe3e469d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"91e05fca-fbb5-4003-92b4-55baac05b1d1" -> "f2397a99-284e-47a7-a5c6-4906fe3e469d";
+"0956cf2a-6459-4bf1-967a-aa398a8ac30c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f2397a99-284e-47a7-a5c6-4906fe3e469d" -> "0956cf2a-6459-4bf1-967a-aa398a8ac30c";
+"ada34932-96e6-406b-ac1a-3b5f4d9a46fd" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0956cf2a-6459-4bf1-967a-aa398a8ac30c" -> "ada34932-96e6-406b-ac1a-3b5f4d9a46fd";
+"093cee6f-557c-41cf-abe9-4c44c3b97182" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ada34932-96e6-406b-ac1a-3b5f4d9a46fd" -> "093cee6f-557c-41cf-abe9-4c44c3b97182";
+"3e15b5fb-b9e0-4998-a5c6-cf6d9a2bc485" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"093cee6f-557c-41cf-abe9-4c44c3b97182" -> "3e15b5fb-b9e0-4998-a5c6-cf6d9a2bc485";
+"1e10f9b8-7550-43f8-abd0-af0bec88f1b5" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"3e15b5fb-b9e0-4998-a5c6-cf6d9a2bc485" -> "1e10f9b8-7550-43f8-abd0-af0bec88f1b5";
+"8e1356da-b49b-4dca-961c-9c40e512f07c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1e10f9b8-7550-43f8-abd0-af0bec88f1b5" -> "8e1356da-b49b-4dca-961c-9c40e512f07c";
+"01d064d6-8151-40c7-b7ae-557a71a7f01b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8e1356da-b49b-4dca-961c-9c40e512f07c" -> "01d064d6-8151-40c7-b7ae-557a71a7f01b";
+"1dab6884-ebe3-43bc-812f-fd9c7402e7db" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"01d064d6-8151-40c7-b7ae-557a71a7f01b" -> "1dab6884-ebe3-43bc-812f-fd9c7402e7db";
+"afa95aff-d179-44e6-9e02-0d8a50d51ed3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"1dab6884-ebe3-43bc-812f-fd9c7402e7db" -> "afa95aff-d179-44e6-9e02-0d8a50d51ed3";
+"a3ae9b62-12f3-47f0-8489-f9864bbd47e3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"afa95aff-d179-44e6-9e02-0d8a50d51ed3" -> "a3ae9b62-12f3-47f0-8489-f9864bbd47e3";
+"943d2ebd-7a6c-4d62-afa4-ad75f1576722" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a3ae9b62-12f3-47f0-8489-f9864bbd47e3" -> "943d2ebd-7a6c-4d62-afa4-ad75f1576722";
+"b6bf0eb8-fb4f-4948-922c-6007d7f4d95d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"943d2ebd-7a6c-4d62-afa4-ad75f1576722" -> "b6bf0eb8-fb4f-4948-922c-6007d7f4d95d";
+"20099c42-d264-44b2-986e-d403c9afb4e3" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b6bf0eb8-fb4f-4948-922c-6007d7f4d95d" -> "20099c42-d264-44b2-986e-d403c9afb4e3";
+"c0317628-ede8-4066-88fb-d1957c0a29f4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"20099c42-d264-44b2-986e-d403c9afb4e3" -> "c0317628-ede8-4066-88fb-d1957c0a29f4";
+"00a847a2-7a8a-4032-ae26-c71813e90091" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c0317628-ede8-4066-88fb-d1957c0a29f4" -> "00a847a2-7a8a-4032-ae26-c71813e90091";
+"8dd3e990-6ca4-4192-a239-b59c873c149b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"00a847a2-7a8a-4032-ae26-c71813e90091" -> "8dd3e990-6ca4-4192-a239-b59c873c149b";
+"04ce46f1-7778-4ea2-b47a-89a792555690" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8dd3e990-6ca4-4192-a239-b59c873c149b" -> "04ce46f1-7778-4ea2-b47a-89a792555690";
+"dc6576b3-e09b-45eb-be31-bd4c829383a7" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"04ce46f1-7778-4ea2-b47a-89a792555690" -> "dc6576b3-e09b-45eb-be31-bd4c829383a7";
+"6df244a9-d0e3-4afb-acc0-3c57e1f849fa" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"dc6576b3-e09b-45eb-be31-bd4c829383a7" -> "6df244a9-d0e3-4afb-acc0-3c57e1f849fa";
+"e9b393c4-d19c-49cb-b6d5-32c23b24502e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6df244a9-d0e3-4afb-acc0-3c57e1f849fa" -> "e9b393c4-d19c-49cb-b6d5-32c23b24502e";
+"cf804881-0a96-4f87-8a1f-ba8950351479" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e9b393c4-d19c-49cb-b6d5-32c23b24502e" -> "cf804881-0a96-4f87-8a1f-ba8950351479";
+"c6eb1df9-c639-411c-8a5d-4df6ee1b8ac1" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"cf804881-0a96-4f87-8a1f-ba8950351479" -> "c6eb1df9-c639-411c-8a5d-4df6ee1b8ac1";
+"b170a1d5-5316-44b0-a548-2ba26e761fe0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"c6eb1df9-c639-411c-8a5d-4df6ee1b8ac1" -> "b170a1d5-5316-44b0-a548-2ba26e761fe0";
+"6f4d70e9-d60f-405c-9303-1240b1db3eac" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b170a1d5-5316-44b0-a548-2ba26e761fe0" -> "6f4d70e9-d60f-405c-9303-1240b1db3eac";
+"552ba4ab-1f0a-4b3d-be89-7b2c0e68a506" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6f4d70e9-d60f-405c-9303-1240b1db3eac" -> "552ba4ab-1f0a-4b3d-be89-7b2c0e68a506";
+"7c8070d3-8878-49fa-a316-bcb565c1d7a6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"552ba4ab-1f0a-4b3d-be89-7b2c0e68a506" -> "7c8070d3-8878-49fa-a316-bcb565c1d7a6";
+"8f8b6712-c336-41c9-a958-3bbc0f7917b4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7c8070d3-8878-49fa-a316-bcb565c1d7a6" -> "8f8b6712-c336-41c9-a958-3bbc0f7917b4";
+"ac31a68d-e995-4d21-8da1-9b370463554a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"8f8b6712-c336-41c9-a958-3bbc0f7917b4" -> "ac31a68d-e995-4d21-8da1-9b370463554a";
+"f3df9e91-27bf-4ca6-b5ef-f9547adb35a2" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ac31a68d-e995-4d21-8da1-9b370463554a" -> "f3df9e91-27bf-4ca6-b5ef-f9547adb35a2";
+"b36051c2-dd84-4a0c-9326-8d37be3809b6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"f3df9e91-27bf-4ca6-b5ef-f9547adb35a2" -> "b36051c2-dd84-4a0c-9326-8d37be3809b6";
+"eb6a1163-b9cb-4d0a-a39e-68f2f14323e4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"b36051c2-dd84-4a0c-9326-8d37be3809b6" -> "eb6a1163-b9cb-4d0a-a39e-68f2f14323e4";
+"81c99573-0eea-464f-8d51-b799ee18a835" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"eb6a1163-b9cb-4d0a-a39e-68f2f14323e4" -> "81c99573-0eea-464f-8d51-b799ee18a835";
+"2e2e4c65-6b62-47e6-95a7-c5bc6dae0ecb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"81c99573-0eea-464f-8d51-b799ee18a835" -> "2e2e4c65-6b62-47e6-95a7-c5bc6dae0ecb";
+"b848d27d-4503-4031-8bae-893393b7123d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"2e2e4c65-6b62-47e6-95a7-c5bc6dae0ecb" -> "b848d27d-4503-4031-8bae-893393b7123d";
+"7cc0efc9-e201-4447-9b3f-165742aab289" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"2e2e4c65-6b62-47e6-95a7-c5bc6dae0ecb" -> "7cc0efc9-e201-4447-9b3f-165742aab289";
+"2a5b95c5-f343-4db2-a907-71c7a3e5ccb9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"2e2e4c65-6b62-47e6-95a7-c5bc6dae0ecb" -> "2a5b95c5-f343-4db2-a907-71c7a3e5ccb9";
+"513473c0-d65c-4d90-967b-fef1bbd23a52" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"81c99573-0eea-464f-8d51-b799ee18a835" -> "513473c0-d65c-4d90-967b-fef1bbd23a52";
+"72eb9fcb-8c48-48b6-b674-46450ae09d36" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"513473c0-d65c-4d90-967b-fef1bbd23a52" -> "72eb9fcb-8c48-48b6-b674-46450ae09d36";
+"3bdc9a57-5847-4c4f-8b2b-8b0f8af2dd49" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"513473c0-d65c-4d90-967b-fef1bbd23a52" -> "3bdc9a57-5847-4c4f-8b2b-8b0f8af2dd49";
+"b867df19-ca63-4f47-9e0d-7aa9a10d4018" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"513473c0-d65c-4d90-967b-fef1bbd23a52" -> "b867df19-ca63-4f47-9e0d-7aa9a10d4018";
+"9d85da11-9565-437e-b88c-d86bab73887a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"eb6a1163-b9cb-4d0a-a39e-68f2f14323e4" -> "9d85da11-9565-437e-b88c-d86bab73887a";
+"00eaf19f-462b-486a-a79e-36316549be89" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"9d85da11-9565-437e-b88c-d86bab73887a" -> "00eaf19f-462b-486a-a79e-36316549be89";
+"08f160b8-20de-480b-9236-b66121e6dce2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"9d85da11-9565-437e-b88c-d86bab73887a" -> "08f160b8-20de-480b-9236-b66121e6dce2";
+"f73ea383-7619-464b-9394-e3c9a618a559" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"9d85da11-9565-437e-b88c-d86bab73887a" -> "f73ea383-7619-464b-9394-e3c9a618a559";
+"ded7ee1c-6186-4f48-a8a0-bb43c3c2a857" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b36051c2-dd84-4a0c-9326-8d37be3809b6" -> "ded7ee1c-6186-4f48-a8a0-bb43c3c2a857";
+"f5627266-d96c-4669-93b9-be258441a1ad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"ded7ee1c-6186-4f48-a8a0-bb43c3c2a857" -> "f5627266-d96c-4669-93b9-be258441a1ad";
+"15670bd3-4a8e-4a9e-afdd-e732ec602959" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"ded7ee1c-6186-4f48-a8a0-bb43c3c2a857" -> "15670bd3-4a8e-4a9e-afdd-e732ec602959";
+"da5fe5f3-6d23-4c1f-beec-cba7d3164266" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,WaterTable)", shape=box, style=filled];
+"ded7ee1c-6186-4f48-a8a0-bb43c3c2a857" -> "da5fe5f3-6d23-4c1f-beec-cba7d3164266";
+"ce69e82a-5c3b-48db-966c-ec177602bae0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f3df9e91-27bf-4ca6-b5ef-f9547adb35a2" -> "ce69e82a-5c3b-48db-966c-ec177602bae0";
+"bbc29cc6-20b2-4193-b1dd-7a32f39050e9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"ce69e82a-5c3b-48db-966c-ec177602bae0" -> "bbc29cc6-20b2-4193-b1dd-7a32f39050e9";
+"c4eca1d7-a2f9-4c89-8144-ee2ff37df5ba" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"ce69e82a-5c3b-48db-966c-ec177602bae0" -> "c4eca1d7-a2f9-4c89-8144-ee2ff37df5ba";
+"c1af8498-5904-4d8e-bc02-7924ea94bfbc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ac31a68d-e995-4d21-8da1-9b370463554a" -> "c1af8498-5904-4d8e-bc02-7924ea94bfbc";
+"c8e0c51a-cc3e-4c50-8ea2-cff3010ab36e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"c1af8498-5904-4d8e-bc02-7924ea94bfbc" -> "c8e0c51a-cc3e-4c50-8ea2-cff3010ab36e";
+"b44b27d2-05fa-4162-acce-dfdcb94bfadb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"c1af8498-5904-4d8e-bc02-7924ea94bfbc" -> "b44b27d2-05fa-4162-acce-dfdcb94bfadb";
+"1d16f199-e2a2-4e10-abb1-f6884b8bce40" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,WaterTable)", shape=box, style=filled];
+"c1af8498-5904-4d8e-bc02-7924ea94bfbc" -> "1d16f199-e2a2-4e10-abb1-f6884b8bce40";
+"02e1f562-c2e1-4334-b34a-f92ca4e260af" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8f8b6712-c336-41c9-a958-3bbc0f7917b4" -> "02e1f562-c2e1-4334-b34a-f92ca4e260af";
+"5ce7094e-7654-41b9-8465-820ea36c399c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"02e1f562-c2e1-4334-b34a-f92ca4e260af" -> "5ce7094e-7654-41b9-8465-820ea36c399c";
+"429753fc-fff9-471e-9576-7faf02c6d2c6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"02e1f562-c2e1-4334-b34a-f92ca4e260af" -> "429753fc-fff9-471e-9576-7faf02c6d2c6";
+"d8103559-25b8-4419-b8b3-3e7d9c44ad0e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"02e1f562-c2e1-4334-b34a-f92ca4e260af" -> "d8103559-25b8-4419-b8b3-3e7d9c44ad0e";
+"9c8a5901-1909-4f5a-8f9f-58967edd194e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7c8070d3-8878-49fa-a316-bcb565c1d7a6" -> "9c8a5901-1909-4f5a-8f9f-58967edd194e";
+"37077af7-5ba7-477e-a986-728ed85232b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"9c8a5901-1909-4f5a-8f9f-58967edd194e" -> "37077af7-5ba7-477e-a986-728ed85232b5";
+"32c1e73f-ec6a-4e6c-8587-1aadccb33a06" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"9c8a5901-1909-4f5a-8f9f-58967edd194e" -> "32c1e73f-ec6a-4e6c-8587-1aadccb33a06";
+"7bd333c9-5b85-4f6e-9581-338117923a32" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"9c8a5901-1909-4f5a-8f9f-58967edd194e" -> "7bd333c9-5b85-4f6e-9581-338117923a32";
+"5ff77b76-6c95-4dfc-a5ac-8ed47bf7ca48" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"552ba4ab-1f0a-4b3d-be89-7b2c0e68a506" -> "5ff77b76-6c95-4dfc-a5ac-8ed47bf7ca48";
+"9d26bd30-b5e3-404a-83e1-02c034f42606" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"5ff77b76-6c95-4dfc-a5ac-8ed47bf7ca48" -> "9d26bd30-b5e3-404a-83e1-02c034f42606";
+"f8e546b1-0afa-45a7-ae22-0a298bd06d48" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"5ff77b76-6c95-4dfc-a5ac-8ed47bf7ca48" -> "f8e546b1-0afa-45a7-ae22-0a298bd06d48";
+"862ffa6c-152b-4f9f-a196-2dbf57a7a1e1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"5ff77b76-6c95-4dfc-a5ac-8ed47bf7ca48" -> "862ffa6c-152b-4f9f-a196-2dbf57a7a1e1";
+"7a296eef-a4d2-4281-8864-9ac00ab561b0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6f4d70e9-d60f-405c-9303-1240b1db3eac" -> "7a296eef-a4d2-4281-8864-9ac00ab561b0";
+"85fd988a-7627-4ae8-99f5-34f3c476dd98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"7a296eef-a4d2-4281-8864-9ac00ab561b0" -> "85fd988a-7627-4ae8-99f5-34f3c476dd98";
+"878b7df8-4cbd-44a4-9dca-0f8ee4a669a9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"7a296eef-a4d2-4281-8864-9ac00ab561b0" -> "878b7df8-4cbd-44a4-9dca-0f8ee4a669a9";
+"d77e461f-d702-4532-b8c7-8b5f8463ce5a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"7a296eef-a4d2-4281-8864-9ac00ab561b0" -> "d77e461f-d702-4532-b8c7-8b5f8463ce5a";
+"c1d52509-e83c-4a74-a13d-d1f2b122c7f9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b170a1d5-5316-44b0-a548-2ba26e761fe0" -> "c1d52509-e83c-4a74-a13d-d1f2b122c7f9";
+"73b964fc-8513-4a02-9396-c2a493f95c40" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"c1d52509-e83c-4a74-a13d-d1f2b122c7f9" -> "73b964fc-8513-4a02-9396-c2a493f95c40";
+"26324ea7-77a7-41e4-8079-6d6d81d54e73" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"c1d52509-e83c-4a74-a13d-d1f2b122c7f9" -> "26324ea7-77a7-41e4-8079-6d6d81d54e73";
+"877ae462-8b57-4127-babe-bb5bed8b88f0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"c1d52509-e83c-4a74-a13d-d1f2b122c7f9" -> "877ae462-8b57-4127-babe-bb5bed8b88f0";
+"f0a3fd38-7073-49f7-ba1f-385e18a22bf5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c6eb1df9-c639-411c-8a5d-4df6ee1b8ac1" -> "f0a3fd38-7073-49f7-ba1f-385e18a22bf5";
+"0ef2be89-71d2-47bc-b8ec-2e7bc50ec5c4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"f0a3fd38-7073-49f7-ba1f-385e18a22bf5" -> "0ef2be89-71d2-47bc-b8ec-2e7bc50ec5c4";
+"1ea5269d-2bfa-4407-a59b-c30774437fbd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"f0a3fd38-7073-49f7-ba1f-385e18a22bf5" -> "1ea5269d-2bfa-4407-a59b-c30774437fbd";
+"08d0835b-8eee-400c-83de-db2e9494440d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"f0a3fd38-7073-49f7-ba1f-385e18a22bf5" -> "08d0835b-8eee-400c-83de-db2e9494440d";
+"90d8126a-a304-4b5b-a923-ff3392ad2822" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"cf804881-0a96-4f87-8a1f-ba8950351479" -> "90d8126a-a304-4b5b-a923-ff3392ad2822";
+"030df637-c783-4a10-9185-b6b969f5ea8c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"90d8126a-a304-4b5b-a923-ff3392ad2822" -> "030df637-c783-4a10-9185-b6b969f5ea8c";
+"cc2987ee-ed16-4131-943f-d6ac0e4a82b7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"90d8126a-a304-4b5b-a923-ff3392ad2822" -> "cc2987ee-ed16-4131-943f-d6ac0e4a82b7";
+"5fd2158f-66b0-4a33-bbd5-d7f65ac2b2e6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"90d8126a-a304-4b5b-a923-ff3392ad2822" -> "5fd2158f-66b0-4a33-bbd5-d7f65ac2b2e6";
+"5d60a29b-f2e1-4f86-9dcb-14c2aea6f28c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e9b393c4-d19c-49cb-b6d5-32c23b24502e" -> "5d60a29b-f2e1-4f86-9dcb-14c2aea6f28c";
+"59cf5c8e-eb75-49f2-8577-fdfa4f41add5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"5d60a29b-f2e1-4f86-9dcb-14c2aea6f28c" -> "59cf5c8e-eb75-49f2-8577-fdfa4f41add5";
+"5b0de631-0c35-4c0d-83a8-b4dd1e03cbc0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"5d60a29b-f2e1-4f86-9dcb-14c2aea6f28c" -> "5b0de631-0c35-4c0d-83a8-b4dd1e03cbc0";
+"6dd6157e-d4ea-4770-acf9-e7060c1df669" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6df244a9-d0e3-4afb-acc0-3c57e1f849fa" -> "6dd6157e-d4ea-4770-acf9-e7060c1df669";
+"fb9773d9-7ee0-47f1-ab81-64bd75fd0ef2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"6dd6157e-d4ea-4770-acf9-e7060c1df669" -> "fb9773d9-7ee0-47f1-ab81-64bd75fd0ef2";
+"c34d1128-1f88-449d-b313-6a1c9e6e5e80" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"6dd6157e-d4ea-4770-acf9-e7060c1df669" -> "c34d1128-1f88-449d-b313-6a1c9e6e5e80";
+"068c9e38-5227-48db-8296-2654c69e49ba" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"6dd6157e-d4ea-4770-acf9-e7060c1df669" -> "068c9e38-5227-48db-8296-2654c69e49ba";
+"ee2de5a6-a5f4-47cc-9219-73e5acca3839" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"dc6576b3-e09b-45eb-be31-bd4c829383a7" -> "ee2de5a6-a5f4-47cc-9219-73e5acca3839";
+"1b091b64-58ef-46a2-a252-0bf441aef507" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"ee2de5a6-a5f4-47cc-9219-73e5acca3839" -> "1b091b64-58ef-46a2-a252-0bf441aef507";
+"7219e198-b69a-4fe7-957d-7164945e9d58" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"ee2de5a6-a5f4-47cc-9219-73e5acca3839" -> "7219e198-b69a-4fe7-957d-7164945e9d58";
+"516c552f-1a5c-47a3-a2cd-a3008a417817" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"ee2de5a6-a5f4-47cc-9219-73e5acca3839" -> "516c552f-1a5c-47a3-a2cd-a3008a417817";
+"a915c4d2-1caf-4f1a-a1a5-eb3137cb6403" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"04ce46f1-7778-4ea2-b47a-89a792555690" -> "a915c4d2-1caf-4f1a-a1a5-eb3137cb6403";
+"35135e9d-aef5-46df-ba0b-0514ac1af341" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"a915c4d2-1caf-4f1a-a1a5-eb3137cb6403" -> "35135e9d-aef5-46df-ba0b-0514ac1af341";
+"61e6593c-573f-4dde-a4fe-abf2848f4914" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"a915c4d2-1caf-4f1a-a1a5-eb3137cb6403" -> "61e6593c-573f-4dde-a4fe-abf2848f4914";
+"9bcacdb1-5a73-4e45-a7b1-ac5cc2931ef2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"a915c4d2-1caf-4f1a-a1a5-eb3137cb6403" -> "9bcacdb1-5a73-4e45-a7b1-ac5cc2931ef2";
+"719569ea-8870-4a87-8bd8-28eeae2db12d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8dd3e990-6ca4-4192-a239-b59c873c149b" -> "719569ea-8870-4a87-8bd8-28eeae2db12d";
+"4eda9db4-70bc-4b20-a5ed-110ad74d8c64" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"719569ea-8870-4a87-8bd8-28eeae2db12d" -> "4eda9db4-70bc-4b20-a5ed-110ad74d8c64";
+"b1033a4c-90c2-4eb9-98bb-f84b08613d02" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"719569ea-8870-4a87-8bd8-28eeae2db12d" -> "b1033a4c-90c2-4eb9-98bb-f84b08613d02";
+"cc9b0fc3-e0d4-44eb-9a88-5537b048fa29" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"719569ea-8870-4a87-8bd8-28eeae2db12d" -> "cc9b0fc3-e0d4-44eb-9a88-5537b048fa29";
+"07a942b0-d8d0-41f3-bf04-f0c506ef90f5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"00a847a2-7a8a-4032-ae26-c71813e90091" -> "07a942b0-d8d0-41f3-bf04-f0c506ef90f5";
+"3b59f776-30ce-489e-b723-179344b8b5e5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"07a942b0-d8d0-41f3-bf04-f0c506ef90f5" -> "3b59f776-30ce-489e-b723-179344b8b5e5";
+"f088619c-7a18-4a50-87f8-a60abe2c58cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"07a942b0-d8d0-41f3-bf04-f0c506ef90f5" -> "f088619c-7a18-4a50-87f8-a60abe2c58cd";
+"657dc27a-b44c-4940-b904-e46926e3db9f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"07a942b0-d8d0-41f3-bf04-f0c506ef90f5" -> "657dc27a-b44c-4940-b904-e46926e3db9f";
+"293f6e2d-378c-4060-8770-c6ad0eb9a5b6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c0317628-ede8-4066-88fb-d1957c0a29f4" -> "293f6e2d-378c-4060-8770-c6ad0eb9a5b6";
+"9cca3ce0-e527-486f-a66e-f09d9b64a42a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"293f6e2d-378c-4060-8770-c6ad0eb9a5b6" -> "9cca3ce0-e527-486f-a66e-f09d9b64a42a";
+"cfcfe867-8611-4701-a0e0-297bc54131e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"293f6e2d-378c-4060-8770-c6ad0eb9a5b6" -> "cfcfe867-8611-4701-a0e0-297bc54131e6";
+"179f6a23-8805-4039-b51a-89d4c915fac9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"293f6e2d-378c-4060-8770-c6ad0eb9a5b6" -> "179f6a23-8805-4039-b51a-89d4c915fac9";
+"f2f5b020-a6ff-4f32-835d-a429b39f8b86" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"20099c42-d264-44b2-986e-d403c9afb4e3" -> "f2f5b020-a6ff-4f32-835d-a429b39f8b86";
+"6d3417d9-e755-42d6-9e7d-88733fffe19a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"f2f5b020-a6ff-4f32-835d-a429b39f8b86" -> "6d3417d9-e755-42d6-9e7d-88733fffe19a";
+"a2c30457-2c24-496d-9ffe-d826b860eb11" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"f2f5b020-a6ff-4f32-835d-a429b39f8b86" -> "a2c30457-2c24-496d-9ffe-d826b860eb11";
+"1f3a7ef4-3bc9-472d-9505-6d34a647d74c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,BrightTable)", shape=box, style=filled];
+"f2f5b020-a6ff-4f32-835d-a429b39f8b86" -> "1f3a7ef4-3bc9-472d-9505-6d34a647d74c";
+"107e4167-8879-4b30-948c-3c622bc506f6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b6bf0eb8-fb4f-4948-922c-6007d7f4d95d" -> "107e4167-8879-4b30-948c-3c622bc506f6";
+"d782f876-319b-4fa5-949a-b34bd84ea5d1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"107e4167-8879-4b30-948c-3c622bc506f6" -> "d782f876-319b-4fa5-949a-b34bd84ea5d1";
+"5297618c-5248-4d0a-abe1-9647b8548439" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"107e4167-8879-4b30-948c-3c622bc506f6" -> "5297618c-5248-4d0a-abe1-9647b8548439";
+"4cbaca17-c610-489a-bcc0-00e620e1b0c9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"107e4167-8879-4b30-948c-3c622bc506f6" -> "4cbaca17-c610-489a-bcc0-00e620e1b0c9";
+"db441cec-2dc9-4706-9444-0f99751c73bc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"943d2ebd-7a6c-4d62-afa4-ad75f1576722" -> "db441cec-2dc9-4706-9444-0f99751c73bc";
+"698a89b1-6ddb-4cde-8434-8fb5d60aeca5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"db441cec-2dc9-4706-9444-0f99751c73bc" -> "698a89b1-6ddb-4cde-8434-8fb5d60aeca5";
+"2fcfe3f0-1959-483d-b129-e23d429cd9eb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"db441cec-2dc9-4706-9444-0f99751c73bc" -> "2fcfe3f0-1959-483d-b129-e23d429cd9eb";
+"0dcb2f43-c240-4320-8937-850b5dd3dd82" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"db441cec-2dc9-4706-9444-0f99751c73bc" -> "0dcb2f43-c240-4320-8937-850b5dd3dd82";
+"2a6a2d27-f063-4de6-b244-b90ca23c3c78" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a3ae9b62-12f3-47f0-8489-f9864bbd47e3" -> "2a6a2d27-f063-4de6-b244-b90ca23c3c78";
+"77e6ae5a-b6c3-486f-96b0-0c895f51cbd2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"2a6a2d27-f063-4de6-b244-b90ca23c3c78" -> "77e6ae5a-b6c3-486f-96b0-0c895f51cbd2";
+"849851d3-61b3-464f-b5dc-499aeecd0260" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"2a6a2d27-f063-4de6-b244-b90ca23c3c78" -> "849851d3-61b3-464f-b5dc-499aeecd0260";
+"cd486532-ca39-4bd4-a7ae-267cfbb5f4fd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"2a6a2d27-f063-4de6-b244-b90ca23c3c78" -> "cd486532-ca39-4bd4-a7ae-267cfbb5f4fd";
+"3cad833d-9229-4d43-97c6-6d718860125c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"afa95aff-d179-44e6-9e02-0d8a50d51ed3" -> "3cad833d-9229-4d43-97c6-6d718860125c";
+"51bafe6f-8600-4d81-ad69-17fafccfe59c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"3cad833d-9229-4d43-97c6-6d718860125c" -> "51bafe6f-8600-4d81-ad69-17fafccfe59c";
+"d5c3f09a-dceb-4fc2-9d84-f7e2c20d4492" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"3cad833d-9229-4d43-97c6-6d718860125c" -> "d5c3f09a-dceb-4fc2-9d84-f7e2c20d4492";
+"83a76c1c-fc62-42f2-9e0f-f3bc60ed1f67" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"3cad833d-9229-4d43-97c6-6d718860125c" -> "83a76c1c-fc62-42f2-9e0f-f3bc60ed1f67";
+"f3ee52e0-1ecd-4b69-be9e-a9f35c8739fc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1dab6884-ebe3-43bc-812f-fd9c7402e7db" -> "f3ee52e0-1ecd-4b69-be9e-a9f35c8739fc";
+"bba488a3-9fad-44bb-94c7-d1f1d02c8e46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"f3ee52e0-1ecd-4b69-be9e-a9f35c8739fc" -> "bba488a3-9fad-44bb-94c7-d1f1d02c8e46";
+"6c9bc359-3bda-430c-8385-69bc1ce6f7d7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"f3ee52e0-1ecd-4b69-be9e-a9f35c8739fc" -> "6c9bc359-3bda-430c-8385-69bc1ce6f7d7";
+"b8e33d4b-c0f0-4ba8-ab74-452190ccdd52" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"f3ee52e0-1ecd-4b69-be9e-a9f35c8739fc" -> "b8e33d4b-c0f0-4ba8-ab74-452190ccdd52";
+"7951884c-58df-4bcc-9bbd-8be5c12c90f6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"01d064d6-8151-40c7-b7ae-557a71a7f01b" -> "7951884c-58df-4bcc-9bbd-8be5c12c90f6";
+"0284ed1b-b681-44da-96ce-09a1255ca6cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"7951884c-58df-4bcc-9bbd-8be5c12c90f6" -> "0284ed1b-b681-44da-96ce-09a1255ca6cd";
+"bbf5e382-c3ad-468d-a4f8-f374be01feb5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"7951884c-58df-4bcc-9bbd-8be5c12c90f6" -> "bbf5e382-c3ad-468d-a4f8-f374be01feb5";
+"a2c16372-f6fb-4d86-80ec-236cbabcb9a0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,BrightTable)", shape=box, style=filled];
+"7951884c-58df-4bcc-9bbd-8be5c12c90f6" -> "a2c16372-f6fb-4d86-80ec-236cbabcb9a0";
+"86314a58-2ccc-4fb7-91d9-73bc3b279053" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8e1356da-b49b-4dca-961c-9c40e512f07c" -> "86314a58-2ccc-4fb7-91d9-73bc3b279053";
+"31e7ae3f-615e-4736-90d6-566a0a889fd0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"86314a58-2ccc-4fb7-91d9-73bc3b279053" -> "31e7ae3f-615e-4736-90d6-566a0a889fd0";
+"1a81935f-de2d-40b6-be72-b1e73dc50d3e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"86314a58-2ccc-4fb7-91d9-73bc3b279053" -> "1a81935f-de2d-40b6-be72-b1e73dc50d3e";
+"cd38cbad-3544-49a6-b04f-ceba780e5105" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1e10f9b8-7550-43f8-abd0-af0bec88f1b5" -> "cd38cbad-3544-49a6-b04f-ceba780e5105";
+"2b5d947e-86c7-4793-8589-5b078d23c3ae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"cd38cbad-3544-49a6-b04f-ceba780e5105" -> "2b5d947e-86c7-4793-8589-5b078d23c3ae";
+"293b1666-f500-4299-a2ee-58624788a5ce" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"cd38cbad-3544-49a6-b04f-ceba780e5105" -> "293b1666-f500-4299-a2ee-58624788a5ce";
+"785bee13-46ed-42c7-b1c2-afd5071767f7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3e15b5fb-b9e0-4998-a5c6-cf6d9a2bc485" -> "785bee13-46ed-42c7-b1c2-afd5071767f7";
+"b901f988-aa6b-49a1-a92c-92ca244bef51" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"785bee13-46ed-42c7-b1c2-afd5071767f7" -> "b901f988-aa6b-49a1-a92c-92ca244bef51";
+"fb91924f-ffda-4973-a837-34943d54e8d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"785bee13-46ed-42c7-b1c2-afd5071767f7" -> "fb91924f-ffda-4973-a837-34943d54e8d8";
+"338f2150-e9d1-4f72-bdb2-096aca18f084" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"785bee13-46ed-42c7-b1c2-afd5071767f7" -> "338f2150-e9d1-4f72-bdb2-096aca18f084";
+"c83d3a89-967b-4f36-8744-24f6d8eec61d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"093cee6f-557c-41cf-abe9-4c44c3b97182" -> "c83d3a89-967b-4f36-8744-24f6d8eec61d";
+"4cd9a3e4-72f6-4b1b-b391-11bd91854db8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"c83d3a89-967b-4f36-8744-24f6d8eec61d" -> "4cd9a3e4-72f6-4b1b-b391-11bd91854db8";
+"d176519d-5e57-49d2-b0bc-eb7e2e4891b1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"c83d3a89-967b-4f36-8744-24f6d8eec61d" -> "d176519d-5e57-49d2-b0bc-eb7e2e4891b1";
+"8e340491-cb49-446c-a3d3-afa9892b3d70" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,BrightTable)", shape=box, style=filled];
+"c83d3a89-967b-4f36-8744-24f6d8eec61d" -> "8e340491-cb49-446c-a3d3-afa9892b3d70";
+"28e1249c-6624-4afa-ac64-6efbcf95164c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ada34932-96e6-406b-ac1a-3b5f4d9a46fd" -> "28e1249c-6624-4afa-ac64-6efbcf95164c";
+"ded7865f-6577-4dfe-ad38-c7a8fd18a83b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"28e1249c-6624-4afa-ac64-6efbcf95164c" -> "ded7865f-6577-4dfe-ad38-c7a8fd18a83b";
+"7b9ee1d6-9c06-4a88-a65b-4ea2441259f1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"28e1249c-6624-4afa-ac64-6efbcf95164c" -> "7b9ee1d6-9c06-4a88-a65b-4ea2441259f1";
+"8a974333-e215-46e3-8f39-8d30d76f8bbe" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"28e1249c-6624-4afa-ac64-6efbcf95164c" -> "8a974333-e215-46e3-8f39-8d30d76f8bbe";
+"d9a4f305-e312-4d82-86be-d5a8810b9207" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0956cf2a-6459-4bf1-967a-aa398a8ac30c" -> "d9a4f305-e312-4d82-86be-d5a8810b9207";
+"d4e5c1b9-4c20-4fe9-98b2-87a7ba5f1fef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"d9a4f305-e312-4d82-86be-d5a8810b9207" -> "d4e5c1b9-4c20-4fe9-98b2-87a7ba5f1fef";
+"f89231f1-a4b1-4924-986b-2f686df09cdd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"d9a4f305-e312-4d82-86be-d5a8810b9207" -> "f89231f1-a4b1-4924-986b-2f686df09cdd";
+"c9534f28-0e44-4dfa-9761-59541e9b8473" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"d9a4f305-e312-4d82-86be-d5a8810b9207" -> "c9534f28-0e44-4dfa-9761-59541e9b8473";
+"1f9494fb-5549-4899-bc6d-07c1e5b31fde" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f2397a99-284e-47a7-a5c6-4906fe3e469d" -> "1f9494fb-5549-4899-bc6d-07c1e5b31fde";
+"9db0055a-6599-4c65-b0c3-7255395fd5be" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"1f9494fb-5549-4899-bc6d-07c1e5b31fde" -> "9db0055a-6599-4c65-b0c3-7255395fd5be";
+"76679c05-648f-49c6-9cd4-3fb270f78148" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"1f9494fb-5549-4899-bc6d-07c1e5b31fde" -> "76679c05-648f-49c6-9cd4-3fb270f78148";
+"6158fe20-cb1a-4068-9658-2277d81916dd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"1f9494fb-5549-4899-bc6d-07c1e5b31fde" -> "6158fe20-cb1a-4068-9658-2277d81916dd";
+"4f947b7c-c82c-44cd-8a07-02f766e680ad" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"91e05fca-fbb5-4003-92b4-55baac05b1d1" -> "4f947b7c-c82c-44cd-8a07-02f766e680ad";
+"a99949a0-15f0-419d-b245-0aa9993d581c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"4f947b7c-c82c-44cd-8a07-02f766e680ad" -> "a99949a0-15f0-419d-b245-0aa9993d581c";
+"121c6258-04b4-4533-9cc3-3c7fdf4f6adb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"4f947b7c-c82c-44cd-8a07-02f766e680ad" -> "121c6258-04b4-4533-9cc3-3c7fdf4f6adb";
+"8b489962-a822-491d-86df-aa48341bd7cb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"21fd7093-eb00-471a-99a3-ee5a755724cd" -> "8b489962-a822-491d-86df-aa48341bd7cb";
+"2a650737-30ca-42c5-a57f-092be0af0aae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"8b489962-a822-491d-86df-aa48341bd7cb" -> "2a650737-30ca-42c5-a57f-092be0af0aae";
+"7bdbbd94-4abd-4082-9c0c-0a3a65977b67" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"8b489962-a822-491d-86df-aa48341bd7cb" -> "7bdbbd94-4abd-4082-9c0c-0a3a65977b67";
+"1bf2e458-810a-4990-b2e7-feffcca5ab56" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"8b489962-a822-491d-86df-aa48341bd7cb" -> "1bf2e458-810a-4990-b2e7-feffcca5ab56";
+"fc1b7d5e-b18d-4cf1-ab0d-40c77f6fd8f0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"36be88ea-4675-456b-b0df-2a6187d48de7" -> "fc1b7d5e-b18d-4cf1-ab0d-40c77f6fd8f0";
+"f2058ab0-1533-4839-b91d-c0d9cb653575" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"fc1b7d5e-b18d-4cf1-ab0d-40c77f6fd8f0" -> "f2058ab0-1533-4839-b91d-c0d9cb653575";
+"cf91265c-4dd2-4f6a-9d12-b3891e0a0da9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"fc1b7d5e-b18d-4cf1-ab0d-40c77f6fd8f0" -> "cf91265c-4dd2-4f6a-9d12-b3891e0a0da9";
+"d9f00865-e753-4e72-85c0-159cdba091fb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,BrightTable)", shape=box, style=filled];
+"fc1b7d5e-b18d-4cf1-ab0d-40c77f6fd8f0" -> "d9f00865-e753-4e72-85c0-159cdba091fb";
+"4eba4835-fbda-4597-aa37-cd13062bd8ce" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3d1a9ed2-1f2f-4746-ad55-c4636aaad48b" -> "4eba4835-fbda-4597-aa37-cd13062bd8ce";
+"079925a4-43ce-42ba-92ba-8154ca889611" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"4eba4835-fbda-4597-aa37-cd13062bd8ce" -> "079925a4-43ce-42ba-92ba-8154ca889611";
+"c23686f2-ac6d-4cbe-9de3-311246b1be61" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"4eba4835-fbda-4597-aa37-cd13062bd8ce" -> "c23686f2-ac6d-4cbe-9de3-311246b1be61";
+"973b988d-12f0-4411-b2cd-8fb2c5abd591" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,BrightTable)", shape=box, style=filled];
+"4eba4835-fbda-4597-aa37-cd13062bd8ce" -> "973b988d-12f0-4411-b2cd-8fb2c5abd591";
+"029b689e-f1f1-4b03-9f6f-4c7e9edbfadb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"19a064ff-4ff2-4a56-b208-d7cc0aca3a80" -> "029b689e-f1f1-4b03-9f6f-4c7e9edbfadb";
+"17f8c45b-7fcf-4e4a-84f1-1e3a00244fb1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"029b689e-f1f1-4b03-9f6f-4c7e9edbfadb" -> "17f8c45b-7fcf-4e4a-84f1-1e3a00244fb1";
+"d9025c0c-6766-47a9-a80c-38e8706abb94" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"029b689e-f1f1-4b03-9f6f-4c7e9edbfadb" -> "d9025c0c-6766-47a9-a80c-38e8706abb94";
+"92424231-7640-4a42-a287-e3c36a02d3a6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,CoffeeTable)", shape=box, style=filled];
+"029b689e-f1f1-4b03-9f6f-4c7e9edbfadb" -> "92424231-7640-4a42-a287-e3c36a02d3a6";
+"77b582a1-d0ba-4db0-85b8-571d478869cf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"89288e52-97e1-4145-a293-2f9706b0dfca" -> "77b582a1-d0ba-4db0-85b8-571d478869cf";
+"2851f753-cf4e-4320-9366-f2cdcbf16531" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"77b582a1-d0ba-4db0-85b8-571d478869cf" -> "2851f753-cf4e-4320-9366-f2cdcbf16531";
+"2f9b2c68-b7a4-4680-9594-c5aa2b967eee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"77b582a1-d0ba-4db0-85b8-571d478869cf" -> "2f9b2c68-b7a4-4680-9594-c5aa2b967eee";
+"462362be-ae45-4d66-bb6b-583826e1e2be" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"77b582a1-d0ba-4db0-85b8-571d478869cf" -> "462362be-ae45-4d66-bb6b-583826e1e2be";
+"e52df62e-50ef-4ee3-8489-df240fb1bf46" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"21308556-c633-49f0-91b8-7bb278eeb026" -> "e52df62e-50ef-4ee3-8489-df240fb1bf46";
+"cdd772ef-0c50-4390-8e1f-642bf45921b4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"e52df62e-50ef-4ee3-8489-df240fb1bf46" -> "cdd772ef-0c50-4390-8e1f-642bf45921b4";
+"049acd36-669b-4c0b-9e12-f0ab7aa43980" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"e52df62e-50ef-4ee3-8489-df240fb1bf46" -> "049acd36-669b-4c0b-9e12-f0ab7aa43980";
+"5c3f3a34-3212-451e-9e8a-e644dcc3335c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"e52df62e-50ef-4ee3-8489-df240fb1bf46" -> "5c3f3a34-3212-451e-9e8a-e644dcc3335c";
+"c72d5831-0a6e-4fc3-94df-dc91ca6defa2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d7df84ac-9fe8-481b-b80b-dc57492ee0aa" -> "c72d5831-0a6e-4fc3-94df-dc91ca6defa2";
+"13748cf9-e4bf-4fe3-8bcf-255b1233108e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"c72d5831-0a6e-4fc3-94df-dc91ca6defa2" -> "13748cf9-e4bf-4fe3-8bcf-255b1233108e";
+"839c7fe5-8cc8-4fba-b740-8286eb20c0a3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"c72d5831-0a6e-4fc3-94df-dc91ca6defa2" -> "839c7fe5-8cc8-4fba-b740-8286eb20c0a3";
+"7940c6e2-05bc-4843-9432-3a2d88bfda8b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a107a801-1676-4df5-9ee2-53bf3bcdf4a2" -> "7940c6e2-05bc-4843-9432-3a2d88bfda8b";
+"4fdc6c0a-9b37-440f-84e5-8d141774790f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"7940c6e2-05bc-4843-9432-3a2d88bfda8b" -> "4fdc6c0a-9b37-440f-84e5-8d141774790f";
+"513a902d-f746-4813-b2a6-b21d43ddcf59" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"7940c6e2-05bc-4843-9432-3a2d88bfda8b" -> "513a902d-f746-4813-b2a6-b21d43ddcf59";
+"faf295b0-9cab-47c0-b466-f63995f8516b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,CoffeeTable)", shape=box, style=filled];
+"7940c6e2-05bc-4843-9432-3a2d88bfda8b" -> "faf295b0-9cab-47c0-b466-f63995f8516b";
+"d9d2a2ae-4c46-4b3c-b6f5-7fa48c1039c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0af6f2f4-6774-49e8-9a58-21dddb168b66" -> "d9d2a2ae-4c46-4b3c-b6f5-7fa48c1039c9";
+"0187f0c8-fdd0-4c14-9216-1652e1f72092" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"d9d2a2ae-4c46-4b3c-b6f5-7fa48c1039c9" -> "0187f0c8-fdd0-4c14-9216-1652e1f72092";
+"282013fb-5596-4c1f-bb6b-c218b7d5ef65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"d9d2a2ae-4c46-4b3c-b6f5-7fa48c1039c9" -> "282013fb-5596-4c1f-bb6b-c218b7d5ef65";
+"be3cb027-b354-483b-94f8-ecc57564dfc3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,BrightTable)", shape=box, style=filled];
+"d9d2a2ae-4c46-4b3c-b6f5-7fa48c1039c9" -> "be3cb027-b354-483b-94f8-ecc57564dfc3";
+"7042d7d5-4a12-48a8-9d28-66476ffa4961" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1d00a068-b9b8-45b5-a158-687d809a5058" -> "7042d7d5-4a12-48a8-9d28-66476ffa4961";
+"f4452fb6-2840-4e8e-b744-c0d9ddfff0a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"7042d7d5-4a12-48a8-9d28-66476ffa4961" -> "f4452fb6-2840-4e8e-b744-c0d9ddfff0a3";
+"81fc32e0-aaf7-49db-9ce9-530c0a79d86c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"7042d7d5-4a12-48a8-9d28-66476ffa4961" -> "81fc32e0-aaf7-49db-9ce9-530c0a79d86c";
+"bcc42379-a0e1-45cd-86cd-4781e7f91414" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"7042d7d5-4a12-48a8-9d28-66476ffa4961" -> "bcc42379-a0e1-45cd-86cd-4781e7f91414";
+"5c6608df-a2bf-4e90-9641-96143a879210" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2c18d376-5138-4a46-827e-6cf134091ec5" -> "5c6608df-a2bf-4e90-9641-96143a879210";
+"f5e0deb8-77b8-45b7-a2e4-27e6254241fe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"5c6608df-a2bf-4e90-9641-96143a879210" -> "f5e0deb8-77b8-45b7-a2e4-27e6254241fe";
+"1b1bd566-436d-4fa6-8367-98d5e09ffd26" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"5c6608df-a2bf-4e90-9641-96143a879210" -> "1b1bd566-436d-4fa6-8367-98d5e09ffd26";
+"bf6a6f36-bcbd-4be0-866e-c5ec1d7242ee" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"99eed98e-93ee-4f89-ba57-68a5b996138b" -> "bf6a6f36-bcbd-4be0-866e-c5ec1d7242ee";
+"a176c3f2-399e-4444-a32b-f2684a01309f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"bf6a6f36-bcbd-4be0-866e-c5ec1d7242ee" -> "a176c3f2-399e-4444-a32b-f2684a01309f";
+"1cb42d57-d7de-4257-8678-25de6e6be32d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"bf6a6f36-bcbd-4be0-866e-c5ec1d7242ee" -> "1cb42d57-d7de-4257-8678-25de6e6be32d";
+"b6938345-3572-4ab4-be18-6ee9a69fdcd6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"bf6a6f36-bcbd-4be0-866e-c5ec1d7242ee" -> "b6938345-3572-4ab4-be18-6ee9a69fdcd6";
+"03a5c996-55ea-4da3-b8f6-12831b00c237" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9054986f-baf2-473b-9d07-6fa7db8b8de4" -> "03a5c996-55ea-4da3-b8f6-12831b00c237";
+"e0a055b6-d453-4143-a167-feab69c9f2e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"03a5c996-55ea-4da3-b8f6-12831b00c237" -> "e0a055b6-d453-4143-a167-feab69c9f2e2";
+"32f9bb5c-f679-4656-82e5-6e522143a8c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"03a5c996-55ea-4da3-b8f6-12831b00c237" -> "32f9bb5c-f679-4656-82e5-6e522143a8c8";
+"3080fe69-51a7-48ec-9c69-b7aab7115ec9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,WaterTable)", shape=box, style=filled];
+"03a5c996-55ea-4da3-b8f6-12831b00c237" -> "3080fe69-51a7-48ec-9c69-b7aab7115ec9";
+"015c3bb3-e629-4f45-a269-98b4516acc38" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d3d947bd-4a3e-41a0-abff-ec71e8e7c31f" -> "015c3bb3-e629-4f45-a269-98b4516acc38";
+"75d9767d-845e-4710-88ee-cb0e3370e821" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"015c3bb3-e629-4f45-a269-98b4516acc38" -> "75d9767d-845e-4710-88ee-cb0e3370e821";
+"d8a528d5-4935-46cc-aac6-f04facd611fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"015c3bb3-e629-4f45-a269-98b4516acc38" -> "d8a528d5-4935-46cc-aac6-f04facd611fb";
+"2cdb744a-663a-492e-94b6-d8dee71b5782" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"015c3bb3-e629-4f45-a269-98b4516acc38" -> "2cdb744a-663a-492e-94b6-d8dee71b5782";
+"2118a4fe-fe7b-472a-ad9a-8b1c5ff1bd91" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2eaaa920-ca34-4887-99c3-d7c61a39d397" -> "2118a4fe-fe7b-472a-ad9a-8b1c5ff1bd91";
+"45b23a1e-766b-4cc9-b741-8c9e2d72e71a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"2118a4fe-fe7b-472a-ad9a-8b1c5ff1bd91" -> "45b23a1e-766b-4cc9-b741-8c9e2d72e71a";
+"8fe2d3fe-5fee-462c-befb-73417b25b79f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"2118a4fe-fe7b-472a-ad9a-8b1c5ff1bd91" -> "8fe2d3fe-5fee-462c-befb-73417b25b79f";
+"0266af83-dfad-4865-9431-8d3e5b34f318" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"2118a4fe-fe7b-472a-ad9a-8b1c5ff1bd91" -> "0266af83-dfad-4865-9431-8d3e5b34f318";
+"efbb2289-f4de-4436-bbec-d98af14cf7c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7da565d2-dcc3-4251-aea7-e35220decbd7" -> "efbb2289-f4de-4436-bbec-d98af14cf7c9";
+"5c733d9b-a057-436c-9671-59525fc69916" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"efbb2289-f4de-4436-bbec-d98af14cf7c9" -> "5c733d9b-a057-436c-9671-59525fc69916";
+"30a0deaf-92f0-4721-9f86-ec2d1fba966c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"efbb2289-f4de-4436-bbec-d98af14cf7c9" -> "30a0deaf-92f0-4721-9f86-ec2d1fba966c";
+"114e600a-4afb-4dfb-9cb8-d3418e9e4474" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"efbb2289-f4de-4436-bbec-d98af14cf7c9" -> "114e600a-4afb-4dfb-9cb8-d3418e9e4474";
+"a20a9352-58fb-44f9-927f-2688e5fb247a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6b38388a-801d-4f80-a3f6-bf0b82eda5eb" -> "a20a9352-58fb-44f9-927f-2688e5fb247a";
+"e03896f2-6351-4758-aabb-f72f6aafa6bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"a20a9352-58fb-44f9-927f-2688e5fb247a" -> "e03896f2-6351-4758-aabb-f72f6aafa6bc";
+"d41bf27e-27fa-40d1-ae8e-e006e4283d5f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"a20a9352-58fb-44f9-927f-2688e5fb247a" -> "d41bf27e-27fa-40d1-ae8e-e006e4283d5f";
+"44a1ea8a-c2ca-42bc-923f-a6de619202bb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"a20a9352-58fb-44f9-927f-2688e5fb247a" -> "44a1ea8a-c2ca-42bc-923f-a6de619202bb";
+"dd5b6a53-91d0-463b-a4bb-5fede8d24e04" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f09bba5f-24ff-4feb-815e-168753c794ee" -> "dd5b6a53-91d0-463b-a4bb-5fede8d24e04";
+"231329a9-9300-4adc-812f-569f12ec8021" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"dd5b6a53-91d0-463b-a4bb-5fede8d24e04" -> "231329a9-9300-4adc-812f-569f12ec8021";
+"7fc5a790-2626-427e-b294-ec7873ad2caf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"dd5b6a53-91d0-463b-a4bb-5fede8d24e04" -> "7fc5a790-2626-427e-b294-ec7873ad2caf";
+"ac2ef713-ebb8-46e6-80b1-bd8b49463924" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"dd5b6a53-91d0-463b-a4bb-5fede8d24e04" -> "ac2ef713-ebb8-46e6-80b1-bd8b49463924";
+"2073c4bb-6f17-438a-b94d-f4208e926cf1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"07da896b-352f-45cc-978a-7910e32e26f8" -> "2073c4bb-6f17-438a-b94d-f4208e926cf1";
+"d4d74652-5e42-4ae1-852d-dc34d1757f2b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"2073c4bb-6f17-438a-b94d-f4208e926cf1" -> "d4d74652-5e42-4ae1-852d-dc34d1757f2b";
+"dcb6bfbe-5f56-4486-8d82-1568062d8075" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2073c4bb-6f17-438a-b94d-f4208e926cf1" -> "dcb6bfbe-5f56-4486-8d82-1568062d8075";
+"55722123-89a3-4197-a99d-9444210aca1b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"2073c4bb-6f17-438a-b94d-f4208e926cf1" -> "55722123-89a3-4197-a99d-9444210aca1b";
+"e79a386a-9ffe-486e-a0dd-b16ebea4549c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6c02e9ae-74c2-4b96-84ef-7263bb905598" -> "e79a386a-9ffe-486e-a0dd-b16ebea4549c";
+"da651ac6-fa9c-4046-b8f7-ba70b1a3ce02" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"e79a386a-9ffe-486e-a0dd-b16ebea4549c" -> "da651ac6-fa9c-4046-b8f7-ba70b1a3ce02";
+"fad875ab-1d11-419d-819b-dedbde9951e4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"e79a386a-9ffe-486e-a0dd-b16ebea4549c" -> "fad875ab-1d11-419d-819b-dedbde9951e4";
+"69b0fac3-7b9f-4fba-a75d-0e351996e85e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"e79a386a-9ffe-486e-a0dd-b16ebea4549c" -> "69b0fac3-7b9f-4fba-a75d-0e351996e85e";
+"9208773f-bf26-4d18-a620-ed2b05d3c611" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"128867ea-8b98-4274-8f6a-fae2b37d9303" -> "9208773f-bf26-4d18-a620-ed2b05d3c611";
+"8c91ef51-4e0b-420d-ad64-8f3ae97978c4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"9208773f-bf26-4d18-a620-ed2b05d3c611" -> "8c91ef51-4e0b-420d-ad64-8f3ae97978c4";
+"ff6e50f9-ad14-48bd-bfad-ba373febf01a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"9208773f-bf26-4d18-a620-ed2b05d3c611" -> "ff6e50f9-ad14-48bd-bfad-ba373febf01a";
+"0c5a79f2-9966-4f5f-8dac-870297c858fb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"9208773f-bf26-4d18-a620-ed2b05d3c611" -> "0c5a79f2-9966-4f5f-8dac-870297c858fb";
+"4a329bfb-bcd2-48d5-85c6-c6ca4fab4829" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6c8fc24f-cb94-4f70-b908-f98131cc8383" -> "4a329bfb-bcd2-48d5-85c6-c6ca4fab4829";
+"24abb813-51f8-4366-bd4b-bf6a332637be" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"4a329bfb-bcd2-48d5-85c6-c6ca4fab4829" -> "24abb813-51f8-4366-bd4b-bf6a332637be";
+"72945395-ef11-417d-8b9c-d74c39cbaaa0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"4a329bfb-bcd2-48d5-85c6-c6ca4fab4829" -> "72945395-ef11-417d-8b9c-d74c39cbaaa0";
+"61bfa8b0-cacf-47df-910e-9760176ed8e4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"4a329bfb-bcd2-48d5-85c6-c6ca4fab4829" -> "61bfa8b0-cacf-47df-910e-9760176ed8e4";
+"897789de-2ba2-4fc2-a545-a9d063ec1eb0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"417d9e62-684c-41dd-a93a-d57f8d814688" -> "897789de-2ba2-4fc2-a545-a9d063ec1eb0";
+"5aa25411-045b-4652-8b40-fa8b0a78e7c2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"897789de-2ba2-4fc2-a545-a9d063ec1eb0" -> "5aa25411-045b-4652-8b40-fa8b0a78e7c2";
+"f569a560-f1c0-47da-b8c0-dbbdd7528719" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"897789de-2ba2-4fc2-a545-a9d063ec1eb0" -> "f569a560-f1c0-47da-b8c0-dbbdd7528719";
+"02969dae-62e1-4fc3-a1f6-4223a6076102" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"897789de-2ba2-4fc2-a545-a9d063ec1eb0" -> "02969dae-62e1-4fc3-a1f6-4223a6076102";
+"365b26f3-7e3a-42a0-b2ee-3f242b3811aa" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1217cd36-8fd9-4069-b821-63b779906f04" -> "365b26f3-7e3a-42a0-b2ee-3f242b3811aa";
+"65265be7-cf4b-4c66-9bca-384ead7e954f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"365b26f3-7e3a-42a0-b2ee-3f242b3811aa" -> "65265be7-cf4b-4c66-9bca-384ead7e954f";
+"7dbff78b-87a2-4e07-952c-8d3a6b200a01" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"365b26f3-7e3a-42a0-b2ee-3f242b3811aa" -> "7dbff78b-87a2-4e07-952c-8d3a6b200a01";
+"bed21ac0-2375-4f89-ad70-0a2f9c26db74" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b1d9a44d-2900-44c7-9fb4-095eb1158809" -> "bed21ac0-2375-4f89-ad70-0a2f9c26db74";
+"a0d36e83-396c-4cdd-b794-0c06c3d7f85a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"bed21ac0-2375-4f89-ad70-0a2f9c26db74" -> "a0d36e83-396c-4cdd-b794-0c06c3d7f85a";
+"1d41d3c3-5722-4179-b6ac-2068ac52466f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"bed21ac0-2375-4f89-ad70-0a2f9c26db74" -> "1d41d3c3-5722-4179-b6ac-2068ac52466f";
+"38ec4631-59cd-4047-ad4f-bcdc962703b5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"bed21ac0-2375-4f89-ad70-0a2f9c26db74" -> "38ec4631-59cd-4047-ad4f-bcdc962703b5";
+"74432b94-a528-4201-908a-f1684b28412f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7fa37aa5-c6cb-4c41-8a31-822039df5691" -> "74432b94-a528-4201-908a-f1684b28412f";
+"d345a96c-5dcf-477f-a4c9-6447645a52f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"74432b94-a528-4201-908a-f1684b28412f" -> "d345a96c-5dcf-477f-a4c9-6447645a52f6";
+"ccbf7f0c-0bd6-4bfd-9741-e2af0b012968" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"74432b94-a528-4201-908a-f1684b28412f" -> "ccbf7f0c-0bd6-4bfd-9741-e2af0b012968";
+"fb5a8dc4-b76c-4ed0-bfa1-dde1373c0da5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"74432b94-a528-4201-908a-f1684b28412f" -> "fb5a8dc4-b76c-4ed0-bfa1-dde1373c0da5";
+"0d24fd1f-b989-4534-9e8b-f3beeb1d8714" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"fb853461-7d8b-4ce2-b08e-7dcc31ce82ac" -> "0d24fd1f-b989-4534-9e8b-f3beeb1d8714";
+"17fabf45-c50a-4239-8c8c-6f67f1dfe832" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"0d24fd1f-b989-4534-9e8b-f3beeb1d8714" -> "17fabf45-c50a-4239-8c8c-6f67f1dfe832";
+"bfb65f98-d483-4e76-846f-feddfe3965c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"0d24fd1f-b989-4534-9e8b-f3beeb1d8714" -> "bfb65f98-d483-4e76-846f-feddfe3965c3";
+"9ddefa75-8db8-43f8-9b4a-a277fa208997" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"0d24fd1f-b989-4534-9e8b-f3beeb1d8714" -> "9ddefa75-8db8-43f8-9b4a-a277fa208997";
+"537038bc-418b-4746-9a3a-5a86b0ac8854" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"cdc9bb04-0e6b-4506-92cf-808b5d9aabb8" -> "537038bc-418b-4746-9a3a-5a86b0ac8854";
+"745b23c4-ba17-4963-b689-963e32c5cfa7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"537038bc-418b-4746-9a3a-5a86b0ac8854" -> "745b23c4-ba17-4963-b689-963e32c5cfa7";
+"2cd53937-5571-4f9f-9841-a7506faef46d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"537038bc-418b-4746-9a3a-5a86b0ac8854" -> "2cd53937-5571-4f9f-9841-a7506faef46d";
+"290d1011-05e6-4c78-a48b-73d5aa194d48" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,CoffeeTable)", shape=box, style=filled];
+"537038bc-418b-4746-9a3a-5a86b0ac8854" -> "290d1011-05e6-4c78-a48b-73d5aa194d48";
+"3108723c-32fe-4746-80b3-88764c6a7c14" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7f3b2b63-c451-4a6f-a51e-fa147c8a4907" -> "3108723c-32fe-4746-80b3-88764c6a7c14";
+"c7a4fee5-377d-4cf1-ab4e-6b15ec8ab317" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"3108723c-32fe-4746-80b3-88764c6a7c14" -> "c7a4fee5-377d-4cf1-ab4e-6b15ec8ab317";
+"442e8e16-2578-4921-9dd3-f33111394cae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"3108723c-32fe-4746-80b3-88764c6a7c14" -> "442e8e16-2578-4921-9dd3-f33111394cae";
+"8b9fecfd-9aaa-42db-8c15-14ec2321d313" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"3108723c-32fe-4746-80b3-88764c6a7c14" -> "8b9fecfd-9aaa-42db-8c15-14ec2321d313";
+"4b293960-9460-4ce0-8897-7130cfede8a6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ed874c4e-fac5-4b27-bc0a-b7e3d882c911" -> "4b293960-9460-4ce0-8897-7130cfede8a6";
+"f4e257fc-ce55-4346-94f2-59b5a8e6ea3e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"4b293960-9460-4ce0-8897-7130cfede8a6" -> "f4e257fc-ce55-4346-94f2-59b5a8e6ea3e";
+"691b9a12-ef49-4461-8121-9b9aadc39f7f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"4b293960-9460-4ce0-8897-7130cfede8a6" -> "691b9a12-ef49-4461-8121-9b9aadc39f7f";
+"88699af8-d85c-418f-9af9-2b691b80e236" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,CoffeeTable)", shape=box, style=filled];
+"4b293960-9460-4ce0-8897-7130cfede8a6" -> "88699af8-d85c-418f-9af9-2b691b80e236";
+"bc5af95b-492d-4768-b42e-c2b5be92250e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f546a762-d82e-4e69-b5bf-0641685800fc" -> "bc5af95b-492d-4768-b42e-c2b5be92250e";
+"84ec9743-85a0-4179-b3dc-2d835af0ef31" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"bc5af95b-492d-4768-b42e-c2b5be92250e" -> "84ec9743-85a0-4179-b3dc-2d835af0ef31";
+"a4d0a06a-6e49-4dde-988e-20706904d93a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"bc5af95b-492d-4768-b42e-c2b5be92250e" -> "a4d0a06a-6e49-4dde-988e-20706904d93a";
+"4cc79ad1-2752-4ab6-8ffb-1d490fda9100" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"bc5af95b-492d-4768-b42e-c2b5be92250e" -> "4cc79ad1-2752-4ab6-8ffb-1d490fda9100";
+"77d10f24-c970-4110-bbc0-aca52bf714d7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f5213de8-46d3-4031-bf7a-50b67a4aad8b" -> "77d10f24-c970-4110-bbc0-aca52bf714d7";
+"40a718d4-43c8-4837-8d12-3f3952542ffc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"77d10f24-c970-4110-bbc0-aca52bf714d7" -> "40a718d4-43c8-4837-8d12-3f3952542ffc";
+"44c30be2-9b4d-4d49-910a-e7fb8577a1db" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"77d10f24-c970-4110-bbc0-aca52bf714d7" -> "44c30be2-9b4d-4d49-910a-e7fb8577a1db";
+"236d2b90-d441-4151-903e-8996c6d6ee17" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"77d10f24-c970-4110-bbc0-aca52bf714d7" -> "236d2b90-d441-4151-903e-8996c6d6ee17";
+"bc949ae7-67ff-4356-8339-24df0ee483bb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"25f1e39b-13c8-4683-ac5a-e864873d8e86" -> "bc949ae7-67ff-4356-8339-24df0ee483bb";
+"92194c48-047c-4448-b344-d896fd89d789" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"bc949ae7-67ff-4356-8339-24df0ee483bb" -> "92194c48-047c-4448-b344-d896fd89d789";
+"27259794-486e-492a-8055-a7b1ad77f0d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"bc949ae7-67ff-4356-8339-24df0ee483bb" -> "27259794-486e-492a-8055-a7b1ad77f0d4";
+"a148de94-cb05-4ea4-a480-430ffd476823" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"bc949ae7-67ff-4356-8339-24df0ee483bb" -> "a148de94-cb05-4ea4-a480-430ffd476823";
+"1cfae803-8aef-476e-a0fb-614d05a2afe8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9efe26dc-6d9e-40df-9da8-612f26f2f526" -> "1cfae803-8aef-476e-a0fb-614d05a2afe8";
+"17da88a0-d365-40e2-9980-09f74969873e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"1cfae803-8aef-476e-a0fb-614d05a2afe8" -> "17da88a0-d365-40e2-9980-09f74969873e";
+"5a1e0833-bd3c-402b-ba7a-1d34955b459f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"1cfae803-8aef-476e-a0fb-614d05a2afe8" -> "5a1e0833-bd3c-402b-ba7a-1d34955b459f";
+"6c4815b0-4817-4a33-9a05-ae6ac9732eeb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"1cfae803-8aef-476e-a0fb-614d05a2afe8" -> "6c4815b0-4817-4a33-9a05-ae6ac9732eeb";
+"1dbbd4f6-6335-4999-8bb1-3fe5970a740f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"445ff676-c820-4321-b420-3e25bad2fa46" -> "1dbbd4f6-6335-4999-8bb1-3fe5970a740f";
+"6a55e7b1-ee29-4cfc-8ac7-6c6115b73af4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"1dbbd4f6-6335-4999-8bb1-3fe5970a740f" -> "6a55e7b1-ee29-4cfc-8ac7-6c6115b73af4";
+"93ad1052-46d3-482d-8d4e-f77bcd3fff9a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"1dbbd4f6-6335-4999-8bb1-3fe5970a740f" -> "93ad1052-46d3-482d-8d4e-f77bcd3fff9a";
+"299b9ea7-2b9a-4592-a8b3-21253fb55b0f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"1dbbd4f6-6335-4999-8bb1-3fe5970a740f" -> "299b9ea7-2b9a-4592-a8b3-21253fb55b0f";
+"fddb3fd3-3a80-46d4-800f-27c85188ac35" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"dd811019-5e94-4b7a-a8f3-dfaacd919e60" -> "fddb3fd3-3a80-46d4-800f-27c85188ac35";
+"837526c8-3f87-4888-803e-2a7230ab4d24" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"fddb3fd3-3a80-46d4-800f-27c85188ac35" -> "837526c8-3f87-4888-803e-2a7230ab4d24";
+"19e02c66-29a9-4903-8052-93d83a36cdaf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"fddb3fd3-3a80-46d4-800f-27c85188ac35" -> "19e02c66-29a9-4903-8052-93d83a36cdaf";
+"588a88fc-3193-4125-8c92-4af744142949" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,CoffeeTable)", shape=box, style=filled];
+"fddb3fd3-3a80-46d4-800f-27c85188ac35" -> "588a88fc-3193-4125-8c92-4af744142949";
+"4420c96e-5dc0-472f-9b43-583bb8881e0a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8abbbe14-7bb3-4cdd-a878-f771d9a76405" -> "4420c96e-5dc0-472f-9b43-583bb8881e0a";
+"57570039-5327-4562-9eac-fe0cff3859cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"4420c96e-5dc0-472f-9b43-583bb8881e0a" -> "57570039-5327-4562-9eac-fe0cff3859cc";
+"3579af47-3ccd-4228-8cb7-4504cd60641e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"4420c96e-5dc0-472f-9b43-583bb8881e0a" -> "3579af47-3ccd-4228-8cb7-4504cd60641e";
+"d19fe253-149b-41f5-b8ee-3c7ed46eca1d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"4420c96e-5dc0-472f-9b43-583bb8881e0a" -> "d19fe253-149b-41f5-b8ee-3c7ed46eca1d";
+"828d319d-b761-4e6d-a4a0-8e849b5e518a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1b44901e-bc2e-43f7-8184-38a882f90b21" -> "828d319d-b761-4e6d-a4a0-8e849b5e518a";
+"b38b6526-ce1c-4d10-b611-80e2e37c40c6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"828d319d-b761-4e6d-a4a0-8e849b5e518a" -> "b38b6526-ce1c-4d10-b611-80e2e37c40c6";
+"a2447d54-5597-4ce9-8c57-57a65fe5623d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"828d319d-b761-4e6d-a4a0-8e849b5e518a" -> "a2447d54-5597-4ce9-8c57-57a65fe5623d";
+"2fdc5379-f4d4-493a-8833-6f67ab5f4d09" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"91a774b2-afce-4652-a025-0833b932cfad" -> "2fdc5379-f4d4-493a-8833-6f67ab5f4d09";
+"00553d6b-5309-47c5-88d4-01f1223178ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2fdc5379-f4d4-493a-8833-6f67ab5f4d09" -> "00553d6b-5309-47c5-88d4-01f1223178ff";
+"e71843bd-491d-47c9-a038-ba1c4db024ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"2fdc5379-f4d4-493a-8833-6f67ab5f4d09" -> "e71843bd-491d-47c9-a038-ba1c4db024ff";
+"f542972b-e9e4-43a8-a70d-762ceb041785" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"2fdc5379-f4d4-493a-8833-6f67ab5f4d09" -> "f542972b-e9e4-43a8-a70d-762ceb041785";
+"5c5f3a4f-4ccd-41e3-8ce3-feb81296a181" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"75a64a3c-9acb-4edd-b73a-fc9da0dd4042" -> "5c5f3a4f-4ccd-41e3-8ce3-feb81296a181";
+"5e06de8f-6a5c-419d-b364-e9a6ae8a36bf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"5c5f3a4f-4ccd-41e3-8ce3-feb81296a181" -> "5e06de8f-6a5c-419d-b364-e9a6ae8a36bf";
+"6a1d6f5e-38f0-460e-a92d-a0e309ef2de3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"5c5f3a4f-4ccd-41e3-8ce3-feb81296a181" -> "6a1d6f5e-38f0-460e-a92d-a0e309ef2de3";
+"65bce72b-bd43-42a7-b43e-15ac243d8e92" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"5c5f3a4f-4ccd-41e3-8ce3-feb81296a181" -> "65bce72b-bd43-42a7-b43e-15ac243d8e92";
+"42464321-f838-4c84-94f1-278d8cba1140" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f6c0e26b-991d-4556-8188-fb33372c1db1" -> "42464321-f838-4c84-94f1-278d8cba1140";
+"a0c4f1da-a957-4af7-8a18-a94fa81ba8b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"42464321-f838-4c84-94f1-278d8cba1140" -> "a0c4f1da-a957-4af7-8a18-a94fa81ba8b3";
+"f7b41db3-1716-4ffd-88d1-ea4046494846" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"42464321-f838-4c84-94f1-278d8cba1140" -> "f7b41db3-1716-4ffd-88d1-ea4046494846";
+"dbd2c7b0-0b19-4d89-909c-bff63e2306b9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"42464321-f838-4c84-94f1-278d8cba1140" -> "dbd2c7b0-0b19-4d89-909c-bff63e2306b9";
+"bf325ccd-77c2-405a-9f65-5b8f708b1318" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b23bd517-39e5-4ade-a10b-9954cc314de3" -> "bf325ccd-77c2-405a-9f65-5b8f708b1318";
+"5e782315-7d35-4678-b6ae-ff7185280f93" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"bf325ccd-77c2-405a-9f65-5b8f708b1318" -> "5e782315-7d35-4678-b6ae-ff7185280f93";
+"ebee8bc8-b10b-46bf-9f43-e3b4e71c0f8e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"bf325ccd-77c2-405a-9f65-5b8f708b1318" -> "ebee8bc8-b10b-46bf-9f43-e3b4e71c0f8e";
+"78266c3d-83f5-40d0-91a6-1cc154dc1b80" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"bf325ccd-77c2-405a-9f65-5b8f708b1318" -> "78266c3d-83f5-40d0-91a6-1cc154dc1b80";
+"dc2264f0-e947-4060-ad89-0907a5c9d54d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"22b0f4df-118b-4921-bf88-e29e667a20df" -> "dc2264f0-e947-4060-ad89-0907a5c9d54d";
+"58382970-74a2-49ce-b81a-70111007f373" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"dc2264f0-e947-4060-ad89-0907a5c9d54d" -> "58382970-74a2-49ce-b81a-70111007f373";
+"b2c0b744-0e4c-4bf8-938c-27fe48b2c993" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"dc2264f0-e947-4060-ad89-0907a5c9d54d" -> "b2c0b744-0e4c-4bf8-938c-27fe48b2c993";
+"a5353d30-768a-475c-b5a8-7234de505cac" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"975b80c6-d9a3-4a36-a09d-01e3baf3b861" -> "a5353d30-768a-475c-b5a8-7234de505cac";
+"9d1c22cf-b5be-4b5c-ae84-cf27e7e98ad0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"a5353d30-768a-475c-b5a8-7234de505cac" -> "9d1c22cf-b5be-4b5c-ae84-cf27e7e98ad0";
+"5ff437fc-cf02-4f45-9fee-88ce714e4218" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"a5353d30-768a-475c-b5a8-7234de505cac" -> "5ff437fc-cf02-4f45-9fee-88ce714e4218";
+"34fcacac-b8ec-4d08-80f2-8a8693a20b6d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"a5353d30-768a-475c-b5a8-7234de505cac" -> "34fcacac-b8ec-4d08-80f2-8a8693a20b6d";
+"110e9c91-6bd5-4ea6-b1d1-8e557eab3918" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c7bced11-3911-4897-89f7-1954bff7e8e5" -> "110e9c91-6bd5-4ea6-b1d1-8e557eab3918";
+"c82038f2-4c62-4776-8757-9da9c47990a5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"110e9c91-6bd5-4ea6-b1d1-8e557eab3918" -> "c82038f2-4c62-4776-8757-9da9c47990a5";
+"6047e98a-b183-425e-9a3a-762c595da13a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"110e9c91-6bd5-4ea6-b1d1-8e557eab3918" -> "6047e98a-b183-425e-9a3a-762c595da13a";
+"4dd29ff1-8ec0-4af7-b775-54cff7026216" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"110e9c91-6bd5-4ea6-b1d1-8e557eab3918" -> "4dd29ff1-8ec0-4af7-b775-54cff7026216";
+"d4d510fa-1141-41dc-8a50-c7fde736e019" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3801ed79-9e8b-413f-b2b4-7081c7160187" -> "d4d510fa-1141-41dc-8a50-c7fde736e019";
+"06c2b9c6-2b67-4fbd-b37a-bc7f2e03135c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"d4d510fa-1141-41dc-8a50-c7fde736e019" -> "06c2b9c6-2b67-4fbd-b37a-bc7f2e03135c";
+"f01f92ad-44cf-4fe3-888c-ff0a216176c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"d4d510fa-1141-41dc-8a50-c7fde736e019" -> "f01f92ad-44cf-4fe3-888c-ff0a216176c8";
+"51e777b5-00b7-4178-a663-0ba485c0d490" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"d4d510fa-1141-41dc-8a50-c7fde736e019" -> "51e777b5-00b7-4178-a663-0ba485c0d490";
+"a49b9ddb-78ba-47d2-8e05-962e3f1521a8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b98c289f-eeae-4d76-aa6b-8b8ec4b93334" -> "a49b9ddb-78ba-47d2-8e05-962e3f1521a8";
+"9be1d6ba-d537-4e47-a97f-f8d3cc339b24" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"a49b9ddb-78ba-47d2-8e05-962e3f1521a8" -> "9be1d6ba-d537-4e47-a97f-f8d3cc339b24";
+"b5da0763-457f-443a-ba43-59ee3367b59f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"a49b9ddb-78ba-47d2-8e05-962e3f1521a8" -> "b5da0763-457f-443a-ba43-59ee3367b59f";
+"a92fe07e-ee29-438d-a0fc-a645bb24c1f1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"a49b9ddb-78ba-47d2-8e05-962e3f1521a8" -> "a92fe07e-ee29-438d-a0fc-a645bb24c1f1";
+"770de18c-016a-41a8-9edf-140f8c9e470a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b98236b8-ac11-4588-b3de-75785853b33d" -> "770de18c-016a-41a8-9edf-140f8c9e470a";
+"a848b8e4-8954-48d6-9142-13734142c8a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"770de18c-016a-41a8-9edf-140f8c9e470a" -> "a848b8e4-8954-48d6-9142-13734142c8a3";
+"14123744-dc27-4d50-815a-d74803618ab4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"770de18c-016a-41a8-9edf-140f8c9e470a" -> "14123744-dc27-4d50-815a-d74803618ab4";
+"8335c2e3-e3d0-4173-b9d0-1efb7f76d50a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"770de18c-016a-41a8-9edf-140f8c9e470a" -> "8335c2e3-e3d0-4173-b9d0-1efb7f76d50a";
+"19d8afdb-494e-4c22-83ec-df322276364a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a92fba10-9dad-43f4-96b6-1f44f8a80d18" -> "19d8afdb-494e-4c22-83ec-df322276364a";
+"cbbbdf9b-8e80-4160-a45d-f847ab12ac2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"19d8afdb-494e-4c22-83ec-df322276364a" -> "cbbbdf9b-8e80-4160-a45d-f847ab12ac2d";
+"b5c29a9a-3466-4d25-9758-5da2f1c28bb5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"19d8afdb-494e-4c22-83ec-df322276364a" -> "b5c29a9a-3466-4d25-9758-5da2f1c28bb5";
+"d3beea2e-1911-44d2-bb78-9dac64dd50e0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"19d8afdb-494e-4c22-83ec-df322276364a" -> "d3beea2e-1911-44d2-bb78-9dac64dd50e0";
+"6e81f6ba-deda-47bd-b738-0f4d45250e6e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e8f116c7-9b98-4aa7-9bbe-bba05d4eb196" -> "6e81f6ba-deda-47bd-b738-0f4d45250e6e";
+"80486efa-ad51-4499-86df-2702e88f813f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"6e81f6ba-deda-47bd-b738-0f4d45250e6e" -> "80486efa-ad51-4499-86df-2702e88f813f";
+"5f863430-26a9-4950-8c7b-f3a87ef9be46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"6e81f6ba-deda-47bd-b738-0f4d45250e6e" -> "5f863430-26a9-4950-8c7b-f3a87ef9be46";
+"2d4c04c3-db2a-4009-8590-379a46ea5a8d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,WaterTable)", shape=box, style=filled];
+"6e81f6ba-deda-47bd-b738-0f4d45250e6e" -> "2d4c04c3-db2a-4009-8590-379a46ea5a8d";
+"ac0c3a5c-7d14-4aca-b5fa-e3d4a5f5a042" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ea8bf2ce-f82a-4664-8e81-ebd92617e2e7" -> "ac0c3a5c-7d14-4aca-b5fa-e3d4a5f5a042";
+"3b5cef66-1203-4c9f-bb6c-579f43865fd6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"ac0c3a5c-7d14-4aca-b5fa-e3d4a5f5a042" -> "3b5cef66-1203-4c9f-bb6c-579f43865fd6";
+"a9c352d8-c0ba-46c6-834f-d578e4117c41" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"ac0c3a5c-7d14-4aca-b5fa-e3d4a5f5a042" -> "a9c352d8-c0ba-46c6-834f-d578e4117c41";
+"b8522f83-3f41-4a92-b94b-046ee1e05b98" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,WaterTable)", shape=box, style=filled];
+"ac0c3a5c-7d14-4aca-b5fa-e3d4a5f5a042" -> "b8522f83-3f41-4a92-b94b-046ee1e05b98";
+"7ca1f59b-c9a2-44f1-a6e4-6a39e85f66fe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"10016163-9e6a-4af0-88f7-55cef970d54a" -> "7ca1f59b-c9a2-44f1-a6e4-6a39e85f66fe";
+"880f5dad-cdf4-485e-9fde-dc4af658c30c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"7ca1f59b-c9a2-44f1-a6e4-6a39e85f66fe" -> "880f5dad-cdf4-485e-9fde-dc4af658c30c";
+"8ab7e758-ee22-46f2-a95a-9a2bc8d105ec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"7ca1f59b-c9a2-44f1-a6e4-6a39e85f66fe" -> "8ab7e758-ee22-46f2-a95a-9a2bc8d105ec";
+"af304235-f3c4-4d16-b562-6bf44dc5c2e5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"7ca1f59b-c9a2-44f1-a6e4-6a39e85f66fe" -> "af304235-f3c4-4d16-b562-6bf44dc5c2e5";
+"96b7cc8b-243d-4ad8-9a07-b66c7452d38b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"5d229a97-2d12-4200-8cbe-d09f317acf60" -> "96b7cc8b-243d-4ad8-9a07-b66c7452d38b";
+"7f564479-a80a-4ad8-8ab1-fb9bf9e2f7af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"96b7cc8b-243d-4ad8-9a07-b66c7452d38b" -> "7f564479-a80a-4ad8-8ab1-fb9bf9e2f7af";
+"816c6c49-1721-4ded-aa4e-181aada7027d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"96b7cc8b-243d-4ad8-9a07-b66c7452d38b" -> "816c6c49-1721-4ded-aa4e-181aada7027d";
+"d6a74623-9c9e-4531-8433-97e96815385f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"13503e59-ca4e-4874-8bb1-8a1301d2dff9" -> "d6a74623-9c9e-4531-8433-97e96815385f";
+"f8a2f962-83b6-4f71-ad32-a7780324272e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"d6a74623-9c9e-4531-8433-97e96815385f" -> "f8a2f962-83b6-4f71-ad32-a7780324272e";
+"08eab795-08c6-4a34-8a85-edc19fce6434" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"d6a74623-9c9e-4531-8433-97e96815385f" -> "08eab795-08c6-4a34-8a85-edc19fce6434";
+"c478713f-1362-46b6-b624-e2a66a8f2ee2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"d6a74623-9c9e-4531-8433-97e96815385f" -> "c478713f-1362-46b6-b624-e2a66a8f2ee2";
+"c886baab-cc44-4b81-991e-9f94b5d832dd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0a5da1ce-9977-4e10-9689-b870ece14a6e" -> "c886baab-cc44-4b81-991e-9f94b5d832dd";
+"951ce9ee-cde9-4f12-adea-57de340229b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"c886baab-cc44-4b81-991e-9f94b5d832dd" -> "951ce9ee-cde9-4f12-adea-57de340229b6";
+"04e41bce-c822-4b1f-804d-65eb164e7624" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"c886baab-cc44-4b81-991e-9f94b5d832dd" -> "04e41bce-c822-4b1f-804d-65eb164e7624";
+"9d19f16b-4883-4dcb-afb3-8ce0b7b04136" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"c886baab-cc44-4b81-991e-9f94b5d832dd" -> "9d19f16b-4883-4dcb-afb3-8ce0b7b04136";
+"77f2cd0c-2116-47c6-9d2f-ec78902dc7d8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d2cd94ef-5f6e-425a-b4aa-f9789259cbb2" -> "77f2cd0c-2116-47c6-9d2f-ec78902dc7d8";
+"14a6240a-e776-4415-9407-67f445a56e09" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"77f2cd0c-2116-47c6-9d2f-ec78902dc7d8" -> "14a6240a-e776-4415-9407-67f445a56e09";
+"309a5205-11f5-4127-89f2-a4eb3c847a4c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"77f2cd0c-2116-47c6-9d2f-ec78902dc7d8" -> "309a5205-11f5-4127-89f2-a4eb3c847a4c";
+"5fe49bcd-96cd-4fef-910d-5cc2f52b8944" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"77f2cd0c-2116-47c6-9d2f-ec78902dc7d8" -> "5fe49bcd-96cd-4fef-910d-5cc2f52b8944";
+"d56ffac4-40cc-4a6f-9015-8f69d5bcf242" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"37674f9e-2668-4867-85e5-87ff7872d728" -> "d56ffac4-40cc-4a6f-9015-8f69d5bcf242";
+"d5bbc537-6a78-4a9f-a8eb-fe00b1fac138" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"d56ffac4-40cc-4a6f-9015-8f69d5bcf242" -> "d5bbc537-6a78-4a9f-a8eb-fe00b1fac138";
+"9f492abf-3bcd-438f-83a7-b777b2df4187" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"d56ffac4-40cc-4a6f-9015-8f69d5bcf242" -> "9f492abf-3bcd-438f-83a7-b777b2df4187";
+"3de47dc2-1b1d-49f8-bba1-75b84143f082" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f83aae1b-2c2f-423a-b976-27be5c041f96" -> "3de47dc2-1b1d-49f8-bba1-75b84143f082";
+"961ab194-1e54-4bc4-b1b6-5ecb2fdb48c4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"3de47dc2-1b1d-49f8-bba1-75b84143f082" -> "961ab194-1e54-4bc4-b1b6-5ecb2fdb48c4";
+"709cad57-8f58-4cff-9035-c683406d2d41" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"3de47dc2-1b1d-49f8-bba1-75b84143f082" -> "709cad57-8f58-4cff-9035-c683406d2d41";
+"9eef9e79-7b05-44d6-811c-e076f3a84fe7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3de47dc2-1b1d-49f8-bba1-75b84143f082" -> "9eef9e79-7b05-44d6-811c-e076f3a84fe7";
+"e48f0f38-110d-4b0b-9a9c-72c997bd67fd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"3de47dc2-1b1d-49f8-bba1-75b84143f082" -> "e48f0f38-110d-4b0b-9a9c-72c997bd67fd";
+"4e3d0895-1c5a-46fe-bca5-d7b4688c1da3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"bd6006db-657d-4cfb-9c4f-f7db747f3a59" -> "4e3d0895-1c5a-46fe-bca5-d7b4688c1da3";
+"a2a71737-a1f1-4dd0-8ccd-215aecae969b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"4e3d0895-1c5a-46fe-bca5-d7b4688c1da3" -> "a2a71737-a1f1-4dd0-8ccd-215aecae969b";
+"8c624e84-2758-47e7-b4c5-d796aa5eb00c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4e3d0895-1c5a-46fe-bca5-d7b4688c1da3" -> "8c624e84-2758-47e7-b4c5-d796aa5eb00c";
+"c4af5d27-b619-4f9d-94c6-95dd4d624e65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"4e3d0895-1c5a-46fe-bca5-d7b4688c1da3" -> "c4af5d27-b619-4f9d-94c6-95dd4d624e65";
+"92d4a20e-07f7-4491-bd05-a8bb0ea70024" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,CoffeeTable)", shape=box, style=filled];
+"4e3d0895-1c5a-46fe-bca5-d7b4688c1da3" -> "92d4a20e-07f7-4491-bd05-a8bb0ea70024";
+"69533f5f-ba30-4e69-9331-13b8988e84ba" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"59083db9-409f-4a7f-a4b3-4f1a133c2e09" -> "69533f5f-ba30-4e69-9331-13b8988e84ba";
+"362283a2-9150-4cd5-a1c7-053d08bcc222" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"69533f5f-ba30-4e69-9331-13b8988e84ba" -> "362283a2-9150-4cd5-a1c7-053d08bcc222";
+"804a782a-9b7a-4605-9861-0afcc05d37d2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"69533f5f-ba30-4e69-9331-13b8988e84ba" -> "804a782a-9b7a-4605-9861-0afcc05d37d2";
+"69092d6a-0062-4bcd-b014-17f3b2923387" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"69533f5f-ba30-4e69-9331-13b8988e84ba" -> "69092d6a-0062-4bcd-b014-17f3b2923387";
+"c9a0a70f-839c-40db-a494-1038fd35858a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,BrightTable)", shape=box, style=filled];
+"69533f5f-ba30-4e69-9331-13b8988e84ba" -> "c9a0a70f-839c-40db-a494-1038fd35858a";
+"3d8b8b44-b647-424b-9537-b8b8fd44e205" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2a2a7636-ef61-4c94-80b2-ae942007f317" -> "3d8b8b44-b647-424b-9537-b8b8fd44e205";
+"780aa568-1076-44e9-867c-772b7bbf89f1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3d8b8b44-b647-424b-9537-b8b8fd44e205" -> "780aa568-1076-44e9-867c-772b7bbf89f1";
+"e3146bad-d503-41a0-982d-432fc406d0cf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
+"3d8b8b44-b647-424b-9537-b8b8fd44e205" -> "e3146bad-d503-41a0-982d-432fc406d0cf";
+"c28cc49f-4cc9-4b40-acc7-58181fbedfa5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a542388b-fb34-42c8-8331-a7bb8dab6228" -> "c28cc49f-4cc9-4b40-acc7-58181fbedfa5";
+"43b8292e-5cf6-4600-91a8-84500c1cbf1a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"c28cc49f-4cc9-4b40-acc7-58181fbedfa5" -> "43b8292e-5cf6-4600-91a8-84500c1cbf1a";
+"6b2fb587-f191-4b57-bf6a-bf1b80b3103b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"c28cc49f-4cc9-4b40-acc7-58181fbedfa5" -> "6b2fb587-f191-4b57-bf6a-bf1b80b3103b";
+"da59efbb-cdad-48a7-9d33-d37834666a3b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c28cc49f-4cc9-4b40-acc7-58181fbedfa5" -> "da59efbb-cdad-48a7-9d33-d37834666a3b";
+"3c431ab3-b142-4266-aab9-ad3af3005506" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"c28cc49f-4cc9-4b40-acc7-58181fbedfa5" -> "3c431ab3-b142-4266-aab9-ad3af3005506";
+"777943a8-4870-4f42-b54e-7c34c65c0348" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f8ba80cb-0f09-4dda-b8ee-85afa7a211b4" -> "777943a8-4870-4f42-b54e-7c34c65c0348";
+"91e811e6-e031-421c-9277-dcfc5e92d55f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"777943a8-4870-4f42-b54e-7c34c65c0348" -> "91e811e6-e031-421c-9277-dcfc5e92d55f";
+"81190fe2-6954-4659-9a71-6de9e0f921ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"777943a8-4870-4f42-b54e-7c34c65c0348" -> "81190fe2-6954-4659-9a71-6de9e0f921ef";
+"627a5490-1b04-4db7-b031-d0804771aeba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"777943a8-4870-4f42-b54e-7c34c65c0348" -> "627a5490-1b04-4db7-b031-d0804771aeba";
+"92cfcb89-7041-4f3c-9257-ab20a8c6b054" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"777943a8-4870-4f42-b54e-7c34c65c0348" -> "92cfcb89-7041-4f3c-9257-ab20a8c6b054";
+"6a51f1ac-7a21-4648-b76d-655473560d8f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b04d93a8-bbcd-4a75-baff-bd7ab1740cfd" -> "6a51f1ac-7a21-4648-b76d-655473560d8f";
+"f69f13ce-8182-45a8-b94f-aa46dac09dc2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"6a51f1ac-7a21-4648-b76d-655473560d8f" -> "f69f13ce-8182-45a8-b94f-aa46dac09dc2";
+"4034f176-0054-4141-bfce-7f86b3c3ffe4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"6a51f1ac-7a21-4648-b76d-655473560d8f" -> "4034f176-0054-4141-bfce-7f86b3c3ffe4";
+"1fd02b0a-89c3-41ac-a090-b917999f8dc5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"6a51f1ac-7a21-4648-b76d-655473560d8f" -> "1fd02b0a-89c3-41ac-a090-b917999f8dc5";
+"635f029d-7e8e-43bb-af73-f59982b883c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"deef9627-5620-4faf-81c8-9c370f8f41c8" -> "635f029d-7e8e-43bb-af73-f59982b883c9";
+"c3f3a059-5a3a-4057-875a-cf4d319c916b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"635f029d-7e8e-43bb-af73-f59982b883c9" -> "c3f3a059-5a3a-4057-875a-cf4d319c916b";
+"d38c3e99-6cb5-4686-a6a7-4077aee3f0c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"635f029d-7e8e-43bb-af73-f59982b883c9" -> "d38c3e99-6cb5-4686-a6a7-4077aee3f0c3";
+"4dcf28ca-7477-4205-b07a-d01baa2c16a2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"635f029d-7e8e-43bb-af73-f59982b883c9" -> "4dcf28ca-7477-4205-b07a-d01baa2c16a2";
+"cddbabf5-4840-46df-9106-fa9b8c39db4a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0c06bf3b-4753-4a80-b0cf-d478dcae5f3f" -> "cddbabf5-4840-46df-9106-fa9b8c39db4a";
+"a733e528-055b-4803-a44b-4971dadcb9cb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"cddbabf5-4840-46df-9106-fa9b8c39db4a" -> "a733e528-055b-4803-a44b-4971dadcb9cb";
+"a92088f3-d7c7-4a6e-8961-e559230bdba0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"cddbabf5-4840-46df-9106-fa9b8c39db4a" -> "a92088f3-d7c7-4a6e-8961-e559230bdba0";
+"c48d43c6-b345-4dcf-9501-bf3d2d43626d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2a03c2de-1bd5-46e8-a39a-7bf3dcd16cbb" -> "c48d43c6-b345-4dcf-9501-bf3d2d43626d";
+"066d2cb3-1353-4a8d-9a90-6ca5886b51d2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"c48d43c6-b345-4dcf-9501-bf3d2d43626d" -> "066d2cb3-1353-4a8d-9a90-6ca5886b51d2";
+"7b06bee5-6af9-4e27-aa48-fc5d6d8eb05c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c48d43c6-b345-4dcf-9501-bf3d2d43626d" -> "7b06bee5-6af9-4e27-aa48-fc5d6d8eb05c";
+"e024f87f-9eec-4ad8-ad36-c4fd5e09afd0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"c48d43c6-b345-4dcf-9501-bf3d2d43626d" -> "e024f87f-9eec-4ad8-ad36-c4fd5e09afd0";
+"95643fcf-702f-4dfc-8f62-9f8665035ea9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"c48d43c6-b345-4dcf-9501-bf3d2d43626d" -> "95643fcf-702f-4dfc-8f62-9f8665035ea9";
+"394b9d67-70bf-4cb6-9d37-9fb3bb761ed1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"12132635-0693-4f02-824a-f5316ed392bd" -> "394b9d67-70bf-4cb6-9d37-9fb3bb761ed1";
+"27e7d307-3b9f-4a14-a704-8a1360a3c9bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"394b9d67-70bf-4cb6-9d37-9fb3bb761ed1" -> "27e7d307-3b9f-4a14-a704-8a1360a3c9bc";
+"28a1c50d-c9b9-46a2-906b-6fa5d70a2f23" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"394b9d67-70bf-4cb6-9d37-9fb3bb761ed1" -> "28a1c50d-c9b9-46a2-906b-6fa5d70a2f23";
+"ea09bee9-38e8-4d36-887d-83192d009059" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"394b9d67-70bf-4cb6-9d37-9fb3bb761ed1" -> "ea09bee9-38e8-4d36-887d-83192d009059";
+"a868a464-99dd-4340-9c17-88ff206817d3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"394b9d67-70bf-4cb6-9d37-9fb3bb761ed1" -> "a868a464-99dd-4340-9c17-88ff206817d3";
+"5901b814-dc74-410c-996e-9df4d7702e21" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"918a212f-a881-4a48-bf9c-24545a9fbe15" -> "5901b814-dc74-410c-996e-9df4d7702e21";
+"4104e161-9132-4700-ae53-41aab7632651" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"5901b814-dc74-410c-996e-9df4d7702e21" -> "4104e161-9132-4700-ae53-41aab7632651";
+"a0a196c8-6894-4131-8a72-752a96ff1e53" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"5901b814-dc74-410c-996e-9df4d7702e21" -> "a0a196c8-6894-4131-8a72-752a96ff1e53";
+"f385e5d4-a4de-4bfa-9961-50b78d68742d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"5901b814-dc74-410c-996e-9df4d7702e21" -> "f385e5d4-a4de-4bfa-9961-50b78d68742d";
+"ac75c0eb-1604-4171-b420-9ec922baf009" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0bd98a5d-756a-49a2-ab3a-d3370b8e123e" -> "ac75c0eb-1604-4171-b420-9ec922baf009";
+"f500c207-e3fc-4461-8131-12faed45d4e4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"ac75c0eb-1604-4171-b420-9ec922baf009" -> "f500c207-e3fc-4461-8131-12faed45d4e4";
+"e3e4b8fd-0f24-4220-b1cb-e5effc9952e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"ac75c0eb-1604-4171-b420-9ec922baf009" -> "e3e4b8fd-0f24-4220-b1cb-e5effc9952e2";
+"0b1343f6-cd35-4117-b74a-367ec4b107fa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,BrightTable)", shape=box, style=filled];
+"ac75c0eb-1604-4171-b420-9ec922baf009" -> "0b1343f6-cd35-4117-b74a-367ec4b107fa";
+"b3dd9303-135f-4282-a733-40e66a08acd4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a6a03915-2780-4144-a136-e27071f04ae3" -> "b3dd9303-135f-4282-a733-40e66a08acd4";
+"3fc67e68-bc9d-43cd-9433-2286980b6b68" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"b3dd9303-135f-4282-a733-40e66a08acd4" -> "3fc67e68-bc9d-43cd-9433-2286980b6b68";
+"e6c0889a-dd7c-4824-9377-f623393530ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"b3dd9303-135f-4282-a733-40e66a08acd4" -> "e6c0889a-dd7c-4824-9377-f623393530ff";
+"92fdc637-7f76-467a-bba8-5c7d7ec0d0ab" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"b3dd9303-135f-4282-a733-40e66a08acd4" -> "92fdc637-7f76-467a-bba8-5c7d7ec0d0ab";
+"e186f38d-9873-4327-9047-f7936f3c51b4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4e9a10b7-1cef-4d7b-b687-fdc5eaa2e157" -> "e186f38d-9873-4327-9047-f7936f3c51b4";
+"85a0756b-fe6d-44c2-9fa0-ee5423898151" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"e186f38d-9873-4327-9047-f7936f3c51b4" -> "85a0756b-fe6d-44c2-9fa0-ee5423898151";
+"4466e5fa-331e-45c2-9a5e-49ba9c45d6d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"e186f38d-9873-4327-9047-f7936f3c51b4" -> "4466e5fa-331e-45c2-9a5e-49ba9c45d6d8";
+"eb79f110-620f-45cb-bc62-ca347951ba4a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e186f38d-9873-4327-9047-f7936f3c51b4" -> "eb79f110-620f-45cb-bc62-ca347951ba4a";
+"eaa97337-c32e-4296-9a9c-2991e4cde892" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,CoffeeTable)", shape=box, style=filled];
+"e186f38d-9873-4327-9047-f7936f3c51b4" -> "eaa97337-c32e-4296-9a9c-2991e4cde892";
+"e1f7d896-fa19-4d37-b398-8cec46b2b123" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"46b863fb-fc32-4621-807c-ee9d7ecaf437" -> "e1f7d896-fa19-4d37-b398-8cec46b2b123";
+"20e4b3a3-7b3d-4ae5-a4b6-61efc29eaaa1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"e1f7d896-fa19-4d37-b398-8cec46b2b123" -> "20e4b3a3-7b3d-4ae5-a4b6-61efc29eaaa1";
+"6645a93c-0c9e-4ad0-b7a5-3e820378eb59" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"e1f7d896-fa19-4d37-b398-8cec46b2b123" -> "6645a93c-0c9e-4ad0-b7a5-3e820378eb59";
+"9e2ca20a-3fd4-4a57-8984-e7a4a4e00847" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"e1f7d896-fa19-4d37-b398-8cec46b2b123" -> "9e2ca20a-3fd4-4a57-8984-e7a4a4e00847";
+"ddb50a39-d2d4-45f9-aff1-a9be3f00293d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"875f0032-4ffc-4976-bc28-4a935ce6ec9e" -> "ddb50a39-d2d4-45f9-aff1-a9be3f00293d";
+"cb541a51-94db-4332-8064-27af46ca10a4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"ddb50a39-d2d4-45f9-aff1-a9be3f00293d" -> "cb541a51-94db-4332-8064-27af46ca10a4";
+"b46e955f-3fdb-4413-a5f6-6762e8ee52ba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"ddb50a39-d2d4-45f9-aff1-a9be3f00293d" -> "b46e955f-3fdb-4413-a5f6-6762e8ee52ba";
+"b7cb7041-27ac-43ad-8aba-587d346ee76e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"ddb50a39-d2d4-45f9-aff1-a9be3f00293d" -> "b7cb7041-27ac-43ad-8aba-587d346ee76e";
+"bfd29ec8-fa5a-4a32-bc56-2e6a5c1cdd3a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6d188403-a068-4ad0-ab75-95f9e68b0005" -> "bfd29ec8-fa5a-4a32-bc56-2e6a5c1cdd3a";
+"1b8d7129-9d8b-4426-96c3-c81c43853723" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"bfd29ec8-fa5a-4a32-bc56-2e6a5c1cdd3a" -> "1b8d7129-9d8b-4426-96c3-c81c43853723";
+"71c78c86-36d6-4b4a-8b5d-1467b3b67681" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"bfd29ec8-fa5a-4a32-bc56-2e6a5c1cdd3a" -> "71c78c86-36d6-4b4a-8b5d-1467b3b67681";
+"6ab33c24-dd49-494a-acfa-1bb7c7399b4a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"bfd29ec8-fa5a-4a32-bc56-2e6a5c1cdd3a" -> "6ab33c24-dd49-494a-acfa-1bb7c7399b4a";
+"2ea5c9b7-401b-4771-98b9-0cb9f84cf93f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7daa64a6-e717-4779-83b9-2f5262385dba" -> "2ea5c9b7-401b-4771-98b9-0cb9f84cf93f";
+"7412ef88-9056-4fc4-b1a6-d2d7de96aa96" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"2ea5c9b7-401b-4771-98b9-0cb9f84cf93f" -> "7412ef88-9056-4fc4-b1a6-d2d7de96aa96";
+"b8bc2d13-61e2-4d7b-bf15-bd1936f4e28d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2ea5c9b7-401b-4771-98b9-0cb9f84cf93f" -> "b8bc2d13-61e2-4d7b-bf15-bd1936f4e28d";
+"5d331ec1-31e0-491f-9f2d-02ef63288bf2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"2ea5c9b7-401b-4771-98b9-0cb9f84cf93f" -> "5d331ec1-31e0-491f-9f2d-02ef63288bf2";
+"3192259d-0ac1-42c6-8055-17a50c6931ba" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"2ea5c9b7-401b-4771-98b9-0cb9f84cf93f" -> "3192259d-0ac1-42c6-8055-17a50c6931ba";
+"f727407f-28e9-4157-be0e-0776c8c9b234" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"dd20004b-9276-47ff-85ca-58620d796052" -> "f727407f-28e9-4157-be0e-0776c8c9b234";
+"0c2d75f1-03b8-4a2e-aea4-40274c78b40a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f727407f-28e9-4157-be0e-0776c8c9b234" -> "0c2d75f1-03b8-4a2e-aea4-40274c78b40a";
+"d5d61d09-8054-4c71-97c9-aaa51a5fcb94" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"f727407f-28e9-4157-be0e-0776c8c9b234" -> "d5d61d09-8054-4c71-97c9-aaa51a5fcb94";
+"ffc98d8c-20e4-4a74-99c4-950b72b08f33" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"f727407f-28e9-4157-be0e-0776c8c9b234" -> "ffc98d8c-20e4-4a74-99c4-950b72b08f33";
+"26198c04-22c4-46a7-8468-254c45f85a1b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"f727407f-28e9-4157-be0e-0776c8c9b234" -> "26198c04-22c4-46a7-8468-254c45f85a1b";
+"7f627d97-bdce-4478-8fbe-7f693fd142f3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"11d8b598-758e-4eb5-95b7-5e131116b4c7" -> "7f627d97-bdce-4478-8fbe-7f693fd142f3";
+"40d08376-a513-4f21-b26e-414499dd24c1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"7f627d97-bdce-4478-8fbe-7f693fd142f3" -> "40d08376-a513-4f21-b26e-414499dd24c1";
+"0478d81a-07c2-4833-9f24-1350d4104005" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"7f627d97-bdce-4478-8fbe-7f693fd142f3" -> "0478d81a-07c2-4833-9f24-1350d4104005";
+"2763af4f-1892-4959-b003-198e47990442" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"7f627d97-bdce-4478-8fbe-7f693fd142f3" -> "2763af4f-1892-4959-b003-198e47990442";
+"62e4898d-5171-483e-a228-8f9a42a15d5e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ff69c7fb-8568-47c9-b834-0eb33d45fe4c" -> "62e4898d-5171-483e-a228-8f9a42a15d5e";
+"e9fb5b22-f970-4d3d-b0a6-8520344eca95" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"62e4898d-5171-483e-a228-8f9a42a15d5e" -> "e9fb5b22-f970-4d3d-b0a6-8520344eca95";
+"61086fc2-68ac-4c53-be58-23f7f4cde3c2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"62e4898d-5171-483e-a228-8f9a42a15d5e" -> "61086fc2-68ac-4c53-be58-23f7f4cde3c2";
+"43692518-19ba-4c06-b0b4-ee872f43a223" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"62e4898d-5171-483e-a228-8f9a42a15d5e" -> "43692518-19ba-4c06-b0b4-ee872f43a223";
+"5a643705-c422-4be1-bd03-ab97e650e6d2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2228dd03-f9f2-4278-b48e-5a9193f1e732" -> "5a643705-c422-4be1-bd03-ab97e650e6d2";
+"ec7ec5c6-66bf-4204-a5d6-8fc35efd9f7d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"5a643705-c422-4be1-bd03-ab97e650e6d2" -> "ec7ec5c6-66bf-4204-a5d6-8fc35efd9f7d";
+"878f5fb0-f80f-443b-b82b-ca9172dda9a2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"5a643705-c422-4be1-bd03-ab97e650e6d2" -> "878f5fb0-f80f-443b-b82b-ca9172dda9a2";
+"aec37d57-bdda-46f1-854f-f524dc17e96a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"5a643705-c422-4be1-bd03-ab97e650e6d2" -> "aec37d57-bdda-46f1-854f-f524dc17e96a";
+"54f16326-fb05-4358-94c5-800240d91cc9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8937cf83-4a84-43ea-9287-974867ba5d4a" -> "54f16326-fb05-4358-94c5-800240d91cc9";
+"ad378294-328c-4168-bdb9-e11a53f3f391" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"54f16326-fb05-4358-94c5-800240d91cc9" -> "ad378294-328c-4168-bdb9-e11a53f3f391";
+"709eff6e-629e-4cf0-b3e1-f7638cbd485b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"54f16326-fb05-4358-94c5-800240d91cc9" -> "709eff6e-629e-4cf0-b3e1-f7638cbd485b";
+"6c257551-94b8-402f-9b8b-2da373da7400" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"54f16326-fb05-4358-94c5-800240d91cc9" -> "6c257551-94b8-402f-9b8b-2da373da7400";
+"c0bb2a92-f285-479f-973a-d496e08a32ce" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"54f16326-fb05-4358-94c5-800240d91cc9" -> "c0bb2a92-f285-479f-973a-d496e08a32ce";
+"da34b6e2-6a1e-4240-8270-e8c15221daa5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"65d3cf0f-75ba-4923-8f85-38c6abbee3df" -> "da34b6e2-6a1e-4240-8270-e8c15221daa5";
+"604b2ed8-afb4-4ea5-ae5c-cf34ba0f55bf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"da34b6e2-6a1e-4240-8270-e8c15221daa5" -> "604b2ed8-afb4-4ea5-ae5c-cf34ba0f55bf";
+"ce32a4ed-7d51-4545-a382-eca150065ade" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"da34b6e2-6a1e-4240-8270-e8c15221daa5" -> "ce32a4ed-7d51-4545-a382-eca150065ade";
+"c2f9c606-8021-40a3-9b11-91e271005078" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"da34b6e2-6a1e-4240-8270-e8c15221daa5" -> "c2f9c606-8021-40a3-9b11-91e271005078";
+"806e24e2-e0a5-48f6-93ba-28af6529e656" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"da34b6e2-6a1e-4240-8270-e8c15221daa5" -> "806e24e2-e0a5-48f6-93ba-28af6529e656";
+"9fd64a3c-7f94-47ee-a67a-31905d90ac92" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6344bd65-9080-4112-8108-f0591a0e9ffc" -> "9fd64a3c-7f94-47ee-a67a-31905d90ac92";
+"957dcb92-cd4b-4a2c-a919-9e1ed5f8fa70" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"9fd64a3c-7f94-47ee-a67a-31905d90ac92" -> "957dcb92-cd4b-4a2c-a919-9e1ed5f8fa70";
+"e7be60d6-3117-42d9-b998-82b3b57d1f07" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9fd64a3c-7f94-47ee-a67a-31905d90ac92" -> "e7be60d6-3117-42d9-b998-82b3b57d1f07";
+"75187baf-fe88-4226-9863-3b25fb809ff2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"9fd64a3c-7f94-47ee-a67a-31905d90ac92" -> "75187baf-fe88-4226-9863-3b25fb809ff2";
+"3675c0db-86c1-4ad2-be97-fc04c66aad17" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"9fd64a3c-7f94-47ee-a67a-31905d90ac92" -> "3675c0db-86c1-4ad2-be97-fc04c66aad17";
+"bb02971f-4aae-471f-8dab-09dff9c8f696" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8ea19ab2-f32f-4012-bc3b-ce5755487f43" -> "bb02971f-4aae-471f-8dab-09dff9c8f696";
+"cba7e126-a209-4c34-bde4-8c80a9566e31" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"bb02971f-4aae-471f-8dab-09dff9c8f696" -> "cba7e126-a209-4c34-bde4-8c80a9566e31";
+"1bfc4fb5-f58b-452a-a0a5-1ffca35407cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"bb02971f-4aae-471f-8dab-09dff9c8f696" -> "1bfc4fb5-f58b-452a-a0a5-1ffca35407cc";
+"15de4356-531c-4f01-9866-e36c803c73bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"bb02971f-4aae-471f-8dab-09dff9c8f696" -> "15de4356-531c-4f01-9866-e36c803c73bd";
+"c503ca42-c06d-44a1-8d3b-cb6ce26435df" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"bb02971f-4aae-471f-8dab-09dff9c8f696" -> "c503ca42-c06d-44a1-8d3b-cb6ce26435df";
+"21973779-00b7-4010-a639-5132ed55acec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0322cea6-8fbc-4d89-ad84-c15d4a984d38" -> "21973779-00b7-4010-a639-5132ed55acec";
+"ff36f6be-0589-41ea-be22-20cd30bc22fc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"21973779-00b7-4010-a639-5132ed55acec" -> "ff36f6be-0589-41ea-be22-20cd30bc22fc";
+"b1fc8b04-8e06-46b3-8503-3f778dc7ee9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"21973779-00b7-4010-a639-5132ed55acec" -> "b1fc8b04-8e06-46b3-8503-3f778dc7ee9f";
+"c3b27cd9-8f57-4d68-a2e9-b3f56b8eb816" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,WaterTable)", shape=box, style=filled];
+"21973779-00b7-4010-a639-5132ed55acec" -> "c3b27cd9-8f57-4d68-a2e9-b3f56b8eb816";
+"97864247-400f-4c30-9bda-e3efb2b65f09" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"750b6912-f074-4612-b12f-dc2718b285fc" -> "97864247-400f-4c30-9bda-e3efb2b65f09";
+"cb8009a2-d064-4d1b-adb3-76ec0ccc3682" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"97864247-400f-4c30-9bda-e3efb2b65f09" -> "cb8009a2-d064-4d1b-adb3-76ec0ccc3682";
+"a7233cbd-b043-4cf3-b66b-75bf4f5b45b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"97864247-400f-4c30-9bda-e3efb2b65f09" -> "a7233cbd-b043-4cf3-b66b-75bf4f5b45b5";
+"4687c2ea-e137-4135-9c6e-96f4d8b5ede2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,WaterTable)", shape=box, style=filled];
+"97864247-400f-4c30-9bda-e3efb2b65f09" -> "4687c2ea-e137-4135-9c6e-96f4d8b5ede2";
+"4014f6fe-14e4-471a-8fea-66ab305f6127" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9a8ff6ee-7344-4adb-9452-5aeaaa3cb29a" -> "4014f6fe-14e4-471a-8fea-66ab305f6127";
+"3c52ce20-1816-45d3-a5a7-3167587c0919" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"4014f6fe-14e4-471a-8fea-66ab305f6127" -> "3c52ce20-1816-45d3-a5a7-3167587c0919";
+"255c1613-cd3a-4785-9d6e-fc9fc432133a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"4014f6fe-14e4-471a-8fea-66ab305f6127" -> "255c1613-cd3a-4785-9d6e-fc9fc432133a";
+"b92f24c8-7392-4a9c-b39c-e9d4b55b69d0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"4014f6fe-14e4-471a-8fea-66ab305f6127" -> "b92f24c8-7392-4a9c-b39c-e9d4b55b69d0";
+"8dd7e518-0a93-4774-ace7-d4ee136e8fef" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"cdebe500-7ce8-48b0-9351-012ebdaabf09" -> "8dd7e518-0a93-4774-ace7-d4ee136e8fef";
+"75c95506-08e9-42a7-8419-b9abe291ed7b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"8dd7e518-0a93-4774-ace7-d4ee136e8fef" -> "75c95506-08e9-42a7-8419-b9abe291ed7b";
+"be696c22-3ab1-47ea-95d9-36c25544fb72" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8dd7e518-0a93-4774-ace7-d4ee136e8fef" -> "be696c22-3ab1-47ea-95d9-36c25544fb72";
+"bdba34f7-0b5a-41d5-96d4-6f1b3cf1a882" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"8dd7e518-0a93-4774-ace7-d4ee136e8fef" -> "bdba34f7-0b5a-41d5-96d4-6f1b3cf1a882";
+"43fec34b-8178-4e3f-a124-b9f408b481ca" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"8dd7e518-0a93-4774-ace7-d4ee136e8fef" -> "43fec34b-8178-4e3f-a124-b9f408b481ca";
+"16e95ea7-900d-4c9b-9b41-136ba8e71113" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7f81c8e8-5fe7-4def-89b8-f108e4c3d790" -> "16e95ea7-900d-4c9b-9b41-136ba8e71113";
+"c3ddd6c6-6a50-456a-8904-477d8d2a6bca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"16e95ea7-900d-4c9b-9b41-136ba8e71113" -> "c3ddd6c6-6a50-456a-8904-477d8d2a6bca";
+"5f80db81-2a79-4e65-98da-0be87c709964" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"16e95ea7-900d-4c9b-9b41-136ba8e71113" -> "5f80db81-2a79-4e65-98da-0be87c709964";
+"074409a8-d0bc-4350-8835-37e0e00d43ac" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"16e95ea7-900d-4c9b-9b41-136ba8e71113" -> "074409a8-d0bc-4350-8835-37e0e00d43ac";
+"7494652d-64a1-48b9-9956-b4fe65019ad8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"64b751a5-e2e9-4fda-add8-fd4006d5258e" -> "7494652d-64a1-48b9-9956-b4fe65019ad8";
+"49799868-71db-487b-8fd0-055781c1d41e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"7494652d-64a1-48b9-9956-b4fe65019ad8" -> "49799868-71db-487b-8fd0-055781c1d41e";
+"b3f91120-5de5-42a5-825b-59a18c8675c6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"7494652d-64a1-48b9-9956-b4fe65019ad8" -> "b3f91120-5de5-42a5-825b-59a18c8675c6";
+"0a60d085-830d-4959-9197-9ab252e65b35" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"7494652d-64a1-48b9-9956-b4fe65019ad8" -> "0a60d085-830d-4959-9197-9ab252e65b35";
+"e7c0766e-5de8-4816-9ec4-7147c68b6592" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"03022e80-ad4d-4ab9-bfb0-2a8f13501f93" -> "e7c0766e-5de8-4816-9ec4-7147c68b6592";
+"ddfed584-480c-40f4-bde0-7e9b21473a3d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e7c0766e-5de8-4816-9ec4-7147c68b6592" -> "ddfed584-480c-40f4-bde0-7e9b21473a3d";
+"70b36b68-61bd-445e-baae-61f7fd08bee0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"e7c0766e-5de8-4816-9ec4-7147c68b6592" -> "70b36b68-61bd-445e-baae-61f7fd08bee0";
+"e077fbfb-4cbf-418c-8257-e01eb13126a2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"e7c0766e-5de8-4816-9ec4-7147c68b6592" -> "e077fbfb-4cbf-418c-8257-e01eb13126a2";
+"d6c17b61-b091-44ff-b2b8-b13bd2c7badf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c0eaae0d-4e66-4287-a9e9-4e15d751dc0c" -> "d6c17b61-b091-44ff-b2b8-b13bd2c7badf";
+"819edd5a-4068-4585-887b-13a2c716cc77" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"d6c17b61-b091-44ff-b2b8-b13bd2c7badf" -> "819edd5a-4068-4585-887b-13a2c716cc77";
+"203e3db6-229e-4c7d-8db5-898be8f94d79" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"d6c17b61-b091-44ff-b2b8-b13bd2c7badf" -> "203e3db6-229e-4c7d-8db5-898be8f94d79";
+"9ba782db-dd98-401c-b1ec-342d22ee0dab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d6c17b61-b091-44ff-b2b8-b13bd2c7badf" -> "9ba782db-dd98-401c-b1ec-342d22ee0dab";
+"aa0d480f-32fe-405f-a187-0a4942239a15" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,CoffeeTable)", shape=box, style=filled];
+"d6c17b61-b091-44ff-b2b8-b13bd2c7badf" -> "aa0d480f-32fe-405f-a187-0a4942239a15";
+"13835c1d-0502-4e60-882b-4bb846b43271" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"eb09ed02-bc8b-4849-a77e-1093c6f91298" -> "13835c1d-0502-4e60-882b-4bb846b43271";
+"f3108373-0c05-4447-aca9-d55cdd021ec5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"13835c1d-0502-4e60-882b-4bb846b43271" -> "f3108373-0c05-4447-aca9-d55cdd021ec5";
+"4855d77d-4f6d-4afa-977d-52379a4615cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"13835c1d-0502-4e60-882b-4bb846b43271" -> "4855d77d-4f6d-4afa-977d-52379a4615cc";
+"348fe856-9357-4d0d-bed5-2f051ed1a179" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"13835c1d-0502-4e60-882b-4bb846b43271" -> "348fe856-9357-4d0d-bed5-2f051ed1a179";
+"27d91b91-06ea-4939-b286-0742662eb8e0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"13835c1d-0502-4e60-882b-4bb846b43271" -> "27d91b91-06ea-4939-b286-0742662eb8e0";
+"4a460311-2bb1-43b5-baf2-fcbf1afed5f2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"232af14c-bc2c-4fac-b0b4-a73ab8ebe388" -> "4a460311-2bb1-43b5-baf2-fcbf1afed5f2";
+"603b1dcd-e423-4877-80da-388e20057bb2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"4a460311-2bb1-43b5-baf2-fcbf1afed5f2" -> "603b1dcd-e423-4877-80da-388e20057bb2";
+"63813d31-143f-4104-b73e-07ebcf000398" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"4a460311-2bb1-43b5-baf2-fcbf1afed5f2" -> "63813d31-143f-4104-b73e-07ebcf000398";
+"6df0bbdd-0d3b-43a9-9be3-e762fb72f770" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"4a460311-2bb1-43b5-baf2-fcbf1afed5f2" -> "6df0bbdd-0d3b-43a9-9be3-e762fb72f770";
+"2116f1d5-78c8-4630-8691-850709ba7098" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"5f582cf9-b773-4b21-a895-6fb51da47bb9" -> "2116f1d5-78c8-4630-8691-850709ba7098";
+"1310bb37-c5d2-47dd-bd96-5cdad0e8c1dc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"2116f1d5-78c8-4630-8691-850709ba7098" -> "1310bb37-c5d2-47dd-bd96-5cdad0e8c1dc";
+"16e3f098-2f52-4d4b-8812-3699be1caee6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"2116f1d5-78c8-4630-8691-850709ba7098" -> "16e3f098-2f52-4d4b-8812-3699be1caee6";
+"7d4f6389-a2a7-4a2b-9e41-d9b14b5bdcb7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"2116f1d5-78c8-4630-8691-850709ba7098" -> "7d4f6389-a2a7-4a2b-9e41-d9b14b5bdcb7";
+"faeec06c-caaa-4fc2-b2a4-04dc26afac6c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"041f1fcd-057e-49a5-9bcd-2750002de76e" -> "faeec06c-caaa-4fc2-b2a4-04dc26afac6c";
+"a875a2b3-35a6-4bfa-a4aa-8bbdd6bd3488" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"faeec06c-caaa-4fc2-b2a4-04dc26afac6c" -> "a875a2b3-35a6-4bfa-a4aa-8bbdd6bd3488";
+"2ebb8dba-fb7d-4e5a-a9b0-319e9f5d7b42" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"faeec06c-caaa-4fc2-b2a4-04dc26afac6c" -> "2ebb8dba-fb7d-4e5a-a9b0-319e9f5d7b42";
+"6a3b50b1-75dc-43eb-9bcd-5907f8a0cb81" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"faeec06c-caaa-4fc2-b2a4-04dc26afac6c" -> "6a3b50b1-75dc-43eb-9bcd-5907f8a0cb81";
+"18d11699-9155-4776-80e0-4f781207e44d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"faeec06c-caaa-4fc2-b2a4-04dc26afac6c" -> "18d11699-9155-4776-80e0-4f781207e44d";
+"a1fa30b6-280f-4a5f-9f7d-0e78025a2e66" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b8a71a53-e324-41b4-90a3-c3c22ac99495" -> "a1fa30b6-280f-4a5f-9f7d-0e78025a2e66";
+"38e0e8c7-b3a2-4f9f-8b05-f51c75c2b18f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a1fa30b6-280f-4a5f-9f7d-0e78025a2e66" -> "38e0e8c7-b3a2-4f9f-8b05-f51c75c2b18f";
+"2ed978ae-a160-48a9-8a3f-6d7fcda113ba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"a1fa30b6-280f-4a5f-9f7d-0e78025a2e66" -> "2ed978ae-a160-48a9-8a3f-6d7fcda113ba";
+"91b82c9c-b659-4f2e-89ef-88849128f1db" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"a1fa30b6-280f-4a5f-9f7d-0e78025a2e66" -> "91b82c9c-b659-4f2e-89ef-88849128f1db";
+"19c105f0-a4f5-490c-97d1-673e80c12e0a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d97956b7-d14f-4527-a10f-d81f3efced53" -> "19c105f0-a4f5-490c-97d1-673e80c12e0a";
+"cd9dcedc-1f87-4f17-a108-d0a9b7729f33" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"19c105f0-a4f5-490c-97d1-673e80c12e0a" -> "cd9dcedc-1f87-4f17-a108-d0a9b7729f33";
+"477407bf-b361-4061-ad94-b35c1745d21a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"19c105f0-a4f5-490c-97d1-673e80c12e0a" -> "477407bf-b361-4061-ad94-b35c1745d21a";
+"d05c6f3f-be0d-4171-aa77-a0e9a19a4488" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"19c105f0-a4f5-490c-97d1-673e80c12e0a" -> "d05c6f3f-be0d-4171-aa77-a0e9a19a4488";
+"dd638b54-b43d-48d9-be54-be6cd89e04a9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"19c105f0-a4f5-490c-97d1-673e80c12e0a" -> "dd638b54-b43d-48d9-be54-be6cd89e04a9";
+"c30b4742-6aaf-4efb-9255-547c5b4754fd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1bead2bc-87f0-4a21-96c1-c54169b19872" -> "c30b4742-6aaf-4efb-9255-547c5b4754fd";
+"680fb62b-2d9e-4f12-a8a5-e094839a5dfe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"c30b4742-6aaf-4efb-9255-547c5b4754fd" -> "680fb62b-2d9e-4f12-a8a5-e094839a5dfe";
+"906b6039-76b7-44af-9b39-f6054b265dd5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c30b4742-6aaf-4efb-9255-547c5b4754fd" -> "906b6039-76b7-44af-9b39-f6054b265dd5";
+"3fcce7d9-5fab-435a-b7d5-40bb2df70bb2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"c30b4742-6aaf-4efb-9255-547c5b4754fd" -> "3fcce7d9-5fab-435a-b7d5-40bb2df70bb2";
+"fa9691bb-77c7-447d-88d2-9c89dd0a6613" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2ead2019-1dad-47f3-ad5f-7057bf1a4527" -> "fa9691bb-77c7-447d-88d2-9c89dd0a6613";
+"09b47fc1-08cd-4fb7-a32f-c9c5963deb1f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"fa9691bb-77c7-447d-88d2-9c89dd0a6613" -> "09b47fc1-08cd-4fb7-a32f-c9c5963deb1f";
+"f08535d8-d598-4ae0-b597-ab2483605a7b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"fa9691bb-77c7-447d-88d2-9c89dd0a6613" -> "f08535d8-d598-4ae0-b597-ab2483605a7b";
+"f7d8ef5e-6e4d-488b-861d-1ad6413ced1a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"fa9691bb-77c7-447d-88d2-9c89dd0a6613" -> "f7d8ef5e-6e4d-488b-861d-1ad6413ced1a";
+"4ab320b6-025a-4df8-8c02-c69080b47b87" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"36acfc44-2032-42c3-bed2-fc59565dab3b" -> "4ab320b6-025a-4df8-8c02-c69080b47b87";
+"eac40a1e-d6c4-4bb2-9380-12b92d5f7cef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"4ab320b6-025a-4df8-8c02-c69080b47b87" -> "eac40a1e-d6c4-4bb2-9380-12b92d5f7cef";
+"8a54e21a-8890-4687-8850-41e07c4a4d99" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"4ab320b6-025a-4df8-8c02-c69080b47b87" -> "8a54e21a-8890-4687-8850-41e07c4a4d99";
+"0682a0df-2d52-4c68-9b05-dfdc3656d33d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"4ab320b6-025a-4df8-8c02-c69080b47b87" -> "0682a0df-2d52-4c68-9b05-dfdc3656d33d";
+"02384e82-67c4-4289-9635-30cdebc7bc58" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1e033c88-f144-443b-a7f4-64f7a6139d14" -> "02384e82-67c4-4289-9635-30cdebc7bc58";
+"5ca0dc91-08e8-4172-9294-de3ec48de710" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"02384e82-67c4-4289-9635-30cdebc7bc58" -> "5ca0dc91-08e8-4172-9294-de3ec48de710";
+"13183db8-06a3-4e34-bd92-3d247e796af1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"02384e82-67c4-4289-9635-30cdebc7bc58" -> "13183db8-06a3-4e34-bd92-3d247e796af1";
+"eaefc7de-fa28-4e98-b306-772277184bfb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"02384e82-67c4-4289-9635-30cdebc7bc58" -> "eaefc7de-fa28-4e98-b306-772277184bfb";
+"625d83d9-e08c-4ac3-aa8a-e3e4c340793e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1b017079-e14d-4e13-8491-1a1777242d0a" -> "625d83d9-e08c-4ac3-aa8a-e3e4c340793e";
+"f8d2716c-b3f2-4702-a731-bff0e2453004" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"625d83d9-e08c-4ac3-aa8a-e3e4c340793e" -> "f8d2716c-b3f2-4702-a731-bff0e2453004";
+"07c73914-6168-4138-a92b-32d93b6c535d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"625d83d9-e08c-4ac3-aa8a-e3e4c340793e" -> "07c73914-6168-4138-a92b-32d93b6c535d";
+"837cf8fc-dfe5-4efa-82ac-d29c4fd6014b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"625d83d9-e08c-4ac3-aa8a-e3e4c340793e" -> "837cf8fc-dfe5-4efa-82ac-d29c4fd6014b";
+"6c15552d-d4fe-4036-bc72-eb08079ddc2e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"625d83d9-e08c-4ac3-aa8a-e3e4c340793e" -> "6c15552d-d4fe-4036-bc72-eb08079ddc2e";
+"5aabe81e-933c-452a-b8fa-7ee52b405253" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ef63e609-7d1d-4031-b60c-d4b2f310a824" -> "5aabe81e-933c-452a-b8fa-7ee52b405253";
+"f0c3f2de-0d5d-46ce-8904-4626e610f7ba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5aabe81e-933c-452a-b8fa-7ee52b405253" -> "f0c3f2de-0d5d-46ce-8904-4626e610f7ba";
+"dabf9a96-b681-4ef2-8a49-34d4fd6024fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"5aabe81e-933c-452a-b8fa-7ee52b405253" -> "dabf9a96-b681-4ef2-8a49-34d4fd6024fb";
+"2294d0da-fe1c-4f6b-8680-f8411a95a150" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"5aabe81e-933c-452a-b8fa-7ee52b405253" -> "2294d0da-fe1c-4f6b-8680-f8411a95a150";
+"52389270-6462-46a5-a742-a7d9302a4b25" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"5aabe81e-933c-452a-b8fa-7ee52b405253" -> "52389270-6462-46a5-a742-a7d9302a4b25";
+"5f4c7a33-c36c-40e2-bb85-57dc4dc0faf2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"5687d0f9-e491-46fe-a422-5f5020557463" -> "5f4c7a33-c36c-40e2-bb85-57dc4dc0faf2";
+"46c992aa-02de-49e7-baab-57463d4c3e05" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"5f4c7a33-c36c-40e2-bb85-57dc4dc0faf2" -> "46c992aa-02de-49e7-baab-57463d4c3e05";
+"51f22fe4-8b5d-4834-983b-b422e3167246" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"5f4c7a33-c36c-40e2-bb85-57dc4dc0faf2" -> "51f22fe4-8b5d-4834-983b-b422e3167246";
+"eae5ef7d-a86c-4862-bbc7-99732ea6921f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"5f4c7a33-c36c-40e2-bb85-57dc4dc0faf2" -> "eae5ef7d-a86c-4862-bbc7-99732ea6921f";
+"9ecdc792-6c23-4258-a882-8812b08de238" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ae4c6211-be9c-451e-a1c9-3d223b3c93c1" -> "9ecdc792-6c23-4258-a882-8812b08de238";
+"0d53dcd6-5c2a-4473-aa9d-04b15eadf4fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"9ecdc792-6c23-4258-a882-8812b08de238" -> "0d53dcd6-5c2a-4473-aa9d-04b15eadf4fa";
+"f2a3d02d-9b72-4c1c-9848-980098a4ca40" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9ecdc792-6c23-4258-a882-8812b08de238" -> "f2a3d02d-9b72-4c1c-9848-980098a4ca40";
+"9702bf65-61eb-45fa-8e61-5973bc125718" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"9ecdc792-6c23-4258-a882-8812b08de238" -> "9702bf65-61eb-45fa-8e61-5973bc125718";
+"5b0aeaaa-901b-409e-a31f-906cc3047dc5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"9ecdc792-6c23-4258-a882-8812b08de238" -> "5b0aeaaa-901b-409e-a31f-906cc3047dc5";
+"837db8e3-e199-408f-8e5f-82e5bd6a3551" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4600ac63-1962-48d3-9ee3-75196c266733" -> "837db8e3-e199-408f-8e5f-82e5bd6a3551";
+"2c7b61ab-29d0-4d26-beaa-0f359d31f244" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"837db8e3-e199-408f-8e5f-82e5bd6a3551" -> "2c7b61ab-29d0-4d26-beaa-0f359d31f244";
+"0874e5a1-7f91-46d4-b195-e2abf697cf24" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"837db8e3-e199-408f-8e5f-82e5bd6a3551" -> "0874e5a1-7f91-46d4-b195-e2abf697cf24";
+"9ff5dab6-dad6-4796-9efc-b6a476852716" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"837db8e3-e199-408f-8e5f-82e5bd6a3551" -> "9ff5dab6-dad6-4796-9efc-b6a476852716";
+"30a71bb2-440c-4665-9807-46b4e8b76a05" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6e1e9dd7-8cdd-455d-b782-23d06884073a" -> "30a71bb2-440c-4665-9807-46b4e8b76a05";
+"ea83bc85-0e59-45b3-9b6e-d06224a88791" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"30a71bb2-440c-4665-9807-46b4e8b76a05" -> "ea83bc85-0e59-45b3-9b6e-d06224a88791";
+"4d99f3e0-5b8b-4bb5-b700-a96851ee4ffc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"30a71bb2-440c-4665-9807-46b4e8b76a05" -> "4d99f3e0-5b8b-4bb5-b700-a96851ee4ffc";
+"7376f71b-e73c-4bf6-9d2e-aab526e8afe0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"30a71bb2-440c-4665-9807-46b4e8b76a05" -> "7376f71b-e73c-4bf6-9d2e-aab526e8afe0";
+"7d8b59d4-7068-43ac-9f99-51680c4798cd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"30a71bb2-440c-4665-9807-46b4e8b76a05" -> "7d8b59d4-7068-43ac-9f99-51680c4798cd";
+"45f6fec1-9dd6-48a3-b301-8c0505bc01ac" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"db87691f-3434-40e8-88d8-b9b2d6fb4613" -> "45f6fec1-9dd6-48a3-b301-8c0505bc01ac";
+"4b0c79aa-f9a1-47c8-9b80-6af7614ff47f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"45f6fec1-9dd6-48a3-b301-8c0505bc01ac" -> "4b0c79aa-f9a1-47c8-9b80-6af7614ff47f";
+"7f2a2034-1341-44b2-92b8-84051dc89801" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"45f6fec1-9dd6-48a3-b301-8c0505bc01ac" -> "7f2a2034-1341-44b2-92b8-84051dc89801";
+"4b5d2c4d-32f6-4393-93b3-fac150f53c31" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"45f6fec1-9dd6-48a3-b301-8c0505bc01ac" -> "4b5d2c4d-32f6-4393-93b3-fac150f53c31";
+"3934305d-97bd-4407-94f2-a95d81917dab" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"45f6fec1-9dd6-48a3-b301-8c0505bc01ac" -> "3934305d-97bd-4407-94f2-a95d81917dab";
+"a7b2635d-e137-4211-83ee-421956f2cfdf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"26a0dca4-81b9-4b94-86b2-81b5892e2306" -> "a7b2635d-e137-4211-83ee-421956f2cfdf";
+"7c74da8b-f45f-4d07-b985-0d1051a3fd80" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"a7b2635d-e137-4211-83ee-421956f2cfdf" -> "7c74da8b-f45f-4d07-b985-0d1051a3fd80";
+"fbcb8673-994d-425f-aa9d-4c717747ab5e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"a7b2635d-e137-4211-83ee-421956f2cfdf" -> "fbcb8673-994d-425f-aa9d-4c717747ab5e";
+"2428964a-46c6-40f7-9f89-4131dba49a6c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"a7b2635d-e137-4211-83ee-421956f2cfdf" -> "2428964a-46c6-40f7-9f89-4131dba49a6c";
+"004c2926-083f-43bd-ab7b-a221795e9c5e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c6516339-3c7c-4c12-a646-e3f6b8031737" -> "004c2926-083f-43bd-ab7b-a221795e9c5e";
+"b409b69e-1cc1-4231-80cd-cc9c74c88863" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"004c2926-083f-43bd-ab7b-a221795e9c5e" -> "b409b69e-1cc1-4231-80cd-cc9c74c88863";
+"81221ff5-61a2-419b-a416-0e6913f12299" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"004c2926-083f-43bd-ab7b-a221795e9c5e" -> "81221ff5-61a2-419b-a416-0e6913f12299";
+"4c4ef890-0e95-46d7-a599-bbd582445249" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"004c2926-083f-43bd-ab7b-a221795e9c5e" -> "4c4ef890-0e95-46d7-a599-bbd582445249";
+"eba32320-02c3-4245-a359-623281600d5b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"31e4a24e-e72b-4fe5-952d-009b10257ac5" -> "eba32320-02c3-4245-a359-623281600d5b";
+"e0d3fc13-3bef-486a-bc4d-cee686b94f4d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"eba32320-02c3-4245-a359-623281600d5b" -> "e0d3fc13-3bef-486a-bc4d-cee686b94f4d";
+"ae2a63cf-ff64-403c-b01c-225ce7f74ab4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"eba32320-02c3-4245-a359-623281600d5b" -> "ae2a63cf-ff64-403c-b01c-225ce7f74ab4";
+"f97c5a74-0d4e-4046-9ed8-afd6c5619d11" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"eba32320-02c3-4245-a359-623281600d5b" -> "f97c5a74-0d4e-4046-9ed8-afd6c5619d11";
+"afa82b45-f6cb-4d4b-b818-581fa9ec2a4c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"eba32320-02c3-4245-a359-623281600d5b" -> "afa82b45-f6cb-4d4b-b818-581fa9ec2a4c";
+"27d58bb1-4f25-4c39-b943-fd2ed64db0c3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4c176a70-cb75-40ee-9880-5cb7860cc7fb" -> "27d58bb1-4f25-4c39-b943-fd2ed64db0c3";
+"2bc72737-927d-4dfc-9a64-b9a5371aa307" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"27d58bb1-4f25-4c39-b943-fd2ed64db0c3" -> "2bc72737-927d-4dfc-9a64-b9a5371aa307";
+"3aeb35ca-ca9b-4884-9877-842076a21309" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"27d58bb1-4f25-4c39-b943-fd2ed64db0c3" -> "3aeb35ca-ca9b-4884-9877-842076a21309";
+"924a2907-dda0-43e7-a0bb-35852d7211ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"27d58bb1-4f25-4c39-b943-fd2ed64db0c3" -> "924a2907-dda0-43e7-a0bb-35852d7211ef";
+"c610d253-f0f5-40a1-9081-08b8f4beff57" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,BrightTable)", shape=box, style=filled];
+"27d58bb1-4f25-4c39-b943-fd2ed64db0c3" -> "c610d253-f0f5-40a1-9081-08b8f4beff57";
+"1e357102-a61a-487e-ae61-6eae75b6590d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d1217769-f4b0-4f6b-ba86-6758da8aa93d" -> "1e357102-a61a-487e-ae61-6eae75b6590d";
+"e311e6ac-1378-4532-9ee8-99541008156d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1e357102-a61a-487e-ae61-6eae75b6590d" -> "e311e6ac-1378-4532-9ee8-99541008156d";
+"38f3c5ff-4194-40c1-bc77-0203e14945bb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"1e357102-a61a-487e-ae61-6eae75b6590d" -> "38f3c5ff-4194-40c1-bc77-0203e14945bb";
+"979c77e0-e6b6-40c6-a32d-4c443743c52f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"1e357102-a61a-487e-ae61-6eae75b6590d" -> "979c77e0-e6b6-40c6-a32d-4c443743c52f";
+"59d9da32-d653-46c1-817f-023f6741825b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"1e357102-a61a-487e-ae61-6eae75b6590d" -> "59d9da32-d653-46c1-817f-023f6741825b";
+"81c08679-1907-4f4d-885e-08a1ddc4e4e7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2600578a-a1ec-47d6-a7b8-f7e9568eb7ae" -> "81c08679-1907-4f4d-885e-08a1ddc4e4e7";
+"86bf4fe6-7320-4a6f-816e-5aad92292910" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"81c08679-1907-4f4d-885e-08a1ddc4e4e7" -> "86bf4fe6-7320-4a6f-816e-5aad92292910";
+"ba8b70aa-e21b-45f3-a532-dec3eb9fa7cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"81c08679-1907-4f4d-885e-08a1ddc4e4e7" -> "ba8b70aa-e21b-45f3-a532-dec3eb9fa7cd";
+"7e047adb-babc-421e-a145-d8bf04c6c8ff" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"81c08679-1907-4f4d-885e-08a1ddc4e4e7" -> "7e047adb-babc-421e-a145-d8bf04c6c8ff";
+"866cf8fb-2136-4d2b-be9b-5d9caa6f88c1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"86c955fd-85d8-48f5-9df9-f37a8f99e614" -> "866cf8fb-2136-4d2b-be9b-5d9caa6f88c1";
+"dacf4ccb-2925-4291-8e90-32cf688ea6a4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"866cf8fb-2136-4d2b-be9b-5d9caa6f88c1" -> "dacf4ccb-2925-4291-8e90-32cf688ea6a4";
+"dc21dcd4-519d-4fe8-aded-ee9bf1d36d17" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"866cf8fb-2136-4d2b-be9b-5d9caa6f88c1" -> "dc21dcd4-519d-4fe8-aded-ee9bf1d36d17";
+"80195ff0-a958-49e1-99dd-3b077e5e78a0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,BrightTable)", shape=box, style=filled];
+"866cf8fb-2136-4d2b-be9b-5d9caa6f88c1" -> "80195ff0-a958-49e1-99dd-3b077e5e78a0";
+"813f11c9-1db9-4fca-af8f-70a760976d7e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"dc9437d8-2498-4ed4-a0e4-f3e391f22453" -> "813f11c9-1db9-4fca-af8f-70a760976d7e";
+"812f018b-4ca7-46b9-8695-cc82e65b1980" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"813f11c9-1db9-4fca-af8f-70a760976d7e" -> "812f018b-4ca7-46b9-8695-cc82e65b1980";
+"da1b6ab0-8b4a-4848-b5a7-3374914c8fae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"813f11c9-1db9-4fca-af8f-70a760976d7e" -> "da1b6ab0-8b4a-4848-b5a7-3374914c8fae";
+"c520ffd3-0aa3-45ea-9008-e0e8ebb4ac06" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"813f11c9-1db9-4fca-af8f-70a760976d7e" -> "c520ffd3-0aa3-45ea-9008-e0e8ebb4ac06";
+"b5b0d342-52e8-4cba-91c1-861f4e8c2227" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"96eb2ba9-d846-431c-8f3a-ac62ee7c9a8b" -> "b5b0d342-52e8-4cba-91c1-861f4e8c2227";
+"1002d801-1e43-40f3-b1fb-b8657f104a60" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"b5b0d342-52e8-4cba-91c1-861f4e8c2227" -> "1002d801-1e43-40f3-b1fb-b8657f104a60";
+"a9c3df84-17f9-470f-b388-57b2c002bd46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"b5b0d342-52e8-4cba-91c1-861f4e8c2227" -> "a9c3df84-17f9-470f-b388-57b2c002bd46";
+"426b2690-3855-4227-a1b6-b240ce1b2322" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b5b0d342-52e8-4cba-91c1-861f4e8c2227" -> "426b2690-3855-4227-a1b6-b240ce1b2322";
+"a3ab5026-3dd6-4723-9dd0-57317c53bf38" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,CoffeeTable)", shape=box, style=filled];
+"b5b0d342-52e8-4cba-91c1-861f4e8c2227" -> "a3ab5026-3dd6-4723-9dd0-57317c53bf38";
+"5d3a13de-d35b-49d0-9e7b-9f5cb327dd8b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"880cf0dc-d72a-40ed-9cd0-863be06a4fe9" -> "5d3a13de-d35b-49d0-9e7b-9f5cb327dd8b";
+"5d1d1bc0-ad0e-4c9c-9717-c9aadc0fcd2f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"5d3a13de-d35b-49d0-9e7b-9f5cb327dd8b" -> "5d1d1bc0-ad0e-4c9c-9717-c9aadc0fcd2f";
+"f633a9af-8e3f-4440-a544-0fdcb05c9f20" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5d3a13de-d35b-49d0-9e7b-9f5cb327dd8b" -> "f633a9af-8e3f-4440-a544-0fdcb05c9f20";
+"5c392f47-73ed-4668-bf87-d212be015365" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"5d3a13de-d35b-49d0-9e7b-9f5cb327dd8b" -> "5c392f47-73ed-4668-bf87-d212be015365";
+"6640e386-7fac-4f4f-bb6e-362337ea39fe" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"5d3a13de-d35b-49d0-9e7b-9f5cb327dd8b" -> "6640e386-7fac-4f4f-bb6e-362337ea39fe";
+"7dbc0b6f-96d3-4e7b-8dbc-256c8fb36fee" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"cdb9ca6b-e71b-415b-bb42-8404948771b6" -> "7dbc0b6f-96d3-4e7b-8dbc-256c8fb36fee";
+"c53b9468-f979-43a9-aa91-83804e2f0219" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7dbc0b6f-96d3-4e7b-8dbc-256c8fb36fee" -> "c53b9468-f979-43a9-aa91-83804e2f0219";
+"19442f4a-44ca-4c2b-901f-c98b80abc3a0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"7dbc0b6f-96d3-4e7b-8dbc-256c8fb36fee" -> "19442f4a-44ca-4c2b-901f-c98b80abc3a0";
+"75e404b0-f802-4296-9d68-3d32b8ce5a27" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"7dbc0b6f-96d3-4e7b-8dbc-256c8fb36fee" -> "75e404b0-f802-4296-9d68-3d32b8ce5a27";
+"c6749d61-32be-4dfa-ac1d-9343defcc8fc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"7dbc0b6f-96d3-4e7b-8dbc-256c8fb36fee" -> "c6749d61-32be-4dfa-ac1d-9343defcc8fc";
+"7ea25606-dff8-40c1-a687-0c7b9c26d3c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9b792df2-0b92-4f39-859c-7c18d5f1eb85" -> "7ea25606-dff8-40c1-a687-0c7b9c26d3c9";
+"14d89893-b1f2-4345-adf6-6e6ca7494451" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"7ea25606-dff8-40c1-a687-0c7b9c26d3c9" -> "14d89893-b1f2-4345-adf6-6e6ca7494451";
+"a0711cd0-2e11-4afd-b816-b3d1ee9c77fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"7ea25606-dff8-40c1-a687-0c7b9c26d3c9" -> "a0711cd0-2e11-4afd-b816-b3d1ee9c77fa";
+"de174e5b-56eb-4fee-8ed3-fadddc0385fb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"7ea25606-dff8-40c1-a687-0c7b9c26d3c9" -> "de174e5b-56eb-4fee-8ed3-fadddc0385fb";
+"832db9ec-f75a-4ce7-927e-10fcf0e7ec23" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"55ff074f-91d2-4ea4-b066-15863c193b0b" -> "832db9ec-f75a-4ce7-927e-10fcf0e7ec23";
+"1f741667-90e3-4938-8294-91be3ced97ca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"832db9ec-f75a-4ce7-927e-10fcf0e7ec23" -> "1f741667-90e3-4938-8294-91be3ced97ca";
+"ea3d6a75-51fe-40cf-8ff3-465534fa2a80" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"832db9ec-f75a-4ce7-927e-10fcf0e7ec23" -> "ea3d6a75-51fe-40cf-8ff3-465534fa2a80";
+"d6d15ce7-6c6e-4bfd-98c3-02f4fa788563" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"832db9ec-f75a-4ce7-927e-10fcf0e7ec23" -> "d6d15ce7-6c6e-4bfd-98c3-02f4fa788563";
+"b3919dfc-7f98-43fb-b5fd-0873f63c4b25" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"442809e0-d9b0-4ec2-adb1-b2e83a53d4f8" -> "b3919dfc-7f98-43fb-b5fd-0873f63c4b25";
+"1e3808d9-ba4e-4871-b2a6-d4caeec0f160" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"b3919dfc-7f98-43fb-b5fd-0873f63c4b25" -> "1e3808d9-ba4e-4871-b2a6-d4caeec0f160";
+"37a167fc-0841-4c3b-86f7-b3e200dd4173" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"b3919dfc-7f98-43fb-b5fd-0873f63c4b25" -> "37a167fc-0841-4c3b-86f7-b3e200dd4173";
+"4d5fdf86-30f0-475a-951b-ebc90e379711" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b3919dfc-7f98-43fb-b5fd-0873f63c4b25" -> "4d5fdf86-30f0-475a-951b-ebc90e379711";
+"a9a65a59-3064-46a7-b68e-a68088dd3df3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"b3919dfc-7f98-43fb-b5fd-0873f63c4b25" -> "a9a65a59-3064-46a7-b68e-a68088dd3df3";
+"9fd7968a-2e1c-48aa-afb2-c0f492dc8c4d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"96323fdd-28e1-4d80-9cf5-0f28f33b94ce" -> "9fd7968a-2e1c-48aa-afb2-c0f492dc8c4d";
+"e8801653-4327-4c67-a64e-c158c82ec58f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"9fd7968a-2e1c-48aa-afb2-c0f492dc8c4d" -> "e8801653-4327-4c67-a64e-c158c82ec58f";
+"4a3aade2-f0d2-41dd-a9d1-51a0e74f50e5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"9fd7968a-2e1c-48aa-afb2-c0f492dc8c4d" -> "4a3aade2-f0d2-41dd-a9d1-51a0e74f50e5";
+"87233aa7-548f-4235-b21f-e7046e2c9698" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9fd7968a-2e1c-48aa-afb2-c0f492dc8c4d" -> "87233aa7-548f-4235-b21f-e7046e2c9698";
+"25fca8ad-03af-47fa-9821-0dc9ae4aec00" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"9fd7968a-2e1c-48aa-afb2-c0f492dc8c4d" -> "25fca8ad-03af-47fa-9821-0dc9ae4aec00";
+"6d7f9da7-e00b-4ab6-bc7b-9c36049ff573" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4ff52320-2fbc-4807-8cd4-8c86c3bd119a" -> "6d7f9da7-e00b-4ab6-bc7b-9c36049ff573";
+"988609e6-e7ab-41d3-a965-1b5f961b6996" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"6d7f9da7-e00b-4ab6-bc7b-9c36049ff573" -> "988609e6-e7ab-41d3-a965-1b5f961b6996";
+"e49dfb23-7ada-4206-b054-e13a61f99c10" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6d7f9da7-e00b-4ab6-bc7b-9c36049ff573" -> "e49dfb23-7ada-4206-b054-e13a61f99c10";
+"89c79c64-ee14-4ae4-a1d6-f6cbbf8bc40a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"6d7f9da7-e00b-4ab6-bc7b-9c36049ff573" -> "89c79c64-ee14-4ae4-a1d6-f6cbbf8bc40a";
+"7e27c85a-8cae-4dfe-bf24-a2181aee6ca8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"6d7f9da7-e00b-4ab6-bc7b-9c36049ff573" -> "7e27c85a-8cae-4dfe-bf24-a2181aee6ca8";
+"cb8089e5-6df0-40dc-a6d6-40bb2649a6ea" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"823b0f9d-95b8-4722-abe2-03d070d5affb" -> "cb8089e5-6df0-40dc-a6d6-40bb2649a6ea";
+"14fc00f8-4d49-40c2-8e55-c21bdfe679e3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"cb8089e5-6df0-40dc-a6d6-40bb2649a6ea" -> "14fc00f8-4d49-40c2-8e55-c21bdfe679e3";
+"52489c95-f25f-431e-93db-42c4d353315d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cb8089e5-6df0-40dc-a6d6-40bb2649a6ea" -> "52489c95-f25f-431e-93db-42c4d353315d";
+"2583f711-e135-4b41-82b2-34739dc7fe72" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"cb8089e5-6df0-40dc-a6d6-40bb2649a6ea" -> "2583f711-e135-4b41-82b2-34739dc7fe72";
+"0c4698a7-feb5-486f-aa01-541afe43c7dc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"cb8089e5-6df0-40dc-a6d6-40bb2649a6ea" -> "0c4698a7-feb5-486f-aa01-541afe43c7dc";
+"b0e1c587-9075-49cc-875b-5870f332e0ba" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"96c1a8e0-8fcf-4d83-b03b-bce55529e5be" -> "b0e1c587-9075-49cc-875b-5870f332e0ba";
+"13a43656-501b-48e5-9fe4-299c3c185ca2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"b0e1c587-9075-49cc-875b-5870f332e0ba" -> "13a43656-501b-48e5-9fe4-299c3c185ca2";
+"bcc9062e-9b44-44e2-8375-1a1d21206978" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"b0e1c587-9075-49cc-875b-5870f332e0ba" -> "bcc9062e-9b44-44e2-8375-1a1d21206978";
+"1e8e052c-6424-446c-9eb0-b6e282077121" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b0e1c587-9075-49cc-875b-5870f332e0ba" -> "1e8e052c-6424-446c-9eb0-b6e282077121";
+"aabb1583-238d-44a8-82de-f57ad7f14f45" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,BrightTable)", shape=box, style=filled];
+"b0e1c587-9075-49cc-875b-5870f332e0ba" -> "aabb1583-238d-44a8-82de-f57ad7f14f45";
+"babcc445-5325-41ab-8093-803796ee6dc8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"37ae94c4-e25e-42e5-931d-35f14eba3ac9" -> "babcc445-5325-41ab-8093-803796ee6dc8";
+"80d4e364-c68e-4948-9991-08d3486100b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"babcc445-5325-41ab-8093-803796ee6dc8" -> "80d4e364-c68e-4948-9991-08d3486100b6";
+"aac3e302-a5e6-496b-80e0-d489adb8a968" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"babcc445-5325-41ab-8093-803796ee6dc8" -> "aac3e302-a5e6-496b-80e0-d489adb8a968";
+"8e380f1b-816e-4839-afa7-042e27102c38" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"babcc445-5325-41ab-8093-803796ee6dc8" -> "8e380f1b-816e-4839-afa7-042e27102c38";
+"0d5e5203-f1df-4437-9d54-37f68d5145af" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"babcc445-5325-41ab-8093-803796ee6dc8" -> "0d5e5203-f1df-4437-9d54-37f68d5145af";
+"e2613b89-1da0-4c31-bb3f-ff2aedaf5e33" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4103b74e-5041-47c6-b8ec-53c862abf987" -> "e2613b89-1da0-4c31-bb3f-ff2aedaf5e33";
+"4b590a3a-fea6-4292-a0a8-5ad34cfd6a02" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"e2613b89-1da0-4c31-bb3f-ff2aedaf5e33" -> "4b590a3a-fea6-4292-a0a8-5ad34cfd6a02";
+"1567c5cc-5c63-4a8c-a98b-4a9b7cc2201d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e2613b89-1da0-4c31-bb3f-ff2aedaf5e33" -> "1567c5cc-5c63-4a8c-a98b-4a9b7cc2201d";
+"d61ad8ae-3924-4268-82b3-4e3ef6cd1b9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"e2613b89-1da0-4c31-bb3f-ff2aedaf5e33" -> "d61ad8ae-3924-4268-82b3-4e3ef6cd1b9f";
+"742cd464-34ba-43a5-a707-6842be075743" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,WaterTable)", shape=box, style=filled];
+"e2613b89-1da0-4c31-bb3f-ff2aedaf5e33" -> "742cd464-34ba-43a5-a707-6842be075743";
+"4a153e7e-15b5-40d8-9fe1-9124aa295094" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"07cbc80f-9d93-41ff-ba03-4a5843a59bc1" -> "4a153e7e-15b5-40d8-9fe1-9124aa295094";
+"beb45a9a-96eb-4a27-b053-a4737c60836e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"4a153e7e-15b5-40d8-9fe1-9124aa295094" -> "beb45a9a-96eb-4a27-b053-a4737c60836e";
+"0a163006-2d3e-422c-9d9c-b0da6ba0d002" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"4a153e7e-15b5-40d8-9fe1-9124aa295094" -> "0a163006-2d3e-422c-9d9c-b0da6ba0d002";
+"c3706352-c0c6-44b0-a36f-5e38d887b7c1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"4a153e7e-15b5-40d8-9fe1-9124aa295094" -> "c3706352-c0c6-44b0-a36f-5e38d887b7c1";
+"23802024-3113-45c2-917f-a4b4790437e9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"33649059-53c2-4864-9769-12789b607fdd" -> "23802024-3113-45c2-917f-a4b4790437e9";
+"a7060826-7c13-4267-9c70-03c3e2bb0b9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"23802024-3113-45c2-917f-a4b4790437e9" -> "a7060826-7c13-4267-9c70-03c3e2bb0b9f";
+"31330f4c-7607-4e3b-9a52-916601af3344" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"23802024-3113-45c2-917f-a4b4790437e9" -> "31330f4c-7607-4e3b-9a52-916601af3344";
+"605aca0d-387d-4dc4-ac4e-a90b2c384e97" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"23802024-3113-45c2-917f-a4b4790437e9" -> "605aca0d-387d-4dc4-ac4e-a90b2c384e97";
+"7bfa0197-ff28-4eed-96f2-462e1576137e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9b4eaf4c-a813-4f92-a4cb-f708fc7543c3" -> "7bfa0197-ff28-4eed-96f2-462e1576137e";
+"5699fc12-546c-4c1a-b3ae-c3d87e15d822" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"7bfa0197-ff28-4eed-96f2-462e1576137e" -> "5699fc12-546c-4c1a-b3ae-c3d87e15d822";
+"a1e9ca93-8ad1-4157-9f02-38b2989e88bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"7bfa0197-ff28-4eed-96f2-462e1576137e" -> "a1e9ca93-8ad1-4157-9f02-38b2989e88bc";
+"0ee1e970-b7e9-468e-b483-59b3163d9437" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"7bfa0197-ff28-4eed-96f2-462e1576137e" -> "0ee1e970-b7e9-468e-b483-59b3163d9437";
+"b64c2a64-1a97-47f6-8492-72c92a78bc01" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"414d44a1-0e77-46b7-9179-583a13a172c6" -> "b64c2a64-1a97-47f6-8492-72c92a78bc01";
+"6adbd380-443d-4045-9349-abe57cc179f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b64c2a64-1a97-47f6-8492-72c92a78bc01" -> "6adbd380-443d-4045-9349-abe57cc179f0";
+"89b4e18d-9a55-412f-8253-ecf4cade4b44" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"b64c2a64-1a97-47f6-8492-72c92a78bc01" -> "89b4e18d-9a55-412f-8253-ecf4cade4b44";
+"798beb99-f0f2-4d5d-b001-efc0b999d452" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"b64c2a64-1a97-47f6-8492-72c92a78bc01" -> "798beb99-f0f2-4d5d-b001-efc0b999d452";
+"220a843b-0088-4622-b35e-d03c48ff01d5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c9515d28-7270-4c16-97a1-2c298923f500" -> "220a843b-0088-4622-b35e-d03c48ff01d5";
+"ffa656f3-8c1d-4bf7-b902-264cf3be6958" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"220a843b-0088-4622-b35e-d03c48ff01d5" -> "ffa656f3-8c1d-4bf7-b902-264cf3be6958";
+"88266ee8-a355-4f80-9836-c7758be8ef6b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"220a843b-0088-4622-b35e-d03c48ff01d5" -> "88266ee8-a355-4f80-9836-c7758be8ef6b";
+"c321bbb9-98cd-4577-b495-c802dbfd1941" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"220a843b-0088-4622-b35e-d03c48ff01d5" -> "c321bbb9-98cd-4577-b495-c802dbfd1941";
+"2501c271-687e-4344-a2ce-4054e5aef3ad" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e569c310-4e0d-4fba-81f6-fa5af4009be5" -> "2501c271-687e-4344-a2ce-4054e5aef3ad";
+"62716efd-8fd7-4864-9bdc-b7533f28bbc3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2501c271-687e-4344-a2ce-4054e5aef3ad" -> "62716efd-8fd7-4864-9bdc-b7533f28bbc3";
+"92fddbf9-472f-48b6-aacf-f2bbfd424e26" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"2501c271-687e-4344-a2ce-4054e5aef3ad" -> "92fddbf9-472f-48b6-aacf-f2bbfd424e26";
+"2509b6fc-47b8-4568-9860-edf7abb4b277" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,BrightTable)", shape=box, style=filled];
+"2501c271-687e-4344-a2ce-4054e5aef3ad" -> "2509b6fc-47b8-4568-9860-edf7abb4b277";
+"ae105f85-f01a-4c79-9a74-3fab543f9978" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b1837f13-91df-4680-9a3f-eeff143a8f15" -> "ae105f85-f01a-4c79-9a74-3fab543f9978";
+"6672a974-12d2-4a02-810b-246e8dc40a84" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"ae105f85-f01a-4c79-9a74-3fab543f9978" -> "6672a974-12d2-4a02-810b-246e8dc40a84";
+"efde675d-48b0-4ed9-b0b0-9a1f059b654f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ae105f85-f01a-4c79-9a74-3fab543f9978" -> "efde675d-48b0-4ed9-b0b0-9a1f059b654f";
+"7a497311-39b3-4751-a208-228e6461c483" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"ae105f85-f01a-4c79-9a74-3fab543f9978" -> "7a497311-39b3-4751-a208-228e6461c483";
+"58273b1e-c8a9-4b11-8401-bbe3b2a1fe7d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"ae105f85-f01a-4c79-9a74-3fab543f9978" -> "58273b1e-c8a9-4b11-8401-bbe3b2a1fe7d";
+"e5effab4-b593-4905-aebb-01d31111f402" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"80f17411-eab1-40af-b212-d24e30cde1fd" -> "e5effab4-b593-4905-aebb-01d31111f402";
+"0f5e077f-a059-4b93-836d-9c971a37d1e8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"e5effab4-b593-4905-aebb-01d31111f402" -> "0f5e077f-a059-4b93-836d-9c971a37d1e8";
+"0de58d1f-03c7-4199-898e-4ebd4be7fce6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e5effab4-b593-4905-aebb-01d31111f402" -> "0de58d1f-03c7-4199-898e-4ebd4be7fce6";
+"0612c6db-d68e-42b6-b50c-cc4a1b5b08f9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"e5effab4-b593-4905-aebb-01d31111f402" -> "0612c6db-d68e-42b6-b50c-cc4a1b5b08f9";
+"9cdb6a3b-31e7-4069-bf7e-fa3e0e0ac0ce" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"e5effab4-b593-4905-aebb-01d31111f402" -> "9cdb6a3b-31e7-4069-bf7e-fa3e0e0ac0ce";
+"7080ae36-c007-407e-a090-ec88b3ef4784" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"faed8aa8-7da2-4ea4-ad68-0d4e5c5e2a67" -> "7080ae36-c007-407e-a090-ec88b3ef4784";
+"5789ffe7-51d4-4e1f-9a5a-f23af71931d3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"7080ae36-c007-407e-a090-ec88b3ef4784" -> "5789ffe7-51d4-4e1f-9a5a-f23af71931d3";
+"b49d9f11-3784-42d6-9787-4156a31da0fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7080ae36-c007-407e-a090-ec88b3ef4784" -> "b49d9f11-3784-42d6-9787-4156a31da0fa";
+"f4d13eaa-3b34-4971-947c-a729d3209c9a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"7080ae36-c007-407e-a090-ec88b3ef4784" -> "f4d13eaa-3b34-4971-947c-a729d3209c9a";
+"6c3b4421-1846-494f-b6f6-549905c18991" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,WaterTable)", shape=box, style=filled];
+"7080ae36-c007-407e-a090-ec88b3ef4784" -> "6c3b4421-1846-494f-b6f6-549905c18991";
+"956ed16a-05f0-4cd8-beed-cf07b2cce3e5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b21ac636-949e-4516-a2a7-e34b22cc370e" -> "956ed16a-05f0-4cd8-beed-cf07b2cce3e5";
+"49d388b2-26b1-4723-935c-f1e519831d13" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"956ed16a-05f0-4cd8-beed-cf07b2cce3e5" -> "49d388b2-26b1-4723-935c-f1e519831d13";
+"c7257cea-13d5-4660-b455-35bcd02f485a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"956ed16a-05f0-4cd8-beed-cf07b2cce3e5" -> "c7257cea-13d5-4660-b455-35bcd02f485a";
+"32a33d52-b759-4494-8f23-8f2b30500b94" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"956ed16a-05f0-4cd8-beed-cf07b2cce3e5" -> "32a33d52-b759-4494-8f23-8f2b30500b94";
+"a79786be-a702-42c6-8c99-1ff095b8c7e4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"956ed16a-05f0-4cd8-beed-cf07b2cce3e5" -> "a79786be-a702-42c6-8c99-1ff095b8c7e4";
+"54ddbef1-d8ef-496b-b604-1e7f19f24c19" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"65e8de80-6b8f-438e-a384-c17d1b0d8073" -> "54ddbef1-d8ef-496b-b604-1e7f19f24c19";
+"6062aef1-a27f-4b14-b0e8-4490596bba0b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"54ddbef1-d8ef-496b-b604-1e7f19f24c19" -> "6062aef1-a27f-4b14-b0e8-4490596bba0b";
+"3e22a516-4936-4550-a936-1929e951fc1f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"54ddbef1-d8ef-496b-b604-1e7f19f24c19" -> "3e22a516-4936-4550-a936-1929e951fc1f";
+"f00a8e84-4991-44d4-b88b-a351f692845c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"54ddbef1-d8ef-496b-b604-1e7f19f24c19" -> "f00a8e84-4991-44d4-b88b-a351f692845c";
+"57af8aec-39c6-4229-9f3e-ee46c9e7eba5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"54ddbef1-d8ef-496b-b604-1e7f19f24c19" -> "57af8aec-39c6-4229-9f3e-ee46c9e7eba5";
+"a69bd96b-9db6-49de-95d4-6de549aabfb3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8f465d03-72ee-4195-80eb-ea52f1c76f62" -> "a69bd96b-9db6-49de-95d4-6de549aabfb3";
+"bb928c1c-f780-4403-bc36-4af636006525" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"a69bd96b-9db6-49de-95d4-6de549aabfb3" -> "bb928c1c-f780-4403-bc36-4af636006525";
+"66710455-8f8f-4caa-bad5-b91b810cc331" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a69bd96b-9db6-49de-95d4-6de549aabfb3" -> "66710455-8f8f-4caa-bad5-b91b810cc331";
+"6bc26454-fe9e-4878-a5f2-8f3741230eb3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"a69bd96b-9db6-49de-95d4-6de549aabfb3" -> "6bc26454-fe9e-4878-a5f2-8f3741230eb3";
+"aff42b81-f528-4d7e-85de-4dcf531b057e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7678f211-e3f5-424f-a13b-613e5d49f6a4" -> "aff42b81-f528-4d7e-85de-4dcf531b057e";
+"92264400-fad1-480a-a1f3-26da0e8137e9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"aff42b81-f528-4d7e-85de-4dcf531b057e" -> "92264400-fad1-480a-a1f3-26da0e8137e9";
+"2389f72e-3704-4c9a-8e82-538a610254ce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"aff42b81-f528-4d7e-85de-4dcf531b057e" -> "2389f72e-3704-4c9a-8e82-538a610254ce";
+"6f9def00-382b-4a5f-a052-d1318890e049" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"aff42b81-f528-4d7e-85de-4dcf531b057e" -> "6f9def00-382b-4a5f-a052-d1318890e049";
+"2e06a655-0f3f-4064-a249-f58ae557ffc3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,BrightTable)", shape=box, style=filled];
+"aff42b81-f528-4d7e-85de-4dcf531b057e" -> "2e06a655-0f3f-4064-a249-f58ae557ffc3";
+"cbf7b199-6629-412c-9137-692cf2a5d42c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1b870b46-c11c-48f3-ae42-efa9bcc80bf6" -> "cbf7b199-6629-412c-9137-692cf2a5d42c";
+"21cf96ff-e94a-40a3-80dc-b17e38731d82" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cbf7b199-6629-412c-9137-692cf2a5d42c" -> "21cf96ff-e94a-40a3-80dc-b17e38731d82";
+"13efdb93-b016-4304-870a-18e8d8aafdbe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"cbf7b199-6629-412c-9137-692cf2a5d42c" -> "13efdb93-b016-4304-870a-18e8d8aafdbe";
+"87119439-531e-4661-b8a1-44efe26cf124" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"cbf7b199-6629-412c-9137-692cf2a5d42c" -> "87119439-531e-4661-b8a1-44efe26cf124";
+"efd7fd42-a6d7-4203-a978-6cfa89268981" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"cbf7b199-6629-412c-9137-692cf2a5d42c" -> "efd7fd42-a6d7-4203-a978-6cfa89268981";
+"3aac1498-9cbd-47fc-9279-fd9df032ffe0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f8c96a86-adb3-42cd-8c08-9ad29a839191" -> "3aac1498-9cbd-47fc-9279-fd9df032ffe0";
+"c0c06538-5e97-4ecd-82c9-7e8e203af45b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"3aac1498-9cbd-47fc-9279-fd9df032ffe0" -> "c0c06538-5e97-4ecd-82c9-7e8e203af45b";
+"e61e9b1b-8594-449e-b8f7-ec253c475aba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3aac1498-9cbd-47fc-9279-fd9df032ffe0" -> "e61e9b1b-8594-449e-b8f7-ec253c475aba";
+"9cb90b6a-2c29-4b34-addb-b0561a9fcee8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"3aac1498-9cbd-47fc-9279-fd9df032ffe0" -> "9cb90b6a-2c29-4b34-addb-b0561a9fcee8";
+"2c33e1f7-af3b-4fc9-8046-a556e7af9d77" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"3aac1498-9cbd-47fc-9279-fd9df032ffe0" -> "2c33e1f7-af3b-4fc9-8046-a556e7af9d77";
+"f71fd15d-367c-4cc6-8b2b-0024d9369f77" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"79c089ff-c9df-4d57-b38d-06a107557312" -> "f71fd15d-367c-4cc6-8b2b-0024d9369f77";
+"19ff069d-85f6-4d66-8736-d44dc5d76317" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"f71fd15d-367c-4cc6-8b2b-0024d9369f77" -> "19ff069d-85f6-4d66-8736-d44dc5d76317";
+"d32f5f55-13fb-4d9d-88cd-c6bea827c3b0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f71fd15d-367c-4cc6-8b2b-0024d9369f77" -> "d32f5f55-13fb-4d9d-88cd-c6bea827c3b0";
+"1d0b443f-4c6f-4158-9df2-1f2b8fa0f483" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"f71fd15d-367c-4cc6-8b2b-0024d9369f77" -> "1d0b443f-4c6f-4158-9df2-1f2b8fa0f483";
+"3cb754ba-c534-42bc-ba6e-4c4b88b271f6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"f71fd15d-367c-4cc6-8b2b-0024d9369f77" -> "3cb754ba-c534-42bc-ba6e-4c4b88b271f6";
+"0713f79f-1dc8-485f-83b5-9ac2e15bdd02" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ce1f06c-48ff-49b0-abaa-7fe6256dff31" -> "0713f79f-1dc8-485f-83b5-9ac2e15bdd02";
+"127a9013-ea01-4f30-a92f-831b088b62ce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"0713f79f-1dc8-485f-83b5-9ac2e15bdd02" -> "127a9013-ea01-4f30-a92f-831b088b62ce";
+"1f0ae071-5dcd-4438-9a1a-159a2e81ad3d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"0713f79f-1dc8-485f-83b5-9ac2e15bdd02" -> "1f0ae071-5dcd-4438-9a1a-159a2e81ad3d";
+"7f9beeff-e7d6-49b1-9898-1a60351e2092" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"0713f79f-1dc8-485f-83b5-9ac2e15bdd02" -> "7f9beeff-e7d6-49b1-9898-1a60351e2092";
+"eb6139cb-d6c4-4acf-9481-edf3894b3511" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"08436766-f477-43dd-a09d-b5617b70f31d" -> "eb6139cb-d6c4-4acf-9481-edf3894b3511";
+"8b86c7ad-f2ee-4a4a-9644-7f14d5be3535" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"eb6139cb-d6c4-4acf-9481-edf3894b3511" -> "8b86c7ad-f2ee-4a4a-9644-7f14d5be3535";
+"fa21fcf0-619e-4d21-87ca-148123cbc14d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"eb6139cb-d6c4-4acf-9481-edf3894b3511" -> "fa21fcf0-619e-4d21-87ca-148123cbc14d";
+"e8a5bfd8-1895-4cb2-8f58-3ae16f6c3cca" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,BrightTable)", shape=box, style=filled];
+"eb6139cb-d6c4-4acf-9481-edf3894b3511" -> "e8a5bfd8-1895-4cb2-8f58-3ae16f6c3cca";
+"7fcae3a3-a7fd-45d8-90fa-1679efb5cc4a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"05f8c3e9-f956-423c-b839-03115d159e07" -> "7fcae3a3-a7fd-45d8-90fa-1679efb5cc4a";
+"7b8d4254-e73e-4af1-a00e-697b22c184bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"7fcae3a3-a7fd-45d8-90fa-1679efb5cc4a" -> "7b8d4254-e73e-4af1-a00e-697b22c184bd";
+"15f2d53d-fcbc-4e74-b1e6-9109d6105dba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"7fcae3a3-a7fd-45d8-90fa-1679efb5cc4a" -> "15f2d53d-fcbc-4e74-b1e6-9109d6105dba";
+"90ab23d5-2916-45fd-b0fc-322de36c14e0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"7fcae3a3-a7fd-45d8-90fa-1679efb5cc4a" -> "90ab23d5-2916-45fd-b0fc-322de36c14e0";
+"a736acd0-8bfc-4884-b4f8-f6c4e8c84adc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e2bda1a6-8ef6-4a06-b2ae-1f5f74934231" -> "a736acd0-8bfc-4884-b4f8-f6c4e8c84adc";
+"d6e52e33-b65f-41da-8e5e-bf2227b42589" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"a736acd0-8bfc-4884-b4f8-f6c4e8c84adc" -> "d6e52e33-b65f-41da-8e5e-bf2227b42589";
+"247c0ccd-9707-4a6c-bb1d-566c91b6aac9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"a736acd0-8bfc-4884-b4f8-f6c4e8c84adc" -> "247c0ccd-9707-4a6c-bb1d-566c91b6aac9";
+"6fb8a925-6be7-4a8b-b0ee-be91f220850a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"a736acd0-8bfc-4884-b4f8-f6c4e8c84adc" -> "6fb8a925-6be7-4a8b-b0ee-be91f220850a";
+"6d35016c-e20b-4da7-b20e-c0f469e87258" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e2663fe2-b6b8-46b6-b144-aaed69b30e67" -> "6d35016c-e20b-4da7-b20e-c0f469e87258";
+"c3a6cd8c-64be-4f67-9bb5-e4dee5fe807b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"6d35016c-e20b-4da7-b20e-c0f469e87258" -> "c3a6cd8c-64be-4f67-9bb5-e4dee5fe807b";
+"53e07dc5-d8cc-417b-8d7f-1bbfaf272315" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"6d35016c-e20b-4da7-b20e-c0f469e87258" -> "53e07dc5-d8cc-417b-8d7f-1bbfaf272315";
+"6a170051-1032-4004-85a6-3d71d91f408d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6d35016c-e20b-4da7-b20e-c0f469e87258" -> "6a170051-1032-4004-85a6-3d71d91f408d";
+"5acf912c-6ac0-4461-90cf-da19390f2655" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"6d35016c-e20b-4da7-b20e-c0f469e87258" -> "5acf912c-6ac0-4461-90cf-da19390f2655";
+"7b991051-6f88-42a4-b316-9801bc229121" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4c959985-cc3f-4ae6-9c8d-6bd9cdd4e5f4" -> "7b991051-6f88-42a4-b316-9801bc229121";
+"402b0fee-e30e-40b8-895b-0baef293a2ea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7b991051-6f88-42a4-b316-9801bc229121" -> "402b0fee-e30e-40b8-895b-0baef293a2ea";
+"ca818b84-6b8f-41b8-9f42-546cb1dd0267" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"7b991051-6f88-42a4-b316-9801bc229121" -> "ca818b84-6b8f-41b8-9f42-546cb1dd0267";
+"69ed2fe0-5613-4e88-b17b-cb6c6e696e4e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"7b991051-6f88-42a4-b316-9801bc229121" -> "69ed2fe0-5613-4e88-b17b-cb6c6e696e4e";
+"088c04d4-7fe8-4370-bfdd-639f973f036a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,WaterTable)", shape=box, style=filled];
+"7b991051-6f88-42a4-b316-9801bc229121" -> "088c04d4-7fe8-4370-bfdd-639f973f036a";
+"08700f66-ea41-48ef-8047-80f0085084e3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a53284f9-cd1a-4ee1-9a5d-e2eda0baea7a" -> "08700f66-ea41-48ef-8047-80f0085084e3";
+"36c90cfe-877c-4b67-9f0b-098409e534df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"08700f66-ea41-48ef-8047-80f0085084e3" -> "36c90cfe-877c-4b67-9f0b-098409e534df";
+"93c1130d-b14a-4e3e-8955-0c5959faa0c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"08700f66-ea41-48ef-8047-80f0085084e3" -> "93c1130d-b14a-4e3e-8955-0c5959faa0c5";
+"9e6ede65-3570-4c5c-80b9-693b96226195" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"08700f66-ea41-48ef-8047-80f0085084e3" -> "9e6ede65-3570-4c5c-80b9-693b96226195";
+"30ad7df2-542d-4cbb-abe1-4b5b66950ff4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"29bbf4c7-fb1e-4aad-bdb2-5645d3fe7cf0" -> "30ad7df2-542d-4cbb-abe1-4b5b66950ff4";
+"2c0604bf-2fb6-4c52-9db1-9a95562fab32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"30ad7df2-542d-4cbb-abe1-4b5b66950ff4" -> "2c0604bf-2fb6-4c52-9db1-9a95562fab32";
+"f1e9ec7e-d498-4c53-ab95-f21b5de5a9e0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"30ad7df2-542d-4cbb-abe1-4b5b66950ff4" -> "f1e9ec7e-d498-4c53-ab95-f21b5de5a9e0";
+"5589dee3-0240-49e0-a18a-7824f4d6513d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"30ad7df2-542d-4cbb-abe1-4b5b66950ff4" -> "5589dee3-0240-49e0-a18a-7824f4d6513d";
+"6da04b02-dd38-4464-8dd5-d4bff3780df8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"004f17d7-1676-4f1c-9e6f-7816026332a6" -> "6da04b02-dd38-4464-8dd5-d4bff3780df8";
+"c347772b-1b37-4a39-aed1-d8e73230199d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"6da04b02-dd38-4464-8dd5-d4bff3780df8" -> "c347772b-1b37-4a39-aed1-d8e73230199d";
+"2506ae41-6951-4276-88b1-9aaa46e43b50" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"6da04b02-dd38-4464-8dd5-d4bff3780df8" -> "2506ae41-6951-4276-88b1-9aaa46e43b50";
+"e949b1b9-8027-4247-95bb-d90461635a32" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,BrightTable)", shape=box, style=filled];
+"6da04b02-dd38-4464-8dd5-d4bff3780df8" -> "e949b1b9-8027-4247-95bb-d90461635a32";
+"09002791-8297-479a-a8d0-b3dd78543323" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"bc3d1324-628a-4e9a-967f-e1a34dc200b8" -> "09002791-8297-479a-a8d0-b3dd78543323";
+"8957447b-bb99-4e33-b429-695946b66b15" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"09002791-8297-479a-a8d0-b3dd78543323" -> "8957447b-bb99-4e33-b429-695946b66b15";
+"0c1e2234-19ad-4045-acaf-ff0fbc730aee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"09002791-8297-479a-a8d0-b3dd78543323" -> "0c1e2234-19ad-4045-acaf-ff0fbc730aee";
+"7632732a-9148-431b-9bcc-ee0676180390" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,BrightTable)", shape=box, style=filled];
+"09002791-8297-479a-a8d0-b3dd78543323" -> "7632732a-9148-431b-9bcc-ee0676180390";
+"1cb08cc0-a26c-4340-bb9d-1a12a6bc0aec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f01b3a96-2a8d-43da-b1af-3e1a55d29d7f" -> "1cb08cc0-a26c-4340-bb9d-1a12a6bc0aec";
+"08fb72b5-5e16-49a8-8c2d-35af6baa434b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1cb08cc0-a26c-4340-bb9d-1a12a6bc0aec" -> "08fb72b5-5e16-49a8-8c2d-35af6baa434b";
+"efa96bda-e5a8-4391-97ea-18fb600eca96" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"1cb08cc0-a26c-4340-bb9d-1a12a6bc0aec" -> "efa96bda-e5a8-4391-97ea-18fb600eca96";
+"9b3c54e8-6412-4364-bac8-836051dc2a9a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"1cb08cc0-a26c-4340-bb9d-1a12a6bc0aec" -> "9b3c54e8-6412-4364-bac8-836051dc2a9a";
+"c16ae82a-98fe-4915-8a2f-e169039236fa" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"62564879-2a5b-441f-b3a4-5f8b716f2bd1" -> "c16ae82a-98fe-4915-8a2f-e169039236fa";
+"76bddc29-f789-4ce1-bf9d-4f38ca5a604e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c16ae82a-98fe-4915-8a2f-e169039236fa" -> "76bddc29-f789-4ce1-bf9d-4f38ca5a604e";
+"c5c291d4-5657-44c3-a404-f135a9ffb299" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"c16ae82a-98fe-4915-8a2f-e169039236fa" -> "c5c291d4-5657-44c3-a404-f135a9ffb299";
+"480811b7-3f6a-49c4-9b7f-e0a554ac1ec6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"c16ae82a-98fe-4915-8a2f-e169039236fa" -> "480811b7-3f6a-49c4-9b7f-e0a554ac1ec6";
+"f284902f-86e8-49aa-bfa2-a12089ee906d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"c16ae82a-98fe-4915-8a2f-e169039236fa" -> "f284902f-86e8-49aa-bfa2-a12089ee906d";
+"0af98ad1-14e8-4ca5-831a-0043a32b9a20" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7fe798d9-1aed-487f-87bd-0e4c0e441f94" -> "0af98ad1-14e8-4ca5-831a-0043a32b9a20";
+"865bddb7-988d-42fa-9e65-c876ab15dfe7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"0af98ad1-14e8-4ca5-831a-0043a32b9a20" -> "865bddb7-988d-42fa-9e65-c876ab15dfe7";
+"efa8eb89-2b75-4156-beeb-00edfc54f281" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"0af98ad1-14e8-4ca5-831a-0043a32b9a20" -> "efa8eb89-2b75-4156-beeb-00edfc54f281";
+"98a38739-268c-42de-b329-a6b57dff58b2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"0af98ad1-14e8-4ca5-831a-0043a32b9a20" -> "98a38739-268c-42de-b329-a6b57dff58b2";
+"010f9273-c7ba-45e3-9908-6527bed01f29" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a160c9d3-ce9e-42d0-ba04-83b7f2541209" -> "010f9273-c7ba-45e3-9908-6527bed01f29";
+"d5cb51ce-3c07-429e-a9ea-d984bda522a2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"010f9273-c7ba-45e3-9908-6527bed01f29" -> "d5cb51ce-3c07-429e-a9ea-d984bda522a2";
+"0e971f52-6be0-44f1-ae5d-04a0f0b0fe1e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"010f9273-c7ba-45e3-9908-6527bed01f29" -> "0e971f52-6be0-44f1-ae5d-04a0f0b0fe1e";
+"d0dbecb7-081d-46d3-83b8-e6fe57beb9ca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"010f9273-c7ba-45e3-9908-6527bed01f29" -> "d0dbecb7-081d-46d3-83b8-e6fe57beb9ca";
+"fea09512-494d-4115-ae6f-8a8b6821bd76" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,BrightTable)", shape=box, style=filled];
+"010f9273-c7ba-45e3-9908-6527bed01f29" -> "fea09512-494d-4115-ae6f-8a8b6821bd76";
+"a4446cff-d8f0-402e-9aaa-739b89d8e015" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e5e13f57-09db-49b0-9bed-3ff7e9a54778" -> "a4446cff-d8f0-402e-9aaa-739b89d8e015";
+"e8765ae0-75a2-4bf2-96fb-162a1b82c7c1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"a4446cff-d8f0-402e-9aaa-739b89d8e015" -> "e8765ae0-75a2-4bf2-96fb-162a1b82c7c1";
+"4e7bcb74-b675-487d-938e-9293c9eb423f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"a4446cff-d8f0-402e-9aaa-739b89d8e015" -> "4e7bcb74-b675-487d-938e-9293c9eb423f";
+"e4b3fae3-7eff-4edc-bd29-686589619154" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,CoffeeTable)", shape=box, style=filled];
+"a4446cff-d8f0-402e-9aaa-739b89d8e015" -> "e4b3fae3-7eff-4edc-bd29-686589619154";
+"eeea53a2-4bcd-431c-b158-f2fb0f1b7044" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b06a8fa4-471c-4501-b756-146b03cfc2b3" -> "eeea53a2-4bcd-431c-b158-f2fb0f1b7044";
+"cbfa0254-2deb-42fb-8c86-fc8ae1bf2591" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"eeea53a2-4bcd-431c-b158-f2fb0f1b7044" -> "cbfa0254-2deb-42fb-8c86-fc8ae1bf2591";
+"b6cfce40-21e4-470f-af31-a7779576ff93" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"eeea53a2-4bcd-431c-b158-f2fb0f1b7044" -> "b6cfce40-21e4-470f-af31-a7779576ff93";
+"357d4961-3535-45fe-a4cf-9a2d9710acbb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"eeea53a2-4bcd-431c-b158-f2fb0f1b7044" -> "357d4961-3535-45fe-a4cf-9a2d9710acbb";
+"de252508-e970-4614-8c46-1c9dc16c6381" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,WaterTable)", shape=box, style=filled];
+"eeea53a2-4bcd-431c-b158-f2fb0f1b7044" -> "de252508-e970-4614-8c46-1c9dc16c6381";
+"2ecaa42a-192e-404b-9eef-0859b7572009" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"84b0c8f4-7297-4441-ba47-cefa147440ac" -> "2ecaa42a-192e-404b-9eef-0859b7572009";
+"8c9ab08f-b132-448d-bbe2-84752d5fce37" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"2ecaa42a-192e-404b-9eef-0859b7572009" -> "8c9ab08f-b132-448d-bbe2-84752d5fce37";
+"c9ab5c24-50c4-4583-9e40-76fd9ebece5a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"2ecaa42a-192e-404b-9eef-0859b7572009" -> "c9ab5c24-50c4-4583-9e40-76fd9ebece5a";
+"435e064b-f46e-4847-9a57-6f334e5d52e4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2ecaa42a-192e-404b-9eef-0859b7572009" -> "435e064b-f46e-4847-9a57-6f334e5d52e4";
+"9dd1f173-e14b-426a-a6cb-9457c220706e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,CoffeeTable)", shape=box, style=filled];
+"2ecaa42a-192e-404b-9eef-0859b7572009" -> "9dd1f173-e14b-426a-a6cb-9457c220706e";
+"7f75ac32-ea20-4af6-80b4-333b565d916b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"8aa760a6-abd5-4bbe-ab76-94648c24b8e3" -> "7f75ac32-ea20-4af6-80b4-333b565d916b";
+"2f677de5-f029-4a7c-bcbe-2a6cc31a2084" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"7f75ac32-ea20-4af6-80b4-333b565d916b" -> "2f677de5-f029-4a7c-bcbe-2a6cc31a2084";
+"abddf89c-3766-46b6-81ac-db57268a04f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7f75ac32-ea20-4af6-80b4-333b565d916b" -> "abddf89c-3766-46b6-81ac-db57268a04f6";
+"0ad53ec7-dc55-43b1-b3fd-631b6c89ddba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"7f75ac32-ea20-4af6-80b4-333b565d916b" -> "0ad53ec7-dc55-43b1-b3fd-631b6c89ddba";
+"77d5c904-3e85-4f7b-8973-e3961633b0ec" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,WaterTable)", shape=box, style=filled];
+"7f75ac32-ea20-4af6-80b4-333b565d916b" -> "77d5c904-3e85-4f7b-8973-e3961633b0ec";
+"8b447805-a48b-4409-86da-05560e618a02" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0fb7f560-8a14-4b18-b97f-61e64efaf1c8" -> "8b447805-a48b-4409-86da-05560e618a02";
+"47f5dd59-63fc-4a4d-806f-ba4d84d4ed44" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"8b447805-a48b-4409-86da-05560e618a02" -> "47f5dd59-63fc-4a4d-806f-ba4d84d4ed44";
+"0966966e-9d54-4d56-9e87-21e9e0bf94d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"8b447805-a48b-4409-86da-05560e618a02" -> "0966966e-9d54-4d56-9e87-21e9e0bf94d6";
+"af13e152-f421-46bc-8b20-74eae82aabeb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"8b447805-a48b-4409-86da-05560e618a02" -> "af13e152-f421-46bc-8b20-74eae82aabeb";
+"1634729f-d45a-4b59-8e13-79af29cab73a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2a235c5e-9a5b-4d35-9bfa-e84805a90b29" -> "1634729f-d45a-4b59-8e13-79af29cab73a";
+"2396e8ce-7164-4155-9bde-32a759e9851c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"1634729f-d45a-4b59-8e13-79af29cab73a" -> "2396e8ce-7164-4155-9bde-32a759e9851c";
+"385a432b-feff-488c-ad9f-fea1df09e1b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"1634729f-d45a-4b59-8e13-79af29cab73a" -> "385a432b-feff-488c-ad9f-fea1df09e1b6";
+"cd922a50-219f-4f78-9b9e-b2a4edba2eec" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"1634729f-d45a-4b59-8e13-79af29cab73a" -> "cd922a50-219f-4f78-9b9e-b2a4edba2eec";
+"e776c240-7b60-496c-8e3f-55a5ed3a5a52" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3d7b0a2e-59c5-4dd8-8c24-dd38e29c9004" -> "e776c240-7b60-496c-8e3f-55a5ed3a5a52";
+"232e52fe-9a3d-4e6d-9546-46c9f5e23702" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e776c240-7b60-496c-8e3f-55a5ed3a5a52" -> "232e52fe-9a3d-4e6d-9546-46c9f5e23702";
+"1c06496a-7850-4dd1-81ef-8d4ec5418e42" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
+"e776c240-7b60-496c-8e3f-55a5ed3a5a52" -> "1c06496a-7850-4dd1-81ef-8d4ec5418e42";
+"89795a18-6ed6-4754-bdc1-4908fc7dbf01" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"585af931-ed55-4d38-a75c-aa1c24489338" -> "89795a18-6ed6-4754-bdc1-4908fc7dbf01";
+"475ed724-d8b1-4282-ac39-d03de0c393c0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"89795a18-6ed6-4754-bdc1-4908fc7dbf01" -> "475ed724-d8b1-4282-ac39-d03de0c393c0";
+"a299c8dd-9b0f-4385-9d74-159ee44e1941" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"89795a18-6ed6-4754-bdc1-4908fc7dbf01" -> "a299c8dd-9b0f-4385-9d74-159ee44e1941";
+"8fc18784-3f1e-49f4-9aad-6020b02be8d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"89795a18-6ed6-4754-bdc1-4908fc7dbf01" -> "8fc18784-3f1e-49f4-9aad-6020b02be8d4";
+"b036a3af-39f7-4009-bf78-75ecde237758" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"89795a18-6ed6-4754-bdc1-4908fc7dbf01" -> "b036a3af-39f7-4009-bf78-75ecde237758";
+"baa1b047-3659-4ed8-b23d-a3df308a4474" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e659f106-6cfa-4b84-9d15-36f2fc80d950" -> "baa1b047-3659-4ed8-b23d-a3df308a4474";
+"aa776227-73d3-42ad-9c61-cd3bafb76a8e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"baa1b047-3659-4ed8-b23d-a3df308a4474" -> "aa776227-73d3-42ad-9c61-cd3bafb76a8e";
+"d969c149-738c-4fbc-b93a-ffccf9f23cd2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"baa1b047-3659-4ed8-b23d-a3df308a4474" -> "d969c149-738c-4fbc-b93a-ffccf9f23cd2";
+"f48c7470-ba27-405c-986f-0b51d0101e44" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"baa1b047-3659-4ed8-b23d-a3df308a4474" -> "f48c7470-ba27-405c-986f-0b51d0101e44";
+"a4451b8a-2605-4c0f-ba28-89abe5733b53" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,WaterTable)", shape=box, style=filled];
+"baa1b047-3659-4ed8-b23d-a3df308a4474" -> "a4451b8a-2605-4c0f-ba28-89abe5733b53";
+"4eb9da8e-f733-43e6-a767-2aa9961fd37d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"58a7151a-24d5-44ca-a43e-2a71197b0d5b" -> "4eb9da8e-f733-43e6-a767-2aa9961fd37d";
+"e756e00f-048a-47af-b314-3d4f1c0ea203" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"4eb9da8e-f733-43e6-a767-2aa9961fd37d" -> "e756e00f-048a-47af-b314-3d4f1c0ea203";
+"a45497a8-c919-4735-b932-250c523b7086" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"4eb9da8e-f733-43e6-a767-2aa9961fd37d" -> "a45497a8-c919-4735-b932-250c523b7086";
+"221eedef-8c3a-40d0-bfde-7dd4881dcf2b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4eb9da8e-f733-43e6-a767-2aa9961fd37d" -> "221eedef-8c3a-40d0-bfde-7dd4881dcf2b";
+"feb19577-0313-4793-a2ce-6d7a7e5e49e5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"4eb9da8e-f733-43e6-a767-2aa9961fd37d" -> "feb19577-0313-4793-a2ce-6d7a7e5e49e5";
+"bc953241-c9dc-452d-b3e3-71550b2394fc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ade49021-14f5-4075-82c7-d73d779e734d" -> "bc953241-c9dc-452d-b3e3-71550b2394fc";
+"2bc3725a-afe7-4440-ac02-d9d2b4d21b06" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"bc953241-c9dc-452d-b3e3-71550b2394fc" -> "2bc3725a-afe7-4440-ac02-d9d2b4d21b06";
+"c7e388c8-3eac-4aac-a37e-ac2e383570af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"bc953241-c9dc-452d-b3e3-71550b2394fc" -> "c7e388c8-3eac-4aac-a37e-ac2e383570af";
+"b1371f8c-e0b8-4c8d-9803-4cea839bf384" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"bc953241-c9dc-452d-b3e3-71550b2394fc" -> "b1371f8c-e0b8-4c8d-9803-4cea839bf384";
+"2b279313-d461-45a1-acac-0725886258e1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c0fc0fab-7a5c-42b7-8a1b-91056c192280" -> "2b279313-d461-45a1-acac-0725886258e1";
+"ecc679b4-d702-4385-8e24-5f3a04a84e07" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"2b279313-d461-45a1-acac-0725886258e1" -> "ecc679b4-d702-4385-8e24-5f3a04a84e07";
+"b861368e-9dc0-472f-b614-14211d39072d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"2b279313-d461-45a1-acac-0725886258e1" -> "b861368e-9dc0-472f-b614-14211d39072d";
+"c70a97c8-d14d-48e3-8984-95e9f573a76b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,CoffeeTable)", shape=box, style=filled];
+"2b279313-d461-45a1-acac-0725886258e1" -> "c70a97c8-d14d-48e3-8984-95e9f573a76b";
+"294882bd-86af-43da-8748-6624e459f264" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9048adb5-4153-40b4-bfbb-4063d8effece" -> "294882bd-86af-43da-8748-6624e459f264";
+"9e6d0c93-fb21-49eb-b0e0-caa3247f2386" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"294882bd-86af-43da-8748-6624e459f264" -> "9e6d0c93-fb21-49eb-b0e0-caa3247f2386";
+"abeffd9e-56bc-4d2e-bf27-75d28c0d1c09" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"294882bd-86af-43da-8748-6624e459f264" -> "abeffd9e-56bc-4d2e-bf27-75d28c0d1c09";
+"9fc32118-179f-4614-9572-78eb70f12863" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,BrightTable)", shape=box, style=filled];
+"294882bd-86af-43da-8748-6624e459f264" -> "9fc32118-179f-4614-9572-78eb70f12863";
+"6679a19f-f613-4ef9-8ed7-faceb609f2db" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"90a5c49b-f033-4c77-b249-8177f9a79187" -> "6679a19f-f613-4ef9-8ed7-faceb609f2db";
+"c875d596-63df-40ed-9fc8-0d88af80fa7a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"6679a19f-f613-4ef9-8ed7-faceb609f2db" -> "c875d596-63df-40ed-9fc8-0d88af80fa7a";
+"3185e9c6-884d-4c01-a4d9-8e295f9c9c65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"6679a19f-f613-4ef9-8ed7-faceb609f2db" -> "3185e9c6-884d-4c01-a4d9-8e295f9c9c65";
+"48c3848f-f8e3-4036-8665-d0f1b070e650" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"6679a19f-f613-4ef9-8ed7-faceb609f2db" -> "48c3848f-f8e3-4036-8665-d0f1b070e650";
+"7f02976d-51e7-496f-a792-4b910402af26" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"5087f925-32e6-4576-a014-66c60dcf9b9a" -> "7f02976d-51e7-496f-a792-4b910402af26";
+"82a9ffc3-ac4a-4b31-8a83-5220a4b873b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7f02976d-51e7-496f-a792-4b910402af26" -> "82a9ffc3-ac4a-4b31-8a83-5220a4b873b5";
+"7127bdc3-8fc1-49cf-bcbe-4c9df741d5b1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"7f02976d-51e7-496f-a792-4b910402af26" -> "7127bdc3-8fc1-49cf-bcbe-4c9df741d5b1";
+"c6ebbfc3-2a2e-458d-960c-0a17379b49dc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"7f02976d-51e7-496f-a792-4b910402af26" -> "c6ebbfc3-2a2e-458d-960c-0a17379b49dc";
+"28dabec8-b3c3-448b-897e-d7d0c6560b42" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"18a30aed-ba20-4b43-922e-f83be5f9bfbd" -> "28dabec8-b3c3-448b-897e-d7d0c6560b42";
+"d30d0972-9127-46eb-af8c-f8256b93530e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"28dabec8-b3c3-448b-897e-d7d0c6560b42" -> "d30d0972-9127-46eb-af8c-f8256b93530e";
+"7c7d5164-90c3-4c65-8d54-3a2cc03c981d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"28dabec8-b3c3-448b-897e-d7d0c6560b42" -> "7c7d5164-90c3-4c65-8d54-3a2cc03c981d";
+"0ed18b24-f6fd-4aae-a45c-4770206eb880" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"28dabec8-b3c3-448b-897e-d7d0c6560b42" -> "0ed18b24-f6fd-4aae-a45c-4770206eb880";
+"3f64b5a2-59df-4ec4-b8c6-c7b516580e4a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d1c710c7-ed10-4a46-8e99-828eff86718b" -> "3f64b5a2-59df-4ec4-b8c6-c7b516580e4a";
+"39fb2a74-8d7d-4e77-9dde-b943d874cbbb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"3f64b5a2-59df-4ec4-b8c6-c7b516580e4a" -> "39fb2a74-8d7d-4e77-9dde-b943d874cbbb";
+"a071a359-b49f-45f0-b923-f678feca625f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"3f64b5a2-59df-4ec4-b8c6-c7b516580e4a" -> "a071a359-b49f-45f0-b923-f678feca625f";
+"213e1f32-d906-486b-a60c-18818e68a75f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,WaterTable)", shape=box, style=filled];
+"3f64b5a2-59df-4ec4-b8c6-c7b516580e4a" -> "213e1f32-d906-486b-a60c-18818e68a75f";
+"48c0f054-e108-48a7-a209-81568da3ef9a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0f6abb0c-d7e7-436e-97d2-88bce1c06640" -> "48c0f054-e108-48a7-a209-81568da3ef9a";
+"f7314b03-4a39-46e1-a450-c120803062a2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"48c0f054-e108-48a7-a209-81568da3ef9a" -> "f7314b03-4a39-46e1-a450-c120803062a2";
+"0624cd1b-7c6b-4581-ae97-bcc97e2f6061" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"48c0f054-e108-48a7-a209-81568da3ef9a" -> "0624cd1b-7c6b-4581-ae97-bcc97e2f6061";
+"fd553284-ac8c-492b-9d15-34a9340bab9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"48c0f054-e108-48a7-a209-81568da3ef9a" -> "fd553284-ac8c-492b-9d15-34a9340bab9b";
+"e3df8b28-45ab-4c42-b362-a9729e3688dd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,BrightTable)", shape=box, style=filled];
+"48c0f054-e108-48a7-a209-81568da3ef9a" -> "e3df8b28-45ab-4c42-b362-a9729e3688dd";
+"1c943ba7-9df6-4a0d-bda3-19ed00830ef1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3c737c2d-d671-4a24-b6bb-dd333ffc9ac6" -> "1c943ba7-9df6-4a0d-bda3-19ed00830ef1";
+"93004468-66a9-4a62-a772-644ad58ba08a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"1c943ba7-9df6-4a0d-bda3-19ed00830ef1" -> "93004468-66a9-4a62-a772-644ad58ba08a";
+"ead2890d-69ab-47a4-844c-dc4cdffc2f67" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"1c943ba7-9df6-4a0d-bda3-19ed00830ef1" -> "ead2890d-69ab-47a4-844c-dc4cdffc2f67";
+"1af2fc9e-a4b7-4dc6-9a41-33e89494b9eb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"1c943ba7-9df6-4a0d-bda3-19ed00830ef1" -> "1af2fc9e-a4b7-4dc6-9a41-33e89494b9eb";
+"c76a17bc-4969-491e-a3f4-8178a43377fd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"dfb64018-04a9-46df-8fd1-193f227cae97" -> "c76a17bc-4969-491e-a3f4-8178a43377fd";
+"bf150465-54c0-4bf6-89f8-9c955648cf0f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"c76a17bc-4969-491e-a3f4-8178a43377fd" -> "bf150465-54c0-4bf6-89f8-9c955648cf0f";
+"be7a44cf-af69-4586-afd6-a49918778d2c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"c76a17bc-4969-491e-a3f4-8178a43377fd" -> "be7a44cf-af69-4586-afd6-a49918778d2c";
+"77a3fc89-aee3-4f3e-a679-b4a1d3223847" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"c76a17bc-4969-491e-a3f4-8178a43377fd" -> "77a3fc89-aee3-4f3e-a679-b4a1d3223847";
+"78c5bcb3-62c3-42b3-ba2b-d2ca943b258e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3d0ae5c1-0f42-4d5d-82a9-b99342e37ed0" -> "78c5bcb3-62c3-42b3-ba2b-d2ca943b258e";
+"1cda3f69-17e4-4e80-9d6f-ba56d9177e75" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"78c5bcb3-62c3-42b3-ba2b-d2ca943b258e" -> "1cda3f69-17e4-4e80-9d6f-ba56d9177e75";
+"2305c412-9ec6-4a73-8e88-7e66574b6b33" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"78c5bcb3-62c3-42b3-ba2b-d2ca943b258e" -> "2305c412-9ec6-4a73-8e88-7e66574b6b33";
+"d93dfd10-096e-44b3-988e-a2bc245ae79c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"78c5bcb3-62c3-42b3-ba2b-d2ca943b258e" -> "d93dfd10-096e-44b3-988e-a2bc245ae79c";
+"338562f0-39f0-4e20-9602-2aa051361e0e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"18a1e5ed-fb26-468f-8e57-94c734016075" -> "338562f0-39f0-4e20-9602-2aa051361e0e";
+"d4c8235d-675b-4739-9954-0932ad3c7391" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"338562f0-39f0-4e20-9602-2aa051361e0e" -> "d4c8235d-675b-4739-9954-0932ad3c7391";
+"ee89dc28-891b-499f-bdb8-18a2d50ff9d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"338562f0-39f0-4e20-9602-2aa051361e0e" -> "ee89dc28-891b-499f-bdb8-18a2d50ff9d4";
+"f0d1222e-6ea2-4bf5-abcc-1708ec86e011" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"338562f0-39f0-4e20-9602-2aa051361e0e" -> "f0d1222e-6ea2-4bf5-abcc-1708ec86e011";
+"a3aa157a-e2d2-4bc3-8f55-9cc20775e766" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,WaterTable)", shape=box, style=filled];
+"338562f0-39f0-4e20-9602-2aa051361e0e" -> "a3aa157a-e2d2-4bc3-8f55-9cc20775e766";
+"5289ce83-20c8-4325-8f9b-8dbba6206dd3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"fd3ca530-82e7-4c54-865a-97a3bb36c61a" -> "5289ce83-20c8-4325-8f9b-8dbba6206dd3";
+"9c895931-a6b3-4d7d-8be1-5a37ed88a53a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"5289ce83-20c8-4325-8f9b-8dbba6206dd3" -> "9c895931-a6b3-4d7d-8be1-5a37ed88a53a";
+"97d0584b-41e5-4570-af42-797891b7be6f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5289ce83-20c8-4325-8f9b-8dbba6206dd3" -> "97d0584b-41e5-4570-af42-797891b7be6f";
+"8db697cf-3b54-4463-ad3e-737c2552fcbc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"5289ce83-20c8-4325-8f9b-8dbba6206dd3" -> "8db697cf-3b54-4463-ad3e-737c2552fcbc";
+"8cbc8726-bd8b-4e59-bcad-f7a750bcdbd6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"5289ce83-20c8-4325-8f9b-8dbba6206dd3" -> "8cbc8726-bd8b-4e59-bcad-f7a750bcdbd6";
+"514c2581-7577-4869-8783-e45e9cb48631" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"90bbd217-2fd1-4b42-bd2f-f4c2716b77b4" -> "514c2581-7577-4869-8783-e45e9cb48631";
+"882d28f2-1dcd-4a4f-a22e-d55b8a7f8220" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"514c2581-7577-4869-8783-e45e9cb48631" -> "882d28f2-1dcd-4a4f-a22e-d55b8a7f8220";
+"d3e0a545-bf05-44bc-a758-47a929891289" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"514c2581-7577-4869-8783-e45e9cb48631" -> "d3e0a545-bf05-44bc-a758-47a929891289";
+"bff51aa2-1c73-4c6e-b091-0b08ec95a7fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"514c2581-7577-4869-8783-e45e9cb48631" -> "bff51aa2-1c73-4c6e-b091-0b08ec95a7fb";
+"68fb962a-25c0-4879-af34-75b631d26c6d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"514c2581-7577-4869-8783-e45e9cb48631" -> "68fb962a-25c0-4879-af34-75b631d26c6d";
+"ddd046e2-ee86-425e-8c5d-179cdf95e1df" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e1ed5374-f8e7-4f7c-9dae-f74870072721" -> "ddd046e2-ee86-425e-8c5d-179cdf95e1df";
+"e767bc9c-ce6f-42c5-ab1b-04e59876e5f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"ddd046e2-ee86-425e-8c5d-179cdf95e1df" -> "e767bc9c-ce6f-42c5-ab1b-04e59876e5f0";
+"00962160-1052-458f-9871-ede403f9c35c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"ddd046e2-ee86-425e-8c5d-179cdf95e1df" -> "00962160-1052-458f-9871-ede403f9c35c";
+"8d2fb99c-7a9d-4e62-81dc-7db5e26649f4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"ddd046e2-ee86-425e-8c5d-179cdf95e1df" -> "8d2fb99c-7a9d-4e62-81dc-7db5e26649f4";
+"6cf98fc0-91b7-4210-a6c1-6b3bd4f647a1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4f33e409-1e85-4707-a192-21c7c4488517" -> "6cf98fc0-91b7-4210-a6c1-6b3bd4f647a1";
+"e79b3589-51f0-439b-84ec-999fe883f296" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"6cf98fc0-91b7-4210-a6c1-6b3bd4f647a1" -> "e79b3589-51f0-439b-84ec-999fe883f296";
+"48b12dd8-7543-46f5-add0-bbbe2c8a0224" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"6cf98fc0-91b7-4210-a6c1-6b3bd4f647a1" -> "48b12dd8-7543-46f5-add0-bbbe2c8a0224";
+"1e90d1b7-44c3-4bf2-9ccd-31bf8a3bc4d4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"6cf98fc0-91b7-4210-a6c1-6b3bd4f647a1" -> "1e90d1b7-44c3-4bf2-9ccd-31bf8a3bc4d4";
+"83843420-1b90-4385-89b5-a9f9736efe3b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a09e8739-7fce-49fd-bdd9-16ce943bfd39" -> "83843420-1b90-4385-89b5-a9f9736efe3b";
+"3124d5cc-ef98-487f-a196-fc5aeca8dbec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"83843420-1b90-4385-89b5-a9f9736efe3b" -> "3124d5cc-ef98-487f-a196-fc5aeca8dbec";
+"f774812c-d3a9-4f3b-ae2f-115501b34066" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"83843420-1b90-4385-89b5-a9f9736efe3b" -> "f774812c-d3a9-4f3b-ae2f-115501b34066";
+"05d7003c-2568-4f82-bdb5-fe680208feff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"83843420-1b90-4385-89b5-a9f9736efe3b" -> "05d7003c-2568-4f82-bdb5-fe680208feff";
+"4a4670cf-51cb-480a-b8e5-e58381acb089" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,WaterTable)", shape=box, style=filled];
+"83843420-1b90-4385-89b5-a9f9736efe3b" -> "4a4670cf-51cb-480a-b8e5-e58381acb089";
+"238452db-ec43-48e8-8d8a-bb7ae4965e56" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c10a5066-dafb-4c22-aebf-1e70168e094d" -> "238452db-ec43-48e8-8d8a-bb7ae4965e56";
+"0f5e9be9-1437-4a80-8a2f-8cc4b5d1eb2f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"238452db-ec43-48e8-8d8a-bb7ae4965e56" -> "0f5e9be9-1437-4a80-8a2f-8cc4b5d1eb2f";
+"cdfebe6c-15a5-4e36-82f9-681eadd325ad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"238452db-ec43-48e8-8d8a-bb7ae4965e56" -> "cdfebe6c-15a5-4e36-82f9-681eadd325ad";
+"514a549e-4bc7-43ce-b428-0083c3f1804f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"238452db-ec43-48e8-8d8a-bb7ae4965e56" -> "514a549e-4bc7-43ce-b428-0083c3f1804f";
+"fec2478a-3ade-4426-83bb-d5276b7c93f9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"238452db-ec43-48e8-8d8a-bb7ae4965e56" -> "fec2478a-3ade-4426-83bb-d5276b7c93f9";
+"aa2073df-4ec5-43e4-b17a-5b8c1b87396c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"bf7754b1-55bc-46b1-854e-672a5acf3398" -> "aa2073df-4ec5-43e4-b17a-5b8c1b87396c";
+"9093df31-a3f0-47a4-917d-5eeae09ef843" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"aa2073df-4ec5-43e4-b17a-5b8c1b87396c" -> "9093df31-a3f0-47a4-917d-5eeae09ef843";
+"3129f976-24c9-42ae-b244-49c29370dc68" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"aa2073df-4ec5-43e4-b17a-5b8c1b87396c" -> "3129f976-24c9-42ae-b244-49c29370dc68";
+"b8c4a468-e8de-4ca5-bec8-4ddea0f05f2f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"aa2073df-4ec5-43e4-b17a-5b8c1b87396c" -> "b8c4a468-e8de-4ca5-bec8-4ddea0f05f2f";
+"9dfe088f-dcd8-4527-bfe8-fe8ae2888a5e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,CoffeeTable)", shape=box, style=filled];
+"aa2073df-4ec5-43e4-b17a-5b8c1b87396c" -> "9dfe088f-dcd8-4527-bfe8-fe8ae2888a5e";
+"27d0abda-83c8-4aa2-b4ed-956e4b18b66d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"81d7bdaa-1b77-4c28-b108-fbcd2d3b1539" -> "27d0abda-83c8-4aa2-b4ed-956e4b18b66d";
+"dacb5ff2-4a54-4f5c-9ad7-aa558af78f87" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"27d0abda-83c8-4aa2-b4ed-956e4b18b66d" -> "dacb5ff2-4a54-4f5c-9ad7-aa558af78f87";
+"8c5f8a76-da42-4306-9569-ed8edb7a2279" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"27d0abda-83c8-4aa2-b4ed-956e4b18b66d" -> "8c5f8a76-da42-4306-9569-ed8edb7a2279";
+"ef61694c-ced0-446f-af9e-4611a9214972" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"27d0abda-83c8-4aa2-b4ed-956e4b18b66d" -> "ef61694c-ced0-446f-af9e-4611a9214972";
+"7cf2a39f-a2a9-4f5c-85c9-1906bbb2c7e9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ff780932-ddcf-4f31-974b-24efbabfb53a" -> "7cf2a39f-a2a9-4f5c-85c9-1906bbb2c7e9";
+"dcf30978-087b-46fa-80c6-359f6ca278f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"7cf2a39f-a2a9-4f5c-85c9-1906bbb2c7e9" -> "dcf30978-087b-46fa-80c6-359f6ca278f2";
+"4ff62126-c3ec-4bf4-ad71-f81e75912179" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"7cf2a39f-a2a9-4f5c-85c9-1906bbb2c7e9" -> "4ff62126-c3ec-4bf4-ad71-f81e75912179";
+"4b4c4220-7cc9-48b7-a0de-bfaa63832abf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"7cf2a39f-a2a9-4f5c-85c9-1906bbb2c7e9" -> "4b4c4220-7cc9-48b7-a0de-bfaa63832abf";
+"3454d555-e55c-47cf-8e0f-9c3251e1f1be" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"679458a2-38ef-4966-a725-99459784ad48" -> "3454d555-e55c-47cf-8e0f-9c3251e1f1be";
+"8b6b2872-1cbf-42bd-9b0b-09411689657e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"3454d555-e55c-47cf-8e0f-9c3251e1f1be" -> "8b6b2872-1cbf-42bd-9b0b-09411689657e";
+"43683008-65f6-40b3-b3bf-ccacc277f93b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"3454d555-e55c-47cf-8e0f-9c3251e1f1be" -> "43683008-65f6-40b3-b3bf-ccacc277f93b";
+"855257b6-eea6-450f-afd0-1b8c5c117d19" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"3454d555-e55c-47cf-8e0f-9c3251e1f1be" -> "855257b6-eea6-450f-afd0-1b8c5c117d19";
+"f067b4e7-6b09-4f04-ae8a-eea1ff6597d0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e73c84e1-d76e-4052-b600-a42e317e145b" -> "f067b4e7-6b09-4f04-ae8a-eea1ff6597d0";
+"b5f4d66f-5aad-4f56-88d3-7c6c2e443cec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"f067b4e7-6b09-4f04-ae8a-eea1ff6597d0" -> "b5f4d66f-5aad-4f56-88d3-7c6c2e443cec";
+"e8cf00f3-e3ea-4be3-af55-b29bb68bd064" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"f067b4e7-6b09-4f04-ae8a-eea1ff6597d0" -> "e8cf00f3-e3ea-4be3-af55-b29bb68bd064";
+"28f19662-89e8-402c-91ed-941d5491ded9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f067b4e7-6b09-4f04-ae8a-eea1ff6597d0" -> "28f19662-89e8-402c-91ed-941d5491ded9";
+"af203b76-012b-4800-9b05-162dfff01fdf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"f067b4e7-6b09-4f04-ae8a-eea1ff6597d0" -> "af203b76-012b-4800-9b05-162dfff01fdf";
+"84e44467-a7eb-410d-9881-21a92cc90a4e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"817d0f27-30fb-45c9-af1c-6f23d9c75c7c" -> "84e44467-a7eb-410d-9881-21a92cc90a4e";
+"dcacce3e-2265-4c33-9dc2-a0157ae14cf2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"84e44467-a7eb-410d-9881-21a92cc90a4e" -> "dcacce3e-2265-4c33-9dc2-a0157ae14cf2";
+"a0c4c448-51d0-4b28-a81f-b744d6d41eb3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"84e44467-a7eb-410d-9881-21a92cc90a4e" -> "a0c4c448-51d0-4b28-a81f-b744d6d41eb3";
+"bd677783-e320-4287-a012-03d76a574232" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"84e44467-a7eb-410d-9881-21a92cc90a4e" -> "bd677783-e320-4287-a012-03d76a574232";
+"c7bcbd70-f236-4e20-88ed-db330f433028" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"84e44467-a7eb-410d-9881-21a92cc90a4e" -> "c7bcbd70-f236-4e20-88ed-db330f433028";
+"b7054641-bfd4-432f-88f3-4879e28bb4cb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ebbb4c4f-cac9-4ae0-8caa-51eb6f2d4745" -> "b7054641-bfd4-432f-88f3-4879e28bb4cb";
+"3c0e4816-5aa0-436e-8a9c-0629089207b7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"b7054641-bfd4-432f-88f3-4879e28bb4cb" -> "3c0e4816-5aa0-436e-8a9c-0629089207b7";
+"6a3801cb-5a68-42c8-981d-e45ddac71503" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b7054641-bfd4-432f-88f3-4879e28bb4cb" -> "6a3801cb-5a68-42c8-981d-e45ddac71503";
+"c5dfc66d-8d4b-4d18-b240-c7b36ff3f262" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"b7054641-bfd4-432f-88f3-4879e28bb4cb" -> "c5dfc66d-8d4b-4d18-b240-c7b36ff3f262";
+"330af15b-9a6a-4dbf-aed1-978e9f312398" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,CoffeeTable)", shape=box, style=filled];
+"b7054641-bfd4-432f-88f3-4879e28bb4cb" -> "330af15b-9a6a-4dbf-aed1-978e9f312398";
+"94c0fa7e-ddfe-4db7-a3cf-3f051c1f86dc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"304f47d3-fb6d-4fa1-90e5-72f670f92c9b" -> "94c0fa7e-ddfe-4db7-a3cf-3f051c1f86dc";
+"bdf849f2-5b6a-43d7-b11c-cbb8e20b25f9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"94c0fa7e-ddfe-4db7-a3cf-3f051c1f86dc" -> "bdf849f2-5b6a-43d7-b11c-cbb8e20b25f9";
+"b47aaf8d-bc05-4f77-83f5-a9015dd8eee7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"94c0fa7e-ddfe-4db7-a3cf-3f051c1f86dc" -> "b47aaf8d-bc05-4f77-83f5-a9015dd8eee7";
+"44300b17-7dde-482c-aa08-21bfadd8b188" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"94c0fa7e-ddfe-4db7-a3cf-3f051c1f86dc" -> "44300b17-7dde-482c-aa08-21bfadd8b188";
+"2b5e0db0-a74d-4858-9a16-710930152894" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c6fad513-4f47-48b4-9505-1b0911d9651a" -> "2b5e0db0-a74d-4858-9a16-710930152894";
+"fdcc3387-4abb-4038-a44d-dc03c17714cf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"2b5e0db0-a74d-4858-9a16-710930152894" -> "fdcc3387-4abb-4038-a44d-dc03c17714cf";
+"ab294e8b-1e90-4b91-b636-ed1654719cb7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"2b5e0db0-a74d-4858-9a16-710930152894" -> "ab294e8b-1e90-4b91-b636-ed1654719cb7";
+"9c81e585-f1a4-422a-a900-8a657d3a8bab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2b5e0db0-a74d-4858-9a16-710930152894" -> "9c81e585-f1a4-422a-a900-8a657d3a8bab";
+"edec917b-c388-4a9d-b66d-6dcad04dbce3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"2b5e0db0-a74d-4858-9a16-710930152894" -> "edec917b-c388-4a9d-b66d-6dcad04dbce3";
+"20265943-985d-41af-ac10-fd9457336358" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2a830835-5e01-4227-8032-062fcba8a54e" -> "20265943-985d-41af-ac10-fd9457336358";
+"ff2c4207-85d0-4c10-a476-bbce149c63a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"20265943-985d-41af-ac10-fd9457336358" -> "ff2c4207-85d0-4c10-a476-bbce149c63a3";
+"06dd468e-f94f-4635-aa4e-f31b9b602516" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"20265943-985d-41af-ac10-fd9457336358" -> "06dd468e-f94f-4635-aa4e-f31b9b602516";
+"d54188e9-b47a-4074-a477-e108d8c3072f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"20265943-985d-41af-ac10-fd9457336358" -> "d54188e9-b47a-4074-a477-e108d8c3072f";
+"b7b5b7cc-e176-461e-a546-2c9ab90ecd3a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,CoffeeTable)", shape=box, style=filled];
+"20265943-985d-41af-ac10-fd9457336358" -> "b7b5b7cc-e176-461e-a546-2c9ab90ecd3a";
+"81a41ef9-359f-4f50-911f-02a6765fc40d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e0905c84-ce1d-47e5-8fea-c39592969026" -> "81a41ef9-359f-4f50-911f-02a6765fc40d";
+"0267bae9-a581-4015-88db-64e3a188ead7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"81a41ef9-359f-4f50-911f-02a6765fc40d" -> "0267bae9-a581-4015-88db-64e3a188ead7";
+"55b61f3d-a1f2-45c9-bc60-32ac0d4b743c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"81a41ef9-359f-4f50-911f-02a6765fc40d" -> "55b61f3d-a1f2-45c9-bc60-32ac0d4b743c";
+"82f11715-6aba-42e2-b04b-238ae19fe8b4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"81a41ef9-359f-4f50-911f-02a6765fc40d" -> "82f11715-6aba-42e2-b04b-238ae19fe8b4";
+"03b8c40e-335a-4f94-823b-0ddcd97f0304" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2b2990d2-57c2-4c42-90c5-aa9e9bdc7e36" -> "03b8c40e-335a-4f94-823b-0ddcd97f0304";
+"f5908b95-4ad4-4c7b-b509-439cadacfb7b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"03b8c40e-335a-4f94-823b-0ddcd97f0304" -> "f5908b95-4ad4-4c7b-b509-439cadacfb7b";
+"f9bd11d3-e5d0-4c8e-9054-833bc7b4fc30" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"03b8c40e-335a-4f94-823b-0ddcd97f0304" -> "f9bd11d3-e5d0-4c8e-9054-833bc7b4fc30";
+"6e5bd5f4-d388-48ce-90df-240b3011bc17" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"03b8c40e-335a-4f94-823b-0ddcd97f0304" -> "6e5bd5f4-d388-48ce-90df-240b3011bc17";
+"e5224d43-2747-424f-ac9c-2e665bb91a6e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7958b4cf-e32a-4635-ba87-ffe12d1322e4" -> "e5224d43-2747-424f-ac9c-2e665bb91a6e";
+"3f1c0bb6-88b2-44e7-bf2e-894d14b54929" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"e5224d43-2747-424f-ac9c-2e665bb91a6e" -> "3f1c0bb6-88b2-44e7-bf2e-894d14b54929";
+"3fe1afeb-bbac-4054-9cef-5332e29abce0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e5224d43-2747-424f-ac9c-2e665bb91a6e" -> "3fe1afeb-bbac-4054-9cef-5332e29abce0";
+"18499505-b547-496b-9779-c6d1d64c5987" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"e5224d43-2747-424f-ac9c-2e665bb91a6e" -> "18499505-b547-496b-9779-c6d1d64c5987";
+"6d73eb3d-7f31-4a32-bc46-b1c60d654844" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e3b0c201-c610-4811-8316-39002e4c3aa8" -> "6d73eb3d-7f31-4a32-bc46-b1c60d654844";
+"27face7c-b974-441b-9c0e-b9b823c1f652" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"6d73eb3d-7f31-4a32-bc46-b1c60d654844" -> "27face7c-b974-441b-9c0e-b9b823c1f652";
+"748418c0-94eb-4543-bd09-6f84f4d842b1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6d73eb3d-7f31-4a32-bc46-b1c60d654844" -> "748418c0-94eb-4543-bd09-6f84f4d842b1";
+"f9b727a1-3525-482e-b859-e550c60c0a08" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"6d73eb3d-7f31-4a32-bc46-b1c60d654844" -> "f9b727a1-3525-482e-b859-e550c60c0a08";
+"aeb44f29-7132-4b30-ad04-e6a6a2fef133" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d79592fe-7441-451c-a073-806827f87f3c" -> "aeb44f29-7132-4b30-ad04-e6a6a2fef133";
+"e0a73add-4130-4c11-8a45-41a4958b5645" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"aeb44f29-7132-4b30-ad04-e6a6a2fef133" -> "e0a73add-4130-4c11-8a45-41a4958b5645";
+"9f587f54-c802-4a42-804f-61fd37fd42dc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"aeb44f29-7132-4b30-ad04-e6a6a2fef133" -> "9f587f54-c802-4a42-804f-61fd37fd42dc";
+"4a10b7ac-a7c4-4dfb-adc6-1225f3fa795d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"aeb44f29-7132-4b30-ad04-e6a6a2fef133" -> "4a10b7ac-a7c4-4dfb-adc6-1225f3fa795d";
+"f1b427f7-a8bb-4d74-86f9-4edb13511491" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,BrightTable)", shape=box, style=filled];
+"aeb44f29-7132-4b30-ad04-e6a6a2fef133" -> "f1b427f7-a8bb-4d74-86f9-4edb13511491";
+"f4d63f70-3935-43b8-9dbe-d180c6628854" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4877d42e-8507-4564-be23-3f98f0b6a722" -> "f4d63f70-3935-43b8-9dbe-d180c6628854";
+"1c9685dd-a7ab-4a84-814a-d21f19f5e83b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"f4d63f70-3935-43b8-9dbe-d180c6628854" -> "1c9685dd-a7ab-4a84-814a-d21f19f5e83b";
+"fa810821-d3d1-4978-8247-657c1f3828bf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f4d63f70-3935-43b8-9dbe-d180c6628854" -> "fa810821-d3d1-4978-8247-657c1f3828bf";
+"b5e5f6e6-5872-4dd1-8168-f4f714a970e1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"f4d63f70-3935-43b8-9dbe-d180c6628854" -> "b5e5f6e6-5872-4dd1-8168-f4f714a970e1";
+"f136b4a2-3c67-4867-b4c2-885ed7bbe5a1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"f4d63f70-3935-43b8-9dbe-d180c6628854" -> "f136b4a2-3c67-4867-b4c2-885ed7bbe5a1";
+"49fc51cd-7beb-4b99-8da0-906fc8031e95" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a11bbc34-442a-4d74-b38e-7cd903fc92f5" -> "49fc51cd-7beb-4b99-8da0-906fc8031e95";
+"ace08332-567d-4da3-adf4-8216e915cde2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"49fc51cd-7beb-4b99-8da0-906fc8031e95" -> "ace08332-567d-4da3-adf4-8216e915cde2";
+"f2aa4ab3-7c7a-44c6-a3f3-e104c6855a28" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"49fc51cd-7beb-4b99-8da0-906fc8031e95" -> "f2aa4ab3-7c7a-44c6-a3f3-e104c6855a28";
+"0b76cffd-3117-4ee6-8b03-59afc8e15e74" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"49fc51cd-7beb-4b99-8da0-906fc8031e95" -> "0b76cffd-3117-4ee6-8b03-59afc8e15e74";
+"e7fea3d7-456e-47bd-849a-b2e009e09351" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"364c0ad2-34aa-4f0d-914a-7386b8cfa08b" -> "e7fea3d7-456e-47bd-849a-b2e009e09351";
+"054b9ef7-9d5e-4322-a6b5-3e9323983855" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"e7fea3d7-456e-47bd-849a-b2e009e09351" -> "054b9ef7-9d5e-4322-a6b5-3e9323983855";
+"e45659b8-d6c0-4806-ac3f-6bdf07ea22dc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"e7fea3d7-456e-47bd-849a-b2e009e09351" -> "e45659b8-d6c0-4806-ac3f-6bdf07ea22dc";
+"c9f83e21-306b-49dc-b580-4cc71228c898" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"e7fea3d7-456e-47bd-849a-b2e009e09351" -> "c9f83e21-306b-49dc-b580-4cc71228c898";
+"47263260-869c-4119-97c5-2f87d5e73b8a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"06a54555-8279-4d67-b154-4057720bf0d8" -> "47263260-869c-4119-97c5-2f87d5e73b8a";
+"9023ba80-5c46-4a24-b35c-9372bf3059ea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"47263260-869c-4119-97c5-2f87d5e73b8a" -> "9023ba80-5c46-4a24-b35c-9372bf3059ea";
+"dbe1ef19-6415-4e5e-88de-6f0b3cd59223" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"47263260-869c-4119-97c5-2f87d5e73b8a" -> "dbe1ef19-6415-4e5e-88de-6f0b3cd59223";
+"6bdab791-c823-41b1-aa03-c6f73b4f8a5d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,CoffeeTable)", shape=box, style=filled];
+"47263260-869c-4119-97c5-2f87d5e73b8a" -> "6bdab791-c823-41b1-aa03-c6f73b4f8a5d";
+"d9098826-c653-4b0b-a1ad-45bbee67c301" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6769b406-2da4-4587-bba1-7cb0e615e545" -> "d9098826-c653-4b0b-a1ad-45bbee67c301";
+"115714fa-f378-4a06-ad36-983f7b3c15f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"d9098826-c653-4b0b-a1ad-45bbee67c301" -> "115714fa-f378-4a06-ad36-983f7b3c15f3";
+"1e3b5d53-c0c9-4943-93c7-736d96372ce8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"d9098826-c653-4b0b-a1ad-45bbee67c301" -> "1e3b5d53-c0c9-4943-93c7-736d96372ce8";
+"d45e80ec-a6c6-4664-863e-9f08856515d7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"d9098826-c653-4b0b-a1ad-45bbee67c301" -> "d45e80ec-a6c6-4664-863e-9f08856515d7";
+"57245369-a2ff-4da1-890c-554895376e0b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"fecc4010-1c0b-4b80-8011-1b7ce43d05aa" -> "57245369-a2ff-4da1-890c-554895376e0b";
+"3d53dfb8-974e-49e3-8d0b-88b03820a4ee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"57245369-a2ff-4da1-890c-554895376e0b" -> "3d53dfb8-974e-49e3-8d0b-88b03820a4ee";
+"01551be9-8f2f-423c-ad5e-88fb82652ead" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"57245369-a2ff-4da1-890c-554895376e0b" -> "01551be9-8f2f-423c-ad5e-88fb82652ead";
+"66026056-a873-41ae-a241-0669522bd9e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"57245369-a2ff-4da1-890c-554895376e0b" -> "66026056-a873-41ae-a241-0669522bd9e6";
+"b32ec4f3-3937-4edd-b090-9b5dacff669a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,CoffeeTable)", shape=box, style=filled];
+"57245369-a2ff-4da1-890c-554895376e0b" -> "b32ec4f3-3937-4edd-b090-9b5dacff669a";
+"bdbf76b3-460c-42e7-aea3-30e66b13a195" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c62cc17b-c13d-4456-9a5d-50afe1a37018" -> "bdbf76b3-460c-42e7-aea3-30e66b13a195";
+"377fb595-6ae7-486e-b5c2-50b2162b23ac" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"bdbf76b3-460c-42e7-aea3-30e66b13a195" -> "377fb595-6ae7-486e-b5c2-50b2162b23ac";
+"a755f76a-7ac4-4c53-b611-b5ca4e50d670" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"bdbf76b3-460c-42e7-aea3-30e66b13a195" -> "a755f76a-7ac4-4c53-b611-b5ca4e50d670";
+"9b3402c5-1856-446e-9c9e-51dd849d85d4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,CoffeeTable)", shape=box, style=filled];
+"bdbf76b3-460c-42e7-aea3-30e66b13a195" -> "9b3402c5-1856-446e-9c9e-51dd849d85d4";
+"287527b8-8948-495e-b8f5-a98bf54c140d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3f370038-82b5-454d-b405-0583cec1b8b6" -> "287527b8-8948-495e-b8f5-a98bf54c140d";
+"f76ebcd1-b7a3-47e9-aca6-6c42a39d2d11" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"287527b8-8948-495e-b8f5-a98bf54c140d" -> "f76ebcd1-b7a3-47e9-aca6-6c42a39d2d11";
+"9640a0ec-e326-4dc2-89f6-75f08e45fcf5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"287527b8-8948-495e-b8f5-a98bf54c140d" -> "9640a0ec-e326-4dc2-89f6-75f08e45fcf5";
+"7c878525-43e6-487f-8eb4-5df1cefa0054" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"287527b8-8948-495e-b8f5-a98bf54c140d" -> "7c878525-43e6-487f-8eb4-5df1cefa0054";
+"ea37aa66-06aa-480d-a722-2770a5d41b00" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,WaterTable)", shape=box, style=filled];
+"287527b8-8948-495e-b8f5-a98bf54c140d" -> "ea37aa66-06aa-480d-a722-2770a5d41b00";
+"8badaabb-93be-4176-a126-ee040c644ee5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b8bdfba9-0a72-4c32-8c59-3a740e862852" -> "8badaabb-93be-4176-a126-ee040c644ee5";
+"a60d4ced-95c8-4e32-a3bf-bbbf729ad706" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"8badaabb-93be-4176-a126-ee040c644ee5" -> "a60d4ced-95c8-4e32-a3bf-bbbf729ad706";
+"86d08cd9-5d1b-4da9-bfaa-30b318c6756c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8badaabb-93be-4176-a126-ee040c644ee5" -> "86d08cd9-5d1b-4da9-bfaa-30b318c6756c";
+"eb0a824a-15dc-49f7-9f75-660f5d97e150" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"8badaabb-93be-4176-a126-ee040c644ee5" -> "eb0a824a-15dc-49f7-9f75-660f5d97e150";
+"d2209567-48ae-4092-bce8-cd4c2d93a8e8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"8badaabb-93be-4176-a126-ee040c644ee5" -> "d2209567-48ae-4092-bce8-cd4c2d93a8e8";
+"538aa6e0-4648-4ac6-86d7-cb102a0daf7b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"018a7ef8-7e49-43ed-a824-403a85d57153" -> "538aa6e0-4648-4ac6-86d7-cb102a0daf7b";
+"cf477e05-d3f6-48ea-a4bd-465360ff905c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"538aa6e0-4648-4ac6-86d7-cb102a0daf7b" -> "cf477e05-d3f6-48ea-a4bd-465360ff905c";
+"607c1b4e-64cf-47e8-8165-2870fee24828" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"538aa6e0-4648-4ac6-86d7-cb102a0daf7b" -> "607c1b4e-64cf-47e8-8165-2870fee24828";
+"ff92fef8-6345-457f-a85c-4f1ee6c2fcb7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"538aa6e0-4648-4ac6-86d7-cb102a0daf7b" -> "ff92fef8-6345-457f-a85c-4f1ee6c2fcb7";
+"7e10129f-f51f-42bd-b71f-a540cff5aff7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,CoffeeTable)", shape=box, style=filled];
+"538aa6e0-4648-4ac6-86d7-cb102a0daf7b" -> "7e10129f-f51f-42bd-b71f-a540cff5aff7";
+"80a55d5e-0655-451f-ae0f-33f82a8c47c4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6e9f0dfd-9fb6-4457-ace9-e535a8f6445d" -> "80a55d5e-0655-451f-ae0f-33f82a8c47c4";
+"3262aa29-47a2-48d7-af55-752595f71db2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"80a55d5e-0655-451f-ae0f-33f82a8c47c4" -> "3262aa29-47a2-48d7-af55-752595f71db2";
+"79a97d9c-5710-4dc7-a2ab-3137dedecb8b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"80a55d5e-0655-451f-ae0f-33f82a8c47c4" -> "79a97d9c-5710-4dc7-a2ab-3137dedecb8b";
+"28ac3942-8629-43e4-b2d2-71927ea85293" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"80a55d5e-0655-451f-ae0f-33f82a8c47c4" -> "28ac3942-8629-43e4-b2d2-71927ea85293";
+"824595e4-0976-4e91-92dd-485bb084b227" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"80a55d5e-0655-451f-ae0f-33f82a8c47c4" -> "824595e4-0976-4e91-92dd-485bb084b227";
+"ebc43b27-c2b0-4f00-9df1-9c585e62f31b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"42779d54-c1e7-4437-b8ee-8fdbd9fab767" -> "ebc43b27-c2b0-4f00-9df1-9c585e62f31b";
+"8501bdba-5e11-4f62-a73e-ceca589d9ec8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ebc43b27-c2b0-4f00-9df1-9c585e62f31b" -> "8501bdba-5e11-4f62-a73e-ceca589d9ec8";
+"1ed16c26-8320-4cb3-82ba-99b0132f936e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"ebc43b27-c2b0-4f00-9df1-9c585e62f31b" -> "1ed16c26-8320-4cb3-82ba-99b0132f936e";
+"3d21ac06-f36a-4397-b6ad-f4115c97704b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"ebc43b27-c2b0-4f00-9df1-9c585e62f31b" -> "3d21ac06-f36a-4397-b6ad-f4115c97704b";
+"ecb78259-c0ff-4d26-906f-b305f777afa2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"ebc43b27-c2b0-4f00-9df1-9c585e62f31b" -> "ecb78259-c0ff-4d26-906f-b305f777afa2";
+"6e62144f-1ff6-4aaa-a7e5-0a880d5a2bff" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e2097b24-0043-4672-9a17-2588fe6a5702" -> "6e62144f-1ff6-4aaa-a7e5-0a880d5a2bff";
+"f89c3ad9-001d-46f0-8b36-688e84c188a7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"6e62144f-1ff6-4aaa-a7e5-0a880d5a2bff" -> "f89c3ad9-001d-46f0-8b36-688e84c188a7";
+"4602fd85-7c06-447f-9ad3-40e807ca9932" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"6e62144f-1ff6-4aaa-a7e5-0a880d5a2bff" -> "4602fd85-7c06-447f-9ad3-40e807ca9932";
+"43c56c83-4fc1-42ca-a163-8772840e3237" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"6e62144f-1ff6-4aaa-a7e5-0a880d5a2bff" -> "43c56c83-4fc1-42ca-a163-8772840e3237";
+"d380e7dc-1796-4396-82b6-3c186b7b210b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"c9206c5f-988d-4e1a-b338-d12c9684f503" -> "d380e7dc-1796-4396-82b6-3c186b7b210b";
+"7e3335d0-7899-4a29-b980-81010e0962d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d380e7dc-1796-4396-82b6-3c186b7b210b" -> "7e3335d0-7899-4a29-b980-81010e0962d4";
+"5459e8c0-3515-4e0a-8c9e-327f743eaded" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"d380e7dc-1796-4396-82b6-3c186b7b210b" -> "5459e8c0-3515-4e0a-8c9e-327f743eaded";
+"7c13618b-c3e6-4861-9be9-bb01c1c6617e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"d380e7dc-1796-4396-82b6-3c186b7b210b" -> "7c13618b-c3e6-4861-9be9-bb01c1c6617e";
+"0d234682-defb-4ccc-8b07-40a021eddfeb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,WaterTable)", shape=box, style=filled];
+"d380e7dc-1796-4396-82b6-3c186b7b210b" -> "0d234682-defb-4ccc-8b07-40a021eddfeb";
+"f099a5e4-eb7e-4cfc-8a6f-5abb69d64ff9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"536cd52c-b59d-477d-ab85-fc2ac82f22cf" -> "f099a5e4-eb7e-4cfc-8a6f-5abb69d64ff9";
+"63294e49-3b86-4ae6-9e6f-431bd912099c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"f099a5e4-eb7e-4cfc-8a6f-5abb69d64ff9" -> "63294e49-3b86-4ae6-9e6f-431bd912099c";
+"1d933602-c87b-4408-98c8-4b2ccbf09652" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"f099a5e4-eb7e-4cfc-8a6f-5abb69d64ff9" -> "1d933602-c87b-4408-98c8-4b2ccbf09652";
+"047c2c08-a7b0-4fc8-a578-839a0ffcba95" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"f099a5e4-eb7e-4cfc-8a6f-5abb69d64ff9" -> "047c2c08-a7b0-4fc8-a578-839a0ffcba95";
+"177d1f3b-65bc-4b34-9503-9470b49aede7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2cd34070-8965-4976-8a9e-2c33c6c58451" -> "177d1f3b-65bc-4b34-9503-9470b49aede7";
+"95b6c99d-7b8d-4a53-b8d5-69c4dce933de" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"177d1f3b-65bc-4b34-9503-9470b49aede7" -> "95b6c99d-7b8d-4a53-b8d5-69c4dce933de";
+"c230ed39-df7d-47dc-b5f5-a30e54a60053" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"177d1f3b-65bc-4b34-9503-9470b49aede7" -> "c230ed39-df7d-47dc-b5f5-a30e54a60053";
+"2958eb51-9948-4750-9f94-18df6c505a70" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"177d1f3b-65bc-4b34-9503-9470b49aede7" -> "2958eb51-9948-4750-9f94-18df6c505a70";
+"9f499f30-73bb-480e-a39f-b587d90426f5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2f82702d-34c4-46cd-b7f9-4b2e2ca0635e" -> "9f499f30-73bb-480e-a39f-b587d90426f5";
+"6be54bb0-915e-4eb6-8a25-c349e6b6931c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"9f499f30-73bb-480e-a39f-b587d90426f5" -> "6be54bb0-915e-4eb6-8a25-c349e6b6931c";
+"a97dea86-290b-4b81-bae0-0734085e47c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"9f499f30-73bb-480e-a39f-b587d90426f5" -> "a97dea86-290b-4b81-bae0-0734085e47c3";
+"f557d0f3-df7e-4b26-8143-f90fd5606c59" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"9f499f30-73bb-480e-a39f-b587d90426f5" -> "f557d0f3-df7e-4b26-8143-f90fd5606c59";
+"56db291e-98df-4d96-82ff-0ce1151d9e3f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"94af08c0-5d38-4f1d-990f-2e4602df2554" -> "56db291e-98df-4d96-82ff-0ce1151d9e3f";
+"9b366298-aa3d-4b67-886f-d3b6921b5f93" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"56db291e-98df-4d96-82ff-0ce1151d9e3f" -> "9b366298-aa3d-4b67-886f-d3b6921b5f93";
+"015369b8-b257-4452-9059-237b57a2d15d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"56db291e-98df-4d96-82ff-0ce1151d9e3f" -> "015369b8-b257-4452-9059-237b57a2d15d";
+"c52b0601-dda3-479b-8694-0ec10abc776d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"56db291e-98df-4d96-82ff-0ce1151d9e3f" -> "c52b0601-dda3-479b-8694-0ec10abc776d";
+"44f3ea46-8af6-483b-9120-8ac48e0235fc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,WaterTable)", shape=box, style=filled];
+"56db291e-98df-4d96-82ff-0ce1151d9e3f" -> "44f3ea46-8af6-483b-9120-8ac48e0235fc";
+"0395eea3-0e86-482d-bb5b-2e7c14153c48" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"87233bdc-4529-4173-ab2c-4fc9c9a72c0a" -> "0395eea3-0e86-482d-bb5b-2e7c14153c48";
+"c1eb1bc7-cf06-4b3a-93dd-bfb636beb887" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"0395eea3-0e86-482d-bb5b-2e7c14153c48" -> "c1eb1bc7-cf06-4b3a-93dd-bfb636beb887";
+"afa4a407-c318-474e-b873-9a0cb468041d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"0395eea3-0e86-482d-bb5b-2e7c14153c48" -> "afa4a407-c318-474e-b873-9a0cb468041d";
+"10a2e40f-810b-4c9e-b737-4242459e7330" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"0395eea3-0e86-482d-bb5b-2e7c14153c48" -> "10a2e40f-810b-4c9e-b737-4242459e7330";
+"16d0bb61-c6dd-4aff-b253-23eadb38f42d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"43623d97-bc75-4f0a-b2db-d164bad8e2be" -> "16d0bb61-c6dd-4aff-b253-23eadb38f42d";
+"a66afc4c-1c4d-43a1-9365-18a072604ecc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"16d0bb61-c6dd-4aff-b253-23eadb38f42d" -> "a66afc4c-1c4d-43a1-9365-18a072604ecc";
+"448c08bc-a093-4b82-b818-2454d660c4ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"16d0bb61-c6dd-4aff-b253-23eadb38f42d" -> "448c08bc-a093-4b82-b818-2454d660c4ef";
+"e15cd32b-0302-49db-bb70-92a5e04d762e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,CoffeeTable)", shape=box, style=filled];
+"16d0bb61-c6dd-4aff-b253-23eadb38f42d" -> "e15cd32b-0302-49db-bb70-92a5e04d762e";
+"733bf35b-5e4a-47e7-8ed0-f3725793ff40" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4224d467-afe3-425d-8a83-07ac80640952" -> "733bf35b-5e4a-47e7-8ed0-f3725793ff40";
+"c869b2e5-0248-4fc2-baf6-76a216e7facb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"733bf35b-5e4a-47e7-8ed0-f3725793ff40" -> "c869b2e5-0248-4fc2-baf6-76a216e7facb";
+"1fe9a706-4d65-4be2-aee1-ae50d9b69021" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"733bf35b-5e4a-47e7-8ed0-f3725793ff40" -> "1fe9a706-4d65-4be2-aee1-ae50d9b69021";
+"c1ab770f-f8d0-4f0f-bb2d-9fb8f1132926" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"733bf35b-5e4a-47e7-8ed0-f3725793ff40" -> "c1ab770f-f8d0-4f0f-bb2d-9fb8f1132926";
+"39846621-25aa-4670-8867-127115cc2b63" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"733bf35b-5e4a-47e7-8ed0-f3725793ff40" -> "39846621-25aa-4670-8867-127115cc2b63";
+"68460c52-faf1-4213-b3b9-87ad0b40c757" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d4e6522e-6461-4e45-9d8f-d599937d1687" -> "68460c52-faf1-4213-b3b9-87ad0b40c757";
+"5c80761b-44c3-44ae-8a43-b6dc9af5d05b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"68460c52-faf1-4213-b3b9-87ad0b40c757" -> "5c80761b-44c3-44ae-8a43-b6dc9af5d05b";
+"ddf0ae84-86f2-41c4-98a8-1f2a7e761353" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"68460c52-faf1-4213-b3b9-87ad0b40c757" -> "ddf0ae84-86f2-41c4-98a8-1f2a7e761353";
+"3f97f67c-7668-4ccb-9df9-29c8062bed8d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"68460c52-faf1-4213-b3b9-87ad0b40c757" -> "3f97f67c-7668-4ccb-9df9-29c8062bed8d";
+"4a2983d3-f81a-4411-985b-6cc021e16708" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"daa4024d-cc1b-4a5e-89c2-8f28691d4c60" -> "4a2983d3-f81a-4411-985b-6cc021e16708";
+"0f32ff49-f822-40ea-9212-d74c02e0f257" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"4a2983d3-f81a-4411-985b-6cc021e16708" -> "0f32ff49-f822-40ea-9212-d74c02e0f257";
+"f41917d2-a61c-4c9f-9d4c-71dc87d0f9d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"4a2983d3-f81a-4411-985b-6cc021e16708" -> "f41917d2-a61c-4c9f-9d4c-71dc87d0f9d4";
+"d7b06e04-36aa-41a5-b9ed-c614c54b6616" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"4a2983d3-f81a-4411-985b-6cc021e16708" -> "d7b06e04-36aa-41a5-b9ed-c614c54b6616";
+"620050d1-cbcb-4043-910b-83d81ba1b464" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"49cbd1fa-5a43-4ac5-bd7d-2dda8ef9b3e5" -> "620050d1-cbcb-4043-910b-83d81ba1b464";
+"b53761c8-e407-4a85-bb8c-5a1b8750a82d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"620050d1-cbcb-4043-910b-83d81ba1b464" -> "b53761c8-e407-4a85-bb8c-5a1b8750a82d";
+"b0ae358c-70ee-4ee5-a9f8-95d86aeac323" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"620050d1-cbcb-4043-910b-83d81ba1b464" -> "b0ae358c-70ee-4ee5-a9f8-95d86aeac323";
+"642ec862-ca0e-4eed-86a9-5aa9a0d3892f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"620050d1-cbcb-4043-910b-83d81ba1b464" -> "642ec862-ca0e-4eed-86a9-5aa9a0d3892f";
+"50c6a4eb-abfc-4f98-af3c-662132ed5c13" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"620050d1-cbcb-4043-910b-83d81ba1b464" -> "50c6a4eb-abfc-4f98-af3c-662132ed5c13";
+"37ac1e7b-9639-4a51-a2b0-ff0cf575b569" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"84d3b0e7-e084-4f4c-ae40-aa66d05112be" -> "37ac1e7b-9639-4a51-a2b0-ff0cf575b569";
+"0a30e9fb-c1cd-4f01-9b3f-e76ef155be41" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"37ac1e7b-9639-4a51-a2b0-ff0cf575b569" -> "0a30e9fb-c1cd-4f01-9b3f-e76ef155be41";
+"f1196bde-83f5-4d7c-b386-29eb9a28d9d7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"37ac1e7b-9639-4a51-a2b0-ff0cf575b569" -> "f1196bde-83f5-4d7c-b386-29eb9a28d9d7";
+"c57b08f0-95ef-4c62-8550-1dd0b919071e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"37ac1e7b-9639-4a51-a2b0-ff0cf575b569" -> "c57b08f0-95ef-4c62-8550-1dd0b919071e";
+"6ab69435-8538-48cc-93fa-b19e51b432f6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,CoffeeTable)", shape=box, style=filled];
+"37ac1e7b-9639-4a51-a2b0-ff0cf575b569" -> "6ab69435-8538-48cc-93fa-b19e51b432f6";
+"5f1cb1d9-8a61-4566-9e73-aa8c26a05d42" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2585035d-6cb3-40b9-8bec-f03ac5fd4b0c" -> "5f1cb1d9-8a61-4566-9e73-aa8c26a05d42";
+"76141062-e706-4b6c-9978-a9b11ba76cf8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"5f1cb1d9-8a61-4566-9e73-aa8c26a05d42" -> "76141062-e706-4b6c-9978-a9b11ba76cf8";
+"6724b3dc-9fd3-428c-a410-9597423bbce0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"5f1cb1d9-8a61-4566-9e73-aa8c26a05d42" -> "6724b3dc-9fd3-428c-a410-9597423bbce0";
+"8b2eecf9-acd6-42be-ab03-42da49e8dcfb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5f1cb1d9-8a61-4566-9e73-aa8c26a05d42" -> "8b2eecf9-acd6-42be-ab03-42da49e8dcfb";
+"aad92a45-85e3-43d5-8a5f-d3778d4e5f9f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,CoffeeTable)", shape=box, style=filled];
+"5f1cb1d9-8a61-4566-9e73-aa8c26a05d42" -> "aad92a45-85e3-43d5-8a5f-d3778d4e5f9f";
+"7aa691bb-0c63-4266-93f9-3a43e1cf5d29" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"275fb877-a99f-4336-84b4-b096d2750711" -> "7aa691bb-0c63-4266-93f9-3a43e1cf5d29";
+"1afe7d45-e30a-48c9-9bf0-6166136527e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"7aa691bb-0c63-4266-93f9-3a43e1cf5d29" -> "1afe7d45-e30a-48c9-9bf0-6166136527e6";
+"a9f5df05-8b62-456b-b7d0-aa20ab9df15f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7aa691bb-0c63-4266-93f9-3a43e1cf5d29" -> "a9f5df05-8b62-456b-b7d0-aa20ab9df15f";
+"2f81158d-4fcb-48de-8134-c167c0d213ca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"7aa691bb-0c63-4266-93f9-3a43e1cf5d29" -> "2f81158d-4fcb-48de-8134-c167c0d213ca";
+"2c8ca16a-1fb5-495b-baa0-915913a647c7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"7aa691bb-0c63-4266-93f9-3a43e1cf5d29" -> "2c8ca16a-1fb5-495b-baa0-915913a647c7";
+"2c4072d2-b593-436c-bba9-ca83ddfb28d8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"7ae8d630-722b-47c7-8b03-13e8322231ed" -> "2c4072d2-b593-436c-bba9-ca83ddfb28d8";
+"689f9452-13d5-431e-935c-1cddae840866" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"2c4072d2-b593-436c-bba9-ca83ddfb28d8" -> "689f9452-13d5-431e-935c-1cddae840866";
+"69d9021e-450e-485a-80d2-e63f7eb71d64" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"2c4072d2-b593-436c-bba9-ca83ddfb28d8" -> "69d9021e-450e-485a-80d2-e63f7eb71d64";
+"3c964f32-2f16-4675-95d5-ca2f82ee8180" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"2c4072d2-b593-436c-bba9-ca83ddfb28d8" -> "3c964f32-2f16-4675-95d5-ca2f82ee8180";
+"8bf4b8f8-8d67-4ab3-b7f8-fadd7a08da35" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9854a7d1-13d2-4a18-9957-7e7a098e4d64" -> "8bf4b8f8-8d67-4ab3-b7f8-fadd7a08da35";
+"1f2d2bb4-0159-49f6-b94c-32375c34016f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"8bf4b8f8-8d67-4ab3-b7f8-fadd7a08da35" -> "1f2d2bb4-0159-49f6-b94c-32375c34016f";
+"6b8527ce-df2c-45f9-ac0d-22f58e0f3a2e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"8bf4b8f8-8d67-4ab3-b7f8-fadd7a08da35" -> "6b8527ce-df2c-45f9-ac0d-22f58e0f3a2e";
+"66c8cc13-a56b-4d31-9e05-d2bc680fe3a4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"8bf4b8f8-8d67-4ab3-b7f8-fadd7a08da35" -> "66c8cc13-a56b-4d31-9e05-d2bc680fe3a4";
+"738dc8e3-48c4-4822-8271-854f4beb546b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a630c6f1-fb18-47f6-8939-d0c35e9591fb" -> "738dc8e3-48c4-4822-8271-854f4beb546b";
+"54bbb936-6e7e-45da-bc73-a0126147371c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"738dc8e3-48c4-4822-8271-854f4beb546b" -> "54bbb936-6e7e-45da-bc73-a0126147371c";
+"b3359d76-135d-49a1-a4fc-23758e9c20ed" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"738dc8e3-48c4-4822-8271-854f4beb546b" -> "b3359d76-135d-49a1-a4fc-23758e9c20ed";
+"a9e7fd6e-89a5-4a17-a6db-6260025a5f0c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"738dc8e3-48c4-4822-8271-854f4beb546b" -> "a9e7fd6e-89a5-4a17-a6db-6260025a5f0c";
+"0183c1db-974c-4bb1-93ec-5eb2f9857390" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e35245fd-9dec-4330-ac85-b7cab237cb10" -> "0183c1db-974c-4bb1-93ec-5eb2f9857390";
+"cc36e32b-a9e0-454d-9640-8060f831a762" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"0183c1db-974c-4bb1-93ec-5eb2f9857390" -> "cc36e32b-a9e0-454d-9640-8060f831a762";
+"30c89365-7725-46ab-a962-b5bec5900b29" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"0183c1db-974c-4bb1-93ec-5eb2f9857390" -> "30c89365-7725-46ab-a962-b5bec5900b29";
+"0541a12a-5038-4e9e-b172-b301ed795e09" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"0183c1db-974c-4bb1-93ec-5eb2f9857390" -> "0541a12a-5038-4e9e-b172-b301ed795e09";
+"764584e3-f242-4c4c-b5d9-e0c8020523a1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,BrightTable)", shape=box, style=filled];
+"0183c1db-974c-4bb1-93ec-5eb2f9857390" -> "764584e3-f242-4c4c-b5d9-e0c8020523a1";
+"1201d711-dcf0-4ab2-a385-788d3e998632" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"eab88873-b314-4aaf-92ba-a14c6b261333" -> "1201d711-dcf0-4ab2-a385-788d3e998632";
+"52d77e55-5352-4720-a1c7-e39cd2164a6d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"1201d711-dcf0-4ab2-a385-788d3e998632" -> "52d77e55-5352-4720-a1c7-e39cd2164a6d";
+"99e90a62-1a09-409a-8f10-7f4351aae38d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"1201d711-dcf0-4ab2-a385-788d3e998632" -> "99e90a62-1a09-409a-8f10-7f4351aae38d";
+"6ef79c7d-74bc-4bcb-97f7-4d17ce96cb19" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"1201d711-dcf0-4ab2-a385-788d3e998632" -> "6ef79c7d-74bc-4bcb-97f7-4d17ce96cb19";
+"c4110df5-4b52-45de-aefd-32441be0f38a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4da23d52-854e-4ac6-9603-40e1b925c74a" -> "c4110df5-4b52-45de-aefd-32441be0f38a";
+"a40ac1cd-bf4a-4697-a57b-de9aac2497b9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"c4110df5-4b52-45de-aefd-32441be0f38a" -> "a40ac1cd-bf4a-4697-a57b-de9aac2497b9";
+"7adc49aa-d97b-4547-9515-0c386801d3e9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c4110df5-4b52-45de-aefd-32441be0f38a" -> "7adc49aa-d97b-4547-9515-0c386801d3e9";
+"ee45b069-e40e-4993-b892-00355984b939" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"c4110df5-4b52-45de-aefd-32441be0f38a" -> "ee45b069-e40e-4993-b892-00355984b939";
+"e471c31a-f83f-43af-824c-47a154b24485" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"c4110df5-4b52-45de-aefd-32441be0f38a" -> "e471c31a-f83f-43af-824c-47a154b24485";
+"51362d97-d3fc-412a-b305-acdb608d2779" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b3b1e9a1-1da6-43cb-99d7-884e7c6a5fb0" -> "51362d97-d3fc-412a-b305-acdb608d2779";
+"98caa188-0f5a-4a3d-9711-331403998b5d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"51362d97-d3fc-412a-b305-acdb608d2779" -> "98caa188-0f5a-4a3d-9711-331403998b5d";
+"e8eaea33-c8b8-42d6-96c8-46043d3b4c89" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"51362d97-d3fc-412a-b305-acdb608d2779" -> "e8eaea33-c8b8-42d6-96c8-46043d3b4c89";
+"bee4b51a-4377-4526-ab9c-01e78f041974" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"51362d97-d3fc-412a-b305-acdb608d2779" -> "bee4b51a-4377-4526-ab9c-01e78f041974";
+"0aabe889-857d-4736-85d7-44ed700407b3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,BrightTable)", shape=box, style=filled];
+"51362d97-d3fc-412a-b305-acdb608d2779" -> "0aabe889-857d-4736-85d7-44ed700407b3";
+"62848b20-c257-4ad8-99a6-b64ff83dee7b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e680d8b9-3c9e-4a0d-8a62-4ef521a289f7" -> "62848b20-c257-4ad8-99a6-b64ff83dee7b";
+"fb74a922-5cda-4f0f-a676-d18d4b4c5499" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"62848b20-c257-4ad8-99a6-b64ff83dee7b" -> "fb74a922-5cda-4f0f-a676-d18d4b4c5499";
+"ed00b51c-9bfb-4fba-9e5c-b15f0ef82671" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"62848b20-c257-4ad8-99a6-b64ff83dee7b" -> "ed00b51c-9bfb-4fba-9e5c-b15f0ef82671";
+"a17e7daa-80d8-437b-9904-3b1a9da510f5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"62848b20-c257-4ad8-99a6-b64ff83dee7b" -> "a17e7daa-80d8-437b-9904-3b1a9da510f5";
+"3fdb8f04-11f0-4603-bb21-39bacbb4ec17" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"637c8817-f35b-4ac7-9fc6-b5ed12b5c45e" -> "3fdb8f04-11f0-4603-bb21-39bacbb4ec17";
+"8b5b19d6-0f6d-485d-a6e3-acf861582841" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"3fdb8f04-11f0-4603-bb21-39bacbb4ec17" -> "8b5b19d6-0f6d-485d-a6e3-acf861582841";
+"0d543dd4-1331-4bf0-85bb-7e9ab977b9a1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3fdb8f04-11f0-4603-bb21-39bacbb4ec17" -> "0d543dd4-1331-4bf0-85bb-7e9ab977b9a1";
+"75ecd76a-f7f7-4a8d-ae54-8bd76c14515e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"3fdb8f04-11f0-4603-bb21-39bacbb4ec17" -> "75ecd76a-f7f7-4a8d-ae54-8bd76c14515e";
+"0acf4047-763e-4d76-bf69-3128c51b3883" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"3fdb8f04-11f0-4603-bb21-39bacbb4ec17" -> "0acf4047-763e-4d76-bf69-3128c51b3883";
+"20861f5b-9d14-46fd-b3fc-2b684b75fd29" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"09995e67-a5d9-437b-a475-c800293eb817" -> "20861f5b-9d14-46fd-b3fc-2b684b75fd29";
+"d8d2b020-3941-4d06-a03d-ca1673522ce2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"20861f5b-9d14-46fd-b3fc-2b684b75fd29" -> "d8d2b020-3941-4d06-a03d-ca1673522ce2";
+"a4f5de8a-376d-4524-96fa-3dae8176ead5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"20861f5b-9d14-46fd-b3fc-2b684b75fd29" -> "a4f5de8a-376d-4524-96fa-3dae8176ead5";
+"235ca445-1559-4785-b212-19a57495a1ba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"20861f5b-9d14-46fd-b3fc-2b684b75fd29" -> "235ca445-1559-4785-b212-19a57495a1ba";
+"a9fd3cf5-39bb-4a7c-a626-9a884a25d0c3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"20861f5b-9d14-46fd-b3fc-2b684b75fd29" -> "a9fd3cf5-39bb-4a7c-a626-9a884a25d0c3";
+"3c62d570-b2b1-40b0-9b31-95cd77136bbe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"87ee74fa-dace-40cc-8885-682eda7757c0" -> "3c62d570-b2b1-40b0-9b31-95cd77136bbe";
+"a1a512d1-e093-4b17-b963-94e353688e7d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"3c62d570-b2b1-40b0-9b31-95cd77136bbe" -> "a1a512d1-e093-4b17-b963-94e353688e7d";
+"674c14c1-8f4a-4543-9ac2-21316ecd6632" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"3c62d570-b2b1-40b0-9b31-95cd77136bbe" -> "674c14c1-8f4a-4543-9ac2-21316ecd6632";
+"1aa51ca8-3071-4006-ac98-4b5f786b9904" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"3c62d570-b2b1-40b0-9b31-95cd77136bbe" -> "1aa51ca8-3071-4006-ac98-4b5f786b9904";
+"baaa005c-da87-4b6c-9040-8e02130dab8c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"be0b5008-39c4-4e72-92ea-ae9ef33f8a47" -> "baaa005c-da87-4b6c-9040-8e02130dab8c";
+"47571a97-fdca-4f8d-9ab6-14119d7333f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"baaa005c-da87-4b6c-9040-8e02130dab8c" -> "47571a97-fdca-4f8d-9ab6-14119d7333f3";
+"9a9aba7b-5eee-42f9-a35b-3a9217e2a517" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"baaa005c-da87-4b6c-9040-8e02130dab8c" -> "9a9aba7b-5eee-42f9-a35b-3a9217e2a517";
+"719d9cc7-1237-49a8-9603-66635c4562f1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"baaa005c-da87-4b6c-9040-8e02130dab8c" -> "719d9cc7-1237-49a8-9603-66635c4562f1";
+"e4b71d0e-1540-4fac-8b9b-c72bb3bf9219" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9f51ef0c-f9dc-42ba-a72f-2afaf94980c8" -> "e4b71d0e-1540-4fac-8b9b-c72bb3bf9219";
+"c0bbe708-d077-4adb-8392-fbd6347bca23" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"e4b71d0e-1540-4fac-8b9b-c72bb3bf9219" -> "c0bbe708-d077-4adb-8392-fbd6347bca23";
+"237f902d-4711-405e-945e-dc015603a877" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"e4b71d0e-1540-4fac-8b9b-c72bb3bf9219" -> "237f902d-4711-405e-945e-dc015603a877";
+"c428230d-f1a7-4111-aee2-b1b126208ae0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"e4b71d0e-1540-4fac-8b9b-c72bb3bf9219" -> "c428230d-f1a7-4111-aee2-b1b126208ae0";
+"b0749180-be7a-401d-a8b5-d056bcd5374e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d0ceabd1-d59b-48e4-ae9f-c083faf26b4d" -> "b0749180-be7a-401d-a8b5-d056bcd5374e";
+"e4dcb3c7-6a9f-4a91-a6f4-5f996e45f26a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"b0749180-be7a-401d-a8b5-d056bcd5374e" -> "e4dcb3c7-6a9f-4a91-a6f4-5f996e45f26a";
+"07d455c5-d957-496e-9dd2-b5518275a8c4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"b0749180-be7a-401d-a8b5-d056bcd5374e" -> "07d455c5-d957-496e-9dd2-b5518275a8c4";
+"230a26fc-40de-4727-af36-c5ad0fcffdb6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"b0749180-be7a-401d-a8b5-d056bcd5374e" -> "230a26fc-40de-4727-af36-c5ad0fcffdb6";
+"0dca317c-2dc7-45d7-8e32-5012d2c957ba" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"eb84b869-5e8d-4f44-95a5-67628ce0d729" -> "0dca317c-2dc7-45d7-8e32-5012d2c957ba";
+"da46040e-971e-40e4-a435-f4e3deb67648" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"0dca317c-2dc7-45d7-8e32-5012d2c957ba" -> "da46040e-971e-40e4-a435-f4e3deb67648";
+"be7adf39-dc95-49f3-98e6-a95e42631952" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"0dca317c-2dc7-45d7-8e32-5012d2c957ba" -> "be7adf39-dc95-49f3-98e6-a95e42631952";
+"0cc46565-6061-4515-98fe-c767c247fb8b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,WaterTable)", shape=box, style=filled];
+"0dca317c-2dc7-45d7-8e32-5012d2c957ba" -> "0cc46565-6061-4515-98fe-c767c247fb8b";
+"75d670a0-fdc0-41ae-aa1a-8d7742157c5b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a11e02b9-9c49-4e71-8c63-edddb7797305" -> "75d670a0-fdc0-41ae-aa1a-8d7742157c5b";
+"511be340-f4a0-4faa-8505-cfe5651f8a63" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"75d670a0-fdc0-41ae-aa1a-8d7742157c5b" -> "511be340-f4a0-4faa-8505-cfe5651f8a63";
+"685092ab-d4ae-4cba-85cc-8ac7973da19d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"75d670a0-fdc0-41ae-aa1a-8d7742157c5b" -> "685092ab-d4ae-4cba-85cc-8ac7973da19d";
+"631d2ce5-11d6-42e7-9058-ee0af3b2c871" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"75d670a0-fdc0-41ae-aa1a-8d7742157c5b" -> "631d2ce5-11d6-42e7-9058-ee0af3b2c871";
+"7d368ce9-8a73-41f0-9b86-4d62decfa5bf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,CoffeeTable)", shape=box, style=filled];
+"75d670a0-fdc0-41ae-aa1a-8d7742157c5b" -> "7d368ce9-8a73-41f0-9b86-4d62decfa5bf";
+"811cd52e-7a37-47f0-b79d-1e567114ee9f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"98514241-a181-42e4-a0f4-7aeea836e89c" -> "811cd52e-7a37-47f0-b79d-1e567114ee9f";
+"e00805de-5c78-4457-915f-6a478c0e6a60" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"811cd52e-7a37-47f0-b79d-1e567114ee9f" -> "e00805de-5c78-4457-915f-6a478c0e6a60";
+"99987cc1-cbd4-43ce-a0a1-c21b06f2c76b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"811cd52e-7a37-47f0-b79d-1e567114ee9f" -> "99987cc1-cbd4-43ce-a0a1-c21b06f2c76b";
+"33596d50-442e-4bd0-97fd-424a4fc9f376" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,WaterTable)", shape=box, style=filled];
+"811cd52e-7a37-47f0-b79d-1e567114ee9f" -> "33596d50-442e-4bd0-97fd-424a4fc9f376";
+"b53b5e45-b474-4fbb-9ff6-bb403b23d3c5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"d167ca09-032a-48f0-89d8-23ccc311818c" -> "b53b5e45-b474-4fbb-9ff6-bb403b23d3c5";
+"f08e1df5-585f-4c1b-a445-754acdce1b6b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"b53b5e45-b474-4fbb-9ff6-bb403b23d3c5" -> "f08e1df5-585f-4c1b-a445-754acdce1b6b";
+"2b366aa6-23f3-4cbe-9291-8e6bcc001e91" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"b53b5e45-b474-4fbb-9ff6-bb403b23d3c5" -> "2b366aa6-23f3-4cbe-9291-8e6bcc001e91";
+"da3f4bd1-6072-4ac7-b162-d7c9eb948570" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"b53b5e45-b474-4fbb-9ff6-bb403b23d3c5" -> "da3f4bd1-6072-4ac7-b162-d7c9eb948570";
+"f47b8690-ff5f-4cad-afe6-5ae7d5a3d925" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"f02bbf5d-d352-4640-9076-c62f4f0fff1a" -> "f47b8690-ff5f-4cad-afe6-5ae7d5a3d925";
+"d43f44e8-87a3-4206-bd1a-cb7c05c2024c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"f47b8690-ff5f-4cad-afe6-5ae7d5a3d925" -> "d43f44e8-87a3-4206-bd1a-cb7c05c2024c";
+"92598cc5-c10c-42dd-91e1-e98b8139d9d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f47b8690-ff5f-4cad-afe6-5ae7d5a3d925" -> "92598cc5-c10c-42dd-91e1-e98b8139d9d4";
+"0f702082-b16b-4006-ab92-e64b966dcb44" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"f47b8690-ff5f-4cad-afe6-5ae7d5a3d925" -> "0f702082-b16b-4006-ab92-e64b966dcb44";
+"f4c91ee4-fad5-4eca-87e1-76bd556df233" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,BrightTable)", shape=box, style=filled];
+"f47b8690-ff5f-4cad-afe6-5ae7d5a3d925" -> "f4c91ee4-fad5-4eca-87e1-76bd556df233";
+"52222621-50a8-4044-a292-97c7c4ae2c69" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ff4e492b-e302-4014-8ba1-8c888c8fb517" -> "52222621-50a8-4044-a292-97c7c4ae2c69";
+"17e70025-d31f-4bfb-a8ca-f362a8e6061a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"52222621-50a8-4044-a292-97c7c4ae2c69" -> "17e70025-d31f-4bfb-a8ca-f362a8e6061a";
+"a192a75c-a813-4018-af51-e3b438754132" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"52222621-50a8-4044-a292-97c7c4ae2c69" -> "a192a75c-a813-4018-af51-e3b438754132";
+"b0d98124-acb8-4455-a5f4-8d03f63108bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"52222621-50a8-4044-a292-97c7c4ae2c69" -> "b0d98124-acb8-4455-a5f4-8d03f63108bc";
+"e6ece130-a668-4880-b89d-a2b303ee7003" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,CoffeeTable)", shape=box, style=filled];
+"52222621-50a8-4044-a292-97c7c4ae2c69" -> "e6ece130-a668-4880-b89d-a2b303ee7003";
+"85ef915d-9cf1-4551-9bc1-33b402f32d98" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a1bdb1c9-c536-4895-82b9-4a391941ab8f" -> "85ef915d-9cf1-4551-9bc1-33b402f32d98";
+"e87748cd-345a-4bb0-85b8-462dd36f3572" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"85ef915d-9cf1-4551-9bc1-33b402f32d98" -> "e87748cd-345a-4bb0-85b8-462dd36f3572";
+"675f8b14-47fd-444f-92eb-566bd97bfcb4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"85ef915d-9cf1-4551-9bc1-33b402f32d98" -> "675f8b14-47fd-444f-92eb-566bd97bfcb4";
+"fa4a7948-e631-4f7a-86b1-e26da0e486a1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"85ef915d-9cf1-4551-9bc1-33b402f32d98" -> "fa4a7948-e631-4f7a-86b1-e26da0e486a1";
+"0b3a0742-c11b-413e-b7db-54389340e3b0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ef4b9363-8426-4ea1-8f60-04b4a6635fca" -> "0b3a0742-c11b-413e-b7db-54389340e3b0";
+"9c91a8d7-3a0b-4c4b-8e99-0c2661f59682" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"0b3a0742-c11b-413e-b7db-54389340e3b0" -> "9c91a8d7-3a0b-4c4b-8e99-0c2661f59682";
+"a574e051-50a7-462e-b4c2-90ade280dfbf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"0b3a0742-c11b-413e-b7db-54389340e3b0" -> "a574e051-50a7-462e-b4c2-90ade280dfbf";
+"363419d4-ba53-47f4-a1e7-e1d4f16a6b05" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"0b3a0742-c11b-413e-b7db-54389340e3b0" -> "363419d4-ba53-47f4-a1e7-e1d4f16a6b05";
+"c11224fc-b599-4fb2-855c-3167a2474f7e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,CoffeeTable)", shape=box, style=filled];
+"0b3a0742-c11b-413e-b7db-54389340e3b0" -> "c11224fc-b599-4fb2-855c-3167a2474f7e";
+"5cec4309-f466-470c-a956-bedec0203e0e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"b4f2e147-7fe0-4959-bec3-0be915fd921b" -> "5cec4309-f466-470c-a956-bedec0203e0e";
+"f7866033-04f0-4ddb-b629-2af91ae65eeb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"5cec4309-f466-470c-a956-bedec0203e0e" -> "f7866033-04f0-4ddb-b629-2af91ae65eeb";
+"922bbf9a-7640-453f-b2d1-ad8854b6ba7f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"5cec4309-f466-470c-a956-bedec0203e0e" -> "922bbf9a-7640-453f-b2d1-ad8854b6ba7f";
+"3f2f961f-ed99-4efa-b3d0-c96a67045623" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"5cec4309-f466-470c-a956-bedec0203e0e" -> "3f2f961f-ed99-4efa-b3d0-c96a67045623";
+"363a9ffd-b7e0-4d0c-91b6-2d78cce80ae6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"11bb2765-fafb-452f-8667-dffb225daa9c" -> "363a9ffd-b7e0-4d0c-91b6-2d78cce80ae6";
+"84871e91-93af-4dc6-9633-149e0a2a9c0c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"363a9ffd-b7e0-4d0c-91b6-2d78cce80ae6" -> "84871e91-93af-4dc6-9633-149e0a2a9c0c";
+"f458ed65-6c31-4108-abfe-1e638245f767" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"363a9ffd-b7e0-4d0c-91b6-2d78cce80ae6" -> "f458ed65-6c31-4108-abfe-1e638245f767";
+"59222ab9-cdc9-4f1e-981d-e143533dbf96" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"363a9ffd-b7e0-4d0c-91b6-2d78cce80ae6" -> "59222ab9-cdc9-4f1e-981d-e143533dbf96";
+"882b0365-0c1d-4a20-831a-07c5facf6024" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6a8c3205-5274-40c4-b8e1-46979922bc00" -> "882b0365-0c1d-4a20-831a-07c5facf6024";
+"b019e373-1dcc-419b-8380-d3738fc14bd5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"882b0365-0c1d-4a20-831a-07c5facf6024" -> "b019e373-1dcc-419b-8380-d3738fc14bd5";
+"3da65e43-c905-4523-862b-fd313780f660" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"882b0365-0c1d-4a20-831a-07c5facf6024" -> "3da65e43-c905-4523-862b-fd313780f660";
+"2eb86c0f-bb9e-4577-9470-f819263be0c6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"882b0365-0c1d-4a20-831a-07c5facf6024" -> "2eb86c0f-bb9e-4577-9470-f819263be0c6";
+"b78235fd-b312-4f3c-b2db-522346d6334b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ae241c9-0d7e-4330-8dfa-7e3659869c4e" -> "b78235fd-b312-4f3c-b2db-522346d6334b";
+"24f347cd-a573-43b8-8aeb-fba3821f19c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"b78235fd-b312-4f3c-b2db-522346d6334b" -> "24f347cd-a573-43b8-8aeb-fba3821f19c9";
+"af0acce2-0523-4715-a7f0-5ea33d64baaf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"b78235fd-b312-4f3c-b2db-522346d6334b" -> "af0acce2-0523-4715-a7f0-5ea33d64baaf";
+"7446585c-7884-4b51-9123-a4687db8ae2c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b78235fd-b312-4f3c-b2db-522346d6334b" -> "7446585c-7884-4b51-9123-a4687db8ae2c";
+"300db2e4-2b2d-4973-a2e5-68c6fca3342d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"b78235fd-b312-4f3c-b2db-522346d6334b" -> "300db2e4-2b2d-4973-a2e5-68c6fca3342d";
+"44b5bd4e-b292-4f35-a08c-62c6c8ee6afb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"baf1177f-3f68-4597-a8be-73fab71fe07c" -> "44b5bd4e-b292-4f35-a08c-62c6c8ee6afb";
+"9dc377a0-802a-4938-9557-d2484887e2c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"44b5bd4e-b292-4f35-a08c-62c6c8ee6afb" -> "9dc377a0-802a-4938-9557-d2484887e2c8";
+"eed4c344-508b-4271-a3f3-b65659894c2a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"44b5bd4e-b292-4f35-a08c-62c6c8ee6afb" -> "eed4c344-508b-4271-a3f3-b65659894c2a";
+"236d682d-2465-4ad9-87d2-efcaa2174de8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"44b5bd4e-b292-4f35-a08c-62c6c8ee6afb" -> "236d682d-2465-4ad9-87d2-efcaa2174de8";
+"8c0a1060-ace9-421c-a756-03855c0e69b3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,BrightTable)", shape=box, style=filled];
+"44b5bd4e-b292-4f35-a08c-62c6c8ee6afb" -> "8c0a1060-ace9-421c-a756-03855c0e69b3";
+"3de1c2a4-bec7-465c-a7ab-d34169f30c88" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"243374c3-6aab-41ca-a2bb-a155eed84368" -> "3de1c2a4-bec7-465c-a7ab-d34169f30c88";
+"44d21d5b-9395-44d8-9767-838704c41f3c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"3de1c2a4-bec7-465c-a7ab-d34169f30c88" -> "44d21d5b-9395-44d8-9767-838704c41f3c";
+"a5fdd66f-1934-43ba-be76-ce75f456f80b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"3de1c2a4-bec7-465c-a7ab-d34169f30c88" -> "a5fdd66f-1934-43ba-be76-ce75f456f80b";
+"b3c5bbe0-0730-4d71-83c3-d433d1967bc8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"3de1c2a4-bec7-465c-a7ab-d34169f30c88" -> "b3c5bbe0-0730-4d71-83c3-d433d1967bc8";
+"c4758168-fcec-4f27-af96-33187081f78f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1003765f-f36b-4327-bef7-3c6124abe494" -> "c4758168-fcec-4f27-af96-33187081f78f";
+"e0a0db31-5c35-4a84-b31b-1edf381ae1c6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"c4758168-fcec-4f27-af96-33187081f78f" -> "e0a0db31-5c35-4a84-b31b-1edf381ae1c6";
+"756cf405-74c3-40bf-8b93-17ce64f5a837" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"c4758168-fcec-4f27-af96-33187081f78f" -> "756cf405-74c3-40bf-8b93-17ce64f5a837";
+"e878b930-8bfb-4953-a63b-a9237815f18a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,CoffeeTable)", shape=box, style=filled];
+"c4758168-fcec-4f27-af96-33187081f78f" -> "e878b930-8bfb-4953-a63b-a9237815f18a";
+"f285fd67-1400-4727-9581-5a861e886c7b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"18986915-a3c3-44fb-ba64-6b3c6fb0701d" -> "f285fd67-1400-4727-9581-5a861e886c7b";
+"a15c1760-a84c-404f-99cd-92f1f80468af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"f285fd67-1400-4727-9581-5a861e886c7b" -> "a15c1760-a84c-404f-99cd-92f1f80468af";
+"3617af51-2e8c-4d2e-91e5-89431bccf003" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"f285fd67-1400-4727-9581-5a861e886c7b" -> "3617af51-2e8c-4d2e-91e5-89431bccf003";
+"72d2f650-b16f-44ff-8b5f-793dd7d1094d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,BrightTable)", shape=box, style=filled];
+"f285fd67-1400-4727-9581-5a861e886c7b" -> "72d2f650-b16f-44ff-8b5f-793dd7d1094d";
+"8d953b09-a3e1-4896-b2de-305ed11747c4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
+"c0e15c1f-0cb4-4458-9e5f-3dd0e251f1fe" -> "8d953b09-a3e1-4896-b2de-305ed11747c4";
+"89492c29-fbf6-44ba-a996-06db94f78073" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"363a8a50-ecf1-4ae8-9853-98761c6f0710" -> "89492c29-fbf6-44ba-a996-06db94f78073";
+"ba251089-126c-47f7-ad69-34918cadcac9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"89492c29-fbf6-44ba-a996-06db94f78073" -> "ba251089-126c-47f7-ad69-34918cadcac9";
+"9c1612a8-8571-44e1-92da-d9ffeb32b8c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"89492c29-fbf6-44ba-a996-06db94f78073" -> "9c1612a8-8571-44e1-92da-d9ffeb32b8c5";
+"7b93fa6e-339f-45c5-b78f-7d30c196824f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"89492c29-fbf6-44ba-a996-06db94f78073" -> "7b93fa6e-339f-45c5-b78f-7d30c196824f";
+"027384f4-79f9-4882-8b91-0ed3a677cc5a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"78b5fe64-0f4a-4a9c-aacf-3c960917a552" -> "027384f4-79f9-4882-8b91-0ed3a677cc5a";
+"0387e629-3b69-4b83-bbdb-29c46476dc58" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"027384f4-79f9-4882-8b91-0ed3a677cc5a" -> "0387e629-3b69-4b83-bbdb-29c46476dc58";
+"cf0fe3c7-a17f-4a99-bd47-0e7964fede6b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"027384f4-79f9-4882-8b91-0ed3a677cc5a" -> "cf0fe3c7-a17f-4a99-bd47-0e7964fede6b";
+"5ab9f443-0ae4-430a-8eae-1ec5c8d6e8d0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"027384f4-79f9-4882-8b91-0ed3a677cc5a" -> "5ab9f443-0ae4-430a-8eae-1ec5c8d6e8d0";
+"5db03d6c-bb8c-4c4e-a851-1b880d2304ec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"92f080b0-ac31-4421-968a-9b4088c0910f" -> "5db03d6c-bb8c-4c4e-a851-1b880d2304ec";
+"24353119-6160-4567-ad79-d841faa2e7da" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"5db03d6c-bb8c-4c4e-a851-1b880d2304ec" -> "24353119-6160-4567-ad79-d841faa2e7da";
+"32cf3641-33af-4478-8557-e24ac074977c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"5db03d6c-bb8c-4c4e-a851-1b880d2304ec" -> "32cf3641-33af-4478-8557-e24ac074977c";
+"67b56bdd-00cf-44e6-8bd2-ea0c4dfe3322" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"5db03d6c-bb8c-4c4e-a851-1b880d2304ec" -> "67b56bdd-00cf-44e6-8bd2-ea0c4dfe3322";
+"3e34fd54-a4d2-489c-b181-0e1b9bbfa6fe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e2526972-9479-4ff1-842c-4934730759ee" -> "3e34fd54-a4d2-489c-b181-0e1b9bbfa6fe";
+"98b367c0-2ad3-4c3b-9e43-548a7b324274" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"3e34fd54-a4d2-489c-b181-0e1b9bbfa6fe" -> "98b367c0-2ad3-4c3b-9e43-548a7b324274";
+"5d50943c-e92c-4fb2-8777-12b0c363afb0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"3e34fd54-a4d2-489c-b181-0e1b9bbfa6fe" -> "5d50943c-e92c-4fb2-8777-12b0c363afb0";
+"3ff61034-f0f0-4b3d-a8cf-6650e4197374" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"3e34fd54-a4d2-489c-b181-0e1b9bbfa6fe" -> "3ff61034-f0f0-4b3d-a8cf-6650e4197374";
+"3c001919-c566-45d8-8a3e-ece15d47ff4e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e966e843-c2c1-42a2-9467-434be3dc2079" -> "3c001919-c566-45d8-8a3e-ece15d47ff4e";
+"aa79fb13-82d1-4cff-ae00-7372a8d8512c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"3c001919-c566-45d8-8a3e-ece15d47ff4e" -> "aa79fb13-82d1-4cff-ae00-7372a8d8512c";
+"941718c7-c6a7-4433-83be-28138785ed12" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"3c001919-c566-45d8-8a3e-ece15d47ff4e" -> "941718c7-c6a7-4433-83be-28138785ed12";
+"be6f0429-1347-4e55-8400-3ae0a2625869" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,CoffeeTable)", shape=box, style=filled];
+"3c001919-c566-45d8-8a3e-ece15d47ff4e" -> "be6f0429-1347-4e55-8400-3ae0a2625869";
+"60b60bf9-6bef-4cd0-8b2e-4dff52e21df9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"92bc4b9e-cf77-4744-8947-87a8b252cb8f" -> "60b60bf9-6bef-4cd0-8b2e-4dff52e21df9";
+"97714157-6033-471b-b0ec-3ab685c8fbf7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"60b60bf9-6bef-4cd0-8b2e-4dff52e21df9" -> "97714157-6033-471b-b0ec-3ab685c8fbf7";
+"e53a85c8-fc0a-44be-a0c6-31d6fcfad294" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"60b60bf9-6bef-4cd0-8b2e-4dff52e21df9" -> "e53a85c8-fc0a-44be-a0c6-31d6fcfad294";
+"3ffab793-f8bb-4c86-ab1a-474549d5fc79" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"60b60bf9-6bef-4cd0-8b2e-4dff52e21df9" -> "3ffab793-f8bb-4c86-ab1a-474549d5fc79";
+"f140a3d3-aee2-49bf-b202-cef758185d3f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"3e129f78-f55f-4e80-85a1-158623b1db63" -> "f140a3d3-aee2-49bf-b202-cef758185d3f";
+"d1111e99-05bd-4c42-b322-12719d5bf47b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"f140a3d3-aee2-49bf-b202-cef758185d3f" -> "d1111e99-05bd-4c42-b322-12719d5bf47b";
+"c6d9397f-368e-4408-8ee7-df270aca61bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"f140a3d3-aee2-49bf-b202-cef758185d3f" -> "c6d9397f-368e-4408-8ee7-df270aca61bd";
+"51e89b6c-a00c-4d9e-b342-a829a5ad779f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"f140a3d3-aee2-49bf-b202-cef758185d3f" -> "51e89b6c-a00c-4d9e-b342-a829a5ad779f";
+"7fcdcdfc-6d56-4e61-a511-b28a71ce315c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a5e8af65-f15b-4caf-8479-120456da60f3" -> "7fcdcdfc-6d56-4e61-a511-b28a71ce315c";
+"991bae5a-85b2-48ff-8a55-402993a86e79" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"7fcdcdfc-6d56-4e61-a511-b28a71ce315c" -> "991bae5a-85b2-48ff-8a55-402993a86e79";
+"7fa53882-c109-4384-ac3a-4977104daa52" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"7fcdcdfc-6d56-4e61-a511-b28a71ce315c" -> "7fa53882-c109-4384-ac3a-4977104daa52";
+"1262beb1-e241-45d7-8ede-c4abe1453363" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"7fcdcdfc-6d56-4e61-a511-b28a71ce315c" -> "1262beb1-e241-45d7-8ede-c4abe1453363";
+"395d71df-9e65-458a-acf8-f1250b115233" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"2f2e37eb-0f14-46a2-862d-7e7887ee36f5" -> "395d71df-9e65-458a-acf8-f1250b115233";
+"73e377fd-8ef7-44f8-bbbd-fe3801a03d9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"395d71df-9e65-458a-acf8-f1250b115233" -> "73e377fd-8ef7-44f8-bbbd-fe3801a03d9b";
+"d0015d60-f323-4e52-a228-9a6c40f9195b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"395d71df-9e65-458a-acf8-f1250b115233" -> "d0015d60-f323-4e52-a228-9a6c40f9195b";
+"47c6cb3e-4471-4d25-88ae-827d72d083e6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"395d71df-9e65-458a-acf8-f1250b115233" -> "47c6cb3e-4471-4d25-88ae-827d72d083e6";
+"4512f4ee-1e35-4200-883b-06e2742da86d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"15ad7f5d-f1a0-4c32-8b87-308a5011f459" -> "4512f4ee-1e35-4200-883b-06e2742da86d";
+"dab12a29-1fb6-4a7b-9455-fb051a2dcb55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"4512f4ee-1e35-4200-883b-06e2742da86d" -> "dab12a29-1fb6-4a7b-9455-fb051a2dcb55";
+"95fc9392-d6c9-4a0d-be8e-8813f4b3d70f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"4512f4ee-1e35-4200-883b-06e2742da86d" -> "95fc9392-d6c9-4a0d-be8e-8813f4b3d70f";
+"7ff42ed0-8075-4ed4-a3de-6de30d5667b1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"4512f4ee-1e35-4200-883b-06e2742da86d" -> "7ff42ed0-8075-4ed4-a3de-6de30d5667b1";
+"b7fea883-e83f-43be-b0fe-00b3a1a4bbe3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1a6769bf-f3ee-4218-b9aa-b1bea5fd9a76" -> "b7fea883-e83f-43be-b0fe-00b3a1a4bbe3";
+"bb67e849-cd88-486b-a1d4-6d9cffc9513e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"b7fea883-e83f-43be-b0fe-00b3a1a4bbe3" -> "bb67e849-cd88-486b-a1d4-6d9cffc9513e";
+"346b3b68-891b-47df-a2c8-3a50a4627675" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"b7fea883-e83f-43be-b0fe-00b3a1a4bbe3" -> "346b3b68-891b-47df-a2c8-3a50a4627675";
+"64d57ccc-ae64-4876-a1d0-36d55984d7c2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"b7fea883-e83f-43be-b0fe-00b3a1a4bbe3" -> "64d57ccc-ae64-4876-a1d0-36d55984d7c2";
+"a70aacfb-87ab-4ac2-9768-04f341c16117" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"a460b03b-745f-4719-90fe-46db5ddf43a8" -> "a70aacfb-87ab-4ac2-9768-04f341c16117";
+"640ecc4e-7878-41c3-a85a-8539c298d297" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"a70aacfb-87ab-4ac2-9768-04f341c16117" -> "640ecc4e-7878-41c3-a85a-8539c298d297";
+"1bdd7779-ddc7-48e8-aed6-e5a627b3adb4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"a70aacfb-87ab-4ac2-9768-04f341c16117" -> "1bdd7779-ddc7-48e8-aed6-e5a627b3adb4";
+"4f73d64e-8710-4e7b-a466-7cb49b9495c5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"a70aacfb-87ab-4ac2-9768-04f341c16117" -> "4f73d64e-8710-4e7b-a466-7cb49b9495c5";
+"d97bfc33-4579-4024-a3ca-8048e2682ee2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0d20f8da-9be4-471e-98ef-3e9f809b3d88" -> "d97bfc33-4579-4024-a3ca-8048e2682ee2";
+"e99e759b-28d7-4afc-b2ed-40f23dd0321e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"d97bfc33-4579-4024-a3ca-8048e2682ee2" -> "e99e759b-28d7-4afc-b2ed-40f23dd0321e";
+"80efd2d4-e24c-4d73-a980-a10ed7e4bae0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"d97bfc33-4579-4024-a3ca-8048e2682ee2" -> "80efd2d4-e24c-4d73-a980-a10ed7e4bae0";
+"6ed85a43-0121-4069-82a1-66b725290360" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,CoffeeTable)", shape=box, style=filled];
+"d97bfc33-4579-4024-a3ca-8048e2682ee2" -> "6ed85a43-0121-4069-82a1-66b725290360";
+"03ab89f4-73f6-493c-ad46-e6adb568ee80" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"ebad5a2f-31cc-49f7-b5b3-64a4c32099d3" -> "03ab89f4-73f6-493c-ad46-e6adb568ee80";
+"4db7eafb-decf-446b-8ece-c5ccf41dfdd9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"03ab89f4-73f6-493c-ad46-e6adb568ee80" -> "4db7eafb-decf-446b-8ece-c5ccf41dfdd9";
+"c52f1ba4-f3b3-4758-af21-93d23a8d1aab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"03ab89f4-73f6-493c-ad46-e6adb568ee80" -> "c52f1ba4-f3b3-4758-af21-93d23a8d1aab";
+"92a44a86-e7a4-47fb-818d-3ae0c26cc875" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"03ab89f4-73f6-493c-ad46-e6adb568ee80" -> "92a44a86-e7a4-47fb-818d-3ae0c26cc875";
+"17a12609-dff0-4378-957c-715c50109f2a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6f2e7be3-d411-450c-8b0b-ab20a5159c36" -> "17a12609-dff0-4378-957c-715c50109f2a";
+"e188781f-84e7-4c88-a0fb-9e802598967a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"17a12609-dff0-4378-957c-715c50109f2a" -> "e188781f-84e7-4c88-a0fb-9e802598967a";
+"aeb5fa52-dd5c-44fe-b4fa-2820ca2b0dac" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"17a12609-dff0-4378-957c-715c50109f2a" -> "aeb5fa52-dd5c-44fe-b4fa-2820ca2b0dac";
+"52bb5495-3c59-4cca-bc7a-c6e2cec5861b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"17a12609-dff0-4378-957c-715c50109f2a" -> "52bb5495-3c59-4cca-bc7a-c6e2cec5861b";
+"3438501a-6b3b-4dd4-98bc-72320779cad2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"400d5413-6dd2-43f6-ad0c-ed19da733394" -> "3438501a-6b3b-4dd4-98bc-72320779cad2";
+"6c209b97-f2b1-4472-bad9-1f4a47ef638c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"3438501a-6b3b-4dd4-98bc-72320779cad2" -> "6c209b97-f2b1-4472-bad9-1f4a47ef638c";
+"82d2a265-650c-41f5-b365-9cc1140312da" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"3438501a-6b3b-4dd4-98bc-72320779cad2" -> "82d2a265-650c-41f5-b365-9cc1140312da";
+"44ffa530-c6e8-4084-9865-b1835f6b4c29" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"3438501a-6b3b-4dd4-98bc-72320779cad2" -> "44ffa530-c6e8-4084-9865-b1835f6b4c29";
+"dc62bc34-2f97-40eb-8884-6ffa866c9d44" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"11da2641-6f1c-4714-8fda-f5e0458afed0" -> "dc62bc34-2f97-40eb-8884-6ffa866c9d44";
+"3e177ff6-1a6a-4940-a7d8-8b1ca1de8a89" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"dc62bc34-2f97-40eb-8884-6ffa866c9d44" -> "3e177ff6-1a6a-4940-a7d8-8b1ca1de8a89";
+"e1783bdd-b5c1-4dc9-9b6b-15460ad2b902" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"dc62bc34-2f97-40eb-8884-6ffa866c9d44" -> "e1783bdd-b5c1-4dc9-9b6b-15460ad2b902";
+"87de2144-8f8c-415f-8826-429127cd5623" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"dc62bc34-2f97-40eb-8884-6ffa866c9d44" -> "87de2144-8f8c-415f-8826-429127cd5623";
+"5573ec3f-e72e-44a8-a0cb-2657d9724697" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e5e13351-ce74-4939-879f-2f92277efc49" -> "5573ec3f-e72e-44a8-a0cb-2657d9724697";
+"60bd1030-b480-41c0-aeca-0eff5cc3bfb8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"5573ec3f-e72e-44a8-a0cb-2657d9724697" -> "60bd1030-b480-41c0-aeca-0eff5cc3bfb8";
+"74489635-5fbd-4d09-9b88-4dcb590171ed" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"5573ec3f-e72e-44a8-a0cb-2657d9724697" -> "74489635-5fbd-4d09-9b88-4dcb590171ed";
+"ee1de8dc-7d6e-40b5-af27-e16af6062aac" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"5573ec3f-e72e-44a8-a0cb-2657d9724697" -> "ee1de8dc-7d6e-40b5-af27-e16af6062aac";
+"56301bba-19f2-451c-be24-ea71fe3db4d5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"9935ba8d-6aa1-4173-9d1d-139838438fcd" -> "56301bba-19f2-451c-be24-ea71fe3db4d5";
+"b2ece267-7650-426d-aa37-4a3ac310af14" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"56301bba-19f2-451c-be24-ea71fe3db4d5" -> "b2ece267-7650-426d-aa37-4a3ac310af14";
+"557a71f3-f40b-4de2-87ae-50b69b166224" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"56301bba-19f2-451c-be24-ea71fe3db4d5" -> "557a71f3-f40b-4de2-87ae-50b69b166224";
+"4bdfb484-479a-4a76-a583-dd0ad0ec301b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"56301bba-19f2-451c-be24-ea71fe3db4d5" -> "4bdfb484-479a-4a76-a583-dd0ad0ec301b";
+"bd09cbfe-9e92-4577-a319-8016df328dbc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6c886d78-0228-41b5-aa69-665bc3244b46" -> "bd09cbfe-9e92-4577-a319-8016df328dbc";
+"d61bf7be-5adf-442d-9843-7fdf77df216f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"bd09cbfe-9e92-4577-a319-8016df328dbc" -> "d61bf7be-5adf-442d-9843-7fdf77df216f";
+"187b303a-ebfb-4a00-b807-f4f38f85a70e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"bd09cbfe-9e92-4577-a319-8016df328dbc" -> "187b303a-ebfb-4a00-b807-f4f38f85a70e";
+"78da584c-15db-423c-8606-9f70c9b1fafb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"bd09cbfe-9e92-4577-a319-8016df328dbc" -> "78da584c-15db-423c-8606-9f70c9b1fafb";
+"ea7a38fa-9fe9-4598-8a24-0d3cffba0201" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"e090afcd-0d38-4cea-a058-4040755e753e" -> "ea7a38fa-9fe9-4598-8a24-0d3cffba0201";
+"e8f4c9c3-defb-4230-8869-41b3758a83fe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"ea7a38fa-9fe9-4598-8a24-0d3cffba0201" -> "e8f4c9c3-defb-4230-8869-41b3758a83fe";
+"8dd9e63f-7bf4-4428-b676-9d7fc8fef53d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"ea7a38fa-9fe9-4598-8a24-0d3cffba0201" -> "8dd9e63f-7bf4-4428-b676-9d7fc8fef53d";
+"41a58832-efa8-48be-9bdd-ff7f4892c5b8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"ea7a38fa-9fe9-4598-8a24-0d3cffba0201" -> "41a58832-efa8-48be-9bdd-ff7f4892c5b8";
+"94dcfa4d-87e8-4cf9-bafb-323b81eb9c5d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"907c9cc7-0491-4cd1-9e87-7ebbfc7d3af6" -> "94dcfa4d-87e8-4cf9-bafb-323b81eb9c5d";
+"f012e335-9b64-4240-8597-90b9a92105a6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"94dcfa4d-87e8-4cf9-bafb-323b81eb9c5d" -> "f012e335-9b64-4240-8597-90b9a92105a6";
+"5630ce1f-ae46-424a-88a9-578ba5cee633" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Exist(MilkDrink)", shape=ellipse, style=filled];
+"94dcfa4d-87e8-4cf9-bafb-323b81eb9c5d" -> "5630ce1f-ae46-424a-88a9-578ba5cee633";
+"b023a71a-93ce-4587-81a0-3fdb9a268e59" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(MilkDrink)", shape=box, style=filled];
+"94dcfa4d-87e8-4cf9-bafb-323b81eb9c5d" -> "b023a71a-93ce-4587-81a0-3fdb9a268e59";
+}
diff --git a/BTExpansionCode/EXP/expanded_bt_obt.png b/BTExpansionCode/EXP/expanded_bt_obt.png
new file mode 100644
index 0000000..40cbd80
Binary files /dev/null and b/BTExpansionCode/EXP/expanded_bt_obt.png differ
diff --git a/BTExpansionCode/EXP/expanded_bt_obt.svg b/BTExpansionCode/EXP/expanded_bt_obt.svg
new file mode 100644
index 0000000..5aa1271
--- /dev/null
+++ b/BTExpansionCode/EXP/expanded_bt_obt.svg
@@ -0,0 +1,20755 @@
+
+
+
+
+
diff --git a/BTExpansionCode/EXP/expanded_bt_xiaocai.dot b/BTExpansionCode/EXP/expanded_bt_xiaocai.dot
new file mode 100644
index 0000000..ad60848
--- /dev/null
+++ b/BTExpansionCode/EXP/expanded_bt_xiaocai.dot
@@ -0,0 +1,5527 @@
+digraph pastafarianism {
+ordering=out;
+graph [fontname="times-roman"];
+node [fontname="times-roman"];
+edge [fontname="times-roman"];
+"6198a9aa-bfec-497d-bd83-a9efac95446f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a00b3625-ba83-4882-9884-5ad60c061427" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="On(MilkDrink,Bar2)", shape=ellipse, style=filled];
+"6198a9aa-bfec-497d-bd83-a9efac95446f" -> "a00b3625-ba83-4882-9884-5ad60c061427";
+"4465f4c9-b8fa-4f4b-b14b-1fea92565591" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6198a9aa-bfec-497d-bd83-a9efac95446f" -> "4465f4c9-b8fa-4f4b-b14b-1fea92565591";
+"4662ab1d-be51-4494-8802-bf443d90cfc2" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4465f4c9-b8fa-4f4b-b14b-1fea92565591" -> "4662ab1d-be51-4494-8802-bf443d90cfc2";
+"d4e8f6d9-f075-4abd-8dde-8e94f81b92d2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "d4e8f6d9-f075-4abd-8dde-8e94f81b92d2";
+"0a7cca56-e56c-4a8a-adea-92c273d09fa4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "0a7cca56-e56c-4a8a-adea-92c273d09fa4";
+"79334f30-98f4-451a-a037-cf8bb0447077" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "79334f30-98f4-451a-a037-cf8bb0447077";
+"0436df48-93c8-490d-af8c-ea3144c29ef4" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"79334f30-98f4-451a-a037-cf8bb0447077" -> "0436df48-93c8-490d-af8c-ea3144c29ef4";
+"3c5baec9-0c88-465f-931f-84981418b2f9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"0436df48-93c8-490d-af8c-ea3144c29ef4" -> "3c5baec9-0c88-465f-931f-84981418b2f9";
+"0d027cbc-4d3a-48ed-9d82-a5dcd86c844d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0436df48-93c8-490d-af8c-ea3144c29ef4" -> "0d027cbc-4d3a-48ed-9d82-a5dcd86c844d";
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"0d027cbc-4d3a-48ed-9d82-a5dcd86c844d" -> "1ada7f65-4cfc-4f57-81b6-80cc867dcdce";
+"5acaa35d-2f6b-439c-b8ef-6c7eaa103510" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5acaa35d-2f6b-439c-b8ef-6c7eaa103510";
+"5a61c058-aae0-4002-9666-5f423bad6665" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5a61c058-aae0-4002-9666-5f423bad6665";
+"6f385968-a3f5-4847-84bd-32f6d3f0e289" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6f385968-a3f5-4847-84bd-32f6d3f0e289";
+"156ae6a1-739e-4528-959d-7223845b6dbe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"6f385968-a3f5-4847-84bd-32f6d3f0e289" -> "156ae6a1-739e-4528-959d-7223845b6dbe";
+"dcd58c93-7fab-4cd3-8de7-bb0c90c9c0a1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6f385968-a3f5-4847-84bd-32f6d3f0e289" -> "dcd58c93-7fab-4cd3-8de7-bb0c90c9c0a1";
+"8c957989-9b7d-43aa-9de8-a2dc9d390413" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"6f385968-a3f5-4847-84bd-32f6d3f0e289" -> "8c957989-9b7d-43aa-9de8-a2dc9d390413";
+"34079538-ea9c-4612-af40-86a57c4e48d3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Chairs)", shape=box, style=filled];
+"6f385968-a3f5-4847-84bd-32f6d3f0e289" -> "34079538-ea9c-4612-af40-86a57c4e48d3";
+"0c513ccb-fafb-40bc-af24-68030c72243a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "0c513ccb-fafb-40bc-af24-68030c72243a";
+"512255b1-3c8f-4bb9-a7ff-8b525a69d053" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"0c513ccb-fafb-40bc-af24-68030c72243a" -> "512255b1-3c8f-4bb9-a7ff-8b525a69d053";
+"257518d9-c079-47da-b319-51f4ede73b93" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"0c513ccb-fafb-40bc-af24-68030c72243a" -> "257518d9-c079-47da-b319-51f4ede73b93";
+"f2ceb73e-d961-4304-abe5-182fb88df972" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"0c513ccb-fafb-40bc-af24-68030c72243a" -> "f2ceb73e-d961-4304-abe5-182fb88df972";
+"a232edbf-19a5-4510-adb5-1ba94b0ff1a9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Chairs)", shape=box, style=filled];
+"0c513ccb-fafb-40bc-af24-68030c72243a" -> "a232edbf-19a5-4510-adb5-1ba94b0ff1a9";
+"77627a08-8cf2-441b-b4cf-21705118292b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "77627a08-8cf2-441b-b4cf-21705118292b";
+"768eed62-419b-473d-862f-018975e8921e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"77627a08-8cf2-441b-b4cf-21705118292b" -> "768eed62-419b-473d-862f-018975e8921e";
+"15a1530e-80bd-4127-b168-df0e4db5ba7a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"77627a08-8cf2-441b-b4cf-21705118292b" -> "15a1530e-80bd-4127-b168-df0e4db5ba7a";
+"9be26d1d-9955-4ce4-b881-703cdcae8fd2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"77627a08-8cf2-441b-b4cf-21705118292b" -> "9be26d1d-9955-4ce4-b881-703cdcae8fd2";
+"bc23aca0-7148-4e42-8399-5334d5ebe907" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Floor)", shape=box, style=filled];
+"77627a08-8cf2-441b-b4cf-21705118292b" -> "bc23aca0-7148-4e42-8399-5334d5ebe907";
+"5257cd82-182c-4b86-b66c-f71b96813f41" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5257cd82-182c-4b86-b66c-f71b96813f41";
+"57003152-cc6a-490f-a7fc-58ac907d11f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"5257cd82-182c-4b86-b66c-f71b96813f41" -> "57003152-cc6a-490f-a7fc-58ac907d11f6";
+"0aedbecb-d1b8-4e2e-993e-36aab7a73a1f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5257cd82-182c-4b86-b66c-f71b96813f41" -> "0aedbecb-d1b8-4e2e-993e-36aab7a73a1f";
+"bab92a56-b434-496a-b22d-e12a94eb5997" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"5257cd82-182c-4b86-b66c-f71b96813f41" -> "bab92a56-b434-496a-b22d-e12a94eb5997";
+"11716e33-4a11-4437-b78e-5ccb3b728209" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Floor)", shape=box, style=filled];
+"5257cd82-182c-4b86-b66c-f71b96813f41" -> "11716e33-4a11-4437-b78e-5ccb3b728209";
+"fd1457ed-b2a0-43af-bf6e-66a7f57fdb12" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "fd1457ed-b2a0-43af-bf6e-66a7f57fdb12";
+"63df35e5-f002-496a-a386-4eff361e8709" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"fd1457ed-b2a0-43af-bf6e-66a7f57fdb12" -> "63df35e5-f002-496a-a386-4eff361e8709";
+"b2a00882-ba23-4ca5-8dc0-701f5dc34175" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fd1457ed-b2a0-43af-bf6e-66a7f57fdb12" -> "b2a00882-ba23-4ca5-8dc0-701f5dc34175";
+"22e4874b-8564-42d2-8764-ee98650e50ac" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"fd1457ed-b2a0-43af-bf6e-66a7f57fdb12" -> "22e4874b-8564-42d2-8764-ee98650e50ac";
+"d1b37042-2de1-4088-8b5f-e617eb88eadd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Table)", shape=box, style=filled];
+"fd1457ed-b2a0-43af-bf6e-66a7f57fdb12" -> "d1b37042-2de1-4088-8b5f-e617eb88eadd";
+"c6ce39e1-1d0c-412c-b1f7-40113849dd24" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "c6ce39e1-1d0c-412c-b1f7-40113849dd24";
+"8a4c981b-89e9-4c48-bd33-e7535ac2e0ec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"c6ce39e1-1d0c-412c-b1f7-40113849dd24" -> "8a4c981b-89e9-4c48-bd33-e7535ac2e0ec";
+"be427801-ca55-4fd1-8a50-6293b025074b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c6ce39e1-1d0c-412c-b1f7-40113849dd24" -> "be427801-ca55-4fd1-8a50-6293b025074b";
+"6aea8b90-9c11-450f-b911-f723610eb6e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"c6ce39e1-1d0c-412c-b1f7-40113849dd24" -> "6aea8b90-9c11-450f-b911-f723610eb6e2";
+"760bdfb1-0ead-46b5-a6ac-457da5389c4b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Table)", shape=box, style=filled];
+"c6ce39e1-1d0c-412c-b1f7-40113849dd24" -> "760bdfb1-0ead-46b5-a6ac-457da5389c4b";
+"104a387b-a847-4ae5-9e7a-1703f40d616e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "104a387b-a847-4ae5-9e7a-1703f40d616e";
+"cf1cdf60-3ffa-485d-9bb5-be137f4691f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"104a387b-a847-4ae5-9e7a-1703f40d616e" -> "cf1cdf60-3ffa-485d-9bb5-be137f4691f3";
+"6a8129dc-665d-42ef-9844-f39d7778b9ab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"104a387b-a847-4ae5-9e7a-1703f40d616e" -> "6a8129dc-665d-42ef-9844-f39d7778b9ab";
+"9d6d294e-ec18-4747-a041-d23fd4f52984" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Coffee)", shape=box, style=filled];
+"104a387b-a847-4ae5-9e7a-1703f40d616e" -> "9d6d294e-ec18-4747-a041-d23fd4f52984";
+"bf1a100a-8afb-427d-8fd9-87a216267bf6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bf1a100a-8afb-427d-8fd9-87a216267bf6";
+"9592ad67-8b1b-4531-a570-a606196f9977" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bf1a100a-8afb-427d-8fd9-87a216267bf6" -> "9592ad67-8b1b-4531-a570-a606196f9977";
+"e664a69b-9689-4166-9c37-20c314f8032b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"bf1a100a-8afb-427d-8fd9-87a216267bf6" -> "e664a69b-9689-4166-9c37-20c314f8032b";
+"56464c66-8daf-400d-bd61-9c283344beec" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Coffee)", shape=box, style=filled];
+"bf1a100a-8afb-427d-8fd9-87a216267bf6" -> "56464c66-8daf-400d-bd61-9c283344beec";
+"e20e9a5a-84fb-493e-9fa3-55876b86aef5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e20e9a5a-84fb-493e-9fa3-55876b86aef5";
+"d578ed48-352e-4e42-8278-434b4f5451d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e20e9a5a-84fb-493e-9fa3-55876b86aef5" -> "d578ed48-352e-4e42-8278-434b4f5451d6";
+"dc84eb2f-37a8-4ca8-b22f-d6dc29c36298" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"e20e9a5a-84fb-493e-9fa3-55876b86aef5" -> "dc84eb2f-37a8-4ca8-b22f-d6dc29c36298";
+"06a33dff-e6e9-41b2-81db-93a258d25af7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Dessert)", shape=box, style=filled];
+"e20e9a5a-84fb-493e-9fa3-55876b86aef5" -> "06a33dff-e6e9-41b2-81db-93a258d25af7";
+"5174faeb-e5a8-46d2-9b86-a993336a871b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5174faeb-e5a8-46d2-9b86-a993336a871b";
+"a43e4e37-9f23-4594-9cf6-760458b63cc4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5174faeb-e5a8-46d2-9b86-a993336a871b" -> "a43e4e37-9f23-4594-9cf6-760458b63cc4";
+"3cd38cb3-5ccf-411f-af56-83f6b9e0d4c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"5174faeb-e5a8-46d2-9b86-a993336a871b" -> "3cd38cb3-5ccf-411f-af56-83f6b9e0d4c9";
+"6f1c6363-0c07-4f5d-b321-5115a3e6adbe" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Dessert)", shape=box, style=filled];
+"5174faeb-e5a8-46d2-9b86-a993336a871b" -> "6f1c6363-0c07-4f5d-b321-5115a3e6adbe";
+"dc41a2c6-e8ee-44fa-a0a3-07b276871178" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "dc41a2c6-e8ee-44fa-a0a3-07b276871178";
+"4a0b7623-418a-41f9-b448-6299ebad679b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"dc41a2c6-e8ee-44fa-a0a3-07b276871178" -> "4a0b7623-418a-41f9-b448-6299ebad679b";
+"595fcc9b-650b-44d9-8767-b91ae4b92064" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"dc41a2c6-e8ee-44fa-a0a3-07b276871178" -> "595fcc9b-650b-44d9-8767-b91ae4b92064";
+"bc8058a9-f345-4dea-80b5-88a16b47e472" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Water)", shape=box, style=filled];
+"dc41a2c6-e8ee-44fa-a0a3-07b276871178" -> "bc8058a9-f345-4dea-80b5-88a16b47e472";
+"e4b6855b-17d5-495d-9fad-08a266d18ac2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e4b6855b-17d5-495d-9fad-08a266d18ac2";
+"070f7108-dd1f-4caf-a81b-46f489a9ff9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e4b6855b-17d5-495d-9fad-08a266d18ac2" -> "070f7108-dd1f-4caf-a81b-46f489a9ff9b";
+"dcd7df09-91a2-41f3-bab0-ec030c71310e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"e4b6855b-17d5-495d-9fad-08a266d18ac2" -> "dcd7df09-91a2-41f3-bab0-ec030c71310e";
+"8dc1b1df-4d9e-4603-ad38-0baa9c049797" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Water)", shape=box, style=filled];
+"e4b6855b-17d5-495d-9fad-08a266d18ac2" -> "8dc1b1df-4d9e-4603-ad38-0baa9c049797";
+"f887cbda-79fd-42ee-acd7-aef68095e6bd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f887cbda-79fd-42ee-acd7-aef68095e6bd";
+"abe418ae-3d7e-4f01-ac52-9926ec118bdd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"f887cbda-79fd-42ee-acd7-aef68095e6bd" -> "abe418ae-3d7e-4f01-ac52-9926ec118bdd";
+"5a33031a-8064-4896-9359-59074ec00788" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Exist(MilkDrink)", shape=ellipse, style=filled];
+"f887cbda-79fd-42ee-acd7-aef68095e6bd" -> "5a33031a-8064-4896-9359-59074ec00788";
+"5f200b61-1832-4a38-9a2b-0fe633e22f25" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(MilkDrink)", shape=box, style=filled];
+"f887cbda-79fd-42ee-acd7-aef68095e6bd" -> "5f200b61-1832-4a38-9a2b-0fe633e22f25";
+"3c719827-c0c0-4a62-9df0-8b6f2db0efca" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3c719827-c0c0-4a62-9df0-8b6f2db0efca";
+"9dfbc4a2-d4bd-4b03-a645-6c613afd8801" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"3c719827-c0c0-4a62-9df0-8b6f2db0efca" -> "9dfbc4a2-d4bd-4b03-a645-6c613afd8801";
+"505c330a-783a-4cc4-a3c4-fdf2c3c60ee4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Exist(MilkDrink)", shape=ellipse, style=filled];
+"3c719827-c0c0-4a62-9df0-8b6f2db0efca" -> "505c330a-783a-4cc4-a3c4-fdf2c3c60ee4";
+"9e90c5c6-4012-4199-b50b-9fc9959bd72b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(MilkDrink)", shape=box, style=filled];
+"3c719827-c0c0-4a62-9df0-8b6f2db0efca" -> "9e90c5c6-4012-4199-b50b-9fc9959bd72b";
+"f8322e61-c760-48a0-8134-bec0db031fa3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f8322e61-c760-48a0-8134-bec0db031fa3";
+"834ad8eb-436d-4c81-9931-61b88846c09a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"f8322e61-c760-48a0-8134-bec0db031fa3" -> "834ad8eb-436d-4c81-9931-61b88846c09a";
+"f9b84816-e5a7-4852-a61d-17d4734952bb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"f8322e61-c760-48a0-8134-bec0db031fa3" -> "f9b84816-e5a7-4852-a61d-17d4734952bb";
+"b892ace1-a73e-45ee-b821-926575e7402e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f8322e61-c760-48a0-8134-bec0db031fa3" -> "b892ace1-a73e-45ee-b821-926575e7402e";
+"e82c8c59-d69c-43d7-8c14-8f4c8af8bb73" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"f8322e61-c760-48a0-8134-bec0db031fa3" -> "e82c8c59-d69c-43d7-8c14-8f4c8af8bb73";
+"756a6001-5872-411e-9656-4598b09b2715" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "756a6001-5872-411e-9656-4598b09b2715";
+"bc5769d3-4515-4a5d-a071-4aaaef6f4ccb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"756a6001-5872-411e-9656-4598b09b2715" -> "bc5769d3-4515-4a5d-a071-4aaaef6f4ccb";
+"006499a6-def1-4daa-a18a-5e2be825511e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"756a6001-5872-411e-9656-4598b09b2715" -> "006499a6-def1-4daa-a18a-5e2be825511e";
+"0b08d271-4e68-43c3-9eba-76272242bb1e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"756a6001-5872-411e-9656-4598b09b2715" -> "0b08d271-4e68-43c3-9eba-76272242bb1e";
+"b890b50e-6907-4f8c-82dd-79f6874ca7b5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"756a6001-5872-411e-9656-4598b09b2715" -> "b890b50e-6907-4f8c-82dd-79f6874ca7b5";
+"a3b9edf2-4503-47c3-bb7a-bca0cf082adc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "a3b9edf2-4503-47c3-bb7a-bca0cf082adc";
+"2e5caa84-0a1d-4492-8eb9-9325c5bff8ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"a3b9edf2-4503-47c3-bb7a-bca0cf082adc" -> "2e5caa84-0a1d-4492-8eb9-9325c5bff8ef";
+"6a0dbd1f-dad3-4057-9560-c55e654f8b29" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a3b9edf2-4503-47c3-bb7a-bca0cf082adc" -> "6a0dbd1f-dad3-4057-9560-c55e654f8b29";
+"f045b81c-9246-4b92-bc5d-2f2a60da5c74" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a3b9edf2-4503-47c3-bb7a-bca0cf082adc" -> "f045b81c-9246-4b92-bc5d-2f2a60da5c74";
+"e6c2fff2-e61f-4d30-9963-313c507283b4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"a3b9edf2-4503-47c3-bb7a-bca0cf082adc" -> "e6c2fff2-e61f-4d30-9963-313c507283b4";
+"b755d127-56e2-4960-ad85-d858ad1c0b93" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b755d127-56e2-4960-ad85-d858ad1c0b93";
+"67766f45-1eb8-4c6e-a22d-e5d88c305596" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"b755d127-56e2-4960-ad85-d858ad1c0b93" -> "67766f45-1eb8-4c6e-a22d-e5d88c305596";
+"2d8dfbda-7ac2-4bf3-9d27-6beb723f0cd5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b755d127-56e2-4960-ad85-d858ad1c0b93" -> "2d8dfbda-7ac2-4bf3-9d27-6beb723f0cd5";
+"811b780f-ff50-414b-8892-b2088b9aa876" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b755d127-56e2-4960-ad85-d858ad1c0b93" -> "811b780f-ff50-414b-8892-b2088b9aa876";
+"00de2ae3-25f6-4ac9-be9b-c914d52f1d80" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"b755d127-56e2-4960-ad85-d858ad1c0b93" -> "00de2ae3-25f6-4ac9-be9b-c914d52f1d80";
+"fdef7b85-e1de-4320-9cf9-1a90f6da09dc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "fdef7b85-e1de-4320-9cf9-1a90f6da09dc";
+"5fa030e4-3735-4786-8df4-f286eb54c507" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"fdef7b85-e1de-4320-9cf9-1a90f6da09dc" -> "5fa030e4-3735-4786-8df4-f286eb54c507";
+"f1482616-78e8-4d02-bf01-6fef3474cedf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fdef7b85-e1de-4320-9cf9-1a90f6da09dc" -> "f1482616-78e8-4d02-bf01-6fef3474cedf";
+"a6b9d511-7200-4141-8323-7c9795d6ec62" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"fdef7b85-e1de-4320-9cf9-1a90f6da09dc" -> "a6b9d511-7200-4141-8323-7c9795d6ec62";
+"fcc60694-2f14-40a0-ad98-009615c14554" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,BrightTable)", shape=box, style=filled];
+"fdef7b85-e1de-4320-9cf9-1a90f6da09dc" -> "fcc60694-2f14-40a0-ad98-009615c14554";
+"71e31f7a-6278-45b4-bf59-8ee3b72d5eb3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "71e31f7a-6278-45b4-bf59-8ee3b72d5eb3";
+"4a2ec554-cacf-4119-b4ff-ca28deecb50a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"71e31f7a-6278-45b4-bf59-8ee3b72d5eb3" -> "4a2ec554-cacf-4119-b4ff-ca28deecb50a";
+"b31c21b7-e275-4e18-a29d-94aba02e18b7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"71e31f7a-6278-45b4-bf59-8ee3b72d5eb3" -> "b31c21b7-e275-4e18-a29d-94aba02e18b7";
+"07bdf2e1-65fc-4eca-b287-f3a27bb9943a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"71e31f7a-6278-45b4-bf59-8ee3b72d5eb3" -> "07bdf2e1-65fc-4eca-b287-f3a27bb9943a";
+"7336e78b-dfe2-49ad-ab03-082ff310e178" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,BrightTable)", shape=box, style=filled];
+"71e31f7a-6278-45b4-bf59-8ee3b72d5eb3" -> "7336e78b-dfe2-49ad-ab03-082ff310e178";
+"6f385c7d-ad18-49d2-8d52-42b9fee7ec45" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6f385c7d-ad18-49d2-8d52-42b9fee7ec45";
+"c77bcc04-cc34-4ce3-8419-d78d859202fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"6f385c7d-ad18-49d2-8d52-42b9fee7ec45" -> "c77bcc04-cc34-4ce3-8419-d78d859202fb";
+"1560a805-7b2e-4fd7-97a1-1e1a07d68c66" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6f385c7d-ad18-49d2-8d52-42b9fee7ec45" -> "1560a805-7b2e-4fd7-97a1-1e1a07d68c66";
+"90df8f80-2ddd-4c42-9135-f781ca2c99ed" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"6f385c7d-ad18-49d2-8d52-42b9fee7ec45" -> "90df8f80-2ddd-4c42-9135-f781ca2c99ed";
+"310b5bff-57fc-4048-99c3-4b8755ef4e46" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"6f385c7d-ad18-49d2-8d52-42b9fee7ec45" -> "310b5bff-57fc-4048-99c3-4b8755ef4e46";
+"e034cb78-c51b-45a9-b086-6dfbbd8837c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e034cb78-c51b-45a9-b086-6dfbbd8837c9";
+"2a110753-7a00-406b-b470-e780bb5785d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"e034cb78-c51b-45a9-b086-6dfbbd8837c9" -> "2a110753-7a00-406b-b470-e780bb5785d8";
+"50c846c3-53d5-42b5-b66d-93115ece3e6e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e034cb78-c51b-45a9-b086-6dfbbd8837c9" -> "50c846c3-53d5-42b5-b66d-93115ece3e6e";
+"bed539fb-82fa-4847-a200-018df318dff2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"e034cb78-c51b-45a9-b086-6dfbbd8837c9" -> "bed539fb-82fa-4847-a200-018df318dff2";
+"9a6fde0f-1b5e-49c5-b870-3e308e7f460c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"e034cb78-c51b-45a9-b086-6dfbbd8837c9" -> "9a6fde0f-1b5e-49c5-b870-3e308e7f460c";
+"e2dc7578-000a-4e38-a525-93d26ee743b1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e2dc7578-000a-4e38-a525-93d26ee743b1";
+"e85d5cbb-5b61-420a-a815-6568d921baad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"e2dc7578-000a-4e38-a525-93d26ee743b1" -> "e85d5cbb-5b61-420a-a815-6568d921baad";
+"7237eafd-ce32-4249-847b-a5cc536fc1d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e2dc7578-000a-4e38-a525-93d26ee743b1" -> "7237eafd-ce32-4249-847b-a5cc536fc1d9";
+"d3eab907-ace7-4de5-a647-5bee699778d5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"e2dc7578-000a-4e38-a525-93d26ee743b1" -> "d3eab907-ace7-4de5-a647-5bee699778d5";
+"41b241f2-6239-4e66-a9eb-c4a2bd809b2e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"e2dc7578-000a-4e38-a525-93d26ee743b1" -> "41b241f2-6239-4e66-a9eb-c4a2bd809b2e";
+"a4158887-42f3-4699-b0ee-1da6eef3bd65" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "a4158887-42f3-4699-b0ee-1da6eef3bd65";
+"ed384a38-5be1-4604-83b7-958335a6185d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"a4158887-42f3-4699-b0ee-1da6eef3bd65" -> "ed384a38-5be1-4604-83b7-958335a6185d";
+"e8d5e3ff-d5ad-4a5a-90d6-c198ed06446a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a4158887-42f3-4699-b0ee-1da6eef3bd65" -> "e8d5e3ff-d5ad-4a5a-90d6-c198ed06446a";
+"2db70426-2b53-4497-b4ca-556a0d01d586" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"a4158887-42f3-4699-b0ee-1da6eef3bd65" -> "2db70426-2b53-4497-b4ca-556a0d01d586";
+"b6f84f8a-e197-47fd-9c6d-738ae6ee42e7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"a4158887-42f3-4699-b0ee-1da6eef3bd65" -> "b6f84f8a-e197-47fd-9c6d-738ae6ee42e7";
+"2e5476e8-c94c-4628-8e50-974a5abbd50b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2e5476e8-c94c-4628-8e50-974a5abbd50b";
+"25d1b3e3-06ec-43f8-9bdd-c46c68d4b3b0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"2e5476e8-c94c-4628-8e50-974a5abbd50b" -> "25d1b3e3-06ec-43f8-9bdd-c46c68d4b3b0";
+"16d65b39-e95e-4972-b048-a6e7251ba689" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2e5476e8-c94c-4628-8e50-974a5abbd50b" -> "16d65b39-e95e-4972-b048-a6e7251ba689";
+"089701e1-4c2d-4c25-8fcf-3fa5abb7f8f9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"2e5476e8-c94c-4628-8e50-974a5abbd50b" -> "089701e1-4c2d-4c25-8fcf-3fa5abb7f8f9";
+"77427661-0eee-4a1e-af10-d769245f7268" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"2e5476e8-c94c-4628-8e50-974a5abbd50b" -> "77427661-0eee-4a1e-af10-d769245f7268";
+"b97daea1-259e-4da7-908c-2194b1e4faaf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b97daea1-259e-4da7-908c-2194b1e4faaf";
+"5e849c18-18ee-4ac3-b17c-9168e36406f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"b97daea1-259e-4da7-908c-2194b1e4faaf" -> "5e849c18-18ee-4ac3-b17c-9168e36406f2";
+"82466a6e-61e4-419d-8be1-1aadf126c405" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b97daea1-259e-4da7-908c-2194b1e4faaf" -> "82466a6e-61e4-419d-8be1-1aadf126c405";
+"1d858640-7346-4898-9eb3-5e49bb05f1e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"b97daea1-259e-4da7-908c-2194b1e4faaf" -> "1d858640-7346-4898-9eb3-5e49bb05f1e2";
+"7bbadfc4-914b-4e76-b9f8-0ab1f5930ce1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"b97daea1-259e-4da7-908c-2194b1e4faaf" -> "7bbadfc4-914b-4e76-b9f8-0ab1f5930ce1";
+"69e00aac-f7bc-4c09-9d13-ef897236102b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "69e00aac-f7bc-4c09-9d13-ef897236102b";
+"320c90f1-9770-4b01-bac3-6698884a67d0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"69e00aac-f7bc-4c09-9d13-ef897236102b" -> "320c90f1-9770-4b01-bac3-6698884a67d0";
+"643bbb37-60a5-4abb-8347-2479abbab0c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"69e00aac-f7bc-4c09-9d13-ef897236102b" -> "643bbb37-60a5-4abb-8347-2479abbab0c9";
+"73fb90fb-e136-41c0-b96a-961d1f5618b8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"69e00aac-f7bc-4c09-9d13-ef897236102b" -> "73fb90fb-e136-41c0-b96a-961d1f5618b8";
+"bf095964-eed1-4f4d-818b-1884876b036f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"69e00aac-f7bc-4c09-9d13-ef897236102b" -> "bf095964-eed1-4f4d-818b-1884876b036f";
+"2976000f-f58d-477f-8ef0-5bb449c20e74" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2976000f-f58d-477f-8ef0-5bb449c20e74";
+"f36cdeae-df64-4087-828f-0fe7c8dfdfd4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"2976000f-f58d-477f-8ef0-5bb449c20e74" -> "f36cdeae-df64-4087-828f-0fe7c8dfdfd4";
+"9fcb2912-5056-454f-8bce-4d11df6a5348" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2976000f-f58d-477f-8ef0-5bb449c20e74" -> "9fcb2912-5056-454f-8bce-4d11df6a5348";
+"2dae5760-f6a7-4364-b7cb-652f50b90c83" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"2976000f-f58d-477f-8ef0-5bb449c20e74" -> "2dae5760-f6a7-4364-b7cb-652f50b90c83";
+"3ce66a5d-6428-42d5-bc64-841446ff2b36" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"2976000f-f58d-477f-8ef0-5bb449c20e74" -> "3ce66a5d-6428-42d5-bc64-841446ff2b36";
+"bfad1e0d-b43d-41a2-bae6-fe2de994b3bc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bfad1e0d-b43d-41a2-bae6-fe2de994b3bc";
+"9270904a-6cec-4caf-ad65-574fa5de72ec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"bfad1e0d-b43d-41a2-bae6-fe2de994b3bc" -> "9270904a-6cec-4caf-ad65-574fa5de72ec";
+"c3075fdf-2eb6-4418-aa8b-3aa1959d9045" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bfad1e0d-b43d-41a2-bae6-fe2de994b3bc" -> "c3075fdf-2eb6-4418-aa8b-3aa1959d9045";
+"f796afb5-ed2d-4825-bb50-929711a0f552" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"bfad1e0d-b43d-41a2-bae6-fe2de994b3bc" -> "f796afb5-ed2d-4825-bb50-929711a0f552";
+"26bd79ef-78df-4886-86b9-d7dea70f3e9c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,WaterTable)", shape=box, style=filled];
+"bfad1e0d-b43d-41a2-bae6-fe2de994b3bc" -> "26bd79ef-78df-4886-86b9-d7dea70f3e9c";
+"fcf1e90b-19f8-46f4-8bb3-7a75de295c7d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "fcf1e90b-19f8-46f4-8bb3-7a75de295c7d";
+"cb674bdb-7312-4677-a96c-9c6f191dd762" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"fcf1e90b-19f8-46f4-8bb3-7a75de295c7d" -> "cb674bdb-7312-4677-a96c-9c6f191dd762";
+"76478388-380e-4236-8999-f5e7c6afccf6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fcf1e90b-19f8-46f4-8bb3-7a75de295c7d" -> "76478388-380e-4236-8999-f5e7c6afccf6";
+"ba8b5826-592f-456b-92a8-e060ab5b16ac" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"fcf1e90b-19f8-46f4-8bb3-7a75de295c7d" -> "ba8b5826-592f-456b-92a8-e060ab5b16ac";
+"2fa942d5-e576-4f09-930c-d948bdae3e42" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,WaterTable)", shape=box, style=filled];
+"fcf1e90b-19f8-46f4-8bb3-7a75de295c7d" -> "2fa942d5-e576-4f09-930c-d948bdae3e42";
+"d5cb3020-4e02-4d0d-9148-ea648f2bb9cc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d5cb3020-4e02-4d0d-9148-ea648f2bb9cc";
+"8237fd26-b823-4596-958e-9ebeda722a54" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d5cb3020-4e02-4d0d-9148-ea648f2bb9cc" -> "8237fd26-b823-4596-958e-9ebeda722a54";
+"c825a1d6-a5f7-452f-a848-24d15f63414b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
+"d5cb3020-4e02-4d0d-9148-ea648f2bb9cc" -> "c825a1d6-a5f7-452f-a848-24d15f63414b";
+"e28ec206-b5b3-4fa6-9e68-48198f269c79" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e28ec206-b5b3-4fa6-9e68-48198f269c79";
+"d25928c8-1f99-45fe-b7ee-74f10b4f693b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e28ec206-b5b3-4fa6-9e68-48198f269c79" -> "d25928c8-1f99-45fe-b7ee-74f10b4f693b";
+"c98a5d3c-9cca-4a65-9916-21883b730200" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
+"e28ec206-b5b3-4fa6-9e68-48198f269c79" -> "c98a5d3c-9cca-4a65-9916-21883b730200";
+"27a991b1-f415-4f13-a39a-07e5d8795ea6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "27a991b1-f415-4f13-a39a-07e5d8795ea6";
+"02577764-d663-4b32-ad51-80f7cb737c70" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"27a991b1-f415-4f13-a39a-07e5d8795ea6" -> "02577764-d663-4b32-ad51-80f7cb737c70";
+"573e4c1a-9adf-4a2e-8334-7f4b9603017a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"27a991b1-f415-4f13-a39a-07e5d8795ea6" -> "573e4c1a-9adf-4a2e-8334-7f4b9603017a";
+"ea552750-a109-466f-961c-0791bf5d30e3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"27a991b1-f415-4f13-a39a-07e5d8795ea6" -> "ea552750-a109-466f-961c-0791bf5d30e3";
+"8000c9d4-a026-4d6b-9ad9-100af03743d6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"27a991b1-f415-4f13-a39a-07e5d8795ea6" -> "8000c9d4-a026-4d6b-9ad9-100af03743d6";
+"2c89dc33-6fc6-4051-92a4-a635e8aa64ca" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2c89dc33-6fc6-4051-92a4-a635e8aa64ca";
+"413c8a22-430f-400b-b511-f6117cd8d699" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"2c89dc33-6fc6-4051-92a4-a635e8aa64ca" -> "413c8a22-430f-400b-b511-f6117cd8d699";
+"687e0702-e6e1-436a-866c-f7299042afc3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2c89dc33-6fc6-4051-92a4-a635e8aa64ca" -> "687e0702-e6e1-436a-866c-f7299042afc3";
+"7ab1269e-e35b-4027-b10d-93d6ca701a34" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"2c89dc33-6fc6-4051-92a4-a635e8aa64ca" -> "7ab1269e-e35b-4027-b10d-93d6ca701a34";
+"fc2c41f0-271a-4371-b3bd-e23dd2d875f9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"2c89dc33-6fc6-4051-92a4-a635e8aa64ca" -> "fc2c41f0-271a-4371-b3bd-e23dd2d875f9";
+"63bbcb66-0e65-4d99-a27a-a3587fa49a3f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "63bbcb66-0e65-4d99-a27a-a3587fa49a3f";
+"6d64bcf2-064b-4eec-8155-a6249d808a9d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"63bbcb66-0e65-4d99-a27a-a3587fa49a3f" -> "6d64bcf2-064b-4eec-8155-a6249d808a9d";
+"e543a2a0-30cb-467f-b928-ea82daf32669" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"63bbcb66-0e65-4d99-a27a-a3587fa49a3f" -> "e543a2a0-30cb-467f-b928-ea82daf32669";
+"3b5faddc-7688-4cf7-8282-d1ab88e56b1e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"63bbcb66-0e65-4d99-a27a-a3587fa49a3f" -> "3b5faddc-7688-4cf7-8282-d1ab88e56b1e";
+"d1caa5bc-ddd7-488b-8f7d-712dcfd5a096" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"63bbcb66-0e65-4d99-a27a-a3587fa49a3f" -> "d1caa5bc-ddd7-488b-8f7d-712dcfd5a096";
+"af05df4c-a247-45d7-8cb1-0802c22cb65a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "af05df4c-a247-45d7-8cb1-0802c22cb65a";
+"6ec02829-3e8d-4b90-87f5-91e9d466d127" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"af05df4c-a247-45d7-8cb1-0802c22cb65a" -> "6ec02829-3e8d-4b90-87f5-91e9d466d127";
+"5a6b9b87-c0ff-4237-be5b-29d7f3adc571" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"af05df4c-a247-45d7-8cb1-0802c22cb65a" -> "5a6b9b87-c0ff-4237-be5b-29d7f3adc571";
+"fda32cb2-9479-440b-b0e3-d54e7b855d67" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"af05df4c-a247-45d7-8cb1-0802c22cb65a" -> "fda32cb2-9479-440b-b0e3-d54e7b855d67";
+"96ed9db2-f11a-436b-ac00-65bcc7089658" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"af05df4c-a247-45d7-8cb1-0802c22cb65a" -> "96ed9db2-f11a-436b-ac00-65bcc7089658";
+"357efdd8-9523-409b-b111-9eba86ebb279" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "357efdd8-9523-409b-b111-9eba86ebb279";
+"725da734-2dde-4338-898b-8eb99f31ffb5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"357efdd8-9523-409b-b111-9eba86ebb279" -> "725da734-2dde-4338-898b-8eb99f31ffb5";
+"41cd0dec-c20e-429a-9052-f1e5dc47c3b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"357efdd8-9523-409b-b111-9eba86ebb279" -> "41cd0dec-c20e-429a-9052-f1e5dc47c3b6";
+"1cc26fcd-14f9-4534-ada7-608f39f271c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"357efdd8-9523-409b-b111-9eba86ebb279" -> "1cc26fcd-14f9-4534-ada7-608f39f271c9";
+"154c27c1-f26e-4a7c-8fca-821c67c6df4a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"357efdd8-9523-409b-b111-9eba86ebb279" -> "154c27c1-f26e-4a7c-8fca-821c67c6df4a";
+"e7690e2b-f63d-448d-8ba4-aa6e073cec63" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e7690e2b-f63d-448d-8ba4-aa6e073cec63";
+"519ab3a9-d5b5-4866-b9c9-1f0cb46e08da" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"e7690e2b-f63d-448d-8ba4-aa6e073cec63" -> "519ab3a9-d5b5-4866-b9c9-1f0cb46e08da";
+"67eec967-9e13-4829-98fc-5ab457415e5a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"e7690e2b-f63d-448d-8ba4-aa6e073cec63" -> "67eec967-9e13-4829-98fc-5ab457415e5a";
+"94601f3b-0988-4521-b762-858f83a16962" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e7690e2b-f63d-448d-8ba4-aa6e073cec63" -> "94601f3b-0988-4521-b762-858f83a16962";
+"af67d48b-581e-4f8c-9a34-8eb40374279b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"e7690e2b-f63d-448d-8ba4-aa6e073cec63" -> "af67d48b-581e-4f8c-9a34-8eb40374279b";
+"5b0a92b5-c6ea-4905-a031-b4cf236f554e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5b0a92b5-c6ea-4905-a031-b4cf236f554e";
+"e895c1c9-3eeb-43ad-ba9a-6725f830b745" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"5b0a92b5-c6ea-4905-a031-b4cf236f554e" -> "e895c1c9-3eeb-43ad-ba9a-6725f830b745";
+"ac039bb1-aa57-40a6-977b-a99ac819540b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5b0a92b5-c6ea-4905-a031-b4cf236f554e" -> "ac039bb1-aa57-40a6-977b-a99ac819540b";
+"c72acc87-4595-4401-a157-a2be9de817e5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"5b0a92b5-c6ea-4905-a031-b4cf236f554e" -> "c72acc87-4595-4401-a157-a2be9de817e5";
+"34a536c6-7969-46e1-be66-d6095f08efd2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,CoffeeTable)", shape=box, style=filled];
+"5b0a92b5-c6ea-4905-a031-b4cf236f554e" -> "34a536c6-7969-46e1-be66-d6095f08efd2";
+"c20979c4-e5f5-4227-88a7-e46de769aaff" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "c20979c4-e5f5-4227-88a7-e46de769aaff";
+"f9e4fb11-d429-4a92-94d6-0b767ac5cf7a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"c20979c4-e5f5-4227-88a7-e46de769aaff" -> "f9e4fb11-d429-4a92-94d6-0b767ac5cf7a";
+"42687c93-be97-4a2f-8a09-ce0d9e60a9b8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c20979c4-e5f5-4227-88a7-e46de769aaff" -> "42687c93-be97-4a2f-8a09-ce0d9e60a9b8";
+"ebc5df15-34e5-4af4-94f9-5c21a87636ee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"c20979c4-e5f5-4227-88a7-e46de769aaff" -> "ebc5df15-34e5-4af4-94f9-5c21a87636ee";
+"dd32cf5f-1639-4090-9fa7-6bb6885b7f7d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,CoffeeTable)", shape=box, style=filled];
+"c20979c4-e5f5-4227-88a7-e46de769aaff" -> "dd32cf5f-1639-4090-9fa7-6bb6885b7f7d";
+"801804ea-2973-4813-a83e-3f967aa37235" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "801804ea-2973-4813-a83e-3f967aa37235";
+"03ceebe1-f789-4e5f-b268-673953e52fe3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"801804ea-2973-4813-a83e-3f967aa37235" -> "03ceebe1-f789-4e5f-b268-673953e52fe3";
+"97bacb8c-9b60-4697-a5b7-f0b5304259c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"801804ea-2973-4813-a83e-3f967aa37235" -> "97bacb8c-9b60-4697-a5b7-f0b5304259c3";
+"a0a8d458-770b-45f3-a61e-6d6405dc6d86" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"801804ea-2973-4813-a83e-3f967aa37235" -> "a0a8d458-770b-45f3-a61e-6d6405dc6d86";
+"78254e3f-21d2-43c4-92f9-de3cb22f82af" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"801804ea-2973-4813-a83e-3f967aa37235" -> "78254e3f-21d2-43c4-92f9-de3cb22f82af";
+"bf96c080-fcb6-4f26-a2c1-31b2d99f9a33" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bf96c080-fcb6-4f26-a2c1-31b2d99f9a33";
+"69d1b556-b51d-4dfd-bcca-9616e33eb3aa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"bf96c080-fcb6-4f26-a2c1-31b2d99f9a33" -> "69d1b556-b51d-4dfd-bcca-9616e33eb3aa";
+"ba97a2a9-85c1-49b8-8964-0cb131b28fa0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bf96c080-fcb6-4f26-a2c1-31b2d99f9a33" -> "ba97a2a9-85c1-49b8-8964-0cb131b28fa0";
+"8fc4a594-0b2c-465a-a3c5-e61fcc4ec285" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"bf96c080-fcb6-4f26-a2c1-31b2d99f9a33" -> "8fc4a594-0b2c-465a-a3c5-e61fcc4ec285";
+"0c7c68cb-3c00-4f1b-b4ac-159f0febfd94" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"bf96c080-fcb6-4f26-a2c1-31b2d99f9a33" -> "0c7c68cb-3c00-4f1b-b4ac-159f0febfd94";
+"9571a8b5-83c4-447b-9cbc-0d3330767e0f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "9571a8b5-83c4-447b-9cbc-0d3330767e0f";
+"87475a82-c787-4333-b98d-4f5129eb1e2a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"9571a8b5-83c4-447b-9cbc-0d3330767e0f" -> "87475a82-c787-4333-b98d-4f5129eb1e2a";
+"c4807754-3c85-431a-b6f2-7dd3d51edcc0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9571a8b5-83c4-447b-9cbc-0d3330767e0f" -> "c4807754-3c85-431a-b6f2-7dd3d51edcc0";
+"22296acb-4dcc-4a73-b12e-2f0a389b8693" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"9571a8b5-83c4-447b-9cbc-0d3330767e0f" -> "22296acb-4dcc-4a73-b12e-2f0a389b8693";
+"f7b8591b-61b1-4710-80cb-4c85783da0a5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"9571a8b5-83c4-447b-9cbc-0d3330767e0f" -> "f7b8591b-61b1-4710-80cb-4c85783da0a5";
+"440a9751-9462-4400-a181-b7c27b2a9db7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "440a9751-9462-4400-a181-b7c27b2a9db7";
+"93033635-ec70-4700-ae88-618d64d20102" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"440a9751-9462-4400-a181-b7c27b2a9db7" -> "93033635-ec70-4700-ae88-618d64d20102";
+"b1963276-0f4f-434c-aee3-ab70b690cd02" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"440a9751-9462-4400-a181-b7c27b2a9db7" -> "b1963276-0f4f-434c-aee3-ab70b690cd02";
+"74706a24-703f-4efd-ac8c-98440aeb77a9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"440a9751-9462-4400-a181-b7c27b2a9db7" -> "74706a24-703f-4efd-ac8c-98440aeb77a9";
+"488d9b15-98de-41ce-9a9a-acaa95681b1f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"440a9751-9462-4400-a181-b7c27b2a9db7" -> "488d9b15-98de-41ce-9a9a-acaa95681b1f";
+"6b084472-7fe5-4a08-be92-dcfe450f1927" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6b084472-7fe5-4a08-be92-dcfe450f1927";
+"7d87a66e-cf22-41e7-abda-d8985caf68dd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"6b084472-7fe5-4a08-be92-dcfe450f1927" -> "7d87a66e-cf22-41e7-abda-d8985caf68dd";
+"e36801ef-69f3-4c4f-bd53-fbe7cc216d65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6b084472-7fe5-4a08-be92-dcfe450f1927" -> "e36801ef-69f3-4c4f-bd53-fbe7cc216d65";
+"9080702b-8b46-4347-b48c-e64cd1c72594" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"6b084472-7fe5-4a08-be92-dcfe450f1927" -> "9080702b-8b46-4347-b48c-e64cd1c72594";
+"afb32060-9881-48b5-962f-13a9b26a7062" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"6b084472-7fe5-4a08-be92-dcfe450f1927" -> "afb32060-9881-48b5-962f-13a9b26a7062";
+"43c48a71-5a8e-4432-89b5-43fb12bf680e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "43c48a71-5a8e-4432-89b5-43fb12bf680e";
+"7f1d8d28-75a8-4022-94a4-b93b6e7bfe98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"43c48a71-5a8e-4432-89b5-43fb12bf680e" -> "7f1d8d28-75a8-4022-94a4-b93b6e7bfe98";
+"cca9a968-10ae-43d9-896c-86dc4547f343" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"43c48a71-5a8e-4432-89b5-43fb12bf680e" -> "cca9a968-10ae-43d9-896c-86dc4547f343";
+"afdab362-4166-4654-b049-f4d98fe2a04f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"43c48a71-5a8e-4432-89b5-43fb12bf680e" -> "afdab362-4166-4654-b049-f4d98fe2a04f";
+"c6355bfb-1a20-4b57-b1c9-2bbc4549de38" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"43c48a71-5a8e-4432-89b5-43fb12bf680e" -> "c6355bfb-1a20-4b57-b1c9-2bbc4549de38";
+"75062b28-a86a-403d-b4f1-d7dd1b4c0ab6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "75062b28-a86a-403d-b4f1-d7dd1b4c0ab6";
+"d0eed6d5-ac3d-4355-afbc-96240ab04004" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"75062b28-a86a-403d-b4f1-d7dd1b4c0ab6" -> "d0eed6d5-ac3d-4355-afbc-96240ab04004";
+"3b3bdda4-8900-4393-baab-4ce40b2c8813" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"75062b28-a86a-403d-b4f1-d7dd1b4c0ab6" -> "3b3bdda4-8900-4393-baab-4ce40b2c8813";
+"ae672419-e000-4454-9daf-12d3bd1e7b7d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"75062b28-a86a-403d-b4f1-d7dd1b4c0ab6" -> "ae672419-e000-4454-9daf-12d3bd1e7b7d";
+"77db7586-030f-4c38-9c00-6579fd80a558" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,WaterTable)", shape=box, style=filled];
+"75062b28-a86a-403d-b4f1-d7dd1b4c0ab6" -> "77db7586-030f-4c38-9c00-6579fd80a558";
+"36f0492d-b544-43d0-b17e-7ee3cade6e77" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "36f0492d-b544-43d0-b17e-7ee3cade6e77";
+"fb099622-2563-4600-a960-b4ef8701b551" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"36f0492d-b544-43d0-b17e-7ee3cade6e77" -> "fb099622-2563-4600-a960-b4ef8701b551";
+"b685bea1-4c45-414a-8757-7f14faba128f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"36f0492d-b544-43d0-b17e-7ee3cade6e77" -> "b685bea1-4c45-414a-8757-7f14faba128f";
+"dc45fd1b-9411-49bf-bfc1-8a66a3c693f7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"36f0492d-b544-43d0-b17e-7ee3cade6e77" -> "dc45fd1b-9411-49bf-bfc1-8a66a3c693f7";
+"1225c423-38ba-449e-a0d2-3a3f22047cdc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,WaterTable)", shape=box, style=filled];
+"36f0492d-b544-43d0-b17e-7ee3cade6e77" -> "1225c423-38ba-449e-a0d2-3a3f22047cdc";
+"df747a34-fd41-4806-a3ac-f48039e2dc10" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "df747a34-fd41-4806-a3ac-f48039e2dc10";
+"ad6e0026-3910-4ca0-a538-e2ce2afdd4d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"df747a34-fd41-4806-a3ac-f48039e2dc10" -> "ad6e0026-3910-4ca0-a538-e2ce2afdd4d8";
+"eb397d43-a93a-418f-9cd7-c76469c32f50" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"df747a34-fd41-4806-a3ac-f48039e2dc10" -> "eb397d43-a93a-418f-9cd7-c76469c32f50";
+"9c86ebe6-2eb4-4371-ae06-8088d17d1081" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"df747a34-fd41-4806-a3ac-f48039e2dc10" -> "9c86ebe6-2eb4-4371-ae06-8088d17d1081";
+"97576553-3f2f-429b-ad22-3b48711162cb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"df747a34-fd41-4806-a3ac-f48039e2dc10" -> "97576553-3f2f-429b-ad22-3b48711162cb";
+"122635e8-1e6d-4cbc-a883-6a2410f50467" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "122635e8-1e6d-4cbc-a883-6a2410f50467";
+"fc2b62b2-2877-44b9-9c71-d1bb7574a290" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"122635e8-1e6d-4cbc-a883-6a2410f50467" -> "fc2b62b2-2877-44b9-9c71-d1bb7574a290";
+"4fbdba4b-4e97-427c-abc4-b6088b5c8f18" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"122635e8-1e6d-4cbc-a883-6a2410f50467" -> "4fbdba4b-4e97-427c-abc4-b6088b5c8f18";
+"ab538a18-032d-4cb5-b9a3-deccc603b16f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"122635e8-1e6d-4cbc-a883-6a2410f50467" -> "ab538a18-032d-4cb5-b9a3-deccc603b16f";
+"e6ee2f3f-35d9-4171-9f0d-04da93b5488e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"122635e8-1e6d-4cbc-a883-6a2410f50467" -> "e6ee2f3f-35d9-4171-9f0d-04da93b5488e";
+"9dc33268-f0e6-4c1a-8a72-13f6b8d4ae77" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "9dc33268-f0e6-4c1a-8a72-13f6b8d4ae77";
+"4cbad523-0beb-4146-b0c2-c83ca3ccf159" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"9dc33268-f0e6-4c1a-8a72-13f6b8d4ae77" -> "4cbad523-0beb-4146-b0c2-c83ca3ccf159";
+"d5655201-cf7f-4b5d-9adc-dc9ee630b287" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9dc33268-f0e6-4c1a-8a72-13f6b8d4ae77" -> "d5655201-cf7f-4b5d-9adc-dc9ee630b287";
+"91dabde5-893a-4b25-9e46-0b72c8325415" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9dc33268-f0e6-4c1a-8a72-13f6b8d4ae77" -> "91dabde5-893a-4b25-9e46-0b72c8325415";
+"96d238d3-df8c-47b1-9afb-c10e78fee039" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"9dc33268-f0e6-4c1a-8a72-13f6b8d4ae77" -> "96d238d3-df8c-47b1-9afb-c10e78fee039";
+"8a064f9e-0372-4bdf-9465-f7f44414234f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8a064f9e-0372-4bdf-9465-f7f44414234f";
+"b5f54f3c-823e-4c48-b13d-d780a0eb4eb0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"8a064f9e-0372-4bdf-9465-f7f44414234f" -> "b5f54f3c-823e-4c48-b13d-d780a0eb4eb0";
+"89e04d58-5e69-4910-9f1c-35a6f647f68e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8a064f9e-0372-4bdf-9465-f7f44414234f" -> "89e04d58-5e69-4910-9f1c-35a6f647f68e";
+"837fe7e8-7646-4f8b-94a1-d8fd0215e587" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8a064f9e-0372-4bdf-9465-f7f44414234f" -> "837fe7e8-7646-4f8b-94a1-d8fd0215e587";
+"5d87d48a-9adf-457b-b12e-19ae7ffe4721" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"8a064f9e-0372-4bdf-9465-f7f44414234f" -> "5d87d48a-9adf-457b-b12e-19ae7ffe4721";
+"2984bc1c-bcf4-4241-8a4d-43cfa38f3707" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2984bc1c-bcf4-4241-8a4d-43cfa38f3707";
+"724a6a93-858a-4e7e-b605-e78f0e69ac8a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"2984bc1c-bcf4-4241-8a4d-43cfa38f3707" -> "724a6a93-858a-4e7e-b605-e78f0e69ac8a";
+"7ca6a300-46b2-4eb7-ae28-1b1906d6845e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2984bc1c-bcf4-4241-8a4d-43cfa38f3707" -> "7ca6a300-46b2-4eb7-ae28-1b1906d6845e";
+"f02a4cf3-e7e6-4ba7-8785-256c7e2ec67c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2984bc1c-bcf4-4241-8a4d-43cfa38f3707" -> "f02a4cf3-e7e6-4ba7-8785-256c7e2ec67c";
+"1c21071a-f698-444c-9a42-4c268226d868" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,BrightTable)", shape=box, style=filled];
+"2984bc1c-bcf4-4241-8a4d-43cfa38f3707" -> "1c21071a-f698-444c-9a42-4c268226d868";
+"afdc5417-4174-4acf-b154-466640f47121" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "afdc5417-4174-4acf-b154-466640f47121";
+"53fae12e-0601-47d5-955d-235e9035d37a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"afdc5417-4174-4acf-b154-466640f47121" -> "53fae12e-0601-47d5-955d-235e9035d37a";
+"745f5376-66fa-43a2-8a10-98a72da73ab5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"afdc5417-4174-4acf-b154-466640f47121" -> "745f5376-66fa-43a2-8a10-98a72da73ab5";
+"d5210238-b942-4771-b053-4aa3a4ac2aa1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"afdc5417-4174-4acf-b154-466640f47121" -> "d5210238-b942-4771-b053-4aa3a4ac2aa1";
+"92c6de1c-420b-43d7-b5cb-4e8d52e7555a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,BrightTable)", shape=box, style=filled];
+"afdc5417-4174-4acf-b154-466640f47121" -> "92c6de1c-420b-43d7-b5cb-4e8d52e7555a";
+"cd558a0b-9d0f-49ef-b57d-ebd98c7c006b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "cd558a0b-9d0f-49ef-b57d-ebd98c7c006b";
+"a3781f75-f61f-44f8-836f-eb07a6f382b8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"cd558a0b-9d0f-49ef-b57d-ebd98c7c006b" -> "a3781f75-f61f-44f8-836f-eb07a6f382b8";
+"fc4d957b-0c9c-4dcf-88da-324cd6394653" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cd558a0b-9d0f-49ef-b57d-ebd98c7c006b" -> "fc4d957b-0c9c-4dcf-88da-324cd6394653";
+"3851ec04-8cd7-4947-864e-4b9911bc1e0c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"cd558a0b-9d0f-49ef-b57d-ebd98c7c006b" -> "3851ec04-8cd7-4947-864e-4b9911bc1e0c";
+"7c56c648-1baf-44c3-a77b-90babbbc26bd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"cd558a0b-9d0f-49ef-b57d-ebd98c7c006b" -> "7c56c648-1baf-44c3-a77b-90babbbc26bd";
+"81d3a74b-83f1-4c4d-a1f8-a7f9189c6084" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "81d3a74b-83f1-4c4d-a1f8-a7f9189c6084";
+"1151ab61-e9ef-4e51-a035-d809aa1296a6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"81d3a74b-83f1-4c4d-a1f8-a7f9189c6084" -> "1151ab61-e9ef-4e51-a035-d809aa1296a6";
+"3a8df072-70ec-4ee9-b721-7a3514a82f94" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"81d3a74b-83f1-4c4d-a1f8-a7f9189c6084" -> "3a8df072-70ec-4ee9-b721-7a3514a82f94";
+"bf6d1e19-0973-4321-be7b-0b37527d5d0f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"81d3a74b-83f1-4c4d-a1f8-a7f9189c6084" -> "bf6d1e19-0973-4321-be7b-0b37527d5d0f";
+"58d18c7b-3a89-4dea-a0c0-8515a31327e4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"81d3a74b-83f1-4c4d-a1f8-a7f9189c6084" -> "58d18c7b-3a89-4dea-a0c0-8515a31327e4";
+"301d7108-c6ac-4732-8b0f-ec1d0bad0d5f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "301d7108-c6ac-4732-8b0f-ec1d0bad0d5f";
+"c6d68849-8d9e-4e58-a632-211f052d7171" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"301d7108-c6ac-4732-8b0f-ec1d0bad0d5f" -> "c6d68849-8d9e-4e58-a632-211f052d7171";
+"39b9a303-a8a1-4d01-b64c-d4f3eabeb452" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"301d7108-c6ac-4732-8b0f-ec1d0bad0d5f" -> "39b9a303-a8a1-4d01-b64c-d4f3eabeb452";
+"e285a7c7-339d-484e-86f8-18309409c93a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"301d7108-c6ac-4732-8b0f-ec1d0bad0d5f" -> "e285a7c7-339d-484e-86f8-18309409c93a";
+"2fe2b1a6-cca6-41ef-a9ed-5d1c6ffeb0b4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"301d7108-c6ac-4732-8b0f-ec1d0bad0d5f" -> "2fe2b1a6-cca6-41ef-a9ed-5d1c6ffeb0b4";
+"08c03a7d-7918-4cc1-9d71-9fd983a2791e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "08c03a7d-7918-4cc1-9d71-9fd983a2791e";
+"2a2cd367-8a05-45c0-9307-f26ede2b6d06" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"08c03a7d-7918-4cc1-9d71-9fd983a2791e" -> "2a2cd367-8a05-45c0-9307-f26ede2b6d06";
+"656887dd-6e1a-41ee-b826-ba4fb808b736" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"08c03a7d-7918-4cc1-9d71-9fd983a2791e" -> "656887dd-6e1a-41ee-b826-ba4fb808b736";
+"3b9b258e-6357-4fed-a9ea-05288d22e361" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"08c03a7d-7918-4cc1-9d71-9fd983a2791e" -> "3b9b258e-6357-4fed-a9ea-05288d22e361";
+"9ed1223e-bcdb-4f79-bda7-0e836fd191db" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"08c03a7d-7918-4cc1-9d71-9fd983a2791e" -> "9ed1223e-bcdb-4f79-bda7-0e836fd191db";
+"11ca6a7b-396e-465f-b615-ffd74c1b8cb5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "11ca6a7b-396e-465f-b615-ffd74c1b8cb5";
+"02d50255-e1bd-40a0-ac0b-35f604ce6337" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"11ca6a7b-396e-465f-b615-ffd74c1b8cb5" -> "02d50255-e1bd-40a0-ac0b-35f604ce6337";
+"a8a996e6-5952-4943-8f67-5047cffcd034" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"11ca6a7b-396e-465f-b615-ffd74c1b8cb5" -> "a8a996e6-5952-4943-8f67-5047cffcd034";
+"2a943904-3e7d-45db-99a9-37e7c19557b7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"11ca6a7b-396e-465f-b615-ffd74c1b8cb5" -> "2a943904-3e7d-45db-99a9-37e7c19557b7";
+"a141c668-9935-4bd1-9b29-715d6f6ed9c5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"11ca6a7b-396e-465f-b615-ffd74c1b8cb5" -> "a141c668-9935-4bd1-9b29-715d6f6ed9c5";
+"b6c81cd7-0872-435a-80d6-bd3d604897fb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b6c81cd7-0872-435a-80d6-bd3d604897fb";
+"418c55b1-c4c1-42cc-8520-18ab243969ae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"b6c81cd7-0872-435a-80d6-bd3d604897fb" -> "418c55b1-c4c1-42cc-8520-18ab243969ae";
+"f4ce3704-dec2-4cbf-b732-07fdeadc5674" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b6c81cd7-0872-435a-80d6-bd3d604897fb" -> "f4ce3704-dec2-4cbf-b732-07fdeadc5674";
+"d96f53d3-bee4-416a-97ac-dbbb6d7b8063" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"b6c81cd7-0872-435a-80d6-bd3d604897fb" -> "d96f53d3-bee4-416a-97ac-dbbb6d7b8063";
+"f37250e2-d2ef-4aa9-8003-3699eed7ed9e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"b6c81cd7-0872-435a-80d6-bd3d604897fb" -> "f37250e2-d2ef-4aa9-8003-3699eed7ed9e";
+"f67b77cd-9389-45fe-a8f1-4289c098799d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f67b77cd-9389-45fe-a8f1-4289c098799d";
+"55a70505-ec78-4a04-afdf-880169136439" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"f67b77cd-9389-45fe-a8f1-4289c098799d" -> "55a70505-ec78-4a04-afdf-880169136439";
+"ed798200-6abe-4fb5-901a-62b4a90c27b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f67b77cd-9389-45fe-a8f1-4289c098799d" -> "ed798200-6abe-4fb5-901a-62b4a90c27b2";
+"f2e0e68d-3d71-4197-bcbc-2d194c0a3743" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"f67b77cd-9389-45fe-a8f1-4289c098799d" -> "f2e0e68d-3d71-4197-bcbc-2d194c0a3743";
+"9877c4e4-b4c4-4616-aa96-b54b03bf67b1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"f67b77cd-9389-45fe-a8f1-4289c098799d" -> "9877c4e4-b4c4-4616-aa96-b54b03bf67b1";
+"4add34ee-f120-4eb3-af67-149243dcdeda" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "4add34ee-f120-4eb3-af67-149243dcdeda";
+"6f29766a-6d89-4c5d-8950-e682d2f4cec5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"4add34ee-f120-4eb3-af67-149243dcdeda" -> "6f29766a-6d89-4c5d-8950-e682d2f4cec5";
+"cbf065fa-4104-4d93-ba87-c19811201ebe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4add34ee-f120-4eb3-af67-149243dcdeda" -> "cbf065fa-4104-4d93-ba87-c19811201ebe";
+"5c13ff26-19a5-4618-bd0d-3d8b6bab2692" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"4add34ee-f120-4eb3-af67-149243dcdeda" -> "5c13ff26-19a5-4618-bd0d-3d8b6bab2692";
+"06475929-2d35-4d63-8152-fafb1b28c32e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"4add34ee-f120-4eb3-af67-149243dcdeda" -> "06475929-2d35-4d63-8152-fafb1b28c32e";
+"631666d0-f1a3-4829-b1e5-0f1014b89fc6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "631666d0-f1a3-4829-b1e5-0f1014b89fc6";
+"84cce6e5-9928-4a41-9035-3683e3a0f4c2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"631666d0-f1a3-4829-b1e5-0f1014b89fc6" -> "84cce6e5-9928-4a41-9035-3683e3a0f4c2";
+"a95a304b-8e90-48cb-a6c9-3b5cb5952a41" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"631666d0-f1a3-4829-b1e5-0f1014b89fc6" -> "a95a304b-8e90-48cb-a6c9-3b5cb5952a41";
+"3390b8fd-8b13-42a3-a824-03d79c36e32f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"631666d0-f1a3-4829-b1e5-0f1014b89fc6" -> "3390b8fd-8b13-42a3-a824-03d79c36e32f";
+"b53ff49d-fbb9-4deb-b6e2-40534b2c7e3c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"631666d0-f1a3-4829-b1e5-0f1014b89fc6" -> "b53ff49d-fbb9-4deb-b6e2-40534b2c7e3c";
+"f010795b-5e39-4b99-861c-5c2e15497d7c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f010795b-5e39-4b99-861c-5c2e15497d7c";
+"9eba32e1-2f52-45ed-aa7f-accf8d15e4a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"f010795b-5e39-4b99-861c-5c2e15497d7c" -> "9eba32e1-2f52-45ed-aa7f-accf8d15e4a3";
+"176c819b-aad1-4c93-bd4b-fd833390e9f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f010795b-5e39-4b99-861c-5c2e15497d7c" -> "176c819b-aad1-4c93-bd4b-fd833390e9f0";
+"e0be09d1-4942-43f2-ba63-5bf606a4e1df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"f010795b-5e39-4b99-861c-5c2e15497d7c" -> "e0be09d1-4942-43f2-ba63-5bf606a4e1df";
+"336cf395-babe-4deb-a486-00cb049e42c2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"f010795b-5e39-4b99-861c-5c2e15497d7c" -> "336cf395-babe-4deb-a486-00cb049e42c2";
+"71f18db7-c445-4a82-b83a-e506a8f299ef" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "71f18db7-c445-4a82-b83a-e506a8f299ef";
+"009bfe0a-7f3b-4092-b50d-06998bacec9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"71f18db7-c445-4a82-b83a-e506a8f299ef" -> "009bfe0a-7f3b-4092-b50d-06998bacec9b";
+"04dad2ed-e8a4-4f2f-85e2-6c10b0b5e7f4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"71f18db7-c445-4a82-b83a-e506a8f299ef" -> "04dad2ed-e8a4-4f2f-85e2-6c10b0b5e7f4";
+"4c92047e-bb59-43b4-85e2-f01bd3f7dceb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"71f18db7-c445-4a82-b83a-e506a8f299ef" -> "4c92047e-bb59-43b4-85e2-f01bd3f7dceb";
+"08e0e5a1-6b98-4cc6-873f-9fce6a5a4247" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"71f18db7-c445-4a82-b83a-e506a8f299ef" -> "08e0e5a1-6b98-4cc6-873f-9fce6a5a4247";
+"5806a049-1ed3-4fa3-810a-de002720e69e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5806a049-1ed3-4fa3-810a-de002720e69e";
+"befb881c-bdd0-4c52-a8b5-55f65b0bfb38" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"5806a049-1ed3-4fa3-810a-de002720e69e" -> "befb881c-bdd0-4c52-a8b5-55f65b0bfb38";
+"c09bb02c-ca7e-48e1-8477-172b88551b48" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5806a049-1ed3-4fa3-810a-de002720e69e" -> "c09bb02c-ca7e-48e1-8477-172b88551b48";
+"b0b78610-939f-4daa-998c-661cdc4ec8e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"5806a049-1ed3-4fa3-810a-de002720e69e" -> "b0b78610-939f-4daa-998c-661cdc4ec8e6";
+"75dc0070-29ae-4d7a-adf0-4e5f6de232d6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"5806a049-1ed3-4fa3-810a-de002720e69e" -> "75dc0070-29ae-4d7a-adf0-4e5f6de232d6";
+"b8d5a85d-7d53-4e72-be33-536705d656af" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b8d5a85d-7d53-4e72-be33-536705d656af";
+"d85806e2-7879-4e81-a3aa-fd1821aba25e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b8d5a85d-7d53-4e72-be33-536705d656af" -> "d85806e2-7879-4e81-a3aa-fd1821aba25e";
+"2fe68a89-c09b-4963-988a-fb3a23097331" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b8d5a85d-7d53-4e72-be33-536705d656af" -> "2fe68a89-c09b-4963-988a-fb3a23097331";
+"c9acd455-2241-4624-89ae-c2a3f5c2b1bf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"b8d5a85d-7d53-4e72-be33-536705d656af" -> "c9acd455-2241-4624-89ae-c2a3f5c2b1bf";
+"df1f7ba2-f06a-4349-902f-7e6b81b89699" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"b8d5a85d-7d53-4e72-be33-536705d656af" -> "df1f7ba2-f06a-4349-902f-7e6b81b89699";
+"73fa7b2a-080f-4d64-8194-fbcd58e35eab" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "73fa7b2a-080f-4d64-8194-fbcd58e35eab";
+"32a71153-27e6-496a-aae1-49c19ae944c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"73fa7b2a-080f-4d64-8194-fbcd58e35eab" -> "32a71153-27e6-496a-aae1-49c19ae944c8";
+"04342d9c-b7ac-424d-af41-f2b48f88d66d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"73fa7b2a-080f-4d64-8194-fbcd58e35eab" -> "04342d9c-b7ac-424d-af41-f2b48f88d66d";
+"dd8fa3b4-8ce4-4a31-873d-7f8b48a84fcb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"73fa7b2a-080f-4d64-8194-fbcd58e35eab" -> "dd8fa3b4-8ce4-4a31-873d-7f8b48a84fcb";
+"345d1cdb-de43-450a-909d-26fd5633fe1e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"73fa7b2a-080f-4d64-8194-fbcd58e35eab" -> "345d1cdb-de43-450a-909d-26fd5633fe1e";
+"d6121acd-acf6-4736-880c-c4387b5354a0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d6121acd-acf6-4736-880c-c4387b5354a0";
+"29051318-2fcb-4186-9832-a11c0cc92310" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"d6121acd-acf6-4736-880c-c4387b5354a0" -> "29051318-2fcb-4186-9832-a11c0cc92310";
+"f8b0bee9-672d-4652-845c-0c5af0b791bf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d6121acd-acf6-4736-880c-c4387b5354a0" -> "f8b0bee9-672d-4652-845c-0c5af0b791bf";
+"e4e5675c-bdd1-46c6-9b65-ffeca4424f43" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"d6121acd-acf6-4736-880c-c4387b5354a0" -> "e4e5675c-bdd1-46c6-9b65-ffeca4424f43";
+"8aefd861-ce3e-4580-8426-ac27a41c7cbf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,BrightTable)", shape=box, style=filled];
+"d6121acd-acf6-4736-880c-c4387b5354a0" -> "8aefd861-ce3e-4580-8426-ac27a41c7cbf";
+"05f7db52-a58e-417b-be41-ceeb016304ef" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "05f7db52-a58e-417b-be41-ceeb016304ef";
+"44d2b6ac-b838-4e44-a188-3835e5ef61c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"05f7db52-a58e-417b-be41-ceeb016304ef" -> "44d2b6ac-b838-4e44-a188-3835e5ef61c9";
+"8b6b5a9a-bb9f-4e7c-af52-4473e57c76d5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"05f7db52-a58e-417b-be41-ceeb016304ef" -> "8b6b5a9a-bb9f-4e7c-af52-4473e57c76d5";
+"3b8ec281-d66f-4cda-bd74-62f5dbf533f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"05f7db52-a58e-417b-be41-ceeb016304ef" -> "3b8ec281-d66f-4cda-bd74-62f5dbf533f6";
+"ceeb47f5-df89-4220-8860-3953fcaf724d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,BrightTable)", shape=box, style=filled];
+"05f7db52-a58e-417b-be41-ceeb016304ef" -> "ceeb47f5-df89-4220-8860-3953fcaf724d";
+"eeaaf0e9-cb7c-4c39-8be4-7584bfe7d9fc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "eeaaf0e9-cb7c-4c39-8be4-7584bfe7d9fc";
+"5772c4c1-42fa-4f88-a1a3-5cb52c706af1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"eeaaf0e9-cb7c-4c39-8be4-7584bfe7d9fc" -> "5772c4c1-42fa-4f88-a1a3-5cb52c706af1";
+"b68bb5ae-3384-46bb-97a7-6916062c7699" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"eeaaf0e9-cb7c-4c39-8be4-7584bfe7d9fc" -> "b68bb5ae-3384-46bb-97a7-6916062c7699";
+"ddfc125c-5419-4fb1-865d-75509adf81a7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"eeaaf0e9-cb7c-4c39-8be4-7584bfe7d9fc" -> "ddfc125c-5419-4fb1-865d-75509adf81a7";
+"d2e02d00-2dc3-4b94-abb0-c04af4099d79" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,CoffeeTable)", shape=box, style=filled];
+"eeaaf0e9-cb7c-4c39-8be4-7584bfe7d9fc" -> "d2e02d00-2dc3-4b94-abb0-c04af4099d79";
+"2a95fb98-ed2b-4ca8-a2ce-1aff3f6bbca9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2a95fb98-ed2b-4ca8-a2ce-1aff3f6bbca9";
+"134d9451-d43f-46f5-a2e8-77011226bce9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2a95fb98-ed2b-4ca8-a2ce-1aff3f6bbca9" -> "134d9451-d43f-46f5-a2e8-77011226bce9";
+"b614a618-1c15-4fad-8b56-661885a0c84e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"2a95fb98-ed2b-4ca8-a2ce-1aff3f6bbca9" -> "b614a618-1c15-4fad-8b56-661885a0c84e";
+"d0bcca2a-b241-4ad2-bcad-cd8960a9af0e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"2a95fb98-ed2b-4ca8-a2ce-1aff3f6bbca9" -> "d0bcca2a-b241-4ad2-bcad-cd8960a9af0e";
+"1518a83d-2bd8-4a04-9ea7-ffb13f3fa659" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,CoffeeTable)", shape=box, style=filled];
+"2a95fb98-ed2b-4ca8-a2ce-1aff3f6bbca9" -> "1518a83d-2bd8-4a04-9ea7-ffb13f3fa659";
+"6ffab00f-911d-47e2-a992-ee1f25ebae95" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6ffab00f-911d-47e2-a992-ee1f25ebae95";
+"1459db2f-cacb-44a8-9d56-e9d724ec3631" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6ffab00f-911d-47e2-a992-ee1f25ebae95" -> "1459db2f-cacb-44a8-9d56-e9d724ec3631";
+"8d373f15-166e-4548-ba0a-6d6108f85f23" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"6ffab00f-911d-47e2-a992-ee1f25ebae95" -> "8d373f15-166e-4548-ba0a-6d6108f85f23";
+"eb4d95af-dbd8-4971-94e2-7d8fdfd94fa5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"6ffab00f-911d-47e2-a992-ee1f25ebae95" -> "eb4d95af-dbd8-4971-94e2-7d8fdfd94fa5";
+"944d260e-b86d-43af-890c-006243ae0955" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"6ffab00f-911d-47e2-a992-ee1f25ebae95" -> "944d260e-b86d-43af-890c-006243ae0955";
+"e7af3f11-ba83-4173-b7d3-46ff1510bd22" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e7af3f11-ba83-4173-b7d3-46ff1510bd22";
+"54075245-90fe-4fcc-b73b-6079e68e752f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e7af3f11-ba83-4173-b7d3-46ff1510bd22" -> "54075245-90fe-4fcc-b73b-6079e68e752f";
+"c93378c1-133c-454c-aec7-a2944fd53adb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"e7af3f11-ba83-4173-b7d3-46ff1510bd22" -> "c93378c1-133c-454c-aec7-a2944fd53adb";
+"b2cd1491-4e58-4f41-9ccb-3fcf9de0ac4e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"e7af3f11-ba83-4173-b7d3-46ff1510bd22" -> "b2cd1491-4e58-4f41-9ccb-3fcf9de0ac4e";
+"83b5ff29-e0c1-4907-a68d-b162372acd82" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"e7af3f11-ba83-4173-b7d3-46ff1510bd22" -> "83b5ff29-e0c1-4907-a68d-b162372acd82";
+"6ebac339-c9cb-48e7-a359-e9e02de17c4d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6ebac339-c9cb-48e7-a359-e9e02de17c4d";
+"62e3d172-0b47-4b14-98b6-f384102b5d3e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6ebac339-c9cb-48e7-a359-e9e02de17c4d" -> "62e3d172-0b47-4b14-98b6-f384102b5d3e";
+"b215492e-c435-4f8f-9db8-6f4c32b6e337" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"6ebac339-c9cb-48e7-a359-e9e02de17c4d" -> "b215492e-c435-4f8f-9db8-6f4c32b6e337";
+"b4ffe34c-970d-4aba-89da-d670307abe6a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"6ebac339-c9cb-48e7-a359-e9e02de17c4d" -> "b4ffe34c-970d-4aba-89da-d670307abe6a";
+"6547d751-1a71-4fa0-9caa-38f796a0dda8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"6ebac339-c9cb-48e7-a359-e9e02de17c4d" -> "6547d751-1a71-4fa0-9caa-38f796a0dda8";
+"8fceaf0a-a5e5-443f-9f6b-6959fba51c60" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8fceaf0a-a5e5-443f-9f6b-6959fba51c60";
+"ad914b2f-e3f4-454b-a6e3-2c7775b2a761" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8fceaf0a-a5e5-443f-9f6b-6959fba51c60" -> "ad914b2f-e3f4-454b-a6e3-2c7775b2a761";
+"80043e31-227d-4035-aaff-9c7e055a9397" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"8fceaf0a-a5e5-443f-9f6b-6959fba51c60" -> "80043e31-227d-4035-aaff-9c7e055a9397";
+"04cd9b74-27a6-4aa3-9450-bd10becfe1fd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"8fceaf0a-a5e5-443f-9f6b-6959fba51c60" -> "04cd9b74-27a6-4aa3-9450-bd10becfe1fd";
+"2fe43a3f-977a-4a20-a3dc-2d8427377377" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"8fceaf0a-a5e5-443f-9f6b-6959fba51c60" -> "2fe43a3f-977a-4a20-a3dc-2d8427377377";
+"22d2ac0f-a289-4782-9598-cbc6b16a8c0d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "22d2ac0f-a289-4782-9598-cbc6b16a8c0d";
+"e775f44f-d71a-49f1-935d-9808e4e5b920" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"22d2ac0f-a289-4782-9598-cbc6b16a8c0d" -> "e775f44f-d71a-49f1-935d-9808e4e5b920";
+"609a9936-2594-4ee1-bf51-0f153e377959" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"22d2ac0f-a289-4782-9598-cbc6b16a8c0d" -> "609a9936-2594-4ee1-bf51-0f153e377959";
+"e553cc56-ab56-43b1-9702-238986aba30a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"22d2ac0f-a289-4782-9598-cbc6b16a8c0d" -> "e553cc56-ab56-43b1-9702-238986aba30a";
+"283bf934-d0e7-4fb8-8fb6-675b80a3ab11" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"22d2ac0f-a289-4782-9598-cbc6b16a8c0d" -> "283bf934-d0e7-4fb8-8fb6-675b80a3ab11";
+"e99ec932-0e7b-493d-accb-27d22f1984fb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e99ec932-0e7b-493d-accb-27d22f1984fb";
+"65c93a6d-da01-4eba-9d7a-8d443d0ddec8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e99ec932-0e7b-493d-accb-27d22f1984fb" -> "65c93a6d-da01-4eba-9d7a-8d443d0ddec8";
+"86fa9a54-8a8d-4c97-8e1b-2bfd856a751a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"e99ec932-0e7b-493d-accb-27d22f1984fb" -> "86fa9a54-8a8d-4c97-8e1b-2bfd856a751a";
+"19298d94-c640-4ff5-a5a5-12e728e1b5fe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"e99ec932-0e7b-493d-accb-27d22f1984fb" -> "19298d94-c640-4ff5-a5a5-12e728e1b5fe";
+"e93e03c9-7fbd-4213-be16-fa395afed8b2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"e99ec932-0e7b-493d-accb-27d22f1984fb" -> "e93e03c9-7fbd-4213-be16-fa395afed8b2";
+"717621fe-a713-4acb-a011-5f6b2208018e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "717621fe-a713-4acb-a011-5f6b2208018e";
+"276601de-2c7a-426e-a150-932955ab9b25" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"717621fe-a713-4acb-a011-5f6b2208018e" -> "276601de-2c7a-426e-a150-932955ab9b25";
+"cc326672-fbd8-46e9-b61e-f23a7a0a669f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"717621fe-a713-4acb-a011-5f6b2208018e" -> "cc326672-fbd8-46e9-b61e-f23a7a0a669f";
+"87feb2bd-07bf-448a-bde0-c22c88b9fbaa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"717621fe-a713-4acb-a011-5f6b2208018e" -> "87feb2bd-07bf-448a-bde0-c22c88b9fbaa";
+"b5f94560-ad8e-4eaf-aa4d-28f722c521a2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,WaterTable)", shape=box, style=filled];
+"717621fe-a713-4acb-a011-5f6b2208018e" -> "b5f94560-ad8e-4eaf-aa4d-28f722c521a2";
+"612e4682-a1ca-4ffc-9e3e-cd68efbad95d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "612e4682-a1ca-4ffc-9e3e-cd68efbad95d";
+"4c697c6b-78a1-44ba-a3dd-18168ac80768" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"612e4682-a1ca-4ffc-9e3e-cd68efbad95d" -> "4c697c6b-78a1-44ba-a3dd-18168ac80768";
+"c2ec25f0-7c5f-450c-b18e-9ddc2bb2a0bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"612e4682-a1ca-4ffc-9e3e-cd68efbad95d" -> "c2ec25f0-7c5f-450c-b18e-9ddc2bb2a0bd";
+"f9ee5435-c257-4d82-9379-2a87f6c3c542" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"612e4682-a1ca-4ffc-9e3e-cd68efbad95d" -> "f9ee5435-c257-4d82-9379-2a87f6c3c542";
+"ae4baf09-97c1-4bae-884b-a019e9d1c61a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,WaterTable)", shape=box, style=filled];
+"612e4682-a1ca-4ffc-9e3e-cd68efbad95d" -> "ae4baf09-97c1-4bae-884b-a019e9d1c61a";
+"fb77bc45-cbf4-4248-9bf1-435b0e3a382a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "fb77bc45-cbf4-4248-9bf1-435b0e3a382a";
+"fb1d94eb-b6d0-4ee9-a5ef-a6cdf10d1229" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"fb77bc45-cbf4-4248-9bf1-435b0e3a382a" -> "fb1d94eb-b6d0-4ee9-a5ef-a6cdf10d1229";
+"856a8748-8e67-4964-a329-6f097cce9679" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fb77bc45-cbf4-4248-9bf1-435b0e3a382a" -> "856a8748-8e67-4964-a329-6f097cce9679";
+"d556f457-c536-498c-984a-cd0d75ff2602" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"fb77bc45-cbf4-4248-9bf1-435b0e3a382a" -> "d556f457-c536-498c-984a-cd0d75ff2602";
+"368b63e2-05ff-48ee-b882-773f7c92f0f5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"fb77bc45-cbf4-4248-9bf1-435b0e3a382a" -> "368b63e2-05ff-48ee-b882-773f7c92f0f5";
+"b99c7c55-f852-4269-8ffb-092ab98e10d3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b99c7c55-f852-4269-8ffb-092ab98e10d3";
+"2df363b1-bdfc-444c-861d-4cbbc12cbb43" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"b99c7c55-f852-4269-8ffb-092ab98e10d3" -> "2df363b1-bdfc-444c-861d-4cbbc12cbb43";
+"35a27971-26eb-4607-9be7-931f3e191c48" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b99c7c55-f852-4269-8ffb-092ab98e10d3" -> "35a27971-26eb-4607-9be7-931f3e191c48";
+"7a192fec-de4a-49ba-aa20-cc106096b553" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"b99c7c55-f852-4269-8ffb-092ab98e10d3" -> "7a192fec-de4a-49ba-aa20-cc106096b553";
+"d66b69f8-a687-4d91-b97d-5be912f1f8bf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"b99c7c55-f852-4269-8ffb-092ab98e10d3" -> "d66b69f8-a687-4d91-b97d-5be912f1f8bf";
+"17308f5c-0bdc-482d-886c-b25cf50b01da" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "17308f5c-0bdc-482d-886c-b25cf50b01da";
+"4e450471-ddf5-4737-ade1-ef8fc88160e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"17308f5c-0bdc-482d-886c-b25cf50b01da" -> "4e450471-ddf5-4737-ade1-ef8fc88160e6";
+"236ef38a-12b1-4643-81af-8f3d5a6c33d3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"17308f5c-0bdc-482d-886c-b25cf50b01da" -> "236ef38a-12b1-4643-81af-8f3d5a6c33d3";
+"a7678b7d-21a7-4b63-a909-d962de399c0f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"17308f5c-0bdc-482d-886c-b25cf50b01da" -> "a7678b7d-21a7-4b63-a909-d962de399c0f";
+"d5f241e2-92f5-44e9-832c-778aeff51353" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"17308f5c-0bdc-482d-886c-b25cf50b01da" -> "d5f241e2-92f5-44e9-832c-778aeff51353";
+"0feb5b3e-82df-4daa-b130-97e0c63e61e7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "0feb5b3e-82df-4daa-b130-97e0c63e61e7";
+"6ec3b45f-727c-4391-b856-9060c33734a1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"0feb5b3e-82df-4daa-b130-97e0c63e61e7" -> "6ec3b45f-727c-4391-b856-9060c33734a1";
+"c255e28d-15b1-42a2-8b0c-8ffa0d00a054" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"0feb5b3e-82df-4daa-b130-97e0c63e61e7" -> "c255e28d-15b1-42a2-8b0c-8ffa0d00a054";
+"78aab831-39eb-4dbd-bf7f-db946322b24f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"0feb5b3e-82df-4daa-b130-97e0c63e61e7" -> "78aab831-39eb-4dbd-bf7f-db946322b24f";
+"86a27146-6efe-4fcd-a5e0-f5ea89b4b69c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"0feb5b3e-82df-4daa-b130-97e0c63e61e7" -> "86a27146-6efe-4fcd-a5e0-f5ea89b4b69c";
+"2f171682-c376-4afd-a69d-2a8f724ba403" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2f171682-c376-4afd-a69d-2a8f724ba403";
+"3476c95d-20a0-4898-be64-e2fee5ddb753" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2f171682-c376-4afd-a69d-2a8f724ba403" -> "3476c95d-20a0-4898-be64-e2fee5ddb753";
+"a3478678-e78f-4fa7-a6f1-2adc63cc3b90" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2f171682-c376-4afd-a69d-2a8f724ba403" -> "a3478678-e78f-4fa7-a6f1-2adc63cc3b90";
+"87d2f638-85e9-4297-9345-dc128a563c95" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"2f171682-c376-4afd-a69d-2a8f724ba403" -> "87d2f638-85e9-4297-9345-dc128a563c95";
+"aba4bcad-ee7d-4a96-8b22-3e653ac87635" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"2f171682-c376-4afd-a69d-2a8f724ba403" -> "aba4bcad-ee7d-4a96-8b22-3e653ac87635";
+"dda141b7-3692-4a89-9704-bf0de6254dba" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "dda141b7-3692-4a89-9704-bf0de6254dba";
+"b21bc40c-e476-42b4-abc7-01351422612e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"dda141b7-3692-4a89-9704-bf0de6254dba" -> "b21bc40c-e476-42b4-abc7-01351422612e";
+"2b0cb55f-04ee-474c-a6a8-2bec6278c64e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"dda141b7-3692-4a89-9704-bf0de6254dba" -> "2b0cb55f-04ee-474c-a6a8-2bec6278c64e";
+"596ec8ae-3905-492c-bc83-de4542f01a9a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"dda141b7-3692-4a89-9704-bf0de6254dba" -> "596ec8ae-3905-492c-bc83-de4542f01a9a";
+"f04d06a5-2970-428d-9f4e-926c3967d845" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"dda141b7-3692-4a89-9704-bf0de6254dba" -> "f04d06a5-2970-428d-9f4e-926c3967d845";
+"8226f96a-1d6f-44af-894b-54d87caf3a11" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8226f96a-1d6f-44af-894b-54d87caf3a11";
+"f171002e-7bc8-4cf5-a213-6df793da506c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8226f96a-1d6f-44af-894b-54d87caf3a11" -> "f171002e-7bc8-4cf5-a213-6df793da506c";
+"bf3b9f6e-059d-4ae9-a146-7e172b4e3e6c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"8226f96a-1d6f-44af-894b-54d87caf3a11" -> "bf3b9f6e-059d-4ae9-a146-7e172b4e3e6c";
+"b887fedf-3fe3-4dbd-9f83-9bba594e917a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"8226f96a-1d6f-44af-894b-54d87caf3a11" -> "b887fedf-3fe3-4dbd-9f83-9bba594e917a";
+"38a7f0ba-59a2-4d76-ae3d-f9c84f287ce6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,CoffeeTable)", shape=box, style=filled];
+"8226f96a-1d6f-44af-894b-54d87caf3a11" -> "38a7f0ba-59a2-4d76-ae3d-f9c84f287ce6";
+"52dc2495-549a-4640-8f00-d067f870016f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "52dc2495-549a-4640-8f00-d067f870016f";
+"45b6b11d-def8-412a-b003-621527798c97" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"52dc2495-549a-4640-8f00-d067f870016f" -> "45b6b11d-def8-412a-b003-621527798c97";
+"4ba3e4c5-1205-4d30-9bf2-0b75f138e28e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"52dc2495-549a-4640-8f00-d067f870016f" -> "4ba3e4c5-1205-4d30-9bf2-0b75f138e28e";
+"3056c0b5-9ea7-4dcc-b05a-2ad2b55fd253" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"52dc2495-549a-4640-8f00-d067f870016f" -> "3056c0b5-9ea7-4dcc-b05a-2ad2b55fd253";
+"421c9a42-9aa9-49b4-97e3-c1d5acca0d56" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,CoffeeTable)", shape=box, style=filled];
+"52dc2495-549a-4640-8f00-d067f870016f" -> "421c9a42-9aa9-49b4-97e3-c1d5acca0d56";
+"f042bb90-edf8-441a-8b5f-e5919e30622c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f042bb90-edf8-441a-8b5f-e5919e30622c";
+"0ec4b482-e175-48c0-b3f5-224ff172d8c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f042bb90-edf8-441a-8b5f-e5919e30622c" -> "0ec4b482-e175-48c0-b3f5-224ff172d8c3";
+"8e31cc40-5677-4858-a7db-4120fe2a5d22" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"f042bb90-edf8-441a-8b5f-e5919e30622c" -> "8e31cc40-5677-4858-a7db-4120fe2a5d22";
+"35ef5e0e-bdd4-4b7f-bbe2-d617a5815f62" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"f042bb90-edf8-441a-8b5f-e5919e30622c" -> "35ef5e0e-bdd4-4b7f-bbe2-d617a5815f62";
+"f165f483-d705-4877-b418-0bca895d3022" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"f042bb90-edf8-441a-8b5f-e5919e30622c" -> "f165f483-d705-4877-b418-0bca895d3022";
+"16f617b9-bfe1-4915-83b8-3f9855045851" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "16f617b9-bfe1-4915-83b8-3f9855045851";
+"5249ad23-8d25-423f-b97c-409cd8ce051a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"16f617b9-bfe1-4915-83b8-3f9855045851" -> "5249ad23-8d25-423f-b97c-409cd8ce051a";
+"55b8c55e-a685-4e75-82ab-9255781e9fbf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"16f617b9-bfe1-4915-83b8-3f9855045851" -> "55b8c55e-a685-4e75-82ab-9255781e9fbf";
+"bb26c356-c78f-48bb-90bd-93314b1e21fc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"16f617b9-bfe1-4915-83b8-3f9855045851" -> "bb26c356-c78f-48bb-90bd-93314b1e21fc";
+"2a9ece59-ddf8-49d4-af03-97228c863780" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"16f617b9-bfe1-4915-83b8-3f9855045851" -> "2a9ece59-ddf8-49d4-af03-97228c863780";
+"bd71d929-412f-4dcc-8db2-d86fa0560732" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bd71d929-412f-4dcc-8db2-d86fa0560732";
+"d05dfe53-2a1c-4bba-aabb-e97c7c47c11a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bd71d929-412f-4dcc-8db2-d86fa0560732" -> "d05dfe53-2a1c-4bba-aabb-e97c7c47c11a";
+"8a33d123-ae3c-4d9f-8764-46931cc9e4e5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"bd71d929-412f-4dcc-8db2-d86fa0560732" -> "8a33d123-ae3c-4d9f-8764-46931cc9e4e5";
+"2aed7189-76d6-4973-bf60-e4b132e936ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"bd71d929-412f-4dcc-8db2-d86fa0560732" -> "2aed7189-76d6-4973-bf60-e4b132e936ff";
+"9103bf50-5938-4d0d-bfe8-cb957871b694" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"bd71d929-412f-4dcc-8db2-d86fa0560732" -> "9103bf50-5938-4d0d-bfe8-cb957871b694";
+"2d408dfb-4749-4a30-8a3d-06e42c5b7f03" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2d408dfb-4749-4a30-8a3d-06e42c5b7f03";
+"2f5a0b69-a872-4e90-8449-b234c4c2bbc1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2d408dfb-4749-4a30-8a3d-06e42c5b7f03" -> "2f5a0b69-a872-4e90-8449-b234c4c2bbc1";
+"12f03018-7d43-4b55-900f-928007d73ebb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"2d408dfb-4749-4a30-8a3d-06e42c5b7f03" -> "12f03018-7d43-4b55-900f-928007d73ebb";
+"12575735-4b6e-4562-ada7-c9286bb0e676" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"2d408dfb-4749-4a30-8a3d-06e42c5b7f03" -> "12575735-4b6e-4562-ada7-c9286bb0e676";
+"ede90fca-65c3-464e-a477-f49829d8cc32" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"2d408dfb-4749-4a30-8a3d-06e42c5b7f03" -> "ede90fca-65c3-464e-a477-f49829d8cc32";
+"22538fba-9a9e-4185-bb00-3394745bc9fc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "22538fba-9a9e-4185-bb00-3394745bc9fc";
+"f7a4257f-784a-49ad-ad79-f677e4814cc1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"22538fba-9a9e-4185-bb00-3394745bc9fc" -> "f7a4257f-784a-49ad-ad79-f677e4814cc1";
+"400bad56-b81f-4c6f-95f3-13b3d368775b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"22538fba-9a9e-4185-bb00-3394745bc9fc" -> "400bad56-b81f-4c6f-95f3-13b3d368775b";
+"1cb17cb9-64ff-42d9-a206-d7c40aa87991" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"22538fba-9a9e-4185-bb00-3394745bc9fc" -> "1cb17cb9-64ff-42d9-a206-d7c40aa87991";
+"d759a488-58b3-400c-83b8-867ab1623c13" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"22538fba-9a9e-4185-bb00-3394745bc9fc" -> "d759a488-58b3-400c-83b8-867ab1623c13";
+"defc2569-40fc-4a50-a184-d0362e9d4b32" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "defc2569-40fc-4a50-a184-d0362e9d4b32";
+"203eaea7-8ce5-43c6-8256-17c2fd365bc5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"defc2569-40fc-4a50-a184-d0362e9d4b32" -> "203eaea7-8ce5-43c6-8256-17c2fd365bc5";
+"4b38504f-df7b-4972-a3d6-d6f335d4e81c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"defc2569-40fc-4a50-a184-d0362e9d4b32" -> "4b38504f-df7b-4972-a3d6-d6f335d4e81c";
+"3f4e7407-0478-468b-a469-f2ceaa31b5f4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"defc2569-40fc-4a50-a184-d0362e9d4b32" -> "3f4e7407-0478-468b-a469-f2ceaa31b5f4";
+"f9b4bb84-4516-4e3d-ad90-b73f96912388" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"defc2569-40fc-4a50-a184-d0362e9d4b32" -> "f9b4bb84-4516-4e3d-ad90-b73f96912388";
+"06a64029-ec99-435a-8556-ffe23636b15e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "06a64029-ec99-435a-8556-ffe23636b15e";
+"ed689067-3752-4648-b16d-3edb24fd1b19" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"06a64029-ec99-435a-8556-ffe23636b15e" -> "ed689067-3752-4648-b16d-3edb24fd1b19";
+"8285265e-4387-4957-a278-ea65714c9b10" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"06a64029-ec99-435a-8556-ffe23636b15e" -> "8285265e-4387-4957-a278-ea65714c9b10";
+"26fb2071-f3f9-4ca0-9d08-291907bb2c06" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"06a64029-ec99-435a-8556-ffe23636b15e" -> "26fb2071-f3f9-4ca0-9d08-291907bb2c06";
+"d3c14ddb-5b7e-49f6-b464-f2ffe917b764" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,WaterTable)", shape=box, style=filled];
+"06a64029-ec99-435a-8556-ffe23636b15e" -> "d3c14ddb-5b7e-49f6-b464-f2ffe917b764";
+"1f2e88e1-99ef-4fd3-acec-afa922752c3a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "1f2e88e1-99ef-4fd3-acec-afa922752c3a";
+"02a087bd-9348-4823-88df-3acbb635138b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1f2e88e1-99ef-4fd3-acec-afa922752c3a" -> "02a087bd-9348-4823-88df-3acbb635138b";
+"b81d8430-97c0-42c2-bfbc-2a0f6128302a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"1f2e88e1-99ef-4fd3-acec-afa922752c3a" -> "b81d8430-97c0-42c2-bfbc-2a0f6128302a";
+"ac6a20f4-7295-4964-b647-926215a783d0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"1f2e88e1-99ef-4fd3-acec-afa922752c3a" -> "ac6a20f4-7295-4964-b647-926215a783d0";
+"a5d213d1-42e4-42d0-8ed2-80fa863a34ed" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,WaterTable)", shape=box, style=filled];
+"1f2e88e1-99ef-4fd3-acec-afa922752c3a" -> "a5d213d1-42e4-42d0-8ed2-80fa863a34ed";
+"e647a664-bc8e-4a07-83b7-03e9faf31955" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e647a664-bc8e-4a07-83b7-03e9faf31955";
+"d28c444b-6fbd-488f-b367-2f5483faa357" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"e647a664-bc8e-4a07-83b7-03e9faf31955" -> "d28c444b-6fbd-488f-b367-2f5483faa357";
+"1606c400-d9e7-4fec-bb1c-dbfb3cce7a66" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e647a664-bc8e-4a07-83b7-03e9faf31955" -> "1606c400-d9e7-4fec-bb1c-dbfb3cce7a66";
+"c1d47a8f-d508-4588-93fd-3960d1602897" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"e647a664-bc8e-4a07-83b7-03e9faf31955" -> "c1d47a8f-d508-4588-93fd-3960d1602897";
+"2e3bf379-7622-4887-b522-c2ccac981785" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"e647a664-bc8e-4a07-83b7-03e9faf31955" -> "2e3bf379-7622-4887-b522-c2ccac981785";
+"36b995ea-ee2c-4c4c-a37a-03d724b889e7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "36b995ea-ee2c-4c4c-a37a-03d724b889e7";
+"e977bb65-738c-449d-9846-719665c20901" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"36b995ea-ee2c-4c4c-a37a-03d724b889e7" -> "e977bb65-738c-449d-9846-719665c20901";
+"8db1cd71-f861-4c28-ab16-78c745b79767" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"36b995ea-ee2c-4c4c-a37a-03d724b889e7" -> "8db1cd71-f861-4c28-ab16-78c745b79767";
+"fae3a278-1435-4e34-9ca9-74fb347d3665" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"36b995ea-ee2c-4c4c-a37a-03d724b889e7" -> "fae3a278-1435-4e34-9ca9-74fb347d3665";
+"6a5fc0c8-b0d2-4727-9f81-432710d75c62" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"36b995ea-ee2c-4c4c-a37a-03d724b889e7" -> "6a5fc0c8-b0d2-4727-9f81-432710d75c62";
+"6a3b1484-4986-466b-84c0-ddc7a7fe83de" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6a3b1484-4986-466b-84c0-ddc7a7fe83de";
+"59022140-820f-446e-959f-7b50a24f5a90" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6a3b1484-4986-466b-84c0-ddc7a7fe83de" -> "59022140-820f-446e-959f-7b50a24f5a90";
+"e443b2f2-96cb-4e24-b05f-d8e41c1996b1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6a3b1484-4986-466b-84c0-ddc7a7fe83de" -> "e443b2f2-96cb-4e24-b05f-d8e41c1996b1";
+"8decd739-590e-4ffa-91e6-7c057c91e00e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"6a3b1484-4986-466b-84c0-ddc7a7fe83de" -> "8decd739-590e-4ffa-91e6-7c057c91e00e";
+"d10df02b-7447-4ccf-976b-c858aa014385" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"6a3b1484-4986-466b-84c0-ddc7a7fe83de" -> "d10df02b-7447-4ccf-976b-c858aa014385";
+"11bc7bef-3652-4e2f-bc5d-801abedb8e66" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "11bc7bef-3652-4e2f-bc5d-801abedb8e66";
+"0c6ff15e-5564-4276-a2a4-96ae578239a1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"11bc7bef-3652-4e2f-bc5d-801abedb8e66" -> "0c6ff15e-5564-4276-a2a4-96ae578239a1";
+"bd218177-55bd-4f4d-8c16-a75c10328546" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"11bc7bef-3652-4e2f-bc5d-801abedb8e66" -> "bd218177-55bd-4f4d-8c16-a75c10328546";
+"bbdc7535-0c2c-4d17-a74b-39c9b05a4fd5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"11bc7bef-3652-4e2f-bc5d-801abedb8e66" -> "bbdc7535-0c2c-4d17-a74b-39c9b05a4fd5";
+"34fc1064-e69f-4c19-bdf2-7f675d0acaf1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"11bc7bef-3652-4e2f-bc5d-801abedb8e66" -> "34fc1064-e69f-4c19-bdf2-7f675d0acaf1";
+"e96a5be4-6b3d-4a0a-a60b-0f3fb431600e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e96a5be4-6b3d-4a0a-a60b-0f3fb431600e";
+"bb326c9c-d106-42f0-b382-baad92171a6a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"e96a5be4-6b3d-4a0a-a60b-0f3fb431600e" -> "bb326c9c-d106-42f0-b382-baad92171a6a";
+"d5ada66e-713f-49f3-8609-43b03d2d8476" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e96a5be4-6b3d-4a0a-a60b-0f3fb431600e" -> "d5ada66e-713f-49f3-8609-43b03d2d8476";
+"c49a2c0d-b333-471d-8927-f3661933fa32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"e96a5be4-6b3d-4a0a-a60b-0f3fb431600e" -> "c49a2c0d-b333-471d-8927-f3661933fa32";
+"51b06cb4-e6d3-4e6b-be0c-dc78b87ec330" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,BrightTable)", shape=box, style=filled];
+"e96a5be4-6b3d-4a0a-a60b-0f3fb431600e" -> "51b06cb4-e6d3-4e6b-be0c-dc78b87ec330";
+"849b45c5-eb82-4cb0-bab0-3132aad6aa3f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "849b45c5-eb82-4cb0-bab0-3132aad6aa3f";
+"8bf9cff2-ab77-435c-8f43-4b872c826f34" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"849b45c5-eb82-4cb0-bab0-3132aad6aa3f" -> "8bf9cff2-ab77-435c-8f43-4b872c826f34";
+"2b86fd3a-9820-41b8-8381-310dead2acc7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"849b45c5-eb82-4cb0-bab0-3132aad6aa3f" -> "2b86fd3a-9820-41b8-8381-310dead2acc7";
+"98303316-3f61-4114-8264-862d25930208" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"849b45c5-eb82-4cb0-bab0-3132aad6aa3f" -> "98303316-3f61-4114-8264-862d25930208";
+"6404bf62-dc86-4ea7-88d1-41b0567329fe" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,BrightTable)", shape=box, style=filled];
+"849b45c5-eb82-4cb0-bab0-3132aad6aa3f" -> "6404bf62-dc86-4ea7-88d1-41b0567329fe";
+"ad7ba3fc-e265-4f6d-9dbf-5d8a9dab467b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "ad7ba3fc-e265-4f6d-9dbf-5d8a9dab467b";
+"70108398-c96d-4c24-9bf7-834bb1e808dd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ad7ba3fc-e265-4f6d-9dbf-5d8a9dab467b" -> "70108398-c96d-4c24-9bf7-834bb1e808dd";
+"f1789245-bcdc-4196-b24d-ecc675dcbb31" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"ad7ba3fc-e265-4f6d-9dbf-5d8a9dab467b" -> "f1789245-bcdc-4196-b24d-ecc675dcbb31";
+"37896eee-adfe-4867-8d1d-50423bc06005" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"ad7ba3fc-e265-4f6d-9dbf-5d8a9dab467b" -> "37896eee-adfe-4867-8d1d-50423bc06005";
+"e037b98a-9a1d-4730-a401-99319b4de181" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,CoffeeTable)", shape=box, style=filled];
+"ad7ba3fc-e265-4f6d-9dbf-5d8a9dab467b" -> "e037b98a-9a1d-4730-a401-99319b4de181";
+"77bade0b-77da-4514-9834-41a608c1974f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "77bade0b-77da-4514-9834-41a608c1974f";
+"73a96584-309b-4b49-9751-e45ee94fe406" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"77bade0b-77da-4514-9834-41a608c1974f" -> "73a96584-309b-4b49-9751-e45ee94fe406";
+"b1d43f5d-22fe-4d22-a55b-99b6a144a869" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"77bade0b-77da-4514-9834-41a608c1974f" -> "b1d43f5d-22fe-4d22-a55b-99b6a144a869";
+"ee99ed68-9e8a-4672-9f27-c62d3f101118" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"77bade0b-77da-4514-9834-41a608c1974f" -> "ee99ed68-9e8a-4672-9f27-c62d3f101118";
+"7ba4ba3d-291f-448b-b38b-cb4ade9e9505" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,CoffeeTable)", shape=box, style=filled];
+"77bade0b-77da-4514-9834-41a608c1974f" -> "7ba4ba3d-291f-448b-b38b-cb4ade9e9505";
+"3adba6e3-fc27-49a4-bc78-75440812688c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3adba6e3-fc27-49a4-bc78-75440812688c";
+"7a206ff8-e18e-47af-95e8-1981c3423491" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3adba6e3-fc27-49a4-bc78-75440812688c" -> "7a206ff8-e18e-47af-95e8-1981c3423491";
+"36c9c35f-0031-445b-b014-de1cd50ee2aa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"3adba6e3-fc27-49a4-bc78-75440812688c" -> "36c9c35f-0031-445b-b014-de1cd50ee2aa";
+"a153fa09-89c2-48c5-a0f3-8ace6e5121c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"3adba6e3-fc27-49a4-bc78-75440812688c" -> "a153fa09-89c2-48c5-a0f3-8ace6e5121c5";
+"8b20e089-3dc1-4e22-9390-5fb87026386e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"3adba6e3-fc27-49a4-bc78-75440812688c" -> "8b20e089-3dc1-4e22-9390-5fb87026386e";
+"069fa54f-a41b-45d9-822b-8f3b2539e88a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "069fa54f-a41b-45d9-822b-8f3b2539e88a";
+"5a5a3184-f03e-458e-b244-7870eb84b726" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"069fa54f-a41b-45d9-822b-8f3b2539e88a" -> "5a5a3184-f03e-458e-b244-7870eb84b726";
+"d701a3fe-ad1c-4e26-bfc6-fc0babebec07" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"069fa54f-a41b-45d9-822b-8f3b2539e88a" -> "d701a3fe-ad1c-4e26-bfc6-fc0babebec07";
+"b52943d1-dd8c-4e25-95a1-63424080ffa1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"069fa54f-a41b-45d9-822b-8f3b2539e88a" -> "b52943d1-dd8c-4e25-95a1-63424080ffa1";
+"7dd80a5d-9e73-496c-850c-464f15669025" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"069fa54f-a41b-45d9-822b-8f3b2539e88a" -> "7dd80a5d-9e73-496c-850c-464f15669025";
+"8da21da2-cbc1-47f8-9d1b-70305c08a72e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8da21da2-cbc1-47f8-9d1b-70305c08a72e";
+"c5c571b5-abac-4e59-a240-ff49e9ca184e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8da21da2-cbc1-47f8-9d1b-70305c08a72e" -> "c5c571b5-abac-4e59-a240-ff49e9ca184e";
+"7a2aef31-9a0a-404e-acb4-ae4eb4dfe0cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"8da21da2-cbc1-47f8-9d1b-70305c08a72e" -> "7a2aef31-9a0a-404e-acb4-ae4eb4dfe0cd";
+"c160fe13-4d3c-468e-8fc0-f2ddc0f7985e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"8da21da2-cbc1-47f8-9d1b-70305c08a72e" -> "c160fe13-4d3c-468e-8fc0-f2ddc0f7985e";
+"ff421530-9082-4b1e-b3bf-e60fb9a7300b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"8da21da2-cbc1-47f8-9d1b-70305c08a72e" -> "ff421530-9082-4b1e-b3bf-e60fb9a7300b";
+"51e83888-7f26-4b69-aaa8-56b6e3720008" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "51e83888-7f26-4b69-aaa8-56b6e3720008";
+"83c6b5ac-37e7-4c8e-a921-339f7ead9a79" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"51e83888-7f26-4b69-aaa8-56b6e3720008" -> "83c6b5ac-37e7-4c8e-a921-339f7ead9a79";
+"3b9026fb-b983-428c-9212-e2826e49f113" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"51e83888-7f26-4b69-aaa8-56b6e3720008" -> "3b9026fb-b983-428c-9212-e2826e49f113";
+"e9cbdfce-a7db-4ff3-a709-8f4e9ed2f5e5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"51e83888-7f26-4b69-aaa8-56b6e3720008" -> "e9cbdfce-a7db-4ff3-a709-8f4e9ed2f5e5";
+"71268121-1f84-4271-a207-d8366732d0b9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"51e83888-7f26-4b69-aaa8-56b6e3720008" -> "71268121-1f84-4271-a207-d8366732d0b9";
+"80ed382c-0319-40a5-bee7-d50db3b70c8f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "80ed382c-0319-40a5-bee7-d50db3b70c8f";
+"b4a66d2b-e478-44d9-a6e5-a2aa0d8943a6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"80ed382c-0319-40a5-bee7-d50db3b70c8f" -> "b4a66d2b-e478-44d9-a6e5-a2aa0d8943a6";
+"4e3f9c6c-aa2c-4d53-935e-309129a165e5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"80ed382c-0319-40a5-bee7-d50db3b70c8f" -> "4e3f9c6c-aa2c-4d53-935e-309129a165e5";
+"c1714dd1-f8b7-4f9b-bfb5-e856637caa36" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"80ed382c-0319-40a5-bee7-d50db3b70c8f" -> "c1714dd1-f8b7-4f9b-bfb5-e856637caa36";
+"c2221c01-9ce5-48b7-9718-e055a6c9fca3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"80ed382c-0319-40a5-bee7-d50db3b70c8f" -> "c2221c01-9ce5-48b7-9718-e055a6c9fca3";
+"9d361140-1b18-4678-ac4e-2f672b61a29b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "9d361140-1b18-4678-ac4e-2f672b61a29b";
+"a3c5c03d-a3c7-4077-8e45-8e7d7cbc3e94" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"9d361140-1b18-4678-ac4e-2f672b61a29b" -> "a3c5c03d-a3c7-4077-8e45-8e7d7cbc3e94";
+"114bc173-00ae-4110-aada-dcdf2be63329" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9d361140-1b18-4678-ac4e-2f672b61a29b" -> "114bc173-00ae-4110-aada-dcdf2be63329";
+"8a1b03eb-e116-4376-963c-233332239536" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"9d361140-1b18-4678-ac4e-2f672b61a29b" -> "8a1b03eb-e116-4376-963c-233332239536";
+"99ebe783-2866-4653-b439-c47c954f629a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"9d361140-1b18-4678-ac4e-2f672b61a29b" -> "99ebe783-2866-4653-b439-c47c954f629a";
+"f05b937f-3846-4c7f-9ae3-9bc1f90838c7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f05b937f-3846-4c7f-9ae3-9bc1f90838c7";
+"209360d6-508f-4fd5-8373-e8804c086229" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f05b937f-3846-4c7f-9ae3-9bc1f90838c7" -> "209360d6-508f-4fd5-8373-e8804c086229";
+"74227e1c-b23d-4595-afb2-982048daa339" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"f05b937f-3846-4c7f-9ae3-9bc1f90838c7" -> "74227e1c-b23d-4595-afb2-982048daa339";
+"7f703f8e-44ca-4971-89ee-a54a113e53ab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"f05b937f-3846-4c7f-9ae3-9bc1f90838c7" -> "7f703f8e-44ca-4971-89ee-a54a113e53ab";
+"4302ea59-44b4-4386-b396-5437c8cdc950" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"f05b937f-3846-4c7f-9ae3-9bc1f90838c7" -> "4302ea59-44b4-4386-b396-5437c8cdc950";
+"7b3a59ae-e52a-4211-bbb2-5a12731edeaf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "7b3a59ae-e52a-4211-bbb2-5a12731edeaf";
+"619e2a01-991c-4cd3-9dc0-4298abb4a53d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7b3a59ae-e52a-4211-bbb2-5a12731edeaf" -> "619e2a01-991c-4cd3-9dc0-4298abb4a53d";
+"b97fcc30-5291-4706-8ede-69445784c3f4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"7b3a59ae-e52a-4211-bbb2-5a12731edeaf" -> "b97fcc30-5291-4706-8ede-69445784c3f4";
+"d4f938b5-d4c2-45a5-95f7-be36c7b80cfd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"7b3a59ae-e52a-4211-bbb2-5a12731edeaf" -> "d4f938b5-d4c2-45a5-95f7-be36c7b80cfd";
+"d476ce6a-d765-43af-87ca-da83dcddefca" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"7b3a59ae-e52a-4211-bbb2-5a12731edeaf" -> "d476ce6a-d765-43af-87ca-da83dcddefca";
+"8219e4ab-b15b-4bf4-85d6-f90fbcb4c8ba" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8219e4ab-b15b-4bf4-85d6-f90fbcb4c8ba";
+"a776c31a-bdce-42fe-a709-5b4cc0899c79" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"8219e4ab-b15b-4bf4-85d6-f90fbcb4c8ba" -> "a776c31a-bdce-42fe-a709-5b4cc0899c79";
+"efa622c9-a217-4e88-bd8c-88d253671768" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8219e4ab-b15b-4bf4-85d6-f90fbcb4c8ba" -> "efa622c9-a217-4e88-bd8c-88d253671768";
+"62c38d17-6777-4a1e-993d-6d2b81acfd4c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"8219e4ab-b15b-4bf4-85d6-f90fbcb4c8ba" -> "62c38d17-6777-4a1e-993d-6d2b81acfd4c";
+"cf8755fb-7036-4ae3-844d-4d229ec0c475" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"8219e4ab-b15b-4bf4-85d6-f90fbcb4c8ba" -> "cf8755fb-7036-4ae3-844d-4d229ec0c475";
+"a5aae701-29f9-4ed3-ac07-85c3d3cb020e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "a5aae701-29f9-4ed3-ac07-85c3d3cb020e";
+"eb4c845f-39a3-48df-a85a-dab347e07242" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"a5aae701-29f9-4ed3-ac07-85c3d3cb020e" -> "eb4c845f-39a3-48df-a85a-dab347e07242";
+"6f18f494-7255-44e3-99d7-f038ba150517" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a5aae701-29f9-4ed3-ac07-85c3d3cb020e" -> "6f18f494-7255-44e3-99d7-f038ba150517";
+"556d62b1-9f41-4467-a185-de0f5c923616" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"a5aae701-29f9-4ed3-ac07-85c3d3cb020e" -> "556d62b1-9f41-4467-a185-de0f5c923616";
+"35e40936-da76-4662-afba-4c55dc53179b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"a5aae701-29f9-4ed3-ac07-85c3d3cb020e" -> "35e40936-da76-4662-afba-4c55dc53179b";
+"6d7d98f4-4ac0-4cc4-aa3c-b76b9af8c163" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6d7d98f4-4ac0-4cc4-aa3c-b76b9af8c163";
+"1bd3785e-75e5-4b22-a834-f4d0a1b8a29b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"6d7d98f4-4ac0-4cc4-aa3c-b76b9af8c163" -> "1bd3785e-75e5-4b22-a834-f4d0a1b8a29b";
+"c10acca9-2bb5-403d-961c-c488f3086d26" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6d7d98f4-4ac0-4cc4-aa3c-b76b9af8c163" -> "c10acca9-2bb5-403d-961c-c488f3086d26";
+"c7f29a66-ae99-4180-ae51-afd3727842ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6d7d98f4-4ac0-4cc4-aa3c-b76b9af8c163" -> "c7f29a66-ae99-4180-ae51-afd3727842ff";
+"65a7bf50-7541-4673-9067-f046df384d00" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"6d7d98f4-4ac0-4cc4-aa3c-b76b9af8c163" -> "65a7bf50-7541-4673-9067-f046df384d00";
+"9a75fb5c-b84c-4dad-bc7d-560cf594f2ae" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "9a75fb5c-b84c-4dad-bc7d-560cf594f2ae";
+"28c94a05-231a-49eb-8b1d-629d1eb9ad66" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"9a75fb5c-b84c-4dad-bc7d-560cf594f2ae" -> "28c94a05-231a-49eb-8b1d-629d1eb9ad66";
+"ea24db7b-d8bd-46b6-81e8-02a46b05a9ae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9a75fb5c-b84c-4dad-bc7d-560cf594f2ae" -> "ea24db7b-d8bd-46b6-81e8-02a46b05a9ae";
+"7645899a-5ff4-4596-89a4-d7cfa11835c0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9a75fb5c-b84c-4dad-bc7d-560cf594f2ae" -> "7645899a-5ff4-4596-89a4-d7cfa11835c0";
+"c60d32c6-bd04-4b12-abcb-f41ab62bc63d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"9a75fb5c-b84c-4dad-bc7d-560cf594f2ae" -> "c60d32c6-bd04-4b12-abcb-f41ab62bc63d";
+"f84c5863-11f4-46c5-8bc6-f5fd8184d6c5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f84c5863-11f4-46c5-8bc6-f5fd8184d6c5";
+"74c7a7a2-9e7a-4fb1-a0e0-ec24814e1d9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"f84c5863-11f4-46c5-8bc6-f5fd8184d6c5" -> "74c7a7a2-9e7a-4fb1-a0e0-ec24814e1d9f";
+"2e8a95f0-93cd-453f-b2ff-4ae32f52a549" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f84c5863-11f4-46c5-8bc6-f5fd8184d6c5" -> "2e8a95f0-93cd-453f-b2ff-4ae32f52a549";
+"a1832156-ed5b-4fa6-9f74-924e87d75e82" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"f84c5863-11f4-46c5-8bc6-f5fd8184d6c5" -> "a1832156-ed5b-4fa6-9f74-924e87d75e82";
+"b6a216b5-1e61-47dc-8b43-2ad3628547d9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,BrightTable)", shape=box, style=filled];
+"f84c5863-11f4-46c5-8bc6-f5fd8184d6c5" -> "b6a216b5-1e61-47dc-8b43-2ad3628547d9";
+"37a8d0f0-e30a-4682-9ba6-cf4c26659b76" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "37a8d0f0-e30a-4682-9ba6-cf4c26659b76";
+"8236497c-3404-4ef0-8ad6-b5e5579cf1e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"37a8d0f0-e30a-4682-9ba6-cf4c26659b76" -> "8236497c-3404-4ef0-8ad6-b5e5579cf1e2";
+"f88e11eb-ec19-41a1-a739-ef38b34d13a1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"37a8d0f0-e30a-4682-9ba6-cf4c26659b76" -> "f88e11eb-ec19-41a1-a739-ef38b34d13a1";
+"0672efa9-be1c-4d0c-9000-d3823ea2ab62" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"37a8d0f0-e30a-4682-9ba6-cf4c26659b76" -> "0672efa9-be1c-4d0c-9000-d3823ea2ab62";
+"632885ea-e626-4841-88ba-bc5295493f12" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,BrightTable)", shape=box, style=filled];
+"37a8d0f0-e30a-4682-9ba6-cf4c26659b76" -> "632885ea-e626-4841-88ba-bc5295493f12";
+"c4cb6767-97d0-478f-95a0-8c7f0c94ffe8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "c4cb6767-97d0-478f-95a0-8c7f0c94ffe8";
+"28c51817-c041-4230-b74a-7ea7e71b3ceb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c4cb6767-97d0-478f-95a0-8c7f0c94ffe8" -> "28c51817-c041-4230-b74a-7ea7e71b3ceb";
+"8df177ad-3c5e-4fac-a2dd-182432f557ad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"c4cb6767-97d0-478f-95a0-8c7f0c94ffe8" -> "8df177ad-3c5e-4fac-a2dd-182432f557ad";
+"81275441-f91f-4fa0-acb7-2b6dc77d56a0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"c4cb6767-97d0-478f-95a0-8c7f0c94ffe8" -> "81275441-f91f-4fa0-acb7-2b6dc77d56a0";
+"bb67ee72-c37f-4356-8d1e-a4c330cfd890" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,CoffeeTable)", shape=box, style=filled];
+"c4cb6767-97d0-478f-95a0-8c7f0c94ffe8" -> "bb67ee72-c37f-4356-8d1e-a4c330cfd890";
+"421a9419-d6b0-495e-a038-de34c8e754e7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "421a9419-d6b0-495e-a038-de34c8e754e7";
+"921d10ae-0db9-435b-865f-60350c0e7701" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"421a9419-d6b0-495e-a038-de34c8e754e7" -> "921d10ae-0db9-435b-865f-60350c0e7701";
+"63c9c538-54c5-4c00-93b6-3087e1a0999d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"421a9419-d6b0-495e-a038-de34c8e754e7" -> "63c9c538-54c5-4c00-93b6-3087e1a0999d";
+"6fa3a465-190f-4a6a-9bac-44bda4c807b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"421a9419-d6b0-495e-a038-de34c8e754e7" -> "6fa3a465-190f-4a6a-9bac-44bda4c807b2";
+"ba677dec-cf51-4b37-9288-ec712aa55ec6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,CoffeeTable)", shape=box, style=filled];
+"421a9419-d6b0-495e-a038-de34c8e754e7" -> "ba677dec-cf51-4b37-9288-ec712aa55ec6";
+"cf9a3de2-ce17-4798-8bfa-9c65676ebd18" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "cf9a3de2-ce17-4798-8bfa-9c65676ebd18";
+"3c6f644e-33fa-4883-bb38-6a2bdb269356" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cf9a3de2-ce17-4798-8bfa-9c65676ebd18" -> "3c6f644e-33fa-4883-bb38-6a2bdb269356";
+"1fce3f97-6c7c-4680-ac2d-ab10d16d85df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"cf9a3de2-ce17-4798-8bfa-9c65676ebd18" -> "1fce3f97-6c7c-4680-ac2d-ab10d16d85df";
+"a054d6a8-d54c-4d3f-9f6c-2913ce7abda1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"cf9a3de2-ce17-4798-8bfa-9c65676ebd18" -> "a054d6a8-d54c-4d3f-9f6c-2913ce7abda1";
+"d9856db9-f380-4ddf-8256-1e33424f14d3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"cf9a3de2-ce17-4798-8bfa-9c65676ebd18" -> "d9856db9-f380-4ddf-8256-1e33424f14d3";
+"5822bf6a-c2ba-43b9-9911-9812dbd59a1d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5822bf6a-c2ba-43b9-9911-9812dbd59a1d";
+"099bc4a6-4c9c-4810-84d4-f34292b45a55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5822bf6a-c2ba-43b9-9911-9812dbd59a1d" -> "099bc4a6-4c9c-4810-84d4-f34292b45a55";
+"324ab55c-6cdf-4bf7-a9b8-d260e15ac9b9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"5822bf6a-c2ba-43b9-9911-9812dbd59a1d" -> "324ab55c-6cdf-4bf7-a9b8-d260e15ac9b9";
+"275ad62b-53f8-4000-ae2c-a03841d7d1a0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"5822bf6a-c2ba-43b9-9911-9812dbd59a1d" -> "275ad62b-53f8-4000-ae2c-a03841d7d1a0";
+"0c2ae43f-e820-4fbb-b2ea-8e9f2aff4cd0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"5822bf6a-c2ba-43b9-9911-9812dbd59a1d" -> "0c2ae43f-e820-4fbb-b2ea-8e9f2aff4cd0";
+"56f4f23e-6247-4a95-a24a-f68435b106a0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "56f4f23e-6247-4a95-a24a-f68435b106a0";
+"4efee9c9-80f2-416a-81da-ee57a030502b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"56f4f23e-6247-4a95-a24a-f68435b106a0" -> "4efee9c9-80f2-416a-81da-ee57a030502b";
+"3c15f619-00c8-42f3-8ac3-b48df0b545fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"56f4f23e-6247-4a95-a24a-f68435b106a0" -> "3c15f619-00c8-42f3-8ac3-b48df0b545fb";
+"0b043419-9d52-4579-9926-50fc7cbf92f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"56f4f23e-6247-4a95-a24a-f68435b106a0" -> "0b043419-9d52-4579-9926-50fc7cbf92f3";
+"5a572088-37ba-43f0-8b5d-cabc1c6cb86f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"56f4f23e-6247-4a95-a24a-f68435b106a0" -> "5a572088-37ba-43f0-8b5d-cabc1c6cb86f";
+"04b83ab5-ce5e-41a5-a2f6-e143c80b3d78" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "04b83ab5-ce5e-41a5-a2f6-e143c80b3d78";
+"8f11b63d-48f3-42f2-bbe9-2ffc0ec70500" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"04b83ab5-ce5e-41a5-a2f6-e143c80b3d78" -> "8f11b63d-48f3-42f2-bbe9-2ffc0ec70500";
+"5b89c14d-6a8f-4a27-b135-680fcd54aeaf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"04b83ab5-ce5e-41a5-a2f6-e143c80b3d78" -> "5b89c14d-6a8f-4a27-b135-680fcd54aeaf";
+"69fcc082-c389-4581-8ea3-cecba659450e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"04b83ab5-ce5e-41a5-a2f6-e143c80b3d78" -> "69fcc082-c389-4581-8ea3-cecba659450e";
+"78b2b832-1b7f-4de0-9746-e50880fedeab" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"04b83ab5-ce5e-41a5-a2f6-e143c80b3d78" -> "78b2b832-1b7f-4de0-9746-e50880fedeab";
+"2f6eea1d-d934-43d3-93cd-fdc1d0831426" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2f6eea1d-d934-43d3-93cd-fdc1d0831426";
+"081215cb-6236-440d-9b40-79a307e506a4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2f6eea1d-d934-43d3-93cd-fdc1d0831426" -> "081215cb-6236-440d-9b40-79a307e506a4";
+"da1ae0dc-5de1-4a25-9219-379f4225c198" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"2f6eea1d-d934-43d3-93cd-fdc1d0831426" -> "da1ae0dc-5de1-4a25-9219-379f4225c198";
+"a4aca557-f0da-4622-9222-48d35a84b1f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"2f6eea1d-d934-43d3-93cd-fdc1d0831426" -> "a4aca557-f0da-4622-9222-48d35a84b1f3";
+"5c75d86b-1001-41ab-96fe-3a0d38d9e35c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"2f6eea1d-d934-43d3-93cd-fdc1d0831426" -> "5c75d86b-1001-41ab-96fe-3a0d38d9e35c";
+"27773b8d-65c8-4e6d-ab06-367494244607" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "27773b8d-65c8-4e6d-ab06-367494244607";
+"aba91b8a-5227-49d4-9944-481a861341fd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"27773b8d-65c8-4e6d-ab06-367494244607" -> "aba91b8a-5227-49d4-9944-481a861341fd";
+"8bd02e40-37f9-4be6-90b8-f188cc34de6d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"27773b8d-65c8-4e6d-ab06-367494244607" -> "8bd02e40-37f9-4be6-90b8-f188cc34de6d";
+"03c4e0e0-1287-495a-a249-710aa20d0057" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"27773b8d-65c8-4e6d-ab06-367494244607" -> "03c4e0e0-1287-495a-a249-710aa20d0057";
+"252185bd-280b-420b-b678-6ab363f01989" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"27773b8d-65c8-4e6d-ab06-367494244607" -> "252185bd-280b-420b-b678-6ab363f01989";
+"220bff31-dda5-4dcb-93f0-3bf117742609" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "220bff31-dda5-4dcb-93f0-3bf117742609";
+"4cdf5215-82f4-459b-9332-3557f43eb9cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"220bff31-dda5-4dcb-93f0-3bf117742609" -> "4cdf5215-82f4-459b-9332-3557f43eb9cc";
+"df036f21-3981-4289-8d6f-8b5078b2df46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"220bff31-dda5-4dcb-93f0-3bf117742609" -> "df036f21-3981-4289-8d6f-8b5078b2df46";
+"09764188-cdc4-464a-99b2-96d997efd323" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"220bff31-dda5-4dcb-93f0-3bf117742609" -> "09764188-cdc4-464a-99b2-96d997efd323";
+"e8054da7-b79e-434a-ae68-e3651092e471" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"220bff31-dda5-4dcb-93f0-3bf117742609" -> "e8054da7-b79e-434a-ae68-e3651092e471";
+"076cdf4f-4b91-4404-b936-4bb06705d9da" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "076cdf4f-4b91-4404-b936-4bb06705d9da";
+"a4b61ca8-71a1-42cd-9d8a-c66a373deb4a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"076cdf4f-4b91-4404-b936-4bb06705d9da" -> "a4b61ca8-71a1-42cd-9d8a-c66a373deb4a";
+"e517b5dc-fa48-43db-84ea-8f2bdf4659f5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"076cdf4f-4b91-4404-b936-4bb06705d9da" -> "e517b5dc-fa48-43db-84ea-8f2bdf4659f5";
+"329f7a75-663a-43e0-a228-e4ed325283ac" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"076cdf4f-4b91-4404-b936-4bb06705d9da" -> "329f7a75-663a-43e0-a228-e4ed325283ac";
+"576505ff-6e15-4284-900e-6e084ed8a945" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"076cdf4f-4b91-4404-b936-4bb06705d9da" -> "576505ff-6e15-4284-900e-6e084ed8a945";
+"d29a2927-7c93-4f4f-b56e-7240a761d826" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d29a2927-7c93-4f4f-b56e-7240a761d826";
+"3bdea8c7-c612-4aae-925e-d27be101daf1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"d29a2927-7c93-4f4f-b56e-7240a761d826" -> "3bdea8c7-c612-4aae-925e-d27be101daf1";
+"f4fdd3a3-2c86-4cb8-903a-8f76a9424b94" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d29a2927-7c93-4f4f-b56e-7240a761d826" -> "f4fdd3a3-2c86-4cb8-903a-8f76a9424b94";
+"61783b56-4bd1-49bf-9d85-02bd84711b73" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"d29a2927-7c93-4f4f-b56e-7240a761d826" -> "61783b56-4bd1-49bf-9d85-02bd84711b73";
+"a234deda-6375-4853-9ac6-8982fa06ef45" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"d29a2927-7c93-4f4f-b56e-7240a761d826" -> "a234deda-6375-4853-9ac6-8982fa06ef45";
+"446abc1a-03b7-40ee-8e57-8f9d97ec1e82" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "446abc1a-03b7-40ee-8e57-8f9d97ec1e82";
+"a47cfc8e-e819-4ebd-ad36-ad3fc9dcbcac" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"446abc1a-03b7-40ee-8e57-8f9d97ec1e82" -> "a47cfc8e-e819-4ebd-ad36-ad3fc9dcbcac";
+"a9e97936-039b-4658-9e1d-77438208edc5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"446abc1a-03b7-40ee-8e57-8f9d97ec1e82" -> "a9e97936-039b-4658-9e1d-77438208edc5";
+"6e6ed82b-16da-4fa0-8a89-3fc55c343b55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"446abc1a-03b7-40ee-8e57-8f9d97ec1e82" -> "6e6ed82b-16da-4fa0-8a89-3fc55c343b55";
+"3f6a5853-74f7-4a7c-b881-df6a0830eb94" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"446abc1a-03b7-40ee-8e57-8f9d97ec1e82" -> "3f6a5853-74f7-4a7c-b881-df6a0830eb94";
+"6ff860a9-64c1-4388-aaeb-fecd8c4715fd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6ff860a9-64c1-4388-aaeb-fecd8c4715fd";
+"05d4078a-5643-4f17-b97b-3e1a1787530b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"6ff860a9-64c1-4388-aaeb-fecd8c4715fd" -> "05d4078a-5643-4f17-b97b-3e1a1787530b";
+"5f70d628-eab8-428e-90db-e101f06f1b34" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6ff860a9-64c1-4388-aaeb-fecd8c4715fd" -> "5f70d628-eab8-428e-90db-e101f06f1b34";
+"b0e6798d-42f1-4267-8d4d-ac65ba080dbd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6ff860a9-64c1-4388-aaeb-fecd8c4715fd" -> "b0e6798d-42f1-4267-8d4d-ac65ba080dbd";
+"2538518f-79c8-4142-a2c0-cb30556b3f2d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"6ff860a9-64c1-4388-aaeb-fecd8c4715fd" -> "2538518f-79c8-4142-a2c0-cb30556b3f2d";
+"1672ffca-eee5-4bc9-a1b1-499a2618328d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "1672ffca-eee5-4bc9-a1b1-499a2618328d";
+"43c44907-5235-42ca-8863-f3b79fe709e7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"1672ffca-eee5-4bc9-a1b1-499a2618328d" -> "43c44907-5235-42ca-8863-f3b79fe709e7";
+"c595efc7-1ef1-4f27-8406-6107a5f89562" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1672ffca-eee5-4bc9-a1b1-499a2618328d" -> "c595efc7-1ef1-4f27-8406-6107a5f89562";
+"4d3e7b87-915e-4605-a2e2-17b5430aee22" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1672ffca-eee5-4bc9-a1b1-499a2618328d" -> "4d3e7b87-915e-4605-a2e2-17b5430aee22";
+"4a3fd97e-55e3-4d1e-ae7a-bc823f221b1a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"1672ffca-eee5-4bc9-a1b1-499a2618328d" -> "4a3fd97e-55e3-4d1e-ae7a-bc823f221b1a";
+"bb8c7dea-840c-4852-8cae-7ae8b14d3f1f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bb8c7dea-840c-4852-8cae-7ae8b14d3f1f";
+"e7476a36-5aa6-4c36-8ede-b60436e75186" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"bb8c7dea-840c-4852-8cae-7ae8b14d3f1f" -> "e7476a36-5aa6-4c36-8ede-b60436e75186";
+"f20bfa03-a5c8-4298-9fd3-937b6ad8b0a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"bb8c7dea-840c-4852-8cae-7ae8b14d3f1f" -> "f20bfa03-a5c8-4298-9fd3-937b6ad8b0a3";
+"46f42b47-a4bf-4e34-ba88-d02dc8867411" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bb8c7dea-840c-4852-8cae-7ae8b14d3f1f" -> "46f42b47-a4bf-4e34-ba88-d02dc8867411";
+"625acbc8-19a5-49e3-b264-51d3e4e1fbcb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,BrightTable)", shape=box, style=filled];
+"bb8c7dea-840c-4852-8cae-7ae8b14d3f1f" -> "625acbc8-19a5-49e3-b264-51d3e4e1fbcb";
+"5be565c5-ba39-43f7-bb33-1f9c8e6740c6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5be565c5-ba39-43f7-bb33-1f9c8e6740c6";
+"501080b1-6821-4a5f-b707-a6c4140f6459" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"5be565c5-ba39-43f7-bb33-1f9c8e6740c6" -> "501080b1-6821-4a5f-b707-a6c4140f6459";
+"952eaaf5-e265-47d5-87ee-f150c7800939" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"5be565c5-ba39-43f7-bb33-1f9c8e6740c6" -> "952eaaf5-e265-47d5-87ee-f150c7800939";
+"8bb7a0ed-e0be-432f-9c1c-93e472503cc8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5be565c5-ba39-43f7-bb33-1f9c8e6740c6" -> "8bb7a0ed-e0be-432f-9c1c-93e472503cc8";
+"c54cccc6-852a-445f-b399-8290abefa361" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,BrightTable)", shape=box, style=filled];
+"5be565c5-ba39-43f7-bb33-1f9c8e6740c6" -> "c54cccc6-852a-445f-b399-8290abefa361";
+"445c6064-cdfd-41e0-9c04-810324a01168" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "445c6064-cdfd-41e0-9c04-810324a01168";
+"4295d49e-9675-4c1a-8546-d6d430c7db25" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"445c6064-cdfd-41e0-9c04-810324a01168" -> "4295d49e-9675-4c1a-8546-d6d430c7db25";
+"1e8ee83e-8373-4f92-8d56-c912a86bf2d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"445c6064-cdfd-41e0-9c04-810324a01168" -> "1e8ee83e-8373-4f92-8d56-c912a86bf2d9";
+"67c1bdb0-f3fc-48f3-9c89-edea8a2ced9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"445c6064-cdfd-41e0-9c04-810324a01168" -> "67c1bdb0-f3fc-48f3-9c89-edea8a2ced9f";
+"266eaa9a-67d4-4e0b-8947-67b3e8d18a53" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,CoffeeTable)", shape=box, style=filled];
+"445c6064-cdfd-41e0-9c04-810324a01168" -> "266eaa9a-67d4-4e0b-8947-67b3e8d18a53";
+"5fed78a9-ace8-466c-983c-da759638e9a0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5fed78a9-ace8-466c-983c-da759638e9a0";
+"592679ca-4369-4845-81b4-bdf1a5fcc621" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"5fed78a9-ace8-466c-983c-da759638e9a0" -> "592679ca-4369-4845-81b4-bdf1a5fcc621";
+"1527e69a-3ef6-4547-9812-4b74c62d8069" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5fed78a9-ace8-466c-983c-da759638e9a0" -> "1527e69a-3ef6-4547-9812-4b74c62d8069";
+"2e1edf26-ab8d-454a-b8ab-f0f00843092d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"5fed78a9-ace8-466c-983c-da759638e9a0" -> "2e1edf26-ab8d-454a-b8ab-f0f00843092d";
+"b591ca05-44a7-47be-a6d0-b0f37071abe5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,CoffeeTable)", shape=box, style=filled];
+"5fed78a9-ace8-466c-983c-da759638e9a0" -> "b591ca05-44a7-47be-a6d0-b0f37071abe5";
+"1da39cf9-d6cb-45e8-a6f1-bb972f7df9ec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "1da39cf9-d6cb-45e8-a6f1-bb972f7df9ec";
+"684aca91-2e21-427d-85cd-49b5682049df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"1da39cf9-d6cb-45e8-a6f1-bb972f7df9ec" -> "684aca91-2e21-427d-85cd-49b5682049df";
+"38269190-fa4b-47de-b936-0a0448c04c75" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1da39cf9-d6cb-45e8-a6f1-bb972f7df9ec" -> "38269190-fa4b-47de-b936-0a0448c04c75";
+"813ae4b0-c0a2-41df-9b05-d17a32cafc61" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"1da39cf9-d6cb-45e8-a6f1-bb972f7df9ec" -> "813ae4b0-c0a2-41df-9b05-d17a32cafc61";
+"bf1f8ded-be64-4537-9313-4a0899c5601e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"1da39cf9-d6cb-45e8-a6f1-bb972f7df9ec" -> "bf1f8ded-be64-4537-9313-4a0899c5601e";
+"49e3ac02-88d5-47c9-abfa-dae8077a1caa" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "49e3ac02-88d5-47c9-abfa-dae8077a1caa";
+"2b9a4980-db12-4dc8-b396-a36f82c34514" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"49e3ac02-88d5-47c9-abfa-dae8077a1caa" -> "2b9a4980-db12-4dc8-b396-a36f82c34514";
+"a39ff5a0-9362-43a7-80dc-aea34336dcd7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"49e3ac02-88d5-47c9-abfa-dae8077a1caa" -> "a39ff5a0-9362-43a7-80dc-aea34336dcd7";
+"5d6923a7-5ed5-4099-87d7-c1d1c1498201" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"49e3ac02-88d5-47c9-abfa-dae8077a1caa" -> "5d6923a7-5ed5-4099-87d7-c1d1c1498201";
+"d5bfd386-6a7c-4feb-b3fc-c6f6f2b45a62" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"49e3ac02-88d5-47c9-abfa-dae8077a1caa" -> "d5bfd386-6a7c-4feb-b3fc-c6f6f2b45a62";
+"0e9c3cc5-5d3e-4f1c-ad66-5074172514cd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "0e9c3cc5-5d3e-4f1c-ad66-5074172514cd";
+"e0a36365-d48b-4cc0-9c9b-b19f5ce58766" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"0e9c3cc5-5d3e-4f1c-ad66-5074172514cd" -> "e0a36365-d48b-4cc0-9c9b-b19f5ce58766";
+"d901693d-b3ec-4a7f-b1af-c4d757463c01" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"0e9c3cc5-5d3e-4f1c-ad66-5074172514cd" -> "d901693d-b3ec-4a7f-b1af-c4d757463c01";
+"181c92c0-52b3-4710-a47b-c6e30ca109c4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"0e9c3cc5-5d3e-4f1c-ad66-5074172514cd" -> "181c92c0-52b3-4710-a47b-c6e30ca109c4";
+"9f087eca-4d02-40ac-88b6-f3f5b11204af" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"0e9c3cc5-5d3e-4f1c-ad66-5074172514cd" -> "9f087eca-4d02-40ac-88b6-f3f5b11204af";
+"b922c65f-f660-4f78-9dc4-6a18e75be857" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b922c65f-f660-4f78-9dc4-6a18e75be857";
+"99072123-9df2-4d41-88a3-9f50fc19af20" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"b922c65f-f660-4f78-9dc4-6a18e75be857" -> "99072123-9df2-4d41-88a3-9f50fc19af20";
+"ce6471a7-af1c-4936-9e72-92520463f7d1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b922c65f-f660-4f78-9dc4-6a18e75be857" -> "ce6471a7-af1c-4936-9e72-92520463f7d1";
+"8773d1cb-6382-4b1d-b003-a851258129c0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"b922c65f-f660-4f78-9dc4-6a18e75be857" -> "8773d1cb-6382-4b1d-b003-a851258129c0";
+"4990e99b-3010-40d1-8958-da6a3d989048" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"b922c65f-f660-4f78-9dc4-6a18e75be857" -> "4990e99b-3010-40d1-8958-da6a3d989048";
+"82c5f771-2516-4796-8391-1e5044fec618" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "82c5f771-2516-4796-8391-1e5044fec618";
+"f53c24d4-01b5-4ee3-8515-96fb04a649b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"82c5f771-2516-4796-8391-1e5044fec618" -> "f53c24d4-01b5-4ee3-8515-96fb04a649b3";
+"50bfb1c4-ad3e-493e-a5dc-9ffd4965bc93" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"82c5f771-2516-4796-8391-1e5044fec618" -> "50bfb1c4-ad3e-493e-a5dc-9ffd4965bc93";
+"80c44005-0697-4136-aa4b-d3fac3e3ec3d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"82c5f771-2516-4796-8391-1e5044fec618" -> "80c44005-0697-4136-aa4b-d3fac3e3ec3d";
+"c4520aa6-6cba-4b2a-bd58-80a9c793ebe6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"82c5f771-2516-4796-8391-1e5044fec618" -> "c4520aa6-6cba-4b2a-bd58-80a9c793ebe6";
+"ad0d3ae9-0981-4e47-812b-c0a5b7693d85" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "ad0d3ae9-0981-4e47-812b-c0a5b7693d85";
+"bb9973b2-5bf3-4f9d-b4e7-72fb839818a0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"ad0d3ae9-0981-4e47-812b-c0a5b7693d85" -> "bb9973b2-5bf3-4f9d-b4e7-72fb839818a0";
+"3f18e8b0-f5d8-44c3-a17e-5863c5823a52" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ad0d3ae9-0981-4e47-812b-c0a5b7693d85" -> "3f18e8b0-f5d8-44c3-a17e-5863c5823a52";
+"4e106b5c-3105-4cf5-877a-9b4e300c125f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"ad0d3ae9-0981-4e47-812b-c0a5b7693d85" -> "4e106b5c-3105-4cf5-877a-9b4e300c125f";
+"70f6baee-8b9e-457b-8428-58b1e87b9b74" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"ad0d3ae9-0981-4e47-812b-c0a5b7693d85" -> "70f6baee-8b9e-457b-8428-58b1e87b9b74";
+"3627fb8a-9a40-4504-96fc-b17757547d97" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3627fb8a-9a40-4504-96fc-b17757547d97";
+"f0b84a43-7c8d-4098-87d0-341d99bb60c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"3627fb8a-9a40-4504-96fc-b17757547d97" -> "f0b84a43-7c8d-4098-87d0-341d99bb60c5";
+"ff670abf-601c-48fd-a1ca-74df090adf2c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3627fb8a-9a40-4504-96fc-b17757547d97" -> "ff670abf-601c-48fd-a1ca-74df090adf2c";
+"5383fb95-a009-42d0-9de5-f8af70e75fd4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"3627fb8a-9a40-4504-96fc-b17757547d97" -> "5383fb95-a009-42d0-9de5-f8af70e75fd4";
+"89d61dbe-a904-46b6-8679-5ceff96e06ef" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,WaterTable)", shape=box, style=filled];
+"3627fb8a-9a40-4504-96fc-b17757547d97" -> "89d61dbe-a904-46b6-8679-5ceff96e06ef";
+"1a5d8223-505b-427c-9dad-bdb905c62ed6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "1a5d8223-505b-427c-9dad-bdb905c62ed6";
+"31980608-7b7f-4674-8176-45002baf5a46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"1a5d8223-505b-427c-9dad-bdb905c62ed6" -> "31980608-7b7f-4674-8176-45002baf5a46";
+"dda6304a-3d32-493b-aff6-d18b5f290895" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1a5d8223-505b-427c-9dad-bdb905c62ed6" -> "dda6304a-3d32-493b-aff6-d18b5f290895";
+"9787d5ac-fef5-42ae-a59a-b7013b0e0ccb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"1a5d8223-505b-427c-9dad-bdb905c62ed6" -> "9787d5ac-fef5-42ae-a59a-b7013b0e0ccb";
+"528277de-1b77-4397-bfee-89ae346c98fd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,WaterTable)", shape=box, style=filled];
+"1a5d8223-505b-427c-9dad-bdb905c62ed6" -> "528277de-1b77-4397-bfee-89ae346c98fd";
+"084f9714-e571-4c2c-86e1-ce205a10347f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "084f9714-e571-4c2c-86e1-ce205a10347f";
+"222364cf-56a6-407e-a339-be7cdb472ddc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"084f9714-e571-4c2c-86e1-ce205a10347f" -> "222364cf-56a6-407e-a339-be7cdb472ddc";
+"b7a21420-0944-4e6a-8f63-4fd4f25ca3ad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"084f9714-e571-4c2c-86e1-ce205a10347f" -> "b7a21420-0944-4e6a-8f63-4fd4f25ca3ad";
+"db33aa78-b3fb-41a7-b214-0a74187d47a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"084f9714-e571-4c2c-86e1-ce205a10347f" -> "db33aa78-b3fb-41a7-b214-0a74187d47a3";
+"b59b793c-a86b-4ba9-8958-a9ae9ea20b22" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"084f9714-e571-4c2c-86e1-ce205a10347f" -> "b59b793c-a86b-4ba9-8958-a9ae9ea20b22";
+"d1a847b9-2de3-49ad-bda2-f52bc398e6cf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d1a847b9-2de3-49ad-bda2-f52bc398e6cf";
+"72328d6a-f601-4d1a-a01e-f29537ac5c7a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"d1a847b9-2de3-49ad-bda2-f52bc398e6cf" -> "72328d6a-f601-4d1a-a01e-f29537ac5c7a";
+"f5ce1dd9-8a78-4647-ae19-c1cf8b33b9d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"d1a847b9-2de3-49ad-bda2-f52bc398e6cf" -> "f5ce1dd9-8a78-4647-ae19-c1cf8b33b9d6";
+"ae211936-0bd4-47c0-8420-91cf566b5511" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d1a847b9-2de3-49ad-bda2-f52bc398e6cf" -> "ae211936-0bd4-47c0-8420-91cf566b5511";
+"acf03e81-2012-4d0b-8c2e-174c9f19a8c4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"d1a847b9-2de3-49ad-bda2-f52bc398e6cf" -> "acf03e81-2012-4d0b-8c2e-174c9f19a8c4";
+"f216c705-05f3-4814-b99a-dc2cb2d0270a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f216c705-05f3-4814-b99a-dc2cb2d0270a";
+"57fae6c5-2f97-4751-ae9b-eb1d84d032df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"f216c705-05f3-4814-b99a-dc2cb2d0270a" -> "57fae6c5-2f97-4751-ae9b-eb1d84d032df";
+"b3e24e78-fed4-424d-83b4-7d583d5fa5c7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f216c705-05f3-4814-b99a-dc2cb2d0270a" -> "b3e24e78-fed4-424d-83b4-7d583d5fa5c7";
+"db6edf72-d407-45b7-ae27-ddb404abae89" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f216c705-05f3-4814-b99a-dc2cb2d0270a" -> "db6edf72-d407-45b7-ae27-ddb404abae89";
+"f274860c-b1c8-4094-80ff-6e24801009e3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"f216c705-05f3-4814-b99a-dc2cb2d0270a" -> "f274860c-b1c8-4094-80ff-6e24801009e3";
+"3049d991-2145-4012-bb24-9a9b91caa120" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3049d991-2145-4012-bb24-9a9b91caa120";
+"320a9762-c370-4655-a652-39d241db9341" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"3049d991-2145-4012-bb24-9a9b91caa120" -> "320a9762-c370-4655-a652-39d241db9341";
+"ad96ce95-b70c-485c-adc0-a241d4cce425" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3049d991-2145-4012-bb24-9a9b91caa120" -> "ad96ce95-b70c-485c-adc0-a241d4cce425";
+"b948791b-abb1-4111-b0b0-a4898b9dd35d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3049d991-2145-4012-bb24-9a9b91caa120" -> "b948791b-abb1-4111-b0b0-a4898b9dd35d";
+"609d0323-4aed-474e-90d0-1def19bf90ad" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"3049d991-2145-4012-bb24-9a9b91caa120" -> "609d0323-4aed-474e-90d0-1def19bf90ad";
+"12ca484e-1e54-4ff5-8289-77bc6efb6027" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "12ca484e-1e54-4ff5-8289-77bc6efb6027";
+"dee22561-ad74-4f59-a07a-5a11e228bec3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"12ca484e-1e54-4ff5-8289-77bc6efb6027" -> "dee22561-ad74-4f59-a07a-5a11e228bec3";
+"0ccfb2c3-e3a0-4af7-90d3-2285d4ed752c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"12ca484e-1e54-4ff5-8289-77bc6efb6027" -> "0ccfb2c3-e3a0-4af7-90d3-2285d4ed752c";
+"0d0dbd39-d8c0-4b10-8ca1-2b5a465e4a9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"12ca484e-1e54-4ff5-8289-77bc6efb6027" -> "0d0dbd39-d8c0-4b10-8ca1-2b5a465e4a9f";
+"dc79c8a3-f0dd-47a3-995a-0b415fb4630b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"12ca484e-1e54-4ff5-8289-77bc6efb6027" -> "dc79c8a3-f0dd-47a3-995a-0b415fb4630b";
+"8df2ce8d-68f7-42eb-a0b2-62cd7e3d96c7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8df2ce8d-68f7-42eb-a0b2-62cd7e3d96c7";
+"92f92acb-38cb-48dd-ba9e-b4ab17177cb9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"8df2ce8d-68f7-42eb-a0b2-62cd7e3d96c7" -> "92f92acb-38cb-48dd-ba9e-b4ab17177cb9";
+"2afb5d86-d5a8-4683-8fbc-18284284bdd2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"8df2ce8d-68f7-42eb-a0b2-62cd7e3d96c7" -> "2afb5d86-d5a8-4683-8fbc-18284284bdd2";
+"d886cd5a-0fe5-40e1-bd52-ee8e3c58faca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8df2ce8d-68f7-42eb-a0b2-62cd7e3d96c7" -> "d886cd5a-0fe5-40e1-bd52-ee8e3c58faca";
+"e4c0ae03-79e5-4469-801a-3b04b92a0017" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"8df2ce8d-68f7-42eb-a0b2-62cd7e3d96c7" -> "e4c0ae03-79e5-4469-801a-3b04b92a0017";
+"0d9cdeea-2854-4ca4-9914-993600dbc841" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "0d9cdeea-2854-4ca4-9914-993600dbc841";
+"f7f87c98-0765-46af-ae64-409519a38abc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"0d9cdeea-2854-4ca4-9914-993600dbc841" -> "f7f87c98-0765-46af-ae64-409519a38abc";
+"d7de3ea6-ac4a-49a7-ae54-62fdc67c4ec9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"0d9cdeea-2854-4ca4-9914-993600dbc841" -> "d7de3ea6-ac4a-49a7-ae54-62fdc67c4ec9";
+"7a06b0fb-b544-457d-a693-534297a05e00" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"0d9cdeea-2854-4ca4-9914-993600dbc841" -> "7a06b0fb-b544-457d-a693-534297a05e00";
+"628b6758-bd53-41ce-890b-1f51766e780a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,CoffeeTable)", shape=box, style=filled];
+"0d9cdeea-2854-4ca4-9914-993600dbc841" -> "628b6758-bd53-41ce-890b-1f51766e780a";
+"23f4ac93-9b7e-473c-b76d-a32ab8d2bbd0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "23f4ac93-9b7e-473c-b76d-a32ab8d2bbd0";
+"b2bb079f-5c66-4d3a-8ef9-ed57830fa2c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"23f4ac93-9b7e-473c-b76d-a32ab8d2bbd0" -> "b2bb079f-5c66-4d3a-8ef9-ed57830fa2c5";
+"a4ce4a53-e9ae-4556-bc0c-e4585fdee7db" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"23f4ac93-9b7e-473c-b76d-a32ab8d2bbd0" -> "a4ce4a53-e9ae-4556-bc0c-e4585fdee7db";
+"6f497f79-0e73-4257-928d-14bacf0446c0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"23f4ac93-9b7e-473c-b76d-a32ab8d2bbd0" -> "6f497f79-0e73-4257-928d-14bacf0446c0";
+"3fd2d1e4-af8f-481a-90b3-ca1beb2ef6a2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,CoffeeTable)", shape=box, style=filled];
+"23f4ac93-9b7e-473c-b76d-a32ab8d2bbd0" -> "3fd2d1e4-af8f-481a-90b3-ca1beb2ef6a2";
+"2f37605f-c13c-484d-92fe-82a2ef42ff15" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2f37605f-c13c-484d-92fe-82a2ef42ff15";
+"fc316e74-31a5-4606-bfab-cd4282b13428" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"2f37605f-c13c-484d-92fe-82a2ef42ff15" -> "fc316e74-31a5-4606-bfab-cd4282b13428";
+"0162a1f7-8e7f-46f1-809e-53d628f1843f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2f37605f-c13c-484d-92fe-82a2ef42ff15" -> "0162a1f7-8e7f-46f1-809e-53d628f1843f";
+"b445ed70-2bd4-4351-887c-a5e0715b9222" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"2f37605f-c13c-484d-92fe-82a2ef42ff15" -> "b445ed70-2bd4-4351-887c-a5e0715b9222";
+"a17591f2-18a0-4964-a0f8-d2e5060a0226" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"2f37605f-c13c-484d-92fe-82a2ef42ff15" -> "a17591f2-18a0-4964-a0f8-d2e5060a0226";
+"b7a6e89b-f7ea-4ce4-af2b-81a26da8ce57" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b7a6e89b-f7ea-4ce4-af2b-81a26da8ce57";
+"eb151fe3-ca7d-4734-844f-2dd1c4487fae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"b7a6e89b-f7ea-4ce4-af2b-81a26da8ce57" -> "eb151fe3-ca7d-4734-844f-2dd1c4487fae";
+"d53022b0-c3b5-4d7e-8ba4-5108148a962e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b7a6e89b-f7ea-4ce4-af2b-81a26da8ce57" -> "d53022b0-c3b5-4d7e-8ba4-5108148a962e";
+"608ecfac-b18a-4893-a92d-77089e8aa7aa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"b7a6e89b-f7ea-4ce4-af2b-81a26da8ce57" -> "608ecfac-b18a-4893-a92d-77089e8aa7aa";
+"d4031ef2-7958-4493-926c-c291a0fd54dd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"b7a6e89b-f7ea-4ce4-af2b-81a26da8ce57" -> "d4031ef2-7958-4493-926c-c291a0fd54dd";
+"b50458ea-d857-4028-9caf-c6507dbe0367" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b50458ea-d857-4028-9caf-c6507dbe0367";
+"7382bc82-8794-4ce9-ae3c-e7c4d18578db" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"b50458ea-d857-4028-9caf-c6507dbe0367" -> "7382bc82-8794-4ce9-ae3c-e7c4d18578db";
+"de312934-d9aa-4d00-8651-1be3da5fad3b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b50458ea-d857-4028-9caf-c6507dbe0367" -> "de312934-d9aa-4d00-8651-1be3da5fad3b";
+"1e0a171f-cbbb-4f84-9620-0ab5cbedb9f4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"b50458ea-d857-4028-9caf-c6507dbe0367" -> "1e0a171f-cbbb-4f84-9620-0ab5cbedb9f4";
+"3d4774ae-5250-44c0-91cb-c2bc48f35a5d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"b50458ea-d857-4028-9caf-c6507dbe0367" -> "3d4774ae-5250-44c0-91cb-c2bc48f35a5d";
+"d4985bce-a6ca-4cb2-827e-e983362b068c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d4985bce-a6ca-4cb2-827e-e983362b068c";
+"2a2766e7-5946-41a7-bd39-d979aa06ffb8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"d4985bce-a6ca-4cb2-827e-e983362b068c" -> "2a2766e7-5946-41a7-bd39-d979aa06ffb8";
+"14aa9e0c-1323-44ad-8165-aedfd324fd1d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d4985bce-a6ca-4cb2-827e-e983362b068c" -> "14aa9e0c-1323-44ad-8165-aedfd324fd1d";
+"17b8b396-b658-4b4a-925e-434f7b7a51a5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"d4985bce-a6ca-4cb2-827e-e983362b068c" -> "17b8b396-b658-4b4a-925e-434f7b7a51a5";
+"fdf43840-cab0-4103-abec-53d4b3a255af" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"d4985bce-a6ca-4cb2-827e-e983362b068c" -> "fdf43840-cab0-4103-abec-53d4b3a255af";
+"239068e0-175e-4121-95b3-629f3ed7a3b3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "239068e0-175e-4121-95b3-629f3ed7a3b3";
+"02907aec-08a8-488c-af6d-af7342fe21ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"239068e0-175e-4121-95b3-629f3ed7a3b3" -> "02907aec-08a8-488c-af6d-af7342fe21ef";
+"6d6a0b23-03a9-4e26-90bf-6f5fd292a7a6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"239068e0-175e-4121-95b3-629f3ed7a3b3" -> "6d6a0b23-03a9-4e26-90bf-6f5fd292a7a6";
+"888276e9-9554-4e1d-9204-19e08f80ea89" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"239068e0-175e-4121-95b3-629f3ed7a3b3" -> "888276e9-9554-4e1d-9204-19e08f80ea89";
+"25f5c3b8-d357-468d-80af-626fec91e084" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"239068e0-175e-4121-95b3-629f3ed7a3b3" -> "25f5c3b8-d357-468d-80af-626fec91e084";
+"de8d8dd3-8a45-4270-93d6-1445de298a55" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "de8d8dd3-8a45-4270-93d6-1445de298a55";
+"0794d940-1fe0-4c77-84e3-912cea94a8bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"de8d8dd3-8a45-4270-93d6-1445de298a55" -> "0794d940-1fe0-4c77-84e3-912cea94a8bc";
+"945612c7-f57a-4ec9-af43-25279ae09636" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"de8d8dd3-8a45-4270-93d6-1445de298a55" -> "945612c7-f57a-4ec9-af43-25279ae09636";
+"c8bd8055-76f1-4c00-8994-0f7bbc29a0c1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"de8d8dd3-8a45-4270-93d6-1445de298a55" -> "c8bd8055-76f1-4c00-8994-0f7bbc29a0c1";
+"05bf0af9-bdd2-4728-8ecb-bad64da80b82" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"de8d8dd3-8a45-4270-93d6-1445de298a55" -> "05bf0af9-bdd2-4728-8ecb-bad64da80b82";
+"ea8e7829-a651-4f60-9630-aaf0c276de47" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "ea8e7829-a651-4f60-9630-aaf0c276de47";
+"d2c44489-8673-489b-8807-137660268945" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"ea8e7829-a651-4f60-9630-aaf0c276de47" -> "d2c44489-8673-489b-8807-137660268945";
+"7cd3f082-a9cd-4d50-8bf5-922422c866d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ea8e7829-a651-4f60-9630-aaf0c276de47" -> "7cd3f082-a9cd-4d50-8bf5-922422c866d9";
+"56dc9602-bb98-4646-bd82-d45c385ee363" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"ea8e7829-a651-4f60-9630-aaf0c276de47" -> "56dc9602-bb98-4646-bd82-d45c385ee363";
+"45ad3847-6eee-4dbb-a7ca-ec621c5eb1d4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"ea8e7829-a651-4f60-9630-aaf0c276de47" -> "45ad3847-6eee-4dbb-a7ca-ec621c5eb1d4";
+"8772262b-ac34-405c-83c5-12205b5a9c7b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8772262b-ac34-405c-83c5-12205b5a9c7b";
+"0270da4f-f26d-4807-aab8-1e5dec8cecea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"8772262b-ac34-405c-83c5-12205b5a9c7b" -> "0270da4f-f26d-4807-aab8-1e5dec8cecea";
+"a795d0b6-587b-4019-9b90-7b430e103aba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8772262b-ac34-405c-83c5-12205b5a9c7b" -> "a795d0b6-587b-4019-9b90-7b430e103aba";
+"65220597-5196-482c-83ab-09a93975a10e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"8772262b-ac34-405c-83c5-12205b5a9c7b" -> "65220597-5196-482c-83ab-09a93975a10e";
+"e2a41861-4d7d-46d0-8d27-592888b85149" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"8772262b-ac34-405c-83c5-12205b5a9c7b" -> "e2a41861-4d7d-46d0-8d27-592888b85149";
+"bc6d4582-8733-48ca-b529-47f075bfbb15" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bc6d4582-8733-48ca-b529-47f075bfbb15";
+"ee05476a-23af-4cc9-91c5-b229199d3d9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"bc6d4582-8733-48ca-b529-47f075bfbb15" -> "ee05476a-23af-4cc9-91c5-b229199d3d9b";
+"e1afc090-cdd4-4941-8682-65ad01349db8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bc6d4582-8733-48ca-b529-47f075bfbb15" -> "e1afc090-cdd4-4941-8682-65ad01349db8";
+"05ee2dab-3373-4ebf-9d45-fb8060fe89c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"bc6d4582-8733-48ca-b529-47f075bfbb15" -> "05ee2dab-3373-4ebf-9d45-fb8060fe89c3";
+"52e20c98-8487-4fa9-83e5-022d2735cff4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"bc6d4582-8733-48ca-b529-47f075bfbb15" -> "52e20c98-8487-4fa9-83e5-022d2735cff4";
+"99d4c57d-811f-422a-9b48-348032e3367e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "99d4c57d-811f-422a-9b48-348032e3367e";
+"4edb7a66-401f-46ba-88e6-07557c74fcee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"99d4c57d-811f-422a-9b48-348032e3367e" -> "4edb7a66-401f-46ba-88e6-07557c74fcee";
+"bc09a933-54d4-40f2-b980-4d187b6a22b4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"99d4c57d-811f-422a-9b48-348032e3367e" -> "bc09a933-54d4-40f2-b980-4d187b6a22b4";
+"4a46276c-d26e-4870-97b8-13608dcecc3b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"99d4c57d-811f-422a-9b48-348032e3367e" -> "4a46276c-d26e-4870-97b8-13608dcecc3b";
+"2474864f-5715-4cc0-bd55-0839544ff9c9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"99d4c57d-811f-422a-9b48-348032e3367e" -> "2474864f-5715-4cc0-bd55-0839544ff9c9";
+"c9099537-d4f8-4560-9294-81d4efe65d60" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "c9099537-d4f8-4560-9294-81d4efe65d60";
+"5f939a3b-cb18-41f3-9bfe-610e92fcfc28" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c9099537-d4f8-4560-9294-81d4efe65d60" -> "5f939a3b-cb18-41f3-9bfe-610e92fcfc28";
+"bf317ba3-419a-4247-8137-e442930b0270" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c9099537-d4f8-4560-9294-81d4efe65d60" -> "bf317ba3-419a-4247-8137-e442930b0270";
+"2a4a6184-f30d-4457-af09-8c333f1dbb64" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"c9099537-d4f8-4560-9294-81d4efe65d60" -> "2a4a6184-f30d-4457-af09-8c333f1dbb64";
+"729d0066-206f-44e1-8805-795c19fd3274" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"c9099537-d4f8-4560-9294-81d4efe65d60" -> "729d0066-206f-44e1-8805-795c19fd3274";
+"6b1cee73-6b71-4837-af2b-0d92aaaf535b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6b1cee73-6b71-4837-af2b-0d92aaaf535b";
+"4c8fb3a9-cee2-4fff-bdf6-582c50cc52ed" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6b1cee73-6b71-4837-af2b-0d92aaaf535b" -> "4c8fb3a9-cee2-4fff-bdf6-582c50cc52ed";
+"341af69a-ffad-4254-b2ab-82fb94d76db2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6b1cee73-6b71-4837-af2b-0d92aaaf535b" -> "341af69a-ffad-4254-b2ab-82fb94d76db2";
+"cc3f0b1d-14e8-4b26-af03-cb0492f3976b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"6b1cee73-6b71-4837-af2b-0d92aaaf535b" -> "cc3f0b1d-14e8-4b26-af03-cb0492f3976b";
+"34192e02-d930-45df-a459-6060b3ca6ad2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"6b1cee73-6b71-4837-af2b-0d92aaaf535b" -> "34192e02-d930-45df-a459-6060b3ca6ad2";
+"e94a1a39-1c33-421f-b47f-f9528262fe97" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e94a1a39-1c33-421f-b47f-f9528262fe97";
+"2258db2a-6954-4701-8343-3efb93f77a78" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"e94a1a39-1c33-421f-b47f-f9528262fe97" -> "2258db2a-6954-4701-8343-3efb93f77a78";
+"58975963-4b93-4678-a67c-cb94a9afea4f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e94a1a39-1c33-421f-b47f-f9528262fe97" -> "58975963-4b93-4678-a67c-cb94a9afea4f";
+"df313cf4-704e-4a47-a460-c1e65a09fcba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"e94a1a39-1c33-421f-b47f-f9528262fe97" -> "df313cf4-704e-4a47-a460-c1e65a09fcba";
+"2298ce8d-f89a-4267-9457-7ff5c4d93411" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"e94a1a39-1c33-421f-b47f-f9528262fe97" -> "2298ce8d-f89a-4267-9457-7ff5c4d93411";
+"9c2973f4-bb75-468b-9f23-143f2c28498b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "9c2973f4-bb75-468b-9f23-143f2c28498b";
+"dcb185c2-d797-47c7-985b-39f21fbbc37d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"9c2973f4-bb75-468b-9f23-143f2c28498b" -> "dcb185c2-d797-47c7-985b-39f21fbbc37d";
+"ba0114a7-814f-4b78-be3a-2abf98fbbe65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9c2973f4-bb75-468b-9f23-143f2c28498b" -> "ba0114a7-814f-4b78-be3a-2abf98fbbe65";
+"56274c14-7263-437c-8552-4ff405d760b4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"9c2973f4-bb75-468b-9f23-143f2c28498b" -> "56274c14-7263-437c-8552-4ff405d760b4";
+"6e826c09-30f0-484c-8ba0-6ff02861fbb1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"9c2973f4-bb75-468b-9f23-143f2c28498b" -> "6e826c09-30f0-484c-8ba0-6ff02861fbb1";
+"e00ea412-de98-450b-8d57-99c26c5a0840" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e00ea412-de98-450b-8d57-99c26c5a0840";
+"56eca02f-ab04-40ff-8eda-28d535a08e88" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e00ea412-de98-450b-8d57-99c26c5a0840" -> "56eca02f-ab04-40ff-8eda-28d535a08e88";
+"f323e734-764c-4b43-8f74-dd7fc48b62ab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"e00ea412-de98-450b-8d57-99c26c5a0840" -> "f323e734-764c-4b43-8f74-dd7fc48b62ab";
+"3db30fa4-8408-425b-a4ba-c76f7f8d4e7c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"e00ea412-de98-450b-8d57-99c26c5a0840" -> "3db30fa4-8408-425b-a4ba-c76f7f8d4e7c";
+"3f858b58-a74f-43da-bdd9-b9d5ab28823f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,CoffeeTable)", shape=box, style=filled];
+"e00ea412-de98-450b-8d57-99c26c5a0840" -> "3f858b58-a74f-43da-bdd9-b9d5ab28823f";
+"7f0d0e2d-aec4-46a8-bd42-43af822d8e2f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "7f0d0e2d-aec4-46a8-bd42-43af822d8e2f";
+"972c7cf0-6f72-42e1-bc55-56e772876de2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7f0d0e2d-aec4-46a8-bd42-43af822d8e2f" -> "972c7cf0-6f72-42e1-bc55-56e772876de2";
+"502867af-b0a6-47c9-a1b1-90d4d83f88d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"7f0d0e2d-aec4-46a8-bd42-43af822d8e2f" -> "502867af-b0a6-47c9-a1b1-90d4d83f88d8";
+"8c68a3e4-32b2-4962-a162-25ba391050dd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"7f0d0e2d-aec4-46a8-bd42-43af822d8e2f" -> "8c68a3e4-32b2-4962-a162-25ba391050dd";
+"af790aa2-49b6-4f16-a4c6-2b8968bef3b2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,CoffeeTable)", shape=box, style=filled];
+"7f0d0e2d-aec4-46a8-bd42-43af822d8e2f" -> "af790aa2-49b6-4f16-a4c6-2b8968bef3b2";
+"49514a35-2550-4662-ac9f-cb0c8227056e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "49514a35-2550-4662-ac9f-cb0c8227056e";
+"2fcee86b-8750-4113-88d7-04bf9883c9d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"49514a35-2550-4662-ac9f-cb0c8227056e" -> "2fcee86b-8750-4113-88d7-04bf9883c9d4";
+"310477a5-fde3-4175-a85d-9f635336e9a9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"49514a35-2550-4662-ac9f-cb0c8227056e" -> "310477a5-fde3-4175-a85d-9f635336e9a9";
+"0aebb6fd-e3ee-4319-a8d3-aa42e007c4cb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"49514a35-2550-4662-ac9f-cb0c8227056e" -> "0aebb6fd-e3ee-4319-a8d3-aa42e007c4cb";
+"c535a73c-565e-4292-945d-4e2450e8232c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"49514a35-2550-4662-ac9f-cb0c8227056e" -> "c535a73c-565e-4292-945d-4e2450e8232c";
+"684b4f3d-8135-43d5-b21a-699010d98938" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "684b4f3d-8135-43d5-b21a-699010d98938";
+"08d7c2c4-ca97-48a0-8422-a547d4cf6132" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"684b4f3d-8135-43d5-b21a-699010d98938" -> "08d7c2c4-ca97-48a0-8422-a547d4cf6132";
+"87ad5172-4800-4b6d-968b-90e561977cc2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"684b4f3d-8135-43d5-b21a-699010d98938" -> "87ad5172-4800-4b6d-968b-90e561977cc2";
+"c0bbba4e-f59c-4684-b96a-683363df9cae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"684b4f3d-8135-43d5-b21a-699010d98938" -> "c0bbba4e-f59c-4684-b96a-683363df9cae";
+"1ab442f2-24e0-436b-979c-c1917829f641" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"684b4f3d-8135-43d5-b21a-699010d98938" -> "1ab442f2-24e0-436b-979c-c1917829f641";
+"72ffc880-0039-47aa-8270-11742cdc19a2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "72ffc880-0039-47aa-8270-11742cdc19a2";
+"c243ff20-0550-4f84-b542-03acd228f6d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"72ffc880-0039-47aa-8270-11742cdc19a2" -> "c243ff20-0550-4f84-b542-03acd228f6d4";
+"ba37857d-99f3-4b06-b9a2-90a16bbda37d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"72ffc880-0039-47aa-8270-11742cdc19a2" -> "ba37857d-99f3-4b06-b9a2-90a16bbda37d";
+"620bd279-a0fc-4b57-863d-e68ff5b0581c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"72ffc880-0039-47aa-8270-11742cdc19a2" -> "620bd279-a0fc-4b57-863d-e68ff5b0581c";
+"3b8e4d40-4c21-4994-8ac5-6d8f009097f9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"72ffc880-0039-47aa-8270-11742cdc19a2" -> "3b8e4d40-4c21-4994-8ac5-6d8f009097f9";
+"b35bdd7e-05b2-4388-9251-09e1680d53d1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b35bdd7e-05b2-4388-9251-09e1680d53d1";
+"52015462-007a-47f1-b56c-e95932028d14" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b35bdd7e-05b2-4388-9251-09e1680d53d1" -> "52015462-007a-47f1-b56c-e95932028d14";
+"a361b4b1-e0ea-4e5f-857b-885a82283c18" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"b35bdd7e-05b2-4388-9251-09e1680d53d1" -> "a361b4b1-e0ea-4e5f-857b-885a82283c18";
+"47d4cc33-3c9f-4bbd-9c9c-503d5e355739" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"b35bdd7e-05b2-4388-9251-09e1680d53d1" -> "47d4cc33-3c9f-4bbd-9c9c-503d5e355739";
+"7534013c-3eb0-4b50-9a21-0197c2ee2ec7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"b35bdd7e-05b2-4388-9251-09e1680d53d1" -> "7534013c-3eb0-4b50-9a21-0197c2ee2ec7";
+"b2c41091-071e-4e10-a8ae-dd6ed200475d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b2c41091-071e-4e10-a8ae-dd6ed200475d";
+"02544ff3-ebc5-4e5f-8ba0-56ca3703ece0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b2c41091-071e-4e10-a8ae-dd6ed200475d" -> "02544ff3-ebc5-4e5f-8ba0-56ca3703ece0";
+"41d451ca-fe46-4a02-8fb4-06548e9ba7bb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"b2c41091-071e-4e10-a8ae-dd6ed200475d" -> "41d451ca-fe46-4a02-8fb4-06548e9ba7bb";
+"b625f75d-04ce-403f-a034-fa1025e4ab55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"b2c41091-071e-4e10-a8ae-dd6ed200475d" -> "b625f75d-04ce-403f-a034-fa1025e4ab55";
+"cba7f62f-d9bf-44af-96ff-4ef41fe650f5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"b2c41091-071e-4e10-a8ae-dd6ed200475d" -> "cba7f62f-d9bf-44af-96ff-4ef41fe650f5";
+"e07b9dea-ca10-4ac9-b909-26fa6f6019bb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e07b9dea-ca10-4ac9-b909-26fa6f6019bb";
+"767d3027-6aa2-49e7-b39f-d07853d69595" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e07b9dea-ca10-4ac9-b909-26fa6f6019bb" -> "767d3027-6aa2-49e7-b39f-d07853d69595";
+"d04b78c7-eedd-4b19-81c4-d33857e6e90d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"e07b9dea-ca10-4ac9-b909-26fa6f6019bb" -> "d04b78c7-eedd-4b19-81c4-d33857e6e90d";
+"7ad6df93-500c-4b58-bd86-ccfd24d6c812" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"e07b9dea-ca10-4ac9-b909-26fa6f6019bb" -> "7ad6df93-500c-4b58-bd86-ccfd24d6c812";
+"d310c531-141b-4095-bd1f-1dce2daf01a8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"e07b9dea-ca10-4ac9-b909-26fa6f6019bb" -> "d310c531-141b-4095-bd1f-1dce2daf01a8";
+"9a73cb33-e4ee-4ad6-9437-f630a8c77b5d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "9a73cb33-e4ee-4ad6-9437-f630a8c77b5d";
+"1622185d-444e-4bad-8399-d3760f9d8b59" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9a73cb33-e4ee-4ad6-9437-f630a8c77b5d" -> "1622185d-444e-4bad-8399-d3760f9d8b59";
+"cb1f6c1c-a5e1-46b1-8a2a-7d0dfa10b5ed" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"9a73cb33-e4ee-4ad6-9437-f630a8c77b5d" -> "cb1f6c1c-a5e1-46b1-8a2a-7d0dfa10b5ed";
+"2cf4f4d6-9938-4c07-9f4a-3b328ef22e30" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"9a73cb33-e4ee-4ad6-9437-f630a8c77b5d" -> "2cf4f4d6-9938-4c07-9f4a-3b328ef22e30";
+"03d65e54-664e-4653-a1d7-09def6540504" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,WaterTable)", shape=box, style=filled];
+"9a73cb33-e4ee-4ad6-9437-f630a8c77b5d" -> "03d65e54-664e-4653-a1d7-09def6540504";
+"d4f71d0a-88d5-41c0-9cdb-89c0226d98d2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d4f71d0a-88d5-41c0-9cdb-89c0226d98d2";
+"614b5564-d010-48da-b9ac-133dda848bcc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d4f71d0a-88d5-41c0-9cdb-89c0226d98d2" -> "614b5564-d010-48da-b9ac-133dda848bcc";
+"9ba83ca6-be44-40dc-9297-6a7485490f16" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"d4f71d0a-88d5-41c0-9cdb-89c0226d98d2" -> "9ba83ca6-be44-40dc-9297-6a7485490f16";
+"3087ebcc-735d-4fb1-b0dc-d5108e48683c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"d4f71d0a-88d5-41c0-9cdb-89c0226d98d2" -> "3087ebcc-735d-4fb1-b0dc-d5108e48683c";
+"16c28baf-e0b2-42e5-9cbb-c6d5fccde5aa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,WaterTable)", shape=box, style=filled];
+"d4f71d0a-88d5-41c0-9cdb-89c0226d98d2" -> "16c28baf-e0b2-42e5-9cbb-c6d5fccde5aa";
+"09abb069-f5de-4604-9442-7c71db5c76d7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "09abb069-f5de-4604-9442-7c71db5c76d7";
+"d4456511-d9e4-4617-8888-ba387374e45c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"09abb069-f5de-4604-9442-7c71db5c76d7" -> "d4456511-d9e4-4617-8888-ba387374e45c";
+"a10046f3-89fa-4f32-a9fa-004e547751d1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"09abb069-f5de-4604-9442-7c71db5c76d7" -> "a10046f3-89fa-4f32-a9fa-004e547751d1";
+"38854cab-fc25-4cbc-82ec-c76804088790" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"09abb069-f5de-4604-9442-7c71db5c76d7" -> "38854cab-fc25-4cbc-82ec-c76804088790";
+"aea531ac-2d8e-4488-89a2-a8843fe24e88" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"09abb069-f5de-4604-9442-7c71db5c76d7" -> "aea531ac-2d8e-4488-89a2-a8843fe24e88";
+"2e0e5886-1e4c-4076-ab04-0440e549d3de" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "2e0e5886-1e4c-4076-ab04-0440e549d3de";
+"41db3aca-9b44-41fc-8c70-cff675a1d354" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"2e0e5886-1e4c-4076-ab04-0440e549d3de" -> "41db3aca-9b44-41fc-8c70-cff675a1d354";
+"e0e85872-9168-4a2c-a873-d91e54e70f90" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2e0e5886-1e4c-4076-ab04-0440e549d3de" -> "e0e85872-9168-4a2c-a873-d91e54e70f90";
+"e26471c3-7aef-48de-b904-65da122b094d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"2e0e5886-1e4c-4076-ab04-0440e549d3de" -> "e26471c3-7aef-48de-b904-65da122b094d";
+"cbc0ec81-4c3f-40fa-9259-70982f0e4013" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"2e0e5886-1e4c-4076-ab04-0440e549d3de" -> "cbc0ec81-4c3f-40fa-9259-70982f0e4013";
+"e89b50d4-b8e3-445d-82d5-dae2b19aaf6c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e89b50d4-b8e3-445d-82d5-dae2b19aaf6c";
+"1aadf52f-9a59-411d-9ece-c0ae01441c6b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"e89b50d4-b8e3-445d-82d5-dae2b19aaf6c" -> "1aadf52f-9a59-411d-9ece-c0ae01441c6b";
+"d4b0e665-365e-4579-a4b9-b031e6ec6350" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e89b50d4-b8e3-445d-82d5-dae2b19aaf6c" -> "d4b0e665-365e-4579-a4b9-b031e6ec6350";
+"85dbf418-dd7f-401e-87c2-2857743587cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e89b50d4-b8e3-445d-82d5-dae2b19aaf6c" -> "85dbf418-dd7f-401e-87c2-2857743587cd";
+"5db37faa-c062-4910-b1f4-47f7f474d384" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"e89b50d4-b8e3-445d-82d5-dae2b19aaf6c" -> "5db37faa-c062-4910-b1f4-47f7f474d384";
+"efe36bf8-f916-4053-8988-6d147c9496ac" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "efe36bf8-f916-4053-8988-6d147c9496ac";
+"84bb29d1-f8ac-452b-b8b0-9b94ecff3fd2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"efe36bf8-f916-4053-8988-6d147c9496ac" -> "84bb29d1-f8ac-452b-b8b0-9b94ecff3fd2";
+"454066cc-6ee9-4094-9277-2a1c097d42f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"efe36bf8-f916-4053-8988-6d147c9496ac" -> "454066cc-6ee9-4094-9277-2a1c097d42f2";
+"c67cb07a-f957-4e6f-ad33-c316cc5c619d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"efe36bf8-f916-4053-8988-6d147c9496ac" -> "c67cb07a-f957-4e6f-ad33-c316cc5c619d";
+"de8fa160-45dc-4e77-adb7-8b79a6a7ac20" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"efe36bf8-f916-4053-8988-6d147c9496ac" -> "de8fa160-45dc-4e77-adb7-8b79a6a7ac20";
+"35c206a4-598d-46d2-a6bb-035dc96e2bc1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "35c206a4-598d-46d2-a6bb-035dc96e2bc1";
+"d82bcdc7-9201-42ce-8f8b-60cced91b3ae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"35c206a4-598d-46d2-a6bb-035dc96e2bc1" -> "d82bcdc7-9201-42ce-8f8b-60cced91b3ae";
+"42dc86d8-3835-4ba2-bae8-62a5b68d3f7f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"35c206a4-598d-46d2-a6bb-035dc96e2bc1" -> "42dc86d8-3835-4ba2-bae8-62a5b68d3f7f";
+"1bd28c3a-d13f-4bf8-9605-2919d53abb8f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"35c206a4-598d-46d2-a6bb-035dc96e2bc1" -> "1bd28c3a-d13f-4bf8-9605-2919d53abb8f";
+"8a95fb5d-34a7-4100-909a-847d72627b99" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,BrightTable)", shape=box, style=filled];
+"35c206a4-598d-46d2-a6bb-035dc96e2bc1" -> "8a95fb5d-34a7-4100-909a-847d72627b99";
+"1a185175-90e1-4c20-acbe-0f9843f426d2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "1a185175-90e1-4c20-acbe-0f9843f426d2";
+"9a1f582f-fdb6-4f3c-a6e6-484faa6fac6f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"1a185175-90e1-4c20-acbe-0f9843f426d2" -> "9a1f582f-fdb6-4f3c-a6e6-484faa6fac6f";
+"e454845f-437c-4fda-91d0-37e3d2977390" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"1a185175-90e1-4c20-acbe-0f9843f426d2" -> "e454845f-437c-4fda-91d0-37e3d2977390";
+"4f0be34c-bf0f-4fdc-8f25-b5e046f42cb1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1a185175-90e1-4c20-acbe-0f9843f426d2" -> "4f0be34c-bf0f-4fdc-8f25-b5e046f42cb1";
+"1ba74bf4-ed58-4ca0-9b36-cddd3566e30a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,BrightTable)", shape=box, style=filled];
+"1a185175-90e1-4c20-acbe-0f9843f426d2" -> "1ba74bf4-ed58-4ca0-9b36-cddd3566e30a";
+"e0b06574-32d0-4b86-8918-3722b833ec17" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e0b06574-32d0-4b86-8918-3722b833ec17";
+"b83947ad-303a-4a7b-907a-32c431fadad9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"e0b06574-32d0-4b86-8918-3722b833ec17" -> "b83947ad-303a-4a7b-907a-32c431fadad9";
+"1c676707-3e0e-40f7-bf9e-096a8491f50b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e0b06574-32d0-4b86-8918-3722b833ec17" -> "1c676707-3e0e-40f7-bf9e-096a8491f50b";
+"7987c153-cf4f-40ce-9550-4218f7378172" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"e0b06574-32d0-4b86-8918-3722b833ec17" -> "7987c153-cf4f-40ce-9550-4218f7378172";
+"01cd3f43-cfb6-4a79-a894-35c21cd1c32f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,CoffeeTable)", shape=box, style=filled];
+"e0b06574-32d0-4b86-8918-3722b833ec17" -> "01cd3f43-cfb6-4a79-a894-35c21cd1c32f";
+"aa63d770-a886-468f-8809-ed48eadfebb2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "aa63d770-a886-468f-8809-ed48eadfebb2";
+"b1e8c742-75ca-4fae-8177-a43b6051f5d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"aa63d770-a886-468f-8809-ed48eadfebb2" -> "b1e8c742-75ca-4fae-8177-a43b6051f5d6";
+"9918cbb3-2c2f-41bf-9592-afaa6e4a3c33" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"aa63d770-a886-468f-8809-ed48eadfebb2" -> "9918cbb3-2c2f-41bf-9592-afaa6e4a3c33";
+"36e25fd7-9fba-4937-8651-0bfcab1d443a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"aa63d770-a886-468f-8809-ed48eadfebb2" -> "36e25fd7-9fba-4937-8651-0bfcab1d443a";
+"c42fceaa-3bf2-4424-9bbd-1e0f715d3794" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,CoffeeTable)", shape=box, style=filled];
+"aa63d770-a886-468f-8809-ed48eadfebb2" -> "c42fceaa-3bf2-4424-9bbd-1e0f715d3794";
+"92a5e112-4316-4491-b2ca-ad7fd121621c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "92a5e112-4316-4491-b2ca-ad7fd121621c";
+"202c972d-cb94-4e13-96e8-fe08500af2f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"92a5e112-4316-4491-b2ca-ad7fd121621c" -> "202c972d-cb94-4e13-96e8-fe08500af2f2";
+"3d8ea90e-08e1-4d7c-903a-5a4ec5a892ce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"92a5e112-4316-4491-b2ca-ad7fd121621c" -> "3d8ea90e-08e1-4d7c-903a-5a4ec5a892ce";
+"ce54eea3-d36c-46fb-b348-9acbb1f56ead" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"92a5e112-4316-4491-b2ca-ad7fd121621c" -> "ce54eea3-d36c-46fb-b348-9acbb1f56ead";
+"5dffb848-0bd3-4faa-8d13-17a889991686" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"92a5e112-4316-4491-b2ca-ad7fd121621c" -> "5dffb848-0bd3-4faa-8d13-17a889991686";
+"6bebc286-6272-4c7c-a129-e6b73d81f610" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6bebc286-6272-4c7c-a129-e6b73d81f610";
+"d991d957-d39a-4322-a03b-b3f31e2acfc8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"6bebc286-6272-4c7c-a129-e6b73d81f610" -> "d991d957-d39a-4322-a03b-b3f31e2acfc8";
+"82195942-bed2-4318-abe8-fba034d50e82" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6bebc286-6272-4c7c-a129-e6b73d81f610" -> "82195942-bed2-4318-abe8-fba034d50e82";
+"1bf2487d-2071-4e2e-9c72-8c6d74485470" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"6bebc286-6272-4c7c-a129-e6b73d81f610" -> "1bf2487d-2071-4e2e-9c72-8c6d74485470";
+"149b5d4a-3f42-4ba9-bf46-809e84c65d4d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"6bebc286-6272-4c7c-a129-e6b73d81f610" -> "149b5d4a-3f42-4ba9-bf46-809e84c65d4d";
+"b42ab8f3-33e0-465e-b7d3-ba6531b65454" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b42ab8f3-33e0-465e-b7d3-ba6531b65454";
+"cada4d5e-0ede-4611-a159-4e52ad43049c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"b42ab8f3-33e0-465e-b7d3-ba6531b65454" -> "cada4d5e-0ede-4611-a159-4e52ad43049c";
+"6dc74268-687d-4a1c-a7a9-57e85e3f0c04" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b42ab8f3-33e0-465e-b7d3-ba6531b65454" -> "6dc74268-687d-4a1c-a7a9-57e85e3f0c04";
+"f4699daa-83d0-4b89-9d6b-568a9e74177b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"b42ab8f3-33e0-465e-b7d3-ba6531b65454" -> "f4699daa-83d0-4b89-9d6b-568a9e74177b";
+"1c960a11-115c-4c32-839d-bd17238e5f2d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"b42ab8f3-33e0-465e-b7d3-ba6531b65454" -> "1c960a11-115c-4c32-839d-bd17238e5f2d";
+"6c610ed6-d81e-48c4-92f1-292e12a072c3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "6c610ed6-d81e-48c4-92f1-292e12a072c3";
+"151dbe2d-4d6a-4e9f-831f-b2b1fd777fa8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"6c610ed6-d81e-48c4-92f1-292e12a072c3" -> "151dbe2d-4d6a-4e9f-831f-b2b1fd777fa8";
+"ecaa3c1e-139e-4a91-b2bc-f10e6d6ad262" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6c610ed6-d81e-48c4-92f1-292e12a072c3" -> "ecaa3c1e-139e-4a91-b2bc-f10e6d6ad262";
+"db42eef3-1481-4e39-847e-465a787b8efb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"6c610ed6-d81e-48c4-92f1-292e12a072c3" -> "db42eef3-1481-4e39-847e-465a787b8efb";
+"69be6fb7-2f2f-4ca3-a4e4-bde6e6fa39bd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"6c610ed6-d81e-48c4-92f1-292e12a072c3" -> "69be6fb7-2f2f-4ca3-a4e4-bde6e6fa39bd";
+"45ed0621-17b6-4d47-af1d-c877c9e79efe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "45ed0621-17b6-4d47-af1d-c877c9e79efe";
+"76648e65-3e98-42b0-a9f6-09e04f485291" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"45ed0621-17b6-4d47-af1d-c877c9e79efe" -> "76648e65-3e98-42b0-a9f6-09e04f485291";
+"010183a1-2d3b-405a-864a-dabf06c6004b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"45ed0621-17b6-4d47-af1d-c877c9e79efe" -> "010183a1-2d3b-405a-864a-dabf06c6004b";
+"ff315594-61bf-4080-b619-26f6918532d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"45ed0621-17b6-4d47-af1d-c877c9e79efe" -> "ff315594-61bf-4080-b619-26f6918532d6";
+"e5b75134-ca4c-4326-8486-6b9254ca99cc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"45ed0621-17b6-4d47-af1d-c877c9e79efe" -> "e5b75134-ca4c-4326-8486-6b9254ca99cc";
+"3c66aa9f-8895-4188-8f96-143f1597f946" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3c66aa9f-8895-4188-8f96-143f1597f946";
+"c87d4cfb-5b38-4284-9f91-3656e2b73991" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"3c66aa9f-8895-4188-8f96-143f1597f946" -> "c87d4cfb-5b38-4284-9f91-3656e2b73991";
+"b8448e85-23c5-4139-98e8-ac83091409fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3c66aa9f-8895-4188-8f96-143f1597f946" -> "b8448e85-23c5-4139-98e8-ac83091409fb";
+"9f251026-b6ef-430c-9a22-29432608fc39" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"3c66aa9f-8895-4188-8f96-143f1597f946" -> "9f251026-b6ef-430c-9a22-29432608fc39";
+"7df7692d-99d5-4214-a41f-cec825f20b30" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"3c66aa9f-8895-4188-8f96-143f1597f946" -> "7df7692d-99d5-4214-a41f-cec825f20b30";
+"fbe19be3-6809-480c-81b2-f5edc3656124" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "fbe19be3-6809-480c-81b2-f5edc3656124";
+"743eaee0-f0e9-4f25-a32a-fef08c4d9ef5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"fbe19be3-6809-480c-81b2-f5edc3656124" -> "743eaee0-f0e9-4f25-a32a-fef08c4d9ef5";
+"a3828ca5-3d8c-46f9-8f0f-457a17b1a76d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fbe19be3-6809-480c-81b2-f5edc3656124" -> "a3828ca5-3d8c-46f9-8f0f-457a17b1a76d";
+"eb6b17fe-749f-4780-b491-5ea51e4cd5eb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"fbe19be3-6809-480c-81b2-f5edc3656124" -> "eb6b17fe-749f-4780-b491-5ea51e4cd5eb";
+"6ec5f791-5705-4de3-9ea6-4054ff67a025" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,WaterTable)", shape=box, style=filled];
+"fbe19be3-6809-480c-81b2-f5edc3656124" -> "6ec5f791-5705-4de3-9ea6-4054ff67a025";
+"044b416d-9024-4fc5-9074-28cc1e219166" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "044b416d-9024-4fc5-9074-28cc1e219166";
+"3d6dc336-d873-48cf-8d31-02ac16443ecd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"044b416d-9024-4fc5-9074-28cc1e219166" -> "3d6dc336-d873-48cf-8d31-02ac16443ecd";
+"42777d91-a6cf-43f0-92cd-f67022f0973c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"044b416d-9024-4fc5-9074-28cc1e219166" -> "42777d91-a6cf-43f0-92cd-f67022f0973c";
+"6143feec-a65b-4699-8599-b1aee490e77c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"044b416d-9024-4fc5-9074-28cc1e219166" -> "6143feec-a65b-4699-8599-b1aee490e77c";
+"e6f83acb-cda5-4f98-9458-4049949ab160" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,WaterTable)", shape=box, style=filled];
+"044b416d-9024-4fc5-9074-28cc1e219166" -> "e6f83acb-cda5-4f98-9458-4049949ab160";
+"4b4fd5b6-75e8-405e-be78-323ecdae5a66" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "4b4fd5b6-75e8-405e-be78-323ecdae5a66";
+"694177fe-9f5e-4123-b083-5b4751f6f442" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"4b4fd5b6-75e8-405e-be78-323ecdae5a66" -> "694177fe-9f5e-4123-b083-5b4751f6f442";
+"7a451830-1fe1-42cc-b3b5-d46f1b4b8321" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4b4fd5b6-75e8-405e-be78-323ecdae5a66" -> "7a451830-1fe1-42cc-b3b5-d46f1b4b8321";
+"558c90e8-60ab-4507-a54a-075d9a6d2d3b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"4b4fd5b6-75e8-405e-be78-323ecdae5a66" -> "558c90e8-60ab-4507-a54a-075d9a6d2d3b";
+"6e1c80f3-7d65-4322-a3bc-30146da58fdb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"4b4fd5b6-75e8-405e-be78-323ecdae5a66" -> "6e1c80f3-7d65-4322-a3bc-30146da58fdb";
+"7d83f724-a3d3-4c81-9c32-b6d8b5c02e4c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "7d83f724-a3d3-4c81-9c32-b6d8b5c02e4c";
+"296b609d-efe4-4d20-9eda-f5e8bba7bc70" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"7d83f724-a3d3-4c81-9c32-b6d8b5c02e4c" -> "296b609d-efe4-4d20-9eda-f5e8bba7bc70";
+"4959404b-4361-4913-b221-1f8bed81c3e7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7d83f724-a3d3-4c81-9c32-b6d8b5c02e4c" -> "4959404b-4361-4913-b221-1f8bed81c3e7";
+"d64c7e72-44d3-4535-bcb4-5dd0fed4ea9c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"7d83f724-a3d3-4c81-9c32-b6d8b5c02e4c" -> "d64c7e72-44d3-4535-bcb4-5dd0fed4ea9c";
+"266c84cf-48ec-4a26-b2ba-bd8c296a1618" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"7d83f724-a3d3-4c81-9c32-b6d8b5c02e4c" -> "266c84cf-48ec-4a26-b2ba-bd8c296a1618";
+"17d116fa-d989-42a4-b043-de195065c60e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "17d116fa-d989-42a4-b043-de195065c60e";
+"d9936918-4ece-4624-b22c-5c66256db847" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"17d116fa-d989-42a4-b043-de195065c60e" -> "d9936918-4ece-4624-b22c-5c66256db847";
+"1d56bf44-2744-4dcc-b6d4-91c78f344ce6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"17d116fa-d989-42a4-b043-de195065c60e" -> "1d56bf44-2744-4dcc-b6d4-91c78f344ce6";
+"b5334596-0aed-4f64-aaa4-ec6c11f6e25e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"17d116fa-d989-42a4-b043-de195065c60e" -> "b5334596-0aed-4f64-aaa4-ec6c11f6e25e";
+"0bb622ce-c466-4bb9-90e8-af0c3ddf907d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"17d116fa-d989-42a4-b043-de195065c60e" -> "0bb622ce-c466-4bb9-90e8-af0c3ddf907d";
+"d4389079-5bd0-4c46-92d7-0a4e1c1e927b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d4389079-5bd0-4c46-92d7-0a4e1c1e927b";
+"3354b75b-cc76-4cda-9770-a5c1977761e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d4389079-5bd0-4c46-92d7-0a4e1c1e927b" -> "3354b75b-cc76-4cda-9770-a5c1977761e2";
+"e56766f1-08b3-496a-bf14-b1876d983c54" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d4389079-5bd0-4c46-92d7-0a4e1c1e927b" -> "e56766f1-08b3-496a-bf14-b1876d983c54";
+"f780f035-028c-46e1-beda-cc39532e9b21" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"d4389079-5bd0-4c46-92d7-0a4e1c1e927b" -> "f780f035-028c-46e1-beda-cc39532e9b21";
+"5b799be4-7e7d-4cfe-8037-b9549dfd153c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"d4389079-5bd0-4c46-92d7-0a4e1c1e927b" -> "5b799be4-7e7d-4cfe-8037-b9549dfd153c";
+"3f3b5a0a-6392-467f-acce-ace7fbb9ed0a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3f3b5a0a-6392-467f-acce-ace7fbb9ed0a";
+"2866a276-fda0-47c8-9d3e-3b2fe969754b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"3f3b5a0a-6392-467f-acce-ace7fbb9ed0a" -> "2866a276-fda0-47c8-9d3e-3b2fe969754b";
+"9a80eee2-9eca-4892-a6ef-68ab6a9fa7aa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3f3b5a0a-6392-467f-acce-ace7fbb9ed0a" -> "9a80eee2-9eca-4892-a6ef-68ab6a9fa7aa";
+"51e6516a-d4c1-4554-9583-af62ed9b6a2f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"3f3b5a0a-6392-467f-acce-ace7fbb9ed0a" -> "51e6516a-d4c1-4554-9583-af62ed9b6a2f";
+"6657a394-1a55-477f-b546-13699adb1e23" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,BrightTable)", shape=box, style=filled];
+"3f3b5a0a-6392-467f-acce-ace7fbb9ed0a" -> "6657a394-1a55-477f-b546-13699adb1e23";
+"77d586d6-bc67-4563-a15e-3928cbc26b24" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "77d586d6-bc67-4563-a15e-3928cbc26b24";
+"95499daf-f31a-407d-96a0-dfd1a96ada66" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"77d586d6-bc67-4563-a15e-3928cbc26b24" -> "95499daf-f31a-407d-96a0-dfd1a96ada66";
+"be320366-ddfb-44f9-980b-328fd3d7bbd5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"77d586d6-bc67-4563-a15e-3928cbc26b24" -> "be320366-ddfb-44f9-980b-328fd3d7bbd5";
+"ebfd746b-6a57-47dd-8195-9d2aa2ba7136" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"77d586d6-bc67-4563-a15e-3928cbc26b24" -> "ebfd746b-6a57-47dd-8195-9d2aa2ba7136";
+"a3636b9f-9a91-4c2d-af22-686a3ff85c53" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,BrightTable)", shape=box, style=filled];
+"77d586d6-bc67-4563-a15e-3928cbc26b24" -> "a3636b9f-9a91-4c2d-af22-686a3ff85c53";
+"e2faab08-d439-4885-b5b3-31888d7340b8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e2faab08-d439-4885-b5b3-31888d7340b8";
+"cd1ef48c-fc85-41d6-948e-1cd29f837b2f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e2faab08-d439-4885-b5b3-31888d7340b8" -> "cd1ef48c-fc85-41d6-948e-1cd29f837b2f";
+"46f026de-579b-4df8-84f1-45ff206e27e1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"e2faab08-d439-4885-b5b3-31888d7340b8" -> "46f026de-579b-4df8-84f1-45ff206e27e1";
+"22ac92e2-4a74-4b68-a2bb-f57888ea1bb3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"e2faab08-d439-4885-b5b3-31888d7340b8" -> "22ac92e2-4a74-4b68-a2bb-f57888ea1bb3";
+"52aa0f09-8832-4464-947d-777d892bed7c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,CoffeeTable)", shape=box, style=filled];
+"e2faab08-d439-4885-b5b3-31888d7340b8" -> "52aa0f09-8832-4464-947d-777d892bed7c";
+"849fa983-1b4e-4d76-beef-ca4e796c8a9a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "849fa983-1b4e-4d76-beef-ca4e796c8a9a";
+"15863c9f-1af6-4e76-a0c2-5d57df330050" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"849fa983-1b4e-4d76-beef-ca4e796c8a9a" -> "15863c9f-1af6-4e76-a0c2-5d57df330050";
+"820ae417-9903-407b-9c6d-7ae492feb56a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"849fa983-1b4e-4d76-beef-ca4e796c8a9a" -> "820ae417-9903-407b-9c6d-7ae492feb56a";
+"c34b9c16-28cc-484b-826f-f33ba8320a99" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"849fa983-1b4e-4d76-beef-ca4e796c8a9a" -> "c34b9c16-28cc-484b-826f-f33ba8320a99";
+"0641ab56-65f0-4fe7-81bf-4401c6fa53f8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,CoffeeTable)", shape=box, style=filled];
+"849fa983-1b4e-4d76-beef-ca4e796c8a9a" -> "0641ab56-65f0-4fe7-81bf-4401c6fa53f8";
+"1d43c9f2-d8fc-4a80-b6c2-b956024ab12b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "1d43c9f2-d8fc-4a80-b6c2-b956024ab12b";
+"77e16726-5c22-4a4d-94a4-f43da1fd144d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1d43c9f2-d8fc-4a80-b6c2-b956024ab12b" -> "77e16726-5c22-4a4d-94a4-f43da1fd144d";
+"1fb93402-bfc6-44a2-a028-9fc1ffddb029" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"1d43c9f2-d8fc-4a80-b6c2-b956024ab12b" -> "1fb93402-bfc6-44a2-a028-9fc1ffddb029";
+"fdf64c83-e637-4a5e-b69f-5946f279ea57" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"1d43c9f2-d8fc-4a80-b6c2-b956024ab12b" -> "fdf64c83-e637-4a5e-b69f-5946f279ea57";
+"2e74eaae-564c-4122-a820-e567c4ecbe40" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"1d43c9f2-d8fc-4a80-b6c2-b956024ab12b" -> "2e74eaae-564c-4122-a820-e567c4ecbe40";
+"45674565-5923-4558-8a0e-adb8b4a4b972" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "45674565-5923-4558-8a0e-adb8b4a4b972";
+"83a3853a-125e-4a91-a9ab-57d309728bba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"45674565-5923-4558-8a0e-adb8b4a4b972" -> "83a3853a-125e-4a91-a9ab-57d309728bba";
+"84186ce2-c1b7-4ef6-9109-945de019f079" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"45674565-5923-4558-8a0e-adb8b4a4b972" -> "84186ce2-c1b7-4ef6-9109-945de019f079";
+"425ee3fe-7450-49f9-8247-0285acf1f167" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"45674565-5923-4558-8a0e-adb8b4a4b972" -> "425ee3fe-7450-49f9-8247-0285acf1f167";
+"aa917211-37cf-49b0-bf0a-dca5ce834671" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"45674565-5923-4558-8a0e-adb8b4a4b972" -> "aa917211-37cf-49b0-bf0a-dca5ce834671";
+"61a8ee4e-3b21-4659-b131-03e1b491208e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "61a8ee4e-3b21-4659-b131-03e1b491208e";
+"25d671e0-3aa3-417a-bc58-aa4e3dc52ee9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"61a8ee4e-3b21-4659-b131-03e1b491208e" -> "25d671e0-3aa3-417a-bc58-aa4e3dc52ee9";
+"e0d06a58-41b8-410a-aa28-37c1655b5554" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"61a8ee4e-3b21-4659-b131-03e1b491208e" -> "e0d06a58-41b8-410a-aa28-37c1655b5554";
+"b97b1628-c67e-40f3-bcd0-61c9b944ddad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"61a8ee4e-3b21-4659-b131-03e1b491208e" -> "b97b1628-c67e-40f3-bcd0-61c9b944ddad";
+"4d49f275-d4f4-4ba9-80c1-0c3b6c648049" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"61a8ee4e-3b21-4659-b131-03e1b491208e" -> "4d49f275-d4f4-4ba9-80c1-0c3b6c648049";
+"c3e3bc6b-abea-432f-881f-b2bcb4ec8583" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "c3e3bc6b-abea-432f-881f-b2bcb4ec8583";
+"9ce83898-0ff3-42b5-8184-0101cc66fbe5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c3e3bc6b-abea-432f-881f-b2bcb4ec8583" -> "9ce83898-0ff3-42b5-8184-0101cc66fbe5";
+"639c0bc7-4fa9-4e49-a048-6f38638a2417" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"c3e3bc6b-abea-432f-881f-b2bcb4ec8583" -> "639c0bc7-4fa9-4e49-a048-6f38638a2417";
+"880d66ce-f0af-4be4-9c58-bf3054b0d1cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"c3e3bc6b-abea-432f-881f-b2bcb4ec8583" -> "880d66ce-f0af-4be4-9c58-bf3054b0d1cc";
+"77997d4c-4e88-4ae4-aaa3-b72b8710e6c6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"c3e3bc6b-abea-432f-881f-b2bcb4ec8583" -> "77997d4c-4e88-4ae4-aaa3-b72b8710e6c6";
+"59dfbfeb-cc0c-4470-bcc6-a979ec692ae0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "59dfbfeb-cc0c-4470-bcc6-a979ec692ae0";
+"e9080429-7c99-4df5-b825-0f0770498f16" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"59dfbfeb-cc0c-4470-bcc6-a979ec692ae0" -> "e9080429-7c99-4df5-b825-0f0770498f16";
+"782aad36-90f9-488c-a691-26532dd542fd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"59dfbfeb-cc0c-4470-bcc6-a979ec692ae0" -> "782aad36-90f9-488c-a691-26532dd542fd";
+"e373504f-e087-4410-9061-1137ed56825f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"59dfbfeb-cc0c-4470-bcc6-a979ec692ae0" -> "e373504f-e087-4410-9061-1137ed56825f";
+"69a8a418-6dbf-48f7-a663-0b4127114130" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"59dfbfeb-cc0c-4470-bcc6-a979ec692ae0" -> "69a8a418-6dbf-48f7-a663-0b4127114130";
+"e6043768-cfe5-46ff-aa0b-bb6ca65e8dca" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e6043768-cfe5-46ff-aa0b-bb6ca65e8dca";
+"92084ed5-8524-46e0-961d-703dbe487699" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"e6043768-cfe5-46ff-aa0b-bb6ca65e8dca" -> "92084ed5-8524-46e0-961d-703dbe487699";
+"6eb9e04c-6a9d-4f64-92ff-676a7aea2f9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e6043768-cfe5-46ff-aa0b-bb6ca65e8dca" -> "6eb9e04c-6a9d-4f64-92ff-676a7aea2f9b";
+"0896cfb9-a6eb-4837-8346-78a86cf613f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"e6043768-cfe5-46ff-aa0b-bb6ca65e8dca" -> "0896cfb9-a6eb-4837-8346-78a86cf613f0";
+"65b0d726-0409-428c-8b8b-22d53a3fd0ec" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"e6043768-cfe5-46ff-aa0b-bb6ca65e8dca" -> "65b0d726-0409-428c-8b8b-22d53a3fd0ec";
+"dbcb3204-73c2-41c4-8a1f-03af244e4083" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "dbcb3204-73c2-41c4-8a1f-03af244e4083";
+"7d080312-0324-4d3e-9f6f-102f66511609" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"dbcb3204-73c2-41c4-8a1f-03af244e4083" -> "7d080312-0324-4d3e-9f6f-102f66511609";
+"3a746544-2ac9-4331-a4e8-cb4ee783a38e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"dbcb3204-73c2-41c4-8a1f-03af244e4083" -> "3a746544-2ac9-4331-a4e8-cb4ee783a38e";
+"37176558-ba15-4575-95b7-898ab21899ee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"dbcb3204-73c2-41c4-8a1f-03af244e4083" -> "37176558-ba15-4575-95b7-898ab21899ee";
+"eaae25b0-09b7-4197-a9b3-6d74ff4dd43a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"dbcb3204-73c2-41c4-8a1f-03af244e4083" -> "eaae25b0-09b7-4197-a9b3-6d74ff4dd43a";
+"b528681e-d3fd-476a-8cbb-934962f797ae" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b528681e-d3fd-476a-8cbb-934962f797ae";
+"4320d013-656e-4a92-af3c-e57661c2d322" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b528681e-d3fd-476a-8cbb-934962f797ae" -> "4320d013-656e-4a92-af3c-e57661c2d322";
+"2188d5c9-a68d-4829-b596-4575aa5c87ab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"b528681e-d3fd-476a-8cbb-934962f797ae" -> "2188d5c9-a68d-4829-b596-4575aa5c87ab";
+"c4771104-b3d3-4c59-a0af-715af862e993" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"b528681e-d3fd-476a-8cbb-934962f797ae" -> "c4771104-b3d3-4c59-a0af-715af862e993";
+"44f6f4e7-586d-4925-a8f7-8b90b77eb8b6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"b528681e-d3fd-476a-8cbb-934962f797ae" -> "44f6f4e7-586d-4925-a8f7-8b90b77eb8b6";
+"94623d1a-1547-4ed1-91e4-1cf0e6b19849" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "94623d1a-1547-4ed1-91e4-1cf0e6b19849";
+"2f0dea77-a122-4e39-aa63-9d2cc2a13fdb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"94623d1a-1547-4ed1-91e4-1cf0e6b19849" -> "2f0dea77-a122-4e39-aa63-9d2cc2a13fdb";
+"3cc18d74-2ee0-48fa-9efd-3a71f843c75b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"94623d1a-1547-4ed1-91e4-1cf0e6b19849" -> "3cc18d74-2ee0-48fa-9efd-3a71f843c75b";
+"6e913e47-6945-4b8f-bf45-4f733689c66d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"94623d1a-1547-4ed1-91e4-1cf0e6b19849" -> "6e913e47-6945-4b8f-bf45-4f733689c66d";
+"b309d72d-b6f0-4d7e-b933-24632412fc86" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"94623d1a-1547-4ed1-91e4-1cf0e6b19849" -> "b309d72d-b6f0-4d7e-b933-24632412fc86";
+"7a1fc321-4713-4c8e-93b3-aceea7d82213" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "7a1fc321-4713-4c8e-93b3-aceea7d82213";
+"ceb250b5-2895-4c9d-ae9a-3c465fa840ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"7a1fc321-4713-4c8e-93b3-aceea7d82213" -> "ceb250b5-2895-4c9d-ae9a-3c465fa840ff";
+"ae548252-eac5-4a4b-89b1-6e884c8119a8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7a1fc321-4713-4c8e-93b3-aceea7d82213" -> "ae548252-eac5-4a4b-89b1-6e884c8119a8";
+"2f45fcb2-583f-4047-b4e4-173869ea8413" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"7a1fc321-4713-4c8e-93b3-aceea7d82213" -> "2f45fcb2-583f-4047-b4e4-173869ea8413";
+"4773ac69-34bb-4041-980a-32a7ce5f291d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"7a1fc321-4713-4c8e-93b3-aceea7d82213" -> "4773ac69-34bb-4041-980a-32a7ce5f291d";
+"faed04dc-d3a3-40cc-a3ed-c36d7bce3973" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "faed04dc-d3a3-40cc-a3ed-c36d7bce3973";
+"abacc14e-77bd-44c5-91ed-5d0f5aa2a693" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"faed04dc-d3a3-40cc-a3ed-c36d7bce3973" -> "abacc14e-77bd-44c5-91ed-5d0f5aa2a693";
+"9d82a01e-58e2-4269-a5bb-aa7710351603" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"faed04dc-d3a3-40cc-a3ed-c36d7bce3973" -> "9d82a01e-58e2-4269-a5bb-aa7710351603";
+"5aa66463-5a39-4527-a9f3-502e98abf763" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"faed04dc-d3a3-40cc-a3ed-c36d7bce3973" -> "5aa66463-5a39-4527-a9f3-502e98abf763";
+"f9c44207-7575-42a1-a5a3-d23769791470" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"faed04dc-d3a3-40cc-a3ed-c36d7bce3973" -> "f9c44207-7575-42a1-a5a3-d23769791470";
+"04bd552a-9522-48e5-88fe-a16de4802e30" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "04bd552a-9522-48e5-88fe-a16de4802e30";
+"61d854ac-c872-4f6e-a6d1-8b150a0664d1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"04bd552a-9522-48e5-88fe-a16de4802e30" -> "61d854ac-c872-4f6e-a6d1-8b150a0664d1";
+"0d310813-3c10-4394-9c56-e7901cd6900f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"04bd552a-9522-48e5-88fe-a16de4802e30" -> "0d310813-3c10-4394-9c56-e7901cd6900f";
+"52425751-eb6e-4acf-885a-27c0018f87f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"04bd552a-9522-48e5-88fe-a16de4802e30" -> "52425751-eb6e-4acf-885a-27c0018f87f2";
+"3f639023-5290-4a08-9f66-d7f9c46b07bb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"04bd552a-9522-48e5-88fe-a16de4802e30" -> "3f639023-5290-4a08-9f66-d7f9c46b07bb";
+"e73735c1-7249-4329-b075-305da0f26094" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e73735c1-7249-4329-b075-305da0f26094";
+"8640dede-bf2c-4c77-87cf-10bbef8b4488" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"e73735c1-7249-4329-b075-305da0f26094" -> "8640dede-bf2c-4c77-87cf-10bbef8b4488";
+"16f27b74-c3a2-4cf3-9f9b-4719cb6988e8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e73735c1-7249-4329-b075-305da0f26094" -> "16f27b74-c3a2-4cf3-9f9b-4719cb6988e8";
+"00ad0ab8-8d2e-4c06-b852-ac7bcb77ad6b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"e73735c1-7249-4329-b075-305da0f26094" -> "00ad0ab8-8d2e-4c06-b852-ac7bcb77ad6b";
+"945f4ed9-4cb1-4536-ac1d-da264fedbd42" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,BrightTable)", shape=box, style=filled];
+"e73735c1-7249-4329-b075-305da0f26094" -> "945f4ed9-4cb1-4536-ac1d-da264fedbd42";
+"92c9136b-c6c7-42ca-9510-c452d0226fd4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "92c9136b-c6c7-42ca-9510-c452d0226fd4";
+"0bf10fef-34f1-4d73-9cf9-fcb5e98abbe2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"92c9136b-c6c7-42ca-9510-c452d0226fd4" -> "0bf10fef-34f1-4d73-9cf9-fcb5e98abbe2";
+"15b7aa7d-7f9a-4149-91a1-57a7f210fd1b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"92c9136b-c6c7-42ca-9510-c452d0226fd4" -> "15b7aa7d-7f9a-4149-91a1-57a7f210fd1b";
+"ef07d735-46d6-474a-943c-b142d9090f62" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"92c9136b-c6c7-42ca-9510-c452d0226fd4" -> "ef07d735-46d6-474a-943c-b142d9090f62";
+"38ea937b-4714-4038-b743-1cf31c1e795a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,BrightTable)", shape=box, style=filled];
+"92c9136b-c6c7-42ca-9510-c452d0226fd4" -> "38ea937b-4714-4038-b743-1cf31c1e795a";
+"e6e43745-c962-41c9-b024-da89468c0889" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "e6e43745-c962-41c9-b024-da89468c0889";
+"ae2c935f-d3ab-4b68-8692-aa30d2be40b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e6e43745-c962-41c9-b024-da89468c0889" -> "ae2c935f-d3ab-4b68-8692-aa30d2be40b2";
+"72f18ff1-6b16-4176-8892-2419fccb07e7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"e6e43745-c962-41c9-b024-da89468c0889" -> "72f18ff1-6b16-4176-8892-2419fccb07e7";
+"1e364991-8bcf-4dd5-9f64-a52e6be37dc8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"e6e43745-c962-41c9-b024-da89468c0889" -> "1e364991-8bcf-4dd5-9f64-a52e6be37dc8";
+"509ab9c6-8e20-4087-a5bc-eeef315ea9d2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"e6e43745-c962-41c9-b024-da89468c0889" -> "509ab9c6-8e20-4087-a5bc-eeef315ea9d2";
+"3a6af505-25dc-4f3a-aae6-6ca1a3085965" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3a6af505-25dc-4f3a-aae6-6ca1a3085965";
+"c895c5fe-81d4-4bc3-92c1-5a9915a8535e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3a6af505-25dc-4f3a-aae6-6ca1a3085965" -> "c895c5fe-81d4-4bc3-92c1-5a9915a8535e";
+"ac85ef75-18ac-4c2a-96b9-074e71c5641a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"3a6af505-25dc-4f3a-aae6-6ca1a3085965" -> "ac85ef75-18ac-4c2a-96b9-074e71c5641a";
+"d773e0aa-ada7-4ee0-9c35-e809b1be1db7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"3a6af505-25dc-4f3a-aae6-6ca1a3085965" -> "d773e0aa-ada7-4ee0-9c35-e809b1be1db7";
+"526cc904-b88b-4802-9e15-b4f88654ac0c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"3a6af505-25dc-4f3a-aae6-6ca1a3085965" -> "526cc904-b88b-4802-9e15-b4f88654ac0c";
+"bff1ec7c-fcaa-4f67-ac22-204dff328402" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bff1ec7c-fcaa-4f67-ac22-204dff328402";
+"f85deeec-8bf0-4a76-ac1a-883d158c8a80" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bff1ec7c-fcaa-4f67-ac22-204dff328402" -> "f85deeec-8bf0-4a76-ac1a-883d158c8a80";
+"e77e3977-eae5-4661-a46d-e6c3e2a2147d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"bff1ec7c-fcaa-4f67-ac22-204dff328402" -> "e77e3977-eae5-4661-a46d-e6c3e2a2147d";
+"f41ad697-2dfd-4c29-94d3-ed7a207974bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"bff1ec7c-fcaa-4f67-ac22-204dff328402" -> "f41ad697-2dfd-4c29-94d3-ed7a207974bc";
+"740a891d-76c3-4fe8-b875-3408dd194eea" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"bff1ec7c-fcaa-4f67-ac22-204dff328402" -> "740a891d-76c3-4fe8-b875-3408dd194eea";
+"f5cc8d8a-c6fb-4e07-ad50-ae1d53046eec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "f5cc8d8a-c6fb-4e07-ad50-ae1d53046eec";
+"3eb7f422-54bb-4b1c-aba8-5c85de03817b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f5cc8d8a-c6fb-4e07-ad50-ae1d53046eec" -> "3eb7f422-54bb-4b1c-aba8-5c85de03817b";
+"9f653469-d7c2-42ed-8c16-5296623bc070" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"f5cc8d8a-c6fb-4e07-ad50-ae1d53046eec" -> "9f653469-d7c2-42ed-8c16-5296623bc070";
+"9374787e-60a1-4c12-9a05-2546b5935dc9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"f5cc8d8a-c6fb-4e07-ad50-ae1d53046eec" -> "9374787e-60a1-4c12-9a05-2546b5935dc9";
+"fa91457d-78ba-47b0-aff0-1af44286b23e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"f5cc8d8a-c6fb-4e07-ad50-ae1d53046eec" -> "fa91457d-78ba-47b0-aff0-1af44286b23e";
+"b1881190-327c-4338-aba7-546609e324ce" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b1881190-327c-4338-aba7-546609e324ce";
+"e5bcc999-2688-46ca-b4a2-9022751d9423" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b1881190-327c-4338-aba7-546609e324ce" -> "e5bcc999-2688-46ca-b4a2-9022751d9423";
+"f2960881-316c-4f13-b7d0-45507f39ebe2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"b1881190-327c-4338-aba7-546609e324ce" -> "f2960881-316c-4f13-b7d0-45507f39ebe2";
+"38c35074-1e3f-4fa5-83bb-632549e57138" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"b1881190-327c-4338-aba7-546609e324ce" -> "38c35074-1e3f-4fa5-83bb-632549e57138";
+"bcabac13-756d-4139-86e6-87977a6d0b03" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"b1881190-327c-4338-aba7-546609e324ce" -> "bcabac13-756d-4139-86e6-87977a6d0b03";
+"ce8a68e1-e865-4b9a-bac4-271e59872f81" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "ce8a68e1-e865-4b9a-bac4-271e59872f81";
+"f5725b20-0d39-4d62-9a31-bfdee1e08f65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ce8a68e1-e865-4b9a-bac4-271e59872f81" -> "f5725b20-0d39-4d62-9a31-bfdee1e08f65";
+"6b8a986d-280a-4793-a76c-2dd2cdae367d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"ce8a68e1-e865-4b9a-bac4-271e59872f81" -> "6b8a986d-280a-4793-a76c-2dd2cdae367d";
+"70f9fad0-4123-4cc2-9b6d-738113bfc194" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"ce8a68e1-e865-4b9a-bac4-271e59872f81" -> "70f9fad0-4123-4cc2-9b6d-738113bfc194";
+"998e6cc7-bf39-4e0a-bf4d-48dcaf1227b0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"ce8a68e1-e865-4b9a-bac4-271e59872f81" -> "998e6cc7-bf39-4e0a-bf4d-48dcaf1227b0";
+"a771cd46-ac5a-45a9-81de-b2b0eb5b1678" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "a771cd46-ac5a-45a9-81de-b2b0eb5b1678";
+"dfcb2828-5906-441e-8e4f-d11d5a59c72d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a771cd46-ac5a-45a9-81de-b2b0eb5b1678" -> "dfcb2828-5906-441e-8e4f-d11d5a59c72d";
+"747bbe3e-c283-4a02-84ed-17a5f294fa39" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"a771cd46-ac5a-45a9-81de-b2b0eb5b1678" -> "747bbe3e-c283-4a02-84ed-17a5f294fa39";
+"62714337-0ad0-4d4d-ab1d-facf8155f78c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"a771cd46-ac5a-45a9-81de-b2b0eb5b1678" -> "62714337-0ad0-4d4d-ab1d-facf8155f78c";
+"334812ef-c5e6-47a3-b859-5bc0af2c70cc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"a771cd46-ac5a-45a9-81de-b2b0eb5b1678" -> "334812ef-c5e6-47a3-b859-5bc0af2c70cc";
+"b057d575-4c0c-4a93-8ec3-e89c9f8776ee" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b057d575-4c0c-4a93-8ec3-e89c9f8776ee";
+"eab6ce25-7629-416b-9ca1-d88a27fd0a84" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b057d575-4c0c-4a93-8ec3-e89c9f8776ee" -> "eab6ce25-7629-416b-9ca1-d88a27fd0a84";
+"c42db9b6-2ce1-4535-942d-140ddc77bb9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"b057d575-4c0c-4a93-8ec3-e89c9f8776ee" -> "c42db9b6-2ce1-4535-942d-140ddc77bb9f";
+"11d064ad-aaef-440f-b058-d20c2430d093" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"b057d575-4c0c-4a93-8ec3-e89c9f8776ee" -> "11d064ad-aaef-440f-b058-d20c2430d093";
+"a84b737c-d3e4-41e2-a1bb-66c9cf98ca60" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"b057d575-4c0c-4a93-8ec3-e89c9f8776ee" -> "a84b737c-d3e4-41e2-a1bb-66c9cf98ca60";
+"86c8c1c0-b8cc-45e5-a9c0-92e42508bf5c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "86c8c1c0-b8cc-45e5-a9c0-92e42508bf5c";
+"4afbcde0-bab8-4568-8968-0b6a8c02d365" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"86c8c1c0-b8cc-45e5-a9c0-92e42508bf5c" -> "4afbcde0-bab8-4568-8968-0b6a8c02d365";
+"2aa73d63-e297-4a41-8dee-94d53234c1ca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"86c8c1c0-b8cc-45e5-a9c0-92e42508bf5c" -> "2aa73d63-e297-4a41-8dee-94d53234c1ca";
+"8cf009e7-8ecb-4772-b531-640098aa2fa4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"86c8c1c0-b8cc-45e5-a9c0-92e42508bf5c" -> "8cf009e7-8ecb-4772-b531-640098aa2fa4";
+"a209b430-331a-408e-a186-f871621e6235" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,WaterTable)", shape=box, style=filled];
+"86c8c1c0-b8cc-45e5-a9c0-92e42508bf5c" -> "a209b430-331a-408e-a186-f871621e6235";
+"8f5caa12-2683-4dc2-a6e4-9bcbe5e059e1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "8f5caa12-2683-4dc2-a6e4-9bcbe5e059e1";
+"c5b63778-d081-4c7b-b552-cdd146b196ad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8f5caa12-2683-4dc2-a6e4-9bcbe5e059e1" -> "c5b63778-d081-4c7b-b552-cdd146b196ad";
+"4a3367b4-250d-4e0f-a9c6-48e5a50c343c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"8f5caa12-2683-4dc2-a6e4-9bcbe5e059e1" -> "4a3367b4-250d-4e0f-a9c6-48e5a50c343c";
+"772af504-2dc4-4767-abde-611a674cd79f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"8f5caa12-2683-4dc2-a6e4-9bcbe5e059e1" -> "772af504-2dc4-4767-abde-611a674cd79f";
+"987664c0-0991-48a6-803b-b5e892e2d1a4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,WaterTable)", shape=box, style=filled];
+"8f5caa12-2683-4dc2-a6e4-9bcbe5e059e1" -> "987664c0-0991-48a6-803b-b5e892e2d1a4";
+"04a50e21-b710-4e83-b1af-9c0418085c65" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "04a50e21-b710-4e83-b1af-9c0418085c65";
+"b03e5f58-eb83-438d-8ca7-7dde6727c2d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"04a50e21-b710-4e83-b1af-9c0418085c65" -> "b03e5f58-eb83-438d-8ca7-7dde6727c2d4";
+"9c5e67a3-6b65-4431-8b73-49aa75316f1f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"04a50e21-b710-4e83-b1af-9c0418085c65" -> "9c5e67a3-6b65-4431-8b73-49aa75316f1f";
+"509b9988-2cd5-46a9-bc65-d1f807cbde55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"04a50e21-b710-4e83-b1af-9c0418085c65" -> "509b9988-2cd5-46a9-bc65-d1f807cbde55";
+"f2836fa4-1c63-4b91-9a01-614b025fef4e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,Off)", shape=box, style=filled];
+"04a50e21-b710-4e83-b1af-9c0418085c65" -> "f2836fa4-1c63-4b91-9a01-614b025fef4e";
+"70a91257-e1b1-49a5-990b-6623ff00ca2c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "70a91257-e1b1-49a5-990b-6623ff00ca2c";
+"2bed3a27-a89e-4462-9b93-4945600a7554" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"70a91257-e1b1-49a5-990b-6623ff00ca2c" -> "2bed3a27-a89e-4462-9b93-4945600a7554";
+"7e593aee-707b-4210-9fb0-450fe4ed464d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"70a91257-e1b1-49a5-990b-6623ff00ca2c" -> "7e593aee-707b-4210-9fb0-450fe4ed464d";
+"efca8ee0-c464-43f7-bbcc-6fec6cdd125a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"70a91257-e1b1-49a5-990b-6623ff00ca2c" -> "efca8ee0-c464-43f7-bbcc-6fec6cdd125a";
+"a0fa96b1-64ba-48fa-9f5c-45c4c7a19512" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,Off)", shape=box, style=filled];
+"70a91257-e1b1-49a5-990b-6623ff00ca2c" -> "a0fa96b1-64ba-48fa-9f5c-45c4c7a19512";
+"43f1412b-eade-4e41-b384-7a4281d51b6a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "43f1412b-eade-4e41-b384-7a4281d51b6a";
+"591b9c34-fc4b-4c71-ba20-93281002cb4c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,Off)", shape=ellipse, style=filled];
+"43f1412b-eade-4e41-b384-7a4281d51b6a" -> "591b9c34-fc4b-4c71-ba20-93281002cb4c";
+"2d64dc71-fa0d-43a2-8300-5a67808ce081" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"43f1412b-eade-4e41-b384-7a4281d51b6a" -> "2d64dc71-fa0d-43a2-8300-5a67808ce081";
+"62fb6fd6-6fb2-4fe5-b016-75d836a04f6a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"43f1412b-eade-4e41-b384-7a4281d51b6a" -> "62fb6fd6-6fb2-4fe5-b016-75d836a04f6a";
+"3ed259b7-1a9b-414c-96e5-a0027b7e515c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,On)", shape=box, style=filled];
+"43f1412b-eade-4e41-b384-7a4281d51b6a" -> "3ed259b7-1a9b-414c-96e5-a0027b7e515c";
+"3cbc5010-3968-45a6-937a-cc0617c55555" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "3cbc5010-3968-45a6-937a-cc0617c55555";
+"77fbbe09-49a6-4466-a77d-04f2349211f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,Off)", shape=ellipse, style=filled];
+"3cbc5010-3968-45a6-937a-cc0617c55555" -> "77fbbe09-49a6-4466-a77d-04f2349211f2";
+"82130e97-ba4e-4731-bc0c-095bc96f31c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3cbc5010-3968-45a6-937a-cc0617c55555" -> "82130e97-ba4e-4731-bc0c-095bc96f31c8";
+"293a8181-4944-4a77-a0c2-395fb92da429" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"3cbc5010-3968-45a6-937a-cc0617c55555" -> "293a8181-4944-4a77-a0c2-395fb92da429";
+"28538aff-92f5-44b6-a7bb-3fc064d88f34" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,On)", shape=box, style=filled];
+"3cbc5010-3968-45a6-937a-cc0617c55555" -> "28538aff-92f5-44b6-a7bb-3fc064d88f34";
+"cc9c6876-7bfd-4668-957b-22007c8eef59" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "cc9c6876-7bfd-4668-957b-22007c8eef59";
+"2a5169c5-3cb7-4c38-852d-e7f7fecc0aa8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cc9c6876-7bfd-4668-957b-22007c8eef59" -> "2a5169c5-3cb7-4c38-852d-e7f7fecc0aa8";
+"6fe486b0-cf2a-4612-87e2-92987e476fb7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"cc9c6876-7bfd-4668-957b-22007c8eef59" -> "6fe486b0-cf2a-4612-87e2-92987e476fb7";
+"45003d83-2342-4e51-a035-86137bff3b9e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"cc9c6876-7bfd-4668-957b-22007c8eef59" -> "45003d83-2342-4e51-a035-86137bff3b9e";
+"6dde11aa-2738-4584-9575-f827384923dc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Down)", shape=box, style=filled];
+"cc9c6876-7bfd-4668-957b-22007c8eef59" -> "6dde11aa-2738-4584-9575-f827384923dc";
+"b7a1f95c-7154-4d5c-9e53-df475a8ac8fe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b7a1f95c-7154-4d5c-9e53-df475a8ac8fe";
+"941de543-d2c2-4e7a-bfef-d6dc0ada1337" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b7a1f95c-7154-4d5c-9e53-df475a8ac8fe" -> "941de543-d2c2-4e7a-bfef-d6dc0ada1337";
+"5c9af632-74fc-40e2-b4fc-927256bd85c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"b7a1f95c-7154-4d5c-9e53-df475a8ac8fe" -> "5c9af632-74fc-40e2-b4fc-927256bd85c8";
+"23375cd4-a3fe-4c4e-879d-1639ef95a5ad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"b7a1f95c-7154-4d5c-9e53-df475a8ac8fe" -> "23375cd4-a3fe-4c4e-879d-1639ef95a5ad";
+"9eb434c3-e503-493c-9adc-a82d762d586a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Down)", shape=box, style=filled];
+"b7a1f95c-7154-4d5c-9e53-df475a8ac8fe" -> "9eb434c3-e503-493c-9adc-a82d762d586a";
+"153ba37e-b408-419a-9c90-7f2a028495b2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "153ba37e-b408-419a-9c90-7f2a028495b2";
+"d95cd8e4-e6cf-4445-9997-a3e7baca49a0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"153ba37e-b408-419a-9c90-7f2a028495b2" -> "d95cd8e4-e6cf-4445-9997-a3e7baca49a0";
+"4aeab62f-e599-43b3-bafd-e302262d4ffa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"153ba37e-b408-419a-9c90-7f2a028495b2" -> "4aeab62f-e599-43b3-bafd-e302262d4ffa";
+"4d777bdd-f3e1-41e5-b2cd-88f45725f492" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"153ba37e-b408-419a-9c90-7f2a028495b2" -> "4d777bdd-f3e1-41e5-b2cd-88f45725f492";
+"4f68e88b-ed85-4a4d-953e-b865502c07f0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Up)", shape=box, style=filled];
+"153ba37e-b408-419a-9c90-7f2a028495b2" -> "4f68e88b-ed85-4a4d-953e-b865502c07f0";
+"43bd2501-8497-44cf-816e-7b1d92dffde8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "43bd2501-8497-44cf-816e-7b1d92dffde8";
+"aa1362f4-3d0e-42e0-af0e-261b75fcebf2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"43bd2501-8497-44cf-816e-7b1d92dffde8" -> "aa1362f4-3d0e-42e0-af0e-261b75fcebf2";
+"51801e5e-b4dc-426d-929a-6bde538d048d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"43bd2501-8497-44cf-816e-7b1d92dffde8" -> "51801e5e-b4dc-426d-929a-6bde538d048d";
+"26f5465c-1b9e-4970-ab5f-fe4fa9838903" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"43bd2501-8497-44cf-816e-7b1d92dffde8" -> "26f5465c-1b9e-4970-ab5f-fe4fa9838903";
+"ca700651-9410-41b3-8515-385ef35fba1a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Up)", shape=box, style=filled];
+"43bd2501-8497-44cf-816e-7b1d92dffde8" -> "ca700651-9410-41b3-8515-385ef35fba1a";
+"b5ca3acc-1a68-41cc-9b21-5c7bb3ae4317" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "b5ca3acc-1a68-41cc-9b21-5c7bb3ae4317";
+"cf48efd6-e66b-4bf1-ab38-8d1ce6e0eda0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"b5ca3acc-1a68-41cc-9b21-5c7bb3ae4317" -> "cf48efd6-e66b-4bf1-ab38-8d1ce6e0eda0";
+"c2cea7e5-1a6c-4c30-b131-e1ad3c3ded32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b5ca3acc-1a68-41cc-9b21-5c7bb3ae4317" -> "c2cea7e5-1a6c-4c30-b131-e1ad3c3ded32";
+"9c64fa3f-efc1-4752-80fd-7e8b9ce8d7bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"b5ca3acc-1a68-41cc-9b21-5c7bb3ae4317" -> "9c64fa3f-efc1-4752-80fd-7e8b9ce8d7bc";
+"aa38b7a0-4f66-4e81-bc63-b2d6d2a7e655" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,Off)", shape=box, style=filled];
+"b5ca3acc-1a68-41cc-9b21-5c7bb3ae4317" -> "aa38b7a0-4f66-4e81-bc63-b2d6d2a7e655";
+"bc0cbfff-650c-4b61-9dcc-bfe2a8895524" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "bc0cbfff-650c-4b61-9dcc-bfe2a8895524";
+"d6036efd-e852-45de-8cfd-08270944d42f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"bc0cbfff-650c-4b61-9dcc-bfe2a8895524" -> "d6036efd-e852-45de-8cfd-08270944d42f";
+"50790486-112c-4551-bb75-2182cfadedf2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bc0cbfff-650c-4b61-9dcc-bfe2a8895524" -> "50790486-112c-4551-bb75-2182cfadedf2";
+"c5f42ef3-c170-41d9-8473-b16d00239b0a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"bc0cbfff-650c-4b61-9dcc-bfe2a8895524" -> "c5f42ef3-c170-41d9-8473-b16d00239b0a";
+"b843cdb2-ff72-4241-8087-0180bd5797cc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,Off)", shape=box, style=filled];
+"bc0cbfff-650c-4b61-9dcc-bfe2a8895524" -> "b843cdb2-ff72-4241-8087-0180bd5797cc";
+"4b0ffbb6-c2a4-470d-9806-05aa6e64a0c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "4b0ffbb6-c2a4-470d-9806-05aa6e64a0c9";
+"6191c3d6-f4f9-435f-a3d3-439114f8f1f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,Off)", shape=ellipse, style=filled];
+"4b0ffbb6-c2a4-470d-9806-05aa6e64a0c9" -> "6191c3d6-f4f9-435f-a3d3-439114f8f1f0";
+"b1c8089d-7646-4116-b227-b498270b8a96" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4b0ffbb6-c2a4-470d-9806-05aa6e64a0c9" -> "b1c8089d-7646-4116-b227-b498270b8a96";
+"8f120095-58f3-4732-bac6-0bccb201ae49" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"4b0ffbb6-c2a4-470d-9806-05aa6e64a0c9" -> "8f120095-58f3-4732-bac6-0bccb201ae49";
+"719c49bd-8d3a-4f6a-b242-f40c67237040" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,On)", shape=box, style=filled];
+"4b0ffbb6-c2a4-470d-9806-05aa6e64a0c9" -> "719c49bd-8d3a-4f6a-b242-f40c67237040";
+"4a17b594-7ff7-46af-8b71-1f02b5b3e42c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "4a17b594-7ff7-46af-8b71-1f02b5b3e42c";
+"2b4769c2-3de2-46e9-a1a4-77ed768a6c64" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,Off)", shape=ellipse, style=filled];
+"4a17b594-7ff7-46af-8b71-1f02b5b3e42c" -> "2b4769c2-3de2-46e9-a1a4-77ed768a6c64";
+"28be1710-e38f-4ece-aafc-e5c4ed6d7896" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4a17b594-7ff7-46af-8b71-1f02b5b3e42c" -> "28be1710-e38f-4ece-aafc-e5c4ed6d7896";
+"2929935a-0d13-41d0-b0f3-e7022ece035d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"4a17b594-7ff7-46af-8b71-1f02b5b3e42c" -> "2929935a-0d13-41d0-b0f3-e7022ece035d";
+"07c4487a-9bda-40ba-bf8e-584abcce469c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,On)", shape=box, style=filled];
+"4a17b594-7ff7-46af-8b71-1f02b5b3e42c" -> "07c4487a-9bda-40ba-bf8e-584abcce469c";
+"46192f43-7060-41ce-aa31-dabc6fe5b1b3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "46192f43-7060-41ce-aa31-dabc6fe5b1b3";
+"09bc58a6-e2b0-42a5-8d0a-e6d64a8e7474" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"46192f43-7060-41ce-aa31-dabc6fe5b1b3" -> "09bc58a6-e2b0-42a5-8d0a-e6d64a8e7474";
+"54aba7d7-034f-4430-8e47-e880eab1e876" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"46192f43-7060-41ce-aa31-dabc6fe5b1b3" -> "54aba7d7-034f-4430-8e47-e880eab1e876";
+"ea6b159d-2aec-4397-804b-6ca51de8467b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,On)", shape=ellipse, style=filled];
+"46192f43-7060-41ce-aa31-dabc6fe5b1b3" -> "ea6b159d-2aec-4397-804b-6ca51de8467b";
+"399e9866-eadb-44b4-9ff4-92ecec8a11a7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,Off)", shape=box, style=filled];
+"46192f43-7060-41ce-aa31-dabc6fe5b1b3" -> "399e9866-eadb-44b4-9ff4-92ecec8a11a7";
+"d3a0ea81-121e-4cb1-8240-850d5798e3c1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "d3a0ea81-121e-4cb1-8240-850d5798e3c1";
+"a2794aea-a1de-4ef7-93eb-27f34cdcec78" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d3a0ea81-121e-4cb1-8240-850d5798e3c1" -> "a2794aea-a1de-4ef7-93eb-27f34cdcec78";
+"9a37d685-93bb-412e-a1e3-f1e19749e71c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"d3a0ea81-121e-4cb1-8240-850d5798e3c1" -> "9a37d685-93bb-412e-a1e3-f1e19749e71c";
+"e30b3cd8-b8dc-4efc-b253-f7ecb7ea977d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,On)", shape=ellipse, style=filled];
+"d3a0ea81-121e-4cb1-8240-850d5798e3c1" -> "e30b3cd8-b8dc-4efc-b253-f7ecb7ea977d";
+"d75a08c2-c604-41d5-8366-d4eb2f673e21" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,Off)", shape=box, style=filled];
+"d3a0ea81-121e-4cb1-8240-850d5798e3c1" -> "d75a08c2-c604-41d5-8366-d4eb2f673e21";
+"cb6dbb6f-6e14-4df2-8017-5b6f20ab2cef" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "cb6dbb6f-6e14-4df2-8017-5b6f20ab2cef";
+"d2745cd3-df57-46ce-9786-92941548695e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cb6dbb6f-6e14-4df2-8017-5b6f20ab2cef" -> "d2745cd3-df57-46ce-9786-92941548695e";
+"1558b313-ba00-4a35-9b33-78fd31ee8fd4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"cb6dbb6f-6e14-4df2-8017-5b6f20ab2cef" -> "1558b313-ba00-4a35-9b33-78fd31ee8fd4";
+"c0d5a5ce-4b8d-4fab-8ed5-3dea61d7eb65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,Off)", shape=ellipse, style=filled];
+"cb6dbb6f-6e14-4df2-8017-5b6f20ab2cef" -> "c0d5a5ce-4b8d-4fab-8ed5-3dea61d7eb65";
+"6b883883-7f0e-40f8-b094-cb93a28e7a30" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,On)", shape=box, style=filled];
+"cb6dbb6f-6e14-4df2-8017-5b6f20ab2cef" -> "6b883883-7f0e-40f8-b094-cb93a28e7a30";
+"5adaae44-afd2-4387-a568-569cb2bfc1af" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"1ada7f65-4cfc-4f57-81b6-80cc867dcdce" -> "5adaae44-afd2-4387-a568-569cb2bfc1af";
+"59d8bfc0-b8a3-4fc8-bfda-2fd9c06214e7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5adaae44-afd2-4387-a568-569cb2bfc1af" -> "59d8bfc0-b8a3-4fc8-bfda-2fd9c06214e7";
+"9b046497-53c6-4730-8cec-c8f6898f0e34" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"5adaae44-afd2-4387-a568-569cb2bfc1af" -> "9b046497-53c6-4730-8cec-c8f6898f0e34";
+"5105b369-d457-41c5-915e-1005e2997c08" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,Off)", shape=ellipse, style=filled];
+"5adaae44-afd2-4387-a568-569cb2bfc1af" -> "5105b369-d457-41c5-915e-1005e2997c08";
+"74b6a96b-0e17-4909-aa0e-505c003e9472" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,On)", shape=box, style=filled];
+"5adaae44-afd2-4387-a568-569cb2bfc1af" -> "74b6a96b-0e17-4909-aa0e-505c003e9472";
+"3967d2b4-648e-4dfd-b25e-1aa784813266" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"0d027cbc-4d3a-48ed-9d82-a5dcd86c844d" -> "3967d2b4-648e-4dfd-b25e-1aa784813266";
+"4a7729ee-b319-4f3f-b05a-6b9e28132562" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0436df48-93c8-490d-af8c-ea3144c29ef4" -> "4a7729ee-b319-4f3f-b05a-6b9e28132562";
+"e81cc950-9b01-4f65-af1b-c7cc8d017a31" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4a7729ee-b319-4f3f-b05a-6b9e28132562" -> "e81cc950-9b01-4f65-af1b-c7cc8d017a31";
+"dfb932c2-a728-46dc-94c1-403b812fd121" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"4a7729ee-b319-4f3f-b05a-6b9e28132562" -> "dfb932c2-a728-46dc-94c1-403b812fd121";
+"86f2ff30-84ec-4391-af26-8c0f3789a0a9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"4a7729ee-b319-4f3f-b05a-6b9e28132562" -> "86f2ff30-84ec-4391-af26-8c0f3789a0a9";
+"1e344576-bced-47f1-8a1d-dc61827847e2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(Bar)", shape=box, style=filled];
+"79334f30-98f4-451a-a037-cf8bb0447077" -> "1e344576-bced-47f1-8a1d-dc61827847e2";
+"422c8b7e-6bc0-4276-9163-aa7d9a97395e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "422c8b7e-6bc0-4276-9163-aa7d9a97395e";
+"b8a8650d-e5ce-4323-88bf-a69c30a1bd92" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"422c8b7e-6bc0-4276-9163-aa7d9a97395e" -> "b8a8650d-e5ce-4323-88bf-a69c30a1bd92";
+"33e66130-b4cd-46aa-8b1d-2a8018c0a91a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="MoveTo(Bar)", shape=box, style=filled];
+"422c8b7e-6bc0-4276-9163-aa7d9a97395e" -> "33e66130-b4cd-46aa-8b1d-2a8018c0a91a";
+"7f8e6286-84e6-4b60-8a3e-a5fd50cfd33c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "7f8e6286-84e6-4b60-8a3e-a5fd50cfd33c";
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7f8e6286-84e6-4b60-8a3e-a5fd50cfd33c" -> "0dc269ea-c832-4b1a-b9da-bd24df9c655a";
+"d399256c-80ea-49a2-8271-fc498d3e1f45" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d399256c-80ea-49a2-8271-fc498d3e1f45";
+"de195d80-ef44-499d-8609-30fd45b38cf9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "de195d80-ef44-499d-8609-30fd45b38cf9";
+"ab049362-2256-4be9-b6fb-a3c4af3c0c44" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ab049362-2256-4be9-b6fb-a3c4af3c0c44";
+"bfb4a80f-72e7-4d1b-b853-8286ea839cec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "bfb4a80f-72e7-4d1b-b853-8286ea839cec";
+"6225269e-b587-41ba-8b75-a5aa10d5eaad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"bfb4a80f-72e7-4d1b-b853-8286ea839cec" -> "6225269e-b587-41ba-8b75-a5aa10d5eaad";
+"80595db0-adbd-40d1-b111-17291dd0f357" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bfb4a80f-72e7-4d1b-b853-8286ea839cec" -> "80595db0-adbd-40d1-b111-17291dd0f357";
+"a65885be-e53b-4176-ab2d-9a3f2fdfdcd2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"bfb4a80f-72e7-4d1b-b853-8286ea839cec" -> "a65885be-e53b-4176-ab2d-9a3f2fdfdcd2";
+"37172bd4-521d-472e-8cd1-58e2bc30113f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"bfb4a80f-72e7-4d1b-b853-8286ea839cec" -> "37172bd4-521d-472e-8cd1-58e2bc30113f";
+"c8516e6a-8f35-4f6b-919e-eca639f7d7a9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Chairs)", shape=box, style=filled];
+"bfb4a80f-72e7-4d1b-b853-8286ea839cec" -> "c8516e6a-8f35-4f6b-919e-eca639f7d7a9";
+"fc3c37fa-95ba-4d67-ba7d-2178b77b5e22" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "fc3c37fa-95ba-4d67-ba7d-2178b77b5e22";
+"091ec51c-d491-4d70-9afa-562bf54b9fe9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"fc3c37fa-95ba-4d67-ba7d-2178b77b5e22" -> "091ec51c-d491-4d70-9afa-562bf54b9fe9";
+"2365ca31-392f-4d5b-9358-36b3cae4b998" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fc3c37fa-95ba-4d67-ba7d-2178b77b5e22" -> "2365ca31-392f-4d5b-9358-36b3cae4b998";
+"901bffcd-9ff9-46fc-893c-b9a023ff4972" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"fc3c37fa-95ba-4d67-ba7d-2178b77b5e22" -> "901bffcd-9ff9-46fc-893c-b9a023ff4972";
+"d87e5173-5c7b-4d65-a840-e1dcd8cb3dbd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"fc3c37fa-95ba-4d67-ba7d-2178b77b5e22" -> "d87e5173-5c7b-4d65-a840-e1dcd8cb3dbd";
+"f88efbab-7228-4e7f-93d6-abfe49639004" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Chairs)", shape=box, style=filled];
+"fc3c37fa-95ba-4d67-ba7d-2178b77b5e22" -> "f88efbab-7228-4e7f-93d6-abfe49639004";
+"a8972ad8-5539-449e-9c33-3ea25c5187ae" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a8972ad8-5539-449e-9c33-3ea25c5187ae";
+"14ccb286-5b9e-47e5-b33f-ec94b572aed8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"a8972ad8-5539-449e-9c33-3ea25c5187ae" -> "14ccb286-5b9e-47e5-b33f-ec94b572aed8";
+"54606ca9-3c5b-448e-bb1a-5abceae90b3e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a8972ad8-5539-449e-9c33-3ea25c5187ae" -> "54606ca9-3c5b-448e-bb1a-5abceae90b3e";
+"4401bde4-5527-444c-beb0-10826d394e32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"a8972ad8-5539-449e-9c33-3ea25c5187ae" -> "4401bde4-5527-444c-beb0-10826d394e32";
+"39ddd05f-ea53-46dc-8664-de927ffcdcc3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a8972ad8-5539-449e-9c33-3ea25c5187ae" -> "39ddd05f-ea53-46dc-8664-de927ffcdcc3";
+"7770dd21-aec6-42d0-b15a-4a4e6bf614a0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Floor)", shape=box, style=filled];
+"a8972ad8-5539-449e-9c33-3ea25c5187ae" -> "7770dd21-aec6-42d0-b15a-4a4e6bf614a0";
+"05ca37fc-db68-4bfb-b898-6d97ef555d46" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "05ca37fc-db68-4bfb-b898-6d97ef555d46";
+"76dc5841-5780-4989-ac03-040d4d0f7603" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"05ca37fc-db68-4bfb-b898-6d97ef555d46" -> "76dc5841-5780-4989-ac03-040d4d0f7603";
+"34ffb13c-c55f-4d4a-9d63-79f25cf2d313" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"05ca37fc-db68-4bfb-b898-6d97ef555d46" -> "34ffb13c-c55f-4d4a-9d63-79f25cf2d313";
+"b973ee26-ec87-43b4-a20f-9c197236137c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"05ca37fc-db68-4bfb-b898-6d97ef555d46" -> "b973ee26-ec87-43b4-a20f-9c197236137c";
+"fa667db2-6cb6-4d1b-9705-740dbe46f246" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"05ca37fc-db68-4bfb-b898-6d97ef555d46" -> "fa667db2-6cb6-4d1b-9705-740dbe46f246";
+"5ef72d36-d76e-4c41-8dd1-6b6da0c2434e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Floor)", shape=box, style=filled];
+"05ca37fc-db68-4bfb-b898-6d97ef555d46" -> "5ef72d36-d76e-4c41-8dd1-6b6da0c2434e";
+"6b95c26d-9695-44af-b5dc-b91ba5dfc939" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6b95c26d-9695-44af-b5dc-b91ba5dfc939";
+"538a99e7-9d7f-4415-b472-ab7a9e898008" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"6b95c26d-9695-44af-b5dc-b91ba5dfc939" -> "538a99e7-9d7f-4415-b472-ab7a9e898008";
+"eaa63c73-703c-4b0a-a2d2-8a5bab141d91" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6b95c26d-9695-44af-b5dc-b91ba5dfc939" -> "eaa63c73-703c-4b0a-a2d2-8a5bab141d91";
+"2b648b26-f53e-41e5-902c-2fff1edf7111" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"6b95c26d-9695-44af-b5dc-b91ba5dfc939" -> "2b648b26-f53e-41e5-902c-2fff1edf7111";
+"4f58f615-fa14-4bea-88f6-77c8ce008b30" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6b95c26d-9695-44af-b5dc-b91ba5dfc939" -> "4f58f615-fa14-4bea-88f6-77c8ce008b30";
+"fcc71432-24fb-474c-8c70-6f3084566e17" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Table)", shape=box, style=filled];
+"6b95c26d-9695-44af-b5dc-b91ba5dfc939" -> "fcc71432-24fb-474c-8c70-6f3084566e17";
+"cb74e74f-994d-41a1-af4f-1f283bb1209c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "cb74e74f-994d-41a1-af4f-1f283bb1209c";
+"e0363159-0cc3-4012-a141-9dea33c3a4ab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"cb74e74f-994d-41a1-af4f-1f283bb1209c" -> "e0363159-0cc3-4012-a141-9dea33c3a4ab";
+"32068e83-bd68-47f4-800e-0131055411d2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cb74e74f-994d-41a1-af4f-1f283bb1209c" -> "32068e83-bd68-47f4-800e-0131055411d2";
+"306bae27-e34a-49d7-9428-60c71a28823e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"cb74e74f-994d-41a1-af4f-1f283bb1209c" -> "306bae27-e34a-49d7-9428-60c71a28823e";
+"9fb7c834-18ec-42da-9aa1-f3025a0d0654" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cb74e74f-994d-41a1-af4f-1f283bb1209c" -> "9fb7c834-18ec-42da-9aa1-f3025a0d0654";
+"38e10a99-45bc-4005-b2a9-8a57d8b2ae9a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Clean(Table)", shape=box, style=filled];
+"cb74e74f-994d-41a1-af4f-1f283bb1209c" -> "38e10a99-45bc-4005-b2a9-8a57d8b2ae9a";
+"e0b7ed30-7512-40ca-a9e5-ed51df84c276" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e0b7ed30-7512-40ca-a9e5-ed51df84c276";
+"a904a5c2-68fa-4ac6-aed3-ebc420ae2fa6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e0b7ed30-7512-40ca-a9e5-ed51df84c276" -> "a904a5c2-68fa-4ac6-aed3-ebc420ae2fa6";
+"6a4f249c-517d-4a72-a95b-5358a8d665f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"e0b7ed30-7512-40ca-a9e5-ed51df84c276" -> "6a4f249c-517d-4a72-a95b-5358a8d665f3";
+"7f756955-cf13-4525-bdb5-63dc1376f51e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e0b7ed30-7512-40ca-a9e5-ed51df84c276" -> "7f756955-cf13-4525-bdb5-63dc1376f51e";
+"e728778b-7b45-420c-90f4-0f09e1c2923a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Coffee)", shape=box, style=filled];
+"e0b7ed30-7512-40ca-a9e5-ed51df84c276" -> "e728778b-7b45-420c-90f4-0f09e1c2923a";
+"97123433-3ac3-4f8a-9069-ecb00f1bc213" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "97123433-3ac3-4f8a-9069-ecb00f1bc213";
+"e10abc85-6fea-4152-9789-a1359eac6fdd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"97123433-3ac3-4f8a-9069-ecb00f1bc213" -> "e10abc85-6fea-4152-9789-a1359eac6fdd";
+"bc7bc189-9a09-4584-88ad-1fed7d9e4748" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"97123433-3ac3-4f8a-9069-ecb00f1bc213" -> "bc7bc189-9a09-4584-88ad-1fed7d9e4748";
+"80a2f511-b190-4b21-a357-64f93c601f08" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"97123433-3ac3-4f8a-9069-ecb00f1bc213" -> "80a2f511-b190-4b21-a357-64f93c601f08";
+"b0497fe4-2c51-4e0b-87fc-018da08fc074" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Coffee)", shape=box, style=filled];
+"97123433-3ac3-4f8a-9069-ecb00f1bc213" -> "b0497fe4-2c51-4e0b-87fc-018da08fc074";
+"779f6683-551c-4cf5-baba-49dd3369c095" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "779f6683-551c-4cf5-baba-49dd3369c095";
+"0ba12d9a-7b80-402d-b783-0e4c562c81bf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"779f6683-551c-4cf5-baba-49dd3369c095" -> "0ba12d9a-7b80-402d-b783-0e4c562c81bf";
+"82161840-d1a9-4b7e-acce-da0fa2d97c1c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"779f6683-551c-4cf5-baba-49dd3369c095" -> "82161840-d1a9-4b7e-acce-da0fa2d97c1c";
+"3fa93bdb-51fd-4a24-a12d-830ea5a6f94e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"779f6683-551c-4cf5-baba-49dd3369c095" -> "3fa93bdb-51fd-4a24-a12d-830ea5a6f94e";
+"6905f6bb-970c-4bb0-a0f4-ee8417367be3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Dessert)", shape=box, style=filled];
+"779f6683-551c-4cf5-baba-49dd3369c095" -> "6905f6bb-970c-4bb0-a0f4-ee8417367be3";
+"55fe1f0d-705d-4645-881d-6308a7da52a6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "55fe1f0d-705d-4645-881d-6308a7da52a6";
+"f716cf04-447c-43cc-b001-59c251ba9363" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"55fe1f0d-705d-4645-881d-6308a7da52a6" -> "f716cf04-447c-43cc-b001-59c251ba9363";
+"0cf187fd-aaff-46be-a9cd-11876e3f8203" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"55fe1f0d-705d-4645-881d-6308a7da52a6" -> "0cf187fd-aaff-46be-a9cd-11876e3f8203";
+"9ea00d79-e21d-44da-b245-bf308541d92a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"55fe1f0d-705d-4645-881d-6308a7da52a6" -> "9ea00d79-e21d-44da-b245-bf308541d92a";
+"ea2fe4aa-2eff-4be1-9f35-3cdba3038c3a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Dessert)", shape=box, style=filled];
+"55fe1f0d-705d-4645-881d-6308a7da52a6" -> "ea2fe4aa-2eff-4be1-9f35-3cdba3038c3a";
+"8efb1c01-0be0-42f0-b748-6f6c7a67482f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8efb1c01-0be0-42f0-b748-6f6c7a67482f";
+"8e714503-754d-4919-b85d-2aa9b04b0e0d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8efb1c01-0be0-42f0-b748-6f6c7a67482f" -> "8e714503-754d-4919-b85d-2aa9b04b0e0d";
+"8a40eab2-c3be-456c-95d8-7851b8b9bd6e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"8efb1c01-0be0-42f0-b748-6f6c7a67482f" -> "8a40eab2-c3be-456c-95d8-7851b8b9bd6e";
+"5a9b6398-5fa3-4df2-ba59-bb7a7df9837e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8efb1c01-0be0-42f0-b748-6f6c7a67482f" -> "5a9b6398-5fa3-4df2-ba59-bb7a7df9837e";
+"402ba08f-e2f1-4424-bade-57012564f073" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Water)", shape=box, style=filled];
+"8efb1c01-0be0-42f0-b748-6f6c7a67482f" -> "402ba08f-e2f1-4424-bade-57012564f073";
+"9e18d009-0d65-4045-8180-bdc9bc48b34e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9e18d009-0d65-4045-8180-bdc9bc48b34e";
+"e5dff19c-799c-4426-a89a-fc8b15e7dc97" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9e18d009-0d65-4045-8180-bdc9bc48b34e" -> "e5dff19c-799c-4426-a89a-fc8b15e7dc97";
+"d9dd0b6d-2a4e-4180-8624-42dc599ebfc0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"9e18d009-0d65-4045-8180-bdc9bc48b34e" -> "d9dd0b6d-2a4e-4180-8624-42dc599ebfc0";
+"e6641b18-044f-42af-9134-683ed9b56697" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9e18d009-0d65-4045-8180-bdc9bc48b34e" -> "e6641b18-044f-42af-9134-683ed9b56697";
+"b0e26c87-01d0-4926-84bb-82be622b4039" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Make(Water)", shape=box, style=filled];
+"9e18d009-0d65-4045-8180-bdc9bc48b34e" -> "b0e26c87-01d0-4926-84bb-82be622b4039";
+"55c6236e-8901-4376-826b-cf5f6d824b75" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "55c6236e-8901-4376-826b-cf5f6d824b75";
+"d27554b5-c118-443a-ac4f-0bd7f70d5e42" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"55c6236e-8901-4376-826b-cf5f6d824b75" -> "d27554b5-c118-443a-ac4f-0bd7f70d5e42";
+"d8065680-d122-43df-9d7f-5796f505a9a0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"55c6236e-8901-4376-826b-cf5f6d824b75" -> "d8065680-d122-43df-9d7f-5796f505a9a0";
+"48d954bf-4a31-454b-9583-b5c9eba8d452" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"55c6236e-8901-4376-826b-cf5f6d824b75" -> "48d954bf-4a31-454b-9583-b5c9eba8d452";
+"17b07b14-b69c-4f34-a5d8-d9ef9808f76c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"55c6236e-8901-4376-826b-cf5f6d824b75" -> "17b07b14-b69c-4f34-a5d8-d9ef9808f76c";
+"76ccec2e-1311-4509-bfca-2e94a72779df" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"55c6236e-8901-4376-826b-cf5f6d824b75" -> "76ccec2e-1311-4509-bfca-2e94a72779df";
+"10faa149-a290-48b0-87eb-8d2835183455" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "10faa149-a290-48b0-87eb-8d2835183455";
+"6e28a963-b1c1-4ff5-b242-2b803d8fc942" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"10faa149-a290-48b0-87eb-8d2835183455" -> "6e28a963-b1c1-4ff5-b242-2b803d8fc942";
+"4a791f9d-af4a-40ea-8cfa-179c841140c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"10faa149-a290-48b0-87eb-8d2835183455" -> "4a791f9d-af4a-40ea-8cfa-179c841140c9";
+"b5268f15-cf8f-4103-9761-c6ed1e697b19" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"10faa149-a290-48b0-87eb-8d2835183455" -> "b5268f15-cf8f-4103-9761-c6ed1e697b19";
+"1ae0cddf-95b9-47da-ac1b-c1c5d1000992" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"10faa149-a290-48b0-87eb-8d2835183455" -> "1ae0cddf-95b9-47da-ac1b-c1c5d1000992";
+"9db0a7ae-49e1-440b-b97f-220cc82b5933" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"10faa149-a290-48b0-87eb-8d2835183455" -> "9db0a7ae-49e1-440b-b97f-220cc82b5933";
+"28537863-52a9-432f-a890-cc90726286c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "28537863-52a9-432f-a890-cc90726286c9";
+"d30df1bd-b398-4819-af55-077c83bab117" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"28537863-52a9-432f-a890-cc90726286c9" -> "d30df1bd-b398-4819-af55-077c83bab117";
+"5b9338c1-abbb-4330-aaf7-e9e05f5dc480" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"28537863-52a9-432f-a890-cc90726286c9" -> "5b9338c1-abbb-4330-aaf7-e9e05f5dc480";
+"2b5d497e-bdb2-4cd8-b175-0a2de19a0e58" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"28537863-52a9-432f-a890-cc90726286c9" -> "2b5d497e-bdb2-4cd8-b175-0a2de19a0e58";
+"4dacf940-6cb9-477b-bddc-f91da1f36f3a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"28537863-52a9-432f-a890-cc90726286c9" -> "4dacf940-6cb9-477b-bddc-f91da1f36f3a";
+"9789960b-c8da-464a-a250-99cf105874fe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9789960b-c8da-464a-a250-99cf105874fe";
+"9efa7de4-586b-47c3-a5f5-ccd83735eeb5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"9789960b-c8da-464a-a250-99cf105874fe" -> "9efa7de4-586b-47c3-a5f5-ccd83735eeb5";
+"7cdc2579-e0c9-4fb2-8782-9a0c0cae6b8f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9789960b-c8da-464a-a250-99cf105874fe" -> "7cdc2579-e0c9-4fb2-8782-9a0c0cae6b8f";
+"0cba22c5-68b3-4f58-8e54-b7a3d6accd8b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9789960b-c8da-464a-a250-99cf105874fe" -> "0cba22c5-68b3-4f58-8e54-b7a3d6accd8b";
+"4210f3e7-4452-46c0-858d-39edc1d492aa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"9789960b-c8da-464a-a250-99cf105874fe" -> "4210f3e7-4452-46c0-858d-39edc1d492aa";
+"698c9009-506c-4926-80a1-da8e2f81f61d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "698c9009-506c-4926-80a1-da8e2f81f61d";
+"635ea771-71ee-4e24-ac46-bd92cbc38b6e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"698c9009-506c-4926-80a1-da8e2f81f61d" -> "635ea771-71ee-4e24-ac46-bd92cbc38b6e";
+"a5912ed5-8b1d-43c6-8552-f61430f666f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"698c9009-506c-4926-80a1-da8e2f81f61d" -> "a5912ed5-8b1d-43c6-8552-f61430f666f2";
+"7c5af63a-e108-47f5-aa29-0880ecbdb6db" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"698c9009-506c-4926-80a1-da8e2f81f61d" -> "7c5af63a-e108-47f5-aa29-0880ecbdb6db";
+"c07cf323-de75-4d44-b968-787b32e4b186" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"698c9009-506c-4926-80a1-da8e2f81f61d" -> "c07cf323-de75-4d44-b968-787b32e4b186";
+"3e48ae65-5181-4eef-b9f8-84792fb06b2b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,BrightTable)", shape=box, style=filled];
+"698c9009-506c-4926-80a1-da8e2f81f61d" -> "3e48ae65-5181-4eef-b9f8-84792fb06b2b";
+"efb791e1-37d3-4eff-9fc3-63b430e8be30" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "efb791e1-37d3-4eff-9fc3-63b430e8be30";
+"37037c0e-3e3c-49a1-a5fe-162f6efd34da" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"efb791e1-37d3-4eff-9fc3-63b430e8be30" -> "37037c0e-3e3c-49a1-a5fe-162f6efd34da";
+"e8336496-274b-4032-99d7-07de86fa93f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"efb791e1-37d3-4eff-9fc3-63b430e8be30" -> "e8336496-274b-4032-99d7-07de86fa93f0";
+"8502804d-bc7f-46ba-81c3-888ccdf91236" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"efb791e1-37d3-4eff-9fc3-63b430e8be30" -> "8502804d-bc7f-46ba-81c3-888ccdf91236";
+"30f48ccb-27d7-467e-ad3f-5652789f3b02" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"efb791e1-37d3-4eff-9fc3-63b430e8be30" -> "30f48ccb-27d7-467e-ad3f-5652789f3b02";
+"9d3520b2-e870-40c9-9242-a9572be5cf56" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,BrightTable)", shape=box, style=filled];
+"efb791e1-37d3-4eff-9fc3-63b430e8be30" -> "9d3520b2-e870-40c9-9242-a9572be5cf56";
+"3ea8a286-44c5-4260-bc0b-6fa92fda03f6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "3ea8a286-44c5-4260-bc0b-6fa92fda03f6";
+"b9a7d910-afca-470b-a417-0362f0856966" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"3ea8a286-44c5-4260-bc0b-6fa92fda03f6" -> "b9a7d910-afca-470b-a417-0362f0856966";
+"16ea4e70-7bbf-479c-9d22-d877f33fc2c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3ea8a286-44c5-4260-bc0b-6fa92fda03f6" -> "16ea4e70-7bbf-479c-9d22-d877f33fc2c5";
+"1b50025a-01a2-44d8-82f7-fc60e8206a6a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"3ea8a286-44c5-4260-bc0b-6fa92fda03f6" -> "1b50025a-01a2-44d8-82f7-fc60e8206a6a";
+"d71626df-94d5-4d58-83e5-cd8a50b611c2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3ea8a286-44c5-4260-bc0b-6fa92fda03f6" -> "d71626df-94d5-4d58-83e5-cd8a50b611c2";
+"e093d49c-6aea-40f0-97b9-f02e83c506f2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"3ea8a286-44c5-4260-bc0b-6fa92fda03f6" -> "e093d49c-6aea-40f0-97b9-f02e83c506f2";
+"1532462c-f171-429a-9c41-3026f0149814" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "1532462c-f171-429a-9c41-3026f0149814";
+"035dc5db-f5ea-438e-a7ec-30bb0185f5af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"1532462c-f171-429a-9c41-3026f0149814" -> "035dc5db-f5ea-438e-a7ec-30bb0185f5af";
+"f6e04e93-f027-459a-8842-fcb689a19a32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1532462c-f171-429a-9c41-3026f0149814" -> "f6e04e93-f027-459a-8842-fcb689a19a32";
+"dade6da4-bd0a-4cd3-8d55-9bd9a3bf3b55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"1532462c-f171-429a-9c41-3026f0149814" -> "dade6da4-bd0a-4cd3-8d55-9bd9a3bf3b55";
+"4b483763-79a5-4f12-aefd-ed110db04046" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1532462c-f171-429a-9c41-3026f0149814" -> "4b483763-79a5-4f12-aefd-ed110db04046";
+"94492430-c07c-4c96-9064-664783489838" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,CoffeeTable)", shape=box, style=filled];
+"1532462c-f171-429a-9c41-3026f0149814" -> "94492430-c07c-4c96-9064-664783489838";
+"818efceb-1428-49ad-a017-734ecb7b5868" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "818efceb-1428-49ad-a017-734ecb7b5868";
+"21f2e42d-dd39-447d-8afc-2f11f247b327" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"818efceb-1428-49ad-a017-734ecb7b5868" -> "21f2e42d-dd39-447d-8afc-2f11f247b327";
+"b153915e-8195-440c-b53b-f77697d2c470" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"818efceb-1428-49ad-a017-734ecb7b5868" -> "b153915e-8195-440c-b53b-f77697d2c470";
+"b7ebf6fd-149c-42be-ac0a-a76935561f4d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"818efceb-1428-49ad-a017-734ecb7b5868" -> "b7ebf6fd-149c-42be-ac0a-a76935561f4d";
+"eadc9351-ec6d-4a3d-92b8-bd92544231a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"818efceb-1428-49ad-a017-734ecb7b5868" -> "eadc9351-ec6d-4a3d-92b8-bd92544231a3";
+"3fe57a55-e2c6-4e60-a516-b9e9155440ed" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"818efceb-1428-49ad-a017-734ecb7b5868" -> "3fe57a55-e2c6-4e60-a516-b9e9155440ed";
+"27f29fa8-de21-4a0a-aeed-d2f0f01385f9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "27f29fa8-de21-4a0a-aeed-d2f0f01385f9";
+"2d064b0d-3354-44da-a945-fa423d436af5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"27f29fa8-de21-4a0a-aeed-d2f0f01385f9" -> "2d064b0d-3354-44da-a945-fa423d436af5";
+"5c649250-82eb-4992-a68f-fc2f7a3a512c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"27f29fa8-de21-4a0a-aeed-d2f0f01385f9" -> "5c649250-82eb-4992-a68f-fc2f7a3a512c";
+"72946a21-41c3-47a6-b5da-93e16b92f382" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"27f29fa8-de21-4a0a-aeed-d2f0f01385f9" -> "72946a21-41c3-47a6-b5da-93e16b92f382";
+"330c2360-a2d7-4171-ad45-ceb274a26be8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"27f29fa8-de21-4a0a-aeed-d2f0f01385f9" -> "330c2360-a2d7-4171-ad45-ceb274a26be8";
+"0ec56fde-ce17-42f7-84e3-9445d8b4bfca" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"27f29fa8-de21-4a0a-aeed-d2f0f01385f9" -> "0ec56fde-ce17-42f7-84e3-9445d8b4bfca";
+"a2157ffd-4fcc-4a02-92f7-990b8059b43b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a2157ffd-4fcc-4a02-92f7-990b8059b43b";
+"30b115ce-6a1a-4c4b-8be9-5100740fca25" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"a2157ffd-4fcc-4a02-92f7-990b8059b43b" -> "30b115ce-6a1a-4c4b-8be9-5100740fca25";
+"52aa59f6-bcd0-40e4-ad35-1ffbbcc05a65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a2157ffd-4fcc-4a02-92f7-990b8059b43b" -> "52aa59f6-bcd0-40e4-ad35-1ffbbcc05a65";
+"72cd73ab-560e-472d-8b8c-10e1d9bba655" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a2157ffd-4fcc-4a02-92f7-990b8059b43b" -> "72cd73ab-560e-472d-8b8c-10e1d9bba655";
+"38ce608d-6b54-4fce-89ce-55dd1d8f2c69" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"a2157ffd-4fcc-4a02-92f7-990b8059b43b" -> "38ce608d-6b54-4fce-89ce-55dd1d8f2c69";
+"7be4dca7-c9c4-4f27-83ae-331ff5b232a7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"a2157ffd-4fcc-4a02-92f7-990b8059b43b" -> "7be4dca7-c9c4-4f27-83ae-331ff5b232a7";
+"06ea4b68-7e97-4384-8429-42e06277df0d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "06ea4b68-7e97-4384-8429-42e06277df0d";
+"c6737d2a-b67f-4d40-8b0a-1543e9d8af01" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"06ea4b68-7e97-4384-8429-42e06277df0d" -> "c6737d2a-b67f-4d40-8b0a-1543e9d8af01";
+"2118a626-739f-46e7-b887-f9f13ee30da0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"06ea4b68-7e97-4384-8429-42e06277df0d" -> "2118a626-739f-46e7-b887-f9f13ee30da0";
+"041ae835-3da0-4c12-a193-ccc386affae2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"06ea4b68-7e97-4384-8429-42e06277df0d" -> "041ae835-3da0-4c12-a193-ccc386affae2";
+"8b0d1a38-ebd0-483d-96ea-445f054549cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"06ea4b68-7e97-4384-8429-42e06277df0d" -> "8b0d1a38-ebd0-483d-96ea-445f054549cd";
+"d06cbea0-fd1e-491c-bb53-0e4b23126ee4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"06ea4b68-7e97-4384-8429-42e06277df0d" -> "d06cbea0-fd1e-491c-bb53-0e4b23126ee4";
+"94258199-a204-4c0b-b8ce-948815aff9ca" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "94258199-a204-4c0b-b8ce-948815aff9ca";
+"bee0ea60-2ae1-42b0-90e6-90279e88f763" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"94258199-a204-4c0b-b8ce-948815aff9ca" -> "bee0ea60-2ae1-42b0-90e6-90279e88f763";
+"6eb285cd-2368-4971-825e-61445bfa2e2a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"94258199-a204-4c0b-b8ce-948815aff9ca" -> "6eb285cd-2368-4971-825e-61445bfa2e2a";
+"43f1e64d-df6d-40c6-afb4-3d7d58e21751" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"94258199-a204-4c0b-b8ce-948815aff9ca" -> "43f1e64d-df6d-40c6-afb4-3d7d58e21751";
+"b5f61c46-a235-459d-8557-2a342d7be854" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"94258199-a204-4c0b-b8ce-948815aff9ca" -> "b5f61c46-a235-459d-8557-2a342d7be854";
+"1ab81a05-ddf6-477f-a489-07b5bfe0e6fa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"94258199-a204-4c0b-b8ce-948815aff9ca" -> "1ab81a05-ddf6-477f-a489-07b5bfe0e6fa";
+"676a85af-87b0-4319-8138-2ced1601fb4d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "676a85af-87b0-4319-8138-2ced1601fb4d";
+"7ada8bc3-c2dd-4c58-9de8-8d6712b5f927" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"676a85af-87b0-4319-8138-2ced1601fb4d" -> "7ada8bc3-c2dd-4c58-9de8-8d6712b5f927";
+"d77b612e-e30b-4db4-ad6f-f415986b8067" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"676a85af-87b0-4319-8138-2ced1601fb4d" -> "d77b612e-e30b-4db4-ad6f-f415986b8067";
+"9e903464-09fc-4387-aff7-a91afa16ad50" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"676a85af-87b0-4319-8138-2ced1601fb4d" -> "9e903464-09fc-4387-aff7-a91afa16ad50";
+"72ee7d06-8981-44d6-a800-b814c9fa6849" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"676a85af-87b0-4319-8138-2ced1601fb4d" -> "72ee7d06-8981-44d6-a800-b814c9fa6849";
+"d5d11428-d33f-4b3d-8c7a-0ad782f50262" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Table)", shape=box, style=filled];
+"676a85af-87b0-4319-8138-2ced1601fb4d" -> "d5d11428-d33f-4b3d-8c7a-0ad782f50262";
+"68744e66-fc73-464b-8c49-3904c59bc16f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "68744e66-fc73-464b-8c49-3904c59bc16f";
+"761133f6-6e5f-452c-a2cf-40f1442b942a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"68744e66-fc73-464b-8c49-3904c59bc16f" -> "761133f6-6e5f-452c-a2cf-40f1442b942a";
+"235b7099-58f9-4da0-a2a0-bf13ccaa15e0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"68744e66-fc73-464b-8c49-3904c59bc16f" -> "235b7099-58f9-4da0-a2a0-bf13ccaa15e0";
+"ef5ec12f-e2f2-41cb-a621-1fa174d8fb13" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"68744e66-fc73-464b-8c49-3904c59bc16f" -> "ef5ec12f-e2f2-41cb-a621-1fa174d8fb13";
+"21a1a030-6f5d-44d6-821a-90a277b5ac2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"68744e66-fc73-464b-8c49-3904c59bc16f" -> "21a1a030-6f5d-44d6-821a-90a277b5ac2d";
+"1606fb41-70d7-44a5-982b-c6169c9fae0e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,WaterTable)", shape=box, style=filled];
+"68744e66-fc73-464b-8c49-3904c59bc16f" -> "1606fb41-70d7-44a5-982b-c6169c9fae0e";
+"9c7893a8-f346-44e4-8728-8e277b3d7c91" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9c7893a8-f346-44e4-8728-8e277b3d7c91";
+"9ad27052-a300-4c9b-99e5-b2134298f04c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"9c7893a8-f346-44e4-8728-8e277b3d7c91" -> "9ad27052-a300-4c9b-99e5-b2134298f04c";
+"467612d0-6f6c-4992-a34e-ad7f8baa8a9c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9c7893a8-f346-44e4-8728-8e277b3d7c91" -> "467612d0-6f6c-4992-a34e-ad7f8baa8a9c";
+"f660c0d5-332c-4701-b39a-019a3ddc9e73" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"9c7893a8-f346-44e4-8728-8e277b3d7c91" -> "f660c0d5-332c-4701-b39a-019a3ddc9e73";
+"da8a0c37-aa81-4024-a5d1-04eb6e581cb1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9c7893a8-f346-44e4-8728-8e277b3d7c91" -> "da8a0c37-aa81-4024-a5d1-04eb6e581cb1";
+"4d53c963-b0b8-494d-91ad-4a01baa7779c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,WaterTable)", shape=box, style=filled];
+"9c7893a8-f346-44e4-8728-8e277b3d7c91" -> "4d53c963-b0b8-494d-91ad-4a01baa7779c";
+"90701633-332f-4ed8-b687-7f0860d43bda" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "90701633-332f-4ed8-b687-7f0860d43bda";
+"ba4ab782-074f-4963-af57-197234a5899d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"90701633-332f-4ed8-b687-7f0860d43bda" -> "ba4ab782-074f-4963-af57-197234a5899d";
+"ccee5183-981f-4f5b-b94c-aeee837b4435" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"90701633-332f-4ed8-b687-7f0860d43bda" -> "ccee5183-981f-4f5b-b94c-aeee837b4435";
+"cdaaaf8b-dd52-4cb8-a85a-74abc92829df" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
+"90701633-332f-4ed8-b687-7f0860d43bda" -> "cdaaaf8b-dd52-4cb8-a85a-74abc92829df";
+"7b42cf04-e68e-49d5-a325-9e95a2db5595" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7b42cf04-e68e-49d5-a325-9e95a2db5595";
+"950496f7-13e5-43a0-ab23-0fcfe814b0df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7b42cf04-e68e-49d5-a325-9e95a2db5595" -> "950496f7-13e5-43a0-ab23-0fcfe814b0df";
+"3917768e-79ed-4d3c-81a4-8b6e0ca18d6d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7b42cf04-e68e-49d5-a325-9e95a2db5595" -> "3917768e-79ed-4d3c-81a4-8b6e0ca18d6d";
+"33499698-22c6-4c5a-af48-af7d3ac0adf9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Anything,Anywhere)", shape=box, style=filled];
+"7b42cf04-e68e-49d5-a325-9e95a2db5595" -> "33499698-22c6-4c5a-af48-af7d3ac0adf9";
+"8cbc4950-0b05-48d3-92cc-35768ba88a71" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8cbc4950-0b05-48d3-92cc-35768ba88a71";
+"27560c14-d07e-4657-bf4c-9d856fbb79cf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"8cbc4950-0b05-48d3-92cc-35768ba88a71" -> "27560c14-d07e-4657-bf4c-9d856fbb79cf";
+"737bbb45-61ff-44bc-ac7a-67923f62e8e8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8cbc4950-0b05-48d3-92cc-35768ba88a71" -> "737bbb45-61ff-44bc-ac7a-67923f62e8e8";
+"c1f39bf4-1db0-45e9-a5c8-7c0986e44d65" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8cbc4950-0b05-48d3-92cc-35768ba88a71" -> "c1f39bf4-1db0-45e9-a5c8-7c0986e44d65";
+"be6bccec-3eda-4cfa-a2ac-a87a0be4aec6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"8cbc4950-0b05-48d3-92cc-35768ba88a71" -> "be6bccec-3eda-4cfa-a2ac-a87a0be4aec6";
+"b71d87ed-f7e6-4c65-babc-e7b1140d5acb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"8cbc4950-0b05-48d3-92cc-35768ba88a71" -> "b71d87ed-f7e6-4c65-babc-e7b1140d5acb";
+"4e796e19-ed8f-4173-8ab5-72fa8951b810" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "4e796e19-ed8f-4173-8ab5-72fa8951b810";
+"26f69ff3-f46c-44ce-b984-375bb60b771a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"4e796e19-ed8f-4173-8ab5-72fa8951b810" -> "26f69ff3-f46c-44ce-b984-375bb60b771a";
+"ef9fd641-9f95-4dad-b1e8-c34e7cd6b22b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4e796e19-ed8f-4173-8ab5-72fa8951b810" -> "ef9fd641-9f95-4dad-b1e8-c34e7cd6b22b";
+"27f4c058-065a-40e4-9577-f29905024ac3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4e796e19-ed8f-4173-8ab5-72fa8951b810" -> "27f4c058-065a-40e4-9577-f29905024ac3";
+"fb8d82a5-cbb2-4132-82a4-d7db2eb0acbf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"4e796e19-ed8f-4173-8ab5-72fa8951b810" -> "fb8d82a5-cbb2-4132-82a4-d7db2eb0acbf";
+"5fd421d0-9802-41c0-87b3-5b67fc17c140" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"4e796e19-ed8f-4173-8ab5-72fa8951b810" -> "5fd421d0-9802-41c0-87b3-5b67fc17c140";
+"514081e4-2dc1-4ea9-9b64-d78b6d94d426" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "514081e4-2dc1-4ea9-9b64-d78b6d94d426";
+"47937091-237a-4565-a2c0-791321417504" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"514081e4-2dc1-4ea9-9b64-d78b6d94d426" -> "47937091-237a-4565-a2c0-791321417504";
+"49104a79-50e8-476a-b34e-f1d5a32f8fd5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"514081e4-2dc1-4ea9-9b64-d78b6d94d426" -> "49104a79-50e8-476a-b34e-f1d5a32f8fd5";
+"0d1f5b43-f77a-4f23-8600-4d895d40f60b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"514081e4-2dc1-4ea9-9b64-d78b6d94d426" -> "0d1f5b43-f77a-4f23-8600-4d895d40f60b";
+"26612a35-ff1b-4a7f-8fa3-0721e4ce3015" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"514081e4-2dc1-4ea9-9b64-d78b6d94d426" -> "26612a35-ff1b-4a7f-8fa3-0721e4ce3015";
+"eba47417-d84e-4634-9af4-90147c6ac658" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "eba47417-d84e-4634-9af4-90147c6ac658";
+"5641449f-f04c-482b-9fe8-662b4ebc3861" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"eba47417-d84e-4634-9af4-90147c6ac658" -> "5641449f-f04c-482b-9fe8-662b4ebc3861";
+"e5b460cd-4d6c-45e8-9c97-c0c5fbf53583" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"eba47417-d84e-4634-9af4-90147c6ac658" -> "e5b460cd-4d6c-45e8-9c97-c0c5fbf53583";
+"7c90404d-c020-4a5d-b318-44886bacf8bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"eba47417-d84e-4634-9af4-90147c6ac658" -> "7c90404d-c020-4a5d-b318-44886bacf8bc";
+"057d547c-f603-4abc-9c1f-8c0d33a970cb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"eba47417-d84e-4634-9af4-90147c6ac658" -> "057d547c-f603-4abc-9c1f-8c0d33a970cb";
+"981f947a-75a1-4c4f-a746-36a19e060992" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "981f947a-75a1-4c4f-a746-36a19e060992";
+"410b7c9f-888e-45a3-a1d8-96845f2837e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"981f947a-75a1-4c4f-a746-36a19e060992" -> "410b7c9f-888e-45a3-a1d8-96845f2837e6";
+"1ad18f2b-ac1a-497f-ba44-08f2a0090d42" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"981f947a-75a1-4c4f-a746-36a19e060992" -> "1ad18f2b-ac1a-497f-ba44-08f2a0090d42";
+"ef33cf23-f72b-4c91-a4b0-c5185a2f255f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"981f947a-75a1-4c4f-a746-36a19e060992" -> "ef33cf23-f72b-4c91-a4b0-c5185a2f255f";
+"958aed18-edb3-4d2a-a407-0ac699c66a23" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"981f947a-75a1-4c4f-a746-36a19e060992" -> "958aed18-edb3-4d2a-a407-0ac699c66a23";
+"f6cfd02f-6474-48ba-8cac-7a948a7cb3a6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"981f947a-75a1-4c4f-a746-36a19e060992" -> "f6cfd02f-6474-48ba-8cac-7a948a7cb3a6";
+"44d17e3e-f5c5-4b53-a312-c0d02971ae74" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "44d17e3e-f5c5-4b53-a312-c0d02971ae74";
+"d905a183-7970-4cdc-898f-829fdddec398" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"44d17e3e-f5c5-4b53-a312-c0d02971ae74" -> "d905a183-7970-4cdc-898f-829fdddec398";
+"48145ce1-0261-4d20-9b61-63b7e0d3f780" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"44d17e3e-f5c5-4b53-a312-c0d02971ae74" -> "48145ce1-0261-4d20-9b61-63b7e0d3f780";
+"6ca14c8d-6c5a-4ef4-9577-af55724e1a9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"44d17e3e-f5c5-4b53-a312-c0d02971ae74" -> "6ca14c8d-6c5a-4ef4-9577-af55724e1a9b";
+"b106d35f-a070-4d53-9f80-788c34d24dd9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"44d17e3e-f5c5-4b53-a312-c0d02971ae74" -> "b106d35f-a070-4d53-9f80-788c34d24dd9";
+"9b359cea-13ba-4891-a728-2be9eb415bbe" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,BrightTable)", shape=box, style=filled];
+"44d17e3e-f5c5-4b53-a312-c0d02971ae74" -> "9b359cea-13ba-4891-a728-2be9eb415bbe";
+"d17b6efc-c28f-4939-b386-e30532b523dc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d17b6efc-c28f-4939-b386-e30532b523dc";
+"3d069ed6-2539-4460-8113-0018fbda431d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"d17b6efc-c28f-4939-b386-e30532b523dc" -> "3d069ed6-2539-4460-8113-0018fbda431d";
+"4eda5fbf-3034-494b-b231-3024aae0ae81" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d17b6efc-c28f-4939-b386-e30532b523dc" -> "4eda5fbf-3034-494b-b231-3024aae0ae81";
+"a0196fe9-1aa0-41a9-871e-6be3e1b60d7d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"d17b6efc-c28f-4939-b386-e30532b523dc" -> "a0196fe9-1aa0-41a9-871e-6be3e1b60d7d";
+"e89f0df3-78c6-4b04-87e4-948a8ae19920" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d17b6efc-c28f-4939-b386-e30532b523dc" -> "e89f0df3-78c6-4b04-87e4-948a8ae19920";
+"76146617-91c4-42eb-ac43-1f2821586501" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,CoffeeTable)", shape=box, style=filled];
+"d17b6efc-c28f-4939-b386-e30532b523dc" -> "76146617-91c4-42eb-ac43-1f2821586501";
+"ac7b74b7-8ad1-4fcb-a121-1439c6564217" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ac7b74b7-8ad1-4fcb-a121-1439c6564217";
+"16226b97-f18f-4ec2-9a58-d3e6e76c1131" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"ac7b74b7-8ad1-4fcb-a121-1439c6564217" -> "16226b97-f18f-4ec2-9a58-d3e6e76c1131";
+"92c2e3e0-af40-4c34-a884-d07cc8ddf932" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ac7b74b7-8ad1-4fcb-a121-1439c6564217" -> "92c2e3e0-af40-4c34-a884-d07cc8ddf932";
+"0e576d3e-6b71-4b5d-86fd-63ef6e8b4bbf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"ac7b74b7-8ad1-4fcb-a121-1439c6564217" -> "0e576d3e-6b71-4b5d-86fd-63ef6e8b4bbf";
+"d83d0d5a-ac2d-4bb3-be4f-87eb6e2e2be9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ac7b74b7-8ad1-4fcb-a121-1439c6564217" -> "d83d0d5a-ac2d-4bb3-be4f-87eb6e2e2be9";
+"7913644d-a844-4efb-a3b4-b8179b4c9cd7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,CoffeeTable)", shape=box, style=filled];
+"ac7b74b7-8ad1-4fcb-a121-1439c6564217" -> "7913644d-a844-4efb-a3b4-b8179b4c9cd7";
+"f2f6ac7d-ea99-47e0-b06c-cef97d55f199" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f2f6ac7d-ea99-47e0-b06c-cef97d55f199";
+"22655187-24da-486e-9736-9ee51b713e35" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"f2f6ac7d-ea99-47e0-b06c-cef97d55f199" -> "22655187-24da-486e-9736-9ee51b713e35";
+"35a6e96b-64b4-4daf-af59-556dc252259a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f2f6ac7d-ea99-47e0-b06c-cef97d55f199" -> "35a6e96b-64b4-4daf-af59-556dc252259a";
+"3d6859cf-e1ef-4d6e-9583-7bb967ee7714" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f2f6ac7d-ea99-47e0-b06c-cef97d55f199" -> "3d6859cf-e1ef-4d6e-9583-7bb967ee7714";
+"c9df2bcf-5c2e-4ce6-a9b8-c8a3b0758155" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"f2f6ac7d-ea99-47e0-b06c-cef97d55f199" -> "c9df2bcf-5c2e-4ce6-a9b8-c8a3b0758155";
+"59e67492-ea7b-4f78-87d5-0cf36c531eac" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"f2f6ac7d-ea99-47e0-b06c-cef97d55f199" -> "59e67492-ea7b-4f78-87d5-0cf36c531eac";
+"7c2f8900-3f83-4279-b017-bab0b3694659" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7c2f8900-3f83-4279-b017-bab0b3694659";
+"f955bdd4-6fb6-4c6e-a522-7e006e9c91da" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"7c2f8900-3f83-4279-b017-bab0b3694659" -> "f955bdd4-6fb6-4c6e-a522-7e006e9c91da";
+"943db77e-bf1b-430d-99ab-07a19d5de26f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7c2f8900-3f83-4279-b017-bab0b3694659" -> "943db77e-bf1b-430d-99ab-07a19d5de26f";
+"b3075219-4db2-40bf-b26b-be3742af7d33" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7c2f8900-3f83-4279-b017-bab0b3694659" -> "b3075219-4db2-40bf-b26b-be3742af7d33";
+"c58c05e7-a68a-41a5-90e3-33e1fabeed43" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"7c2f8900-3f83-4279-b017-bab0b3694659" -> "c58c05e7-a68a-41a5-90e3-33e1fabeed43";
+"ef973e00-c4ee-4c13-8608-884df668cfb3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"7c2f8900-3f83-4279-b017-bab0b3694659" -> "ef973e00-c4ee-4c13-8608-884df668cfb3";
+"39ac37ec-c93d-4800-b933-dd4aa6f2e6dd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "39ac37ec-c93d-4800-b933-dd4aa6f2e6dd";
+"95e5cfe3-ff24-48eb-b324-d06b516cbab7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"39ac37ec-c93d-4800-b933-dd4aa6f2e6dd" -> "95e5cfe3-ff24-48eb-b324-d06b516cbab7";
+"3b6e654a-3746-4a43-8587-cd86d886fc66" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"39ac37ec-c93d-4800-b933-dd4aa6f2e6dd" -> "3b6e654a-3746-4a43-8587-cd86d886fc66";
+"2ee3f7f1-5224-4f5a-94ae-f5628c936be2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"39ac37ec-c93d-4800-b933-dd4aa6f2e6dd" -> "2ee3f7f1-5224-4f5a-94ae-f5628c936be2";
+"a4492932-07e6-4d98-af96-3b7ab527ffe2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"39ac37ec-c93d-4800-b933-dd4aa6f2e6dd" -> "a4492932-07e6-4d98-af96-3b7ab527ffe2";
+"7a999957-81f9-42fa-af73-381ea1bf803c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"39ac37ec-c93d-4800-b933-dd4aa6f2e6dd" -> "7a999957-81f9-42fa-af73-381ea1bf803c";
+"e61a3cff-0ebc-4a94-872f-4a02bd622ba7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e61a3cff-0ebc-4a94-872f-4a02bd622ba7";
+"6c974c2e-d53a-404f-8d52-a1e5ea43b7e1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"e61a3cff-0ebc-4a94-872f-4a02bd622ba7" -> "6c974c2e-d53a-404f-8d52-a1e5ea43b7e1";
+"ca09bac4-8ced-458a-8aaa-9492a5929a4e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e61a3cff-0ebc-4a94-872f-4a02bd622ba7" -> "ca09bac4-8ced-458a-8aaa-9492a5929a4e";
+"a3be3be2-6d61-406a-ba67-52adc96f5ab1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e61a3cff-0ebc-4a94-872f-4a02bd622ba7" -> "a3be3be2-6d61-406a-ba67-52adc96f5ab1";
+"48099eba-39e2-4e63-8c3a-1a2f7fd6588a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"e61a3cff-0ebc-4a94-872f-4a02bd622ba7" -> "48099eba-39e2-4e63-8c3a-1a2f7fd6588a";
+"61cd4dc6-4bd0-4ff2-8dbd-5859130847ca" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"e61a3cff-0ebc-4a94-872f-4a02bd622ba7" -> "61cd4dc6-4bd0-4ff2-8dbd-5859130847ca";
+"9b873706-be7a-491a-a9fe-3bb698b09896" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9b873706-be7a-491a-a9fe-3bb698b09896";
+"29806b87-6053-4e7e-91b3-dee3b1e8091f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"9b873706-be7a-491a-a9fe-3bb698b09896" -> "29806b87-6053-4e7e-91b3-dee3b1e8091f";
+"11f96f5a-7ac4-43e0-80bf-8659c90fa314" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9b873706-be7a-491a-a9fe-3bb698b09896" -> "11f96f5a-7ac4-43e0-80bf-8659c90fa314";
+"c7dc63bf-649f-434d-9a13-c303d21d52b8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9b873706-be7a-491a-a9fe-3bb698b09896" -> "c7dc63bf-649f-434d-9a13-c303d21d52b8";
+"bbd8bbc8-4686-4282-ae0f-93e4cafc6232" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"9b873706-be7a-491a-a9fe-3bb698b09896" -> "bbd8bbc8-4686-4282-ae0f-93e4cafc6232";
+"3b060950-c0b7-4aad-ad1f-e19476bff722" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"9b873706-be7a-491a-a9fe-3bb698b09896" -> "3b060950-c0b7-4aad-ad1f-e19476bff722";
+"250ba37b-98df-4ba1-8cbb-605b5c4e9c21" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "250ba37b-98df-4ba1-8cbb-605b5c4e9c21";
+"4581a1e5-1a48-461b-8f57-1d8255efbb86" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"250ba37b-98df-4ba1-8cbb-605b5c4e9c21" -> "4581a1e5-1a48-461b-8f57-1d8255efbb86";
+"9b024115-2d8c-46da-94eb-e3ebed50a2b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"250ba37b-98df-4ba1-8cbb-605b5c4e9c21" -> "9b024115-2d8c-46da-94eb-e3ebed50a2b5";
+"00a52d24-e6e6-4b7e-bb8a-012f9e2284cf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"250ba37b-98df-4ba1-8cbb-605b5c4e9c21" -> "00a52d24-e6e6-4b7e-bb8a-012f9e2284cf";
+"a46b19e6-f0c5-4111-97c9-8d7800d0e177" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"250ba37b-98df-4ba1-8cbb-605b5c4e9c21" -> "a46b19e6-f0c5-4111-97c9-8d7800d0e177";
+"1802acfd-39b4-4804-9b8f-4f07b608119d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Table)", shape=box, style=filled];
+"250ba37b-98df-4ba1-8cbb-605b5c4e9c21" -> "1802acfd-39b4-4804-9b8f-4f07b608119d";
+"dc770f05-7481-4dbe-b87b-9594cf8fcc6f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "dc770f05-7481-4dbe-b87b-9594cf8fcc6f";
+"492d20e5-6f83-4a14-8d6d-c506b9606667" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"dc770f05-7481-4dbe-b87b-9594cf8fcc6f" -> "492d20e5-6f83-4a14-8d6d-c506b9606667";
+"bb071d2d-56f5-4697-9bad-47f4583686c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"dc770f05-7481-4dbe-b87b-9594cf8fcc6f" -> "bb071d2d-56f5-4697-9bad-47f4583686c5";
+"b792ee4e-e06c-4830-aed3-48518c10fb3d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"dc770f05-7481-4dbe-b87b-9594cf8fcc6f" -> "b792ee4e-e06c-4830-aed3-48518c10fb3d";
+"1d49249a-9b09-4ddc-8033-1a4d16839556" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"dc770f05-7481-4dbe-b87b-9594cf8fcc6f" -> "1d49249a-9b09-4ddc-8033-1a4d16839556";
+"f4aa55fe-b718-49a4-92c6-5b3eec65c826" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,WaterTable)", shape=box, style=filled];
+"dc770f05-7481-4dbe-b87b-9594cf8fcc6f" -> "f4aa55fe-b718-49a4-92c6-5b3eec65c826";
+"8e4b7656-6302-4047-9a8a-0f4b8f61681f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8e4b7656-6302-4047-9a8a-0f4b8f61681f";
+"ca858fbe-737f-4046-b9a2-d41d5958310e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"8e4b7656-6302-4047-9a8a-0f4b8f61681f" -> "ca858fbe-737f-4046-b9a2-d41d5958310e";
+"67c034c2-d4eb-4dc2-bdc3-f5d3d8bb48f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8e4b7656-6302-4047-9a8a-0f4b8f61681f" -> "67c034c2-d4eb-4dc2-bdc3-f5d3d8bb48f6";
+"2748840e-599f-436d-8652-38baee96c9a2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"8e4b7656-6302-4047-9a8a-0f4b8f61681f" -> "2748840e-599f-436d-8652-38baee96c9a2";
+"a5e27b7a-4993-415f-9689-2b577e6a8550" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8e4b7656-6302-4047-9a8a-0f4b8f61681f" -> "a5e27b7a-4993-415f-9689-2b577e6a8550";
+"c8d38857-9576-4a9d-adaa-315ef83910c7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,WaterTable)", shape=box, style=filled];
+"8e4b7656-6302-4047-9a8a-0f4b8f61681f" -> "c8d38857-9576-4a9d-adaa-315ef83910c7";
+"e281f3b4-29a1-48e6-b0ed-2c593723907e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e281f3b4-29a1-48e6-b0ed-2c593723907e";
+"d0644936-99e8-4dd8-80ed-e0f9efe32e82" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"e281f3b4-29a1-48e6-b0ed-2c593723907e" -> "d0644936-99e8-4dd8-80ed-e0f9efe32e82";
+"5436767b-42d6-4ba4-b1b8-baaab2c9c460" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e281f3b4-29a1-48e6-b0ed-2c593723907e" -> "5436767b-42d6-4ba4-b1b8-baaab2c9c460";
+"49c9de2a-0941-40bf-bbf4-355bdf065e6c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e281f3b4-29a1-48e6-b0ed-2c593723907e" -> "49c9de2a-0941-40bf-bbf4-355bdf065e6c";
+"9e81c74d-8c8a-4a46-84aa-85e5187129e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"e281f3b4-29a1-48e6-b0ed-2c593723907e" -> "9e81c74d-8c8a-4a46-84aa-85e5187129e2";
+"4be0f9c6-2be7-422f-b6a5-2b7d1df6f1bd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"e281f3b4-29a1-48e6-b0ed-2c593723907e" -> "4be0f9c6-2be7-422f-b6a5-2b7d1df6f1bd";
+"7cf58686-cf8e-4ea5-a8a2-0fa76e683d76" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7cf58686-cf8e-4ea5-a8a2-0fa76e683d76";
+"859941b3-372c-4039-a33c-cc7538787c71" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"7cf58686-cf8e-4ea5-a8a2-0fa76e683d76" -> "859941b3-372c-4039-a33c-cc7538787c71";
+"1602b595-d09f-40e6-8522-b1fea5f0285b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7cf58686-cf8e-4ea5-a8a2-0fa76e683d76" -> "1602b595-d09f-40e6-8522-b1fea5f0285b";
+"ae9d48b2-c575-43d8-a3ad-52b64a50d248" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7cf58686-cf8e-4ea5-a8a2-0fa76e683d76" -> "ae9d48b2-c575-43d8-a3ad-52b64a50d248";
+"ca1e4721-baac-48b1-af69-5e3465ac5b98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"7cf58686-cf8e-4ea5-a8a2-0fa76e683d76" -> "ca1e4721-baac-48b1-af69-5e3465ac5b98";
+"37242322-ed45-431d-bb7f-a7a737e185cf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"7cf58686-cf8e-4ea5-a8a2-0fa76e683d76" -> "37242322-ed45-431d-bb7f-a7a737e185cf";
+"59b401e8-7a35-4ee2-ac6b-89d39ba7a13a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "59b401e8-7a35-4ee2-ac6b-89d39ba7a13a";
+"e7063c89-519a-4097-ada9-e55c7a879483" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"59b401e8-7a35-4ee2-ac6b-89d39ba7a13a" -> "e7063c89-519a-4097-ada9-e55c7a879483";
+"d134db5d-5022-4afa-8a9b-5f02b295ebb3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"59b401e8-7a35-4ee2-ac6b-89d39ba7a13a" -> "d134db5d-5022-4afa-8a9b-5f02b295ebb3";
+"e2ff408c-f4ce-4c6e-9218-96eafd24cb46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"59b401e8-7a35-4ee2-ac6b-89d39ba7a13a" -> "e2ff408c-f4ce-4c6e-9218-96eafd24cb46";
+"cb840986-1aed-4e21-bb0a-b28a159851a2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"59b401e8-7a35-4ee2-ac6b-89d39ba7a13a" -> "cb840986-1aed-4e21-bb0a-b28a159851a2";
+"2e6b4ef9-d195-442b-8437-ae5f46bc62d7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2e6b4ef9-d195-442b-8437-ae5f46bc62d7";
+"12870a89-aa91-4b19-86dd-dcf4d474c5f1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"2e6b4ef9-d195-442b-8437-ae5f46bc62d7" -> "12870a89-aa91-4b19-86dd-dcf4d474c5f1";
+"78c34afe-b600-40c6-bbad-8119dc9d1088" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2e6b4ef9-d195-442b-8437-ae5f46bc62d7" -> "78c34afe-b600-40c6-bbad-8119dc9d1088";
+"7fbaa595-99ee-415c-af4e-7f740071d109" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2e6b4ef9-d195-442b-8437-ae5f46bc62d7" -> "7fbaa595-99ee-415c-af4e-7f740071d109";
+"82eb2eac-c2bd-4c4d-a2b4-2e013345bea9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"2e6b4ef9-d195-442b-8437-ae5f46bc62d7" -> "82eb2eac-c2bd-4c4d-a2b4-2e013345bea9";
+"2f2ea6a1-1420-4884-8628-5acb51669a49" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2f2ea6a1-1420-4884-8628-5acb51669a49";
+"3e175c68-0d51-44a3-aeb0-1cd024816ab9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"2f2ea6a1-1420-4884-8628-5acb51669a49" -> "3e175c68-0d51-44a3-aeb0-1cd024816ab9";
+"0543ebfd-2985-4ea6-9362-0d3a0537506e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2f2ea6a1-1420-4884-8628-5acb51669a49" -> "0543ebfd-2985-4ea6-9362-0d3a0537506e";
+"e4295e11-8520-447a-82c1-537c8923ebd7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2f2ea6a1-1420-4884-8628-5acb51669a49" -> "e4295e11-8520-447a-82c1-537c8923ebd7";
+"e686d9c0-40b4-43eb-84d7-b148f5558c5d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2f2ea6a1-1420-4884-8628-5acb51669a49" -> "e686d9c0-40b4-43eb-84d7-b148f5558c5d";
+"1440677f-404a-45f2-9f30-598c594caee4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,BrightTable)", shape=box, style=filled];
+"2f2ea6a1-1420-4884-8628-5acb51669a49" -> "1440677f-404a-45f2-9f30-598c594caee4";
+"6b9919e4-5aac-4629-832b-62cfe44e9fc9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6b9919e4-5aac-4629-832b-62cfe44e9fc9";
+"09ec061d-67c4-49a8-bffb-0e550c49c77a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"6b9919e4-5aac-4629-832b-62cfe44e9fc9" -> "09ec061d-67c4-49a8-bffb-0e550c49c77a";
+"ecce104a-53e9-4398-b3c4-e8d98ad38f8b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"6b9919e4-5aac-4629-832b-62cfe44e9fc9" -> "ecce104a-53e9-4398-b3c4-e8d98ad38f8b";
+"a301249e-5b23-48f6-b262-1a72a828e2a7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6b9919e4-5aac-4629-832b-62cfe44e9fc9" -> "a301249e-5b23-48f6-b262-1a72a828e2a7";
+"ac06f1e1-7135-43d8-a594-2def36c40326" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6b9919e4-5aac-4629-832b-62cfe44e9fc9" -> "ac06f1e1-7135-43d8-a594-2def36c40326";
+"1991f33f-b49e-48a5-ae78-3dcc29234970" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,BrightTable)", shape=box, style=filled];
+"6b9919e4-5aac-4629-832b-62cfe44e9fc9" -> "1991f33f-b49e-48a5-ae78-3dcc29234970";
+"7b5f9a6b-65df-44d6-b845-7f6cb092a3b1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7b5f9a6b-65df-44d6-b845-7f6cb092a3b1";
+"594cd0eb-aa4d-4a2b-ac87-e5789900ef00" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"7b5f9a6b-65df-44d6-b845-7f6cb092a3b1" -> "594cd0eb-aa4d-4a2b-ac87-e5789900ef00";
+"daae34d7-2f8d-49e7-9b48-1428707825bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7b5f9a6b-65df-44d6-b845-7f6cb092a3b1" -> "daae34d7-2f8d-49e7-9b48-1428707825bd";
+"3391d709-6af1-44da-a48e-3e093083d5b0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"7b5f9a6b-65df-44d6-b845-7f6cb092a3b1" -> "3391d709-6af1-44da-a48e-3e093083d5b0";
+"2105fa5e-0117-4205-9de1-8f4f07a84a24" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7b5f9a6b-65df-44d6-b845-7f6cb092a3b1" -> "2105fa5e-0117-4205-9de1-8f4f07a84a24";
+"b5687ccc-6592-4fae-abe7-85df1be14fd3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"7b5f9a6b-65df-44d6-b845-7f6cb092a3b1" -> "b5687ccc-6592-4fae-abe7-85df1be14fd3";
+"9987583f-b565-47dd-8161-418366745ad1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9987583f-b565-47dd-8161-418366745ad1";
+"db551e21-f2f9-4d65-b56e-a0e7d4a7b39e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"9987583f-b565-47dd-8161-418366745ad1" -> "db551e21-f2f9-4d65-b56e-a0e7d4a7b39e";
+"5b98133d-dad8-4e7d-97ee-66fc2a7cbb86" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9987583f-b565-47dd-8161-418366745ad1" -> "5b98133d-dad8-4e7d-97ee-66fc2a7cbb86";
+"13175063-6f23-46fc-84f3-9f30b0b64606" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"9987583f-b565-47dd-8161-418366745ad1" -> "13175063-6f23-46fc-84f3-9f30b0b64606";
+"f701df7e-af1d-438f-b524-84b95b88842f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9987583f-b565-47dd-8161-418366745ad1" -> "f701df7e-af1d-438f-b524-84b95b88842f";
+"e67c7c9f-9489-4ad0-ad67-5e8d37806e60" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,CoffeeTable)", shape=box, style=filled];
+"9987583f-b565-47dd-8161-418366745ad1" -> "e67c7c9f-9489-4ad0-ad67-5e8d37806e60";
+"b55788de-1116-48e5-9e5b-e98a6045c4cb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "b55788de-1116-48e5-9e5b-e98a6045c4cb";
+"d8598671-7ec2-4a72-a61c-744b3cff1f08" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"b55788de-1116-48e5-9e5b-e98a6045c4cb" -> "d8598671-7ec2-4a72-a61c-744b3cff1f08";
+"4f0d29a9-6baa-487f-8bde-a4f99849d70d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b55788de-1116-48e5-9e5b-e98a6045c4cb" -> "4f0d29a9-6baa-487f-8bde-a4f99849d70d";
+"88904dcd-c0ec-4e9f-a04e-c3d53988bd18" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b55788de-1116-48e5-9e5b-e98a6045c4cb" -> "88904dcd-c0ec-4e9f-a04e-c3d53988bd18";
+"47718312-cf7e-4c86-a36f-6361220b38fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"b55788de-1116-48e5-9e5b-e98a6045c4cb" -> "47718312-cf7e-4c86-a36f-6361220b38fa";
+"b9f0c78a-3fdf-4134-8df7-c62d9671daa5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"b55788de-1116-48e5-9e5b-e98a6045c4cb" -> "b9f0c78a-3fdf-4134-8df7-c62d9671daa5";
+"935994b4-413a-418f-83e9-c656366952ac" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "935994b4-413a-418f-83e9-c656366952ac";
+"045952a7-e566-4c3f-b8e7-231643ee08c5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"935994b4-413a-418f-83e9-c656366952ac" -> "045952a7-e566-4c3f-b8e7-231643ee08c5";
+"e1d1199a-25ee-4f50-be4d-a6757a74cd20" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"935994b4-413a-418f-83e9-c656366952ac" -> "e1d1199a-25ee-4f50-be4d-a6757a74cd20";
+"8ff5a707-d3ca-4087-b57a-ffd6ea4a6b6f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"935994b4-413a-418f-83e9-c656366952ac" -> "8ff5a707-d3ca-4087-b57a-ffd6ea4a6b6f";
+"11a2f7be-1ebe-4ff2-9c10-bfedf262a020" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"935994b4-413a-418f-83e9-c656366952ac" -> "11a2f7be-1ebe-4ff2-9c10-bfedf262a020";
+"8d9b164a-d086-43ce-9d16-c223028da38a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"935994b4-413a-418f-83e9-c656366952ac" -> "8d9b164a-d086-43ce-9d16-c223028da38a";
+"48f6ccba-d0fc-4d94-a357-b13d65ff2528" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "48f6ccba-d0fc-4d94-a357-b13d65ff2528";
+"de1601ab-8b4d-4b58-a05a-1c572adb2542" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"48f6ccba-d0fc-4d94-a357-b13d65ff2528" -> "de1601ab-8b4d-4b58-a05a-1c572adb2542";
+"56dfc89a-6bd8-4862-959c-52d7268c1f14" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"48f6ccba-d0fc-4d94-a357-b13d65ff2528" -> "56dfc89a-6bd8-4862-959c-52d7268c1f14";
+"08cf948d-492c-4d4c-bac0-b1103a74fe04" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"48f6ccba-d0fc-4d94-a357-b13d65ff2528" -> "08cf948d-492c-4d4c-bac0-b1103a74fe04";
+"6b8f777e-255a-43ad-8972-7659802ebc9c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"48f6ccba-d0fc-4d94-a357-b13d65ff2528" -> "6b8f777e-255a-43ad-8972-7659802ebc9c";
+"a24a98c5-96f6-4bde-8c29-b4374200624d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"48f6ccba-d0fc-4d94-a357-b13d65ff2528" -> "a24a98c5-96f6-4bde-8c29-b4374200624d";
+"9338fa9c-c0fc-4cbd-9b0f-4229d3e2c940" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9338fa9c-c0fc-4cbd-9b0f-4229d3e2c940";
+"fd0a2156-4c39-4f87-8121-2ae4b9607fc6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"9338fa9c-c0fc-4cbd-9b0f-4229d3e2c940" -> "fd0a2156-4c39-4f87-8121-2ae4b9607fc6";
+"0c58f974-c456-46e7-bfa2-4c0bdec8464b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9338fa9c-c0fc-4cbd-9b0f-4229d3e2c940" -> "0c58f974-c456-46e7-bfa2-4c0bdec8464b";
+"1314d863-d129-4edd-af11-d96c252b50c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9338fa9c-c0fc-4cbd-9b0f-4229d3e2c940" -> "1314d863-d129-4edd-af11-d96c252b50c9";
+"cd06c2c2-4d1d-4442-8e8d-b2d8291cdd8f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"9338fa9c-c0fc-4cbd-9b0f-4229d3e2c940" -> "cd06c2c2-4d1d-4442-8e8d-b2d8291cdd8f";
+"2e8a6e95-1825-4ec6-a04e-af19669e5b7a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"9338fa9c-c0fc-4cbd-9b0f-4229d3e2c940" -> "2e8a6e95-1825-4ec6-a04e-af19669e5b7a";
+"166bb4c7-0ab4-4185-8750-e83420d6d50d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "166bb4c7-0ab4-4185-8750-e83420d6d50d";
+"6c15e87e-2a48-4a2a-9c8d-0fa750471602" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"166bb4c7-0ab4-4185-8750-e83420d6d50d" -> "6c15e87e-2a48-4a2a-9c8d-0fa750471602";
+"eae0aca3-a1f7-4679-86c4-671eb0e12432" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"166bb4c7-0ab4-4185-8750-e83420d6d50d" -> "eae0aca3-a1f7-4679-86c4-671eb0e12432";
+"2c287deb-99de-4c46-a98b-0c4715b6758e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"166bb4c7-0ab4-4185-8750-e83420d6d50d" -> "2c287deb-99de-4c46-a98b-0c4715b6758e";
+"f5759d7b-ba1e-4eff-b8a6-e698f99b8230" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"166bb4c7-0ab4-4185-8750-e83420d6d50d" -> "f5759d7b-ba1e-4eff-b8a6-e698f99b8230";
+"b5280704-68c5-40e8-a46c-98066e2d8d6b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"166bb4c7-0ab4-4185-8750-e83420d6d50d" -> "b5280704-68c5-40e8-a46c-98066e2d8d6b";
+"248df87e-f34f-4182-9c5a-e4d982a77b69" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "248df87e-f34f-4182-9c5a-e4d982a77b69";
+"d6100c1b-619b-40c2-92f0-dbf1816fb420" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"248df87e-f34f-4182-9c5a-e4d982a77b69" -> "d6100c1b-619b-40c2-92f0-dbf1816fb420";
+"32f914dc-aa60-4eb7-9e34-73f9a2acde58" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"248df87e-f34f-4182-9c5a-e4d982a77b69" -> "32f914dc-aa60-4eb7-9e34-73f9a2acde58";
+"5ec0f2f9-faf3-466d-96a4-10389685dba2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"248df87e-f34f-4182-9c5a-e4d982a77b69" -> "5ec0f2f9-faf3-466d-96a4-10389685dba2";
+"72878e6a-4357-47cb-85eb-e5c2cf09ff0d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"248df87e-f34f-4182-9c5a-e4d982a77b69" -> "72878e6a-4357-47cb-85eb-e5c2cf09ff0d";
+"070d5ada-8b1f-47ec-93af-bca4b0e16faa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Table)", shape=box, style=filled];
+"248df87e-f34f-4182-9c5a-e4d982a77b69" -> "070d5ada-8b1f-47ec-93af-bca4b0e16faa";
+"21cabfb2-d2ab-44cb-b445-7f0d472a7388" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "21cabfb2-d2ab-44cb-b445-7f0d472a7388";
+"f9b0dd62-3318-4d21-b8de-f4c3fc59246a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"21cabfb2-d2ab-44cb-b445-7f0d472a7388" -> "f9b0dd62-3318-4d21-b8de-f4c3fc59246a";
+"59f10c79-50c7-4999-a92b-fa75eeafe222" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"21cabfb2-d2ab-44cb-b445-7f0d472a7388" -> "59f10c79-50c7-4999-a92b-fa75eeafe222";
+"95799546-55df-4551-8bf0-8375beccdc4b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"21cabfb2-d2ab-44cb-b445-7f0d472a7388" -> "95799546-55df-4551-8bf0-8375beccdc4b";
+"8a01d84d-0a85-4fc2-be29-26c76522b37c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"21cabfb2-d2ab-44cb-b445-7f0d472a7388" -> "8a01d84d-0a85-4fc2-be29-26c76522b37c";
+"4eda4936-4f57-4d3e-8a0f-d75b82448c9a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"21cabfb2-d2ab-44cb-b445-7f0d472a7388" -> "4eda4936-4f57-4d3e-8a0f-d75b82448c9a";
+"e9d0b2ed-16ef-42c4-8deb-664a9342205f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e9d0b2ed-16ef-42c4-8deb-664a9342205f";
+"b2aa9985-cb1a-41ac-9d92-de8953733f8f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"e9d0b2ed-16ef-42c4-8deb-664a9342205f" -> "b2aa9985-cb1a-41ac-9d92-de8953733f8f";
+"1535ef9c-a0f0-4755-a396-5654e2a58b98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e9d0b2ed-16ef-42c4-8deb-664a9342205f" -> "1535ef9c-a0f0-4755-a396-5654e2a58b98";
+"0b478723-6f78-4556-bcdd-ff931baa29a5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"e9d0b2ed-16ef-42c4-8deb-664a9342205f" -> "0b478723-6f78-4556-bcdd-ff931baa29a5";
+"56e9f315-3f76-429e-8a09-a597db928105" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e9d0b2ed-16ef-42c4-8deb-664a9342205f" -> "56e9f315-3f76-429e-8a09-a597db928105";
+"87f843bd-c636-4cbf-bca9-92409c75a0e2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,WaterTable)", shape=box, style=filled];
+"e9d0b2ed-16ef-42c4-8deb-664a9342205f" -> "87f843bd-c636-4cbf-bca9-92409c75a0e2";
+"4bb8068f-4e67-452e-8ecb-4820b09129c1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "4bb8068f-4e67-452e-8ecb-4820b09129c1";
+"6b748a6b-47b1-4f47-948d-56507b232f2b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"4bb8068f-4e67-452e-8ecb-4820b09129c1" -> "6b748a6b-47b1-4f47-948d-56507b232f2b";
+"c503ce13-4658-457d-aeee-a20f5d246215" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4bb8068f-4e67-452e-8ecb-4820b09129c1" -> "c503ce13-4658-457d-aeee-a20f5d246215";
+"c640e958-ce6e-4f6f-9b57-54dd40052f59" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4bb8068f-4e67-452e-8ecb-4820b09129c1" -> "c640e958-ce6e-4f6f-9b57-54dd40052f59";
+"ac3504a2-9073-4207-bf08-1df7c321d95b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"4bb8068f-4e67-452e-8ecb-4820b09129c1" -> "ac3504a2-9073-4207-bf08-1df7c321d95b";
+"4bda56eb-9e1e-4f12-92d1-ff94ea1d8971" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"4bb8068f-4e67-452e-8ecb-4820b09129c1" -> "4bda56eb-9e1e-4f12-92d1-ff94ea1d8971";
+"d6de8af5-b063-4151-8a39-7500e2e6dd6e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d6de8af5-b063-4151-8a39-7500e2e6dd6e";
+"9bddc67b-b891-4b1b-b39c-5faa46f93aca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"d6de8af5-b063-4151-8a39-7500e2e6dd6e" -> "9bddc67b-b891-4b1b-b39c-5faa46f93aca";
+"d738d803-a294-4d12-99c8-22f13cc7fa4e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d6de8af5-b063-4151-8a39-7500e2e6dd6e" -> "d738d803-a294-4d12-99c8-22f13cc7fa4e";
+"d387f134-72f9-4f9c-b04c-b28c769de557" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d6de8af5-b063-4151-8a39-7500e2e6dd6e" -> "d387f134-72f9-4f9c-b04c-b28c769de557";
+"f0d65fcc-b730-42e9-a9cb-792bae298098" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"d6de8af5-b063-4151-8a39-7500e2e6dd6e" -> "f0d65fcc-b730-42e9-a9cb-792bae298098";
+"b8918439-4d29-4e2d-b5a1-845ffafd3df1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"d6de8af5-b063-4151-8a39-7500e2e6dd6e" -> "b8918439-4d29-4e2d-b5a1-845ffafd3df1";
+"99d45dd0-a908-49e3-96d7-bf566d87f3db" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "99d45dd0-a908-49e3-96d7-bf566d87f3db";
+"c64c864d-1f90-4f0f-8a65-37443b21a42b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"99d45dd0-a908-49e3-96d7-bf566d87f3db" -> "c64c864d-1f90-4f0f-8a65-37443b21a42b";
+"c58b4609-85f8-40d8-b34d-76364abb1c10" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"99d45dd0-a908-49e3-96d7-bf566d87f3db" -> "c58b4609-85f8-40d8-b34d-76364abb1c10";
+"8e7c925c-1b83-4980-bf79-4f53db849e30" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"99d45dd0-a908-49e3-96d7-bf566d87f3db" -> "8e7c925c-1b83-4980-bf79-4f53db849e30";
+"2dcd1646-27fe-4a48-829a-8f4f6695672a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"99d45dd0-a908-49e3-96d7-bf566d87f3db" -> "2dcd1646-27fe-4a48-829a-8f4f6695672a";
+"43af8175-bad4-49c8-af7c-b47502052f29" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "43af8175-bad4-49c8-af7c-b47502052f29";
+"dfdf489b-3b95-4771-a155-e834f30963d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"43af8175-bad4-49c8-af7c-b47502052f29" -> "dfdf489b-3b95-4771-a155-e834f30963d9";
+"ab37fb33-1bc5-4dbf-b2ac-0d7a9f20d129" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"43af8175-bad4-49c8-af7c-b47502052f29" -> "ab37fb33-1bc5-4dbf-b2ac-0d7a9f20d129";
+"b6f1e3fa-4f5e-4e66-ac40-ef50f0f8d755" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"43af8175-bad4-49c8-af7c-b47502052f29" -> "b6f1e3fa-4f5e-4e66-ac40-ef50f0f8d755";
+"5d5b4cdc-22ab-4ba9-b517-5ac5521d13aa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"43af8175-bad4-49c8-af7c-b47502052f29" -> "5d5b4cdc-22ab-4ba9-b517-5ac5521d13aa";
+"a0667d45-2585-4c74-b155-2a1dc0d4e7e0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a0667d45-2585-4c74-b155-2a1dc0d4e7e0";
+"38048899-a418-4171-8164-134fcef6a0a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"a0667d45-2585-4c74-b155-2a1dc0d4e7e0" -> "38048899-a418-4171-8164-134fcef6a0a3";
+"96d72e55-fdc1-41a1-a17c-7e06679e42d7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a0667d45-2585-4c74-b155-2a1dc0d4e7e0" -> "96d72e55-fdc1-41a1-a17c-7e06679e42d7";
+"4ded2cb8-300c-4e2b-a59a-ee3422615c64" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a0667d45-2585-4c74-b155-2a1dc0d4e7e0" -> "4ded2cb8-300c-4e2b-a59a-ee3422615c64";
+"94950e53-aa24-4415-80bb-5aec07ac7119" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"a0667d45-2585-4c74-b155-2a1dc0d4e7e0" -> "94950e53-aa24-4415-80bb-5aec07ac7119";
+"f2aedadf-e3f7-4ca9-ae49-318fbc5c7937" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,BrightTable)", shape=box, style=filled];
+"a0667d45-2585-4c74-b155-2a1dc0d4e7e0" -> "f2aedadf-e3f7-4ca9-ae49-318fbc5c7937";
+"6e018610-3c71-4bfb-a3b4-67d79ef7e12a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6e018610-3c71-4bfb-a3b4-67d79ef7e12a";
+"e176d03e-8613-4b92-a6ab-b016a228b3f5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"6e018610-3c71-4bfb-a3b4-67d79ef7e12a" -> "e176d03e-8613-4b92-a6ab-b016a228b3f5";
+"49c8eca6-fe25-4940-ba71-0a5f42a60303" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6e018610-3c71-4bfb-a3b4-67d79ef7e12a" -> "49c8eca6-fe25-4940-ba71-0a5f42a60303";
+"0b727836-c870-42f8-bbb9-5c7f280da2bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6e018610-3c71-4bfb-a3b4-67d79ef7e12a" -> "0b727836-c870-42f8-bbb9-5c7f280da2bd";
+"f5810749-076f-4276-8826-c18c543fd120" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"6e018610-3c71-4bfb-a3b4-67d79ef7e12a" -> "f5810749-076f-4276-8826-c18c543fd120";
+"7540dd0a-973e-4d27-b351-94a55083fb44" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,BrightTable)", shape=box, style=filled];
+"6e018610-3c71-4bfb-a3b4-67d79ef7e12a" -> "7540dd0a-973e-4d27-b351-94a55083fb44";
+"62afd6ea-bd37-4d97-a718-9b6bb322aee0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "62afd6ea-bd37-4d97-a718-9b6bb322aee0";
+"41c24bc5-110f-4c1d-9a9f-2631da3ef795" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"62afd6ea-bd37-4d97-a718-9b6bb322aee0" -> "41c24bc5-110f-4c1d-9a9f-2631da3ef795";
+"e8d2a44f-f0ce-4ba1-9be3-f37569a0de98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"62afd6ea-bd37-4d97-a718-9b6bb322aee0" -> "e8d2a44f-f0ce-4ba1-9be3-f37569a0de98";
+"ec684e26-71c0-4f84-b629-afc5b8cc4dc4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"62afd6ea-bd37-4d97-a718-9b6bb322aee0" -> "ec684e26-71c0-4f84-b629-afc5b8cc4dc4";
+"2816d458-8da6-4158-b4c1-da889e73c715" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"62afd6ea-bd37-4d97-a718-9b6bb322aee0" -> "2816d458-8da6-4158-b4c1-da889e73c715";
+"bc56cdcf-f299-4106-90ec-ac69b18f4cd3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,CoffeeTable)", shape=box, style=filled];
+"62afd6ea-bd37-4d97-a718-9b6bb322aee0" -> "bc56cdcf-f299-4106-90ec-ac69b18f4cd3";
+"12299d10-cd11-4d86-9ced-3edd884af180" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "12299d10-cd11-4d86-9ced-3edd884af180";
+"ba1b1c81-ac95-4ab8-a05c-92e088217359" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"12299d10-cd11-4d86-9ced-3edd884af180" -> "ba1b1c81-ac95-4ab8-a05c-92e088217359";
+"d88be949-995a-4a63-9ef9-cfb38a00bb4b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"12299d10-cd11-4d86-9ced-3edd884af180" -> "d88be949-995a-4a63-9ef9-cfb38a00bb4b";
+"e68f2673-08d8-41ab-a9d9-bce6fde9653d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"12299d10-cd11-4d86-9ced-3edd884af180" -> "e68f2673-08d8-41ab-a9d9-bce6fde9653d";
+"838f0344-f72e-4d51-9157-cc29bf4009b0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"12299d10-cd11-4d86-9ced-3edd884af180" -> "838f0344-f72e-4d51-9157-cc29bf4009b0";
+"4b632f2c-a083-4de9-8851-0e8fbb08dd60" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,CoffeeTable)", shape=box, style=filled];
+"12299d10-cd11-4d86-9ced-3edd884af180" -> "4b632f2c-a083-4de9-8851-0e8fbb08dd60";
+"5385363c-64c6-4dc8-8529-344fabe67317" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "5385363c-64c6-4dc8-8529-344fabe67317";
+"c10f116b-ecf7-4750-a72f-1ec66318139d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5385363c-64c6-4dc8-8529-344fabe67317" -> "c10f116b-ecf7-4750-a72f-1ec66318139d";
+"7d9b33da-c2cb-4ec8-9935-5f060a468065" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5385363c-64c6-4dc8-8529-344fabe67317" -> "7d9b33da-c2cb-4ec8-9935-5f060a468065";
+"7d869b12-2c84-4821-8100-2b9f051760f8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"5385363c-64c6-4dc8-8529-344fabe67317" -> "7d869b12-2c84-4821-8100-2b9f051760f8";
+"327987d2-3991-4c80-ad37-f0b56c00a945" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"5385363c-64c6-4dc8-8529-344fabe67317" -> "327987d2-3991-4c80-ad37-f0b56c00a945";
+"760fc1b7-55e0-4304-bc13-f5fb194e02bf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"5385363c-64c6-4dc8-8529-344fabe67317" -> "760fc1b7-55e0-4304-bc13-f5fb194e02bf";
+"d41987b8-fa13-4b56-ba3d-0a6fa7683cb1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d41987b8-fa13-4b56-ba3d-0a6fa7683cb1";
+"5e9046a1-a3cc-4990-a999-20ffe4a9a616" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d41987b8-fa13-4b56-ba3d-0a6fa7683cb1" -> "5e9046a1-a3cc-4990-a999-20ffe4a9a616";
+"0ca38809-02d2-4943-9f4c-6f6a0b594947" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d41987b8-fa13-4b56-ba3d-0a6fa7683cb1" -> "0ca38809-02d2-4943-9f4c-6f6a0b594947";
+"ec7fa1f1-0ec0-4cd2-9e04-f71e2b6bd8df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"d41987b8-fa13-4b56-ba3d-0a6fa7683cb1" -> "ec7fa1f1-0ec0-4cd2-9e04-f71e2b6bd8df";
+"9c5a9a45-ebde-4a47-95e0-69c50d198d92" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"d41987b8-fa13-4b56-ba3d-0a6fa7683cb1" -> "9c5a9a45-ebde-4a47-95e0-69c50d198d92";
+"8dc3e371-ef16-496f-853d-376282bc2261" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"d41987b8-fa13-4b56-ba3d-0a6fa7683cb1" -> "8dc3e371-ef16-496f-853d-376282bc2261";
+"8d42ec7f-6e6b-4377-b581-b79dbd1c779d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8d42ec7f-6e6b-4377-b581-b79dbd1c779d";
+"aba73af9-16d9-4b94-b724-a85b30c0cc36" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8d42ec7f-6e6b-4377-b581-b79dbd1c779d" -> "aba73af9-16d9-4b94-b724-a85b30c0cc36";
+"70b108eb-adb5-4718-840f-d74842c51c35" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8d42ec7f-6e6b-4377-b581-b79dbd1c779d" -> "70b108eb-adb5-4718-840f-d74842c51c35";
+"290a4645-3640-406e-807d-bfb0625d401d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"8d42ec7f-6e6b-4377-b581-b79dbd1c779d" -> "290a4645-3640-406e-807d-bfb0625d401d";
+"dfdea406-b866-42f4-818f-7be92fb67f6a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"8d42ec7f-6e6b-4377-b581-b79dbd1c779d" -> "dfdea406-b866-42f4-818f-7be92fb67f6a";
+"557b13a6-7c10-44f7-9809-79813e4529d1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"8d42ec7f-6e6b-4377-b581-b79dbd1c779d" -> "557b13a6-7c10-44f7-9809-79813e4529d1";
+"4919e1fc-a716-4bfe-9e4f-75d01acc5195" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "4919e1fc-a716-4bfe-9e4f-75d01acc5195";
+"a8fd6f56-cc03-4330-9b9c-1bb8cd8d8e2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4919e1fc-a716-4bfe-9e4f-75d01acc5195" -> "a8fd6f56-cc03-4330-9b9c-1bb8cd8d8e2d";
+"39da911f-cf5d-49c6-b390-b3b1045ff275" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4919e1fc-a716-4bfe-9e4f-75d01acc5195" -> "39da911f-cf5d-49c6-b390-b3b1045ff275";
+"1cc875c0-c7a4-4a67-93e3-c39cb2e256b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"4919e1fc-a716-4bfe-9e4f-75d01acc5195" -> "1cc875c0-c7a4-4a67-93e3-c39cb2e256b3";
+"c83a79e9-2635-4c6f-ac60-8f09de34003c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"4919e1fc-a716-4bfe-9e4f-75d01acc5195" -> "c83a79e9-2635-4c6f-ac60-8f09de34003c";
+"953b0f48-b933-4e3c-b09c-2963474dc8ac" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"4919e1fc-a716-4bfe-9e4f-75d01acc5195" -> "953b0f48-b933-4e3c-b09c-2963474dc8ac";
+"c0e4edc7-3ac9-49cc-b09e-9b4400ee1abb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "c0e4edc7-3ac9-49cc-b09e-9b4400ee1abb";
+"91354a36-6010-4bef-9f21-47b5f8a5ff7b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c0e4edc7-3ac9-49cc-b09e-9b4400ee1abb" -> "91354a36-6010-4bef-9f21-47b5f8a5ff7b";
+"3cc3fdb5-0961-47d0-b454-83c59086ee63" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c0e4edc7-3ac9-49cc-b09e-9b4400ee1abb" -> "3cc3fdb5-0961-47d0-b454-83c59086ee63";
+"a1a7f089-b1c3-4502-82da-8b0c6641b922" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"c0e4edc7-3ac9-49cc-b09e-9b4400ee1abb" -> "a1a7f089-b1c3-4502-82da-8b0c6641b922";
+"a9d402e1-0a0b-4c02-afca-efcb428b1e3c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"c0e4edc7-3ac9-49cc-b09e-9b4400ee1abb" -> "a9d402e1-0a0b-4c02-afca-efcb428b1e3c";
+"02559e5e-6b96-4e7c-a44b-e261d70be908" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"c0e4edc7-3ac9-49cc-b09e-9b4400ee1abb" -> "02559e5e-6b96-4e7c-a44b-e261d70be908";
+"5ea41751-8738-45f9-a13c-bf3715a503d6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "5ea41751-8738-45f9-a13c-bf3715a503d6";
+"1c4db08b-d21e-488c-8498-a3b294f1e6c6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5ea41751-8738-45f9-a13c-bf3715a503d6" -> "1c4db08b-d21e-488c-8498-a3b294f1e6c6";
+"57ac74a1-7771-4ed2-8c10-03d7c7a9d042" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5ea41751-8738-45f9-a13c-bf3715a503d6" -> "57ac74a1-7771-4ed2-8c10-03d7c7a9d042";
+"5c57e4a3-4bda-4cf1-9582-21e55acbd267" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"5ea41751-8738-45f9-a13c-bf3715a503d6" -> "5c57e4a3-4bda-4cf1-9582-21e55acbd267";
+"47c310c3-cd60-44e2-8cd2-c4c6276fd67e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"5ea41751-8738-45f9-a13c-bf3715a503d6" -> "47c310c3-cd60-44e2-8cd2-c4c6276fd67e";
+"a06a9c8d-2892-4cc1-9249-e779d5efde3e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Table)", shape=box, style=filled];
+"5ea41751-8738-45f9-a13c-bf3715a503d6" -> "a06a9c8d-2892-4cc1-9249-e779d5efde3e";
+"8b06ccdd-0fc6-4307-8fa9-352fc9aac650" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8b06ccdd-0fc6-4307-8fa9-352fc9aac650";
+"76cafcd1-7117-4391-a27c-f0aac375b5cf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8b06ccdd-0fc6-4307-8fa9-352fc9aac650" -> "76cafcd1-7117-4391-a27c-f0aac375b5cf";
+"d8624052-83d5-41c9-b94a-7b728e06b4f1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8b06ccdd-0fc6-4307-8fa9-352fc9aac650" -> "d8624052-83d5-41c9-b94a-7b728e06b4f1";
+"2d4ebf09-5c64-4254-a060-4cca406240e0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"8b06ccdd-0fc6-4307-8fa9-352fc9aac650" -> "2d4ebf09-5c64-4254-a060-4cca406240e0";
+"cf6440cc-64bf-4572-a17a-f50b0ae80120" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"8b06ccdd-0fc6-4307-8fa9-352fc9aac650" -> "cf6440cc-64bf-4572-a17a-f50b0ae80120";
+"107d1d02-fd73-4790-80cb-397e696f2aaf" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,WaterTable)", shape=box, style=filled];
+"8b06ccdd-0fc6-4307-8fa9-352fc9aac650" -> "107d1d02-fd73-4790-80cb-397e696f2aaf";
+"f4dd5b14-dbd6-468d-b3ef-c9d1f6a5703d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f4dd5b14-dbd6-468d-b3ef-c9d1f6a5703d";
+"a5d5a171-4e7e-498b-8036-637a4f814c11" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f4dd5b14-dbd6-468d-b3ef-c9d1f6a5703d" -> "a5d5a171-4e7e-498b-8036-637a4f814c11";
+"460ab4a3-3f88-4ea2-b247-c7e9391eb39d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f4dd5b14-dbd6-468d-b3ef-c9d1f6a5703d" -> "460ab4a3-3f88-4ea2-b247-c7e9391eb39d";
+"17bd3335-9ec2-4476-a11d-b34350c11501" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"f4dd5b14-dbd6-468d-b3ef-c9d1f6a5703d" -> "17bd3335-9ec2-4476-a11d-b34350c11501";
+"e5b916b4-cb2c-4459-8333-c1e2b557c89f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"f4dd5b14-dbd6-468d-b3ef-c9d1f6a5703d" -> "e5b916b4-cb2c-4459-8333-c1e2b557c89f";
+"a6527185-6531-48d8-9301-fd6f59b773d0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,WaterTable)", shape=box, style=filled];
+"f4dd5b14-dbd6-468d-b3ef-c9d1f6a5703d" -> "a6527185-6531-48d8-9301-fd6f59b773d0";
+"1b355b62-1ebe-4040-bb4a-0ebed9f8ace6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "1b355b62-1ebe-4040-bb4a-0ebed9f8ace6";
+"723ad1a9-0333-42ee-a8c6-77138b1ff72b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"1b355b62-1ebe-4040-bb4a-0ebed9f8ace6" -> "723ad1a9-0333-42ee-a8c6-77138b1ff72b";
+"11c4536e-1c95-450f-8c94-70e81d83e5b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1b355b62-1ebe-4040-bb4a-0ebed9f8ace6" -> "11c4536e-1c95-450f-8c94-70e81d83e5b2";
+"2ce2c9ee-e90b-4e5c-9ea7-57a6337380fc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1b355b62-1ebe-4040-bb4a-0ebed9f8ace6" -> "2ce2c9ee-e90b-4e5c-9ea7-57a6337380fc";
+"48b93d19-fd0c-41d9-ae57-c5e378fd4fb1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"1b355b62-1ebe-4040-bb4a-0ebed9f8ace6" -> "48b93d19-fd0c-41d9-ae57-c5e378fd4fb1";
+"92a8e2fa-b8d6-4af8-8b28-ab913908c550" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"1b355b62-1ebe-4040-bb4a-0ebed9f8ace6" -> "92a8e2fa-b8d6-4af8-8b28-ab913908c550";
+"b785c1cb-d7c2-4d3f-9382-d6a42bd8420b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "b785c1cb-d7c2-4d3f-9382-d6a42bd8420b";
+"1492ba59-36d8-49ed-b876-684af4506727" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"b785c1cb-d7c2-4d3f-9382-d6a42bd8420b" -> "1492ba59-36d8-49ed-b876-684af4506727";
+"d93f50a3-6e02-4527-ac43-7a59a8677982" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b785c1cb-d7c2-4d3f-9382-d6a42bd8420b" -> "d93f50a3-6e02-4527-ac43-7a59a8677982";
+"e653dcde-9369-46a2-9ae9-2cb5045ccab0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b785c1cb-d7c2-4d3f-9382-d6a42bd8420b" -> "e653dcde-9369-46a2-9ae9-2cb5045ccab0";
+"b21c7544-9edb-4f65-ab72-dade15189087" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"b785c1cb-d7c2-4d3f-9382-d6a42bd8420b" -> "b21c7544-9edb-4f65-ab72-dade15189087";
+"9347a99e-94e0-4dd3-b094-72b9330f20ab" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"b785c1cb-d7c2-4d3f-9382-d6a42bd8420b" -> "9347a99e-94e0-4dd3-b094-72b9330f20ab";
+"0c8bb6e6-40d6-4d15-9004-c083c5868e6c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "0c8bb6e6-40d6-4d15-9004-c083c5868e6c";
+"e8d57b5e-cfeb-4479-b303-66df61b6928d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"0c8bb6e6-40d6-4d15-9004-c083c5868e6c" -> "e8d57b5e-cfeb-4479-b303-66df61b6928d";
+"f646ef62-89ba-4cca-bb39-d49b9601a641" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"0c8bb6e6-40d6-4d15-9004-c083c5868e6c" -> "f646ef62-89ba-4cca-bb39-d49b9601a641";
+"920ea526-c2f0-442a-bcc6-d61a3843bb70" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"0c8bb6e6-40d6-4d15-9004-c083c5868e6c" -> "920ea526-c2f0-442a-bcc6-d61a3843bb70";
+"304e9f41-13ac-42e6-b6b6-fd2baff61577" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"0c8bb6e6-40d6-4d15-9004-c083c5868e6c" -> "304e9f41-13ac-42e6-b6b6-fd2baff61577";
+"4acf7276-fc42-4b23-8f76-981c666d8716" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "4acf7276-fc42-4b23-8f76-981c666d8716";
+"e07a60e5-e3fe-4f4a-96c7-f200c6dc6a32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4acf7276-fc42-4b23-8f76-981c666d8716" -> "e07a60e5-e3fe-4f4a-96c7-f200c6dc6a32";
+"bf40a14a-508d-4a07-b9ac-a39a959811d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4acf7276-fc42-4b23-8f76-981c666d8716" -> "bf40a14a-508d-4a07-b9ac-a39a959811d8";
+"40d914c0-2a82-4229-9a73-c44cbfeae3ea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"4acf7276-fc42-4b23-8f76-981c666d8716" -> "40d914c0-2a82-4229-9a73-c44cbfeae3ea";
+"335ea284-8d92-4c07-9bb3-5d66ed6e2554" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"4acf7276-fc42-4b23-8f76-981c666d8716" -> "335ea284-8d92-4c07-9bb3-5d66ed6e2554";
+"2bd0842a-b3e3-4525-a0a8-febc0c619bd3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2bd0842a-b3e3-4525-a0a8-febc0c619bd3";
+"b90834c9-540a-45be-8493-c26f3f6ee0b8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2bd0842a-b3e3-4525-a0a8-febc0c619bd3" -> "b90834c9-540a-45be-8493-c26f3f6ee0b8";
+"a45b19d1-f2c0-4b62-959d-a404ef334b9a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2bd0842a-b3e3-4525-a0a8-febc0c619bd3" -> "a45b19d1-f2c0-4b62-959d-a404ef334b9a";
+"9cdf1a7b-b5b7-4f49-92fc-d64746c29479" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2bd0842a-b3e3-4525-a0a8-febc0c619bd3" -> "9cdf1a7b-b5b7-4f49-92fc-d64746c29479";
+"e43e4e05-57b8-46ad-bc7b-2cac44babb5b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"2bd0842a-b3e3-4525-a0a8-febc0c619bd3" -> "e43e4e05-57b8-46ad-bc7b-2cac44babb5b";
+"7f90e6a9-b6f5-4dae-a07e-c612d2f63927" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"2bd0842a-b3e3-4525-a0a8-febc0c619bd3" -> "7f90e6a9-b6f5-4dae-a07e-c612d2f63927";
+"2e6e4258-431f-44c9-beb0-c5ba168abc53" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2e6e4258-431f-44c9-beb0-c5ba168abc53";
+"801e0a9c-bd81-4684-9ea0-46c3a744ffc1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2e6e4258-431f-44c9-beb0-c5ba168abc53" -> "801e0a9c-bd81-4684-9ea0-46c3a744ffc1";
+"3b15a803-f815-4dfb-9f98-5290f783b5c6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2e6e4258-431f-44c9-beb0-c5ba168abc53" -> "3b15a803-f815-4dfb-9f98-5290f783b5c6";
+"ef37fd74-4df4-45dd-8616-24854becaeaf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2e6e4258-431f-44c9-beb0-c5ba168abc53" -> "ef37fd74-4df4-45dd-8616-24854becaeaf";
+"cf6591ef-9ecd-4536-81dc-2cfbb1820ced" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"2e6e4258-431f-44c9-beb0-c5ba168abc53" -> "cf6591ef-9ecd-4536-81dc-2cfbb1820ced";
+"3295b732-27f9-4922-977f-8c8e66549f50" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,BrightTable)", shape=box, style=filled];
+"2e6e4258-431f-44c9-beb0-c5ba168abc53" -> "3295b732-27f9-4922-977f-8c8e66549f50";
+"72000264-e9bd-41a1-af1e-025512f52e23" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "72000264-e9bd-41a1-af1e-025512f52e23";
+"10491acc-2057-4fcf-97b9-2f4314748f28" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"72000264-e9bd-41a1-af1e-025512f52e23" -> "10491acc-2057-4fcf-97b9-2f4314748f28";
+"c907ce8a-227d-4041-b13c-1b86e575cc20" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"72000264-e9bd-41a1-af1e-025512f52e23" -> "c907ce8a-227d-4041-b13c-1b86e575cc20";
+"10bf698d-c421-4d33-8d1d-3639250db306" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"72000264-e9bd-41a1-af1e-025512f52e23" -> "10bf698d-c421-4d33-8d1d-3639250db306";
+"514655f0-2832-4b06-a465-f4058adf678e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"72000264-e9bd-41a1-af1e-025512f52e23" -> "514655f0-2832-4b06-a465-f4058adf678e";
+"127fe61d-c880-4ce8-a7db-a7d7a59b13f3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,CoffeeTable)", shape=box, style=filled];
+"72000264-e9bd-41a1-af1e-025512f52e23" -> "127fe61d-c880-4ce8-a7db-a7d7a59b13f3";
+"b5d6f009-cb58-4fe9-8686-cab5a1545639" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "b5d6f009-cb58-4fe9-8686-cab5a1545639";
+"8ca15087-4835-4e63-9da7-f3df1b4851e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b5d6f009-cb58-4fe9-8686-cab5a1545639" -> "8ca15087-4835-4e63-9da7-f3df1b4851e6";
+"61be3b5b-f4eb-4262-8b2c-6e12632fc8ee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"b5d6f009-cb58-4fe9-8686-cab5a1545639" -> "61be3b5b-f4eb-4262-8b2c-6e12632fc8ee";
+"3ec37965-c2d5-4804-86d3-109aaab58006" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b5d6f009-cb58-4fe9-8686-cab5a1545639" -> "3ec37965-c2d5-4804-86d3-109aaab58006";
+"3a55a67b-9dba-4400-8a08-04f7b9713784" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"b5d6f009-cb58-4fe9-8686-cab5a1545639" -> "3a55a67b-9dba-4400-8a08-04f7b9713784";
+"a8c5ec40-ccdc-401b-864a-85cbc7f40858" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,CoffeeTable)", shape=box, style=filled];
+"b5d6f009-cb58-4fe9-8686-cab5a1545639" -> "a8c5ec40-ccdc-401b-864a-85cbc7f40858";
+"e060b669-31db-41f7-bb6e-bd5ddb030c03" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e060b669-31db-41f7-bb6e-bd5ddb030c03";
+"4438c3fe-c454-4166-907a-dfabd548c568" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e060b669-31db-41f7-bb6e-bd5ddb030c03" -> "4438c3fe-c454-4166-907a-dfabd548c568";
+"3de07ca4-6113-485f-8245-b00155c97d61" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e060b669-31db-41f7-bb6e-bd5ddb030c03" -> "3de07ca4-6113-485f-8245-b00155c97d61";
+"f471a4a4-1ab1-4cab-bf41-7cf57bc45e7a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"e060b669-31db-41f7-bb6e-bd5ddb030c03" -> "f471a4a4-1ab1-4cab-bf41-7cf57bc45e7a";
+"d6d9c156-5f62-4002-b929-0087eb01dfef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"e060b669-31db-41f7-bb6e-bd5ddb030c03" -> "d6d9c156-5f62-4002-b929-0087eb01dfef";
+"5e345ebb-658b-4158-83e5-85296d5afb36" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"e060b669-31db-41f7-bb6e-bd5ddb030c03" -> "5e345ebb-658b-4158-83e5-85296d5afb36";
+"bc3be653-4bf2-44ea-9484-d8bef6b15a11" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "bc3be653-4bf2-44ea-9484-d8bef6b15a11";
+"a57244bb-902c-4763-a57a-ed69b3b0816f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bc3be653-4bf2-44ea-9484-d8bef6b15a11" -> "a57244bb-902c-4763-a57a-ed69b3b0816f";
+"7f279566-bcea-4629-86c0-0d0caf64b0eb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"bc3be653-4bf2-44ea-9484-d8bef6b15a11" -> "7f279566-bcea-4629-86c0-0d0caf64b0eb";
+"e16f70db-07e7-4741-abe1-1cf40a9ff729" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"bc3be653-4bf2-44ea-9484-d8bef6b15a11" -> "e16f70db-07e7-4741-abe1-1cf40a9ff729";
+"07a7a5ff-05b6-48e1-90b3-f1c4f6c65ef8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"bc3be653-4bf2-44ea-9484-d8bef6b15a11" -> "07a7a5ff-05b6-48e1-90b3-f1c4f6c65ef8";
+"db481fb5-1c15-444d-a9e7-cc491c52e8bd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"bc3be653-4bf2-44ea-9484-d8bef6b15a11" -> "db481fb5-1c15-444d-a9e7-cc491c52e8bd";
+"23c8b0e7-6198-44a1-8152-6288177732d2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "23c8b0e7-6198-44a1-8152-6288177732d2";
+"0ad0e94b-c3bd-4be7-9923-8792bd6fe4c2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"23c8b0e7-6198-44a1-8152-6288177732d2" -> "0ad0e94b-c3bd-4be7-9923-8792bd6fe4c2";
+"4fd7ac9f-0513-4a98-af16-d86541d010d7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"23c8b0e7-6198-44a1-8152-6288177732d2" -> "4fd7ac9f-0513-4a98-af16-d86541d010d7";
+"2c1e8629-6e3d-4e52-9f04-d63527ed8d04" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"23c8b0e7-6198-44a1-8152-6288177732d2" -> "2c1e8629-6e3d-4e52-9f04-d63527ed8d04";
+"6a676250-8f39-46e6-8878-40e635d56e83" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"23c8b0e7-6198-44a1-8152-6288177732d2" -> "6a676250-8f39-46e6-8878-40e635d56e83";
+"0d29e510-d130-4657-a79d-d3f8aff71e7e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"23c8b0e7-6198-44a1-8152-6288177732d2" -> "0d29e510-d130-4657-a79d-d3f8aff71e7e";
+"4d0f0618-d5e0-4904-bfff-80322f04af70" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "4d0f0618-d5e0-4904-bfff-80322f04af70";
+"ff16c000-4192-491a-a2a7-1bf732bf9fea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4d0f0618-d5e0-4904-bfff-80322f04af70" -> "ff16c000-4192-491a-a2a7-1bf732bf9fea";
+"ed3450ef-64b4-44d8-972e-73a32b74fcdd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4d0f0618-d5e0-4904-bfff-80322f04af70" -> "ed3450ef-64b4-44d8-972e-73a32b74fcdd";
+"ecc8292f-ac66-4033-bd1e-df7d36b04bb2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"4d0f0618-d5e0-4904-bfff-80322f04af70" -> "ecc8292f-ac66-4033-bd1e-df7d36b04bb2";
+"0bb2731b-2d77-468d-b9eb-fbe32dbf4ab5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"4d0f0618-d5e0-4904-bfff-80322f04af70" -> "0bb2731b-2d77-468d-b9eb-fbe32dbf4ab5";
+"4cff0971-97b4-4168-9941-7a81cf85ece8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"4d0f0618-d5e0-4904-bfff-80322f04af70" -> "4cff0971-97b4-4168-9941-7a81cf85ece8";
+"d38c2ea4-8357-4e99-953b-8331bf3a1771" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d38c2ea4-8357-4e99-953b-8331bf3a1771";
+"d0b0aae4-4950-4001-b96d-beb265b7b3aa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d38c2ea4-8357-4e99-953b-8331bf3a1771" -> "d0b0aae4-4950-4001-b96d-beb265b7b3aa";
+"dcf8d4df-4ee7-4562-94d7-1ddb67da742d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d38c2ea4-8357-4e99-953b-8331bf3a1771" -> "dcf8d4df-4ee7-4562-94d7-1ddb67da742d";
+"026ef45d-ec4e-4fb2-8052-ffbc8fe653a2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"d38c2ea4-8357-4e99-953b-8331bf3a1771" -> "026ef45d-ec4e-4fb2-8052-ffbc8fe653a2";
+"c242b12d-0760-4374-b7d9-edd62f970bb0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"d38c2ea4-8357-4e99-953b-8331bf3a1771" -> "c242b12d-0760-4374-b7d9-edd62f970bb0";
+"0f373a6c-3dbd-4532-89c9-d71833ac26f1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"d38c2ea4-8357-4e99-953b-8331bf3a1771" -> "0f373a6c-3dbd-4532-89c9-d71833ac26f1";
+"e7e4973b-8c5b-4a24-aa2a-f15b1643c175" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e7e4973b-8c5b-4a24-aa2a-f15b1643c175";
+"2ff3a129-644e-457b-abfd-29d6efaa59d3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e7e4973b-8c5b-4a24-aa2a-f15b1643c175" -> "2ff3a129-644e-457b-abfd-29d6efaa59d3";
+"3419c4de-bf76-4670-93f8-9262e6741bad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e7e4973b-8c5b-4a24-aa2a-f15b1643c175" -> "3419c4de-bf76-4670-93f8-9262e6741bad";
+"373cb676-c8fc-42b4-9a9a-118ff5bc201c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"e7e4973b-8c5b-4a24-aa2a-f15b1643c175" -> "373cb676-c8fc-42b4-9a9a-118ff5bc201c";
+"42b2b6ad-f4ec-4e22-83f4-6cfb461dd6d7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"e7e4973b-8c5b-4a24-aa2a-f15b1643c175" -> "42b2b6ad-f4ec-4e22-83f4-6cfb461dd6d7";
+"d3423b6a-1293-4eb3-84c4-31aaa2fe9191" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Table)", shape=box, style=filled];
+"e7e4973b-8c5b-4a24-aa2a-f15b1643c175" -> "d3423b6a-1293-4eb3-84c4-31aaa2fe9191";
+"738da442-3517-4f2c-99e7-0f0801af84e1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "738da442-3517-4f2c-99e7-0f0801af84e1";
+"1c685634-370b-4d45-b89f-dc17b8662258" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"738da442-3517-4f2c-99e7-0f0801af84e1" -> "1c685634-370b-4d45-b89f-dc17b8662258";
+"ada445d8-511c-404f-84e5-2e7da0bcc025" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"738da442-3517-4f2c-99e7-0f0801af84e1" -> "ada445d8-511c-404f-84e5-2e7da0bcc025";
+"e6d86064-a5b8-4018-b554-898fabab7767" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"738da442-3517-4f2c-99e7-0f0801af84e1" -> "e6d86064-a5b8-4018-b554-898fabab7767";
+"1b977467-de24-403c-883f-649853782707" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"738da442-3517-4f2c-99e7-0f0801af84e1" -> "1b977467-de24-403c-883f-649853782707";
+"3964a543-199e-402f-8029-1573d16bba18" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,WaterTable)", shape=box, style=filled];
+"738da442-3517-4f2c-99e7-0f0801af84e1" -> "3964a543-199e-402f-8029-1573d16bba18";
+"50206ede-41b6-4d43-9ac8-21c1e52aaf8a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "50206ede-41b6-4d43-9ac8-21c1e52aaf8a";
+"643e6045-6a02-4b7a-9e53-e4d30bc35c2a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"50206ede-41b6-4d43-9ac8-21c1e52aaf8a" -> "643e6045-6a02-4b7a-9e53-e4d30bc35c2a";
+"cb6150b2-3103-4011-9980-68fb83970ccc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"50206ede-41b6-4d43-9ac8-21c1e52aaf8a" -> "cb6150b2-3103-4011-9980-68fb83970ccc";
+"d341fa15-852e-46bf-9116-6ca6ebeabc6d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"50206ede-41b6-4d43-9ac8-21c1e52aaf8a" -> "d341fa15-852e-46bf-9116-6ca6ebeabc6d";
+"393f19f0-b440-4b84-8673-be92155b910d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"50206ede-41b6-4d43-9ac8-21c1e52aaf8a" -> "393f19f0-b440-4b84-8673-be92155b910d";
+"21c2909e-720a-4670-b0ef-46e0ef56c24e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,WaterTable)", shape=box, style=filled];
+"50206ede-41b6-4d43-9ac8-21c1e52aaf8a" -> "21c2909e-720a-4670-b0ef-46e0ef56c24e";
+"8c114576-e366-4086-992b-686572634a0c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8c114576-e366-4086-992b-686572634a0c";
+"5baac3e0-e779-4da5-a27c-28f134a391af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"8c114576-e366-4086-992b-686572634a0c" -> "5baac3e0-e779-4da5-a27c-28f134a391af";
+"ac031a4e-2820-4866-a778-d12864bfb086" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8c114576-e366-4086-992b-686572634a0c" -> "ac031a4e-2820-4866-a778-d12864bfb086";
+"c1a72e3c-9851-4316-8dac-ac7e10408463" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8c114576-e366-4086-992b-686572634a0c" -> "c1a72e3c-9851-4316-8dac-ac7e10408463";
+"180de080-0f4a-49a1-9121-c4a77839e2b9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"8c114576-e366-4086-992b-686572634a0c" -> "180de080-0f4a-49a1-9121-c4a77839e2b9";
+"3b6b5235-4a67-4600-8cc0-b7e39af8466f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"8c114576-e366-4086-992b-686572634a0c" -> "3b6b5235-4a67-4600-8cc0-b7e39af8466f";
+"189314d4-8e2e-4275-a7bb-dab9fc75076d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "189314d4-8e2e-4275-a7bb-dab9fc75076d";
+"6d585971-e4b3-4008-9634-3e8c7a97f108" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"189314d4-8e2e-4275-a7bb-dab9fc75076d" -> "6d585971-e4b3-4008-9634-3e8c7a97f108";
+"06d94a29-78db-43e3-8f22-7d5bb100a715" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"189314d4-8e2e-4275-a7bb-dab9fc75076d" -> "06d94a29-78db-43e3-8f22-7d5bb100a715";
+"7dfca6a0-5333-4be2-874f-3ade6be983a6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"189314d4-8e2e-4275-a7bb-dab9fc75076d" -> "7dfca6a0-5333-4be2-874f-3ade6be983a6";
+"a9a6d6c3-0ce1-44e3-95c2-0c828643d426" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"189314d4-8e2e-4275-a7bb-dab9fc75076d" -> "a9a6d6c3-0ce1-44e3-95c2-0c828643d426";
+"208d565c-51ea-4004-9b98-7908561cd73d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"189314d4-8e2e-4275-a7bb-dab9fc75076d" -> "208d565c-51ea-4004-9b98-7908561cd73d";
+"f2f77bcb-ab0e-48c4-9ca2-ac9ce47f254e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f2f77bcb-ab0e-48c4-9ca2-ac9ce47f254e";
+"f2d89fc9-7c84-4cbd-8276-27d1877b4ccb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f2f77bcb-ab0e-48c4-9ca2-ac9ce47f254e" -> "f2d89fc9-7c84-4cbd-8276-27d1877b4ccb";
+"2f295618-70e2-4b51-a62e-835829991d68" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f2f77bcb-ab0e-48c4-9ca2-ac9ce47f254e" -> "2f295618-70e2-4b51-a62e-835829991d68";
+"c89ab959-8856-42d7-959e-68775532c0dc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"f2f77bcb-ab0e-48c4-9ca2-ac9ce47f254e" -> "c89ab959-8856-42d7-959e-68775532c0dc";
+"a58fd281-712e-4240-bdc1-cb7860fb9ea8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"f2f77bcb-ab0e-48c4-9ca2-ac9ce47f254e" -> "a58fd281-712e-4240-bdc1-cb7860fb9ea8";
+"8b13d05e-0ec0-4234-ad47-e4a621812c90" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8b13d05e-0ec0-4234-ad47-e4a621812c90";
+"a403f674-0e76-4133-88df-4927b4eafd46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8b13d05e-0ec0-4234-ad47-e4a621812c90" -> "a403f674-0e76-4133-88df-4927b4eafd46";
+"986f591a-bdc1-43f3-b7e9-9b78835e1859" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8b13d05e-0ec0-4234-ad47-e4a621812c90" -> "986f591a-bdc1-43f3-b7e9-9b78835e1859";
+"fa25a519-c92c-4057-bb1c-f9540eae6bcc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"8b13d05e-0ec0-4234-ad47-e4a621812c90" -> "fa25a519-c92c-4057-bb1c-f9540eae6bcc";
+"d939e0e5-846e-4a39-891c-0bb6692e0e3d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"8b13d05e-0ec0-4234-ad47-e4a621812c90" -> "d939e0e5-846e-4a39-891c-0bb6692e0e3d";
+"7ca8baa0-24ad-47cf-8ca6-bba234ebf29a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7ca8baa0-24ad-47cf-8ca6-bba234ebf29a";
+"d340b26d-6029-4eac-8e8f-190470db2343" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"7ca8baa0-24ad-47cf-8ca6-bba234ebf29a" -> "d340b26d-6029-4eac-8e8f-190470db2343";
+"902f5ff8-2f8c-4d16-935c-35f85684583e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7ca8baa0-24ad-47cf-8ca6-bba234ebf29a" -> "902f5ff8-2f8c-4d16-935c-35f85684583e";
+"4efd940e-0c67-4881-9e11-1f2fa965f6a7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7ca8baa0-24ad-47cf-8ca6-bba234ebf29a" -> "4efd940e-0c67-4881-9e11-1f2fa965f6a7";
+"f6d0540f-34ca-40f6-9d05-71d3c135f4df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"7ca8baa0-24ad-47cf-8ca6-bba234ebf29a" -> "f6d0540f-34ca-40f6-9d05-71d3c135f4df";
+"1d5b19b6-7999-4ec0-8ca3-6377bc46fe18" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,BrightTable)", shape=box, style=filled];
+"7ca8baa0-24ad-47cf-8ca6-bba234ebf29a" -> "1d5b19b6-7999-4ec0-8ca3-6377bc46fe18";
+"81c208d7-eddd-4e11-8438-d228a2751e2b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "81c208d7-eddd-4e11-8438-d228a2751e2b";
+"8dd55291-23a0-4695-a707-3baa891985a6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"81c208d7-eddd-4e11-8438-d228a2751e2b" -> "8dd55291-23a0-4695-a707-3baa891985a6";
+"ed2ed4a0-c9d5-4554-b229-fd370e21c38c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"81c208d7-eddd-4e11-8438-d228a2751e2b" -> "ed2ed4a0-c9d5-4554-b229-fd370e21c38c";
+"a5561fa1-92e8-4855-b925-d509ed8b7a3d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"81c208d7-eddd-4e11-8438-d228a2751e2b" -> "a5561fa1-92e8-4855-b925-d509ed8b7a3d";
+"e62341dc-7b2e-4f69-9bf5-62659bb832fc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"81c208d7-eddd-4e11-8438-d228a2751e2b" -> "e62341dc-7b2e-4f69-9bf5-62659bb832fc";
+"0bf29e84-27be-4d09-949f-241f8b5d53f7" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,BrightTable)", shape=box, style=filled];
+"81c208d7-eddd-4e11-8438-d228a2751e2b" -> "0bf29e84-27be-4d09-949f-241f8b5d53f7";
+"fc300949-767f-4324-a69c-736a6ee2f63d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "fc300949-767f-4324-a69c-736a6ee2f63d";
+"e5a11ee7-6340-4ef2-983b-3f22c2233702" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fc300949-767f-4324-a69c-736a6ee2f63d" -> "e5a11ee7-6340-4ef2-983b-3f22c2233702";
+"e0295aa6-f60b-4605-b1ce-7f42ca3f5e8e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"fc300949-767f-4324-a69c-736a6ee2f63d" -> "e0295aa6-f60b-4605-b1ce-7f42ca3f5e8e";
+"0a07ed17-e492-4a1c-80a9-61cfafae8d30" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"fc300949-767f-4324-a69c-736a6ee2f63d" -> "0a07ed17-e492-4a1c-80a9-61cfafae8d30";
+"5ad6b0a2-ada0-4ba5-b067-4fa6a603d106" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"fc300949-767f-4324-a69c-736a6ee2f63d" -> "5ad6b0a2-ada0-4ba5-b067-4fa6a603d106";
+"914edf0f-e89e-41d7-bfba-8b9f2ed88dcb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,CoffeeTable)", shape=box, style=filled];
+"fc300949-767f-4324-a69c-736a6ee2f63d" -> "914edf0f-e89e-41d7-bfba-8b9f2ed88dcb";
+"70cc462b-d3a5-49e6-be06-48d5b6f33269" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "70cc462b-d3a5-49e6-be06-48d5b6f33269";
+"7232382c-8ae7-441b-812c-8c60d149a481" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"70cc462b-d3a5-49e6-be06-48d5b6f33269" -> "7232382c-8ae7-441b-812c-8c60d149a481";
+"5cb5db0e-c8f1-4bf8-a867-58d61bc60df1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"70cc462b-d3a5-49e6-be06-48d5b6f33269" -> "5cb5db0e-c8f1-4bf8-a867-58d61bc60df1";
+"eaa1a8a2-60af-4de3-80dc-4a3ff4e4f0e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"70cc462b-d3a5-49e6-be06-48d5b6f33269" -> "eaa1a8a2-60af-4de3-80dc-4a3ff4e4f0e6";
+"cf79696b-cb1b-4a16-ab97-f0b39ca41638" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"70cc462b-d3a5-49e6-be06-48d5b6f33269" -> "cf79696b-cb1b-4a16-ab97-f0b39ca41638";
+"fe0b087e-00d9-43b8-a3a4-9cd23bb4736d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,CoffeeTable)", shape=box, style=filled];
+"70cc462b-d3a5-49e6-be06-48d5b6f33269" -> "fe0b087e-00d9-43b8-a3a4-9cd23bb4736d";
+"95f2fa8b-2664-4e91-9677-0c3012f78c32" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "95f2fa8b-2664-4e91-9677-0c3012f78c32";
+"eade3195-4ffc-4d11-a0c1-a962437c92c7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"95f2fa8b-2664-4e91-9677-0c3012f78c32" -> "eade3195-4ffc-4d11-a0c1-a962437c92c7";
+"96ab24fb-382c-457e-b5d0-7a222cb6e602" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"95f2fa8b-2664-4e91-9677-0c3012f78c32" -> "96ab24fb-382c-457e-b5d0-7a222cb6e602";
+"b3b5bb07-a37d-43f2-bea3-262f808b5e72" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"95f2fa8b-2664-4e91-9677-0c3012f78c32" -> "b3b5bb07-a37d-43f2-bea3-262f808b5e72";
+"d2c442ed-1d4c-49d3-8a88-223eec6dc425" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"95f2fa8b-2664-4e91-9677-0c3012f78c32" -> "d2c442ed-1d4c-49d3-8a88-223eec6dc425";
+"994dad7a-43ec-41d3-a160-f5635f872acd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"95f2fa8b-2664-4e91-9677-0c3012f78c32" -> "994dad7a-43ec-41d3-a160-f5635f872acd";
+"9b951d0d-080e-44f7-be07-4111258ec601" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9b951d0d-080e-44f7-be07-4111258ec601";
+"dd661277-2298-4e35-a4a7-c6f236a6ab82" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9b951d0d-080e-44f7-be07-4111258ec601" -> "dd661277-2298-4e35-a4a7-c6f236a6ab82";
+"503442c1-32ca-4dad-b50c-8730f2e86148" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9b951d0d-080e-44f7-be07-4111258ec601" -> "503442c1-32ca-4dad-b50c-8730f2e86148";
+"f0573b81-37fb-4b19-8848-f20c6f6340a9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"9b951d0d-080e-44f7-be07-4111258ec601" -> "f0573b81-37fb-4b19-8848-f20c6f6340a9";
+"478a6c6f-c382-4757-9348-4d90707f36e9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"9b951d0d-080e-44f7-be07-4111258ec601" -> "478a6c6f-c382-4757-9348-4d90707f36e9";
+"2b25992c-502b-4db8-83cd-785a5ce25a1f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"9b951d0d-080e-44f7-be07-4111258ec601" -> "2b25992c-502b-4db8-83cd-785a5ce25a1f";
+"4f384bd2-c40a-466d-85d6-9d608a811aaa" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "4f384bd2-c40a-466d-85d6-9d608a811aaa";
+"0be147d5-86c3-4f4b-bcfd-9eb7ab01295c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4f384bd2-c40a-466d-85d6-9d608a811aaa" -> "0be147d5-86c3-4f4b-bcfd-9eb7ab01295c";
+"dc0453ab-415b-4ccd-9fb3-09409b9e26fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4f384bd2-c40a-466d-85d6-9d608a811aaa" -> "dc0453ab-415b-4ccd-9fb3-09409b9e26fa";
+"59fe20f3-8cbe-4855-a21a-0548505d189b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"4f384bd2-c40a-466d-85d6-9d608a811aaa" -> "59fe20f3-8cbe-4855-a21a-0548505d189b";
+"368846e6-6dfc-4b46-a429-b4d29bd0e0c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"4f384bd2-c40a-466d-85d6-9d608a811aaa" -> "368846e6-6dfc-4b46-a429-b4d29bd0e0c8";
+"beaa13f0-58d0-4942-9706-86203bf82009" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"4f384bd2-c40a-466d-85d6-9d608a811aaa" -> "beaa13f0-58d0-4942-9706-86203bf82009";
+"66399520-c790-471d-9878-a1b499b3a0d3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "66399520-c790-471d-9878-a1b499b3a0d3";
+"cf38aac7-aeeb-4b43-9000-7dc680a52932" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"66399520-c790-471d-9878-a1b499b3a0d3" -> "cf38aac7-aeeb-4b43-9000-7dc680a52932";
+"38340b9b-b4aa-45aa-add2-814abfa8ef43" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"66399520-c790-471d-9878-a1b499b3a0d3" -> "38340b9b-b4aa-45aa-add2-814abfa8ef43";
+"4ed2c578-1c1d-400f-9c1e-cf801d53949d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"66399520-c790-471d-9878-a1b499b3a0d3" -> "4ed2c578-1c1d-400f-9c1e-cf801d53949d";
+"2ec33088-2596-4615-ae3c-8d001d70fdbb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"66399520-c790-471d-9878-a1b499b3a0d3" -> "2ec33088-2596-4615-ae3c-8d001d70fdbb";
+"0546b30e-5165-4897-ac5b-94b792b5ef90" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"66399520-c790-471d-9878-a1b499b3a0d3" -> "0546b30e-5165-4897-ac5b-94b792b5ef90";
+"106eb298-5ef4-4c0c-b79d-8832633174b6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "106eb298-5ef4-4c0c-b79d-8832633174b6";
+"0cde468e-cded-4e45-9a74-797f7ac72077" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"106eb298-5ef4-4c0c-b79d-8832633174b6" -> "0cde468e-cded-4e45-9a74-797f7ac72077";
+"fb7a487a-1bb7-42d1-bd01-9c4225e0c503" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"106eb298-5ef4-4c0c-b79d-8832633174b6" -> "fb7a487a-1bb7-42d1-bd01-9c4225e0c503";
+"330c5d83-4072-4fe7-bef3-0c8f9276243b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"106eb298-5ef4-4c0c-b79d-8832633174b6" -> "330c5d83-4072-4fe7-bef3-0c8f9276243b";
+"d6a58535-7a76-4775-a360-b834ca86b192" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"106eb298-5ef4-4c0c-b79d-8832633174b6" -> "d6a58535-7a76-4775-a360-b834ca86b192";
+"4f483428-fc52-437a-b91d-1aff26e70321" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"106eb298-5ef4-4c0c-b79d-8832633174b6" -> "4f483428-fc52-437a-b91d-1aff26e70321";
+"e8d08f18-d269-4237-bfb9-e730e1bc325a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e8d08f18-d269-4237-bfb9-e730e1bc325a";
+"18420e40-a8c9-409f-9b2a-e4221b6b1c4b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"e8d08f18-d269-4237-bfb9-e730e1bc325a" -> "18420e40-a8c9-409f-9b2a-e4221b6b1c4b";
+"0455c747-0907-4513-aca5-93e90bd58522" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e8d08f18-d269-4237-bfb9-e730e1bc325a" -> "0455c747-0907-4513-aca5-93e90bd58522";
+"bbb5c6af-a56d-42ca-99ce-27fad324e5ce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e8d08f18-d269-4237-bfb9-e730e1bc325a" -> "bbb5c6af-a56d-42ca-99ce-27fad324e5ce";
+"63f43435-5c12-4efd-83d5-e2895285f703" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"e8d08f18-d269-4237-bfb9-e730e1bc325a" -> "63f43435-5c12-4efd-83d5-e2895285f703";
+"10294cd2-633e-4f56-b83e-2f5969cec29c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Table)", shape=box, style=filled];
+"e8d08f18-d269-4237-bfb9-e730e1bc325a" -> "10294cd2-633e-4f56-b83e-2f5969cec29c";
+"8aba3095-23dd-4195-abc9-1f37499c1fd6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8aba3095-23dd-4195-abc9-1f37499c1fd6";
+"ee7b2603-5cd4-4de3-90ad-297d946557cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8aba3095-23dd-4195-abc9-1f37499c1fd6" -> "ee7b2603-5cd4-4de3-90ad-297d946557cc";
+"b4f0d4c1-95b8-47e9-82d2-79be158379af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"8aba3095-23dd-4195-abc9-1f37499c1fd6" -> "b4f0d4c1-95b8-47e9-82d2-79be158379af";
+"46617c86-4b1f-4081-9023-b24e745fa2e3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"8aba3095-23dd-4195-abc9-1f37499c1fd6" -> "46617c86-4b1f-4081-9023-b24e745fa2e3";
+"6c90af02-6e57-423d-959c-43fdc03d76b9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8aba3095-23dd-4195-abc9-1f37499c1fd6" -> "6c90af02-6e57-423d-959c-43fdc03d76b9";
+"c311a1c0-64b5-4993-a6e5-bd9f2e5067db" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"8aba3095-23dd-4195-abc9-1f37499c1fd6" -> "c311a1c0-64b5-4993-a6e5-bd9f2e5067db";
+"7e4b4039-dd8b-457e-a232-49f35c50c1c4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7e4b4039-dd8b-457e-a232-49f35c50c1c4";
+"c75e9f95-ceb5-43af-a515-05cd4d147f6f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7e4b4039-dd8b-457e-a232-49f35c50c1c4" -> "c75e9f95-ceb5-43af-a515-05cd4d147f6f";
+"000b0628-049f-4711-98ac-3f4cbaf1b95b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"7e4b4039-dd8b-457e-a232-49f35c50c1c4" -> "000b0628-049f-4711-98ac-3f4cbaf1b95b";
+"f62557c0-7ef1-497b-b255-c0e25706e6a5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"7e4b4039-dd8b-457e-a232-49f35c50c1c4" -> "f62557c0-7ef1-497b-b255-c0e25706e6a5";
+"11a74f87-35be-46d8-839e-889e46529933" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7e4b4039-dd8b-457e-a232-49f35c50c1c4" -> "11a74f87-35be-46d8-839e-889e46529933";
+"fd7fab49-c6ba-4873-8bc0-8014881f6526" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,WaterTable)", shape=box, style=filled];
+"7e4b4039-dd8b-457e-a232-49f35c50c1c4" -> "fd7fab49-c6ba-4873-8bc0-8014881f6526";
+"1adaf67d-4b6a-4e65-a288-50881a90538e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "1adaf67d-4b6a-4e65-a288-50881a90538e";
+"aa448cf6-df32-49a0-8c0a-ebcf6d4c86de" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"1adaf67d-4b6a-4e65-a288-50881a90538e" -> "aa448cf6-df32-49a0-8c0a-ebcf6d4c86de";
+"88e5bb6f-71d1-4480-9eca-558ba269f720" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1adaf67d-4b6a-4e65-a288-50881a90538e" -> "88e5bb6f-71d1-4480-9eca-558ba269f720";
+"adc99904-5c8a-4831-964b-55985a5327b0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"1adaf67d-4b6a-4e65-a288-50881a90538e" -> "adc99904-5c8a-4831-964b-55985a5327b0";
+"9c13500d-c330-47a7-98f4-334deba5a97a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1adaf67d-4b6a-4e65-a288-50881a90538e" -> "9c13500d-c330-47a7-98f4-334deba5a97a";
+"62d4f441-fc6c-456b-a93d-1fb6fe6bf026" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"1adaf67d-4b6a-4e65-a288-50881a90538e" -> "62d4f441-fc6c-456b-a93d-1fb6fe6bf026";
+"97d15623-0c10-436c-821e-c3b0a28598be" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "97d15623-0c10-436c-821e-c3b0a28598be";
+"0f18c270-c4a9-42dc-a8c2-204c4172a67b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"97d15623-0c10-436c-821e-c3b0a28598be" -> "0f18c270-c4a9-42dc-a8c2-204c4172a67b";
+"080b5c38-9d82-4644-84f7-386c70ac64e2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"97d15623-0c10-436c-821e-c3b0a28598be" -> "080b5c38-9d82-4644-84f7-386c70ac64e2";
+"bb7f7384-2437-4178-9601-4be66ef0723f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"97d15623-0c10-436c-821e-c3b0a28598be" -> "bb7f7384-2437-4178-9601-4be66ef0723f";
+"244a9bde-ae9a-47c2-ab49-b1130fcc5455" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"97d15623-0c10-436c-821e-c3b0a28598be" -> "244a9bde-ae9a-47c2-ab49-b1130fcc5455";
+"5fc9fe9f-c2e9-41e6-9b24-f622ece8a059" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"97d15623-0c10-436c-821e-c3b0a28598be" -> "5fc9fe9f-c2e9-41e6-9b24-f622ece8a059";
+"bafbbe07-4f9b-47b5-a948-69235df8d813" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "bafbbe07-4f9b-47b5-a948-69235df8d813";
+"a1d51734-7e9d-4ef5-a4ed-5348e4856f2e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bafbbe07-4f9b-47b5-a948-69235df8d813" -> "a1d51734-7e9d-4ef5-a4ed-5348e4856f2e";
+"88eaa4e8-1b74-45fb-ae41-d07428191840" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"bafbbe07-4f9b-47b5-a948-69235df8d813" -> "88eaa4e8-1b74-45fb-ae41-d07428191840";
+"1aa38d5c-bbbe-42d4-8ecd-791b2866289a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"bafbbe07-4f9b-47b5-a948-69235df8d813" -> "1aa38d5c-bbbe-42d4-8ecd-791b2866289a";
+"83cb0e02-bc10-4530-b084-e739e061c3ec" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"bafbbe07-4f9b-47b5-a948-69235df8d813" -> "83cb0e02-bc10-4530-b084-e739e061c3ec";
+"70bda9cf-80c2-4267-b572-8bc433f218dd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "70bda9cf-80c2-4267-b572-8bc433f218dd";
+"4a51b3dd-7b00-4539-ab7e-fda1a9b409f9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"70bda9cf-80c2-4267-b572-8bc433f218dd" -> "4a51b3dd-7b00-4539-ab7e-fda1a9b409f9";
+"2638fccb-215b-40eb-baf1-8e18b5e2274e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"70bda9cf-80c2-4267-b572-8bc433f218dd" -> "2638fccb-215b-40eb-baf1-8e18b5e2274e";
+"e748a68c-7368-4c17-a8be-00fec63bd86e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"70bda9cf-80c2-4267-b572-8bc433f218dd" -> "e748a68c-7368-4c17-a8be-00fec63bd86e";
+"a10d9f52-3027-4bca-aa75-2107253fd161" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"70bda9cf-80c2-4267-b572-8bc433f218dd" -> "a10d9f52-3027-4bca-aa75-2107253fd161";
+"cc8b6ae3-f771-4cbb-8c53-f6d64ca6a110" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "cc8b6ae3-f771-4cbb-8c53-f6d64ca6a110";
+"13b4fe9b-91f6-4b73-aa0c-4e56fa393e73" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"cc8b6ae3-f771-4cbb-8c53-f6d64ca6a110" -> "13b4fe9b-91f6-4b73-aa0c-4e56fa393e73";
+"8922ded4-2b72-430f-8529-27fc7d19f947" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cc8b6ae3-f771-4cbb-8c53-f6d64ca6a110" -> "8922ded4-2b72-430f-8529-27fc7d19f947";
+"43b4fe45-400f-4ab9-8894-271f2a6282b9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"cc8b6ae3-f771-4cbb-8c53-f6d64ca6a110" -> "43b4fe45-400f-4ab9-8894-271f2a6282b9";
+"eb2e86ba-b2f4-4d3b-bcd0-dc62fe46926e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cc8b6ae3-f771-4cbb-8c53-f6d64ca6a110" -> "eb2e86ba-b2f4-4d3b-bcd0-dc62fe46926e";
+"ff2a7800-2954-49db-9605-c18291d894ea" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,BrightTable)", shape=box, style=filled];
+"cc8b6ae3-f771-4cbb-8c53-f6d64ca6a110" -> "ff2a7800-2954-49db-9605-c18291d894ea";
+"3eb7f585-7e05-4546-9afc-603efa378447" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "3eb7f585-7e05-4546-9afc-603efa378447";
+"bdf5a462-ccd7-48f9-ae8e-a8b5b101e8b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"3eb7f585-7e05-4546-9afc-603efa378447" -> "bdf5a462-ccd7-48f9-ae8e-a8b5b101e8b3";
+"78aac4ad-357c-4ef6-9bc7-4bd46edb85d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3eb7f585-7e05-4546-9afc-603efa378447" -> "78aac4ad-357c-4ef6-9bc7-4bd46edb85d9";
+"713a6c69-3c30-46eb-9563-01e2475ae3ae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"3eb7f585-7e05-4546-9afc-603efa378447" -> "713a6c69-3c30-46eb-9563-01e2475ae3ae";
+"928bf027-5c53-493e-a073-6e7201e13f2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3eb7f585-7e05-4546-9afc-603efa378447" -> "928bf027-5c53-493e-a073-6e7201e13f2d";
+"6510316c-a816-48c1-9261-cb1ab60ac1cd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,BrightTable)", shape=box, style=filled];
+"3eb7f585-7e05-4546-9afc-603efa378447" -> "6510316c-a816-48c1-9261-cb1ab60ac1cd";
+"152a0c78-fe7d-4c95-b2cf-515e09d61e2c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "152a0c78-fe7d-4c95-b2cf-515e09d61e2c";
+"ff54400e-ed82-4a38-8287-9668be7fab62" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"152a0c78-fe7d-4c95-b2cf-515e09d61e2c" -> "ff54400e-ed82-4a38-8287-9668be7fab62";
+"a671bc5f-4059-4ba0-972e-07dfd50684f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"152a0c78-fe7d-4c95-b2cf-515e09d61e2c" -> "a671bc5f-4059-4ba0-972e-07dfd50684f3";
+"892500fb-ada3-47e1-9edd-946701aa44eb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"152a0c78-fe7d-4c95-b2cf-515e09d61e2c" -> "892500fb-ada3-47e1-9edd-946701aa44eb";
+"f6e18d48-1a41-4d49-b669-637324d7e49c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"152a0c78-fe7d-4c95-b2cf-515e09d61e2c" -> "f6e18d48-1a41-4d49-b669-637324d7e49c";
+"7a0238d5-31b0-485f-91ae-b85cd46d1389" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,CoffeeTable)", shape=box, style=filled];
+"152a0c78-fe7d-4c95-b2cf-515e09d61e2c" -> "7a0238d5-31b0-485f-91ae-b85cd46d1389";
+"f062ee78-08c2-4635-b86c-b1d61d1ce780" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f062ee78-08c2-4635-b86c-b1d61d1ce780";
+"68e8d5fd-6314-47fa-84a9-ebfdb3b7656d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f062ee78-08c2-4635-b86c-b1d61d1ce780" -> "68e8d5fd-6314-47fa-84a9-ebfdb3b7656d";
+"9f0f1564-6824-4904-9cd7-24dcf64a9c80" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"f062ee78-08c2-4635-b86c-b1d61d1ce780" -> "9f0f1564-6824-4904-9cd7-24dcf64a9c80";
+"efdf9e09-6dcb-42d5-b9c6-edf95436a688" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"f062ee78-08c2-4635-b86c-b1d61d1ce780" -> "efdf9e09-6dcb-42d5-b9c6-edf95436a688";
+"239f2050-5285-482c-8eea-68bddfa9728f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f062ee78-08c2-4635-b86c-b1d61d1ce780" -> "239f2050-5285-482c-8eea-68bddfa9728f";
+"82c13004-f5c7-46d7-986e-6ee7e2f92cdb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,CoffeeTable)", shape=box, style=filled];
+"f062ee78-08c2-4635-b86c-b1d61d1ce780" -> "82c13004-f5c7-46d7-986e-6ee7e2f92cdb";
+"1a251157-2e17-40f2-ba6c-a6f9bd4c4421" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "1a251157-2e17-40f2-ba6c-a6f9bd4c4421";
+"23a27ffc-edd0-4937-b2ad-65bb734fc599" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1a251157-2e17-40f2-ba6c-a6f9bd4c4421" -> "23a27ffc-edd0-4937-b2ad-65bb734fc599";
+"5938a175-0bbb-4f41-97a6-6184110d23b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"1a251157-2e17-40f2-ba6c-a6f9bd4c4421" -> "5938a175-0bbb-4f41-97a6-6184110d23b5";
+"0889d29b-85e5-4c2a-b606-1aaedca484d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"1a251157-2e17-40f2-ba6c-a6f9bd4c4421" -> "0889d29b-85e5-4c2a-b606-1aaedca484d6";
+"bde75cae-ea4e-4012-a0f4-de5161ce490a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1a251157-2e17-40f2-ba6c-a6f9bd4c4421" -> "bde75cae-ea4e-4012-a0f4-de5161ce490a";
+"1fb3eaec-7f56-4584-a360-66e07c4dc416" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"1a251157-2e17-40f2-ba6c-a6f9bd4c4421" -> "1fb3eaec-7f56-4584-a360-66e07c4dc416";
+"f2b87ec4-db2e-48de-b46d-e14c4c2a3e85" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f2b87ec4-db2e-48de-b46d-e14c4c2a3e85";
+"98d7404f-dd5a-40d7-b630-5763e4a5bcd9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f2b87ec4-db2e-48de-b46d-e14c4c2a3e85" -> "98d7404f-dd5a-40d7-b630-5763e4a5bcd9";
+"85048b9a-9975-418a-a6d9-34e5c44ef607" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"f2b87ec4-db2e-48de-b46d-e14c4c2a3e85" -> "85048b9a-9975-418a-a6d9-34e5c44ef607";
+"eb3e6750-6a7b-488a-b013-83a56b71697c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"f2b87ec4-db2e-48de-b46d-e14c4c2a3e85" -> "eb3e6750-6a7b-488a-b013-83a56b71697c";
+"84a6978f-9f0d-4acc-8ff0-f8837468f7b7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f2b87ec4-db2e-48de-b46d-e14c4c2a3e85" -> "84a6978f-9f0d-4acc-8ff0-f8837468f7b7";
+"e6e83dcc-2dbf-480e-8334-bd3aad6cced8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"f2b87ec4-db2e-48de-b46d-e14c4c2a3e85" -> "e6e83dcc-2dbf-480e-8334-bd3aad6cced8";
+"483c3b89-03fb-4327-a675-fd2d185c6b1a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "483c3b89-03fb-4327-a675-fd2d185c6b1a";
+"7ecba0e4-739b-41ca-b4a5-d1b5f61b4b1c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"483c3b89-03fb-4327-a675-fd2d185c6b1a" -> "7ecba0e4-739b-41ca-b4a5-d1b5f61b4b1c";
+"e9a91d69-5c3e-4274-9f99-b49974881a8f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"483c3b89-03fb-4327-a675-fd2d185c6b1a" -> "e9a91d69-5c3e-4274-9f99-b49974881a8f";
+"665dc59b-c4ce-4374-9179-e5f21185506d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"483c3b89-03fb-4327-a675-fd2d185c6b1a" -> "665dc59b-c4ce-4374-9179-e5f21185506d";
+"b6dc0660-03e6-43b6-80a4-4d606324d4ea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"483c3b89-03fb-4327-a675-fd2d185c6b1a" -> "b6dc0660-03e6-43b6-80a4-4d606324d4ea";
+"e3a767ee-8ab5-482a-923c-5d6212bfb15d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"483c3b89-03fb-4327-a675-fd2d185c6b1a" -> "e3a767ee-8ab5-482a-923c-5d6212bfb15d";
+"5734c96d-b12d-4ac7-99d4-0b8378d957c9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "5734c96d-b12d-4ac7-99d4-0b8378d957c9";
+"b3afcb1e-da93-4952-a007-301fe363edf1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"5734c96d-b12d-4ac7-99d4-0b8378d957c9" -> "b3afcb1e-da93-4952-a007-301fe363edf1";
+"d525ec57-4fcb-49c3-ab43-c3cd21a87e29" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5734c96d-b12d-4ac7-99d4-0b8378d957c9" -> "d525ec57-4fcb-49c3-ab43-c3cd21a87e29";
+"e4d507de-5d6c-461e-a4fd-0308683d2b92" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"5734c96d-b12d-4ac7-99d4-0b8378d957c9" -> "e4d507de-5d6c-461e-a4fd-0308683d2b92";
+"872697bc-4a71-46a3-ad41-1f6f08dd92fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5734c96d-b12d-4ac7-99d4-0b8378d957c9" -> "872697bc-4a71-46a3-ad41-1f6f08dd92fa";
+"4894ea3d-1fc5-48d3-a3d7-ac865c366c4c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"5734c96d-b12d-4ac7-99d4-0b8378d957c9" -> "4894ea3d-1fc5-48d3-a3d7-ac865c366c4c";
+"08f02a9b-15cb-49cd-863f-a6adeaf910ca" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "08f02a9b-15cb-49cd-863f-a6adeaf910ca";
+"0e6edf62-51e1-48d9-8fc4-40db4e4e666a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"08f02a9b-15cb-49cd-863f-a6adeaf910ca" -> "0e6edf62-51e1-48d9-8fc4-40db4e4e666a";
+"2338d5ff-6e3b-41fc-a1b1-97eaacf95eab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"08f02a9b-15cb-49cd-863f-a6adeaf910ca" -> "2338d5ff-6e3b-41fc-a1b1-97eaacf95eab";
+"3ad5ccb8-92e0-4d59-b58b-242d1d190a41" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"08f02a9b-15cb-49cd-863f-a6adeaf910ca" -> "3ad5ccb8-92e0-4d59-b58b-242d1d190a41";
+"04b95868-3639-42ab-ad2b-234547064076" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"08f02a9b-15cb-49cd-863f-a6adeaf910ca" -> "04b95868-3639-42ab-ad2b-234547064076";
+"ee14313c-024b-4fa7-a3ce-15c2e57371f8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"08f02a9b-15cb-49cd-863f-a6adeaf910ca" -> "ee14313c-024b-4fa7-a3ce-15c2e57371f8";
+"f741e061-f36f-48f9-b3ec-32ec3e3d7d17" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f741e061-f36f-48f9-b3ec-32ec3e3d7d17";
+"28e795e6-2776-4279-bac5-8783301d2f9b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f741e061-f36f-48f9-b3ec-32ec3e3d7d17" -> "28e795e6-2776-4279-bac5-8783301d2f9b";
+"47538db7-618c-4eab-a667-876d6b3bcf55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"f741e061-f36f-48f9-b3ec-32ec3e3d7d17" -> "47538db7-618c-4eab-a667-876d6b3bcf55";
+"ac716817-8653-4fc8-81f9-16d9222e5364" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"f741e061-f36f-48f9-b3ec-32ec3e3d7d17" -> "ac716817-8653-4fc8-81f9-16d9222e5364";
+"bc6a9354-403c-4383-8ae5-36d3f58b4d97" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f741e061-f36f-48f9-b3ec-32ec3e3d7d17" -> "bc6a9354-403c-4383-8ae5-36d3f58b4d97";
+"8e8039c0-336a-4d40-94e0-b4ef541f3265" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Table)", shape=box, style=filled];
+"f741e061-f36f-48f9-b3ec-32ec3e3d7d17" -> "8e8039c0-336a-4d40-94e0-b4ef541f3265";
+"303f84e5-f9e7-46f9-8a89-ad5aececeaaf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "303f84e5-f9e7-46f9-8a89-ad5aececeaaf";
+"e564d8f7-3108-49d5-8cfc-ccc15312722e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"303f84e5-f9e7-46f9-8a89-ad5aececeaaf" -> "e564d8f7-3108-49d5-8cfc-ccc15312722e";
+"302c3e3b-767d-446e-9106-e2b0c5f7e16c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"303f84e5-f9e7-46f9-8a89-ad5aececeaaf" -> "302c3e3b-767d-446e-9106-e2b0c5f7e16c";
+"3a454d87-725e-427f-b36d-04f0379edb4f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"303f84e5-f9e7-46f9-8a89-ad5aececeaaf" -> "3a454d87-725e-427f-b36d-04f0379edb4f";
+"e2c5c5db-9c36-450c-8a78-f11c554e2824" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"303f84e5-f9e7-46f9-8a89-ad5aececeaaf" -> "e2c5c5db-9c36-450c-8a78-f11c554e2824";
+"1adbcf75-1905-42d4-8f51-fc4abd5b3f58" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"303f84e5-f9e7-46f9-8a89-ad5aececeaaf" -> "1adbcf75-1905-42d4-8f51-fc4abd5b3f58";
+"c652027f-33b5-485f-8a1e-58ec4f4d6206" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "c652027f-33b5-485f-8a1e-58ec4f4d6206";
+"3effc8b5-b38d-4242-80bc-ec7aba738252" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c652027f-33b5-485f-8a1e-58ec4f4d6206" -> "3effc8b5-b38d-4242-80bc-ec7aba738252";
+"ee3ba389-1e9c-48c0-bc5e-922a950520c0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c652027f-33b5-485f-8a1e-58ec4f4d6206" -> "ee3ba389-1e9c-48c0-bc5e-922a950520c0";
+"052ff164-0d42-4f81-a670-738fb2737167" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"c652027f-33b5-485f-8a1e-58ec4f4d6206" -> "052ff164-0d42-4f81-a670-738fb2737167";
+"236d05ef-2d12-4713-a036-dc57c85eafda" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"c652027f-33b5-485f-8a1e-58ec4f4d6206" -> "236d05ef-2d12-4713-a036-dc57c85eafda";
+"b09d64a2-43dd-4874-99b4-6ba93c688745" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,WaterTable)", shape=box, style=filled];
+"c652027f-33b5-485f-8a1e-58ec4f4d6206" -> "b09d64a2-43dd-4874-99b4-6ba93c688745";
+"fb790a17-9d4f-4934-bbd9-038b95611fa4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "fb790a17-9d4f-4934-bbd9-038b95611fa4";
+"759d5ac2-3449-4c4d-b867-cfbc8848c3d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"fb790a17-9d4f-4934-bbd9-038b95611fa4" -> "759d5ac2-3449-4c4d-b867-cfbc8848c3d9";
+"4f7578d4-edd2-47ea-b57f-cb5b50c262bb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fb790a17-9d4f-4934-bbd9-038b95611fa4" -> "4f7578d4-edd2-47ea-b57f-cb5b50c262bb";
+"173f1294-0f99-4f63-a689-005bdd5dc2e7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"fb790a17-9d4f-4934-bbd9-038b95611fa4" -> "173f1294-0f99-4f63-a689-005bdd5dc2e7";
+"9c8ba55a-1fcd-4a1f-a178-09256ce7a8de" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"fb790a17-9d4f-4934-bbd9-038b95611fa4" -> "9c8ba55a-1fcd-4a1f-a178-09256ce7a8de";
+"36d09376-5947-4c06-b666-020f4e21f5e3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"fb790a17-9d4f-4934-bbd9-038b95611fa4" -> "36d09376-5947-4c06-b666-020f4e21f5e3";
+"c0122912-2669-4e28-bb43-572d2bc2b4ec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "c0122912-2669-4e28-bb43-572d2bc2b4ec";
+"1ba1b371-6a41-40cb-b355-bf1531ff7053" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"c0122912-2669-4e28-bb43-572d2bc2b4ec" -> "1ba1b371-6a41-40cb-b355-bf1531ff7053";
+"af70539d-8bcc-4376-82c9-adfade4f98a4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c0122912-2669-4e28-bb43-572d2bc2b4ec" -> "af70539d-8bcc-4376-82c9-adfade4f98a4";
+"37fe0494-39ca-425c-ae58-e1295a9fba63" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c0122912-2669-4e28-bb43-572d2bc2b4ec" -> "37fe0494-39ca-425c-ae58-e1295a9fba63";
+"8dcc1adb-2d86-4d73-b863-f8f0537c4b9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"c0122912-2669-4e28-bb43-572d2bc2b4ec" -> "8dcc1adb-2d86-4d73-b863-f8f0537c4b9f";
+"603f4284-669f-496e-8247-d4537c08d29c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"c0122912-2669-4e28-bb43-572d2bc2b4ec" -> "603f4284-669f-496e-8247-d4537c08d29c";
+"d441e492-2db4-476f-a46b-762f5351c9eb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d441e492-2db4-476f-a46b-762f5351c9eb";
+"de0fd426-6a83-46c5-807d-013e7e8d8d8c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"d441e492-2db4-476f-a46b-762f5351c9eb" -> "de0fd426-6a83-46c5-807d-013e7e8d8d8c";
+"8ca35f0c-d9d9-424f-8c54-08955de17e4b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d441e492-2db4-476f-a46b-762f5351c9eb" -> "8ca35f0c-d9d9-424f-8c54-08955de17e4b";
+"1d976968-3c0f-4286-8f0d-0f797ae0e548" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d441e492-2db4-476f-a46b-762f5351c9eb" -> "1d976968-3c0f-4286-8f0d-0f797ae0e548";
+"a53e39e0-d1ec-4c6d-b713-00a4c398ca49" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"d441e492-2db4-476f-a46b-762f5351c9eb" -> "a53e39e0-d1ec-4c6d-b713-00a4c398ca49";
+"75412662-c754-4317-a447-76d6a7c56bdb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "75412662-c754-4317-a447-76d6a7c56bdb";
+"ccab9e0f-6109-429b-be6a-a8862f02c26a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"75412662-c754-4317-a447-76d6a7c56bdb" -> "ccab9e0f-6109-429b-be6a-a8862f02c26a";
+"8869c4d8-2d2b-4efa-849d-5dbda015ac2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"75412662-c754-4317-a447-76d6a7c56bdb" -> "8869c4d8-2d2b-4efa-849d-5dbda015ac2d";
+"5091f0c2-348d-4e30-8a56-3e6bf1c6fde7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"75412662-c754-4317-a447-76d6a7c56bdb" -> "5091f0c2-348d-4e30-8a56-3e6bf1c6fde7";
+"89aaef8c-ed43-4ec7-b692-bb650752a5c3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"75412662-c754-4317-a447-76d6a7c56bdb" -> "89aaef8c-ed43-4ec7-b692-bb650752a5c3";
+"7c526f97-e3c3-4a0e-b7bf-0e8328caede5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7c526f97-e3c3-4a0e-b7bf-0e8328caede5";
+"3e456905-9d54-441a-87d7-bf468e458494" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"7c526f97-e3c3-4a0e-b7bf-0e8328caede5" -> "3e456905-9d54-441a-87d7-bf468e458494";
+"b4100464-e6aa-4476-85ed-19fe6ec08795" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"7c526f97-e3c3-4a0e-b7bf-0e8328caede5" -> "b4100464-e6aa-4476-85ed-19fe6ec08795";
+"f249bddf-362e-4319-9969-ef576e5e607d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7c526f97-e3c3-4a0e-b7bf-0e8328caede5" -> "f249bddf-362e-4319-9969-ef576e5e607d";
+"df18beaf-318b-4302-8d11-521a0b31e515" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7c526f97-e3c3-4a0e-b7bf-0e8328caede5" -> "df18beaf-318b-4302-8d11-521a0b31e515";
+"cea79165-29d4-42ca-aa88-b94a92b3948e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,BrightTable)", shape=box, style=filled];
+"7c526f97-e3c3-4a0e-b7bf-0e8328caede5" -> "cea79165-29d4-42ca-aa88-b94a92b3948e";
+"9e50aea1-8fc8-4f9f-b882-b84cb8c6fac2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9e50aea1-8fc8-4f9f-b882-b84cb8c6fac2";
+"f9727d1c-73b4-4928-9ac0-f4f2cca56c18" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"9e50aea1-8fc8-4f9f-b882-b84cb8c6fac2" -> "f9727d1c-73b4-4928-9ac0-f4f2cca56c18";
+"07ffc7b7-c0b2-4f6d-8497-a8f364c5b6cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"9e50aea1-8fc8-4f9f-b882-b84cb8c6fac2" -> "07ffc7b7-c0b2-4f6d-8497-a8f364c5b6cc";
+"c4d462f4-b479-4414-84c1-c925176ca40a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9e50aea1-8fc8-4f9f-b882-b84cb8c6fac2" -> "c4d462f4-b479-4414-84c1-c925176ca40a";
+"52a357d2-983e-45f9-a861-a5d0035f328c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9e50aea1-8fc8-4f9f-b882-b84cb8c6fac2" -> "52a357d2-983e-45f9-a861-a5d0035f328c";
+"a6f03038-7fa8-4a66-ab5c-b960b6e4c342" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,BrightTable)", shape=box, style=filled];
+"9e50aea1-8fc8-4f9f-b882-b84cb8c6fac2" -> "a6f03038-7fa8-4a66-ab5c-b960b6e4c342";
+"577c0aea-a006-430c-816c-8348d6606e3d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "577c0aea-a006-430c-816c-8348d6606e3d";
+"1d505dc4-ac2f-4a59-a358-04851ce05bb3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"577c0aea-a006-430c-816c-8348d6606e3d" -> "1d505dc4-ac2f-4a59-a358-04851ce05bb3";
+"3f80d1e8-f2db-43e8-8278-0813fe5112dd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"577c0aea-a006-430c-816c-8348d6606e3d" -> "3f80d1e8-f2db-43e8-8278-0813fe5112dd";
+"bd7695fc-29ac-4d56-8409-aa8cf78915f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"577c0aea-a006-430c-816c-8348d6606e3d" -> "bd7695fc-29ac-4d56-8409-aa8cf78915f6";
+"1b628cc0-b45b-4e96-bd8a-c7e81f500856" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"577c0aea-a006-430c-816c-8348d6606e3d" -> "1b628cc0-b45b-4e96-bd8a-c7e81f500856";
+"c014ee15-80a9-4dd3-9ebb-1f1c313f4d16" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,CoffeeTable)", shape=box, style=filled];
+"577c0aea-a006-430c-816c-8348d6606e3d" -> "c014ee15-80a9-4dd3-9ebb-1f1c313f4d16";
+"0c8eec7e-b0c2-4fc2-ab43-98bcd5363b38" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "0c8eec7e-b0c2-4fc2-ab43-98bcd5363b38";
+"1aa3e74e-1e05-440a-b705-8c2410857e8a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"0c8eec7e-b0c2-4fc2-ab43-98bcd5363b38" -> "1aa3e74e-1e05-440a-b705-8c2410857e8a";
+"f78dc5f1-1945-4ab3-a235-9b2cc0fef58e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"0c8eec7e-b0c2-4fc2-ab43-98bcd5363b38" -> "f78dc5f1-1945-4ab3-a235-9b2cc0fef58e";
+"73de4b04-24a2-4bfd-a424-fa903919a101" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"0c8eec7e-b0c2-4fc2-ab43-98bcd5363b38" -> "73de4b04-24a2-4bfd-a424-fa903919a101";
+"1573def4-00a5-4c47-81af-8dadb1838080" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"0c8eec7e-b0c2-4fc2-ab43-98bcd5363b38" -> "1573def4-00a5-4c47-81af-8dadb1838080";
+"0c5a442c-ce91-4799-807f-7a5d8725b87f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,CoffeeTable)", shape=box, style=filled];
+"0c8eec7e-b0c2-4fc2-ab43-98bcd5363b38" -> "0c5a442c-ce91-4799-807f-7a5d8725b87f";
+"d3f1fd05-85df-4b35-9571-78b735258719" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d3f1fd05-85df-4b35-9571-78b735258719";
+"e2f44336-e68f-4dea-a369-7a0b0c3bff70" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"d3f1fd05-85df-4b35-9571-78b735258719" -> "e2f44336-e68f-4dea-a369-7a0b0c3bff70";
+"26431d94-da5f-4db5-b646-99be969f7b9f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d3f1fd05-85df-4b35-9571-78b735258719" -> "26431d94-da5f-4db5-b646-99be969f7b9f";
+"7ac1c62e-a45b-441c-a0d8-6f34f531601f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d3f1fd05-85df-4b35-9571-78b735258719" -> "7ac1c62e-a45b-441c-a0d8-6f34f531601f";
+"bd13d76f-1213-4bcd-a5d7-0c7a2988828d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"d3f1fd05-85df-4b35-9571-78b735258719" -> "bd13d76f-1213-4bcd-a5d7-0c7a2988828d";
+"93d7c3ad-c70b-4061-b06f-c6ac55ca6e65" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"d3f1fd05-85df-4b35-9571-78b735258719" -> "93d7c3ad-c70b-4061-b06f-c6ac55ca6e65";
+"95080450-e4f1-48f1-a9d7-da3c9e3f0276" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "95080450-e4f1-48f1-a9d7-da3c9e3f0276";
+"d1952e9d-1f01-416a-b93c-8fe200d18901" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"95080450-e4f1-48f1-a9d7-da3c9e3f0276" -> "d1952e9d-1f01-416a-b93c-8fe200d18901";
+"7b9f4862-0e3a-411c-9bad-513117271765" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"95080450-e4f1-48f1-a9d7-da3c9e3f0276" -> "7b9f4862-0e3a-411c-9bad-513117271765";
+"8a8f12f7-c897-4218-ac58-117d776070d9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"95080450-e4f1-48f1-a9d7-da3c9e3f0276" -> "8a8f12f7-c897-4218-ac58-117d776070d9";
+"9b4791fa-a544-449a-86fa-721ffe016b31" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"95080450-e4f1-48f1-a9d7-da3c9e3f0276" -> "9b4791fa-a544-449a-86fa-721ffe016b31";
+"21526a97-cab4-45d0-9c98-0c67a6918c4c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"95080450-e4f1-48f1-a9d7-da3c9e3f0276" -> "21526a97-cab4-45d0-9c98-0c67a6918c4c";
+"02e23067-c732-4321-9d02-00d8548bcecd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "02e23067-c732-4321-9d02-00d8548bcecd";
+"7b3d4cd4-d3d7-4e5a-b7cf-b81eff240206" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"02e23067-c732-4321-9d02-00d8548bcecd" -> "7b3d4cd4-d3d7-4e5a-b7cf-b81eff240206";
+"2b087bbf-246a-4108-b466-77f1efda427b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"02e23067-c732-4321-9d02-00d8548bcecd" -> "2b087bbf-246a-4108-b466-77f1efda427b";
+"6e5dcb40-e1e9-431d-a16e-4e9141cb8643" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"02e23067-c732-4321-9d02-00d8548bcecd" -> "6e5dcb40-e1e9-431d-a16e-4e9141cb8643";
+"4fd3802f-1276-42eb-bfa4-dc29720e9c25" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"02e23067-c732-4321-9d02-00d8548bcecd" -> "4fd3802f-1276-42eb-bfa4-dc29720e9c25";
+"8a98b8e6-2c87-4c4c-9928-3419ebeb6572" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"02e23067-c732-4321-9d02-00d8548bcecd" -> "8a98b8e6-2c87-4c4c-9928-3419ebeb6572";
+"ca5d30e5-bb2f-46fb-b37e-0f21a2ce734c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ca5d30e5-bb2f-46fb-b37e-0f21a2ce734c";
+"3e9e60f7-9ed8-4645-93d2-676bde63698f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"ca5d30e5-bb2f-46fb-b37e-0f21a2ce734c" -> "3e9e60f7-9ed8-4645-93d2-676bde63698f";
+"db148f18-d038-4d52-b2b3-98a6107cdd9d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ca5d30e5-bb2f-46fb-b37e-0f21a2ce734c" -> "db148f18-d038-4d52-b2b3-98a6107cdd9d";
+"61b63172-45ce-48c6-8f7c-590117f71e88" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ca5d30e5-bb2f-46fb-b37e-0f21a2ce734c" -> "61b63172-45ce-48c6-8f7c-590117f71e88";
+"0bc243be-3388-43d2-ac1d-cedb785b4d29" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"ca5d30e5-bb2f-46fb-b37e-0f21a2ce734c" -> "0bc243be-3388-43d2-ac1d-cedb785b4d29";
+"3e116127-4f32-4643-92d1-babec7a6edd5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"ca5d30e5-bb2f-46fb-b37e-0f21a2ce734c" -> "3e116127-4f32-4643-92d1-babec7a6edd5";
+"71f64768-4637-44e3-8472-4046d992895d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "71f64768-4637-44e3-8472-4046d992895d";
+"fd4a48d4-a59d-472c-9246-faf27e04c955" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"71f64768-4637-44e3-8472-4046d992895d" -> "fd4a48d4-a59d-472c-9246-faf27e04c955";
+"a9b66a1a-d7fc-4635-b91f-3a488cf97c5e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"71f64768-4637-44e3-8472-4046d992895d" -> "a9b66a1a-d7fc-4635-b91f-3a488cf97c5e";
+"ad41fb45-45ba-47af-b235-536383b8f0fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"71f64768-4637-44e3-8472-4046d992895d" -> "ad41fb45-45ba-47af-b235-536383b8f0fa";
+"a4b069b3-0c51-42ca-a830-a4444d0186dd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"71f64768-4637-44e3-8472-4046d992895d" -> "a4b069b3-0c51-42ca-a830-a4444d0186dd";
+"9bea3932-7c9d-4fb0-a218-fb5eef7f9600" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"71f64768-4637-44e3-8472-4046d992895d" -> "9bea3932-7c9d-4fb0-a218-fb5eef7f9600";
+"70139f12-41dd-43fa-8ac1-c2e2a69730fe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "70139f12-41dd-43fa-8ac1-c2e2a69730fe";
+"336cd8c3-4b20-46d9-81ea-ba6cee8d2b12" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"70139f12-41dd-43fa-8ac1-c2e2a69730fe" -> "336cd8c3-4b20-46d9-81ea-ba6cee8d2b12";
+"a83ec234-6fd5-48f9-8d2d-0485d785462a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"70139f12-41dd-43fa-8ac1-c2e2a69730fe" -> "a83ec234-6fd5-48f9-8d2d-0485d785462a";
+"9d21fe7d-3a5e-4111-a487-7e47b2a504e3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"70139f12-41dd-43fa-8ac1-c2e2a69730fe" -> "9d21fe7d-3a5e-4111-a487-7e47b2a504e3";
+"70252922-872a-4db5-bc70-5c4741c1cb43" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"70139f12-41dd-43fa-8ac1-c2e2a69730fe" -> "70252922-872a-4db5-bc70-5c4741c1cb43";
+"368ef0e5-81a7-430e-8720-5cc0ccea43dc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Table)", shape=box, style=filled];
+"70139f12-41dd-43fa-8ac1-c2e2a69730fe" -> "368ef0e5-81a7-430e-8720-5cc0ccea43dc";
+"fc4d6ff8-6ac8-41d2-89fa-33957ee5bcb6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "fc4d6ff8-6ac8-41d2-89fa-33957ee5bcb6";
+"a06cf9be-fd90-45f2-9e0b-b33c6399df97" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"fc4d6ff8-6ac8-41d2-89fa-33957ee5bcb6" -> "a06cf9be-fd90-45f2-9e0b-b33c6399df97";
+"915c198a-8390-43a1-8ed0-51699f6f76b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fc4d6ff8-6ac8-41d2-89fa-33957ee5bcb6" -> "915c198a-8390-43a1-8ed0-51699f6f76b3";
+"f3b090f9-fc38-45de-a873-005a9111f480" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"fc4d6ff8-6ac8-41d2-89fa-33957ee5bcb6" -> "f3b090f9-fc38-45de-a873-005a9111f480";
+"6797493d-9a17-4b1a-ad25-1464d1245a87" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"fc4d6ff8-6ac8-41d2-89fa-33957ee5bcb6" -> "6797493d-9a17-4b1a-ad25-1464d1245a87";
+"ba0baf4d-50fd-41e3-8a88-906d7a0287ba" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,WaterTable)", shape=box, style=filled];
+"fc4d6ff8-6ac8-41d2-89fa-33957ee5bcb6" -> "ba0baf4d-50fd-41e3-8a88-906d7a0287ba";
+"7914fc15-2e5c-409b-b664-dbec4f483acd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7914fc15-2e5c-409b-b664-dbec4f483acd";
+"29c8c629-adff-4096-9484-f2807d170b55" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"7914fc15-2e5c-409b-b664-dbec4f483acd" -> "29c8c629-adff-4096-9484-f2807d170b55";
+"9165722c-6bb1-44e7-8392-d614c3d004be" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7914fc15-2e5c-409b-b664-dbec4f483acd" -> "9165722c-6bb1-44e7-8392-d614c3d004be";
+"f654f65b-419c-4870-9d83-4e8811f55132" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"7914fc15-2e5c-409b-b664-dbec4f483acd" -> "f654f65b-419c-4870-9d83-4e8811f55132";
+"e64848ff-cfd1-4aa5-88a4-1dbbf00ac802" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7914fc15-2e5c-409b-b664-dbec4f483acd" -> "e64848ff-cfd1-4aa5-88a4-1dbbf00ac802";
+"a380c8bb-a7d7-4894-bf9a-cff53f6d48e8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,WaterTable)", shape=box, style=filled];
+"7914fc15-2e5c-409b-b664-dbec4f483acd" -> "a380c8bb-a7d7-4894-bf9a-cff53f6d48e8";
+"38c8f54a-d663-4d8c-84d2-df6a24979f57" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "38c8f54a-d663-4d8c-84d2-df6a24979f57";
+"7e41068f-c7eb-4e3a-b00b-17476d644a32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"38c8f54a-d663-4d8c-84d2-df6a24979f57" -> "7e41068f-c7eb-4e3a-b00b-17476d644a32";
+"95babd11-f549-4690-a591-3b65240158c1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"38c8f54a-d663-4d8c-84d2-df6a24979f57" -> "95babd11-f549-4690-a591-3b65240158c1";
+"af354285-bd87-443a-8c05-7da9881aa3d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"38c8f54a-d663-4d8c-84d2-df6a24979f57" -> "af354285-bd87-443a-8c05-7da9881aa3d8";
+"a8f4a494-2c73-49d0-9d6d-0ec173c73eb7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"38c8f54a-d663-4d8c-84d2-df6a24979f57" -> "a8f4a494-2c73-49d0-9d6d-0ec173c73eb7";
+"2e42d89e-df6e-4607-afc6-0652c3065997" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"38c8f54a-d663-4d8c-84d2-df6a24979f57" -> "2e42d89e-df6e-4607-afc6-0652c3065997";
+"6cd0b93b-f022-43a1-aeb2-4ba3f4d51b1e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6cd0b93b-f022-43a1-aeb2-4ba3f4d51b1e";
+"104297e6-b5de-4229-92c3-a1c8f143a1fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"6cd0b93b-f022-43a1-aeb2-4ba3f4d51b1e" -> "104297e6-b5de-4229-92c3-a1c8f143a1fa";
+"6287d6a1-01b8-4ecc-83a7-b3c8112dddd3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"6cd0b93b-f022-43a1-aeb2-4ba3f4d51b1e" -> "6287d6a1-01b8-4ecc-83a7-b3c8112dddd3";
+"064ab3e4-9d07-45cf-98a3-69f4c01405ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6cd0b93b-f022-43a1-aeb2-4ba3f4d51b1e" -> "064ab3e4-9d07-45cf-98a3-69f4c01405ef";
+"31b38865-2994-4816-a1f2-f51f6e574ae4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6cd0b93b-f022-43a1-aeb2-4ba3f4d51b1e" -> "31b38865-2994-4816-a1f2-f51f6e574ae4";
+"10fc85c8-f508-45e7-98d7-f500bfeafe5a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"6cd0b93b-f022-43a1-aeb2-4ba3f4d51b1e" -> "10fc85c8-f508-45e7-98d7-f500bfeafe5a";
+"fe195b70-5a72-4399-921c-94c47a0ede1e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "fe195b70-5a72-4399-921c-94c47a0ede1e";
+"405c73cd-e2b9-4bcb-9468-2c6c4dfc2435" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"fe195b70-5a72-4399-921c-94c47a0ede1e" -> "405c73cd-e2b9-4bcb-9468-2c6c4dfc2435";
+"5350eed3-9bbf-47b3-b9e5-8a9249a231ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fe195b70-5a72-4399-921c-94c47a0ede1e" -> "5350eed3-9bbf-47b3-b9e5-8a9249a231ef";
+"1f13a5a4-fd0d-4532-bf4a-5dd58f08bf99" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"fe195b70-5a72-4399-921c-94c47a0ede1e" -> "1f13a5a4-fd0d-4532-bf4a-5dd58f08bf99";
+"5bb0d8b1-d585-4bb6-9b0b-e194332e0965" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"fe195b70-5a72-4399-921c-94c47a0ede1e" -> "5bb0d8b1-d585-4bb6-9b0b-e194332e0965";
+"f82ceaa0-b6da-4eb8-af29-bccb4200e5ce" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f82ceaa0-b6da-4eb8-af29-bccb4200e5ce";
+"d37c9f2e-bed1-4fe2-b313-449793df81a4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"f82ceaa0-b6da-4eb8-af29-bccb4200e5ce" -> "d37c9f2e-bed1-4fe2-b313-449793df81a4";
+"a2c5a04c-9478-4495-9c58-fff5b9439a52" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f82ceaa0-b6da-4eb8-af29-bccb4200e5ce" -> "a2c5a04c-9478-4495-9c58-fff5b9439a52";
+"e11fdf63-5f7d-45d6-a397-e6ba4bf4b512" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f82ceaa0-b6da-4eb8-af29-bccb4200e5ce" -> "e11fdf63-5f7d-45d6-a397-e6ba4bf4b512";
+"1aa7f02c-66ce-487d-adbb-d208f327516e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"f82ceaa0-b6da-4eb8-af29-bccb4200e5ce" -> "1aa7f02c-66ce-487d-adbb-d208f327516e";
+"2d258978-abb3-413b-8742-7aa77d4b08d6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2d258978-abb3-413b-8742-7aa77d4b08d6";
+"f2794569-a401-4125-863b-ec733d5fff04" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"2d258978-abb3-413b-8742-7aa77d4b08d6" -> "f2794569-a401-4125-863b-ec733d5fff04";
+"55849d0f-9891-472e-8a5c-521168acc32c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"2d258978-abb3-413b-8742-7aa77d4b08d6" -> "55849d0f-9891-472e-8a5c-521168acc32c";
+"0ecc86f9-ca06-4e28-a960-94a635ef5341" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2d258978-abb3-413b-8742-7aa77d4b08d6" -> "0ecc86f9-ca06-4e28-a960-94a635ef5341";
+"4aafd0e6-1158-43c9-a988-3525e24bb883" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2d258978-abb3-413b-8742-7aa77d4b08d6" -> "4aafd0e6-1158-43c9-a988-3525e24bb883";
+"2c8cf63c-3336-43f6-b6ec-1044baf760c5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"2d258978-abb3-413b-8742-7aa77d4b08d6" -> "2c8cf63c-3336-43f6-b6ec-1044baf760c5";
+"71c83425-4b72-4dcc-a133-20af4012d12a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "71c83425-4b72-4dcc-a133-20af4012d12a";
+"63e4a060-5357-47ec-8121-2b8eb890b8ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"71c83425-4b72-4dcc-a133-20af4012d12a" -> "63e4a060-5357-47ec-8121-2b8eb890b8ef";
+"40eed86d-8d28-453f-a8c9-950848379795" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"71c83425-4b72-4dcc-a133-20af4012d12a" -> "40eed86d-8d28-453f-a8c9-950848379795";
+"d0d4e14d-4aae-49d8-8194-e5dbff370fd4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"71c83425-4b72-4dcc-a133-20af4012d12a" -> "d0d4e14d-4aae-49d8-8194-e5dbff370fd4";
+"608bae1a-2eb8-43ac-b6b2-06516663d15b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"71c83425-4b72-4dcc-a133-20af4012d12a" -> "608bae1a-2eb8-43ac-b6b2-06516663d15b";
+"cf2dbf46-3444-46df-8fd4-dc64e11da32d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,BrightTable)", shape=box, style=filled];
+"71c83425-4b72-4dcc-a133-20af4012d12a" -> "cf2dbf46-3444-46df-8fd4-dc64e11da32d";
+"dcd58750-47b4-481e-9dca-0e9af8497d37" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "dcd58750-47b4-481e-9dca-0e9af8497d37";
+"63490080-f3f7-49fc-85d0-e1277cb9edea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"dcd58750-47b4-481e-9dca-0e9af8497d37" -> "63490080-f3f7-49fc-85d0-e1277cb9edea";
+"6361b873-a6b4-4167-b9ba-b1c72011533f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"dcd58750-47b4-481e-9dca-0e9af8497d37" -> "6361b873-a6b4-4167-b9ba-b1c72011533f";
+"a18e5bcd-6688-4dfb-addb-db5e1d47190d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"dcd58750-47b4-481e-9dca-0e9af8497d37" -> "a18e5bcd-6688-4dfb-addb-db5e1d47190d";
+"b722450d-09bf-4e3f-8071-322c81265352" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"dcd58750-47b4-481e-9dca-0e9af8497d37" -> "b722450d-09bf-4e3f-8071-322c81265352";
+"8514cfd1-df34-422c-9755-bd8b65ec33d5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,CoffeeTable)", shape=box, style=filled];
+"dcd58750-47b4-481e-9dca-0e9af8497d37" -> "8514cfd1-df34-422c-9755-bd8b65ec33d5";
+"07586bf3-3261-4f90-8a20-818974dcaa22" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "07586bf3-3261-4f90-8a20-818974dcaa22";
+"6b20daf3-c7d1-4e47-a9b7-8dc978303b3e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"07586bf3-3261-4f90-8a20-818974dcaa22" -> "6b20daf3-c7d1-4e47-a9b7-8dc978303b3e";
+"a563f8a1-131c-4206-b746-d5e723f976ec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"07586bf3-3261-4f90-8a20-818974dcaa22" -> "a563f8a1-131c-4206-b746-d5e723f976ec";
+"d5fab8c2-5bea-422e-8abe-e19bc3439b0e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"07586bf3-3261-4f90-8a20-818974dcaa22" -> "d5fab8c2-5bea-422e-8abe-e19bc3439b0e";
+"69e21ea0-7524-4c40-bdb7-fdf5402d51e9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"07586bf3-3261-4f90-8a20-818974dcaa22" -> "69e21ea0-7524-4c40-bdb7-fdf5402d51e9";
+"6666b4a7-2143-46a5-af8c-60ea3e5e9fc1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,CoffeeTable)", shape=box, style=filled];
+"07586bf3-3261-4f90-8a20-818974dcaa22" -> "6666b4a7-2143-46a5-af8c-60ea3e5e9fc1";
+"535b4bf2-c24a-4f06-b164-4750881613dd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "535b4bf2-c24a-4f06-b164-4750881613dd";
+"e995d6ad-9eca-4fee-bd44-4c8580ea35db" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"535b4bf2-c24a-4f06-b164-4750881613dd" -> "e995d6ad-9eca-4fee-bd44-4c8580ea35db";
+"76eec655-6e64-4a93-a11a-1159fd53514a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"535b4bf2-c24a-4f06-b164-4750881613dd" -> "76eec655-6e64-4a93-a11a-1159fd53514a";
+"593541a4-a7b3-40dd-95d2-8563f5cd6142" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"535b4bf2-c24a-4f06-b164-4750881613dd" -> "593541a4-a7b3-40dd-95d2-8563f5cd6142";
+"ec235825-175a-4d2a-8780-7ecfe5cf8777" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"535b4bf2-c24a-4f06-b164-4750881613dd" -> "ec235825-175a-4d2a-8780-7ecfe5cf8777";
+"4afd6b77-7d75-4a0f-861c-66d28fe07fa9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"535b4bf2-c24a-4f06-b164-4750881613dd" -> "4afd6b77-7d75-4a0f-861c-66d28fe07fa9";
+"dc9fc211-1223-426e-bf8d-75cc66d1b3b1" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "dc9fc211-1223-426e-bf8d-75cc66d1b3b1";
+"41535c4c-b1bb-4fd4-ad6d-3903146fcb52" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"dc9fc211-1223-426e-bf8d-75cc66d1b3b1" -> "41535c4c-b1bb-4fd4-ad6d-3903146fcb52";
+"b7effd89-7469-462b-880c-28f0aaa13a04" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"dc9fc211-1223-426e-bf8d-75cc66d1b3b1" -> "b7effd89-7469-462b-880c-28f0aaa13a04";
+"7aea9ffe-1c21-4a1c-8193-b6272784c27c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"dc9fc211-1223-426e-bf8d-75cc66d1b3b1" -> "7aea9ffe-1c21-4a1c-8193-b6272784c27c";
+"cdae2dcd-536f-4b10-b7a2-6fbf23734368" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"dc9fc211-1223-426e-bf8d-75cc66d1b3b1" -> "cdae2dcd-536f-4b10-b7a2-6fbf23734368";
+"b83f8bff-17ec-405c-a5ff-2f68298f8699" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"dc9fc211-1223-426e-bf8d-75cc66d1b3b1" -> "b83f8bff-17ec-405c-a5ff-2f68298f8699";
+"e0569027-3cdc-4b15-a7ad-49886b56be6b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e0569027-3cdc-4b15-a7ad-49886b56be6b";
+"99918538-9f5c-43bd-863b-11dca11f9d47" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"e0569027-3cdc-4b15-a7ad-49886b56be6b" -> "99918538-9f5c-43bd-863b-11dca11f9d47";
+"9c9e6d1d-4ac4-4395-aaa9-f51ac1d13cae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e0569027-3cdc-4b15-a7ad-49886b56be6b" -> "9c9e6d1d-4ac4-4395-aaa9-f51ac1d13cae";
+"e69096a2-e09a-4abd-8485-7760760098d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e0569027-3cdc-4b15-a7ad-49886b56be6b" -> "e69096a2-e09a-4abd-8485-7760760098d8";
+"3f44da18-2090-48ca-9438-fe1e5a039fc8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"e0569027-3cdc-4b15-a7ad-49886b56be6b" -> "3f44da18-2090-48ca-9438-fe1e5a039fc8";
+"e1f88597-d372-48bf-be27-226fb1d7a537" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"e0569027-3cdc-4b15-a7ad-49886b56be6b" -> "e1f88597-d372-48bf-be27-226fb1d7a537";
+"2a234b02-c0d4-453c-b058-ee6121393edc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2a234b02-c0d4-453c-b058-ee6121393edc";
+"7128b9e3-37e5-4b92-a310-2db00b23030a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"2a234b02-c0d4-453c-b058-ee6121393edc" -> "7128b9e3-37e5-4b92-a310-2db00b23030a";
+"3ab05ca4-709c-49dd-86b3-6e85a983b5f4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2a234b02-c0d4-453c-b058-ee6121393edc" -> "3ab05ca4-709c-49dd-86b3-6e85a983b5f4";
+"d74d9d29-0daf-43fe-8eeb-92f59aae9dbb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2a234b02-c0d4-453c-b058-ee6121393edc" -> "d74d9d29-0daf-43fe-8eeb-92f59aae9dbb";
+"73ff4437-8796-43b4-8622-8d4c0a41c264" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"2a234b02-c0d4-453c-b058-ee6121393edc" -> "73ff4437-8796-43b4-8622-8d4c0a41c264";
+"5e09d5aa-7f3c-4de4-8f60-b518cad38369" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"2a234b02-c0d4-453c-b058-ee6121393edc" -> "5e09d5aa-7f3c-4de4-8f60-b518cad38369";
+"9246fc68-bd7a-44c8-8bfe-43b94af2733f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9246fc68-bd7a-44c8-8bfe-43b94af2733f";
+"e4b41ecd-9476-42dd-b564-df398d2a5659" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"9246fc68-bd7a-44c8-8bfe-43b94af2733f" -> "e4b41ecd-9476-42dd-b564-df398d2a5659";
+"e9f2502e-0d97-46ba-8c3f-2421e17128fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9246fc68-bd7a-44c8-8bfe-43b94af2733f" -> "e9f2502e-0d97-46ba-8c3f-2421e17128fb";
+"d510a5a9-7230-4390-8793-06c7079a9c2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9246fc68-bd7a-44c8-8bfe-43b94af2733f" -> "d510a5a9-7230-4390-8793-06c7079a9c2d";
+"444e0b09-ef34-45b9-b889-34ab9858fc52" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"9246fc68-bd7a-44c8-8bfe-43b94af2733f" -> "444e0b09-ef34-45b9-b889-34ab9858fc52";
+"a46e0ea4-74b8-436d-8080-50eadef30458" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"9246fc68-bd7a-44c8-8bfe-43b94af2733f" -> "a46e0ea4-74b8-436d-8080-50eadef30458";
+"876093a3-cef6-445b-bdfb-33864e5fc07f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "876093a3-cef6-445b-bdfb-33864e5fc07f";
+"b8e9f30c-cab2-4ef3-87d5-30703fd8ce4b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"876093a3-cef6-445b-bdfb-33864e5fc07f" -> "b8e9f30c-cab2-4ef3-87d5-30703fd8ce4b";
+"f4d5878b-716e-42e4-a7df-ec2851369eaa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"876093a3-cef6-445b-bdfb-33864e5fc07f" -> "f4d5878b-716e-42e4-a7df-ec2851369eaa";
+"2e425296-595f-46c2-a867-ec82f9f6f662" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"876093a3-cef6-445b-bdfb-33864e5fc07f" -> "2e425296-595f-46c2-a867-ec82f9f6f662";
+"cbe22c6c-74f5-46a8-8d49-ab743ca5af93" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"876093a3-cef6-445b-bdfb-33864e5fc07f" -> "cbe22c6c-74f5-46a8-8d49-ab743ca5af93";
+"1fe53814-3609-408a-8120-ab2f647b2902" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Table)", shape=box, style=filled];
+"876093a3-cef6-445b-bdfb-33864e5fc07f" -> "1fe53814-3609-408a-8120-ab2f647b2902";
+"419acfc1-aa9b-4572-9561-217e20dbf7da" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "419acfc1-aa9b-4572-9561-217e20dbf7da";
+"c7e602d1-6581-4621-af1c-6cfc67e62a4c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"419acfc1-aa9b-4572-9561-217e20dbf7da" -> "c7e602d1-6581-4621-af1c-6cfc67e62a4c";
+"fdf722b1-053a-4cf9-b97b-b894d7249270" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"419acfc1-aa9b-4572-9561-217e20dbf7da" -> "fdf722b1-053a-4cf9-b97b-b894d7249270";
+"57cb32b0-c56b-4830-8aa3-72f3a6ba6029" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"419acfc1-aa9b-4572-9561-217e20dbf7da" -> "57cb32b0-c56b-4830-8aa3-72f3a6ba6029";
+"6aa8d59f-8b74-4957-a8bc-c9b1b9d71a62" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"419acfc1-aa9b-4572-9561-217e20dbf7da" -> "6aa8d59f-8b74-4957-a8bc-c9b1b9d71a62";
+"dc923371-bda2-4190-a201-86bc5d4bb6dd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"419acfc1-aa9b-4572-9561-217e20dbf7da" -> "dc923371-bda2-4190-a201-86bc5d4bb6dd";
+"86e40d6f-a8f9-42a4-8e72-d9c30bd1230b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "86e40d6f-a8f9-42a4-8e72-d9c30bd1230b";
+"056d63d1-fbfd-4d47-84ac-4c97a72f412e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"86e40d6f-a8f9-42a4-8e72-d9c30bd1230b" -> "056d63d1-fbfd-4d47-84ac-4c97a72f412e";
+"5a604a9b-e06a-4a38-b6a1-c58438f96f7d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"86e40d6f-a8f9-42a4-8e72-d9c30bd1230b" -> "5a604a9b-e06a-4a38-b6a1-c58438f96f7d";
+"795e9d5e-5f57-4cf8-84b2-b2d09ab4b36b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"86e40d6f-a8f9-42a4-8e72-d9c30bd1230b" -> "795e9d5e-5f57-4cf8-84b2-b2d09ab4b36b";
+"65d4f9e4-b1f1-432a-84b6-786824c464a1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"86e40d6f-a8f9-42a4-8e72-d9c30bd1230b" -> "65d4f9e4-b1f1-432a-84b6-786824c464a1";
+"acd75dbe-6863-4c3e-afee-68c22d529fb5" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,WaterTable)", shape=box, style=filled];
+"86e40d6f-a8f9-42a4-8e72-d9c30bd1230b" -> "acd75dbe-6863-4c3e-afee-68c22d529fb5";
+"8c963084-5f74-4b33-a359-bc98ab067e5e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8c963084-5f74-4b33-a359-bc98ab067e5e";
+"ccbf6e12-f838-47e0-83ed-534fc9569cd7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"8c963084-5f74-4b33-a359-bc98ab067e5e" -> "ccbf6e12-f838-47e0-83ed-534fc9569cd7";
+"cb2f1fa3-494c-40fc-b2ea-c6c4a43c1221" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8c963084-5f74-4b33-a359-bc98ab067e5e" -> "cb2f1fa3-494c-40fc-b2ea-c6c4a43c1221";
+"e67923ef-45a9-4b6d-88fd-75cb8e87d6c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8c963084-5f74-4b33-a359-bc98ab067e5e" -> "e67923ef-45a9-4b6d-88fd-75cb8e87d6c8";
+"c06d4711-09ea-4648-9283-5296f79d7fd7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"8c963084-5f74-4b33-a359-bc98ab067e5e" -> "c06d4711-09ea-4648-9283-5296f79d7fd7";
+"22fc2739-ffa4-4377-8745-3ef90e4bde80" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"8c963084-5f74-4b33-a359-bc98ab067e5e" -> "22fc2739-ffa4-4377-8745-3ef90e4bde80";
+"53bd47b5-0a5b-486d-b0fe-f98b85079e57" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "53bd47b5-0a5b-486d-b0fe-f98b85079e57";
+"d6f4b983-571a-4f96-9fd5-6c9dab97f013" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"53bd47b5-0a5b-486d-b0fe-f98b85079e57" -> "d6f4b983-571a-4f96-9fd5-6c9dab97f013";
+"25a0dc72-3aaf-4419-8340-35675963abce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"53bd47b5-0a5b-486d-b0fe-f98b85079e57" -> "25a0dc72-3aaf-4419-8340-35675963abce";
+"b4adf49a-74c2-46be-92d2-e300e07fc1b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"53bd47b5-0a5b-486d-b0fe-f98b85079e57" -> "b4adf49a-74c2-46be-92d2-e300e07fc1b6";
+"3381c632-765c-465a-a8a2-0a6a716cfaa1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"53bd47b5-0a5b-486d-b0fe-f98b85079e57" -> "3381c632-765c-465a-a8a2-0a6a716cfaa1";
+"92e20f04-b5ce-42b5-a106-60d6d53f4370" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"53bd47b5-0a5b-486d-b0fe-f98b85079e57" -> "92e20f04-b5ce-42b5-a106-60d6d53f4370";
+"ee858d86-4fac-4681-8f13-a50fec769602" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ee858d86-4fac-4681-8f13-a50fec769602";
+"960e0182-e7ea-4a18-b7ff-ecdd7a804106" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ee858d86-4fac-4681-8f13-a50fec769602" -> "960e0182-e7ea-4a18-b7ff-ecdd7a804106";
+"c9e72ce4-b00c-4d69-bdae-06ddf2bc2866" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ee858d86-4fac-4681-8f13-a50fec769602" -> "c9e72ce4-b00c-4d69-bdae-06ddf2bc2866";
+"29dad91a-76fc-46c3-a145-a94f9f4c0291" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"ee858d86-4fac-4681-8f13-a50fec769602" -> "29dad91a-76fc-46c3-a145-a94f9f4c0291";
+"b6a1fa34-8eb7-4966-a017-dfb1aaf75e0e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"ee858d86-4fac-4681-8f13-a50fec769602" -> "b6a1fa34-8eb7-4966-a017-dfb1aaf75e0e";
+"3fd069d8-bdc2-4ab0-bf64-26289b3f2b0b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "3fd069d8-bdc2-4ab0-bf64-26289b3f2b0b";
+"3d49ff67-9b5f-46a7-bf94-9bc93fdf0912" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"3fd069d8-bdc2-4ab0-bf64-26289b3f2b0b" -> "3d49ff67-9b5f-46a7-bf94-9bc93fdf0912";
+"7b02338a-05b9-43bf-b03f-1c187183271d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3fd069d8-bdc2-4ab0-bf64-26289b3f2b0b" -> "7b02338a-05b9-43bf-b03f-1c187183271d";
+"1c62a5b7-7f08-42a7-a7b4-f054a6260d54" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"3fd069d8-bdc2-4ab0-bf64-26289b3f2b0b" -> "1c62a5b7-7f08-42a7-a7b4-f054a6260d54";
+"e6d8651c-0c4d-44dd-858e-4067b873f31a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"3fd069d8-bdc2-4ab0-bf64-26289b3f2b0b" -> "e6d8651c-0c4d-44dd-858e-4067b873f31a";
+"7b1242bd-b528-45d0-bbe0-9901f89d3048" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "7b1242bd-b528-45d0-bbe0-9901f89d3048";
+"b86de745-e8fd-4a69-a9f7-b24a55b46880" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"7b1242bd-b528-45d0-bbe0-9901f89d3048" -> "b86de745-e8fd-4a69-a9f7-b24a55b46880";
+"70a89f7f-d4e3-40da-9129-d8c1c2beaedf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"7b1242bd-b528-45d0-bbe0-9901f89d3048" -> "70a89f7f-d4e3-40da-9129-d8c1c2beaedf";
+"99d238b9-5219-4e40-8a80-ad44064505fd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7b1242bd-b528-45d0-bbe0-9901f89d3048" -> "99d238b9-5219-4e40-8a80-ad44064505fd";
+"149bff68-eac1-4a37-97db-54120a941812" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"7b1242bd-b528-45d0-bbe0-9901f89d3048" -> "149bff68-eac1-4a37-97db-54120a941812";
+"3a941fb5-3fbe-4f55-912f-d8c39d302dd9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"7b1242bd-b528-45d0-bbe0-9901f89d3048" -> "3a941fb5-3fbe-4f55-912f-d8c39d302dd9";
+"bcbdf785-4877-4e2e-af09-94e7fe764a9c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "bcbdf785-4877-4e2e-af09-94e7fe764a9c";
+"274d4d6e-b4f7-4588-bf40-575f0c836a07" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"bcbdf785-4877-4e2e-af09-94e7fe764a9c" -> "274d4d6e-b4f7-4588-bf40-575f0c836a07";
+"d4e7fb66-74bd-43af-ac44-8efee75d0346" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bcbdf785-4877-4e2e-af09-94e7fe764a9c" -> "d4e7fb66-74bd-43af-ac44-8efee75d0346";
+"ce8588e4-cd34-4606-ba16-21718af4c14b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"bcbdf785-4877-4e2e-af09-94e7fe764a9c" -> "ce8588e4-cd34-4606-ba16-21718af4c14b";
+"a421e929-698f-44a3-a1e9-9cf29a95f173" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"bcbdf785-4877-4e2e-af09-94e7fe764a9c" -> "a421e929-698f-44a3-a1e9-9cf29a95f173";
+"c24a0a17-1114-4197-a422-502a10a4a386" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,BrightTable)", shape=box, style=filled];
+"bcbdf785-4877-4e2e-af09-94e7fe764a9c" -> "c24a0a17-1114-4197-a422-502a10a4a386";
+"d5a11f3d-4498-422c-9363-c25a18274e15" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d5a11f3d-4498-422c-9363-c25a18274e15";
+"ce27e756-127d-4b48-bbb9-1723ccd0d360" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d5a11f3d-4498-422c-9363-c25a18274e15" -> "ce27e756-127d-4b48-bbb9-1723ccd0d360";
+"962bcfb8-bbf8-4e3c-868f-7e9e41b2c97e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"d5a11f3d-4498-422c-9363-c25a18274e15" -> "962bcfb8-bbf8-4e3c-868f-7e9e41b2c97e";
+"b68f4bf8-5ec9-4eb6-912d-b4b816cc8bbe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d5a11f3d-4498-422c-9363-c25a18274e15" -> "b68f4bf8-5ec9-4eb6-912d-b4b816cc8bbe";
+"2a89ebbd-403e-4c73-b9e3-b7b4a0aba54d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"d5a11f3d-4498-422c-9363-c25a18274e15" -> "2a89ebbd-403e-4c73-b9e3-b7b4a0aba54d";
+"4dde59c3-139d-4f1a-83bd-f101df1e13f6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,CoffeeTable)", shape=box, style=filled];
+"d5a11f3d-4498-422c-9363-c25a18274e15" -> "4dde59c3-139d-4f1a-83bd-f101df1e13f6";
+"8e52d219-0e0c-41ce-83d1-d01c85336169" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8e52d219-0e0c-41ce-83d1-d01c85336169";
+"6f27d961-bf8b-498d-9483-049abafdf443" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8e52d219-0e0c-41ce-83d1-d01c85336169" -> "6f27d961-bf8b-498d-9483-049abafdf443";
+"e0e55da1-a57b-47f1-be86-286c76140a34" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"8e52d219-0e0c-41ce-83d1-d01c85336169" -> "e0e55da1-a57b-47f1-be86-286c76140a34";
+"f5e1ab44-1577-4786-bc95-be83be2bec1c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8e52d219-0e0c-41ce-83d1-d01c85336169" -> "f5e1ab44-1577-4786-bc95-be83be2bec1c";
+"56fb626c-eec0-494b-9b0f-db5cbf7fa1d2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"8e52d219-0e0c-41ce-83d1-d01c85336169" -> "56fb626c-eec0-494b-9b0f-db5cbf7fa1d2";
+"85e2b90d-c56b-4e7b-a562-7ad41804ff42" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,CoffeeTable)", shape=box, style=filled];
+"8e52d219-0e0c-41ce-83d1-d01c85336169" -> "85e2b90d-c56b-4e7b-a562-7ad41804ff42";
+"21eef6cf-7bf1-4227-9bd7-dcf2c4f0fdaf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "21eef6cf-7bf1-4227-9bd7-dcf2c4f0fdaf";
+"03d4e138-3566-4e85-b87f-89c83bd1e010" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"21eef6cf-7bf1-4227-9bd7-dcf2c4f0fdaf" -> "03d4e138-3566-4e85-b87f-89c83bd1e010";
+"133bb189-04c6-4abf-b66c-61c5343f85a0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"21eef6cf-7bf1-4227-9bd7-dcf2c4f0fdaf" -> "133bb189-04c6-4abf-b66c-61c5343f85a0";
+"319a20e1-410d-4a53-87c7-42937351e3b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"21eef6cf-7bf1-4227-9bd7-dcf2c4f0fdaf" -> "319a20e1-410d-4a53-87c7-42937351e3b5";
+"fa5217d7-9057-4c81-8bd7-92851f610f9d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"21eef6cf-7bf1-4227-9bd7-dcf2c4f0fdaf" -> "fa5217d7-9057-4c81-8bd7-92851f610f9d";
+"753be064-5b56-43a1-a9c9-a6a08c7efabd" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"21eef6cf-7bf1-4227-9bd7-dcf2c4f0fdaf" -> "753be064-5b56-43a1-a9c9-a6a08c7efabd";
+"e696add1-1e77-42c9-81f8-d85fb97b6e8c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e696add1-1e77-42c9-81f8-d85fb97b6e8c";
+"ae49647e-da74-4406-8676-472adbd51c73" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e696add1-1e77-42c9-81f8-d85fb97b6e8c" -> "ae49647e-da74-4406-8676-472adbd51c73";
+"e0f6f1e5-c264-4199-94e3-0baca9b96347" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e696add1-1e77-42c9-81f8-d85fb97b6e8c" -> "e0f6f1e5-c264-4199-94e3-0baca9b96347";
+"7bf275e4-a768-4929-b736-369b047890bd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"e696add1-1e77-42c9-81f8-d85fb97b6e8c" -> "7bf275e4-a768-4929-b736-369b047890bd";
+"1157dd05-84fc-4aa0-b6b0-64456b0396c3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"e696add1-1e77-42c9-81f8-d85fb97b6e8c" -> "1157dd05-84fc-4aa0-b6b0-64456b0396c3";
+"5967f861-96f7-4375-85ed-b20cf102bce8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"e696add1-1e77-42c9-81f8-d85fb97b6e8c" -> "5967f861-96f7-4375-85ed-b20cf102bce8";
+"a57200e5-add0-4fa8-90d9-8b34c6a75c0a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a57200e5-add0-4fa8-90d9-8b34c6a75c0a";
+"9bebca6d-78d9-45bc-8bfa-95eeac24b405" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a57200e5-add0-4fa8-90d9-8b34c6a75c0a" -> "9bebca6d-78d9-45bc-8bfa-95eeac24b405";
+"a44c6a71-a767-4ecf-b824-7671fca25295" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a57200e5-add0-4fa8-90d9-8b34c6a75c0a" -> "a44c6a71-a767-4ecf-b824-7671fca25295";
+"ba6f209d-bd4b-47fb-b3b0-56f350c22d61" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"a57200e5-add0-4fa8-90d9-8b34c6a75c0a" -> "ba6f209d-bd4b-47fb-b3b0-56f350c22d61";
+"ecf43f79-f2af-4870-bcca-826f4c723505" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"a57200e5-add0-4fa8-90d9-8b34c6a75c0a" -> "ecf43f79-f2af-4870-bcca-826f4c723505";
+"5f689d38-0baf-4dd4-8c2d-080f45e48005" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"a57200e5-add0-4fa8-90d9-8b34c6a75c0a" -> "5f689d38-0baf-4dd4-8c2d-080f45e48005";
+"fb5ab923-fcbb-47c5-be51-00b59f5717b0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "fb5ab923-fcbb-47c5-be51-00b59f5717b0";
+"607b042a-4777-4920-a051-332013efdb19" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fb5ab923-fcbb-47c5-be51-00b59f5717b0" -> "607b042a-4777-4920-a051-332013efdb19";
+"1c56b1b1-4e0b-494f-bd5c-50c376374277" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"fb5ab923-fcbb-47c5-be51-00b59f5717b0" -> "1c56b1b1-4e0b-494f-bd5c-50c376374277";
+"18fb7a42-0d7f-48f9-b407-d47c9583c1d3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"fb5ab923-fcbb-47c5-be51-00b59f5717b0" -> "18fb7a42-0d7f-48f9-b407-d47c9583c1d3";
+"c14e1486-bdc6-4d59-abf0-58319b690564" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"fb5ab923-fcbb-47c5-be51-00b59f5717b0" -> "c14e1486-bdc6-4d59-abf0-58319b690564";
+"3ccc07d8-bfe5-4fae-b8ae-7b4d70008900" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"fb5ab923-fcbb-47c5-be51-00b59f5717b0" -> "3ccc07d8-bfe5-4fae-b8ae-7b4d70008900";
+"ee1891b1-c1ca-4937-9797-e1561f63ba99" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ee1891b1-c1ca-4937-9797-e1561f63ba99";
+"5f8e746b-3708-4742-9129-677753bfb3d8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ee1891b1-c1ca-4937-9797-e1561f63ba99" -> "5f8e746b-3708-4742-9129-677753bfb3d8";
+"e73cae43-c50e-43a5-b0ab-96c1d3c05f7f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ee1891b1-c1ca-4937-9797-e1561f63ba99" -> "e73cae43-c50e-43a5-b0ab-96c1d3c05f7f";
+"031848ca-382f-49c8-b057-964066b9c76f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"ee1891b1-c1ca-4937-9797-e1561f63ba99" -> "031848ca-382f-49c8-b057-964066b9c76f";
+"7c93f875-2de1-4025-b66b-d02801dadb0b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"ee1891b1-c1ca-4937-9797-e1561f63ba99" -> "7c93f875-2de1-4025-b66b-d02801dadb0b";
+"840532f7-edf2-48ea-9938-5e3109e38c13" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"ee1891b1-c1ca-4937-9797-e1561f63ba99" -> "840532f7-edf2-48ea-9938-5e3109e38c13";
+"07db873c-4419-4b4f-8205-6bbc486d423a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "07db873c-4419-4b4f-8205-6bbc486d423a";
+"ab887bfb-9143-4ca8-89c7-a359225ab80a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"07db873c-4419-4b4f-8205-6bbc486d423a" -> "ab887bfb-9143-4ca8-89c7-a359225ab80a";
+"356f8860-f249-4ec3-ba78-d5976554ec8b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"07db873c-4419-4b4f-8205-6bbc486d423a" -> "356f8860-f249-4ec3-ba78-d5976554ec8b";
+"47474376-a398-4f1b-b321-1d6c1d5cef02" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"07db873c-4419-4b4f-8205-6bbc486d423a" -> "47474376-a398-4f1b-b321-1d6c1d5cef02";
+"07aa76ec-9f74-42d4-aa8b-9024aff1fd7c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"07db873c-4419-4b4f-8205-6bbc486d423a" -> "07aa76ec-9f74-42d4-aa8b-9024aff1fd7c";
+"82a89e82-8f75-4126-b756-d419bc92cd47" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Table)", shape=box, style=filled];
+"07db873c-4419-4b4f-8205-6bbc486d423a" -> "82a89e82-8f75-4126-b756-d419bc92cd47";
+"cf92a672-9466-4fad-a43b-43524387d782" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "cf92a672-9466-4fad-a43b-43524387d782";
+"04ddba9e-811b-4624-bdbf-86ac874b2850" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cf92a672-9466-4fad-a43b-43524387d782" -> "04ddba9e-811b-4624-bdbf-86ac874b2850";
+"a952521a-a0f6-4171-9c95-4108af61047f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"cf92a672-9466-4fad-a43b-43524387d782" -> "a952521a-a0f6-4171-9c95-4108af61047f";
+"48be13c8-3663-4ed9-a534-8cb664615163" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"cf92a672-9466-4fad-a43b-43524387d782" -> "48be13c8-3663-4ed9-a534-8cb664615163";
+"44d0bb58-1731-40e2-bd0c-de6b5c59cd01" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cf92a672-9466-4fad-a43b-43524387d782" -> "44d0bb58-1731-40e2-bd0c-de6b5c59cd01";
+"2e9f1707-a8cb-41b1-8620-0171a98afc36" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,WaterTable)", shape=box, style=filled];
+"cf92a672-9466-4fad-a43b-43524387d782" -> "2e9f1707-a8cb-41b1-8620-0171a98afc36";
+"9c8a0c95-9a18-46da-b0cb-450eaa24a6ad" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9c8a0c95-9a18-46da-b0cb-450eaa24a6ad";
+"45529897-b745-4969-896a-8c6dfcecd2c6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9c8a0c95-9a18-46da-b0cb-450eaa24a6ad" -> "45529897-b745-4969-896a-8c6dfcecd2c6";
+"1ffbf500-dbb5-4f66-a9c0-203195fa5cc2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"9c8a0c95-9a18-46da-b0cb-450eaa24a6ad" -> "1ffbf500-dbb5-4f66-a9c0-203195fa5cc2";
+"73b73f86-49af-4ebd-b8e6-5923fdb40e09" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"9c8a0c95-9a18-46da-b0cb-450eaa24a6ad" -> "73b73f86-49af-4ebd-b8e6-5923fdb40e09";
+"fb4a2de8-f189-4080-b655-d0d25a89863c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9c8a0c95-9a18-46da-b0cb-450eaa24a6ad" -> "fb4a2de8-f189-4080-b655-d0d25a89863c";
+"b75e8c0a-3c7e-47a6-b7b6-30635b4dbae8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,WaterTable)", shape=box, style=filled];
+"9c8a0c95-9a18-46da-b0cb-450eaa24a6ad" -> "b75e8c0a-3c7e-47a6-b7b6-30635b4dbae8";
+"940f5b43-f9b5-40bc-9057-a428fa1d2d22" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "940f5b43-f9b5-40bc-9057-a428fa1d2d22";
+"cbfe020c-0e72-4de3-9159-eba816a54f8b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"940f5b43-f9b5-40bc-9057-a428fa1d2d22" -> "cbfe020c-0e72-4de3-9159-eba816a54f8b";
+"8cc7fef1-444b-4e83-ab82-2db7ad97004c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"940f5b43-f9b5-40bc-9057-a428fa1d2d22" -> "8cc7fef1-444b-4e83-ab82-2db7ad97004c";
+"f475751e-023e-4bd5-9828-cc98f710695d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"940f5b43-f9b5-40bc-9057-a428fa1d2d22" -> "f475751e-023e-4bd5-9828-cc98f710695d";
+"9b1cc745-955e-411a-bd89-6b11569208fb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"940f5b43-f9b5-40bc-9057-a428fa1d2d22" -> "9b1cc745-955e-411a-bd89-6b11569208fb";
+"f6ee2ed4-418c-4b57-b824-50ce4525b8c1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"940f5b43-f9b5-40bc-9057-a428fa1d2d22" -> "f6ee2ed4-418c-4b57-b824-50ce4525b8c1";
+"05a08f37-24ee-4ad4-a935-6f6e9a33dbfe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "05a08f37-24ee-4ad4-a935-6f6e9a33dbfe";
+"896c3410-c106-48ac-b6ff-9754860c9d61" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"05a08f37-24ee-4ad4-a935-6f6e9a33dbfe" -> "896c3410-c106-48ac-b6ff-9754860c9d61";
+"d463ff14-d9ef-4b63-9c2f-772912bdcf74" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"05a08f37-24ee-4ad4-a935-6f6e9a33dbfe" -> "d463ff14-d9ef-4b63-9c2f-772912bdcf74";
+"7a671f10-ff72-41fd-827c-6dd90ee640eb" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"05a08f37-24ee-4ad4-a935-6f6e9a33dbfe" -> "7a671f10-ff72-41fd-827c-6dd90ee640eb";
+"18f9ff95-e47e-4be3-8f05-33ac86c2b8b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"05a08f37-24ee-4ad4-a935-6f6e9a33dbfe" -> "18f9ff95-e47e-4be3-8f05-33ac86c2b8b3";
+"b9d7ab4a-faa2-4011-ba2c-1c5c7802073f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"05a08f37-24ee-4ad4-a935-6f6e9a33dbfe" -> "b9d7ab4a-faa2-4011-ba2c-1c5c7802073f";
+"19a2ae2f-82f0-437b-ae8d-61945126e1dc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "19a2ae2f-82f0-437b-ae8d-61945126e1dc";
+"113aa7f8-e133-4963-8df2-2940527f9b54" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"19a2ae2f-82f0-437b-ae8d-61945126e1dc" -> "113aa7f8-e133-4963-8df2-2940527f9b54";
+"fc099702-da9c-426c-b5c8-ad1cb1055d18" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"19a2ae2f-82f0-437b-ae8d-61945126e1dc" -> "fc099702-da9c-426c-b5c8-ad1cb1055d18";
+"01f74d85-37a1-4dcc-8308-9e83b66a5ab2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"19a2ae2f-82f0-437b-ae8d-61945126e1dc" -> "01f74d85-37a1-4dcc-8308-9e83b66a5ab2";
+"c33e9b17-bdd6-453c-b54c-e9043fde5311" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"19a2ae2f-82f0-437b-ae8d-61945126e1dc" -> "c33e9b17-bdd6-453c-b54c-e9043fde5311";
+"c351fabc-d971-47b6-bd75-49117283f717" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "c351fabc-d971-47b6-bd75-49117283f717";
+"8c3675c0-10e9-49f8-9e33-7cb64747bf17" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"c351fabc-d971-47b6-bd75-49117283f717" -> "8c3675c0-10e9-49f8-9e33-7cb64747bf17";
+"d9b162b5-1c20-4603-b65c-91fed5800245" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c351fabc-d971-47b6-bd75-49117283f717" -> "d9b162b5-1c20-4603-b65c-91fed5800245";
+"96dff594-c2d3-4674-88c9-c1aae3fc963d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c351fabc-d971-47b6-bd75-49117283f717" -> "96dff594-c2d3-4674-88c9-c1aae3fc963d";
+"3d4e71a0-98d9-42b3-a7ec-6015607f343e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"c351fabc-d971-47b6-bd75-49117283f717" -> "3d4e71a0-98d9-42b3-a7ec-6015607f343e";
+"8f3183a1-332d-44e3-ae08-840619298e48" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8f3183a1-332d-44e3-ae08-840619298e48";
+"84091fd5-8774-4a6d-9336-66c90e29113b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"8f3183a1-332d-44e3-ae08-840619298e48" -> "84091fd5-8774-4a6d-9336-66c90e29113b";
+"e4031364-ccfa-4895-9e0b-74089a93a9a9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"8f3183a1-332d-44e3-ae08-840619298e48" -> "e4031364-ccfa-4895-9e0b-74089a93a9a9";
+"23f261ac-bb50-4bba-9fef-74aba985127d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8f3183a1-332d-44e3-ae08-840619298e48" -> "23f261ac-bb50-4bba-9fef-74aba985127d";
+"d8bd7f92-369a-4d7a-a3c3-bfd826437148" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8f3183a1-332d-44e3-ae08-840619298e48" -> "d8bd7f92-369a-4d7a-a3c3-bfd826437148";
+"6961ebd7-99d6-4725-b50f-ceaa976eaa51" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,BrightTable)", shape=box, style=filled];
+"8f3183a1-332d-44e3-ae08-840619298e48" -> "6961ebd7-99d6-4725-b50f-ceaa976eaa51";
+"93707b5e-7a0d-4318-84fe-d231cd0a46de" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "93707b5e-7a0d-4318-84fe-d231cd0a46de";
+"e503845e-072a-4f8f-8378-abb07dcf2845" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"93707b5e-7a0d-4318-84fe-d231cd0a46de" -> "e503845e-072a-4f8f-8378-abb07dcf2845";
+"21659908-932a-4732-81e5-f16af50a86d0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"93707b5e-7a0d-4318-84fe-d231cd0a46de" -> "21659908-932a-4732-81e5-f16af50a86d0";
+"2656f4e5-bd81-486b-a08d-4736bc21fb51" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"93707b5e-7a0d-4318-84fe-d231cd0a46de" -> "2656f4e5-bd81-486b-a08d-4736bc21fb51";
+"5aad7be5-6842-459a-ab65-f559c31849ab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"93707b5e-7a0d-4318-84fe-d231cd0a46de" -> "5aad7be5-6842-459a-ab65-f559c31849ab";
+"6e381100-3943-4c68-aae0-52399267a811" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,BrightTable)", shape=box, style=filled];
+"93707b5e-7a0d-4318-84fe-d231cd0a46de" -> "6e381100-3943-4c68-aae0-52399267a811";
+"e3d5896b-137c-43a5-be5e-dc67441d6302" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "e3d5896b-137c-43a5-be5e-dc67441d6302";
+"469b945d-69e8-4b86-bcc6-5bf562146e76" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"e3d5896b-137c-43a5-be5e-dc67441d6302" -> "469b945d-69e8-4b86-bcc6-5bf562146e76";
+"7a6b4a24-0f35-4151-ad28-8eec78212d98" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"e3d5896b-137c-43a5-be5e-dc67441d6302" -> "7a6b4a24-0f35-4151-ad28-8eec78212d98";
+"0d7435dc-d504-4a7e-a11c-b6aed15869c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"e3d5896b-137c-43a5-be5e-dc67441d6302" -> "0d7435dc-d504-4a7e-a11c-b6aed15869c8";
+"7bee6a38-2b42-4c8f-b838-0a409ff74ac1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e3d5896b-137c-43a5-be5e-dc67441d6302" -> "7bee6a38-2b42-4c8f-b838-0a409ff74ac1";
+"5831a3a2-a94b-4ee0-adb4-53b25a1be11b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,CoffeeTable)", shape=box, style=filled];
+"e3d5896b-137c-43a5-be5e-dc67441d6302" -> "5831a3a2-a94b-4ee0-adb4-53b25a1be11b";
+"03219396-157b-408a-8256-e0ca7ffa7ed2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "03219396-157b-408a-8256-e0ca7ffa7ed2";
+"4e783e98-4d44-43a7-af06-03178756bf3a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"03219396-157b-408a-8256-e0ca7ffa7ed2" -> "4e783e98-4d44-43a7-af06-03178756bf3a";
+"848b9025-d789-4494-be68-c393e26fd526" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"03219396-157b-408a-8256-e0ca7ffa7ed2" -> "848b9025-d789-4494-be68-c393e26fd526";
+"3d647450-4aed-4ca7-a8e1-369cee1be676" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"03219396-157b-408a-8256-e0ca7ffa7ed2" -> "3d647450-4aed-4ca7-a8e1-369cee1be676";
+"35c1569d-1ad2-4b8f-ac71-f8e427038d1e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"03219396-157b-408a-8256-e0ca7ffa7ed2" -> "35c1569d-1ad2-4b8f-ac71-f8e427038d1e";
+"e10eed7a-50db-4fbe-b56c-153316c19176" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,CoffeeTable)", shape=box, style=filled];
+"03219396-157b-408a-8256-e0ca7ffa7ed2" -> "e10eed7a-50db-4fbe-b56c-153316c19176";
+"4c81069c-a26f-4150-ba9c-d29ce8d1231b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "4c81069c-a26f-4150-ba9c-d29ce8d1231b";
+"a4b3dec3-c098-4441-8aa8-43d53f61a345" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"4c81069c-a26f-4150-ba9c-d29ce8d1231b" -> "a4b3dec3-c098-4441-8aa8-43d53f61a345";
+"807feefc-a535-4aa2-99a3-4d1f2be818a7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"4c81069c-a26f-4150-ba9c-d29ce8d1231b" -> "807feefc-a535-4aa2-99a3-4d1f2be818a7";
+"8ed56b6b-8033-44cf-89d4-c47c3f7ff399" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"4c81069c-a26f-4150-ba9c-d29ce8d1231b" -> "8ed56b6b-8033-44cf-89d4-c47c3f7ff399";
+"45f60cc2-e4a0-4235-885d-c9dc4b02da2f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"4c81069c-a26f-4150-ba9c-d29ce8d1231b" -> "45f60cc2-e4a0-4235-885d-c9dc4b02da2f";
+"8b6ecdfb-2395-40f8-9bdf-29abb7851316" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"4c81069c-a26f-4150-ba9c-d29ce8d1231b" -> "8b6ecdfb-2395-40f8-9bdf-29abb7851316";
+"709e0257-9e1b-4213-b8d0-bcc865ec9207" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "709e0257-9e1b-4213-b8d0-bcc865ec9207";
+"c7e75246-2510-4dd9-9035-737ee0fb5fe8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"709e0257-9e1b-4213-b8d0-bcc865ec9207" -> "c7e75246-2510-4dd9-9035-737ee0fb5fe8";
+"579c5d5c-5433-4a5b-b679-73be714c17a1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"709e0257-9e1b-4213-b8d0-bcc865ec9207" -> "579c5d5c-5433-4a5b-b679-73be714c17a1";
+"dd629349-a727-4adb-8eb5-7b852154e28e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"709e0257-9e1b-4213-b8d0-bcc865ec9207" -> "dd629349-a727-4adb-8eb5-7b852154e28e";
+"c640e94c-abbc-4f15-b4a6-3e237d9dda96" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"709e0257-9e1b-4213-b8d0-bcc865ec9207" -> "c640e94c-abbc-4f15-b4a6-3e237d9dda96";
+"f21915d1-e2cb-4341-ad64-cb696f561b88" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"709e0257-9e1b-4213-b8d0-bcc865ec9207" -> "f21915d1-e2cb-4341-ad64-cb696f561b88";
+"cb9a8ed6-fbc5-414e-a168-9761c6012c71" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "cb9a8ed6-fbc5-414e-a168-9761c6012c71";
+"ba9c8ae8-ad93-46f5-b90a-a6c77b4d87c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"cb9a8ed6-fbc5-414e-a168-9761c6012c71" -> "ba9c8ae8-ad93-46f5-b90a-a6c77b4d87c9";
+"39564a71-ccf4-411a-9ee1-f9190cced51e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cb9a8ed6-fbc5-414e-a168-9761c6012c71" -> "39564a71-ccf4-411a-9ee1-f9190cced51e";
+"c4bde2c3-9c42-4a76-8478-a34f2aa2937c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cb9a8ed6-fbc5-414e-a168-9761c6012c71" -> "c4bde2c3-9c42-4a76-8478-a34f2aa2937c";
+"6e143c38-9f9d-408c-ba59-cd2ae2a727fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"cb9a8ed6-fbc5-414e-a168-9761c6012c71" -> "6e143c38-9f9d-408c-ba59-cd2ae2a727fa";
+"50002230-0d75-4d96-8375-280ab77bd7e6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"cb9a8ed6-fbc5-414e-a168-9761c6012c71" -> "50002230-0d75-4d96-8375-280ab77bd7e6";
+"d9824a78-a503-4435-a735-762f770d3813" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d9824a78-a503-4435-a735-762f770d3813";
+"44b8c0f1-5a20-4d32-a025-01df32367444" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"d9824a78-a503-4435-a735-762f770d3813" -> "44b8c0f1-5a20-4d32-a025-01df32367444";
+"89211a8f-ef87-425c-8ce6-bafca509dc20" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d9824a78-a503-4435-a735-762f770d3813" -> "89211a8f-ef87-425c-8ce6-bafca509dc20";
+"baeff367-13e1-498a-b28e-bce2aff7491a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d9824a78-a503-4435-a735-762f770d3813" -> "baeff367-13e1-498a-b28e-bce2aff7491a";
+"63f90689-f405-4727-b2d9-5e59633242d7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"d9824a78-a503-4435-a735-762f770d3813" -> "63f90689-f405-4727-b2d9-5e59633242d7";
+"344402b7-89cc-422b-9afe-1e2be790495c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"d9824a78-a503-4435-a735-762f770d3813" -> "344402b7-89cc-422b-9afe-1e2be790495c";
+"17329e69-af80-4180-9904-8cec14e717ab" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "17329e69-af80-4180-9904-8cec14e717ab";
+"fcda5a3f-de41-464a-828c-7556c20f6803" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"17329e69-af80-4180-9904-8cec14e717ab" -> "fcda5a3f-de41-464a-828c-7556c20f6803";
+"734dddba-26b7-439e-b25c-b8980c349326" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"17329e69-af80-4180-9904-8cec14e717ab" -> "734dddba-26b7-439e-b25c-b8980c349326";
+"8a4296bc-6dc8-4450-8a97-3142785da995" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"17329e69-af80-4180-9904-8cec14e717ab" -> "8a4296bc-6dc8-4450-8a97-3142785da995";
+"83418e71-fac4-4c24-a7ea-df982ef48360" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"17329e69-af80-4180-9904-8cec14e717ab" -> "83418e71-fac4-4c24-a7ea-df982ef48360";
+"48f10d91-a710-4f19-9705-ddd02e0ac26b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"17329e69-af80-4180-9904-8cec14e717ab" -> "48f10d91-a710-4f19-9705-ddd02e0ac26b";
+"290d5562-d7bc-4920-b539-3e51f2377361" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "290d5562-d7bc-4920-b539-3e51f2377361";
+"6260a159-47d6-494d-9712-f2028d68df2f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"290d5562-d7bc-4920-b539-3e51f2377361" -> "6260a159-47d6-494d-9712-f2028d68df2f";
+"69c3035b-e6e0-417f-94ad-3a2b51ab24a5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"290d5562-d7bc-4920-b539-3e51f2377361" -> "69c3035b-e6e0-417f-94ad-3a2b51ab24a5";
+"fcd2eb97-af08-43b9-b6a1-347076c24a44" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"290d5562-d7bc-4920-b539-3e51f2377361" -> "fcd2eb97-af08-43b9-b6a1-347076c24a44";
+"c5abc375-7ac4-4445-8e24-d254f5b7065e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"290d5562-d7bc-4920-b539-3e51f2377361" -> "c5abc375-7ac4-4445-8e24-d254f5b7065e";
+"b33809b1-5d7b-4a97-b78a-0aefe9e7073b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Table)", shape=box, style=filled];
+"290d5562-d7bc-4920-b539-3e51f2377361" -> "b33809b1-5d7b-4a97-b78a-0aefe9e7073b";
+"2d2645c1-433b-4138-beac-caa410346f8e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2d2645c1-433b-4138-beac-caa410346f8e";
+"18786d2d-7b00-4262-abc0-16bf5ca538ae" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"2d2645c1-433b-4138-beac-caa410346f8e" -> "18786d2d-7b00-4262-abc0-16bf5ca538ae";
+"1836cf05-9041-47cd-9514-c3d6787d5b6e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2d2645c1-433b-4138-beac-caa410346f8e" -> "1836cf05-9041-47cd-9514-c3d6787d5b6e";
+"6bae1ff2-6aa1-43db-a7ca-834432e23627" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"2d2645c1-433b-4138-beac-caa410346f8e" -> "6bae1ff2-6aa1-43db-a7ca-834432e23627";
+"cbba14b3-ae1a-4a5a-a47b-4b98bb2fe925" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2d2645c1-433b-4138-beac-caa410346f8e" -> "cbba14b3-ae1a-4a5a-a47b-4b98bb2fe925";
+"9f9f03a6-3460-46e0-9bb1-8513b1a448e0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,WaterTable)", shape=box, style=filled];
+"2d2645c1-433b-4138-beac-caa410346f8e" -> "9f9f03a6-3460-46e0-9bb1-8513b1a448e0";
+"6f14c627-0122-40be-8c57-541d752e60f6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6f14c627-0122-40be-8c57-541d752e60f6";
+"ff974da8-a580-4f70-b296-c824dafcc1d3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"6f14c627-0122-40be-8c57-541d752e60f6" -> "ff974da8-a580-4f70-b296-c824dafcc1d3";
+"94795be3-4cc7-4397-a95e-93be13059439" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6f14c627-0122-40be-8c57-541d752e60f6" -> "94795be3-4cc7-4397-a95e-93be13059439";
+"403f1a36-a06a-445a-89f3-547f081ce8fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"6f14c627-0122-40be-8c57-541d752e60f6" -> "403f1a36-a06a-445a-89f3-547f081ce8fa";
+"a1c3ac38-3116-4270-8775-36ede882f9b7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6f14c627-0122-40be-8c57-541d752e60f6" -> "a1c3ac38-3116-4270-8775-36ede882f9b7";
+"7aa50814-aa97-4653-a8dd-1978b69f2e3b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,WaterTable)", shape=box, style=filled];
+"6f14c627-0122-40be-8c57-541d752e60f6" -> "7aa50814-aa97-4653-a8dd-1978b69f2e3b";
+"2cf6bd3f-d7b4-4236-bcad-5bd7b5b9d4d3" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "2cf6bd3f-d7b4-4236-bcad-5bd7b5b9d4d3";
+"1a04993a-d418-4956-90b4-14189ccf5cb5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"2cf6bd3f-d7b4-4236-bcad-5bd7b5b9d4d3" -> "1a04993a-d418-4956-90b4-14189ccf5cb5";
+"dfdc946c-2e77-471d-8e48-045ebdfe5c4f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"2cf6bd3f-d7b4-4236-bcad-5bd7b5b9d4d3" -> "dfdc946c-2e77-471d-8e48-045ebdfe5c4f";
+"cbf799b8-1b49-404c-9380-af018958a916" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"2cf6bd3f-d7b4-4236-bcad-5bd7b5b9d4d3" -> "cbf799b8-1b49-404c-9380-af018958a916";
+"9e0ebfbd-0f56-426b-ae0f-301f44ef154b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"2cf6bd3f-d7b4-4236-bcad-5bd7b5b9d4d3" -> "9e0ebfbd-0f56-426b-ae0f-301f44ef154b";
+"037b3c8c-0f69-4a29-bb5e-f7a345b4b06b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"2cf6bd3f-d7b4-4236-bcad-5bd7b5b9d4d3" -> "037b3c8c-0f69-4a29-bb5e-f7a345b4b06b";
+"5f362f89-c782-474d-be59-53598c8aa969" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "5f362f89-c782-474d-be59-53598c8aa969";
+"d8cfabad-4a31-4736-9d2b-fe71cf5d35f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"5f362f89-c782-474d-be59-53598c8aa969" -> "d8cfabad-4a31-4736-9d2b-fe71cf5d35f3";
+"4c840a0c-4bd2-4ed0-aed8-9886d2a850d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5f362f89-c782-474d-be59-53598c8aa969" -> "4c840a0c-4bd2-4ed0-aed8-9886d2a850d6";
+"e5707913-d39f-40cd-9e04-74134a4c0ca9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5f362f89-c782-474d-be59-53598c8aa969" -> "e5707913-d39f-40cd-9e04-74134a4c0ca9";
+"d3d816e7-c870-405c-913d-cbf092c227af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"5f362f89-c782-474d-be59-53598c8aa969" -> "d3d816e7-c870-405c-913d-cbf092c227af";
+"424ef6e3-4622-4f09-8b17-1a46413f6992" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"5f362f89-c782-474d-be59-53598c8aa969" -> "424ef6e3-4622-4f09-8b17-1a46413f6992";
+"8cb2f7a5-54b3-4f5c-bc21-7fc8df99cefb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8cb2f7a5-54b3-4f5c-bc21-7fc8df99cefb";
+"902b4913-b516-430b-95db-cb212e5943bc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8cb2f7a5-54b3-4f5c-bc21-7fc8df99cefb" -> "902b4913-b516-430b-95db-cb212e5943bc";
+"f967093d-5e4c-40d7-879e-d2e8b69bb2c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8cb2f7a5-54b3-4f5c-bc21-7fc8df99cefb" -> "f967093d-5e4c-40d7-879e-d2e8b69bb2c8";
+"051b2383-2318-42fa-b4c8-a0b2e69e0640" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"8cb2f7a5-54b3-4f5c-bc21-7fc8df99cefb" -> "051b2383-2318-42fa-b4c8-a0b2e69e0640";
+"2e6b6503-3251-4c75-b27e-5d8f6527246b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"8cb2f7a5-54b3-4f5c-bc21-7fc8df99cefb" -> "2e6b6503-3251-4c75-b27e-5d8f6527246b";
+"fd9e2412-2a05-4377-9807-573a4de33e6e" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "fd9e2412-2a05-4377-9807-573a4de33e6e";
+"a383abe1-2d5a-44b2-a0d2-2528751529d5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"fd9e2412-2a05-4377-9807-573a4de33e6e" -> "a383abe1-2d5a-44b2-a0d2-2528751529d5";
+"c5e474e3-8a89-4834-8cc8-477c803e81ce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"fd9e2412-2a05-4377-9807-573a4de33e6e" -> "c5e474e3-8a89-4834-8cc8-477c803e81ce";
+"bba16fe9-4805-4acb-a1f9-e86864f96d78" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"fd9e2412-2a05-4377-9807-573a4de33e6e" -> "bba16fe9-4805-4acb-a1f9-e86864f96d78";
+"78b3fd77-4601-4812-96cc-6865e95f4031" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"fd9e2412-2a05-4377-9807-573a4de33e6e" -> "78b3fd77-4601-4812-96cc-6865e95f4031";
+"369c501f-069a-41ea-889f-15482c82ed21" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "369c501f-069a-41ea-889f-15482c82ed21";
+"6a60bddc-f42c-42ce-80ea-1355ee068ad2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"369c501f-069a-41ea-889f-15482c82ed21" -> "6a60bddc-f42c-42ce-80ea-1355ee068ad2";
+"a081bb1b-ad83-447a-9511-f68ed21445be" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"369c501f-069a-41ea-889f-15482c82ed21" -> "a081bb1b-ad83-447a-9511-f68ed21445be";
+"5907dade-629a-4dac-ba8c-edf9b16929c7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"369c501f-069a-41ea-889f-15482c82ed21" -> "5907dade-629a-4dac-ba8c-edf9b16929c7";
+"9c302604-9b15-451b-b999-adc0cdd56af4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"369c501f-069a-41ea-889f-15482c82ed21" -> "9c302604-9b15-451b-b999-adc0cdd56af4";
+"eb8e0c1d-2b1f-47b8-a72b-08277db6f713" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,BrightTable)", shape=box, style=filled];
+"369c501f-069a-41ea-889f-15482c82ed21" -> "eb8e0c1d-2b1f-47b8-a72b-08277db6f713";
+"474a0991-dd82-4d38-bfbe-3c788b5d6652" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "474a0991-dd82-4d38-bfbe-3c788b5d6652";
+"e88d865d-26e3-4a5a-a529-fc99aaabb782" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"474a0991-dd82-4d38-bfbe-3c788b5d6652" -> "e88d865d-26e3-4a5a-a529-fc99aaabb782";
+"bac1a429-2eb4-43cf-97e8-a0da6f21c91f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"474a0991-dd82-4d38-bfbe-3c788b5d6652" -> "bac1a429-2eb4-43cf-97e8-a0da6f21c91f";
+"073b0ae7-7c2f-45b6-90ec-7265a941f58f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"474a0991-dd82-4d38-bfbe-3c788b5d6652" -> "073b0ae7-7c2f-45b6-90ec-7265a941f58f";
+"2b612be9-0490-4e63-ae0f-6a6008fd98b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"474a0991-dd82-4d38-bfbe-3c788b5d6652" -> "2b612be9-0490-4e63-ae0f-6a6008fd98b5";
+"bdfb6fbe-2261-4625-b92a-ac5af383e123" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,BrightTable)", shape=box, style=filled];
+"474a0991-dd82-4d38-bfbe-3c788b5d6652" -> "bdfb6fbe-2261-4625-b92a-ac5af383e123";
+"6eee65f0-61d5-4603-91c2-e3ac4acd7b3d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6eee65f0-61d5-4603-91c2-e3ac4acd7b3d";
+"d997d491-d910-4327-a8ab-a877991f7af7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6eee65f0-61d5-4603-91c2-e3ac4acd7b3d" -> "d997d491-d910-4327-a8ab-a877991f7af7";
+"876dd7fe-158a-438f-ad3d-d14c789c1c32" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"6eee65f0-61d5-4603-91c2-e3ac4acd7b3d" -> "876dd7fe-158a-438f-ad3d-d14c789c1c32";
+"4e4c5629-3b38-453a-ada5-ba8ad0b311b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6eee65f0-61d5-4603-91c2-e3ac4acd7b3d" -> "4e4c5629-3b38-453a-ada5-ba8ad0b311b6";
+"cb796170-e675-449a-973f-ba1f445b11ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"6eee65f0-61d5-4603-91c2-e3ac4acd7b3d" -> "cb796170-e675-449a-973f-ba1f445b11ef";
+"99fd11b7-ffdb-487d-bfd6-d7e98fbb4f69" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,CoffeeTable)", shape=box, style=filled];
+"6eee65f0-61d5-4603-91c2-e3ac4acd7b3d" -> "99fd11b7-ffdb-487d-bfd6-d7e98fbb4f69";
+"88e2b6e1-6f60-4639-924a-f0f6d56d9da4" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "88e2b6e1-6f60-4639-924a-f0f6d56d9da4";
+"7bf4e5b4-0b33-4efc-9c81-a65952c583f6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"88e2b6e1-6f60-4639-924a-f0f6d56d9da4" -> "7bf4e5b4-0b33-4efc-9c81-a65952c583f6";
+"cd569634-d451-4e86-becf-d1333e2f51be" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"88e2b6e1-6f60-4639-924a-f0f6d56d9da4" -> "cd569634-d451-4e86-becf-d1333e2f51be";
+"9485b1af-3891-4a16-a83e-f7b89e5278cc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"88e2b6e1-6f60-4639-924a-f0f6d56d9da4" -> "9485b1af-3891-4a16-a83e-f7b89e5278cc";
+"a0b97e88-2907-43e2-b520-3b0e3f7a0bcd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"88e2b6e1-6f60-4639-924a-f0f6d56d9da4" -> "a0b97e88-2907-43e2-b520-3b0e3f7a0bcd";
+"f28c4222-d5da-4f2f-931a-83fae62e1079" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,CoffeeTable)", shape=box, style=filled];
+"88e2b6e1-6f60-4639-924a-f0f6d56d9da4" -> "f28c4222-d5da-4f2f-931a-83fae62e1079";
+"a1122361-6d15-4024-8efa-a585e4af9d3d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a1122361-6d15-4024-8efa-a585e4af9d3d";
+"180eee9e-63c1-4299-b7a3-351c5a446400" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a1122361-6d15-4024-8efa-a585e4af9d3d" -> "180eee9e-63c1-4299-b7a3-351c5a446400";
+"5863ea6a-5cc9-4eb0-970b-7ec2888ef6ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a1122361-6d15-4024-8efa-a585e4af9d3d" -> "5863ea6a-5cc9-4eb0-970b-7ec2888ef6ff";
+"32e91fc0-b9fc-42b2-9cac-22410ed448f9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"a1122361-6d15-4024-8efa-a585e4af9d3d" -> "32e91fc0-b9fc-42b2-9cac-22410ed448f9";
+"13b65db9-99d2-4e61-bd40-97ed360bc540" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"a1122361-6d15-4024-8efa-a585e4af9d3d" -> "13b65db9-99d2-4e61-bd40-97ed360bc540";
+"2a591bc5-3eba-4b5d-b77f-555ccdc9d03d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"a1122361-6d15-4024-8efa-a585e4af9d3d" -> "2a591bc5-3eba-4b5d-b77f-555ccdc9d03d";
+"035e1389-e4d6-48ad-8f34-d9ed97082b21" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "035e1389-e4d6-48ad-8f34-d9ed97082b21";
+"56edd37e-1d61-4464-8e8f-b6c0046964ef" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"035e1389-e4d6-48ad-8f34-d9ed97082b21" -> "56edd37e-1d61-4464-8e8f-b6c0046964ef";
+"dd9aa61a-9c4b-4bef-b1be-4121c8e5cf9c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"035e1389-e4d6-48ad-8f34-d9ed97082b21" -> "dd9aa61a-9c4b-4bef-b1be-4121c8e5cf9c";
+"2177439a-b6de-4568-a4f5-54ca912c077e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"035e1389-e4d6-48ad-8f34-d9ed97082b21" -> "2177439a-b6de-4568-a4f5-54ca912c077e";
+"89bb5d72-4749-4ffd-b395-43cde8d76096" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"035e1389-e4d6-48ad-8f34-d9ed97082b21" -> "89bb5d72-4749-4ffd-b395-43cde8d76096";
+"e9a2bc92-cdbf-41b4-a9e8-eff706e736f2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"035e1389-e4d6-48ad-8f34-d9ed97082b21" -> "e9a2bc92-cdbf-41b4-a9e8-eff706e736f2";
+"8a66bebc-6dd3-4f8c-95e3-3a31391e2d98" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8a66bebc-6dd3-4f8c-95e3-3a31391e2d98";
+"8bfc4c4a-0a62-4b50-a274-c62845b437ad" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8a66bebc-6dd3-4f8c-95e3-3a31391e2d98" -> "8bfc4c4a-0a62-4b50-a274-c62845b437ad";
+"d47a0a64-df3f-45d7-8310-1508b989d3af" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8a66bebc-6dd3-4f8c-95e3-3a31391e2d98" -> "d47a0a64-df3f-45d7-8310-1508b989d3af";
+"4a9b3e58-3ea6-4312-a8b4-491808a18e61" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"8a66bebc-6dd3-4f8c-95e3-3a31391e2d98" -> "4a9b3e58-3ea6-4312-a8b4-491808a18e61";
+"c1c8b5d9-555b-4808-abbe-e408a1f7d4c1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"8a66bebc-6dd3-4f8c-95e3-3a31391e2d98" -> "c1c8b5d9-555b-4808-abbe-e408a1f7d4c1";
+"6374d232-ff7f-418a-a2f6-02d1efd568f4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"8a66bebc-6dd3-4f8c-95e3-3a31391e2d98" -> "6374d232-ff7f-418a-a2f6-02d1efd568f4";
+"75723800-61bf-452a-a3ef-6a622f27832a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "75723800-61bf-452a-a3ef-6a622f27832a";
+"ba00313c-4862-4a42-9252-235a0a1248da" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"75723800-61bf-452a-a3ef-6a622f27832a" -> "ba00313c-4862-4a42-9252-235a0a1248da";
+"a0b01e2e-9568-43ec-ab3a-46cc771e14fe" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"75723800-61bf-452a-a3ef-6a622f27832a" -> "a0b01e2e-9568-43ec-ab3a-46cc771e14fe";
+"cfbc0408-d13c-4047-bc91-60661ee56cb8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"75723800-61bf-452a-a3ef-6a622f27832a" -> "cfbc0408-d13c-4047-bc91-60661ee56cb8";
+"ac17e736-6f57-48ba-b143-d8010eb2b69a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"75723800-61bf-452a-a3ef-6a622f27832a" -> "ac17e736-6f57-48ba-b143-d8010eb2b69a";
+"d976d631-7e71-4e04-af9b-78946079c914" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"75723800-61bf-452a-a3ef-6a622f27832a" -> "d976d631-7e71-4e04-af9b-78946079c914";
+"6b9a7d82-a9fb-4f53-9476-c552acf87cdc" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6b9a7d82-a9fb-4f53-9476-c552acf87cdc";
+"daf41919-8f0c-4384-8002-1ea7580b4578" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6b9a7d82-a9fb-4f53-9476-c552acf87cdc" -> "daf41919-8f0c-4384-8002-1ea7580b4578";
+"adb9897f-2762-400d-b9b9-35f5ecdd58cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6b9a7d82-a9fb-4f53-9476-c552acf87cdc" -> "adb9897f-2762-400d-b9b9-35f5ecdd58cd";
+"d25e57f2-4c7f-41c6-b2e2-736dba76bc54" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"6b9a7d82-a9fb-4f53-9476-c552acf87cdc" -> "d25e57f2-4c7f-41c6-b2e2-736dba76bc54";
+"e220decc-00df-4c39-a5d5-94249c68d68d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"6b9a7d82-a9fb-4f53-9476-c552acf87cdc" -> "e220decc-00df-4c39-a5d5-94249c68d68d";
+"9ad137ed-81c9-426f-8421-238e65e23f62" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"6b9a7d82-a9fb-4f53-9476-c552acf87cdc" -> "9ad137ed-81c9-426f-8421-238e65e23f62";
+"5861c6d6-8ca8-41b0-b110-f88ce6be0472" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "5861c6d6-8ca8-41b0-b110-f88ce6be0472";
+"3a9a6da6-26d3-4a5f-a90e-4b743e6da251" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5861c6d6-8ca8-41b0-b110-f88ce6be0472" -> "3a9a6da6-26d3-4a5f-a90e-4b743e6da251";
+"a87fc80f-67f4-4cdd-a910-c6954a24cc46" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5861c6d6-8ca8-41b0-b110-f88ce6be0472" -> "a87fc80f-67f4-4cdd-a910-c6954a24cc46";
+"e608e2c8-6170-480e-8f8f-7d021fd4bbf1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"5861c6d6-8ca8-41b0-b110-f88ce6be0472" -> "e608e2c8-6170-480e-8f8f-7d021fd4bbf1";
+"496aca22-0e19-4b5b-91a3-191eae9742b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"5861c6d6-8ca8-41b0-b110-f88ce6be0472" -> "496aca22-0e19-4b5b-91a3-191eae9742b2";
+"1ab167bf-13c9-439e-b249-c0087c7a12f8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Table)", shape=box, style=filled];
+"5861c6d6-8ca8-41b0-b110-f88ce6be0472" -> "1ab167bf-13c9-439e-b249-c0087c7a12f8";
+"ce93e11e-d779-4996-8aa2-5dcb7f9e19bf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ce93e11e-d779-4996-8aa2-5dcb7f9e19bf";
+"8d10c3dc-3ed6-4107-b28d-86e0d14d247d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ce93e11e-d779-4996-8aa2-5dcb7f9e19bf" -> "8d10c3dc-3ed6-4107-b28d-86e0d14d247d";
+"b59e8dff-27a0-4c5f-a8d6-ab049b8b2a7f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"ce93e11e-d779-4996-8aa2-5dcb7f9e19bf" -> "b59e8dff-27a0-4c5f-a8d6-ab049b8b2a7f";
+"e85ee55c-6d10-4c0c-947f-99134e0cdb6d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"ce93e11e-d779-4996-8aa2-5dcb7f9e19bf" -> "e85ee55c-6d10-4c0c-947f-99134e0cdb6d";
+"955828bb-fb82-4bf0-816d-7b0b0e056d94" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ce93e11e-d779-4996-8aa2-5dcb7f9e19bf" -> "955828bb-fb82-4bf0-816d-7b0b0e056d94";
+"0ab9e49b-6dda-43b4-b3ce-ea43259770d8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"ce93e11e-d779-4996-8aa2-5dcb7f9e19bf" -> "0ab9e49b-6dda-43b4-b3ce-ea43259770d8";
+"d7c709dd-3f28-4539-8d1b-acbd3fefaff7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d7c709dd-3f28-4539-8d1b-acbd3fefaff7";
+"5bf4ca7a-a847-4bb9-b4d4-c8655a802bf9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d7c709dd-3f28-4539-8d1b-acbd3fefaff7" -> "5bf4ca7a-a847-4bb9-b4d4-c8655a802bf9";
+"ea460e2c-eea4-49f5-b26e-9fecb798e0a6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"d7c709dd-3f28-4539-8d1b-acbd3fefaff7" -> "ea460e2c-eea4-49f5-b26e-9fecb798e0a6";
+"49c95509-1827-4554-9d89-571c1e152754" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"d7c709dd-3f28-4539-8d1b-acbd3fefaff7" -> "49c95509-1827-4554-9d89-571c1e152754";
+"14d7c141-63d5-4d80-ae87-f2966ba23f18" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d7c709dd-3f28-4539-8d1b-acbd3fefaff7" -> "14d7c141-63d5-4d80-ae87-f2966ba23f18";
+"da6d5045-a716-4690-bc58-f2d55913e908" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,WaterTable)", shape=box, style=filled];
+"d7c709dd-3f28-4539-8d1b-acbd3fefaff7" -> "da6d5045-a716-4690-bc58-f2d55913e908";
+"22e3d743-cae3-4453-8a99-11f492e0b751" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "22e3d743-cae3-4453-8a99-11f492e0b751";
+"c185c052-b3ca-4fbb-8568-5ce3b20ef8b8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"22e3d743-cae3-4453-8a99-11f492e0b751" -> "c185c052-b3ca-4fbb-8568-5ce3b20ef8b8";
+"2819d1b1-3ad0-4d2e-a5dd-0eba8f608258" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"22e3d743-cae3-4453-8a99-11f492e0b751" -> "2819d1b1-3ad0-4d2e-a5dd-0eba8f608258";
+"51c5eba8-bccd-4239-a4ff-c815f7904a4b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"22e3d743-cae3-4453-8a99-11f492e0b751" -> "51c5eba8-bccd-4239-a4ff-c815f7904a4b";
+"a963a33a-936e-49ed-b353-552e3c87d169" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"22e3d743-cae3-4453-8a99-11f492e0b751" -> "a963a33a-936e-49ed-b353-552e3c87d169";
+"35a50a28-a6c6-432e-887e-ed771da51722" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"22e3d743-cae3-4453-8a99-11f492e0b751" -> "35a50a28-a6c6-432e-887e-ed771da51722";
+"48844703-348a-49db-b208-088b73fb68c0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "48844703-348a-49db-b208-088b73fb68c0";
+"ebf8f994-e972-435a-9d8b-256f31aea702" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar)", shape=ellipse, style=filled];
+"48844703-348a-49db-b208-088b73fb68c0" -> "ebf8f994-e972-435a-9d8b-256f31aea702";
+"5ddedeb2-4138-4436-b65f-a3dfa349aa73" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"48844703-348a-49db-b208-088b73fb68c0" -> "5ddedeb2-4138-4436-b65f-a3dfa349aa73";
+"be003da7-a92b-4f3c-a663-eafdb98e7885" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"48844703-348a-49db-b208-088b73fb68c0" -> "be003da7-a92b-4f3c-a663-eafdb98e7885";
+"4da98aef-3a34-4380-8e77-eb20a9f8f73c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"48844703-348a-49db-b208-088b73fb68c0" -> "4da98aef-3a34-4380-8e77-eb20a9f8f73c";
+"5171bae7-13f7-48d8-b268-d2f36f3708a4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"48844703-348a-49db-b208-088b73fb68c0" -> "5171bae7-13f7-48d8-b268-d2f36f3708a4";
+"5075deb2-1c6b-4f5b-8485-7f8a74f76d30" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "5075deb2-1c6b-4f5b-8485-7f8a74f76d30";
+"c4f31573-1242-4368-94ef-19807b3b5c9d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"5075deb2-1c6b-4f5b-8485-7f8a74f76d30" -> "c4f31573-1242-4368-94ef-19807b3b5c9d";
+"6016671d-13ed-4175-a508-8e07fff78638" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"5075deb2-1c6b-4f5b-8485-7f8a74f76d30" -> "6016671d-13ed-4175-a508-8e07fff78638";
+"aa7cc4ac-b479-4b49-a9de-53016e448ee6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"5075deb2-1c6b-4f5b-8485-7f8a74f76d30" -> "aa7cc4ac-b479-4b49-a9de-53016e448ee6";
+"221a02e2-eeb1-4add-95e7-b75cd634fc1b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"5075deb2-1c6b-4f5b-8485-7f8a74f76d30" -> "221a02e2-eeb1-4add-95e7-b75cd634fc1b";
+"8ff42189-0cb6-4327-a773-ab7c74b21e93" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8ff42189-0cb6-4327-a773-ab7c74b21e93";
+"ef4349fb-4817-4e6b-9dfc-43765181739c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8ff42189-0cb6-4327-a773-ab7c74b21e93" -> "ef4349fb-4817-4e6b-9dfc-43765181739c";
+"0e2c3353-2516-48fe-a1db-71de9bce0756" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"8ff42189-0cb6-4327-a773-ab7c74b21e93" -> "0e2c3353-2516-48fe-a1db-71de9bce0756";
+"14412e1e-a2c1-457a-bad2-76c671c42716" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8ff42189-0cb6-4327-a773-ab7c74b21e93" -> "14412e1e-a2c1-457a-bad2-76c671c42716";
+"0478b184-6010-49db-a790-0d1a8acb5feb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"8ff42189-0cb6-4327-a773-ab7c74b21e93" -> "0478b184-6010-49db-a790-0d1a8acb5feb";
+"ac97f74c-6a58-442f-82d8-0a1c3b928272" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ac97f74c-6a58-442f-82d8-0a1c3b928272";
+"b302171a-73a3-4f97-aace-f722a45e8e1d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"ac97f74c-6a58-442f-82d8-0a1c3b928272" -> "b302171a-73a3-4f97-aace-f722a45e8e1d";
+"4af33854-6f0b-4546-91e9-322f610e3b39" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ac97f74c-6a58-442f-82d8-0a1c3b928272" -> "4af33854-6f0b-4546-91e9-322f610e3b39";
+"e12c5f97-36af-4b7e-95dd-f6595d13d7de" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ac97f74c-6a58-442f-82d8-0a1c3b928272" -> "e12c5f97-36af-4b7e-95dd-f6595d13d7de";
+"25672495-20df-4f34-8553-ce3a8b7934f0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"ac97f74c-6a58-442f-82d8-0a1c3b928272" -> "25672495-20df-4f34-8553-ce3a8b7934f0";
+"bbaf9889-2309-49fe-99bf-b21f5a8e047c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,BrightTable)", shape=box, style=filled];
+"ac97f74c-6a58-442f-82d8-0a1c3b928272" -> "bbaf9889-2309-49fe-99bf-b21f5a8e047c";
+"a2f55ba9-d913-4cdd-aee4-6fa0e5bf551a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a2f55ba9-d913-4cdd-aee4-6fa0e5bf551a";
+"091355e2-d425-4162-9573-2cbd0ccc6006" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,BrightTable6)", shape=ellipse, style=filled];
+"a2f55ba9-d913-4cdd-aee4-6fa0e5bf551a" -> "091355e2-d425-4162-9573-2cbd0ccc6006";
+"4dd5150c-d867-4678-b91c-4b5e5e92e260" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a2f55ba9-d913-4cdd-aee4-6fa0e5bf551a" -> "4dd5150c-d867-4678-b91c-4b5e5e92e260";
+"50084907-d446-4f31-9ecb-c075b7bd6954" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a2f55ba9-d913-4cdd-aee4-6fa0e5bf551a" -> "50084907-d446-4f31-9ecb-c075b7bd6954";
+"17c27c85-c1f6-4405-9556-363c4f4c7f85" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"a2f55ba9-d913-4cdd-aee4-6fa0e5bf551a" -> "17c27c85-c1f6-4405-9556-363c4f4c7f85";
+"30161710-c288-4c87-aa0c-d9c530490a6f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,BrightTable)", shape=box, style=filled];
+"a2f55ba9-d913-4cdd-aee4-6fa0e5bf551a" -> "30161710-c288-4c87-aa0c-d9c530490a6f";
+"cbaae385-6de7-456d-b611-50727c90dc7a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "cbaae385-6de7-456d-b611-50727c90dc7a";
+"f043620b-052b-4099-8762-6e66916dd9c9" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"cbaae385-6de7-456d-b611-50727c90dc7a" -> "f043620b-052b-4099-8762-6e66916dd9c9";
+"f02947e1-2274-4bca-b966-56abd014774e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"cbaae385-6de7-456d-b611-50727c90dc7a" -> "f02947e1-2274-4bca-b966-56abd014774e";
+"4659c694-17d5-4eb2-a3d6-f12d12e9dc28" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"cbaae385-6de7-456d-b611-50727c90dc7a" -> "4659c694-17d5-4eb2-a3d6-f12d12e9dc28";
+"cc840e60-87e7-4270-a4f5-06197cca4449" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"cbaae385-6de7-456d-b611-50727c90dc7a" -> "cc840e60-87e7-4270-a4f5-06197cca4449";
+"e5f8f2a6-3c8f-491a-9d42-8ba36a300584" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"cbaae385-6de7-456d-b611-50727c90dc7a" -> "e5f8f2a6-3c8f-491a-9d42-8ba36a300584";
+"ac67eee9-7511-442e-9f02-8c5a3a1975da" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ac67eee9-7511-442e-9f02-8c5a3a1975da";
+"34c469f1-3e0d-4c11-a76d-57373532e5c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ac67eee9-7511-442e-9f02-8c5a3a1975da" -> "34c469f1-3e0d-4c11-a76d-57373532e5c8";
+"a648941f-cdaf-4a99-9d0b-fdc7db094fee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,CoffeeTable)", shape=ellipse, style=filled];
+"ac67eee9-7511-442e-9f02-8c5a3a1975da" -> "a648941f-cdaf-4a99-9d0b-fdc7db094fee";
+"24a0d5c3-c71c-4e5b-b317-1471d0ec816c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ac67eee9-7511-442e-9f02-8c5a3a1975da" -> "24a0d5c3-c71c-4e5b-b317-1471d0ec816c";
+"ce572bfb-6ec0-42bd-8be2-a8e9d0e44cec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"ac67eee9-7511-442e-9f02-8c5a3a1975da" -> "ce572bfb-6ec0-42bd-8be2-a8e9d0e44cec";
+"a370ebcb-d7cc-496d-a05a-1004bef384aa" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,CoffeeTable)", shape=box, style=filled];
+"ac67eee9-7511-442e-9f02-8c5a3a1975da" -> "a370ebcb-d7cc-496d-a05a-1004bef384aa";
+"17c19023-200d-4bc1-b148-eb0bf7df2581" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "17c19023-200d-4bc1-b148-eb0bf7df2581";
+"14b9586e-2807-40c0-83ca-589a952ae874" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"17c19023-200d-4bc1-b148-eb0bf7df2581" -> "14b9586e-2807-40c0-83ca-589a952ae874";
+"cbd12888-81c1-4ca8-8fa2-2e5982b74ebd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"17c19023-200d-4bc1-b148-eb0bf7df2581" -> "cbd12888-81c1-4ca8-8fa2-2e5982b74ebd";
+"71f7d726-ebae-44e3-b9af-14abc5d5e412" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"17c19023-200d-4bc1-b148-eb0bf7df2581" -> "71f7d726-ebae-44e3-b9af-14abc5d5e412";
+"3d802a9d-21e4-48d2-bad4-5cec2fd322d4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"17c19023-200d-4bc1-b148-eb0bf7df2581" -> "3d802a9d-21e4-48d2-bad4-5cec2fd322d4";
+"42542947-ce6b-4d47-b5a1-0310acb0b581" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"17c19023-200d-4bc1-b148-eb0bf7df2581" -> "42542947-ce6b-4d47-b5a1-0310acb0b581";
+"9ba8ee0d-4e66-4144-af2f-dc54545ba9c2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9ba8ee0d-4e66-4144-af2f-dc54545ba9c2";
+"a80416ef-f64d-4ad2-8a7b-39232a57fa02" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9ba8ee0d-4e66-4144-af2f-dc54545ba9c2" -> "a80416ef-f64d-4ad2-8a7b-39232a57fa02";
+"d2d9faa7-9c44-4a84-9c18-7691fe6ece5b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9ba8ee0d-4e66-4144-af2f-dc54545ba9c2" -> "d2d9faa7-9c44-4a84-9c18-7691fe6ece5b";
+"b95f217a-e2eb-4ac8-aa3b-dcb173e8ffb4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table1)", shape=ellipse, style=filled];
+"9ba8ee0d-4e66-4144-af2f-dc54545ba9c2" -> "b95f217a-e2eb-4ac8-aa3b-dcb173e8ffb4";
+"451e2f25-dec4-4911-a508-193793f3f122" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"9ba8ee0d-4e66-4144-af2f-dc54545ba9c2" -> "451e2f25-dec4-4911-a508-193793f3f122";
+"b5e89a42-3086-49a3-8661-8c6e41021c26" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"9ba8ee0d-4e66-4144-af2f-dc54545ba9c2" -> "b5e89a42-3086-49a3-8661-8c6e41021c26";
+"ba342908-6810-4a7d-b068-da0a1210cb4c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "ba342908-6810-4a7d-b068-da0a1210cb4c";
+"715d6785-4ac2-43b1-80fe-f5b3c7191f06" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"ba342908-6810-4a7d-b068-da0a1210cb4c" -> "715d6785-4ac2-43b1-80fe-f5b3c7191f06";
+"5ca2792a-d0df-4321-94a4-c9634f4f9492" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ba342908-6810-4a7d-b068-da0a1210cb4c" -> "5ca2792a-d0df-4321-94a4-c9634f4f9492";
+"264dd3a1-1128-446a-a39e-db6e025d3634" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"ba342908-6810-4a7d-b068-da0a1210cb4c" -> "264dd3a1-1128-446a-a39e-db6e025d3634";
+"c1adc144-a121-4574-a546-e1ce2fbe90b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"ba342908-6810-4a7d-b068-da0a1210cb4c" -> "c1adc144-a121-4574-a546-e1ce2fbe90b5";
+"cb74c438-0f6f-47e5-b912-3687754dff7e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"ba342908-6810-4a7d-b068-da0a1210cb4c" -> "cb74c438-0f6f-47e5-b912-3687754dff7e";
+"c6f79506-6d0e-4460-985b-d020cd9d2116" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "c6f79506-6d0e-4460-985b-d020cd9d2116";
+"5ab10472-110c-499b-92e9-cf96404fa778" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c6f79506-6d0e-4460-985b-d020cd9d2116" -> "5ab10472-110c-499b-92e9-cf96404fa778";
+"84be10be-100f-4b24-a4c2-aced29fb7dba" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c6f79506-6d0e-4460-985b-d020cd9d2116" -> "84be10be-100f-4b24-a4c2-aced29fb7dba";
+"4e0c752a-735a-40bc-9aa1-bf38c634d1f5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table2)", shape=ellipse, style=filled];
+"c6f79506-6d0e-4460-985b-d020cd9d2116" -> "4e0c752a-735a-40bc-9aa1-bf38c634d1f5";
+"3668367c-c2f0-4fe0-bfac-a0dfa09477b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"c6f79506-6d0e-4460-985b-d020cd9d2116" -> "3668367c-c2f0-4fe0-bfac-a0dfa09477b2";
+"b9d1dc29-616b-410d-bcd9-345ad798d626" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"c6f79506-6d0e-4460-985b-d020cd9d2116" -> "b9d1dc29-616b-410d-bcd9-345ad798d626";
+"d6603fd2-9f81-4615-8e72-56a6212c6c1a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d6603fd2-9f81-4615-8e72-56a6212c6c1a";
+"e196e741-4035-4184-97b6-f7532982f756" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d6603fd2-9f81-4615-8e72-56a6212c6c1a" -> "e196e741-4035-4184-97b6-f7532982f756";
+"63a9000b-af7e-4738-b38e-f9145a4601df" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d6603fd2-9f81-4615-8e72-56a6212c6c1a" -> "63a9000b-af7e-4738-b38e-f9145a4601df";
+"fcb69c84-ec9b-465d-bfae-19e6794e239e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"d6603fd2-9f81-4615-8e72-56a6212c6c1a" -> "fcb69c84-ec9b-465d-bfae-19e6794e239e";
+"1d535657-b07a-4272-9341-234a85ee56ce" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"d6603fd2-9f81-4615-8e72-56a6212c6c1a" -> "1d535657-b07a-4272-9341-234a85ee56ce";
+"ad455a36-3d63-4c41-9159-e023b9d76e76" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"d6603fd2-9f81-4615-8e72-56a6212c6c1a" -> "ad455a36-3d63-4c41-9159-e023b9d76e76";
+"b2cc9de0-a14c-4200-8ccb-9df9aef9b62d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "b2cc9de0-a14c-4200-8ccb-9df9aef9b62d";
+"d986dff9-e9a4-4746-b53a-306640b322b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b2cc9de0-a14c-4200-8ccb-9df9aef9b62d" -> "d986dff9-e9a4-4746-b53a-306640b322b6";
+"4dd067bf-38b4-479a-9e4c-ebfa42cc102c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b2cc9de0-a14c-4200-8ccb-9df9aef9b62d" -> "4dd067bf-38b4-479a-9e4c-ebfa42cc102c";
+"a5ab34e8-ba5d-45e8-988c-460dd5b1b0b2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Table3)", shape=ellipse, style=filled];
+"b2cc9de0-a14c-4200-8ccb-9df9aef9b62d" -> "a5ab34e8-ba5d-45e8-988c-460dd5b1b0b2";
+"66a988e4-008e-4ed8-9e1d-af2c3106ad75" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"b2cc9de0-a14c-4200-8ccb-9df9aef9b62d" -> "66a988e4-008e-4ed8-9e1d-af2c3106ad75";
+"46cc2a14-7448-4a55-a142-71e89190bbd4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Table)", shape=box, style=filled];
+"b2cc9de0-a14c-4200-8ccb-9df9aef9b62d" -> "46cc2a14-7448-4a55-a142-71e89190bbd4";
+"f461269e-34b5-4efe-8d08-d1e18d0d3163" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "f461269e-34b5-4efe-8d08-d1e18d0d3163";
+"b1aef79f-e467-49a8-8327-15ec7aadf755" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"f461269e-34b5-4efe-8d08-d1e18d0d3163" -> "b1aef79f-e467-49a8-8327-15ec7aadf755";
+"b0ec2aff-0d17-44e9-976c-9cf900e62db3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f461269e-34b5-4efe-8d08-d1e18d0d3163" -> "b0ec2aff-0d17-44e9-976c-9cf900e62db3";
+"f50320de-92cd-43ca-8aff-cbf359e12e99" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"f461269e-34b5-4efe-8d08-d1e18d0d3163" -> "f50320de-92cd-43ca-8aff-cbf359e12e99";
+"d0747ddd-e1c8-40e4-8cff-1fc65904f74b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"f461269e-34b5-4efe-8d08-d1e18d0d3163" -> "d0747ddd-e1c8-40e4-8cff-1fc65904f74b";
+"d5bf852d-05d5-4d50-bfbc-847b6a2574d9" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,WaterTable)", shape=box, style=filled];
+"f461269e-34b5-4efe-8d08-d1e18d0d3163" -> "d5bf852d-05d5-4d50-bfbc-847b6a2574d9";
+"eb4a7aca-aa7a-420c-b652-8bb38c9f9853" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "eb4a7aca-aa7a-420c-b652-8bb38c9f9853";
+"ad381213-7f9e-4071-8aa9-663208bef458" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"eb4a7aca-aa7a-420c-b652-8bb38c9f9853" -> "ad381213-7f9e-4071-8aa9-663208bef458";
+"24fb4e9a-2df2-407c-8d82-c09a454dfe37" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"eb4a7aca-aa7a-420c-b652-8bb38c9f9853" -> "24fb4e9a-2df2-407c-8d82-c09a454dfe37";
+"7837b4f9-a519-4e8e-b440-ea428f2226b5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,WaterTable)", shape=ellipse, style=filled];
+"eb4a7aca-aa7a-420c-b652-8bb38c9f9853" -> "7837b4f9-a519-4e8e-b440-ea428f2226b5";
+"8aa3d730-cdfa-4a84-9c07-a7dfa07fa125" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"eb4a7aca-aa7a-420c-b652-8bb38c9f9853" -> "8aa3d730-cdfa-4a84-9c07-a7dfa07fa125";
+"685d5c46-49ee-4abf-ba05-4db4418d0029" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,WaterTable)", shape=box, style=filled];
+"eb4a7aca-aa7a-420c-b652-8bb38c9f9853" -> "685d5c46-49ee-4abf-ba05-4db4418d0029";
+"38ab34db-4ad1-41db-ac20-527591461894" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "38ab34db-4ad1-41db-ac20-527591461894";
+"2cce9fba-4a89-4b03-9e7a-445bc29a6eee" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"38ab34db-4ad1-41db-ac20-527591461894" -> "2cce9fba-4a89-4b03-9e7a-445bc29a6eee";
+"72187e0d-6f81-4422-94c7-2cceea6b68da" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"38ab34db-4ad1-41db-ac20-527591461894" -> "72187e0d-6f81-4422-94c7-2cceea6b68da";
+"6238fc51-5f12-4bdb-96c2-3bd161593c1b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"38ab34db-4ad1-41db-ac20-527591461894" -> "6238fc51-5f12-4bdb-96c2-3bd161593c1b";
+"9ef953d8-1b45-401c-ac78-1ae5a7756327" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"38ab34db-4ad1-41db-ac20-527591461894" -> "9ef953d8-1b45-401c-ac78-1ae5a7756327";
+"4b1db9dd-a41c-4df7-bc87-cf396ebef77c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,Off)", shape=box, style=filled];
+"38ab34db-4ad1-41db-ac20-527591461894" -> "4b1db9dd-a41c-4df7-bc87-cf396ebef77c";
+"498644b9-9d12-433e-950d-fb6d30e2efb9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "498644b9-9d12-433e-950d-fb6d30e2efb9";
+"a3cf1215-7406-493c-b5c8-a88af873f487" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"498644b9-9d12-433e-950d-fb6d30e2efb9" -> "a3cf1215-7406-493c-b5c8-a88af873f487";
+"5b7dacaa-020c-4fcd-8bcd-797019cc76ca" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"498644b9-9d12-433e-950d-fb6d30e2efb9" -> "5b7dacaa-020c-4fcd-8bcd-797019cc76ca";
+"9693d73c-9921-41f1-9dee-6b41aa607e91" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"498644b9-9d12-433e-950d-fb6d30e2efb9" -> "9693d73c-9921-41f1-9dee-6b41aa607e91";
+"9d03cfd1-91b8-4d71-bbeb-c1ea2e4a6f70" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"498644b9-9d12-433e-950d-fb6d30e2efb9" -> "9d03cfd1-91b8-4d71-bbeb-c1ea2e4a6f70";
+"0cd9e535-69c8-4f72-b3a8-9fb3d6b784b2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,Off)", shape=box, style=filled];
+"498644b9-9d12-433e-950d-fb6d30e2efb9" -> "0cd9e535-69c8-4f72-b3a8-9fb3d6b784b2";
+"6ab3633b-ead9-492a-9c44-b800a470b1ab" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "6ab3633b-ead9-492a-9c44-b800a470b1ab";
+"de357392-9ff1-4da3-af1d-254a3dce239d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,Off)", shape=ellipse, style=filled];
+"6ab3633b-ead9-492a-9c44-b800a470b1ab" -> "de357392-9ff1-4da3-af1d-254a3dce239d";
+"b6907a00-1480-4fa6-b3f7-65621d5aca68" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"6ab3633b-ead9-492a-9c44-b800a470b1ab" -> "b6907a00-1480-4fa6-b3f7-65621d5aca68";
+"5d772635-500c-4221-92da-b64a304c7fa0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"6ab3633b-ead9-492a-9c44-b800a470b1ab" -> "5d772635-500c-4221-92da-b64a304c7fa0";
+"5f130832-1e60-4650-91ce-aa03a11df080" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"6ab3633b-ead9-492a-9c44-b800a470b1ab" -> "5f130832-1e60-4650-91ce-aa03a11df080";
+"84c6e80b-29e7-4bf6-bd2f-90d8985258cb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,On)", shape=box, style=filled];
+"6ab3633b-ead9-492a-9c44-b800a470b1ab" -> "84c6e80b-29e7-4bf6-bd2f-90d8985258cb";
+"586b2202-a47a-4486-ad21-dec513e1f928" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "586b2202-a47a-4486-ad21-dec513e1f928";
+"55ecaf3c-9d51-41b8-8887-bb197319697b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,Off)", shape=ellipse, style=filled];
+"586b2202-a47a-4486-ad21-dec513e1f928" -> "55ecaf3c-9d51-41b8-8887-bb197319697b";
+"0bd223a3-04fd-4811-8c34-2a7cb3daf3db" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"586b2202-a47a-4486-ad21-dec513e1f928" -> "0bd223a3-04fd-4811-8c34-2a7cb3daf3db";
+"060ba73a-4658-4f77-b34e-1d472b1c6416" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"586b2202-a47a-4486-ad21-dec513e1f928" -> "060ba73a-4658-4f77-b34e-1d472b1c6416";
+"af27bae9-fe90-4a42-9c5c-5b6d1fc7e49e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"586b2202-a47a-4486-ad21-dec513e1f928" -> "af27bae9-fe90-4a42-9c5c-5b6d1fc7e49e";
+"e3e48fca-7389-4b4a-9331-dc7cb644eb9d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(AC,On)", shape=box, style=filled];
+"586b2202-a47a-4486-ad21-dec513e1f928" -> "e3e48fca-7389-4b4a-9331-dc7cb644eb9d";
+"bd85c8a6-59c0-4420-960a-39ac2e0734a5" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "bd85c8a6-59c0-4420-960a-39ac2e0734a5";
+"e40004ee-1c4e-4abb-9b59-faf12c0eca4f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"bd85c8a6-59c0-4420-960a-39ac2e0734a5" -> "e40004ee-1c4e-4abb-9b59-faf12c0eca4f";
+"bd259f63-57a7-433f-b79e-9d2ae869a24d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"bd85c8a6-59c0-4420-960a-39ac2e0734a5" -> "bd259f63-57a7-433f-b79e-9d2ae869a24d";
+"c4510c3e-374f-440d-ad32-e11877fefb09" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"bd85c8a6-59c0-4420-960a-39ac2e0734a5" -> "c4510c3e-374f-440d-ad32-e11877fefb09";
+"a114a9b0-a660-4cd7-a3eb-3620b210a4fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"bd85c8a6-59c0-4420-960a-39ac2e0734a5" -> "a114a9b0-a660-4cd7-a3eb-3620b210a4fa";
+"96e45707-91e1-4dc6-8c2f-69e1448cba37" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Down)", shape=box, style=filled];
+"bd85c8a6-59c0-4420-960a-39ac2e0734a5" -> "96e45707-91e1-4dc6-8c2f-69e1448cba37";
+"01ffd3bf-2a3d-4f4e-9807-eacc2dfc5ed8" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "01ffd3bf-2a3d-4f4e-9807-eacc2dfc5ed8";
+"b24a7976-85ef-4c20-ade1-31c50f2631a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"01ffd3bf-2a3d-4f4e-9807-eacc2dfc5ed8" -> "b24a7976-85ef-4c20-ade1-31c50f2631a3";
+"22a14e8f-ca8b-4c56-a83d-30bd9fa135bf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"01ffd3bf-2a3d-4f4e-9807-eacc2dfc5ed8" -> "22a14e8f-ca8b-4c56-a83d-30bd9fa135bf";
+"8d375109-f798-4047-8dea-ecf9741f3f4c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"01ffd3bf-2a3d-4f4e-9807-eacc2dfc5ed8" -> "8d375109-f798-4047-8dea-ecf9741f3f4c";
+"250685a0-9822-4cfd-bbf2-ac2caa83510e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"01ffd3bf-2a3d-4f4e-9807-eacc2dfc5ed8" -> "250685a0-9822-4cfd-bbf2-ac2caa83510e";
+"91f7f0c0-b7ce-422e-b493-953701f85a24" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Down)", shape=box, style=filled];
+"01ffd3bf-2a3d-4f4e-9807-eacc2dfc5ed8" -> "91f7f0c0-b7ce-422e-b493-953701f85a24";
+"a24396ec-c378-4099-8bec-aeafc6ae1f7b" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a24396ec-c378-4099-8bec-aeafc6ae1f7b";
+"5ab7bb37-af6d-4ca3-b946-989702ceff2d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a24396ec-c378-4099-8bec-aeafc6ae1f7b" -> "5ab7bb37-af6d-4ca3-b946-989702ceff2d";
+"802834e8-8fc1-4518-a9f7-29e02721d55a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"a24396ec-c378-4099-8bec-aeafc6ae1f7b" -> "802834e8-8fc1-4518-a9f7-29e02721d55a";
+"ca368fff-6dfe-4335-92a5-8715d0fe7acf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a24396ec-c378-4099-8bec-aeafc6ae1f7b" -> "ca368fff-6dfe-4335-92a5-8715d0fe7acf";
+"bcf3ef41-f280-49cb-86df-869363c66731" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"a24396ec-c378-4099-8bec-aeafc6ae1f7b" -> "bcf3ef41-f280-49cb-86df-869363c66731";
+"a0721a73-6baa-4415-aeac-5ac39df02075" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Up)", shape=box, style=filled];
+"a24396ec-c378-4099-8bec-aeafc6ae1f7b" -> "a0721a73-6baa-4415-aeac-5ac39df02075";
+"1abb0463-bf7b-4cd5-af70-2867852e2fd2" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "1abb0463-bf7b-4cd5-af70-2867852e2fd2";
+"271bcaba-bed5-45be-8da7-71b3a2dec01a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"1abb0463-bf7b-4cd5-af70-2867852e2fd2" -> "271bcaba-bed5-45be-8da7-71b3a2dec01a";
+"3772fb1c-856e-4900-b797-88a3a5572505" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"1abb0463-bf7b-4cd5-af70-2867852e2fd2" -> "3772fb1c-856e-4900-b797-88a3a5572505";
+"4e69cd11-f983-4328-a418-373ae6027296" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1abb0463-bf7b-4cd5-af70-2867852e2fd2" -> "4e69cd11-f983-4328-a418-373ae6027296";
+"771bd2ba-5012-4e06-bb54-c4dfefd9bdd7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(AC,On)", shape=ellipse, style=filled];
+"1abb0463-bf7b-4cd5-af70-2867852e2fd2" -> "771bd2ba-5012-4e06-bb54-c4dfefd9bdd7";
+"bc0d96aa-ef6c-431d-bcda-a05ea1893da2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(ACTemperature,Up)", shape=box, style=filled];
+"1abb0463-bf7b-4cd5-af70-2867852e2fd2" -> "bc0d96aa-ef6c-431d-bcda-a05ea1893da2";
+"8af07d81-96cf-4ca2-9faa-6ff1e9a39b20" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "8af07d81-96cf-4ca2-9faa-6ff1e9a39b20";
+"66d1dbc9-b984-4812-a313-9762b55d0efa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"8af07d81-96cf-4ca2-9faa-6ff1e9a39b20" -> "66d1dbc9-b984-4812-a313-9762b55d0efa";
+"86d92f19-5d37-435e-b209-8e719bc8af11" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"8af07d81-96cf-4ca2-9faa-6ff1e9a39b20" -> "86d92f19-5d37-435e-b209-8e719bc8af11";
+"d24b22d1-f655-41ae-a13c-8a907da43201" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"8af07d81-96cf-4ca2-9faa-6ff1e9a39b20" -> "d24b22d1-f655-41ae-a13c-8a907da43201";
+"2edc75ba-4c7e-45c7-b3ee-ca9f22adf222" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8af07d81-96cf-4ca2-9faa-6ff1e9a39b20" -> "2edc75ba-4c7e-45c7-b3ee-ca9f22adf222";
+"1cba1f80-fe9d-444a-80c2-496fa145f528" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,Off)", shape=box, style=filled];
+"8af07d81-96cf-4ca2-9faa-6ff1e9a39b20" -> "1cba1f80-fe9d-444a-80c2-496fa145f528";
+"761e7793-c16b-471b-ba87-82d5a4645a8a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "761e7793-c16b-471b-ba87-82d5a4645a8a";
+"3ac7abfe-cfe8-4835-86be-0ecdf5c9d32b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,On)", shape=ellipse, style=filled];
+"761e7793-c16b-471b-ba87-82d5a4645a8a" -> "3ac7abfe-cfe8-4835-86be-0ecdf5c9d32b";
+"783ccf13-0676-4f2b-963c-02f4d770878a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"761e7793-c16b-471b-ba87-82d5a4645a8a" -> "783ccf13-0676-4f2b-963c-02f4d770878a";
+"47cd0e94-a7a5-4392-8487-76855d3e61a4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"761e7793-c16b-471b-ba87-82d5a4645a8a" -> "47cd0e94-a7a5-4392-8487-76855d3e61a4";
+"dca72791-3951-45de-b896-e4d86a07f9d6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"761e7793-c16b-471b-ba87-82d5a4645a8a" -> "dca72791-3951-45de-b896-e4d86a07f9d6";
+"3d3eb50a-f6a2-45f5-8f32-2072e9784b4a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,Off)", shape=box, style=filled];
+"761e7793-c16b-471b-ba87-82d5a4645a8a" -> "3d3eb50a-f6a2-45f5-8f32-2072e9784b4a";
+"9ad7631a-b9f7-4b3e-98d3-6730b507256c" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "9ad7631a-b9f7-4b3e-98d3-6730b507256c";
+"7065c818-ca23-4001-aede-fa50e6072be8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,Off)", shape=ellipse, style=filled];
+"9ad7631a-b9f7-4b3e-98d3-6730b507256c" -> "7065c818-ca23-4001-aede-fa50e6072be8";
+"842104c6-fa9e-4c71-ba42-c9ed01b6f464" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"9ad7631a-b9f7-4b3e-98d3-6730b507256c" -> "842104c6-fa9e-4c71-ba42-c9ed01b6f464";
+"9c443d08-c0fa-41f6-a0af-014052c914f5" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"9ad7631a-b9f7-4b3e-98d3-6730b507256c" -> "9c443d08-c0fa-41f6-a0af-014052c914f5";
+"a6e814c9-5bdb-400c-8608-cd5c7cfe3d7a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9ad7631a-b9f7-4b3e-98d3-6730b507256c" -> "a6e814c9-5bdb-400c-8608-cd5c7cfe3d7a";
+"f3e0b718-e183-4a8e-8a3f-a2ca5ab260ee" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,On)", shape=box, style=filled];
+"9ad7631a-b9f7-4b3e-98d3-6730b507256c" -> "f3e0b718-e183-4a8e-8a3f-a2ca5ab260ee";
+"c6d616bd-b1fb-4fb7-ba09-cd79c4cffbf0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "c6d616bd-b1fb-4fb7-ba09-cd79c4cffbf0";
+"7eb9f4a0-0ddc-49fe-8131-656e04ba927f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(HallLight,Off)", shape=ellipse, style=filled];
+"c6d616bd-b1fb-4fb7-ba09-cd79c4cffbf0" -> "7eb9f4a0-0ddc-49fe-8131-656e04ba927f";
+"72fd5888-1566-4756-8f5f-bfd393a80c09" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"c6d616bd-b1fb-4fb7-ba09-cd79c4cffbf0" -> "72fd5888-1566-4756-8f5f-bfd393a80c09";
+"6d6a8d1c-ca48-428c-8bc5-3d38e07b9f07" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"c6d616bd-b1fb-4fb7-ba09-cd79c4cffbf0" -> "6d6a8d1c-ca48-428c-8bc5-3d38e07b9f07";
+"f7ac8ce3-23d4-456f-a641-707cee5aa8ec" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c6d616bd-b1fb-4fb7-ba09-cd79c4cffbf0" -> "f7ac8ce3-23d4-456f-a641-707cee5aa8ec";
+"9295f6df-79e8-437c-b126-2750b2bcd7c0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(HallLight,On)", shape=box, style=filled];
+"c6d616bd-b1fb-4fb7-ba09-cd79c4cffbf0" -> "9295f6df-79e8-437c-b126-2750b2bcd7c0";
+"a707dc95-0771-4752-89ef-5ae1121ced50" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "a707dc95-0771-4752-89ef-5ae1121ced50";
+"f9a5e7cc-347e-4588-925f-b9363c85a8b6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,On)", shape=ellipse, style=filled];
+"a707dc95-0771-4752-89ef-5ae1121ced50" -> "f9a5e7cc-347e-4588-925f-b9363c85a8b6";
+"65754975-e322-4745-b7e5-438724fed1ac" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"a707dc95-0771-4752-89ef-5ae1121ced50" -> "65754975-e322-4745-b7e5-438724fed1ac";
+"de692fae-d1f4-4160-8626-ecf15343d37c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"a707dc95-0771-4752-89ef-5ae1121ced50" -> "de692fae-d1f4-4160-8626-ecf15343d37c";
+"49803b4c-ba7d-47bf-aa7c-f33bef1f41e1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a707dc95-0771-4752-89ef-5ae1121ced50" -> "49803b4c-ba7d-47bf-aa7c-f33bef1f41e1";
+"6a330d89-e6f4-4570-9c20-9d43f75c2ae4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,Off)", shape=box, style=filled];
+"a707dc95-0771-4752-89ef-5ae1121ced50" -> "6a330d89-e6f4-4570-9c20-9d43f75c2ae4";
+"b3361f93-c501-4bf5-bdd7-da4fca5f788d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "b3361f93-c501-4bf5-bdd7-da4fca5f788d";
+"1d84df2b-00ac-4ce4-acca-d072bc4d3253" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,On)", shape=ellipse, style=filled];
+"b3361f93-c501-4bf5-bdd7-da4fca5f788d" -> "1d84df2b-00ac-4ce4-acca-d072bc4d3253";
+"b04b8a4e-337d-42cd-8574-bf32e3d14da0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"b3361f93-c501-4bf5-bdd7-da4fca5f788d" -> "b04b8a4e-337d-42cd-8574-bf32e3d14da0";
+"b2d4495e-8819-4132-939b-790f05705c12" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"b3361f93-c501-4bf5-bdd7-da4fca5f788d" -> "b2d4495e-8819-4132-939b-790f05705c12";
+"10fadc09-1f95-4c56-a036-7017e34b454f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b3361f93-c501-4bf5-bdd7-da4fca5f788d" -> "10fadc09-1f95-4c56-a036-7017e34b454f";
+"62259e36-7192-41cc-b8af-c9dd55698def" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,Off)", shape=box, style=filled];
+"b3361f93-c501-4bf5-bdd7-da4fca5f788d" -> "62259e36-7192-41cc-b8af-c9dd55698def";
+"d8112776-987a-40cc-aea5-a988d434820f" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "d8112776-987a-40cc-aea5-a988d434820f";
+"9d4dacd4-138f-454a-bf9e-ee912a80846b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"d8112776-987a-40cc-aea5-a988d434820f" -> "9d4dacd4-138f-454a-bf9e-ee912a80846b";
+"0d3898b7-800e-4e02-b5ae-f9fd2f8f712e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"d8112776-987a-40cc-aea5-a988d434820f" -> "0d3898b7-800e-4e02-b5ae-f9fd2f8f712e";
+"a9661ecd-7321-43e4-919a-e086a0e44c90" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d8112776-987a-40cc-aea5-a988d434820f" -> "a9661ecd-7321-43e4-919a-e086a0e44c90";
+"baab60eb-5942-447d-bf5b-92e929d47598" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,Off)", shape=ellipse, style=filled];
+"d8112776-987a-40cc-aea5-a988d434820f" -> "baab60eb-5942-447d-bf5b-92e929d47598";
+"832b4930-d3f0-43a5-a5f1-30a7f6fcf183" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,On)", shape=box, style=filled];
+"d8112776-987a-40cc-aea5-a988d434820f" -> "832b4930-d3f0-43a5-a5f1-30a7f6fcf183";
+"dd539879-2232-4b19-9e46-b9e529164e39" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"0dc269ea-c832-4b1a-b9da-bd24df9c655a" -> "dd539879-2232-4b19-9e46-b9e529164e39";
+"c09e2c97-8e7f-4a42-a9eb-4aa62036e2e4" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"dd539879-2232-4b19-9e46-b9e529164e39" -> "c09e2c97-8e7f-4a42-a9eb-4aa62036e2e4";
+"721c2699-58a4-4f21-9b29-d59f5638de0f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"dd539879-2232-4b19-9e46-b9e529164e39" -> "721c2699-58a4-4f21-9b29-d59f5638de0f";
+"7528f112-c933-45c1-8a44-199aa4c947c8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"dd539879-2232-4b19-9e46-b9e529164e39" -> "7528f112-c933-45c1-8a44-199aa4c947c8";
+"392fa799-0e95-4b0b-9dc6-6fd4c756ddd1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Is(TubeLight,Off)", shape=ellipse, style=filled];
+"dd539879-2232-4b19-9e46-b9e529164e39" -> "392fa799-0e95-4b0b-9dc6-6fd4c756ddd1";
+"25488972-8f9e-4133-8ef5-614d1f44fa21" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="Turn(TubeLight,On)", shape=box, style=filled];
+"dd539879-2232-4b19-9e46-b9e529164e39" -> "25488972-8f9e-4133-8ef5-614d1f44fa21";
+"30159de6-fa5b-4a6b-a35d-746511f9e77e" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"7f8e6286-84e6-4b60-8a3e-a5fd50cfd33c" -> "30159de6-fa5b-4a6b-a35d-746511f9e77e";
+"44779d09-30a2-45c9-a92f-f44080ab466d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "44779d09-30a2-45c9-a92f-f44080ab466d";
+"43ec745e-4af5-4f95-9491-8a1f56c08517" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,MilkDrink)", shape=ellipse, style=filled];
+"44779d09-30a2-45c9-a92f-f44080ab466d" -> "43ec745e-4af5-4f95-9491-8a1f56c08517";
+"b9a89fba-a181-40ae-ab24-57f90fdc4841" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Nothing)", shape=ellipse, style=filled];
+"44779d09-30a2-45c9-a92f-f44080ab466d" -> "b9a89fba-a181-40ae-ab24-57f90fdc4841";
+"a8e81fa6-7fef-4c5e-91d9-f6ae292cad90" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"44779d09-30a2-45c9-a92f-f44080ab466d" -> "a8e81fa6-7fef-4c5e-91d9-f6ae292cad90";
+"e097aa28-deb9-4a84-b19a-b9430d1f577c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PickUp(MilkDrink)", shape=box, style=filled];
+"44779d09-30a2-45c9-a92f-f44080ab466d" -> "e097aa28-deb9-4a84-b19a-b9430d1f577c";
+"ee994789-611a-41f7-9e4a-882a85a8f84d" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "ee994789-611a-41f7-9e4a-882a85a8f84d";
+"54a62036-3639-43ea-91ce-0ce4d445507b" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"ee994789-611a-41f7-9e4a-882a85a8f84d" -> "54a62036-3639-43ea-91ce-0ce4d445507b";
+"8bf7e018-e1de-493f-a03b-705bda72f99a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"54a62036-3639-43ea-91ce-0ce4d445507b" -> "8bf7e018-e1de-493f-a03b-705bda72f99a";
+"e55228f5-07a0-4baf-bbe8-6234c18cf124" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"54a62036-3639-43ea-91ce-0ce4d445507b" -> "e55228f5-07a0-4baf-bbe8-6234c18cf124";
+"350c0d4f-496a-4929-bdc5-928b73a370ff" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"54a62036-3639-43ea-91ce-0ce4d445507b" -> "350c0d4f-496a-4929-bdc5-928b73a370ff";
+"6d3ef878-10b0-42b1-aa2a-dd6183ab9bc0" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"ee994789-611a-41f7-9e4a-882a85a8f84d" -> "6d3ef878-10b0-42b1-aa2a-dd6183ab9bc0";
+"92737c2e-e4ef-4aba-a173-db324c8f545a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "92737c2e-e4ef-4aba-a173-db324c8f545a";
+"7fe2cc4c-2825-43cb-b93d-f5e24456d291" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(ADMilk)", shape=ellipse, style=filled];
+"92737c2e-e4ef-4aba-a173-db324c8f545a" -> "7fe2cc4c-2825-43cb-b93d-f5e24456d291";
+"92f0d697-ba3a-40c9-b43d-df7d97d13b0a" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"92737c2e-e4ef-4aba-a173-db324c8f545a" -> "92f0d697-ba3a-40c9-b43d-df7d97d13b0a";
+"d8fec24c-fcc8-4c39-bd75-f6b6ce63b4fa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"92737c2e-e4ef-4aba-a173-db324c8f545a" -> "d8fec24c-fcc8-4c39-bd75-f6b6ce63b4fa";
+"a4b01280-6d45-4f24-b206-7ed4d1baa0df" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(ADMilk,Bar)", shape=box, style=filled];
+"92737c2e-e4ef-4aba-a173-db324c8f545a" -> "a4b01280-6d45-4f24-b206-7ed4d1baa0df";
+"a7f6796d-5664-494a-9040-9c85fe75f1fd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "a7f6796d-5664-494a-9040-9c85fe75f1fd";
+"3ee90b91-65ce-424d-bc4b-a734249dd7e6" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a7f6796d-5664-494a-9040-9c85fe75f1fd" -> "3ee90b91-65ce-424d-bc4b-a734249dd7e6";
+"ed698829-defc-4bd7-b5b5-a787873ab161" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"3ee90b91-65ce-424d-bc4b-a734249dd7e6" -> "ed698829-defc-4bd7-b5b5-a787873ab161";
+"d2970d23-0525-42c5-a6d5-d1801429c17b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"3ee90b91-65ce-424d-bc4b-a734249dd7e6" -> "d2970d23-0525-42c5-a6d5-d1801429c17b";
+"8614c8da-8a04-4907-a164-6d4e6e21ac2c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"3ee90b91-65ce-424d-bc4b-a734249dd7e6" -> "8614c8da-8a04-4907-a164-6d4e6e21ac2c";
+"7b1ddbba-b4d2-443c-b646-39eb933fd102" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"a7f6796d-5664-494a-9040-9c85fe75f1fd" -> "7b1ddbba-b4d2-443c-b646-39eb933fd102";
+"8b6ff78e-014c-44d7-ba78-2006b86db3fd" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "8b6ff78e-014c-44d7-ba78-2006b86db3fd";
+"1c09ff47-400c-466e-8714-d8c8429db7e6" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Bernachon)", shape=ellipse, style=filled];
+"8b6ff78e-014c-44d7-ba78-2006b86db3fd" -> "1c09ff47-400c-466e-8714-d8c8429db7e6";
+"327e2478-87b5-4eba-9dd1-6918366c7da1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"8b6ff78e-014c-44d7-ba78-2006b86db3fd" -> "327e2478-87b5-4eba-9dd1-6918366c7da1";
+"60bf2fdd-e40b-4c79-ab2b-24c6bff0ae97" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"8b6ff78e-014c-44d7-ba78-2006b86db3fd" -> "60bf2fdd-e40b-4c79-ab2b-24c6bff0ae97";
+"c5e01a62-e85f-4707-a45f-49eb624b5da4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Bernachon,Bar)", shape=box, style=filled];
+"8b6ff78e-014c-44d7-ba78-2006b86db3fd" -> "c5e01a62-e85f-4707-a45f-49eb624b5da4";
+"eb9ec3da-8aec-484c-b0da-62884f057827" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "eb9ec3da-8aec-484c-b0da-62884f057827";
+"02754f4b-66b5-46f8-b427-c9043b6c323d" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"eb9ec3da-8aec-484c-b0da-62884f057827" -> "02754f4b-66b5-46f8-b427-c9043b6c323d";
+"66773396-42d7-4b86-b195-289ee353bea1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"02754f4b-66b5-46f8-b427-c9043b6c323d" -> "66773396-42d7-4b86-b195-289ee353bea1";
+"10caf46d-5682-45ed-b60d-d30a074d9cab" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"02754f4b-66b5-46f8-b427-c9043b6c323d" -> "10caf46d-5682-45ed-b60d-d30a074d9cab";
+"38a751c3-d97d-4e30-b2a1-92cc0bf1748c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"02754f4b-66b5-46f8-b427-c9043b6c323d" -> "38a751c3-d97d-4e30-b2a1-92cc0bf1748c";
+"4b866074-42e4-4eb6-bf22-e3f9e3efc8c4" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"eb9ec3da-8aec-484c-b0da-62884f057827" -> "4b866074-42e4-4eb6-bf22-e3f9e3efc8c4";
+"226631db-0755-4e1c-83c7-9c23e7fc31ec" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "226631db-0755-4e1c-83c7-9c23e7fc31ec";
+"f7b2afd5-172e-4f61-a7fd-7635fdf998c7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(BottledDrink)", shape=ellipse, style=filled];
+"226631db-0755-4e1c-83c7-9c23e7fc31ec" -> "f7b2afd5-172e-4f61-a7fd-7635fdf998c7";
+"e16be6cb-8fec-486e-a03d-6dff87de936e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"226631db-0755-4e1c-83c7-9c23e7fc31ec" -> "e16be6cb-8fec-486e-a03d-6dff87de936e";
+"d48b849a-4b45-4e2b-bfa2-006c7f88d051" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"226631db-0755-4e1c-83c7-9c23e7fc31ec" -> "d48b849a-4b45-4e2b-bfa2-006c7f88d051";
+"9e20a4f6-e58f-4110-a538-14881df9fba1" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(BottledDrink,Bar)", shape=box, style=filled];
+"226631db-0755-4e1c-83c7-9c23e7fc31ec" -> "9e20a4f6-e58f-4110-a538-14881df9fba1";
+"80bb0311-1f87-4af6-a786-20e869ddffbf" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "80bb0311-1f87-4af6-a786-20e869ddffbf";
+"f6e6a3e1-0759-44e1-8e5b-d350636a36b0" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"80bb0311-1f87-4af6-a786-20e869ddffbf" -> "f6e6a3e1-0759-44e1-8e5b-d350636a36b0";
+"ec10b3b5-792b-47d7-bb00-0454a405e5e1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"f6e6a3e1-0759-44e1-8e5b-d350636a36b0" -> "ec10b3b5-792b-47d7-bb00-0454a405e5e1";
+"8614a2e8-9005-4fca-8d71-60143de2b08d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"f6e6a3e1-0759-44e1-8e5b-d350636a36b0" -> "8614a2e8-9005-4fca-8d71-60143de2b08d";
+"557ba623-a633-432b-8779-eac1ead8c539" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"f6e6a3e1-0759-44e1-8e5b-d350636a36b0" -> "557ba623-a633-432b-8779-eac1ead8c539";
+"e044fc55-062c-472c-9c8e-4f32bbead6d6" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"80bb0311-1f87-4af6-a786-20e869ddffbf" -> "e044fc55-062c-472c-9c8e-4f32bbead6d6";
+"d05a6846-39b7-44e5-b12a-a98dabae6736" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "d05a6846-39b7-44e5-b12a-a98dabae6736";
+"a1732476-b4cc-481c-9d25-22295111d762" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Chips)", shape=ellipse, style=filled];
+"d05a6846-39b7-44e5-b12a-a98dabae6736" -> "a1732476-b4cc-481c-9d25-22295111d762";
+"49c6c9ec-3b95-43dc-88f5-06675d0e5bf1" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d05a6846-39b7-44e5-b12a-a98dabae6736" -> "49c6c9ec-3b95-43dc-88f5-06675d0e5bf1";
+"ed55981d-75e8-4ad0-bc1f-7332e123d260" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"d05a6846-39b7-44e5-b12a-a98dabae6736" -> "ed55981d-75e8-4ad0-bc1f-7332e123d260";
+"04fb64d5-6c56-4f53-9a86-e498ed641ba3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Chips,Bar)", shape=box, style=filled];
+"d05a6846-39b7-44e5-b12a-a98dabae6736" -> "04fb64d5-6c56-4f53-9a86-e498ed641ba3";
+"e6a68b9e-80e9-49aa-98f5-ac87f6288da7" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "e6a68b9e-80e9-49aa-98f5-ac87f6288da7";
+"e477cd0c-327d-4be3-af19-45dc454ff83e" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"e6a68b9e-80e9-49aa-98f5-ac87f6288da7" -> "e477cd0c-327d-4be3-af19-45dc454ff83e";
+"8603671b-a28b-4c77-a70d-7693a479c895" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"e477cd0c-327d-4be3-af19-45dc454ff83e" -> "8603671b-a28b-4c77-a70d-7693a479c895";
+"9e6e96b9-4e95-4f6c-8ed5-b69fe487087d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"e477cd0c-327d-4be3-af19-45dc454ff83e" -> "9e6e96b9-4e95-4f6c-8ed5-b69fe487087d";
+"c1afe35f-6e04-4ae8-bc21-5810d71efd7d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"e477cd0c-327d-4be3-af19-45dc454ff83e" -> "c1afe35f-6e04-4ae8-bc21-5810d71efd7d";
+"98150a13-3731-47c8-9a8e-d78a55e3645d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"e6a68b9e-80e9-49aa-98f5-ac87f6288da7" -> "98150a13-3731-47c8-9a8e-d78a55e3645d";
+"132bf3f9-ef25-4e05-9813-002cf8021409" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "132bf3f9-ef25-4e05-9813-002cf8021409";
+"e60445d9-2ff8-46a5-bfe4-c28830bb672b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"132bf3f9-ef25-4e05-9813-002cf8021409" -> "e60445d9-2ff8-46a5-bfe4-c28830bb672b";
+"a9da3177-f487-4698-a59f-bfa320d329f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Coffee)", shape=ellipse, style=filled];
+"132bf3f9-ef25-4e05-9813-002cf8021409" -> "a9da3177-f487-4698-a59f-bfa320d329f2";
+"dc8676aa-bd2e-4961-8f2f-a337d17e05d0" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"132bf3f9-ef25-4e05-9813-002cf8021409" -> "dc8676aa-bd2e-4961-8f2f-a337d17e05d0";
+"14fdadac-4678-4f2a-a5db-89bb1300fb3a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Coffee,Bar)", shape=box, style=filled];
+"132bf3f9-ef25-4e05-9813-002cf8021409" -> "14fdadac-4678-4f2a-a5db-89bb1300fb3a";
+"6b5035f6-4e7d-4914-881e-efc040a46e92" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "6b5035f6-4e7d-4914-881e-efc040a46e92";
+"34aa96bb-cb46-4b9e-a46a-f07b7d5b435f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6b5035f6-4e7d-4914-881e-efc040a46e92" -> "34aa96bb-cb46-4b9e-a46a-f07b7d5b435f";
+"c6647b89-208f-4669-9079-5b68c076ab9c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"34aa96bb-cb46-4b9e-a46a-f07b7d5b435f" -> "c6647b89-208f-4669-9079-5b68c076ab9c";
+"82cb330f-8288-4c34-ba33-3f0af489a8a8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"34aa96bb-cb46-4b9e-a46a-f07b7d5b435f" -> "82cb330f-8288-4c34-ba33-3f0af489a8a8";
+"e452ea52-2d8e-41d5-a217-f401cd032e2b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"34aa96bb-cb46-4b9e-a46a-f07b7d5b435f" -> "e452ea52-2d8e-41d5-a217-f401cd032e2b";
+"be59844a-9caf-45e2-94a6-a19f660a279c" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"6b5035f6-4e7d-4914-881e-efc040a46e92" -> "be59844a-9caf-45e2-94a6-a19f660a279c";
+"32096f54-f5d3-49cc-9702-3bddf080d2fe" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "32096f54-f5d3-49cc-9702-3bddf080d2fe";
+"ef27f545-f3b5-46a1-aea1-3e77e4c7ef99" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"32096f54-f5d3-49cc-9702-3bddf080d2fe" -> "ef27f545-f3b5-46a1-aea1-3e77e4c7ef99";
+"f2892b78-6688-4c60-91d3-97750ceb48f3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Dessert)", shape=ellipse, style=filled];
+"32096f54-f5d3-49cc-9702-3bddf080d2fe" -> "f2892b78-6688-4c60-91d3-97750ceb48f3";
+"4980523b-34b7-4b53-ba9b-bf4c5212c479" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"32096f54-f5d3-49cc-9702-3bddf080d2fe" -> "4980523b-34b7-4b53-ba9b-bf4c5212c479";
+"5354575b-84af-40ed-8e01-c31e8b1d3b90" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Dessert,Bar)", shape=box, style=filled];
+"32096f54-f5d3-49cc-9702-3bddf080d2fe" -> "5354575b-84af-40ed-8e01-c31e8b1d3b90";
+"4939a51b-2fed-4df4-8db8-b3914cb99572" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "4939a51b-2fed-4df4-8db8-b3914cb99572";
+"a822d82e-b6b0-4a56-8a3e-0241521d3d0c" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"4939a51b-2fed-4df4-8db8-b3914cb99572" -> "a822d82e-b6b0-4a56-8a3e-0241521d3d0c";
+"55c3bd46-df99-4607-8f4a-43713ffd728b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a822d82e-b6b0-4a56-8a3e-0241521d3d0c" -> "55c3bd46-df99-4607-8f4a-43713ffd728b";
+"3ce080d0-3205-4929-9166-49c4ff633e79" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"a822d82e-b6b0-4a56-8a3e-0241521d3d0c" -> "3ce080d0-3205-4929-9166-49c4ff633e79";
+"0cfd551b-c03c-42e1-b315-24b151ca76c2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"a822d82e-b6b0-4a56-8a3e-0241521d3d0c" -> "0cfd551b-c03c-42e1-b315-24b151ca76c2";
+"636ee734-15b7-4024-a99a-c4a1be49cb4b" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"4939a51b-2fed-4df4-8db8-b3914cb99572" -> "636ee734-15b7-4024-a99a-c4a1be49cb4b";
+"71eb1e55-077c-481e-a969-d95c0c50de23" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "71eb1e55-077c-481e-a969-d95c0c50de23";
+"18fd2435-dc2d-4bb5-92cb-41bae1112cdc" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Milk)", shape=ellipse, style=filled];
+"71eb1e55-077c-481e-a969-d95c0c50de23" -> "18fd2435-dc2d-4bb5-92cb-41bae1112cdc";
+"5f1c3314-2fd1-45e9-b521-ed2b72c21796" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"71eb1e55-077c-481e-a969-d95c0c50de23" -> "5f1c3314-2fd1-45e9-b521-ed2b72c21796";
+"a3783c9f-ae12-49ae-907a-f474593665a2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"71eb1e55-077c-481e-a969-d95c0c50de23" -> "a3783c9f-ae12-49ae-907a-f474593665a2";
+"19c9848f-caa2-40af-8534-43e9c2f16cc8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Milk,Bar)", shape=box, style=filled];
+"71eb1e55-077c-481e-a969-d95c0c50de23" -> "19c9848f-caa2-40af-8534-43e9c2f16cc8";
+"44c46a4a-e646-4274-a23b-ffd4686afa61" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "44c46a4a-e646-4274-a23b-ffd4686afa61";
+"ed86cd17-3f27-4930-aed4-c55dda092d5a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"44c46a4a-e646-4274-a23b-ffd4686afa61" -> "ed86cd17-3f27-4930-aed4-c55dda092d5a";
+"0977779f-a2d6-44af-b12b-9a00dc620cf2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"ed86cd17-3f27-4930-aed4-c55dda092d5a" -> "0977779f-a2d6-44af-b12b-9a00dc620cf2";
+"69c7c338-8c7a-466d-bec4-006beff4df4c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"ed86cd17-3f27-4930-aed4-c55dda092d5a" -> "69c7c338-8c7a-466d-bec4-006beff4df4c";
+"602e1341-9186-4478-ae53-0c0feed21e4e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"ed86cd17-3f27-4930-aed4-c55dda092d5a" -> "602e1341-9186-4478-ae53-0c0feed21e4e";
+"51bc0f4e-b9ff-4bf2-95e6-b5ecc1782efc" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"44c46a4a-e646-4274-a23b-ffd4686afa61" -> "51bc0f4e-b9ff-4bf2-95e6-b5ecc1782efc";
+"be610373-908a-4cdf-a276-eb63c0927891" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "be610373-908a-4cdf-a276-eb63c0927891";
+"b1da90b9-0bca-40b0-be7c-52025d64cb95" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(NFCJuice)", shape=ellipse, style=filled];
+"be610373-908a-4cdf-a276-eb63c0927891" -> "b1da90b9-0bca-40b0-be7c-52025d64cb95";
+"51176ed0-b011-4b3a-88e1-a2cbe51f50cf" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"be610373-908a-4cdf-a276-eb63c0927891" -> "51176ed0-b011-4b3a-88e1-a2cbe51f50cf";
+"ac5a6273-34c5-4827-8f01-6cff2ce195b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"be610373-908a-4cdf-a276-eb63c0927891" -> "ac5a6273-34c5-4827-8f01-6cff2ce195b3";
+"b3d397d6-35b3-4a04-9a6f-70201d0d06e2" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(NFCJuice,Bar)", shape=box, style=filled];
+"be610373-908a-4cdf-a276-eb63c0927891" -> "b3d397d6-35b3-4a04-9a6f-70201d0d06e2";
+"a1a9032d-687a-4505-ba96-a4951b52a1fb" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "a1a9032d-687a-4505-ba96-a4951b52a1fb";
+"1240ebfd-7e0f-403d-8b84-999c77431f55" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a1a9032d-687a-4505-ba96-a4951b52a1fb" -> "1240ebfd-7e0f-403d-8b84-999c77431f55";
+"55de91f8-8252-45d9-9940-cac57334d7a7" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"1240ebfd-7e0f-403d-8b84-999c77431f55" -> "55de91f8-8252-45d9-9940-cac57334d7a7";
+"81e7d562-7203-411f-ac99-b4993421209f" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"1240ebfd-7e0f-403d-8b84-999c77431f55" -> "81e7d562-7203-411f-ac99-b4993421209f";
+"bafa5440-348f-4c14-af1a-ed97197b26cd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"1240ebfd-7e0f-403d-8b84-999c77431f55" -> "bafa5440-348f-4c14-af1a-ed97197b26cd";
+"c035e88c-1906-4a98-a716-1c5b1db8b975" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"a1a9032d-687a-4505-ba96-a4951b52a1fb" -> "c035e88c-1906-4a98-a716-1c5b1db8b975";
+"a23e4845-02b2-40a5-ae00-092f9516be12" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "a23e4845-02b2-40a5-ae00-092f9516be12";
+"9a41cb8f-65e6-4309-b451-48b7992a62f2" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Softdrink)", shape=ellipse, style=filled];
+"a23e4845-02b2-40a5-ae00-092f9516be12" -> "9a41cb8f-65e6-4309-b451-48b7992a62f2";
+"37280f2a-9646-4b54-b532-22032d4dddb8" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"a23e4845-02b2-40a5-ae00-092f9516be12" -> "37280f2a-9646-4b54-b532-22032d4dddb8";
+"272cb815-fc07-4590-b2f8-d4b9fc454339" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"a23e4845-02b2-40a5-ae00-092f9516be12" -> "272cb815-fc07-4590-b2f8-d4b9fc454339";
+"8407cdcb-73ae-49c8-aaf2-bf3751ced541" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Softdrink,Bar)", shape=box, style=filled];
+"a23e4845-02b2-40a5-ae00-092f9516be12" -> "8407cdcb-73ae-49c8-aaf2-bf3751ced541";
+"a1481776-efcf-4951-9af8-3f060e3a2d85" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "a1481776-efcf-4951-9af8-3f060e3a2d85";
+"185f596d-f400-4055-8d07-f579b50bc711" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"a1481776-efcf-4951-9af8-3f060e3a2d85" -> "185f596d-f400-4055-8d07-f579b50bc711";
+"6dfe7617-104b-449c-bc93-2480450ffede" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"185f596d-f400-4055-8d07-f579b50bc711" -> "6dfe7617-104b-449c-bc93-2480450ffede";
+"d12a6c42-3089-4773-925e-9cb106948c96" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"185f596d-f400-4055-8d07-f579b50bc711" -> "d12a6c42-3089-4773-925e-9cb106948c96";
+"9419f1c4-688f-46e6-a3d2-e8287d596b48" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"185f596d-f400-4055-8d07-f579b50bc711" -> "9419f1c4-688f-46e6-a3d2-e8287d596b48";
+"3dc6a373-605d-49e1-b7e0-157be73bd02d" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"a1481776-efcf-4951-9af8-3f060e3a2d85" -> "3dc6a373-605d-49e1-b7e0-157be73bd02d";
+"7c5a7025-8822-428b-b1f0-6ba69f3871b9" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "7c5a7025-8822-428b-b1f0-6ba69f3871b9";
+"90c999b2-e118-47eb-ac33-58114ef78067" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7c5a7025-8822-428b-b1f0-6ba69f3871b9" -> "90c999b2-e118-47eb-ac33-58114ef78067";
+"ae03ea63-1515-4427-bffe-7de75cc3b7ea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(SpringWater)", shape=ellipse, style=filled];
+"7c5a7025-8822-428b-b1f0-6ba69f3871b9" -> "ae03ea63-1515-4427-bffe-7de75cc3b7ea";
+"822f40a3-5c5b-48cf-8628-9382e49b9290" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"7c5a7025-8822-428b-b1f0-6ba69f3871b9" -> "822f40a3-5c5b-48cf-8628-9382e49b9290";
+"654e625e-c14a-4705-9053-e43cb9bdbdec" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(SpringWater,Bar)", shape=box, style=filled];
+"7c5a7025-8822-428b-b1f0-6ba69f3871b9" -> "654e625e-c14a-4705-9053-e43cb9bdbdec";
+"79959fc1-102b-4dd0-bd26-0024bfab722a" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "79959fc1-102b-4dd0-bd26-0024bfab722a";
+"7a6a8b0d-9a57-43b4-a60d-d7db21ce7f2a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"79959fc1-102b-4dd0-bd26-0024bfab722a" -> "7a6a8b0d-9a57-43b4-a60d-d7db21ce7f2a";
+"15edc351-573b-4906-ad03-297f4bd85d93" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"7a6a8b0d-9a57-43b4-a60d-d7db21ce7f2a" -> "15edc351-573b-4906-ad03-297f4bd85d93";
+"d5b5cc68-7498-434b-9a16-a1c7e6afec4e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"7a6a8b0d-9a57-43b4-a60d-d7db21ce7f2a" -> "d5b5cc68-7498-434b-9a16-a1c7e6afec4e";
+"dc002244-de3d-4769-89e5-bfa498142b4c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"7a6a8b0d-9a57-43b4-a60d-d7db21ce7f2a" -> "dc002244-de3d-4769-89e5-bfa498142b4c";
+"d187eff6-e61c-4a75-993c-e23f27d59a11" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"79959fc1-102b-4dd0-bd26-0024bfab722a" -> "d187eff6-e61c-4a75-993c-e23f27d59a11";
+"d02a9e30-e1a8-403e-be19-df39bc160e15" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "d02a9e30-e1a8-403e-be19-df39bc160e15";
+"bd378d36-4f17-4a82-b7ce-cb9e187b3376" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(VacuumCup)", shape=ellipse, style=filled];
+"d02a9e30-e1a8-403e-be19-df39bc160e15" -> "bd378d36-4f17-4a82-b7ce-cb9e187b3376";
+"bd7f0ce8-fc6d-4c8b-b0a2-bca7a25c3298" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"d02a9e30-e1a8-403e-be19-df39bc160e15" -> "bd7f0ce8-fc6d-4c8b-b0a2-bca7a25c3298";
+"dbc4c650-9570-4d64-b445-d032032f1447" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"d02a9e30-e1a8-403e-be19-df39bc160e15" -> "dbc4c650-9570-4d64-b445-d032032f1447";
+"44efea8b-425c-41bb-88e8-77c9d8d91462" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(VacuumCup,Bar)", shape=box, style=filled];
+"d02a9e30-e1a8-403e-be19-df39bc160e15" -> "44efea8b-425c-41bb-88e8-77c9d8d91462";
+"6ff1a552-442a-469e-85a7-005b0545de29" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "6ff1a552-442a-469e-85a7-005b0545de29";
+"9da7cc2d-4610-4e56-834f-734a473cf45f" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"6ff1a552-442a-469e-85a7-005b0545de29" -> "9da7cc2d-4610-4e56-834f-734a473cf45f";
+"5753e20b-77fb-46bc-bca7-e09f8b90a47d" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"9da7cc2d-4610-4e56-834f-734a473cf45f" -> "5753e20b-77fb-46bc-bca7-e09f8b90a47d";
+"f2cef2e4-48c6-4746-8fd7-5a6c42eb3e4e" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"9da7cc2d-4610-4e56-834f-734a473cf45f" -> "f2cef2e4-48c6-4746-8fd7-5a6c42eb3e4e";
+"579d5579-5bec-4bcc-9902-9098af0e84b3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"9da7cc2d-4610-4e56-834f-734a473cf45f" -> "579d5579-5bec-4bcc-9902-9098af0e84b3";
+"6dfa4b2a-855a-4675-acf1-f27ffd3c4907" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"6ff1a552-442a-469e-85a7-005b0545de29" -> "6dfa4b2a-855a-4675-acf1-f27ffd3c4907";
+"b905bc4e-5fa0-41d1-ab6a-468bf85d2b85" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "b905bc4e-5fa0-41d1-ab6a-468bf85d2b85";
+"03c0a5b0-59b6-4840-a65b-186db7e4be39" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b905bc4e-5fa0-41d1-ab6a-468bf85d2b85" -> "03c0a5b0-59b6-4840-a65b-186db7e4be39";
+"e6035e64-c2b0-452b-a47a-39dc1309d3ea" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Water)", shape=ellipse, style=filled];
+"b905bc4e-5fa0-41d1-ab6a-468bf85d2b85" -> "e6035e64-c2b0-452b-a47a-39dc1309d3ea";
+"7d7bbbb0-d84c-47da-8595-2fe0920193aa" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"b905bc4e-5fa0-41d1-ab6a-468bf85d2b85" -> "7d7bbbb0-d84c-47da-8595-2fe0920193aa";
+"1a4f10a2-f887-44f3-9ff5-d8459cc4e15f" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Water,Bar)", shape=box, style=filled];
+"b905bc4e-5fa0-41d1-ab6a-468bf85d2b85" -> "1a4f10a2-f887-44f3-9ff5-d8459cc4e15f";
+"7f39a0b3-a29d-47ef-9293-045cf65eb9c6" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "7f39a0b3-a29d-47ef-9293-045cf65eb9c6";
+"c5587f32-fc90-4f69-ba6a-7b75074ba50a" [fillcolor="#B0FFFF", fontcolor=black, fontsize=20, height=0.01, label="?", shape=box, style=filled, width=0.01];
+"7f39a0b3-a29d-47ef-9293-045cf65eb9c6" -> "c5587f32-fc90-4f69-ba6a-7b75074ba50a";
+"691a7203-e4a5-452e-b22d-bd4af678aa01" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"c5587f32-fc90-4f69-ba6a-7b75074ba50a" -> "691a7203-e4a5-452e-b22d-bd4af678aa01";
+"63517f53-aacd-45d7-a8f9-0f3fcd62efdd" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"c5587f32-fc90-4f69-ba6a-7b75074ba50a" -> "63517f53-aacd-45d7-a8f9-0f3fcd62efdd";
+"78a69b57-aa86-44ab-9687-2bcf3e06648b" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"c5587f32-fc90-4f69-ba6a-7b75074ba50a" -> "78a69b57-aa86-44ab-9687-2bcf3e06648b";
+"250c1cc7-54e9-471f-ac1e-a9e3989d500a" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"7f39a0b3-a29d-47ef-9293-045cf65eb9c6" -> "250c1cc7-54e9-471f-ac1e-a9e3989d500a";
+"b2638e75-d5a6-4b29-9228-dc6b42948ec0" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"4662ab1d-be51-4494-8802-bf443d90cfc2" -> "b2638e75-d5a6-4b29-9228-dc6b42948ec0";
+"3c6de616-03f1-4aa9-a467-26e9bb08ad40" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"b2638e75-d5a6-4b29-9228-dc6b42948ec0" -> "3c6de616-03f1-4aa9-a467-26e9bb08ad40";
+"0eaaf3d0-de63-44e1-a166-f0cb6d262a8c" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"b2638e75-d5a6-4b29-9228-dc6b42948ec0" -> "0eaaf3d0-de63-44e1-a166-f0cb6d262a8c";
+"14b23eb1-5b8e-4aad-97a8-f3e8d8a5c4a3" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(Yogurt)", shape=ellipse, style=filled];
+"b2638e75-d5a6-4b29-9228-dc6b42948ec0" -> "14b23eb1-5b8e-4aad-97a8-f3e8d8a5c4a3";
+"37267417-bf55-440e-860e-c48b3b8b1fd3" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(Yogurt,Bar)", shape=box, style=filled];
+"b2638e75-d5a6-4b29-9228-dc6b42948ec0" -> "37267417-bf55-440e-860e-c48b3b8b1fd3";
+"c491468c-2123-4406-bb5c-67e268c947c8" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(MilkDrink,Bar)", shape=box, style=filled];
+"4465f4c9-b8fa-4f4b-b14b-1fea92565591" -> "c491468c-2123-4406-bb5c-67e268c947c8";
+"95ea79df-397e-4ace-932c-370e2db017ae" [fillcolor="#FF8080", fontcolor=black, fontsize=20, height=0.01, label="→", shape=box, style=filled, width=0.01];
+"6198a9aa-bfec-497d-bd83-a9efac95446f" -> "95ea79df-397e-4ace-932c-370e2db017ae";
+"db9f748d-5b42-4c8a-98f7-62a22a435362" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="At(Robot,Bar2)", shape=ellipse, style=filled];
+"95ea79df-397e-4ace-932c-370e2db017ae" -> "db9f748d-5b42-4c8a-98f7-62a22a435362";
+"a30f3c74-e181-46e5-82fe-aa9b75eb2a28" [fillcolor="#FFFF80", fontcolor=black, fontsize=20, label="Holding(MilkDrink)", shape=ellipse, style=filled];
+"95ea79df-397e-4ace-932c-370e2db017ae" -> "a30f3c74-e181-46e5-82fe-aa9b75eb2a28";
+"a84a7024-3472-4350-bb95-d794977232bb" [fillcolor=lightgreen, fontcolor=black, fontsize=20, label="PutDown(MilkDrink,Bar)", shape=box, style=filled];
+"95ea79df-397e-4ace-932c-370e2db017ae" -> "a84a7024-3472-4350-bb95-d794977232bb";
+}
diff --git a/BTExpansionCode/EXP/expanded_bt_xiaocai.png b/BTExpansionCode/EXP/expanded_bt_xiaocai.png
new file mode 100644
index 0000000..e7364fb
Binary files /dev/null and b/BTExpansionCode/EXP/expanded_bt_xiaocai.png differ
diff --git a/BTExpansionCode/EXP/expanded_bt_xiaocai.svg b/BTExpansionCode/EXP/expanded_bt_xiaocai.svg
new file mode 100644
index 0000000..fbd192f
--- /dev/null
+++ b/BTExpansionCode/EXP/expanded_bt_xiaocai.svg
@@ -0,0 +1,33139 @@
+
+
+
+
+
diff --git a/BTExpansionCode/OptimalBTExpansionAlgorithm.py b/BTExpansionCode/OptimalBTExpansionAlgorithm.py
index 92b6a28..d584d47 100644
--- a/BTExpansionCode/OptimalBTExpansionAlgorithm.py
+++ b/BTExpansionCode/OptimalBTExpansionAlgorithm.py
@@ -172,7 +172,7 @@ class OptBTExpAlgorithm:
if c <= start:
if self.bt_merge:
- bt = copy.deepcopy(self.merge_adjacent_conditions_stack(bt))
+ bt = self.merge_adjacent_conditions_stack(bt)
return bt,min_cost
else:
subtree.add_child([copy.deepcopy(pair_node.act_leaf)])
@@ -188,8 +188,14 @@ class OptBTExpAlgorithm:
# 遍历所有动作, 寻找符合条件的动作
current_mincost = pair_node.cond_leaf.mincost # 当前的最短路径是多少
+ traversed_current=[]
+
for i in range(0, len(actions)):
+ # if "MoveTo(WaterTable)" in actions[i].name:
+ # print(actions[i].name,"cost=",actions[i].cost)
+
+
if not c & ((actions[i].pre | actions[i].add) - actions[i].del_set) <= set() :
if (c - actions[i].del_set) == c:
if self.verbose:
@@ -214,19 +220,14 @@ class OptBTExpAlgorithm:
a_attr_node = Leaf(type='act', content=actions[i], mincost=current_mincost + actions[i].cost)
cond_anc_pair = CondActPair(cond_leaf=c_attr_node, act_leaf=a_attr_node)
self.nodes.append(copy.deepcopy(cond_anc_pair)) # condition node list
- self.traversed.append(c_attr) # 重点 the set of expanded conditions
+ traversed_current.append(c_attr)
+ # self.traversed.append(c_attr) # 重点 the set of expanded conditions
# 把符合条件的动作节点都放到列表里
if self.verbose:
print("———— -- %s 符合条件放入列表,对应的c为 %s" % (actions[i].name,c_attr))
-
- # self.merge_adjacent_conditions_stack()
- # self.merge_adjacent_conditions_stack_old()
- # self.merge_adjacent_conditions()
- # if self.verbose:
- # print("算法结束!\n")
- # return True
+ self.traversed.extend(traversed_current)
if self.bt_merge:
- bt = copy.deepcopy(self.merge_adjacent_conditions_stack(bt))
+ bt = self.merge_adjacent_conditions_stack(bt)
if self.verbose:
print("算法结束!\n")
return bt,min_cost
@@ -253,6 +254,10 @@ class OptBTExpAlgorithm:
self.bt,mincost = self.run_algorithm_selTree(start, goal[0], actions)
return True
+ def run_algorithm_test(self, start, goal, actions):
+ self.bt,mincost = self.run_algorithm_selTree(start, goal, actions)
+ return True
+
def merge_adjacent_conditions_stack(self,bt_sel):
# 只针对第一层合并,之后要考虑层层递归合并
@@ -296,7 +301,7 @@ class OptBTExpAlgorithm:
and isinstance(last_child.children[2].content, Action) and isinstance( child.children[1].content, Action) \
and last_child.children[2].content.name == child.children[1].content.name \
and c1==set() and c2!=set():
- last_child.children[1].add_child([copy.deepcopy(c2_node)])
+ last_child.children[1].add_child([c2_node])
continue
elif len(last_child.children)==3:
stack.append(child)
@@ -310,30 +315,30 @@ class OptBTExpAlgorithm:
if c2==set():
tmp_tree = ControlBT(type='>')
tmp_tree.add_child(
- [copy.deepcopy(inter_node), copy.deepcopy(a1_node)])
+ [inter_node, a1_node])
else:
_sel = ControlBT(type='?')
- _sel.add_child([copy.deepcopy(c1_node), copy.deepcopy(c2_node)])
+ _sel.add_child([c1_node, c2_node])
tmp_tree = ControlBT(type='>')
tmp_tree.add_child(
- [copy.deepcopy(inter_node), copy.deepcopy(_sel),copy.deepcopy(a1_node)])
+ [inter_node, _sel,a1_node])
else:
if c1 == set():
- seq1 = copy.deepcopy(last_child.children[1])
+ seq1 = last_child.children[1]
else:
seq1 = ControlBT(type='>')
- seq1.add_child([copy.deepcopy(c1_node), copy.deepcopy(a1_node)])
+ seq1.add_child([c1_node, a1_node])
if c2 == set():
- seq2 = copy.deepcopy(child.children[1])
+ seq2 = child.children[1]
else:
seq2 = ControlBT(type='>')
- seq2.add_child([copy.deepcopy(c2_node), copy.deepcopy(a2_node)])
+ seq2.add_child([c2_node, a2_node])
sel = ControlBT(type='?')
sel.add_child([seq1, seq2])
tmp_tree = ControlBT(type='>')
tmp_tree.add_child(
- [copy.deepcopy(inter_node), copy.deepcopy(sel)])
+ [inter_node,sel])
stack.pop()
stack.append(tmp_tree)
@@ -347,7 +352,7 @@ class OptBTExpAlgorithm:
for tree in stack:
sbtree.add_child([tree])
- bt_sel = copy.deepcopy(bt)
+ bt_sel = bt
return bt_sel
diff --git a/BTExpansionCode/main.py b/BTExpansionCode/main.py
index 830ffb2..dd71d84 100644
--- a/BTExpansionCode/main.py
+++ b/BTExpansionCode/main.py
@@ -6,7 +6,7 @@ from BehaviorTree import Leaf,ControlBT # 行为结点类:叶子结点和非
from OptimalBTExpansionAlgorithm_single_goal import Action,OptBTExpAlgorithm # 调用最优行为树扩展算法
from BTExpansionAlgorithm import BTExpAlgorithm
from OptimalBTExpansionAlgorithm_single_goal import generate_random_state,state_transition
-from tools import print_action_data_table,BTTest
+from tools import print_action_data_table,BTTest,BTTest_act_start_goal,get_act_start_goal
from Examples import MoveBtoB_num,MoveBtoB,Cond2BelongsToCond3 # 导入三个例子
from Examples import *
# from utils.bt.draw import render_dot_tree
@@ -157,9 +157,16 @@ if __name__ == '__main__' :
# # 设置生成规划问题集的超参数:文字数、解深度、迭代次数
seed=1
literals_num= 10
- depth = 50
+ depth = 10
iters= 10
- BTTest(bt_algo_opt=True,seed=seed,literals_num=literals_num,depth=depth,iters=iters)
+
+
+ act_list, start_list, goal_list = get_act_start_goal(seed=seed,literals_num=literals_num,depth=depth,iters=iters,total_count=1)
+ BTTest_act_start_goal(bt_algo_opt=True,act_list=act_list, start_list=start_list, goal_list=goal_list)
print("\n")
+ BTTest_act_start_goal(bt_algo_opt=False, act_list=act_list, start_list=start_list, goal_list=goal_list)
+
+ # BTTest(bt_algo_opt=True,seed=seed,literals_num=literals_num,depth=depth,iters=iters)
+ # print("\n")
# 对比
- BTTest(bt_algo_opt=False,seed=seed,literals_num=literals_num,depth=depth,iters=iters)
+ # BTTest(bt_algo_opt=False,seed=seed,literals_num=literals_num,depth=depth,iters=iters)
diff --git a/BTExpansionCode/tools.py b/BTExpansionCode/tools.py
index d974bb8..8ede6d4 100644
--- a/BTExpansionCode/tools.py
+++ b/BTExpansionCode/tools.py
@@ -4,14 +4,14 @@ from tabulate import tabulate
import numpy as np
import random
-from OptimalBTExpansionAlgorithm_single_goal import generate_random_state,state_transition
-from OptimalBTExpansionAlgorithm_single_goal import Action,OptBTExpAlgorithm
+from OptimalBTExpansionAlgorithm import generate_random_state,state_transition
+from OptimalBTExpansionAlgorithm import Action,OptBTExpAlgorithm
from BTExpansionAlgorithm import BTExpAlgorithm # 调用最优行为树扩展算法
import time
-
-
+np.random.seed(1)
+random.seed(1)
def print_action_data_table(goal,start,actions):
data = []
for a in actions:
@@ -58,6 +58,8 @@ def BTTest_old(bt_algo_opt=True,seed=1,literals_num=10,depth=10,iters=10,total_c
state = copy.deepcopy(start)
states.append(state)
#print (state)
+
+
for i in range (0,depth):
a = Action()
a.generate_from_state(state,literals_num)
@@ -233,20 +235,21 @@ def BTTest(bt_algo_opt=True,seed=1,literals_num=10,depth=10,iters=10,total_count
state = copy.deepcopy(start)
states.append(state)
#print (state)
- for i in range (0,depth):
- a = Action()
- a.generate_from_state(state,literals_num)
- a.cost = random.randint(1, 100)
- if not a in actions:
- a.name = "a"+str(action_num)
- action_num+=1
- actions.append(a)
- state = state_transition(state,a)
- if state in states:
- pass
- else:
- states.append(state)
- #print(state)
+ for k in range(10):
+ for i in range (0,depth):
+ a = Action()
+ a.generate_from_state(state,literals_num)
+ a.cost = random.randint(1, 100)
+ if not a in actions:
+ a.name = "a"+str(action_num)
+ action_num+=1
+ actions.append(a)
+ state = state_transition(state,a)
+ if state in states:
+ pass
+ else:
+ states.append(state)
+ #print(state)
goal = states[-1]
state = copy.deepcopy(start)
@@ -277,12 +280,12 @@ def BTTest(bt_algo_opt=True,seed=1,literals_num=10,depth=10,iters=10,total_count
#algo = Weakalgorithm()
start_time = time.time()
- # if count == 352 : #874:
- # print_action_data_table(goal, start, list(actions))
+ if count == 0 : #874:
+ print_action_data_table(goal, start, list(actions))
# print_action_data_table(goal, start, list(actions))
- if algo.run_algorithm(start, goal, actions):#运行算法,规划后行为树为algo.bt
+ if algo.run_algorithm_test(start, goal, actions):#运行算法,规划后行为树为algo.bt
total_tree_size.append( algo.bt.count_size()-1)
- # if count==352:
+ # if count==0:
# algo.print_solution()
# algo.print_solution() # 打印行为树
else:
@@ -361,6 +364,198 @@ def BTTest(bt_algo_opt=True,seed=1,literals_num=10,depth=10,iters=10,total_count
# Average number of actions 20.0
# Planning Time Total: 1.4748523235321045 0.0014748523235321046
+ # our
+ # success: 1000 failure: 0
+ # Total Tree Size: mean= 48.764 std= 20.503626574406358
+ # Total Steps Num: mean= 1.785 std= 0.8120556843187752
+ # Average number of states: 20.678
+ # Average number of actions 20.0
+ # Planning Time Total: 3.3271877765655518 0.0033271877765655516
+
+
+def get_act_start_goal(seed=1,literals_num=10,depth=10,iters=10,total_count=1000):
+ act_list=[]
+ start_list=[]
+ goal_list=[]
+
+ for count in range(total_count):
+ # 生成一个规划问题,包括随机的状态和行动,以及目标状态
+ action_num=1
+ states = []
+ actions = []
+ start = generate_random_state(literals_num)
+ state = copy.deepcopy(start)
+ states.append(state)
+ # print (state)
+ for k in range(int(iters/5)):
+ state = copy.deepcopy(start)
+ for i in range(0, depth):
+ a = Action()
+ a.generate_from_state(state, literals_num)
+ a.cost = random.randint(1, 100)
+ if not a in actions:
+ a.name = "a" + str(action_num)
+ action_num += 1
+ actions.append(a)
+ state = state_transition(state, a)
+ if state in states:
+ pass
+ else:
+ states.append(state)
+ # print(state)
+
+ goal = states[-1]
+ state = copy.deepcopy(start)
+ for i in range(0, int(iters/5)):
+ a = Action()
+ a.generate_from_state(state, literals_num)
+ if not a in actions:
+ a.name = "a" + str(action_num)
+ action_num += 1
+ actions.append(a)
+ state = state_transition(state, a)
+ if state in states:
+ pass
+ else:
+ states.append(state)
+ state = random.sample(states, 1)[0]
+
+ act_list.append(actions)
+ start_list.append(start)
+ goal_list.append(goal)
+ # print("action:",len(actions))
+ return act_list, start_list, goal_list
+
+
+def BTTest_act_start_goal(bt_algo_opt,act_list,start_list,goal_list):
+
+ if bt_algo_opt:
+ print("============= OptBT Test ==============")
+ else:
+ print("============= XiaoCai BT Test ==============")
+
+ # 设置生成规划问题集的超参数:文字数、解深度、迭代次数
+
+ total_tree_size = []
+ total_action_num = []
+ total_state_num = []
+ total_steps_num=[]
+ total_cost=[]
+ total_tick=[]
+ #fail_count=0
+ #danger_count=0
+ success_count =0
+ failure_count = 0
+ planning_time_total = 0.0
+
+ error = False
+
+ # 实验1000次
+ for count, (actions, start, goal) in enumerate(zip(act_list, start_list, goal_list)):
+
+
+ states=[]
+ # 生成一个规划问题,包括随机的状态和行动,以及目标状态
+ state = copy.deepcopy(start)
+ states.append(state)
+
+ # 选择测试本文算法btalgorithm,或对比算法weakalgorithm
+
+ if bt_algo_opt:
+ # if count==874:
+ # algo = OptBTExpAlgorithm(verbose=False)
+ # else:
+ algo = OptBTExpAlgorithm(verbose=False)
+ else:
+ algo = BTExpAlgorithm(verbose=False)
+ algo.clear()
+
+ #algo = Weakalgorithm()
+ start_time = time.time()
+ if count == 0 : #874:
+ print_action_data_table(goal, start, list(actions))
+ # print_action_data_table(goal, start, list(actions))
+ if algo.run_algorithm_test(start, goal, actions):#运行算法,规划后行为树为algo.bt
+ total_tree_size.append( algo.bt.count_size()-1)
+ if count==0:
+ algo.print_solution()
+ # algo.print_solution() # 打印行为树
+ else:
+ print ("error")
+ end_time = time.time()
+ planning_time_total += (end_time-start_time)
+
+ #开始从初始状态运行行为树,测试
+ state=start
+ steps=0
+ current_cost = 0
+ current_tick_time=0
+ val, obj, cost, tick_time = algo.bt.cost_tick(state,0,0)#tick行为树,obj为所运行的行动
+
+ current_tick_time+=tick_time
+ current_cost += cost
+ while val !='success' and val !='failure':#运行直到行为树成功或失败
+ state = state_transition(state,obj)
+ val, obj,cost, tick_time = algo.bt.cost_tick(state,0,0)
+ current_cost += cost
+ current_tick_time += tick_time
+ if(val == 'failure'):
+ print("bt fails at step",steps)
+ error = True
+ break
+ steps+=1
+ if(steps>=500):#至多运行500步
+ break
+ if not goal <= state:#错误解,目标条件不在执行后状态满足
+ #print ("wrong solution",steps)
+ failure_count+=1
+ error = True
+ else:#正确解,满足目标条件
+ #print ("right solution",steps)
+ success_count+=1
+ total_steps_num.append(steps)
+ if error:
+ print_action_data_table(goal, start, list(actions))
+ algo.print_solution()
+ break
+
+
+ algo.clear()
+ total_action_num.append(len(actions))
+ total_state_num.append(len(states))
+ total_cost.append(current_cost)
+ total_tick.append(current_tick_time)
+
+ print("success:",success_count,"failure:",failure_count)#算法成功和失败次数
+ print("Total Tree Size: mean=",np.mean(total_tree_size), "std=",np.std(total_tree_size, ddof=1))#1000次测试树大小
+ print("Total Steps Num: mean=",np.mean(total_steps_num),"std=",np.std(total_steps_num,ddof=1))
+ print("Average Number of States:",np.mean(total_state_num))#1000次问题的平均状态数
+ print("Average Number of Actions",np.mean(total_action_num))#1000次问题的平均行动数
+ print("Planning Time Total:",planning_time_total,planning_time_total/1000.0)
+ print("Average Number of Ticks", np.mean(total_tick),"std=",np.std(total_tick,ddof=1))
+ print("Average Cost of Execution:", np.mean(total_cost),"std=",np.std(total_cost,ddof=1))
+ # print(total_steps_num) 第21个
+ if bt_algo_opt:
+ print("============= End OptBT Test ==============")
+ else:
+ print("============= End XiaoCai BT Test ==============")
+
+ # xiao cai
+ # success: 1000 failure: 0
+ # Total Tree Size: mean= 35.303 std= 29.71336526001515
+ # Total Steps Num: mean= 1.898 std= 0.970844240101644
+ # Average number of states: 20.678
+ # Average number of actions 20.0
+ # Planning Time Total: 0.6280641555786133 0.0006280641555786133
+
+ # our start
+ # success: 1000 failure: 0
+ # Total Tree Size: mean= 17.945 std= 12.841997192488865
+ # Total Steps Num: mean= 1.785 std= 0.8120556843187752
+ # Average number of states: 20.678
+ # Average number of actions 20.0
+ # Planning Time Total: 1.4748523235321045 0.0014748523235321046
+
# our
# success: 1000 failure: 0
# Total Tree Size: mean= 48.764 std= 20.503626574406358