Jelajahi Sumber

提交代码

yulongyan_citu 1 tahun lalu
induk
melakukan
e9ba29ee0b

+ 2 - 9
app.py

@@ -7,12 +7,11 @@ from interfaces.resume import resume
 from interfaces.rocketmq import rocket
 import logging
 from logging.handlers import TimedRotatingFileHandler
-# from configs.nacos_bak import nacos_service_single
 
 app = Flask(__name__)
 app.config['JSON_AS_ASCII'] = False
 CORS(app, resources=r'/*')
-# nacos_service_single.start()
+
 # 注册蓝图
 app.register_blueprint(resume, url_prefix='/resume')
 app.register_blueprint(rocket, url_prefix='/rocket')
@@ -23,17 +22,11 @@ os.makedirs(log_directory, exist_ok=True)
 
 # 配置日志
 formatter = logging.Formatter("[%(asctime)s][%(filename)s:%(lineno)d][%(levelname)s][%(thread)d] - %(message)s")
-handler = TimedRotatingFileHandler(os.path.join(log_directory, "flask.log"), when="midnight", interval=1, backupCount=15, encoding="UTF-8")
+handler = TimedRotatingFileHandler(os.path.join(log_directory, "flask.log"), when="midnight", interval=1, backupCount=15, encoding="UTF-8",delay=True)
 handler.setFormatter(formatter)
 app.logger.addHandler(handler)
 app.logger.setLevel(logging.DEBUG)
 
-# 立即轮转日志文件
-try:
-    handler.doRollover()
-except Exception as e:
-    app.logger.error(f"Failed to rollover log file: {e}")
-
 # 启动应用
 def run_app():
     plat = platform.system().lower()

+ 15 - 14
functions/operate_graph.py

@@ -78,16 +78,16 @@ def delete_old_jobs(dataList):
         WITH n, rel
         // 删除连接数大于1的connection关系
         WHERE connection_count > 1
-        DELETE rel
-
-        // 第二步:删除指定的job节点
-        WITH $Ids AS ids_list
-        UNWIND ids_list AS Id
-        MATCH (n:job {uniqueId: Id})
-        DETACH DELETE n
-        """
+        DELETE rel"""
         ids = [item['id'] for item in dataList]
         connect_graph.run(query, Ids=ids)
+        cql ="""// 第二步:删除指定的job节点
+            WITH $Ids AS ids_list
+            UNWIND ids_list AS Id
+            MATCH (n:job {uniqueId: Id})
+            DETACH DELETE n
+            """
+        connect_graph.run(cql, Ids=ids)
     except Exception as e:
         current_app.logger.error(f'delete_old_jobs error: {e}')
 
@@ -162,16 +162,16 @@ def delete_old_enterprise(dataList):
               WITH n, rel
               // 删除连接数大于1的connection关系
               WHERE connection_count > 1
-              DELETE rel
-
-              // 第二步:删除指定的enterprise节点
+              DELETE rel"""
+        # 提取所有 id (批量删除多个)
+        ids = [item['id'] for item in dataList]
+        connect_graph.run(query, Ids=ids)
+        cql ="""// 第二步:删除指定的enterprise节点
                WITH $Ids AS ids_list
               UNWIND ids_list AS Id
               MATCH (n:enterprise {uniqueId: Id})
               DETACH DELETE n"""
-        # 提取所有 id (批量删除多个)
-        ids = [item['id'] for item in dataList]
-        connect_graph.run(query, Ids=ids)
+        connect_graph.run(cql, Ids=ids)
     except Exception as e:
         current_app.logger.error(f'delete_old_enterprise error:{e}')
 
@@ -246,6 +246,7 @@ def operate_seeker(operate, dataList):
             connect_graph.run(cql, Id=dataList[0]['id'])
         else:
             current_app.logger.error(f'operate_seeker: Invalid operation')
+            current_app.logger.error(f'operate_seeker:', dataList)
         return True
     except Exception as e:
         current_app.logger.error(f'operate_seeker error: {e}')

+ 88 - 35
functions/solve_graph.py

@@ -8,6 +8,7 @@ logger = logging.getLogger(__name__)
 from flask import current_app
 from datetime import datetime
 import  re
+import sys
 
 
 api_key = "sk-86d4622141d74e9a8d7c38ee873c4d91"
@@ -34,12 +35,13 @@ edu_categories = {
 }
 # 定义工作年限类别字典
 work_ranges = {
-            range(0, 2): "2年以下工作经验",
-            range(2, 5): "2-5年工作经验",
-            range(5, 10): "5-10年工作经验",
-            range(10, 15): "10-15年工作经验",
-            range(15, 20): "15-20年工作经验"
-        }
+    range(0, 2): "2年以下工作经验",
+    range(2, 5): "2-5年工作经验",
+    range(5, 10): "5-10年工作经验",
+    range(10, 15): "10-15年工作经验",
+    range(15, 20): "15-20年工作经验",
+    range(20, sys.maxsize): "20年以上工作经验"
+}
 
 
 # 提取共有标签
@@ -69,7 +71,7 @@ def llm_client1(content):
         result = ast.literal_eval(temp)
         return result
     except Exception as e:
-        current_app.logger.error(f'llm_client error: {e}')
+        current_app.logger.error(f'llm_client1 error: {e}')
         return []
 
 def llm_client(content):
@@ -80,14 +82,15 @@ def llm_client(content):
         response = client.chat.completions.create(
             model=model_name,
             messages=[
-                {"role": "system", "content": "你是一个数据处理工具,根据用户的提示提取标签"},
+                {"role": "system", "content": "你是一个提取年龄专家,根据用户的提示提取内容"},
                 {"role": "user",
                  "content": f"例如,如果输入是 '学历大专为主,不接受实习生,年龄要求20-42岁' "
-                            f"输出应该是 ['20-42岁']。"
-                            f"只提取对应年龄,其他不需要。内容如下:{content}"},
+                            f"返回是 ['20-42岁']。"
+                            f"如不含有年龄相似内容,返回是"'[]'""
+                            f"只提取年龄,其他不需要。内容如下:{content}"}
             ],
             max_tokens=1024,
-            temperature=0.1,
+            temperature=0,
             stream=False
         )
         result = response.choices[0].message.content
@@ -98,6 +101,32 @@ def llm_client(content):
         current_app.logger.error(f'llm_client error: {e}')
         return []
 
+def address_client(content):
+    try:
+        if content is None or content == []:
+            return []
+        client = OpenAI(api_key=api_key, base_url=base_url, )
+        response = client.chat.completions.create(
+            model=model_name,
+            messages=[
+                {"role": "system", "content": "你是一个提取地址专家,根据用户的提示提取内容"},
+                {"role": "user",
+                 "content": f"例如,如果输入是 '福建省厦门市思明区' "
+                            f"输出应该是 ['福建厦门']。"
+                            f"只提取对应地址,其他不需要。内容如下:{content}"},
+            ],
+            max_tokens=1024,
+            temperature=0.1,
+            stream=False
+        )
+        result = response.choices[0].message.content
+        temp = result.replace("'", '"')
+        result = ast.literal_eval(temp)
+        return result
+    except Exception as e:
+        current_app.logger.error(f'address_client error: {e}')
+        return []
+
 def bs_data(data):
     try:
         soup = BeautifulSoup(data,'html.parser')
@@ -116,15 +145,24 @@ def create_job_dataList(dataList):
         :return:
         '''
         for item in dataList:
+            if item['status'] != "开启":
+                continue
             eduType = item['eduType']
             if eduType:
                 eduType = next((value for pattern, value in edu_categories.items() if pattern.search(eduType)), '未知')
             else:
                 eduType = None
-            value_list = [
-                             eduType,
-                             item['name'],
-                         ] + item["tagList"]+llm_client(bs_data(item['requirement']))
+            address = []
+            if item['address']:
+                address = address_client(item['address'])
+            # 确保 address 是列表
+            if not isinstance(address, list):
+                address = []
+            value_list = []
+            value_list.extend([
+                                  item['eduType'],
+                                  item['name'],
+                              ] + (item["tagList"] or []) + llm_client(bs_data(item['requirement'])) + address)
             # 招聘职位
             job = create_or_get_node('job', uniqueId=item['id'])
             # 标签
@@ -163,13 +201,26 @@ def create_enterprise_dataList(dataList):
         current_app.logger.error(f'create_enterprise_dataList error: {e}')
         return str(e)
 
+
 def calculate_work_duration(work):
-    start_time = work['startTime'] / 1000
-    end_time = work['endTime'] / 1000 if work['endTime'] is not None else datetime.now().timestamp()
-    duration = end_time - start_time
-    return duration
+    if work['startTime'] is None:
+        return None  # 或者返回一个默认值,表示无法计算工作年限
 
+    start_time = datetime.strptime(work['startTime'], '%Y-%m-%dT%H:%M:%S')
 
+    if work['endTime'] is not None:
+        end_time = datetime.strptime(work['endTime'], '%Y-%m-%dT%H:%M:%S')
+    else:
+        end_time = datetime.now()
+
+    duration = end_time.year - start_time.year
+    return duration
+
+def get_work_experience_label(longest_duration):
+    for key, value in work_ranges.items():
+        if key.start <= longest_duration < key.stop:
+            return value
+    return "未知"
 
 # 全部新增
 def create_seeker_dataList(dataList):
@@ -187,14 +238,15 @@ def create_seeker_dataList(dataList):
                 birthday = item['person'].get('birthday', '')
                 if birthday:
                     try:
-                        # 将 birthday 时间戳转换为秒
-                        birthday_timestamp = int(birthday) / 1000
-                        birthday_datetime = datetime.utcfromtimestamp(birthday_timestamp)
-                        age = datetime.now().year - birthday_datetime.year
-                        age_range = next((value for key, value in age_ranges.items() if age in key), "未知")
+                        # 提取 birthday 中的年份
+                        date_obj = datetime.strptime(birthday, '%Y-%m-%dT%H:%M:%S')
+                        year = date_obj.year
+                        age = datetime.now().year - year
+                        age_range = next((value for key, value in age_ranges.items() if age in key), "60+岁")
                     except ValueError as e:
                         current_app.logger.error(f'Invalid birthday format: {birthday}')
-                        current_app.logger.error(f'Invalid id format:', record['userId'])
+                        current_app.logger.error(f'Invalid id format:', item)
+                        current_app.logger.error(str(e))
                         age_range = None
                 else:
                     age_range = None
@@ -219,10 +271,10 @@ def create_seeker_dataList(dataList):
             if workList:
                 longest_work = max(workList, key=calculate_work_duration)
                 longest_duration = calculate_work_duration(longest_work)
-                # 将秒转换为年
-                longest_duration_years = longest_duration / (365.25 * 24 * 60 * 60)
-                year_range = next((value for key, value in work_ranges.items()
-                                   if longest_duration_years in key), "20年以上工作经验")
+                if longest_duration:
+                    year_range = get_work_experience_label(longest_duration)
+                else:
+                    year_range = "未知"
             else:
                 year_range = None
             value_list = [
@@ -259,14 +311,15 @@ def add_seeker_dataList(dataList):
              birthday = record.get('birthday', '')
              if birthday:
                  try:
-                     # 将 birthday 时间戳转换为秒
-                     birthday_timestamp = int(birthday) / 1000
-                     birthday_datetime = datetime.utcfromtimestamp(birthday_timestamp)
-                     age = datetime.now().year - birthday_datetime.year
-                     age_range = next((value for key, value in age_ranges.items() if age in key), "未知")
+                     # 提取 birthday 中的年份
+                     date_obj = datetime.strptime(birthday, '%Y-%m-%dT%H:%M:%S')
+                     year = date_obj.year
+                     age = datetime.now().year - year
+                     age_range = next((value for key, value in age_ranges.items() if age in key), "60+岁")
                  except ValueError as e:
                      current_app.logger.error(f'Invalid birthday format: {birthday}')
-                     current_app.logger.error(f'Invalid id format:',record['userId'])
+                     current_app.logger.error(f'Invalid id format:',record)
+                     current_app.logger.error(str(e))
                      age_range = None
              else:
                  age_range = None

+ 3 - 2
interfaces/rocketmq.py

@@ -4,7 +4,7 @@ from functions.label_number import job_label, enterprise_label, seeker_label
 from functions.operate_graph import operate_job, operate_enterprise, operate_seeker
 import logging
 from functions.similarity_judge import similar_job, similar_seeker, draw_graph, home_job, home_person, draw_person_graph
-from functions.solve_graph import llm_client, llm_client1
+from functions.solve_graph import llm_client1
 from configs.connections import connect_graph
 logger = logging.getLogger(__name__)
 rocket = Blueprint('rocket', __name__)
@@ -26,7 +26,7 @@ def delete_data():
             connect_graph.run('match (n:seekerLabel) detach delete n')
         else:
             current_app.logger.error('delete_data Invalid type')
-            return jsonify(success(True, "success"))  # 返回成功响应
+        return jsonify(success(True, "success"))  # 返回成功响应
 
     except Exception as e:
         current_app.logger.error(f'delete_data error: {e}')
@@ -42,6 +42,7 @@ def receive_data():
         type = receiver.get('type')  # job, enterprise, person,person_all
         dataList = receiver.get('dataList', [])
 
+        current_app.logger.info(receiver)
         if type == 'job':
             result = operate_job(operate, dataList)
         elif type == 'enterprise':

+ 2901 - 0
logs/flask.log.2024-10-08

@@ -0,0 +1,2901 @@
+[2024-10-08 20:08:51,718][app.py:35][ERROR][14556] - Failed to rollover log file: [WinError 32] 另一个程序正在使用此文件,进程无法访问。: 'E:\\task1\\mendunr_project\\logs\\flask.log' -> 'E:\\task1\\mendunr_project\\logs\\flask.log.2024-10-08'
+[2024-10-08 20:09:11,142][solve_graph.py:249][ERROR][28736] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,147][solve_graph.py:196][ERROR][23164] - Invalid birthday format: 1986-10-31T00:00:00
+[2024-10-08 20:09:11,148][solve_graph.py:197][ERROR][23164] - Invalid id format:
+[2024-10-08 20:09:11,148][solve_graph.py:249][ERROR][23164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,148][solve_graph.py:249][ERROR][15780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,150][solve_graph.py:249][ERROR][22360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,150][solve_graph.py:196][ERROR][21352] - Invalid birthday format: 1987-04-12T00:00:00
+[2024-10-08 20:09:11,150][solve_graph.py:249][ERROR][9660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,151][solve_graph.py:249][ERROR][13864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,152][solve_graph.py:249][ERROR][17884] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,152][solve_graph.py:249][ERROR][16916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,152][solve_graph.py:249][ERROR][7772] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,153][solve_graph.py:196][ERROR][15684] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:11,153][solve_graph.py:249][ERROR][29384] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,153][solve_graph.py:249][ERROR][21052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,153][solve_graph.py:249][ERROR][4000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,154][solve_graph.py:196][ERROR][18036] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:11,154][solve_graph.py:249][ERROR][29312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,154][solve_graph.py:249][ERROR][4844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,154][solve_graph.py:196][ERROR][22400] - Invalid birthday format: 2003-08-14T00:00:00
+[2024-10-08 20:09:11,157][solve_graph.py:197][ERROR][21352] - Invalid id format:
+[2024-10-08 20:09:11,168][solve_graph.py:197][ERROR][15684] - Invalid id format:
+[2024-10-08 20:09:11,172][solve_graph.py:197][ERROR][18036] - Invalid id format:
+[2024-10-08 20:09:11,176][solve_graph.py:197][ERROR][22400] - Invalid id format:
+[2024-10-08 20:09:11,177][solve_graph.py:249][ERROR][21352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,178][solve_graph.py:249][ERROR][15684] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,179][solve_graph.py:249][ERROR][18036] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,180][solve_graph.py:249][ERROR][22400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,199][solve_graph.py:249][ERROR][8544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,208][solve_graph.py:249][ERROR][25148] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,238][solve_graph.py:249][ERROR][27580] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,255][solve_graph.py:196][ERROR][7724] - Invalid birthday format: 1976-04-27T00:00:00
+[2024-10-08 20:09:11,255][solve_graph.py:197][ERROR][7724] - Invalid id format:
+[2024-10-08 20:09:11,256][solve_graph.py:249][ERROR][7724] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,283][solve_graph.py:196][ERROR][18896] - Invalid birthday format: 1995-01-03T00:00:00
+[2024-10-08 20:09:11,284][solve_graph.py:197][ERROR][18896] - Invalid id format:
+[2024-10-08 20:09:11,284][solve_graph.py:249][ERROR][18896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,288][solve_graph.py:196][ERROR][5164] - Invalid birthday format: 1972-09-20T00:00:00
+[2024-10-08 20:09:11,289][solve_graph.py:197][ERROR][5164] - Invalid id format:
+[2024-10-08 20:09:11,289][solve_graph.py:249][ERROR][5164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,305][solve_graph.py:249][ERROR][6800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,317][solve_graph.py:249][ERROR][22576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,318][solve_graph.py:249][ERROR][8460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,327][solve_graph.py:249][ERROR][29304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,332][solve_graph.py:249][ERROR][19256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,352][solve_graph.py:196][ERROR][22608] - Invalid birthday format: 1994-07-04T00:00:00
+[2024-10-08 20:09:11,352][solve_graph.py:197][ERROR][22608] - Invalid id format:
+[2024-10-08 20:09:11,352][solve_graph.py:249][ERROR][22608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,357][solve_graph.py:249][ERROR][20832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,365][solve_graph.py:249][ERROR][10380] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,375][solve_graph.py:249][ERROR][11832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,424][solve_graph.py:196][ERROR][21540] - Invalid birthday format: 1994-12-11T00:00:00
+[2024-10-08 20:09:11,425][solve_graph.py:197][ERROR][21540] - Invalid id format:
+[2024-10-08 20:09:11,425][solve_graph.py:249][ERROR][21540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,514][solve_graph.py:249][ERROR][27188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,520][solve_graph.py:196][ERROR][10112] - Invalid birthday format: 1986-10-21T00:00:00
+[2024-10-08 20:09:11,521][solve_graph.py:197][ERROR][10112] - Invalid id format:
+[2024-10-08 20:09:11,521][solve_graph.py:249][ERROR][10112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,524][solve_graph.py:249][ERROR][16024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,534][solve_graph.py:196][ERROR][3000] - Invalid birthday format: 1989-10-24T00:00:00
+[2024-10-08 20:09:11,535][solve_graph.py:197][ERROR][3000] - Invalid id format:
+[2024-10-08 20:09:11,535][solve_graph.py:249][ERROR][3000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,538][solve_graph.py:249][ERROR][5000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,542][solve_graph.py:249][ERROR][4608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,551][solve_graph.py:249][ERROR][21672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,554][solve_graph.py:249][ERROR][19120] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,559][solve_graph.py:249][ERROR][26412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,567][solve_graph.py:249][ERROR][3948] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,571][solve_graph.py:196][ERROR][15632] - Invalid birthday format: 1993-08-14T00:00:00
+[2024-10-08 20:09:11,574][solve_graph.py:249][ERROR][17164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,576][solve_graph.py:249][ERROR][22096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,578][solve_graph.py:249][ERROR][13856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,587][solve_graph.py:196][ERROR][29444] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:11,589][solve_graph.py:249][ERROR][4716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,595][solve_graph.py:249][ERROR][17180] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,599][solve_graph.py:249][ERROR][27544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,602][solve_graph.py:249][ERROR][8668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,630][solve_graph.py:249][ERROR][15592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,645][solve_graph.py:196][ERROR][29096] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:11,649][solve_graph.py:249][ERROR][19716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,713][solve_graph.py:197][ERROR][29444] - Invalid id format:
+[2024-10-08 20:09:11,716][solve_graph.py:249][ERROR][5488] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,720][solve_graph.py:197][ERROR][29096] - Invalid id format:
+[2024-10-08 20:09:11,722][solve_graph.py:197][ERROR][15632] - Invalid id format:
+[2024-10-08 20:09:11,724][solve_graph.py:249][ERROR][29444] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,728][solve_graph.py:249][ERROR][29096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,735][solve_graph.py:249][ERROR][15632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,766][solve_graph.py:249][ERROR][14812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,829][solve_graph.py:249][ERROR][7504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:11,976][solve_graph.py:196][ERROR][8344] - Invalid birthday format: 1992-06-28T00:00:00
+[2024-10-08 20:09:11,976][solve_graph.py:197][ERROR][8344] - Invalid id format:
+[2024-10-08 20:09:11,976][solve_graph.py:249][ERROR][8344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,021][solve_graph.py:249][ERROR][26660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,080][solve_graph.py:249][ERROR][852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,171][solve_graph.py:249][ERROR][29600] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,290][solve_graph.py:249][ERROR][15964] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,336][solve_graph.py:249][ERROR][26700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,370][solve_graph.py:249][ERROR][16020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,411][solve_graph.py:249][ERROR][25772] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,441][solve_graph.py:249][ERROR][8640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,460][solve_graph.py:249][ERROR][18064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,478][solve_graph.py:249][ERROR][23532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,517][solve_graph.py:249][ERROR][19740] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,617][solve_graph.py:249][ERROR][328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,622][solve_graph.py:249][ERROR][11584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,628][solve_graph.py:249][ERROR][21728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,639][solve_graph.py:249][ERROR][20528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,647][solve_graph.py:249][ERROR][20680] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,654][solve_graph.py:249][ERROR][27928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,680][solve_graph.py:249][ERROR][29068] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,689][solve_graph.py:249][ERROR][26392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,692][solve_graph.py:249][ERROR][27020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,698][solve_graph.py:196][ERROR][18612] - Invalid birthday format: 1969-05-01T00:00:00
+[2024-10-08 20:09:12,699][solve_graph.py:197][ERROR][18612] - Invalid id format:
+[2024-10-08 20:09:12,699][solve_graph.py:249][ERROR][18612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,703][solve_graph.py:196][ERROR][27924] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:12,703][solve_graph.py:197][ERROR][27924] - Invalid id format:
+[2024-10-08 20:09:12,704][solve_graph.py:249][ERROR][27924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,706][solve_graph.py:196][ERROR][19532] - Invalid birthday format: 1990-11-03T00:00:00
+[2024-10-08 20:09:12,708][solve_graph.py:197][ERROR][19532] - Invalid id format:
+[2024-10-08 20:09:12,709][solve_graph.py:249][ERROR][19532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,721][solve_graph.py:249][ERROR][24348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,738][solve_graph.py:249][ERROR][1932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,754][solve_graph.py:249][ERROR][28200] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,756][solve_graph.py:249][ERROR][12756] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,761][solve_graph.py:249][ERROR][14864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,782][solve_graph.py:249][ERROR][27536] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,786][solve_graph.py:196][ERROR][20484] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:12,787][solve_graph.py:197][ERROR][20484] - Invalid id format:
+[2024-10-08 20:09:12,787][solve_graph.py:249][ERROR][20484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,795][solve_graph.py:249][ERROR][24800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,801][solve_graph.py:249][ERROR][29072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,810][solve_graph.py:249][ERROR][27048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,817][solve_graph.py:249][ERROR][14416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,822][solve_graph.py:249][ERROR][10468] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,828][solve_graph.py:196][ERROR][1136] - Invalid birthday format: 1988-10-13T00:00:00
+[2024-10-08 20:09:12,829][solve_graph.py:197][ERROR][1136] - Invalid id format:
+[2024-10-08 20:09:12,830][solve_graph.py:196][ERROR][9960] - Invalid birthday format: 1991-12-05T00:00:00
+[2024-10-08 20:09:12,831][solve_graph.py:249][ERROR][1136] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,831][solve_graph.py:197][ERROR][9960] - Invalid id format:
+[2024-10-08 20:09:12,833][solve_graph.py:249][ERROR][9960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,835][solve_graph.py:196][ERROR][11220] - Invalid birthday format: 1995-04-02T00:00:00
+[2024-10-08 20:09:12,839][solve_graph.py:197][ERROR][11220] - Invalid id format:
+[2024-10-08 20:09:12,839][solve_graph.py:249][ERROR][11220] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,844][solve_graph.py:249][ERROR][24188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,849][solve_graph.py:249][ERROR][18140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,854][solve_graph.py:249][ERROR][7928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,858][solve_graph.py:249][ERROR][26820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,867][solve_graph.py:249][ERROR][20020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,870][solve_graph.py:249][ERROR][21444] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,873][solve_graph.py:249][ERROR][21344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,877][solve_graph.py:249][ERROR][27664] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,885][solve_graph.py:196][ERROR][6324] - Invalid birthday format: 1997-10-21T00:00:00
+[2024-10-08 20:09:12,886][solve_graph.py:197][ERROR][6324] - Invalid id format:
+[2024-10-08 20:09:12,920][solve_graph.py:249][ERROR][6324] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,924][solve_graph.py:249][ERROR][748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,928][solve_graph.py:249][ERROR][21876] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,933][solve_graph.py:249][ERROR][26984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,941][solve_graph.py:249][ERROR][27384] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,949][solve_graph.py:249][ERROR][14700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,963][solve_graph.py:196][ERROR][14616] - Invalid birthday format: 1982-03-07T00:00:00
+[2024-10-08 20:09:12,964][solve_graph.py:197][ERROR][14616] - Invalid id format:
+[2024-10-08 20:09:12,965][solve_graph.py:249][ERROR][14616] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,969][solve_graph.py:249][ERROR][12608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,973][solve_graph.py:249][ERROR][6520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,976][solve_graph.py:249][ERROR][24872] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:12,991][solve_graph.py:249][ERROR][21040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,004][solve_graph.py:196][ERROR][4840] - Invalid birthday format: 1992-10-20T00:00:00
+[2024-10-08 20:09:13,004][solve_graph.py:197][ERROR][4840] - Invalid id format:
+[2024-10-08 20:09:13,005][solve_graph.py:249][ERROR][4840] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,019][solve_graph.py:249][ERROR][4360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,032][solve_graph.py:249][ERROR][17256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,040][solve_graph.py:196][ERROR][7076] - Invalid birthday format: 1985-09-17T00:00:00
+[2024-10-08 20:09:13,041][solve_graph.py:197][ERROR][7076] - Invalid id format:
+[2024-10-08 20:09:13,042][solve_graph.py:249][ERROR][27960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,047][solve_graph.py:249][ERROR][7076] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,057][solve_graph.py:249][ERROR][7904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,062][solve_graph.py:249][ERROR][24016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,069][solve_graph.py:249][ERROR][21144] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,075][solve_graph.py:249][ERROR][5628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,094][solve_graph.py:249][ERROR][23408] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,098][solve_graph.py:196][ERROR][20752] - Invalid birthday format: 1981-01-01T00:00:00
+[2024-10-08 20:09:13,100][solve_graph.py:249][ERROR][27896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,100][solve_graph.py:197][ERROR][20752] - Invalid id format:
+[2024-10-08 20:09:13,103][solve_graph.py:249][ERROR][16888] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,104][solve_graph.py:249][ERROR][20752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,106][solve_graph.py:249][ERROR][25908] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,120][solve_graph.py:249][ERROR][21188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,126][solve_graph.py:196][ERROR][28464] - Invalid birthday format: 1983-07-27T00:00:00
+[2024-10-08 20:09:13,126][solve_graph.py:197][ERROR][28464] - Invalid id format:
+[2024-10-08 20:09:13,127][solve_graph.py:249][ERROR][28464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,135][solve_graph.py:249][ERROR][22316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,142][solve_graph.py:249][ERROR][27000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,149][solve_graph.py:249][ERROR][25616] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,155][solve_graph.py:196][ERROR][10584] - Invalid birthday format: 1982-10-07T00:00:00
+[2024-10-08 20:09:13,155][solve_graph.py:197][ERROR][10584] - Invalid id format:
+[2024-10-08 20:09:13,156][solve_graph.py:249][ERROR][10584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,163][solve_graph.py:249][ERROR][22672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,168][solve_graph.py:249][ERROR][15656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,171][solve_graph.py:249][ERROR][16164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,176][solve_graph.py:249][ERROR][19904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,180][solve_graph.py:249][ERROR][3056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,189][solve_graph.py:249][ERROR][29432] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,193][solve_graph.py:249][ERROR][10656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,198][solve_graph.py:249][ERROR][21696] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,204][solve_graph.py:249][ERROR][17756] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,207][solve_graph.py:249][ERROR][24564] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,215][solve_graph.py:196][ERROR][28920] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:13,216][solve_graph.py:197][ERROR][28920] - Invalid id format:
+[2024-10-08 20:09:13,216][solve_graph.py:249][ERROR][28920] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,224][solve_graph.py:249][ERROR][18732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,229][solve_graph.py:249][ERROR][25256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,240][solve_graph.py:249][ERROR][20148] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,247][solve_graph.py:249][ERROR][26440] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,252][solve_graph.py:249][ERROR][24960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,273][solve_graph.py:249][ERROR][11076] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,288][solve_graph.py:249][ERROR][11184] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,292][solve_graph.py:249][ERROR][11568] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,302][solve_graph.py:249][ERROR][18024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,305][solve_graph.py:196][ERROR][21208] - Invalid birthday format: 1992-12-29T00:00:00
+[2024-10-08 20:09:13,306][solve_graph.py:197][ERROR][21208] - Invalid id format:
+[2024-10-08 20:09:13,308][solve_graph.py:249][ERROR][20744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,309][solve_graph.py:249][ERROR][21208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,322][solve_graph.py:196][ERROR][27548] - Invalid birthday format: 1986-02-11T00:00:00
+[2024-10-08 20:09:13,323][solve_graph.py:197][ERROR][27548] - Invalid id format:
+[2024-10-08 20:09:13,324][solve_graph.py:249][ERROR][27548] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,334][solve_graph.py:249][ERROR][5528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,338][solve_graph.py:249][ERROR][15544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,358][solve_graph.py:249][ERROR][15136] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,368][solve_graph.py:249][ERROR][15092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,382][solve_graph.py:249][ERROR][4268] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,383][solve_graph.py:249][ERROR][17572] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,388][solve_graph.py:249][ERROR][25128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,394][solve_graph.py:196][ERROR][15812] - Invalid birthday format: 1993-02-18T00:00:00
+[2024-10-08 20:09:13,395][solve_graph.py:197][ERROR][15812] - Invalid id format:
+[2024-10-08 20:09:13,395][solve_graph.py:249][ERROR][15812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,400][solve_graph.py:249][ERROR][9532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,403][solve_graph.py:249][ERROR][14748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,407][solve_graph.py:249][ERROR][5692] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,414][solve_graph.py:196][ERROR][9408] - Invalid birthday format: 1990-03-30T00:00:00
+[2024-10-08 20:09:13,414][solve_graph.py:197][ERROR][9408] - Invalid id format:
+[2024-10-08 20:09:13,415][solve_graph.py:249][ERROR][9408] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,419][solve_graph.py:249][ERROR][1752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,447][solve_graph.py:249][ERROR][2352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,454][solve_graph.py:249][ERROR][16244] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,459][solve_graph.py:249][ERROR][14552] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,475][solve_graph.py:249][ERROR][26664] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,478][solve_graph.py:196][ERROR][20952] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:13,481][solve_graph.py:249][ERROR][8000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,482][solve_graph.py:197][ERROR][20952] - Invalid id format:
+[2024-10-08 20:09:13,486][solve_graph.py:249][ERROR][20952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,490][solve_graph.py:249][ERROR][5984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,504][solve_graph.py:249][ERROR][1084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,515][solve_graph.py:249][ERROR][26192] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,525][solve_graph.py:196][ERROR][28292] - Invalid birthday format: 1991-12-15T00:00:00
+[2024-10-08 20:09:13,527][solve_graph.py:197][ERROR][28292] - Invalid id format:
+[2024-10-08 20:09:13,527][solve_graph.py:249][ERROR][28292] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,535][solve_graph.py:196][ERROR][19260] - Invalid birthday format: 1993-08-08T00:00:00
+[2024-10-08 20:09:13,535][solve_graph.py:197][ERROR][19260] - Invalid id format:
+[2024-10-08 20:09:13,539][solve_graph.py:249][ERROR][19260] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,545][solve_graph.py:196][ERROR][13172] - Invalid birthday format: 1988-10-15T00:00:00
+[2024-10-08 20:09:13,545][solve_graph.py:197][ERROR][13172] - Invalid id format:
+[2024-10-08 20:09:13,546][solve_graph.py:249][ERROR][13172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,553][solve_graph.py:249][ERROR][20124] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,556][solve_graph.py:196][ERROR][22676] - Invalid birthday format: 1976-10-18T00:00:00
+[2024-10-08 20:09:13,557][solve_graph.py:197][ERROR][22676] - Invalid id format:
+[2024-10-08 20:09:13,557][solve_graph.py:249][ERROR][22676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,560][solve_graph.py:249][ERROR][20720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,564][solve_graph.py:196][ERROR][20520] - Invalid birthday format: 1976-06-16T00:00:00
+[2024-10-08 20:09:13,565][solve_graph.py:197][ERROR][20520] - Invalid id format:
+[2024-10-08 20:09:13,565][solve_graph.py:249][ERROR][20520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,582][solve_graph.py:249][ERROR][22544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,588][solve_graph.py:249][ERROR][27604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,592][solve_graph.py:249][ERROR][29584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,600][solve_graph.py:196][ERROR][23676] - Invalid birthday format: 1982-06-12T00:00:00
+[2024-10-08 20:09:13,600][solve_graph.py:197][ERROR][23676] - Invalid id format:
+[2024-10-08 20:09:13,600][solve_graph.py:249][ERROR][23676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,605][solve_graph.py:249][ERROR][23516] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,609][solve_graph.py:249][ERROR][28040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,615][solve_graph.py:249][ERROR][20240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,623][solve_graph.py:249][ERROR][23636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,631][solve_graph.py:249][ERROR][8132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,636][solve_graph.py:196][ERROR][19908] - Invalid birthday format: 1992-01-09T00:00:00
+[2024-10-08 20:09:13,638][solve_graph.py:197][ERROR][19908] - Invalid id format:
+[2024-10-08 20:09:13,642][solve_graph.py:249][ERROR][19908] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,667][solve_graph.py:196][ERROR][13584] - Invalid birthday format: 2001-03-13T00:00:00
+[2024-10-08 20:09:13,667][solve_graph.py:197][ERROR][13584] - Invalid id format:
+[2024-10-08 20:09:13,670][solve_graph.py:249][ERROR][13584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,684][solve_graph.py:249][ERROR][28436] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,711][solve_graph.py:249][ERROR][12208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,720][solve_graph.py:249][ERROR][17412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,736][solve_graph.py:196][ERROR][6044] - Invalid birthday format: 1981-08-03T00:00:00
+[2024-10-08 20:09:13,737][solve_graph.py:197][ERROR][6044] - Invalid id format:
+[2024-10-08 20:09:13,737][solve_graph.py:249][ERROR][6044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,739][solve_graph.py:249][ERROR][28416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,744][solve_graph.py:249][ERROR][912] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,748][solve_graph.py:196][ERROR][1276] - Invalid birthday format: 1990-07-01T00:00:00
+[2024-10-08 20:09:13,749][solve_graph.py:197][ERROR][1276] - Invalid id format:
+[2024-10-08 20:09:13,749][solve_graph.py:249][ERROR][1276] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,756][solve_graph.py:196][ERROR][23208] - Invalid birthday format: 1999-02-16T00:00:00
+[2024-10-08 20:09:13,757][solve_graph.py:197][ERROR][23208] - Invalid id format:
+[2024-10-08 20:09:13,757][solve_graph.py:249][ERROR][23208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,761][solve_graph.py:249][ERROR][29412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,765][solve_graph.py:249][ERROR][13184] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,768][solve_graph.py:249][ERROR][17528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,791][solve_graph.py:249][ERROR][22088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,794][solve_graph.py:196][ERROR][27208] - Invalid birthday format: 1987-01-01T00:00:00
+[2024-10-08 20:09:13,795][solve_graph.py:197][ERROR][27208] - Invalid id format:
+[2024-10-08 20:09:13,796][solve_graph.py:249][ERROR][27208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,807][solve_graph.py:249][ERROR][24340] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,809][solve_graph.py:249][ERROR][19584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,817][solve_graph.py:249][ERROR][28112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,822][solve_graph.py:249][ERROR][15328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,824][solve_graph.py:196][ERROR][12980] - Invalid birthday format: 1982-08-13T00:00:00
+[2024-10-08 20:09:13,826][solve_graph.py:197][ERROR][12980] - Invalid id format:
+[2024-10-08 20:09:13,830][solve_graph.py:249][ERROR][12980] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,827][solve_graph.py:249][ERROR][6576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,837][solve_graph.py:249][ERROR][20068] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,841][solve_graph.py:196][ERROR][29176] - Invalid birthday format: 1991-02-19T00:00:00
+[2024-10-08 20:09:13,841][solve_graph.py:197][ERROR][29176] - Invalid id format:
+[2024-10-08 20:09:13,841][solve_graph.py:249][ERROR][29176] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,855][solve_graph.py:196][ERROR][1464] - Invalid birthday format: 1996-07-04T00:00:00
+[2024-10-08 20:09:13,856][solve_graph.py:197][ERROR][1464] - Invalid id format:
+[2024-10-08 20:09:13,857][solve_graph.py:196][ERROR][18720] - Invalid birthday format: 1978-09-30T00:00:00
+[2024-10-08 20:09:13,859][solve_graph.py:249][ERROR][1464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,861][solve_graph.py:249][ERROR][1316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,862][solve_graph.py:197][ERROR][18720] - Invalid id format:
+[2024-10-08 20:09:13,866][solve_graph.py:249][ERROR][18720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,872][solve_graph.py:249][ERROR][15164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,876][solve_graph.py:249][ERROR][28328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,886][solve_graph.py:196][ERROR][19696] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:13,886][solve_graph.py:197][ERROR][19696] - Invalid id format:
+[2024-10-08 20:09:13,886][solve_graph.py:249][ERROR][19696] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,889][solve_graph.py:249][ERROR][19064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,899][solve_graph.py:249][ERROR][26212] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,902][solve_graph.py:249][ERROR][27620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,905][solve_graph.py:249][ERROR][10248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,910][solve_graph.py:196][ERROR][17252] - Invalid birthday format: 1983-03-14T00:00:00
+[2024-10-08 20:09:13,910][solve_graph.py:197][ERROR][17252] - Invalid id format:
+[2024-10-08 20:09:13,910][solve_graph.py:249][ERROR][17252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,921][solve_graph.py:249][ERROR][1500] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,923][solve_graph.py:249][ERROR][18820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,933][solve_graph.py:249][ERROR][24048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,934][solve_graph.py:196][ERROR][18724] - Invalid birthday format: 1987-05-28T00:00:00
+[2024-10-08 20:09:13,936][solve_graph.py:197][ERROR][18724] - Invalid id format:
+[2024-10-08 20:09:13,936][solve_graph.py:249][ERROR][18724] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,939][solve_graph.py:249][ERROR][26524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,957][solve_graph.py:249][ERROR][23732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,962][solve_graph.py:249][ERROR][16576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,968][solve_graph.py:249][ERROR][11128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,985][solve_graph.py:249][ERROR][4680] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:13,999][solve_graph.py:249][ERROR][25056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,007][solve_graph.py:249][ERROR][29276] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,016][solve_graph.py:249][ERROR][25172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,020][solve_graph.py:249][ERROR][6672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,030][solve_graph.py:249][ERROR][3804] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,039][solve_graph.py:249][ERROR][15096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,042][solve_graph.py:249][ERROR][24512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,048][solve_graph.py:249][ERROR][28016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,055][solve_graph.py:249][ERROR][28696] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,063][solve_graph.py:249][ERROR][11824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,066][solve_graph.py:249][ERROR][19672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,072][solve_graph.py:196][ERROR][11052] - Invalid birthday format: 1987-06-23T00:00:00
+[2024-10-08 20:09:14,074][solve_graph.py:249][ERROR][27064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,074][solve_graph.py:197][ERROR][11052] - Invalid id format:
+[2024-10-08 20:09:14,078][solve_graph.py:249][ERROR][24436] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,078][solve_graph.py:249][ERROR][11052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,089][solve_graph.py:249][ERROR][24732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,093][solve_graph.py:249][ERROR][24608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,112][solve_graph.py:249][ERROR][28320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,118][solve_graph.py:249][ERROR][15216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,121][solve_graph.py:249][ERROR][4228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,125][solve_graph.py:249][ERROR][25972] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,130][solve_graph.py:249][ERROR][24012] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,138][solve_graph.py:249][ERROR][16092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,141][solve_graph.py:249][ERROR][15024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,151][solve_graph.py:196][ERROR][7264] - Invalid birthday format: 1982-10-08T00:00:00
+[2024-10-08 20:09:14,151][solve_graph.py:197][ERROR][7264] - Invalid id format:
+[2024-10-08 20:09:14,152][solve_graph.py:249][ERROR][7264] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,156][solve_graph.py:249][ERROR][8004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,164][solve_graph.py:249][ERROR][28024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,172][solve_graph.py:249][ERROR][22392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,184][solve_graph.py:249][ERROR][15512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,188][solve_graph.py:196][ERROR][11120] - Invalid birthday format: 1978-06-29T00:00:00
+[2024-10-08 20:09:14,192][solve_graph.py:197][ERROR][11120] - Invalid id format:
+[2024-10-08 20:09:14,192][solve_graph.py:249][ERROR][11120] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,203][solve_graph.py:249][ERROR][21812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,209][solve_graph.py:196][ERROR][25548] - Invalid birthday format: 1993-09-25T00:00:00
+[2024-10-08 20:09:14,211][solve_graph.py:197][ERROR][25548] - Invalid id format:
+[2024-10-08 20:09:14,212][solve_graph.py:249][ERROR][25548] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,217][solve_graph.py:196][ERROR][8936] - Invalid birthday format: 1982-04-03T00:00:00
+[2024-10-08 20:09:14,217][solve_graph.py:197][ERROR][8936] - Invalid id format:
+[2024-10-08 20:09:14,218][solve_graph.py:249][ERROR][8936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,225][solve_graph.py:196][ERROR][832] - Invalid birthday format: 1989-10-31T00:00:00
+[2024-10-08 20:09:14,225][solve_graph.py:197][ERROR][832] - Invalid id format:
+[2024-10-08 20:09:14,225][solve_graph.py:249][ERROR][832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,231][solve_graph.py:196][ERROR][9452] - Invalid birthday format: 1989-06-05T00:00:00
+[2024-10-08 20:09:14,233][solve_graph.py:197][ERROR][9452] - Invalid id format:
+[2024-10-08 20:09:14,234][solve_graph.py:196][ERROR][10748] - Invalid birthday format: 1988-05-02T00:00:00
+[2024-10-08 20:09:14,234][solve_graph.py:249][ERROR][9452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,235][solve_graph.py:197][ERROR][10748] - Invalid id format:
+[2024-10-08 20:09:14,238][solve_graph.py:249][ERROR][10748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,252][solve_graph.py:249][ERROR][12688] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,257][solve_graph.py:249][ERROR][26364] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,262][solve_graph.py:249][ERROR][25316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,269][solve_graph.py:249][ERROR][12828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,272][solve_graph.py:249][ERROR][21412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,279][solve_graph.py:249][ERROR][15528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,283][solve_graph.py:196][ERROR][14248] - Invalid birthday format: 1988-03-08T00:00:00
+[2024-10-08 20:09:14,284][solve_graph.py:197][ERROR][14248] - Invalid id format:
+[2024-10-08 20:09:14,285][solve_graph.py:249][ERROR][14248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,298][solve_graph.py:196][ERROR][19816] - Invalid birthday format: 1983-04-16T00:00:00
+[2024-10-08 20:09:14,298][solve_graph.py:197][ERROR][19816] - Invalid id format:
+[2024-10-08 20:09:14,298][solve_graph.py:249][ERROR][19816] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,302][solve_graph.py:249][ERROR][21808] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,306][solve_graph.py:249][ERROR][25960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,313][solve_graph.py:249][ERROR][25108] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,317][solve_graph.py:249][ERROR][18464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,320][solve_graph.py:249][ERROR][15172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,324][solve_graph.py:196][ERROR][24776] - Invalid birthday format: 1991-03-23T00:00:00
+[2024-10-08 20:09:14,325][solve_graph.py:197][ERROR][24776] - Invalid id format:
+[2024-10-08 20:09:14,325][solve_graph.py:249][ERROR][24776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,329][solve_graph.py:249][ERROR][27828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,334][solve_graph.py:249][ERROR][21936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,336][solve_graph.py:249][ERROR][19212] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,340][solve_graph.py:249][ERROR][24052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,345][solve_graph.py:249][ERROR][25768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,351][solve_graph.py:196][ERROR][23664] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:14,352][solve_graph.py:197][ERROR][23664] - Invalid id format:
+[2024-10-08 20:09:14,353][solve_graph.py:196][ERROR][4204] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:14,353][solve_graph.py:249][ERROR][23664] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,354][solve_graph.py:197][ERROR][4204] - Invalid id format:
+[2024-10-08 20:09:14,356][solve_graph.py:249][ERROR][4204] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,357][solve_graph.py:249][ERROR][25416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,363][solve_graph.py:249][ERROR][6632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,368][solve_graph.py:196][ERROR][14224] - Invalid birthday format: 1983-01-01T00:00:00
+[2024-10-08 20:09:14,369][solve_graph.py:197][ERROR][14224] - Invalid id format:
+[2024-10-08 20:09:14,369][solve_graph.py:249][ERROR][14224] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,373][solve_graph.py:249][ERROR][10140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,381][solve_graph.py:249][ERROR][21524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,386][solve_graph.py:249][ERROR][9560] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,389][solve_graph.py:249][ERROR][22236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,392][solve_graph.py:249][ERROR][17668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,398][solve_graph.py:196][ERROR][22860] - Invalid birthday format: 1994-06-27T00:00:00
+[2024-10-08 20:09:14,399][solve_graph.py:197][ERROR][22860] - Invalid id format:
+[2024-10-08 20:09:14,399][solve_graph.py:249][ERROR][22860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,406][solve_graph.py:249][ERROR][16324] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,408][solve_graph.py:196][ERROR][21604] - Invalid birthday format: 1998-07-01T00:00:00
+[2024-10-08 20:09:14,409][solve_graph.py:197][ERROR][21604] - Invalid id format:
+[2024-10-08 20:09:14,417][solve_graph.py:249][ERROR][21604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,421][solve_graph.py:249][ERROR][21384] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,424][solve_graph.py:196][ERROR][128] - Invalid birthday format: 1997-11-08T00:00:00
+[2024-10-08 20:09:14,425][solve_graph.py:197][ERROR][128] - Invalid id format:
+[2024-10-08 20:09:14,429][solve_graph.py:249][ERROR][128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,434][solve_graph.py:249][ERROR][27668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,438][solve_graph.py:249][ERROR][9304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,443][solve_graph.py:196][ERROR][992] - Invalid birthday format: 1999-08-13T00:00:00
+[2024-10-08 20:09:14,445][solve_graph.py:197][ERROR][992] - Invalid id format:
+[2024-10-08 20:09:14,445][solve_graph.py:249][ERROR][992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,455][solve_graph.py:196][ERROR][18704] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:14,456][solve_graph.py:197][ERROR][18704] - Invalid id format:
+[2024-10-08 20:09:14,456][solve_graph.py:249][ERROR][18704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,463][solve_graph.py:196][ERROR][20308] - Invalid birthday format: 1982-01-05T00:00:00
+[2024-10-08 20:09:14,463][solve_graph.py:197][ERROR][20308] - Invalid id format:
+[2024-10-08 20:09:14,463][solve_graph.py:249][ERROR][20308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,467][solve_graph.py:196][ERROR][23480] - Invalid birthday format: 1991-03-03T00:00:00
+[2024-10-08 20:09:14,467][solve_graph.py:197][ERROR][23480] - Invalid id format:
+[2024-10-08 20:09:14,467][solve_graph.py:249][ERROR][23480] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,470][solve_graph.py:249][ERROR][14996] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,487][solve_graph.py:249][ERROR][24064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,491][solve_graph.py:196][ERROR][11072] - Invalid birthday format: 2004-01-18T00:00:00
+[2024-10-08 20:09:14,491][solve_graph.py:197][ERROR][11072] - Invalid id format:
+[2024-10-08 20:09:14,492][solve_graph.py:249][ERROR][11072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,496][solve_graph.py:249][ERROR][18424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,502][solve_graph.py:196][ERROR][17760] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:14,502][solve_graph.py:197][ERROR][17760] - Invalid id format:
+[2024-10-08 20:09:14,503][solve_graph.py:249][ERROR][17760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,519][solve_graph.py:249][ERROR][18188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,523][solve_graph.py:196][ERROR][12976] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:14,524][solve_graph.py:197][ERROR][12976] - Invalid id format:
+[2024-10-08 20:09:14,524][solve_graph.py:249][ERROR][12976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,528][solve_graph.py:196][ERROR][24896] - Invalid birthday format: 1992-01-01T00:00:00
+[2024-10-08 20:09:14,529][solve_graph.py:197][ERROR][24896] - Invalid id format:
+[2024-10-08 20:09:14,530][solve_graph.py:249][ERROR][24896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,533][solve_graph.py:249][ERROR][12780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,536][solve_graph.py:249][ERROR][27124] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,542][solve_graph.py:249][ERROR][28344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,546][solve_graph.py:249][ERROR][19976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,549][solve_graph.py:249][ERROR][9104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,552][solve_graph.py:196][ERROR][25936] - Invalid birthday format: 1964-04-15T00:00:00
+[2024-10-08 20:09:14,553][solve_graph.py:197][ERROR][25936] - Invalid id format:
+[2024-10-08 20:09:14,553][solve_graph.py:249][ERROR][25936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,559][solve_graph.py:249][ERROR][17660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,573][solve_graph.py:249][ERROR][12064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,578][solve_graph.py:249][ERROR][24004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,584][solve_graph.py:249][ERROR][15032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,629][solve_graph.py:249][ERROR][15132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,641][solve_graph.py:249][ERROR][13400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,644][solve_graph.py:249][ERROR][2856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,647][solve_graph.py:249][ERROR][22520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,653][solve_graph.py:249][ERROR][21512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,657][solve_graph.py:196][ERROR][17776] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:14,658][solve_graph.py:197][ERROR][17776] - Invalid id format:
+[2024-10-08 20:09:14,660][solve_graph.py:249][ERROR][17776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,664][solve_graph.py:249][ERROR][29368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,671][solve_graph.py:249][ERROR][19280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,681][solve_graph.py:249][ERROR][18780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,686][solve_graph.py:249][ERROR][16924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,688][solve_graph.py:249][ERROR][19396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,697][solve_graph.py:249][ERROR][22256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,701][solve_graph.py:249][ERROR][21688] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,704][solve_graph.py:249][ERROR][20332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,718][solve_graph.py:249][ERROR][4272] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,723][solve_graph.py:249][ERROR][3472] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,730][solve_graph.py:249][ERROR][23192] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,733][solve_graph.py:196][ERROR][19168] - Invalid birthday format: 1984-01-18T00:00:00
+[2024-10-08 20:09:14,734][solve_graph.py:197][ERROR][19168] - Invalid id format:
+[2024-10-08 20:09:14,734][solve_graph.py:249][ERROR][19168] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,736][solve_graph.py:249][ERROR][24520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,747][solve_graph.py:249][ERROR][17924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,751][solve_graph.py:249][ERROR][26504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,757][solve_graph.py:249][ERROR][10336] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,770][solve_graph.py:196][ERROR][17472] - Invalid birthday format: 1995-02-01T00:00:00
+[2024-10-08 20:09:14,770][solve_graph.py:197][ERROR][17472] - Invalid id format:
+[2024-10-08 20:09:14,770][solve_graph.py:249][ERROR][17472] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,800][solve_graph.py:249][ERROR][3208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,804][solve_graph.py:249][ERROR][22492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,807][solve_graph.py:249][ERROR][26040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,816][solve_graph.py:249][ERROR][11168] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,819][solve_graph.py:249][ERROR][7872] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,823][solve_graph.py:249][ERROR][24580] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,845][solve_graph.py:249][ERROR][22572] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,849][solve_graph.py:196][ERROR][16504] - Invalid birthday format: 1989-08-01T00:00:00
+[2024-10-08 20:09:14,850][solve_graph.py:197][ERROR][16504] - Invalid id format:
+[2024-10-08 20:09:14,852][solve_graph.py:196][ERROR][3928] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:14,853][solve_graph.py:249][ERROR][16504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,853][solve_graph.py:197][ERROR][3928] - Invalid id format:
+[2024-10-08 20:09:14,853][solve_graph.py:249][ERROR][3928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,857][solve_graph.py:249][ERROR][14832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,878][solve_graph.py:249][ERROR][29468] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,894][solve_graph.py:249][ERROR][15048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,906][solve_graph.py:249][ERROR][25152] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,921][solve_graph.py:196][ERROR][16972] - Invalid birthday format: 1998-04-29T00:00:00
+[2024-10-08 20:09:14,922][solve_graph.py:197][ERROR][16972] - Invalid id format:
+[2024-10-08 20:09:14,922][solve_graph.py:249][ERROR][16972] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,924][solve_graph.py:249][ERROR][13036] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,930][solve_graph.py:249][ERROR][23896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,939][solve_graph.py:249][ERROR][12532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,957][solve_graph.py:196][ERROR][4940] - Invalid birthday format: 1993-03-28T00:00:00
+[2024-10-08 20:09:14,957][solve_graph.py:197][ERROR][4940] - Invalid id format:
+[2024-10-08 20:09:14,958][solve_graph.py:249][ERROR][4940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,961][solve_graph.py:249][ERROR][16416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,965][solve_graph.py:249][ERROR][29632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,977][solve_graph.py:249][ERROR][11308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:14,986][solve_graph.py:249][ERROR][24708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,008][solve_graph.py:249][ERROR][26628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,019][solve_graph.py:249][ERROR][23492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,023][solve_graph.py:249][ERROR][20492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,034][solve_graph.py:249][ERROR][16752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,039][solve_graph.py:196][ERROR][18736] - Invalid birthday format: 1978-10-28T00:00:00
+[2024-10-08 20:09:15,039][solve_graph.py:197][ERROR][18736] - Invalid id format:
+[2024-10-08 20:09:15,040][solve_graph.py:249][ERROR][18736] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,041][solve_graph.py:196][ERROR][22936] - Invalid birthday format: 1981-06-09T00:00:00
+[2024-10-08 20:09:15,044][solve_graph.py:197][ERROR][22936] - Invalid id format:
+[2024-10-08 20:09:15,045][solve_graph.py:249][ERROR][22936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,049][solve_graph.py:196][ERROR][1616] - Invalid birthday format: 2002-12-15T00:00:00
+[2024-10-08 20:09:15,049][solve_graph.py:197][ERROR][1616] - Invalid id format:
+[2024-10-08 20:09:15,050][solve_graph.py:249][ERROR][1616] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,064][solve_graph.py:196][ERROR][18964] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:15,065][solve_graph.py:197][ERROR][18964] - Invalid id format:
+[2024-10-08 20:09:15,065][solve_graph.py:249][ERROR][18964] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,067][solve_graph.py:249][ERROR][9320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,073][solve_graph.py:249][ERROR][11920] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,082][solve_graph.py:249][ERROR][17500] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,086][solve_graph.py:249][ERROR][21180] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,094][solve_graph.py:249][ERROR][8092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,097][solve_graph.py:249][ERROR][16960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,100][solve_graph.py:249][ERROR][16532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,112][solve_graph.py:249][ERROR][4284] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,118][solve_graph.py:249][ERROR][8492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,129][solve_graph.py:249][ERROR][14244] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,135][solve_graph.py:249][ERROR][10268] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,138][solve_graph.py:249][ERROR][22784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,143][solve_graph.py:249][ERROR][6540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,147][solve_graph.py:249][ERROR][16744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,152][solve_graph.py:249][ERROR][14984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,162][solve_graph.py:249][ERROR][25088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,167][solve_graph.py:249][ERROR][17168] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,169][solve_graph.py:249][ERROR][22660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,175][solve_graph.py:249][ERROR][27568] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,179][solve_graph.py:249][ERROR][12156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,187][solve_graph.py:249][ERROR][26396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,189][solve_graph.py:196][ERROR][14104] - Invalid birthday format: 1977-05-23T00:00:00
+[2024-10-08 20:09:15,190][solve_graph.py:197][ERROR][14104] - Invalid id format:
+[2024-10-08 20:09:15,191][solve_graph.py:249][ERROR][14104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,194][solve_graph.py:249][ERROR][27592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,196][solve_graph.py:249][ERROR][17216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,203][solve_graph.py:196][ERROR][27328] - Invalid birthday format: 1983-01-09T00:00:00
+[2024-10-08 20:09:15,204][solve_graph.py:197][ERROR][27328] - Invalid id format:
+[2024-10-08 20:09:15,204][solve_graph.py:249][ERROR][27328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,216][solve_graph.py:249][ERROR][28896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,221][solve_graph.py:249][ERROR][8160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,232][solve_graph.py:249][ERROR][16820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,254][solve_graph.py:249][ERROR][28204] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,257][solve_graph.py:196][ERROR][21392] - Invalid birthday format: 1975-02-10T00:00:00
+[2024-10-08 20:09:15,265][solve_graph.py:197][ERROR][21392] - Invalid id format:
+[2024-10-08 20:09:15,266][solve_graph.py:249][ERROR][21392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,272][solve_graph.py:249][ERROR][25092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,275][solve_graph.py:249][ERROR][29016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,284][solve_graph.py:249][ERROR][24208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,289][solve_graph.py:249][ERROR][11892] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,301][solve_graph.py:249][ERROR][18676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,305][solve_graph.py:249][ERROR][14064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,306][solve_graph.py:249][ERROR][21592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,317][solve_graph.py:196][ERROR][15464] - Invalid birthday format: 1986-01-14T00:00:00
+[2024-10-08 20:09:15,318][solve_graph.py:197][ERROR][15464] - Invalid id format:
+[2024-10-08 20:09:15,320][solve_graph.py:196][ERROR][25856] - Invalid birthday format: 1994-08-29T00:00:00
+[2024-10-08 20:09:15,320][solve_graph.py:249][ERROR][15464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,320][solve_graph.py:197][ERROR][25856] - Invalid id format:
+[2024-10-08 20:09:15,322][solve_graph.py:249][ERROR][19052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,324][solve_graph.py:249][ERROR][25856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,333][solve_graph.py:249][ERROR][19032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,336][solve_graph.py:249][ERROR][23504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,340][solve_graph.py:249][ERROR][24640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,350][solve_graph.py:196][ERROR][15784] - Invalid birthday format: 1983-03-21T00:00:00
+[2024-10-08 20:09:15,352][solve_graph.py:197][ERROR][15784] - Invalid id format:
+[2024-10-08 20:09:15,353][solve_graph.py:249][ERROR][15784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,355][solve_graph.py:249][ERROR][28044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,365][solve_graph.py:196][ERROR][18832] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:15,367][solve_graph.py:197][ERROR][18832] - Invalid id format:
+[2024-10-08 20:09:15,368][solve_graph.py:249][ERROR][18832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,373][solve_graph.py:249][ERROR][22988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,375][solve_graph.py:249][ERROR][29452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,379][solve_graph.py:249][ERROR][24232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,383][solve_graph.py:249][ERROR][19564] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,387][solve_graph.py:249][ERROR][17536] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,397][solve_graph.py:196][ERROR][14712] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:15,398][solve_graph.py:197][ERROR][14712] - Invalid id format:
+[2024-10-08 20:09:15,398][solve_graph.py:249][ERROR][14712] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,401][solve_graph.py:249][ERROR][21720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,404][solve_graph.py:196][ERROR][2600] - Invalid birthday format: 1993-10-01T00:00:00
+[2024-10-08 20:09:15,405][solve_graph.py:197][ERROR][2600] - Invalid id format:
+[2024-10-08 20:09:15,406][solve_graph.py:249][ERROR][2600] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,408][solve_graph.py:249][ERROR][12592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,415][solve_graph.py:249][ERROR][14084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,435][solve_graph.py:249][ERROR][15280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,441][solve_graph.py:249][ERROR][11416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,455][solve_graph.py:196][ERROR][18104] - Invalid birthday format: 1970-10-13T00:00:00
+[2024-10-08 20:09:15,457][solve_graph.py:249][ERROR][15140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,457][solve_graph.py:197][ERROR][18104] - Invalid id format:
+[2024-10-08 20:09:15,461][solve_graph.py:249][ERROR][20236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,462][solve_graph.py:249][ERROR][18104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,470][solve_graph.py:249][ERROR][18116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,483][solve_graph.py:249][ERROR][27728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,487][solve_graph.py:249][ERROR][19372] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,496][solve_graph.py:249][ERROR][18764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,540][solve_graph.py:249][ERROR][26160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,555][solve_graph.py:196][ERROR][13656] - Invalid birthday format: 1990-04-25T00:00:00
+[2024-10-08 20:09:15,555][solve_graph.py:197][ERROR][13656] - Invalid id format:
+[2024-10-08 20:09:15,555][solve_graph.py:249][ERROR][13656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,570][solve_graph.py:249][ERROR][29616] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,584][solve_graph.py:249][ERROR][7916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,599][solve_graph.py:249][ERROR][17492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,602][solve_graph.py:249][ERROR][24788] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:15,617][solve_graph.py:249][ERROR][8376] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,855][solve_graph.py:249][ERROR][9612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,858][solve_graph.py:249][ERROR][21304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,865][solve_graph.py:196][ERROR][5112] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:19,866][solve_graph.py:197][ERROR][5112] - Invalid id format:
+[2024-10-08 20:09:19,866][solve_graph.py:249][ERROR][5112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,880][solve_graph.py:196][ERROR][11820] - Invalid birthday format: 1982-12-08T00:00:00
+[2024-10-08 20:09:19,882][solve_graph.py:197][ERROR][11820] - Invalid id format:
+[2024-10-08 20:09:19,883][solve_graph.py:196][ERROR][26404] - Invalid birthday format: 1991-03-05T00:00:00
+[2024-10-08 20:09:19,884][solve_graph.py:249][ERROR][11820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,886][solve_graph.py:197][ERROR][26404] - Invalid id format:
+[2024-10-08 20:09:19,886][solve_graph.py:249][ERROR][26404] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,885][solve_graph.py:249][ERROR][24604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,890][solve_graph.py:249][ERROR][21756] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,901][solve_graph.py:249][ERROR][23620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,905][solve_graph.py:249][ERROR][16412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,908][solve_graph.py:196][ERROR][16392] - Invalid birthday format: 1988-12-03T00:00:00
+[2024-10-08 20:09:19,910][solve_graph.py:197][ERROR][16392] - Invalid id format:
+[2024-10-08 20:09:19,911][solve_graph.py:249][ERROR][16392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,919][solve_graph.py:249][ERROR][22304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,925][solve_graph.py:249][ERROR][28764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,940][solve_graph.py:249][ERROR][8900] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,943][solve_graph.py:249][ERROR][25984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,949][solve_graph.py:196][ERROR][18044] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:19,949][solve_graph.py:197][ERROR][18044] - Invalid id format:
+[2024-10-08 20:09:19,951][solve_graph.py:249][ERROR][28860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,952][solve_graph.py:249][ERROR][18044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,957][solve_graph.py:249][ERROR][2484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,980][solve_graph.py:249][ERROR][29492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,988][solve_graph.py:249][ERROR][24008] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:19,991][solve_graph.py:249][ERROR][21832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,003][solve_graph.py:196][ERROR][8364] - Invalid birthday format: 1971-05-30T00:00:00
+[2024-10-08 20:09:20,004][solve_graph.py:197][ERROR][8364] - Invalid id format:
+[2024-10-08 20:09:20,004][solve_graph.py:249][ERROR][8364] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,008][solve_graph.py:196][ERROR][26028] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:20,008][solve_graph.py:197][ERROR][26028] - Invalid id format:
+[2024-10-08 20:09:20,011][solve_graph.py:249][ERROR][19216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,013][solve_graph.py:249][ERROR][26028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,019][solve_graph.py:249][ERROR][19172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,023][solve_graph.py:249][ERROR][18348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,028][solve_graph.py:196][ERROR][14612] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:20,029][solve_graph.py:197][ERROR][14612] - Invalid id format:
+[2024-10-08 20:09:20,029][solve_graph.py:249][ERROR][14612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,036][solve_graph.py:249][ERROR][23784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,058][solve_graph.py:249][ERROR][24356] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,066][solve_graph.py:249][ERROR][17452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,070][solve_graph.py:249][ERROR][26580] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,079][solve_graph.py:196][ERROR][17784] - Invalid birthday format: 1996-03-10T00:00:00
+[2024-10-08 20:09:20,079][solve_graph.py:197][ERROR][17784] - Invalid id format:
+[2024-10-08 20:09:20,079][solve_graph.py:249][ERROR][17784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,090][solve_graph.py:196][ERROR][24156] - Invalid birthday format: 1990-03-05T00:00:00
+[2024-10-08 20:09:20,091][solve_graph.py:197][ERROR][24156] - Invalid id format:
+[2024-10-08 20:09:20,095][solve_graph.py:249][ERROR][24156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,093][solve_graph.py:249][ERROR][17056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,108][solve_graph.py:196][ERROR][16804] - Invalid birthday format: 1982-07-14T00:00:00
+[2024-10-08 20:09:20,108][solve_graph.py:197][ERROR][16804] - Invalid id format:
+[2024-10-08 20:09:20,112][solve_graph.py:196][ERROR][18864] - Invalid birthday format: 1976-09-09T00:00:00
+[2024-10-08 20:09:20,114][solve_graph.py:197][ERROR][18864] - Invalid id format:
+[2024-10-08 20:09:20,114][solve_graph.py:249][ERROR][18864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,113][solve_graph.py:249][ERROR][16804] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,137][solve_graph.py:249][ERROR][19932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,141][solve_graph.py:249][ERROR][11996] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,146][solve_graph.py:249][ERROR][15948] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,150][solve_graph.py:249][ERROR][20368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,166][solve_graph.py:249][ERROR][6200] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,168][solve_graph.py:249][ERROR][14760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,187][solve_graph.py:249][ERROR][23792] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,190][solve_graph.py:196][ERROR][22436] - Invalid birthday format: 1992-09-27T00:00:00
+[2024-10-08 20:09:20,191][solve_graph.py:197][ERROR][22436] - Invalid id format:
+[2024-10-08 20:09:20,194][solve_graph.py:249][ERROR][22436] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,193][solve_graph.py:249][ERROR][25412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,200][solve_graph.py:249][ERROR][11240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,208][solve_graph.py:249][ERROR][23644] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,218][solve_graph.py:196][ERROR][12048] - Invalid birthday format: 1990-04-27T00:00:00
+[2024-10-08 20:09:20,220][solve_graph.py:197][ERROR][12048] - Invalid id format:
+[2024-10-08 20:09:20,223][solve_graph.py:249][ERROR][26352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,224][solve_graph.py:249][ERROR][12048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,225][solve_graph.py:196][ERROR][17940] - Invalid birthday format: 1989-11-07T00:00:00
+[2024-10-08 20:09:20,234][solve_graph.py:197][ERROR][17940] - Invalid id format:
+[2024-10-08 20:09:20,235][solve_graph.py:249][ERROR][17940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,240][solve_graph.py:196][ERROR][10988] - Invalid birthday format: 2000-10-14T00:00:00
+[2024-10-08 20:09:20,241][solve_graph.py:197][ERROR][10988] - Invalid id format:
+[2024-10-08 20:09:20,242][solve_graph.py:249][ERROR][1760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,242][solve_graph.py:249][ERROR][10988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,255][solve_graph.py:196][ERROR][28060] - Invalid birthday format: 1986-07-15T00:00:00
+[2024-10-08 20:09:20,255][solve_graph.py:197][ERROR][28060] - Invalid id format:
+[2024-10-08 20:09:20,255][solve_graph.py:249][ERROR][28060] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,272][solve_graph.py:249][ERROR][26704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,285][solve_graph.py:249][ERROR][25188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,289][solve_graph.py:249][ERROR][216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,306][solve_graph.py:196][ERROR][24276] - Invalid birthday format: 1979-09-14T00:00:00
+[2024-10-08 20:09:20,307][solve_graph.py:197][ERROR][24276] - Invalid id format:
+[2024-10-08 20:09:20,308][solve_graph.py:249][ERROR][24276] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,325][solve_graph.py:249][ERROR][1612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,332][solve_graph.py:196][ERROR][16832] - Invalid birthday format: 1990-10-03T00:00:00
+[2024-10-08 20:09:20,333][solve_graph.py:197][ERROR][16832] - Invalid id format:
+[2024-10-08 20:09:20,333][solve_graph.py:249][ERROR][16832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,348][solve_graph.py:249][ERROR][10916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,356][solve_graph.py:249][ERROR][24488] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,368][solve_graph.py:249][ERROR][23368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,382][solve_graph.py:249][ERROR][1388] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,388][solve_graph.py:249][ERROR][5076] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,390][solve_graph.py:196][ERROR][17396] - Invalid birthday format: 1988-09-09T00:00:00
+[2024-10-08 20:09:20,391][solve_graph.py:197][ERROR][17396] - Invalid id format:
+[2024-10-08 20:09:20,394][solve_graph.py:196][ERROR][22048] - Invalid birthday format: 1984-11-30T00:00:00
+[2024-10-08 20:09:20,398][solve_graph.py:197][ERROR][22048] - Invalid id format:
+[2024-10-08 20:09:20,398][solve_graph.py:249][ERROR][22048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,394][solve_graph.py:249][ERROR][17396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,397][solve_graph.py:249][ERROR][28888] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,425][solve_graph.py:196][ERROR][14856] - Invalid birthday format: 1992-10-28T00:00:00
+[2024-10-08 20:09:20,425][solve_graph.py:197][ERROR][14856] - Invalid id format:
+[2024-10-08 20:09:20,425][solve_graph.py:249][ERROR][14856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,438][solve_graph.py:249][ERROR][17260] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,440][solve_graph.py:249][ERROR][25916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,450][solve_graph.py:196][ERROR][28032] - Invalid birthday format: 1977-02-21T00:00:00
+[2024-10-08 20:09:20,451][solve_graph.py:197][ERROR][28032] - Invalid id format:
+[2024-10-08 20:09:20,451][solve_graph.py:249][ERROR][28032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:20,455][solve_graph.py:249][ERROR][25700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,132][solve_graph.py:249][ERROR][18040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,150][solve_graph.py:249][ERROR][21684] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,157][solve_graph.py:249][ERROR][22632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,212][solve_graph.py:196][ERROR][5852] - Invalid birthday format: 1972-02-04T00:00:00
+[2024-10-08 20:09:25,213][solve_graph.py:197][ERROR][5852] - Invalid id format:
+[2024-10-08 20:09:25,214][solve_graph.py:249][ERROR][5852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,218][solve_graph.py:249][ERROR][14716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,222][solve_graph.py:249][ERROR][11452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,228][solve_graph.py:249][ERROR][29044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,237][solve_graph.py:249][ERROR][21748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,241][solve_graph.py:249][ERROR][5368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,250][solve_graph.py:196][ERROR][22448] - Invalid birthday format: 1974-03-07T00:00:00
+[2024-10-08 20:09:25,250][solve_graph.py:197][ERROR][22448] - Invalid id format:
+[2024-10-08 20:09:25,250][solve_graph.py:249][ERROR][22448] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,255][solve_graph.py:196][ERROR][23680] - Invalid birthday format: 1982-01-11T00:00:00
+[2024-10-08 20:09:25,256][solve_graph.py:197][ERROR][23680] - Invalid id format:
+[2024-10-08 20:09:25,257][solve_graph.py:249][ERROR][23680] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,268][solve_graph.py:196][ERROR][9676] - Invalid birthday format: 1991-05-01T00:00:00
+[2024-10-08 20:09:25,269][solve_graph.py:197][ERROR][9676] - Invalid id format:
+[2024-10-08 20:09:25,269][solve_graph.py:249][ERROR][9676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,274][solve_graph.py:249][ERROR][23716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,290][solve_graph.py:249][ERROR][26012] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,295][solve_graph.py:249][ERROR][20992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,297][solve_graph.py:249][ERROR][24660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,300][solve_graph.py:196][ERROR][4444] - Invalid birthday format: 1993-11-27T00:00:00
+[2024-10-08 20:09:25,302][solve_graph.py:249][ERROR][12824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,303][solve_graph.py:197][ERROR][4444] - Invalid id format:
+[2024-10-08 20:09:25,306][solve_graph.py:249][ERROR][2344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,307][solve_graph.py:249][ERROR][4444] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,316][solve_graph.py:196][ERROR][25952] - Invalid birthday format: 1991-09-13T00:00:00
+[2024-10-08 20:09:25,316][solve_graph.py:197][ERROR][25952] - Invalid id format:
+[2024-10-08 20:09:25,317][solve_graph.py:249][ERROR][25952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,324][solve_graph.py:249][ERROR][15264] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,329][solve_graph.py:196][ERROR][22960] - Invalid birthday format: 1993-08-29T00:00:00
+[2024-10-08 20:09:25,329][solve_graph.py:197][ERROR][22960] - Invalid id format:
+[2024-10-08 20:09:25,329][solve_graph.py:249][ERROR][22960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,332][solve_graph.py:249][ERROR][400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,336][solve_graph.py:249][ERROR][23132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,349][solve_graph.py:249][ERROR][25448] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,352][solve_graph.py:196][ERROR][23844] - Invalid birthday format: 1982-07-25T00:00:00
+[2024-10-08 20:09:25,352][solve_graph.py:197][ERROR][23844] - Invalid id format:
+[2024-10-08 20:09:25,354][solve_graph.py:249][ERROR][28356] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,355][solve_graph.py:249][ERROR][23844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,357][solve_graph.py:249][ERROR][28704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,363][solve_graph.py:249][ERROR][9404] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,370][solve_graph.py:196][ERROR][27320] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:25,370][solve_graph.py:197][ERROR][27320] - Invalid id format:
+[2024-10-08 20:09:25,370][solve_graph.py:249][ERROR][27320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,375][solve_graph.py:249][ERROR][17232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,381][solve_graph.py:249][ERROR][9544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,384][solve_graph.py:249][ERROR][24284] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,387][solve_graph.py:249][ERROR][4988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,391][solve_graph.py:196][ERROR][11312] - Invalid birthday format: 1999-06-17T00:00:00
+[2024-10-08 20:09:25,392][solve_graph.py:197][ERROR][11312] - Invalid id format:
+[2024-10-08 20:09:25,394][solve_graph.py:249][ERROR][23928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,394][solve_graph.py:249][ERROR][11312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,401][solve_graph.py:249][ERROR][20252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,406][solve_graph.py:249][ERROR][26112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,412][solve_graph.py:249][ERROR][6616] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,416][solve_graph.py:249][ERROR][29360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,433][solve_graph.py:249][ERROR][11828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,437][solve_graph.py:249][ERROR][28012] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,441][solve_graph.py:249][ERROR][26668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,445][solve_graph.py:249][ERROR][15312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,451][solve_graph.py:249][ERROR][10416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,456][solve_graph.py:249][ERROR][21556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,458][solve_graph.py:249][ERROR][14208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,462][solve_graph.py:249][ERROR][21228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,466][solve_graph.py:249][ERROR][29284] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,480][solve_graph.py:249][ERROR][18228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,485][solve_graph.py:249][ERROR][2988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,490][solve_graph.py:249][ERROR][8236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,503][solve_graph.py:196][ERROR][28940] - Invalid birthday format: 1988-08-26T00:00:00
+[2024-10-08 20:09:25,504][solve_graph.py:197][ERROR][28940] - Invalid id format:
+[2024-10-08 20:09:25,508][solve_graph.py:249][ERROR][28940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,511][solve_graph.py:249][ERROR][9428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,520][solve_graph.py:249][ERROR][22424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,530][solve_graph.py:249][ERROR][7072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,541][solve_graph.py:249][ERROR][18932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,547][solve_graph.py:249][ERROR][19628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,554][solve_graph.py:249][ERROR][21864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,568][solve_graph.py:249][ERROR][17552] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,575][solve_graph.py:196][ERROR][10668] - Invalid birthday format: 1984-06-28T00:00:00
+[2024-10-08 20:09:25,576][solve_graph.py:197][ERROR][10668] - Invalid id format:
+[2024-10-08 20:09:25,577][solve_graph.py:249][ERROR][10668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,582][solve_graph.py:249][ERROR][29428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,587][solve_graph.py:249][ERROR][23596] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,591][solve_graph.py:249][ERROR][26296] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,599][solve_graph.py:249][ERROR][29200] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,603][solve_graph.py:196][ERROR][16172] - Invalid birthday format: 1990-02-20T00:00:00
+[2024-10-08 20:09:25,604][solve_graph.py:197][ERROR][16172] - Invalid id format:
+[2024-10-08 20:09:25,604][solve_graph.py:249][ERROR][16172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,614][solve_graph.py:249][ERROR][23428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,640][solve_graph.py:196][ERROR][19992] - Invalid birthday format: 1990-09-10T00:00:00
+[2024-10-08 20:09:25,641][solve_graph.py:197][ERROR][19992] - Invalid id format:
+[2024-10-08 20:09:25,641][solve_graph.py:249][ERROR][19992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,647][solve_graph.py:249][ERROR][27856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,652][solve_graph.py:249][ERROR][4672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,660][solve_graph.py:249][ERROR][952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,666][solve_graph.py:249][ERROR][23588] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,668][solve_graph.py:196][ERROR][8328] - Invalid birthday format: 1996-05-01T00:00:00
+[2024-10-08 20:09:25,669][solve_graph.py:197][ERROR][8328] - Invalid id format:
+[2024-10-08 20:09:25,669][solve_graph.py:249][ERROR][8328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,683][solve_graph.py:249][ERROR][26136] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,687][solve_graph.py:196][ERROR][21816] - Invalid birthday format: 1980-09-16T00:00:00
+[2024-10-08 20:09:25,689][solve_graph.py:197][ERROR][21816] - Invalid id format:
+[2024-10-08 20:09:25,690][solve_graph.py:249][ERROR][21816] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,697][solve_graph.py:249][ERROR][22188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,700][solve_graph.py:249][ERROR][19824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,713][solve_graph.py:249][ERROR][24684] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,728][solve_graph.py:249][ERROR][16824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,736][solve_graph.py:249][ERROR][17944] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,741][solve_graph.py:249][ERROR][8820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,745][solve_graph.py:249][ERROR][25552] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,750][solve_graph.py:249][ERROR][24172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,764][solve_graph.py:249][ERROR][1364] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,771][solve_graph.py:196][ERROR][19464] - Invalid birthday format: 1989-06-16T00:00:00
+[2024-10-08 20:09:25,772][solve_graph.py:197][ERROR][19464] - Invalid id format:
+[2024-10-08 20:09:25,774][solve_graph.py:249][ERROR][25024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,774][solve_graph.py:249][ERROR][19464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,778][solve_graph.py:196][ERROR][14824] - Invalid birthday format: 1997-12-10T00:00:00
+[2024-10-08 20:09:25,784][solve_graph.py:197][ERROR][14824] - Invalid id format:
+[2024-10-08 20:09:25,784][solve_graph.py:249][ERROR][14824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,791][solve_graph.py:249][ERROR][22308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,799][solve_graph.py:249][ERROR][18384] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,802][solve_graph.py:249][ERROR][11812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,805][solve_graph.py:249][ERROR][10388] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,809][solve_graph.py:249][ERROR][22652] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,818][solve_graph.py:196][ERROR][21796] - Invalid birthday format: 1972-10-26T00:00:00
+[2024-10-08 20:09:25,818][solve_graph.py:197][ERROR][21796] - Invalid id format:
+[2024-10-08 20:09:25,818][solve_graph.py:249][ERROR][21796] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,821][solve_graph.py:249][ERROR][8928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,825][solve_graph.py:196][ERROR][20876] - Invalid birthday format: 1991-03-21T00:00:00
+[2024-10-08 20:09:25,825][solve_graph.py:197][ERROR][20876] - Invalid id format:
+[2024-10-08 20:09:25,827][solve_graph.py:249][ERROR][20876] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,832][solve_graph.py:249][ERROR][7136] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,841][solve_graph.py:249][ERROR][24664] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,854][solve_graph.py:196][ERROR][20028] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:25,855][solve_graph.py:197][ERROR][20028] - Invalid id format:
+[2024-10-08 20:09:25,855][solve_graph.py:249][ERROR][20028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,859][solve_graph.py:196][ERROR][10616] - Invalid birthday format: 2003-01-31T00:00:00
+[2024-10-08 20:09:25,861][solve_graph.py:197][ERROR][10616] - Invalid id format:
+[2024-10-08 20:09:25,861][solve_graph.py:249][ERROR][10616] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,865][solve_graph.py:249][ERROR][27076] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,870][solve_graph.py:249][ERROR][20448] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,873][solve_graph.py:196][ERROR][25048] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:25,874][solve_graph.py:197][ERROR][25048] - Invalid id format:
+[2024-10-08 20:09:25,874][solve_graph.py:249][ERROR][25048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,876][solve_graph.py:249][ERROR][22208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,881][solve_graph.py:249][ERROR][16712] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,884][solve_graph.py:249][ERROR][14732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,888][solve_graph.py:249][ERROR][15100] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,902][solve_graph.py:249][ERROR][23264] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,906][solve_graph.py:196][ERROR][8776] - Invalid birthday format: 1987-04-09T00:00:00
+[2024-10-08 20:09:25,907][solve_graph.py:197][ERROR][8776] - Invalid id format:
+[2024-10-08 20:09:25,907][solve_graph.py:249][ERROR][8776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,914][solve_graph.py:249][ERROR][23868] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,918][solve_graph.py:249][ERROR][21332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,938][solve_graph.py:249][ERROR][26796] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,948][solve_graph.py:249][ERROR][10456] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,951][solve_graph.py:249][ERROR][25524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,974][solve_graph.py:249][ERROR][26828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,979][solve_graph.py:196][ERROR][24300] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:25,980][solve_graph.py:197][ERROR][24300] - Invalid id format:
+[2024-10-08 20:09:25,981][solve_graph.py:249][ERROR][15904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,981][solve_graph.py:249][ERROR][24300] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,986][solve_graph.py:249][ERROR][23048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:25,998][solve_graph.py:249][ERROR][25568] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,001][solve_graph.py:249][ERROR][18412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,008][solve_graph.py:249][ERROR][19620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,048][solve_graph.py:249][ERROR][21768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,055][solve_graph.py:249][ERROR][5928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,058][solve_graph.py:249][ERROR][14308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,063][solve_graph.py:249][ERROR][28640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,075][solve_graph.py:249][ERROR][14096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,082][solve_graph.py:196][ERROR][21004] - Invalid birthday format: 1997-08-13T00:00:00
+[2024-10-08 20:09:26,082][solve_graph.py:197][ERROR][21004] - Invalid id format:
+[2024-10-08 20:09:26,083][solve_graph.py:249][ERROR][21004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,088][solve_graph.py:196][ERROR][28544] - Invalid birthday format: 1978-10-28T00:00:00
+[2024-10-08 20:09:26,088][solve_graph.py:197][ERROR][28544] - Invalid id format:
+[2024-10-08 20:09:26,089][solve_graph.py:249][ERROR][28544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,098][solve_graph.py:249][ERROR][19424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,103][solve_graph.py:196][ERROR][17044] - Invalid birthday format: 1987-10-19T00:00:00
+[2024-10-08 20:09:26,103][solve_graph.py:197][ERROR][17044] - Invalid id format:
+[2024-10-08 20:09:26,106][solve_graph.py:249][ERROR][17044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,110][solve_graph.py:249][ERROR][22820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,115][solve_graph.py:196][ERROR][29288] - Invalid birthday format: 1993-08-23T00:00:00
+[2024-10-08 20:09:26,116][solve_graph.py:197][ERROR][29288] - Invalid id format:
+[2024-10-08 20:09:26,116][solve_graph.py:249][ERROR][29288] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,122][solve_graph.py:196][ERROR][16708] - Invalid birthday format: 2001-01-11T00:00:00
+[2024-10-08 20:09:26,123][solve_graph.py:197][ERROR][16708] - Invalid id format:
+[2024-10-08 20:09:26,123][solve_graph.py:249][ERROR][16708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,131][solve_graph.py:249][ERROR][26132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,135][solve_graph.py:249][ERROR][28928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,141][solve_graph.py:249][ERROR][25992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,151][solve_graph.py:249][ERROR][4964] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,153][solve_graph.py:249][ERROR][6592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,158][solve_graph.py:249][ERROR][27636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,166][solve_graph.py:196][ERROR][18392] - Invalid birthday format: 1971-12-10T00:00:00
+[2024-10-08 20:09:26,166][solve_graph.py:197][ERROR][18392] - Invalid id format:
+[2024-10-08 20:09:26,168][solve_graph.py:196][ERROR][19492] - Invalid birthday format: 1997-10-17T00:00:00
+[2024-10-08 20:09:26,168][solve_graph.py:249][ERROR][18392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,169][solve_graph.py:197][ERROR][19492] - Invalid id format:
+[2024-10-08 20:09:26,170][solve_graph.py:249][ERROR][19492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,184][solve_graph.py:249][ERROR][18708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,196][solve_graph.py:196][ERROR][26804] - Invalid birthday format: 1985-06-15T00:00:00
+[2024-10-08 20:09:26,197][solve_graph.py:197][ERROR][26804] - Invalid id format:
+[2024-10-08 20:09:26,197][solve_graph.py:249][ERROR][26804] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,201][solve_graph.py:249][ERROR][20904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,204][solve_graph.py:249][ERROR][14636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,211][solve_graph.py:249][ERROR][18456] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,216][solve_graph.py:249][ERROR][21028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,225][solve_graph.py:249][ERROR][22700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,234][solve_graph.py:249][ERROR][26000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,238][solve_graph.py:249][ERROR][26408] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,247][solve_graph.py:249][ERROR][17992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,251][solve_graph.py:249][ERROR][27628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,261][solve_graph.py:196][ERROR][28952] - Invalid birthday format: 1985-10-13T00:00:00
+[2024-10-08 20:09:26,263][solve_graph.py:196][ERROR][28172] - Invalid birthday format: 1980-12-13T00:00:00
+[2024-10-08 20:09:26,263][solve_graph.py:197][ERROR][28952] - Invalid id format:
+[2024-10-08 20:09:26,264][solve_graph.py:197][ERROR][28172] - Invalid id format:
+[2024-10-08 20:09:26,264][solve_graph.py:249][ERROR][28952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,265][solve_graph.py:249][ERROR][27672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,265][solve_graph.py:249][ERROR][28172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,268][solve_graph.py:196][ERROR][16360] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:26,273][solve_graph.py:197][ERROR][16360] - Invalid id format:
+[2024-10-08 20:09:26,275][solve_graph.py:249][ERROR][16360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,286][solve_graph.py:249][ERROR][3840] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,291][solve_graph.py:249][ERROR][15976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,301][solve_graph.py:196][ERROR][8528] - Invalid birthday format: 1988-08-09T00:00:00
+[2024-10-08 20:09:26,301][solve_graph.py:197][ERROR][8528] - Invalid id format:
+[2024-10-08 20:09:26,301][solve_graph.py:249][ERROR][8528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,307][solve_graph.py:196][ERROR][13040] - Invalid birthday format: 1996-09-03T00:00:00
+[2024-10-08 20:09:26,308][solve_graph.py:197][ERROR][13040] - Invalid id format:
+[2024-10-08 20:09:26,310][solve_graph.py:249][ERROR][13040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,310][solve_graph.py:249][ERROR][27688] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,316][solve_graph.py:249][ERROR][752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,321][solve_graph.py:249][ERROR][3044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,329][solve_graph.py:196][ERROR][14588] - Invalid birthday format: 1989-01-01T00:00:00
+[2024-10-08 20:09:26,329][solve_graph.py:197][ERROR][14588] - Invalid id format:
+[2024-10-08 20:09:26,329][solve_graph.py:249][ERROR][14588] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,331][solve_graph.py:249][ERROR][27108] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,336][solve_graph.py:249][ERROR][28796] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,339][solve_graph.py:249][ERROR][7460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,343][solve_graph.py:249][ERROR][13548] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,346][solve_graph.py:249][ERROR][14228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,356][solve_graph.py:249][ERROR][27324] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,364][solve_graph.py:249][ERROR][15740] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,372][solve_graph.py:196][ERROR][19020] - Invalid birthday format: 1997-04-20T00:00:00
+[2024-10-08 20:09:26,372][solve_graph.py:197][ERROR][19020] - Invalid id format:
+[2024-10-08 20:09:26,373][solve_graph.py:249][ERROR][19020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,376][solve_graph.py:196][ERROR][28392] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:26,378][solve_graph.py:197][ERROR][28392] - Invalid id format:
+[2024-10-08 20:09:26,378][solve_graph.py:249][ERROR][28392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,387][solve_graph.py:249][ERROR][27156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,391][solve_graph.py:249][ERROR][12764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,394][solve_graph.py:196][ERROR][23768] - Invalid birthday format: 1983-08-13T00:00:00
+[2024-10-08 20:09:26,395][solve_graph.py:197][ERROR][23768] - Invalid id format:
+[2024-10-08 20:09:26,395][solve_graph.py:249][ERROR][23768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,418][solve_graph.py:249][ERROR][17600] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,423][solve_graph.py:249][ERROR][8556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,438][solve_graph.py:249][ERROR][25828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,442][solve_graph.py:249][ERROR][19636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,453][solve_graph.py:196][ERROR][23484] - Invalid birthday format: 1986-04-21T00:00:00
+[2024-10-08 20:09:26,455][solve_graph.py:249][ERROR][28692] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,455][solve_graph.py:197][ERROR][23484] - Invalid id format:
+[2024-10-08 20:09:26,457][solve_graph.py:249][ERROR][23484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,472][solve_graph.py:249][ERROR][4440] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,474][solve_graph.py:249][ERROR][13420] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,483][solve_graph.py:249][ERROR][10604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,487][solve_graph.py:196][ERROR][15400] - Invalid birthday format: 1990-10-09T00:00:00
+[2024-10-08 20:09:26,489][solve_graph.py:197][ERROR][15400] - Invalid id format:
+[2024-10-08 20:09:26,489][solve_graph.py:249][ERROR][15400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,497][solve_graph.py:249][ERROR][10836] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,498][solve_graph.py:196][ERROR][25344] - Invalid birthday format: 1997-12-24T00:00:00
+[2024-10-08 20:09:26,500][solve_graph.py:197][ERROR][25344] - Invalid id format:
+[2024-10-08 20:09:26,502][solve_graph.py:249][ERROR][3444] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,502][solve_graph.py:249][ERROR][25344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,504][solve_graph.py:249][ERROR][15796] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:26,509][solve_graph.py:249][ERROR][24160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,853][solve_graph.py:196][ERROR][18464] - Invalid birthday format: 1991-01-28T00:00:00
+[2024-10-08 20:09:49,854][solve_graph.py:197][ERROR][18464] - Invalid id format:
+[2024-10-08 20:09:49,854][solve_graph.py:249][ERROR][18464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,855][solve_graph.py:249][ERROR][15172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,862][solve_graph.py:196][ERROR][24776] - Invalid birthday format: 1993-11-29T00:00:00
+[2024-10-08 20:09:49,863][solve_graph.py:197][ERROR][24776] - Invalid id format:
+[2024-10-08 20:09:49,863][solve_graph.py:249][ERROR][24776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,869][solve_graph.py:196][ERROR][27828] - Invalid birthday format: 1977-08-02T00:00:00
+[2024-10-08 20:09:49,869][solve_graph.py:197][ERROR][27828] - Invalid id format:
+[2024-10-08 20:09:49,869][solve_graph.py:249][ERROR][27828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,872][solve_graph.py:196][ERROR][21936] - Invalid birthday format: 1988-02-18T00:00:00
+[2024-10-08 20:09:49,872][solve_graph.py:197][ERROR][21936] - Invalid id format:
+[2024-10-08 20:09:49,873][solve_graph.py:249][ERROR][21936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,881][solve_graph.py:249][ERROR][24052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,885][solve_graph.py:249][ERROR][25768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,891][solve_graph.py:249][ERROR][23664] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,898][solve_graph.py:249][ERROR][4204] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,901][solve_graph.py:249][ERROR][25416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,909][solve_graph.py:196][ERROR][14224] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:49,910][solve_graph.py:197][ERROR][14224] - Invalid id format:
+[2024-10-08 20:09:49,910][solve_graph.py:249][ERROR][14224] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,920][solve_graph.py:249][ERROR][21524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,929][solve_graph.py:249][ERROR][9560] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,936][solve_graph.py:249][ERROR][22236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,943][solve_graph.py:249][ERROR][17668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,947][solve_graph.py:249][ERROR][22860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,951][solve_graph.py:196][ERROR][16324] - Invalid birthday format: 1994-10-29T00:00:00
+[2024-10-08 20:09:49,952][solve_graph.py:197][ERROR][16324] - Invalid id format:
+[2024-10-08 20:09:49,952][solve_graph.py:249][ERROR][16324] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,958][solve_graph.py:249][ERROR][21604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,961][solve_graph.py:249][ERROR][26976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,965][solve_graph.py:249][ERROR][128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,971][solve_graph.py:196][ERROR][21384] - Invalid birthday format: 1979-07-15T00:00:00
+[2024-10-08 20:09:49,971][solve_graph.py:197][ERROR][21384] - Invalid id format:
+[2024-10-08 20:09:49,971][solve_graph.py:249][ERROR][21384] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,978][solve_graph.py:196][ERROR][9304] - Invalid birthday format: 1987-10-08T00:00:00
+[2024-10-08 20:09:49,978][solve_graph.py:197][ERROR][9304] - Invalid id format:
+[2024-10-08 20:09:49,979][solve_graph.py:249][ERROR][9304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,987][solve_graph.py:249][ERROR][18704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,994][solve_graph.py:196][ERROR][20308] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:49,994][solve_graph.py:197][ERROR][20308] - Invalid id format:
+[2024-10-08 20:09:49,995][solve_graph.py:249][ERROR][20308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:49,999][solve_graph.py:196][ERROR][14996] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:49,999][solve_graph.py:197][ERROR][14996] - Invalid id format:
+[2024-10-08 20:09:50,000][solve_graph.py:249][ERROR][14996] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,006][solve_graph.py:249][ERROR][23480] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,010][solve_graph.py:196][ERROR][11072] - Invalid birthday format: 1990-12-05T00:00:00
+[2024-10-08 20:09:50,010][solve_graph.py:197][ERROR][11072] - Invalid id format:
+[2024-10-08 20:09:50,011][solve_graph.py:249][ERROR][11072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,022][solve_graph.py:249][ERROR][18424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,027][solve_graph.py:196][ERROR][17760] - Invalid birthday format: 2001-05-28T00:00:00
+[2024-10-08 20:09:50,028][solve_graph.py:197][ERROR][17760] - Invalid id format:
+[2024-10-08 20:09:50,028][solve_graph.py:249][ERROR][17760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,032][solve_graph.py:249][ERROR][10132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,039][solve_graph.py:196][ERROR][18188] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:50,039][solve_graph.py:197][ERROR][18188] - Invalid id format:
+[2024-10-08 20:09:50,040][solve_graph.py:249][ERROR][18188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,044][solve_graph.py:196][ERROR][12976] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:50,044][solve_graph.py:197][ERROR][12976] - Invalid id format:
+[2024-10-08 20:09:50,045][solve_graph.py:249][ERROR][12976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,049][solve_graph.py:196][ERROR][24896] - Invalid birthday format: 1997-03-12T00:00:00
+[2024-10-08 20:09:50,049][solve_graph.py:197][ERROR][24896] - Invalid id format:
+[2024-10-08 20:09:50,049][solve_graph.py:249][ERROR][24896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,052][solve_graph.py:249][ERROR][27124] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,057][solve_graph.py:249][ERROR][12780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,061][solve_graph.py:249][ERROR][28344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,066][solve_graph.py:249][ERROR][19976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,088][solve_graph.py:249][ERROR][17660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,105][solve_graph.py:196][ERROR][25272] - Invalid birthday format: 1997-12-23T00:00:00
+[2024-10-08 20:09:50,106][solve_graph.py:197][ERROR][25272] - Invalid id format:
+[2024-10-08 20:09:50,106][solve_graph.py:249][ERROR][25272] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,110][solve_graph.py:249][ERROR][12064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,118][solve_graph.py:249][ERROR][23852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,122][solve_graph.py:249][ERROR][26732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,125][solve_graph.py:196][ERROR][15032] - Invalid birthday format: 1997-03-06T00:00:00
+[2024-10-08 20:09:50,127][solve_graph.py:197][ERROR][15032] - Invalid id format:
+[2024-10-08 20:09:50,127][solve_graph.py:249][ERROR][15032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,133][solve_graph.py:249][ERROR][24004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,137][solve_graph.py:249][ERROR][15132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,141][solve_graph.py:249][ERROR][13400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,180][solve_graph.py:249][ERROR][2856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,193][solve_graph.py:196][ERROR][22520] - Invalid birthday format: 1989-04-30T00:00:00
+[2024-10-08 20:09:50,193][solve_graph.py:197][ERROR][22520] - Invalid id format:
+[2024-10-08 20:09:50,193][solve_graph.py:249][ERROR][22520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,196][solve_graph.py:249][ERROR][21512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,203][solve_graph.py:249][ERROR][17776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,217][solve_graph.py:249][ERROR][29612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,222][solve_graph.py:249][ERROR][19280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,227][solve_graph.py:249][ERROR][5476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,231][solve_graph.py:249][ERROR][18780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,235][solve_graph.py:249][ERROR][16924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,238][solve_graph.py:249][ERROR][19396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,242][solve_graph.py:249][ERROR][22256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,246][solve_graph.py:249][ERROR][23288] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,251][solve_graph.py:249][ERROR][28572] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,267][solve_graph.py:196][ERROR][23192] - Invalid birthday format: 2001-11-21T00:00:00
+[2024-10-08 20:09:50,267][solve_graph.py:197][ERROR][23192] - Invalid id format:
+[2024-10-08 20:09:50,267][solve_graph.py:249][ERROR][23192] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,271][solve_graph.py:249][ERROR][26504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,275][solve_graph.py:196][ERROR][10336] - Invalid birthday format: 1978-06-06T00:00:00
+[2024-10-08 20:09:50,275][solve_graph.py:197][ERROR][10336] - Invalid id format:
+[2024-10-08 20:09:50,275][solve_graph.py:249][ERROR][10336] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,280][solve_graph.py:249][ERROR][17472] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,285][solve_graph.py:249][ERROR][3208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,298][solve_graph.py:249][ERROR][11168] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,308][solve_graph.py:196][ERROR][7872] - Invalid birthday format: 1994-03-02T00:00:00
+[2024-10-08 20:09:50,309][solve_graph.py:197][ERROR][7872] - Invalid id format:
+[2024-10-08 20:09:50,309][solve_graph.py:249][ERROR][7872] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,313][solve_graph.py:249][ERROR][24580] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,320][solve_graph.py:249][ERROR][8332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,324][solve_graph.py:249][ERROR][24104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,329][solve_graph.py:249][ERROR][22572] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,334][solve_graph.py:196][ERROR][16504] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:50,335][solve_graph.py:197][ERROR][16504] - Invalid id format:
+[2024-10-08 20:09:50,335][solve_graph.py:249][ERROR][16504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,339][solve_graph.py:249][ERROR][3928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,344][solve_graph.py:196][ERROR][14832] - Invalid birthday format: 1970-10-31T00:00:00
+[2024-10-08 20:09:50,344][solve_graph.py:197][ERROR][14832] - Invalid id format:
+[2024-10-08 20:09:50,344][solve_graph.py:249][ERROR][14832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,353][solve_graph.py:249][ERROR][29468] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,367][solve_graph.py:196][ERROR][22332] - Invalid birthday format: 1994-10-24T00:00:00
+[2024-10-08 20:09:50,367][solve_graph.py:197][ERROR][22332] - Invalid id format:
+[2024-10-08 20:09:50,367][solve_graph.py:249][ERROR][22332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,373][solve_graph.py:249][ERROR][15048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,385][solve_graph.py:249][ERROR][25152] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,401][solve_graph.py:249][ERROR][16972] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,416][solve_graph.py:249][ERROR][13036] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,430][solve_graph.py:196][ERROR][12532] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:09:50,430][solve_graph.py:197][ERROR][12532] - Invalid id format:
+[2024-10-08 20:09:50,430][solve_graph.py:249][ERROR][12532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,435][solve_graph.py:249][ERROR][2860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,441][solve_graph.py:249][ERROR][16416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,448][solve_graph.py:249][ERROR][4940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,453][solve_graph.py:249][ERROR][29632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,460][solve_graph.py:249][ERROR][24708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,465][solve_graph.py:249][ERROR][26628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,474][solve_graph.py:249][ERROR][23492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,478][solve_graph.py:196][ERROR][20492] - Invalid birthday format: 1984-03-29T00:00:00
+[2024-10-08 20:09:50,478][solve_graph.py:197][ERROR][20492] - Invalid id format:
+[2024-10-08 20:09:50,478][solve_graph.py:249][ERROR][20492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,482][solve_graph.py:249][ERROR][16752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,487][solve_graph.py:249][ERROR][18736] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,510][solve_graph.py:249][ERROR][8092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,520][solve_graph.py:249][ERROR][10268] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,530][solve_graph.py:249][ERROR][22784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,591][solve_graph.py:249][ERROR][25088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,634][solve_graph.py:249][ERROR][27568] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,638][solve_graph.py:249][ERROR][26396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,642][solve_graph.py:249][ERROR][14104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,647][solve_graph.py:249][ERROR][27592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,658][solve_graph.py:249][ERROR][17216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,668][solve_graph.py:249][ERROR][27328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,677][solve_graph.py:249][ERROR][20672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,684][solve_graph.py:196][ERROR][8160] - Invalid birthday format: 1981-04-27T00:00:00
+[2024-10-08 20:09:50,684][solve_graph.py:197][ERROR][8160] - Invalid id format:
+[2024-10-08 20:09:50,684][solve_graph.py:249][ERROR][8160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,695][solve_graph.py:249][ERROR][16820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,701][solve_graph.py:249][ERROR][20312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,707][solve_graph.py:249][ERROR][24208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,711][solve_graph.py:249][ERROR][11892] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,715][solve_graph.py:249][ERROR][18676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,724][solve_graph.py:249][ERROR][25856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,745][solve_graph.py:249][ERROR][15784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,751][solve_graph.py:196][ERROR][28044] - Invalid birthday format: 1996-05-02T00:00:00
+[2024-10-08 20:09:50,751][solve_graph.py:197][ERROR][28044] - Invalid id format:
+[2024-10-08 20:09:50,751][solve_graph.py:249][ERROR][28044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,758][solve_graph.py:196][ERROR][25636] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:09:50,759][solve_graph.py:197][ERROR][25636] - Invalid id format:
+[2024-10-08 20:09:50,759][solve_graph.py:249][ERROR][25636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,764][solve_graph.py:249][ERROR][18832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,771][solve_graph.py:196][ERROR][22988] - Invalid birthday format: 1982-01-23T00:00:00
+[2024-10-08 20:09:50,771][solve_graph.py:197][ERROR][22988] - Invalid id format:
+[2024-10-08 20:09:50,771][solve_graph.py:249][ERROR][22988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,779][solve_graph.py:249][ERROR][24232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,787][solve_graph.py:249][ERROR][19564] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,792][solve_graph.py:249][ERROR][17536] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,797][solve_graph.py:249][ERROR][14712] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,813][solve_graph.py:249][ERROR][21720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,821][solve_graph.py:249][ERROR][2600] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,825][solve_graph.py:249][ERROR][12592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,829][solve_graph.py:249][ERROR][14084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,847][solve_graph.py:249][ERROR][20536] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,885][solve_graph.py:249][ERROR][15280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,910][solve_graph.py:249][ERROR][11416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,913][solve_graph.py:249][ERROR][15140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,920][solve_graph.py:196][ERROR][20236] - Invalid birthday format: 1986-01-02T00:00:00
+[2024-10-08 20:09:50,920][solve_graph.py:197][ERROR][20236] - Invalid id format:
+[2024-10-08 20:09:50,921][solve_graph.py:249][ERROR][20236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,926][solve_graph.py:249][ERROR][18116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,935][solve_graph.py:249][ERROR][27728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,943][solve_graph.py:249][ERROR][7244] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,952][solve_graph.py:249][ERROR][21968] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,955][solve_graph.py:249][ERROR][9608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,964][solve_graph.py:196][ERROR][1764] - Invalid birthday format: 1988-11-29T00:00:00
+[2024-10-08 20:09:50,965][solve_graph.py:197][ERROR][1764] - Invalid id format:
+[2024-10-08 20:09:50,965][solve_graph.py:249][ERROR][1764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:09:50,971][solve_graph.py:249][ERROR][22348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,420][solve_graph.py:249][ERROR][26084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,429][solve_graph.py:249][ERROR][22116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,434][solve_graph.py:249][ERROR][23748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,446][solve_graph.py:249][ERROR][16056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,450][solve_graph.py:249][ERROR][28852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,454][solve_graph.py:249][ERROR][5656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,457][solve_graph.py:249][ERROR][28512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,463][solve_graph.py:196][ERROR][15004] - Invalid birthday format: 1990-03-27T00:00:00
+[2024-10-08 20:10:01,464][solve_graph.py:197][ERROR][15004] - Invalid id format:
+[2024-10-08 20:10:01,464][solve_graph.py:249][ERROR][15004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,469][solve_graph.py:249][ERROR][9280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,473][solve_graph.py:249][ERROR][11636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,478][solve_graph.py:196][ERROR][22600] - Invalid birthday format: 1996-03-11T00:00:00
+[2024-10-08 20:10:01,478][solve_graph.py:197][ERROR][22600] - Invalid id format:
+[2024-10-08 20:10:01,478][solve_graph.py:249][ERROR][22600] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,481][solve_graph.py:196][ERROR][24248] - Invalid birthday format: 1990-11-18T00:00:00
+[2024-10-08 20:10:01,482][solve_graph.py:197][ERROR][24248] - Invalid id format:
+[2024-10-08 20:10:01,482][solve_graph.py:249][ERROR][24248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,487][solve_graph.py:249][ERROR][16508] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,492][solve_graph.py:196][ERROR][18156] - Invalid birthday format: 2002-11-12T00:00:00
+[2024-10-08 20:10:01,492][solve_graph.py:197][ERROR][18156] - Invalid id format:
+[2024-10-08 20:10:01,493][solve_graph.py:249][ERROR][18156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,496][solve_graph.py:196][ERROR][25632] - Invalid birthday format: 1994-02-16T00:00:00
+[2024-10-08 20:10:01,497][solve_graph.py:197][ERROR][25632] - Invalid id format:
+[2024-10-08 20:10:01,497][solve_graph.py:249][ERROR][25632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,510][solve_graph.py:249][ERROR][21304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,518][solve_graph.py:249][ERROR][9612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,524][solve_graph.py:249][ERROR][5112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,528][solve_graph.py:249][ERROR][26404] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,536][solve_graph.py:249][ERROR][19420] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,543][solve_graph.py:249][ERROR][24604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,549][solve_graph.py:249][ERROR][21756] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,554][solve_graph.py:249][ERROR][23620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,562][solve_graph.py:196][ERROR][16412] - Invalid birthday format: 1982-02-23T00:00:00
+[2024-10-08 20:10:01,563][solve_graph.py:249][ERROR][16032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,564][solve_graph.py:197][ERROR][16412] - Invalid id format:
+[2024-10-08 20:10:01,567][solve_graph.py:249][ERROR][16412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,568][solve_graph.py:249][ERROR][16392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,573][solve_graph.py:249][ERROR][22304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,578][solve_graph.py:249][ERROR][20804] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,585][solve_graph.py:249][ERROR][28468] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,587][solve_graph.py:196][ERROR][28764] - Invalid birthday format: 1996-01-04T00:00:00
+[2024-10-08 20:10:01,589][solve_graph.py:197][ERROR][28764] - Invalid id format:
+[2024-10-08 20:10:01,590][solve_graph.py:249][ERROR][28764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,591][solve_graph.py:249][ERROR][8900] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,597][solve_graph.py:249][ERROR][25984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,601][solve_graph.py:196][ERROR][28860] - Invalid birthday format: 1988-07-01T00:00:00
+[2024-10-08 20:10:01,601][solve_graph.py:197][ERROR][28860] - Invalid id format:
+[2024-10-08 20:10:01,602][solve_graph.py:249][ERROR][28860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,604][solve_graph.py:196][ERROR][21744] - Invalid birthday format: 1987-01-05T00:00:00
+[2024-10-08 20:10:01,605][solve_graph.py:197][ERROR][21744] - Invalid id format:
+[2024-10-08 20:10:01,607][solve_graph.py:196][ERROR][18044] - Invalid birthday format: 1985-11-20T00:00:00
+[2024-10-08 20:10:01,607][solve_graph.py:249][ERROR][21744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,609][solve_graph.py:197][ERROR][18044] - Invalid id format:
+[2024-10-08 20:10:01,612][solve_graph.py:249][ERROR][2484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,612][solve_graph.py:249][ERROR][18044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,618][solve_graph.py:196][ERROR][29492] - Invalid birthday format: 1994-05-18T00:00:00
+[2024-10-08 20:10:01,621][solve_graph.py:197][ERROR][29492] - Invalid id format:
+[2024-10-08 20:10:01,621][solve_graph.py:249][ERROR][29492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,627][solve_graph.py:249][ERROR][21832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,631][solve_graph.py:249][ERROR][8364] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,635][solve_graph.py:196][ERROR][12172] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:10:01,636][solve_graph.py:197][ERROR][12172] - Invalid id format:
+[2024-10-08 20:10:01,637][solve_graph.py:249][ERROR][12172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,643][solve_graph.py:196][ERROR][26028] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:10:01,644][solve_graph.py:197][ERROR][26028] - Invalid id format:
+[2024-10-08 20:10:01,644][solve_graph.py:249][ERROR][26028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,649][solve_graph.py:249][ERROR][19172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,653][solve_graph.py:196][ERROR][18348] - Invalid birthday format: 1990-08-16T00:00:00
+[2024-10-08 20:10:01,656][solve_graph.py:197][ERROR][18348] - Invalid id format:
+[2024-10-08 20:10:01,659][solve_graph.py:196][ERROR][14612] - Invalid birthday format: 1987-01-01T00:00:00
+[2024-10-08 20:10:01,661][solve_graph.py:249][ERROR][23784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,662][solve_graph.py:249][ERROR][18348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,662][solve_graph.py:197][ERROR][14612] - Invalid id format:
+[2024-10-08 20:10:01,664][solve_graph.py:196][ERROR][24356] - Invalid birthday format: 1999-10-05T00:00:00
+[2024-10-08 20:10:01,668][solve_graph.py:249][ERROR][26712] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,670][solve_graph.py:249][ERROR][14612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,671][solve_graph.py:197][ERROR][24356] - Invalid id format:
+[2024-10-08 20:10:01,673][solve_graph.py:249][ERROR][17452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,680][solve_graph.py:249][ERROR][24356] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,682][solve_graph.py:249][ERROR][17784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,688][solve_graph.py:249][ERROR][5768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,700][solve_graph.py:249][ERROR][24156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,712][solve_graph.py:249][ERROR][16804] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,719][solve_graph.py:249][ERROR][18864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,732][solve_graph.py:249][ERROR][19380] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,735][solve_graph.py:249][ERROR][19932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,745][solve_graph.py:249][ERROR][15948] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,748][solve_graph.py:196][ERROR][20368] - Invalid birthday format: 1982-05-28T00:00:00
+[2024-10-08 20:10:01,750][solve_graph.py:197][ERROR][20368] - Invalid id format:
+[2024-10-08 20:10:01,751][solve_graph.py:249][ERROR][20368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,752][solve_graph.py:249][ERROR][20344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,756][solve_graph.py:249][ERROR][3640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,759][solve_graph.py:196][ERROR][9160] - Invalid birthday format: 1989-01-10T00:00:00
+[2024-10-08 20:10:01,762][solve_graph.py:249][ERROR][4212] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,764][solve_graph.py:197][ERROR][9160] - Invalid id format:
+[2024-10-08 20:10:01,768][solve_graph.py:249][ERROR][9160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,772][solve_graph.py:249][ERROR][14760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,777][solve_graph.py:249][ERROR][27584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,781][solve_graph.py:196][ERROR][11708] - Invalid birthday format: 1990-07-08T00:00:00
+[2024-10-08 20:10:01,784][solve_graph.py:196][ERROR][29316] - Invalid birthday format: 1975-10-17T00:00:00
+[2024-10-08 20:10:01,785][solve_graph.py:197][ERROR][11708] - Invalid id format:
+[2024-10-08 20:10:01,785][solve_graph.py:197][ERROR][29316] - Invalid id format:
+[2024-10-08 20:10:01,787][solve_graph.py:196][ERROR][21132] - Invalid birthday format: 1997-05-09T00:00:00
+[2024-10-08 20:10:01,787][solve_graph.py:249][ERROR][11708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,788][solve_graph.py:249][ERROR][29316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,789][solve_graph.py:249][ERROR][14452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,790][solve_graph.py:197][ERROR][21132] - Invalid id format:
+[2024-10-08 20:10:01,792][solve_graph.py:249][ERROR][15460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,799][solve_graph.py:249][ERROR][21132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,803][solve_graph.py:196][ERROR][25412] - Invalid birthday format: 1982-04-13T00:00:00
+[2024-10-08 20:10:01,807][solve_graph.py:249][ERROR][11240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,807][solve_graph.py:197][ERROR][25412] - Invalid id format:
+[2024-10-08 20:10:01,808][solve_graph.py:249][ERROR][25412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,814][solve_graph.py:249][ERROR][23644] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,822][solve_graph.py:249][ERROR][17940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,828][solve_graph.py:249][ERROR][12048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,832][solve_graph.py:249][ERROR][26352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,839][solve_graph.py:249][ERROR][1760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,844][solve_graph.py:249][ERROR][10988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,853][solve_graph.py:249][ERROR][28060] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,860][solve_graph.py:249][ERROR][25188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,872][solve_graph.py:249][ERROR][1612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,879][solve_graph.py:196][ERROR][16832] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:10:01,880][solve_graph.py:197][ERROR][16832] - Invalid id format:
+[2024-10-08 20:10:01,880][solve_graph.py:249][ERROR][16832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,882][solve_graph.py:249][ERROR][10916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,886][solve_graph.py:249][ERROR][3004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,889][solve_graph.py:249][ERROR][24488] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,895][solve_graph.py:196][ERROR][24860] - Invalid birthday format: 1980-12-14T00:00:00
+[2024-10-08 20:10:01,895][solve_graph.py:197][ERROR][24860] - Invalid id format:
+[2024-10-08 20:10:01,897][solve_graph.py:249][ERROR][23368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,897][solve_graph.py:249][ERROR][24860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,900][solve_graph.py:249][ERROR][1388] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,904][solve_graph.py:196][ERROR][5076] - Invalid birthday format: 1990-08-10T00:00:00
+[2024-10-08 20:10:01,906][solve_graph.py:197][ERROR][5076] - Invalid id format:
+[2024-10-08 20:10:01,908][solve_graph.py:249][ERROR][22048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,909][solve_graph.py:249][ERROR][5076] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,911][solve_graph.py:249][ERROR][17396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,914][solve_graph.py:249][ERROR][28888] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,918][solve_graph.py:249][ERROR][14856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,922][solve_graph.py:249][ERROR][25916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,929][solve_graph.py:249][ERROR][28032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,933][solve_graph.py:249][ERROR][25700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,973][solve_graph.py:196][ERROR][23540] - Invalid birthday format: 1997-03-13T00:00:00
+[2024-10-08 20:10:01,973][solve_graph.py:197][ERROR][23540] - Invalid id format:
+[2024-10-08 20:10:01,974][solve_graph.py:249][ERROR][23540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,979][solve_graph.py:196][ERROR][18944] - Invalid birthday format: 1993-12-23T00:00:00
+[2024-10-08 20:10:01,981][solve_graph.py:197][ERROR][18944] - Invalid id format:
+[2024-10-08 20:10:01,984][solve_graph.py:249][ERROR][24296] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,985][solve_graph.py:249][ERROR][18944] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,990][solve_graph.py:196][ERROR][27352] - Invalid birthday format: 1988-10-16T00:00:00
+[2024-10-08 20:10:01,996][solve_graph.py:249][ERROR][25832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:01,996][solve_graph.py:197][ERROR][27352] - Invalid id format:
+[2024-10-08 20:10:02,001][solve_graph.py:249][ERROR][27800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,002][solve_graph.py:249][ERROR][27352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,007][solve_graph.py:196][ERROR][21112] - Invalid birthday format: 1988-03-10T00:00:00
+[2024-10-08 20:10:02,008][solve_graph.py:197][ERROR][21112] - Invalid id format:
+[2024-10-08 20:10:02,008][solve_graph.py:249][ERROR][21112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,012][solve_graph.py:249][ERROR][18920] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,014][solve_graph.py:249][ERROR][23356] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,019][solve_graph.py:249][ERROR][16236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,022][solve_graph.py:249][ERROR][18212] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,039][solve_graph.py:249][ERROR][25476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,045][solve_graph.py:249][ERROR][29232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,049][solve_graph.py:249][ERROR][16932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,054][solve_graph.py:249][ERROR][16764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,057][solve_graph.py:249][ERROR][25028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,062][solve_graph.py:249][ERROR][6988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,071][solve_graph.py:249][ERROR][11344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,075][solve_graph.py:249][ERROR][27652] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,083][solve_graph.py:196][ERROR][18576] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:10:02,084][solve_graph.py:197][ERROR][18576] - Invalid id format:
+[2024-10-08 20:10:02,086][solve_graph.py:249][ERROR][24556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,086][solve_graph.py:249][ERROR][18576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,091][solve_graph.py:249][ERROR][20004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,096][solve_graph.py:196][ERROR][24768] - Invalid birthday format: 2002-04-10T00:00:00
+[2024-10-08 20:10:02,097][solve_graph.py:197][ERROR][24768] - Invalid id format:
+[2024-10-08 20:10:02,098][solve_graph.py:249][ERROR][24768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,099][solve_graph.py:249][ERROR][28488] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,103][solve_graph.py:249][ERROR][16428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,106][solve_graph.py:249][ERROR][24940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,111][solve_graph.py:249][ERROR][22476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,116][solve_graph.py:196][ERROR][10124] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:10:02,117][solve_graph.py:197][ERROR][10124] - Invalid id format:
+[2024-10-08 20:10:02,117][solve_graph.py:249][ERROR][10124] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,118][solve_graph.py:249][ERROR][7932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,123][solve_graph.py:249][ERROR][15008] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,128][solve_graph.py:196][ERROR][6908] - Invalid birthday format: 1989-05-18T00:00:00
+[2024-10-08 20:10:02,130][solve_graph.py:197][ERROR][6908] - Invalid id format:
+[2024-10-08 20:10:02,132][solve_graph.py:249][ERROR][25708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,132][solve_graph.py:249][ERROR][6908] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:02,135][solve_graph.py:249][ERROR][21424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,967][solve_graph.py:249][ERROR][23596] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,967][solve_graph.py:196][ERROR][10668] - Invalid birthday format: 2004-08-07T00:00:00
+[2024-10-08 20:10:56,968][solve_graph.py:249][ERROR][29284] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,968][solve_graph.py:249][ERROR][21556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,968][solve_graph.py:249][ERROR][20980] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,968][solve_graph.py:249][ERROR][18932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,969][solve_graph.py:249][ERROR][29428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,969][solve_graph.py:249][ERROR][19744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,969][solve_graph.py:249][ERROR][17552] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,969][solve_graph.py:249][ERROR][20460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,969][solve_graph.py:249][ERROR][19628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,969][solve_graph.py:249][ERROR][26668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,970][solve_graph.py:249][ERROR][27288] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,970][solve_graph.py:249][ERROR][12824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,970][solve_graph.py:249][ERROR][15964] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,970][solve_graph.py:249][ERROR][1844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,971][solve_graph.py:249][ERROR][16160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,971][solve_graph.py:249][ERROR][4592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,971][solve_graph.py:249][ERROR][21864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,971][solve_graph.py:249][ERROR][22636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:10:56,973][solve_graph.py:197][ERROR][10668] - Invalid id format:
+[2024-10-08 20:10:57,063][solve_graph.py:249][ERROR][10668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,831][solve_graph.py:249][ERROR][17032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,832][solve_graph.py:249][ERROR][28524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,832][solve_graph.py:249][ERROR][26160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,833][solve_graph.py:196][ERROR][25972] - Invalid birthday format: 2004-08-17T00:00:00
+[2024-10-08 20:11:02,833][solve_graph.py:249][ERROR][29424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,833][solve_graph.py:249][ERROR][22088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,833][solve_graph.py:249][ERROR][17252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,834][solve_graph.py:249][ERROR][20240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,834][solve_graph.py:249][ERROR][15096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,834][solve_graph.py:249][ERROR][8696] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,834][solve_graph.py:249][ERROR][11128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,835][solve_graph.py:196][ERROR][19584] - Invalid birthday format: 2004-07-10T00:00:00
+[2024-10-08 20:11:02,835][solve_graph.py:249][ERROR][9320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,835][solve_graph.py:249][ERROR][21688] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,835][solve_graph.py:249][ERROR][26228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,835][solve_graph.py:249][ERROR][28896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,835][solve_graph.py:196][ERROR][22936] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:02,836][solve_graph.py:249][ERROR][15512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,836][solve_graph.py:249][ERROR][21684] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,836][solve_graph.py:249][ERROR][21592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,841][solve_graph.py:197][ERROR][25972] - Invalid id format:
+[2024-10-08 20:11:02,859][solve_graph.py:197][ERROR][19584] - Invalid id format:
+[2024-10-08 20:11:02,871][solve_graph.py:197][ERROR][22936] - Invalid id format:
+[2024-10-08 20:11:02,875][solve_graph.py:249][ERROR][25972] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,877][solve_graph.py:249][ERROR][19584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:02,882][solve_graph.py:249][ERROR][22936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,784][solve_graph.py:196][ERROR][19008] - Invalid birthday format: 2004-05-19T00:00:00
+[2024-10-08 20:11:09,784][solve_graph.py:197][ERROR][19008] - Invalid id format:
+[2024-10-08 20:11:09,788][solve_graph.py:249][ERROR][19008] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,785][solve_graph.py:249][ERROR][27464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,785][solve_graph.py:249][ERROR][26984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,785][solve_graph.py:249][ERROR][26440] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,785][solve_graph.py:196][ERROR][12888] - Invalid birthday format: 2003-05-27T00:00:00
+[2024-10-08 20:11:09,785][solve_graph.py:196][ERROR][14864] - Invalid birthday format: 2004-08-18T00:00:00
+[2024-10-08 20:11:09,786][solve_graph.py:249][ERROR][17860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,786][solve_graph.py:249][ERROR][13172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,786][solve_graph.py:249][ERROR][18560] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,786][solve_graph.py:196][ERROR][26392] - Invalid birthday format: 2003-10-23T00:00:00
+[2024-10-08 20:11:09,786][solve_graph.py:249][ERROR][28996] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,786][solve_graph.py:249][ERROR][16024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,787][solve_graph.py:249][ERROR][26860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,787][solve_graph.py:249][ERROR][5116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,787][solve_graph.py:196][ERROR][20484] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:09,787][solve_graph.py:249][ERROR][24980] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,787][solve_graph.py:249][ERROR][25380] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,788][solve_graph.py:249][ERROR][19656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,788][solve_graph.py:249][ERROR][16468] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,785][solve_graph.py:196][ERROR][10740] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:09,795][solve_graph.py:197][ERROR][12888] - Invalid id format:
+[2024-10-08 20:11:09,796][solve_graph.py:197][ERROR][14864] - Invalid id format:
+[2024-10-08 20:11:09,801][solve_graph.py:197][ERROR][26392] - Invalid id format:
+[2024-10-08 20:11:09,808][solve_graph.py:197][ERROR][20484] - Invalid id format:
+[2024-10-08 20:11:09,813][solve_graph.py:197][ERROR][10740] - Invalid id format:
+[2024-10-08 20:11:09,814][solve_graph.py:249][ERROR][12888] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,814][solve_graph.py:249][ERROR][14864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,815][solve_graph.py:249][ERROR][26392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,816][solve_graph.py:249][ERROR][20484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:09,816][solve_graph.py:249][ERROR][10740] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,095][solve_graph.py:249][ERROR][25892] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,096][solve_graph.py:196][ERROR][3868] - Invalid birthday format: 2004-05-27T00:00:00
+[2024-10-08 20:11:12,096][solve_graph.py:196][ERROR][26060] - Invalid birthday format: 2004-03-09T00:00:00
+[2024-10-08 20:11:12,096][solve_graph.py:196][ERROR][5248] - Invalid birthday format: 2004-05-17T00:00:00
+[2024-10-08 20:11:12,096][solve_graph.py:249][ERROR][18088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,096][solve_graph.py:249][ERROR][29056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,096][solve_graph.py:249][ERROR][10136] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,097][solve_graph.py:249][ERROR][18776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,097][solve_graph.py:249][ERROR][18708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,097][solve_graph.py:196][ERROR][25224] - Invalid birthday format: 2003-11-25T00:00:00
+[2024-10-08 20:11:12,097][solve_graph.py:249][ERROR][24428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,097][solve_graph.py:249][ERROR][8716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,097][solve_graph.py:196][ERROR][18392] - Invalid birthday format: 2003-11-03T00:00:00
+[2024-10-08 20:11:12,098][solve_graph.py:249][ERROR][22620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,098][solve_graph.py:196][ERROR][25344] - Invalid birthday format: 2002-09-20T00:00:00
+[2024-10-08 20:11:12,098][solve_graph.py:249][ERROR][24160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,098][solve_graph.py:249][ERROR][12844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,098][solve_graph.py:249][ERROR][15796] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,099][solve_graph.py:249][ERROR][22844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,099][solve_graph.py:196][ERROR][10836] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,101][solve_graph.py:197][ERROR][3868] - Invalid id format:
+[2024-10-08 20:11:12,101][solve_graph.py:197][ERROR][26060] - Invalid id format:
+[2024-10-08 20:11:12,102][solve_graph.py:197][ERROR][5248] - Invalid id format:
+[2024-10-08 20:11:12,109][solve_graph.py:249][ERROR][24812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,114][solve_graph.py:249][ERROR][14728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,116][solve_graph.py:197][ERROR][25224] - Invalid id format:
+[2024-10-08 20:11:12,120][solve_graph.py:197][ERROR][18392] - Invalid id format:
+[2024-10-08 20:11:12,121][solve_graph.py:249][ERROR][9420] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,123][solve_graph.py:197][ERROR][25344] - Invalid id format:
+[2024-10-08 20:11:12,126][solve_graph.py:249][ERROR][13468] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,129][solve_graph.py:196][ERROR][10556] - Invalid birthday format: 2004-06-27T00:00:00
+[2024-10-08 20:11:12,133][solve_graph.py:249][ERROR][6816] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,134][solve_graph.py:197][ERROR][10836] - Invalid id format:
+[2024-10-08 20:11:12,134][solve_graph.py:249][ERROR][3868] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,136][solve_graph.py:249][ERROR][25232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,137][solve_graph.py:249][ERROR][26060] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,138][solve_graph.py:249][ERROR][5248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,142][solve_graph.py:249][ERROR][25224] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,144][solve_graph.py:249][ERROR][8268] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,145][solve_graph.py:249][ERROR][18392] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,147][solve_graph.py:196][ERROR][25440] - Invalid birthday format: 2004-03-06T00:00:00
+[2024-10-08 20:11:12,149][solve_graph.py:249][ERROR][25344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,152][solve_graph.py:249][ERROR][24000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,152][solve_graph.py:197][ERROR][10556] - Invalid id format:
+[2024-10-08 20:11:12,154][solve_graph.py:249][ERROR][10836] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,156][solve_graph.py:249][ERROR][10012] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,162][solve_graph.py:249][ERROR][24124] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,167][solve_graph.py:249][ERROR][26284] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,169][solve_graph.py:196][ERROR][25968] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,172][solve_graph.py:197][ERROR][25440] - Invalid id format:
+[2024-10-08 20:11:12,173][solve_graph.py:196][ERROR][27084] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,178][solve_graph.py:249][ERROR][10556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,179][solve_graph.py:249][ERROR][1804] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,183][solve_graph.py:196][ERROR][1264] - Invalid birthday format: 2004-07-12T00:00:00
+[2024-10-08 20:11:12,185][solve_graph.py:249][ERROR][7556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,191][solve_graph.py:197][ERROR][25968] - Invalid id format:
+[2024-10-08 20:11:12,191][solve_graph.py:249][ERROR][25440] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,193][solve_graph.py:197][ERROR][27084] - Invalid id format:
+[2024-10-08 20:11:12,194][solve_graph.py:249][ERROR][22728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,200][solve_graph.py:249][ERROR][27968] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,200][solve_graph.py:197][ERROR][1264] - Invalid id format:
+[2024-10-08 20:11:12,204][solve_graph.py:196][ERROR][7428] - Invalid birthday format: 2002-08-28T00:00:00
+[2024-10-08 20:11:12,205][solve_graph.py:249][ERROR][25968] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,207][solve_graph.py:249][ERROR][27084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,210][solve_graph.py:249][ERROR][19312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,212][solve_graph.py:249][ERROR][1264] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,213][solve_graph.py:197][ERROR][7428] - Invalid id format:
+[2024-10-08 20:11:12,217][solve_graph.py:196][ERROR][10936] - Invalid birthday format: 2004-05-02T00:00:00
+[2024-10-08 20:11:12,220][solve_graph.py:249][ERROR][25244] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,222][solve_graph.py:249][ERROR][7428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,225][solve_graph.py:249][ERROR][1528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,228][solve_graph.py:249][ERROR][13100] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,228][solve_graph.py:197][ERROR][10936] - Invalid id format:
+[2024-10-08 20:11:12,234][solve_graph.py:249][ERROR][7768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,235][solve_graph.py:249][ERROR][10936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,242][solve_graph.py:196][ERROR][21492] - Invalid birthday format: 2003-07-24T00:00:00
+[2024-10-08 20:11:12,243][solve_graph.py:197][ERROR][21492] - Invalid id format:
+[2024-10-08 20:11:12,245][solve_graph.py:249][ERROR][26632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,245][solve_graph.py:249][ERROR][21492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,248][solve_graph.py:249][ERROR][21924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,251][solve_graph.py:249][ERROR][24076] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,255][solve_graph.py:196][ERROR][25032] - Invalid birthday format: 2004-01-30T00:00:00
+[2024-10-08 20:11:12,258][solve_graph.py:196][ERROR][4776] - Invalid birthday format: 2002-10-29T00:00:00
+[2024-10-08 20:11:12,259][solve_graph.py:197][ERROR][25032] - Invalid id format:
+[2024-10-08 20:11:12,260][solve_graph.py:197][ERROR][4776] - Invalid id format:
+[2024-10-08 20:11:12,260][solve_graph.py:249][ERROR][25032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,260][solve_graph.py:249][ERROR][4776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,263][solve_graph.py:249][ERROR][29060] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,267][solve_graph.py:249][ERROR][5580] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,272][solve_graph.py:249][ERROR][27972] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,275][solve_graph.py:249][ERROR][24856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,279][solve_graph.py:249][ERROR][20700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,282][solve_graph.py:196][ERROR][1652] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,282][solve_graph.py:197][ERROR][1652] - Invalid id format:
+[2024-10-08 20:11:12,283][solve_graph.py:249][ERROR][1652] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,285][solve_graph.py:196][ERROR][18632] - Invalid birthday format: 2004-04-28T00:00:00
+[2024-10-08 20:11:12,286][solve_graph.py:197][ERROR][18632] - Invalid id format:
+[2024-10-08 20:11:12,287][solve_graph.py:249][ERROR][18632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,288][solve_graph.py:249][ERROR][28340] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,295][solve_graph.py:196][ERROR][25800] - Invalid birthday format: 2003-04-25T00:00:00
+[2024-10-08 20:11:12,295][solve_graph.py:197][ERROR][25800] - Invalid id format:
+[2024-10-08 20:11:12,297][solve_graph.py:249][ERROR][2348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,297][solve_graph.py:249][ERROR][25800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,300][solve_graph.py:196][ERROR][29008] - Invalid birthday format: 2004-05-28T00:00:00
+[2024-10-08 20:11:12,302][solve_graph.py:197][ERROR][29008] - Invalid id format:
+[2024-10-08 20:11:12,302][solve_graph.py:249][ERROR][29008] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,308][solve_graph.py:196][ERROR][22180] - Invalid birthday format: 2003-11-04T00:00:00
+[2024-10-08 20:11:12,309][solve_graph.py:197][ERROR][22180] - Invalid id format:
+[2024-10-08 20:11:12,310][solve_graph.py:196][ERROR][22916] - Invalid birthday format: 2004-02-29T00:00:00
+[2024-10-08 20:11:12,311][solve_graph.py:249][ERROR][22180] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,311][solve_graph.py:197][ERROR][22916] - Invalid id format:
+[2024-10-08 20:11:12,313][solve_graph.py:249][ERROR][22916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,314][solve_graph.py:249][ERROR][16952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,321][solve_graph.py:249][ERROR][14396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,325][solve_graph.py:249][ERROR][27112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,329][solve_graph.py:196][ERROR][19892] - Invalid birthday format: 2004-01-26T00:00:00
+[2024-10-08 20:11:12,329][solve_graph.py:197][ERROR][19892] - Invalid id format:
+[2024-10-08 20:11:12,329][solve_graph.py:249][ERROR][19892] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,331][solve_graph.py:249][ERROR][21352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,338][solve_graph.py:249][ERROR][12648] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,343][solve_graph.py:249][ERROR][13156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,345][solve_graph.py:196][ERROR][10312] - Invalid birthday format: 2004-08-10T00:00:00
+[2024-10-08 20:11:12,346][solve_graph.py:197][ERROR][10312] - Invalid id format:
+[2024-10-08 20:11:12,348][solve_graph.py:249][ERROR][27340] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,348][solve_graph.py:249][ERROR][10312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,355][solve_graph.py:249][ERROR][23964] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,359][solve_graph.py:249][ERROR][20632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,362][solve_graph.py:249][ERROR][26728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,366][solve_graph.py:196][ERROR][1644] - Invalid birthday format: 2004-02-24T00:00:00
+[2024-10-08 20:11:12,366][solve_graph.py:197][ERROR][1644] - Invalid id format:
+[2024-10-08 20:11:12,367][solve_graph.py:249][ERROR][1644] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,371][solve_graph.py:249][ERROR][29408] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,375][solve_graph.py:196][ERROR][22924] - Invalid birthday format: 2004-10-11T00:00:00
+[2024-10-08 20:11:12,376][solve_graph.py:197][ERROR][22924] - Invalid id format:
+[2024-10-08 20:11:12,377][solve_graph.py:249][ERROR][20104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,377][solve_graph.py:249][ERROR][22924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,381][solve_graph.py:196][ERROR][916] - Invalid birthday format: 1983-04-07T00:00:00
+[2024-10-08 20:11:12,382][solve_graph.py:197][ERROR][916] - Invalid id format:
+[2024-10-08 20:11:12,383][solve_graph.py:249][ERROR][916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,387][solve_graph.py:249][ERROR][17332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,391][solve_graph.py:249][ERROR][22244] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,393][solve_graph.py:249][ERROR][14268] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,398][solve_graph.py:249][ERROR][4000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,403][solve_graph.py:249][ERROR][29384] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,406][solve_graph.py:249][ERROR][7772] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,410][solve_graph.py:249][ERROR][2400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,413][solve_graph.py:249][ERROR][24920] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,418][solve_graph.py:196][ERROR][9092] - Invalid birthday format: 2003-01-24T00:00:00
+[2024-10-08 20:11:12,419][solve_graph.py:197][ERROR][9092] - Invalid id format:
+[2024-10-08 20:11:12,420][solve_graph.py:196][ERROR][16052] - Invalid birthday format: 1986-07-08T00:00:00
+[2024-10-08 20:11:12,420][solve_graph.py:249][ERROR][9092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,421][solve_graph.py:197][ERROR][16052] - Invalid id format:
+[2024-10-08 20:11:12,424][solve_graph.py:249][ERROR][28736] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,425][solve_graph.py:249][ERROR][16052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,428][solve_graph.py:249][ERROR][24508] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,436][solve_graph.py:249][ERROR][15780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,451][solve_graph.py:249][ERROR][22360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,453][solve_graph.py:196][ERROR][11848] - Invalid birthday format: 2004-07-21T00:00:00
+[2024-10-08 20:11:12,454][solve_graph.py:197][ERROR][11848] - Invalid id format:
+[2024-10-08 20:11:12,455][solve_graph.py:249][ERROR][13208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,456][solve_graph.py:249][ERROR][11848] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,459][solve_graph.py:249][ERROR][28020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,465][solve_graph.py:249][ERROR][28720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,468][solve_graph.py:249][ERROR][9660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,472][solve_graph.py:249][ERROR][17884] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,476][solve_graph.py:249][ERROR][8896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,481][solve_graph.py:249][ERROR][11400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,484][solve_graph.py:249][ERROR][27880] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,487][solve_graph.py:249][ERROR][26940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,492][solve_graph.py:249][ERROR][4844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,498][solve_graph.py:249][ERROR][16916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,501][solve_graph.py:196][ERROR][25544] - Invalid birthday format: 2004-07-17T00:00:00
+[2024-10-08 20:11:12,502][solve_graph.py:197][ERROR][25544] - Invalid id format:
+[2024-10-08 20:11:12,503][solve_graph.py:249][ERROR][25544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,506][solve_graph.py:249][ERROR][440] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,510][solve_graph.py:249][ERROR][13864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,514][solve_graph.py:196][ERROR][22320] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,514][solve_graph.py:197][ERROR][22320] - Invalid id format:
+[2024-10-08 20:11:12,516][solve_graph.py:249][ERROR][29304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,516][solve_graph.py:249][ERROR][22320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,520][solve_graph.py:196][ERROR][21052] - Invalid birthday format: 2004-06-18T00:00:00
+[2024-10-08 20:11:12,521][solve_graph.py:197][ERROR][21052] - Invalid id format:
+[2024-10-08 20:11:12,522][solve_graph.py:249][ERROR][21052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,523][solve_graph.py:249][ERROR][4608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,531][solve_graph.py:249][ERROR][22576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,535][solve_graph.py:196][ERROR][8760] - Invalid birthday format: 2004-04-15T00:00:00
+[2024-10-08 20:11:12,536][solve_graph.py:197][ERROR][8760] - Invalid id format:
+[2024-10-08 20:11:12,536][solve_graph.py:249][ERROR][8760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,538][solve_graph.py:249][ERROR][11316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,544][solve_graph.py:249][ERROR][21540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,549][solve_graph.py:249][ERROR][18528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,557][solve_graph.py:249][ERROR][10380] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,562][solve_graph.py:249][ERROR][11832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,567][solve_graph.py:249][ERROR][22608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,574][solve_graph.py:249][ERROR][21672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,580][solve_graph.py:249][ERROR][8460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,583][solve_graph.py:196][ERROR][7724] - Invalid birthday format: 2003-08-01T00:00:00
+[2024-10-08 20:11:12,583][solve_graph.py:197][ERROR][7724] - Invalid id format:
+[2024-10-08 20:11:12,584][solve_graph.py:249][ERROR][7724] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,587][solve_graph.py:249][ERROR][25148] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,593][solve_graph.py:249][ERROR][19256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,596][solve_graph.py:249][ERROR][29444] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,599][solve_graph.py:196][ERROR][27188] - Invalid birthday format: 2004-06-22T00:00:00
+[2024-10-08 20:11:12,599][solve_graph.py:197][ERROR][27188] - Invalid id format:
+[2024-10-08 20:11:12,600][solve_graph.py:249][ERROR][27188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,601][solve_graph.py:249][ERROR][6800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,610][solve_graph.py:249][ERROR][28420] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,615][solve_graph.py:249][ERROR][19120] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,618][solve_graph.py:249][ERROR][3000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,621][solve_graph.py:249][ERROR][4716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,626][solve_graph.py:196][ERROR][8668] - Invalid birthday format: 2004-01-09T00:00:00
+[2024-10-08 20:11:12,627][solve_graph.py:197][ERROR][8668] - Invalid id format:
+[2024-10-08 20:11:12,628][solve_graph.py:249][ERROR][13856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,628][solve_graph.py:249][ERROR][8668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,631][solve_graph.py:249][ERROR][27544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,636][solve_graph.py:249][ERROR][15592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,643][solve_graph.py:249][ERROR][21120] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,646][solve_graph.py:249][ERROR][21576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,649][solve_graph.py:196][ERROR][1272] - Invalid birthday format: 2004-07-13T00:00:00
+[2024-10-08 20:11:12,651][solve_graph.py:249][ERROR][20260] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,651][solve_graph.py:197][ERROR][1272] - Invalid id format:
+[2024-10-08 20:11:12,653][solve_graph.py:249][ERROR][1272] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,656][solve_graph.py:249][ERROR][28412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,660][solve_graph.py:249][ERROR][27692] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,663][solve_graph.py:249][ERROR][26332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,666][solve_graph.py:196][ERROR][11476] - Invalid birthday format: 2003-01-14T00:00:00
+[2024-10-08 20:11:12,667][solve_graph.py:197][ERROR][11476] - Invalid id format:
+[2024-10-08 20:11:12,669][solve_graph.py:249][ERROR][15088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,669][solve_graph.py:249][ERROR][11476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,672][solve_graph.py:196][ERROR][26412] - Invalid birthday format: 2004-08-12T00:00:00
+[2024-10-08 20:11:12,674][solve_graph.py:197][ERROR][26412] - Invalid id format:
+[2024-10-08 20:11:12,675][solve_graph.py:249][ERROR][26412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,678][solve_graph.py:196][ERROR][852] - Invalid birthday format: 2004-01-28T00:00:00
+[2024-10-08 20:11:12,680][solve_graph.py:249][ERROR][7504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,680][solve_graph.py:197][ERROR][852] - Invalid id format:
+[2024-10-08 20:11:12,682][solve_graph.py:249][ERROR][852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,684][solve_graph.py:249][ERROR][8344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,687][solve_graph.py:249][ERROR][26604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,691][solve_graph.py:249][ERROR][24500] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,695][solve_graph.py:196][ERROR][22772] - Invalid birthday format: 2003-11-28T00:00:00
+[2024-10-08 20:11:12,696][solve_graph.py:197][ERROR][22772] - Invalid id format:
+[2024-10-08 20:11:12,697][solve_graph.py:249][ERROR][22772] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,699][solve_graph.py:249][ERROR][12332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,703][solve_graph.py:249][ERROR][11292] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,706][solve_graph.py:249][ERROR][5000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,711][solve_graph.py:249][ERROR][29308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,716][solve_graph.py:249][ERROR][29096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,719][solve_graph.py:249][ERROR][21904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,722][solve_graph.py:249][ERROR][16020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,727][solve_graph.py:196][ERROR][26708] - Invalid birthday format: 2004-02-22T00:00:00
+[2024-10-08 20:11:12,727][solve_graph.py:197][ERROR][26708] - Invalid id format:
+[2024-10-08 20:11:12,728][solve_graph.py:249][ERROR][26708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,735][solve_graph.py:249][ERROR][28248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,742][solve_graph.py:249][ERROR][15428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,743][solve_graph.py:249][ERROR][16608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,749][solve_graph.py:249][ERROR][22496] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,752][solve_graph.py:249][ERROR][23940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,755][solve_graph.py:196][ERROR][28532] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,756][solve_graph.py:197][ERROR][28532] - Invalid id format:
+[2024-10-08 20:11:12,756][solve_graph.py:249][ERROR][28532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,760][solve_graph.py:196][ERROR][10432] - Invalid birthday format: 2004-08-30T00:00:00
+[2024-10-08 20:11:12,761][solve_graph.py:197][ERROR][10432] - Invalid id format:
+[2024-10-08 20:11:12,761][solve_graph.py:249][ERROR][10432] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,765][solve_graph.py:249][ERROR][5448] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,768][solve_graph.py:249][ERROR][11132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,771][solve_graph.py:196][ERROR][11432] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,772][solve_graph.py:197][ERROR][11432] - Invalid id format:
+[2024-10-08 20:11:12,774][solve_graph.py:249][ERROR][26948] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,774][solve_graph.py:249][ERROR][11432] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,779][solve_graph.py:196][ERROR][26156] - Invalid birthday format: 2004-03-27T00:00:00
+[2024-10-08 20:11:12,780][solve_graph.py:197][ERROR][26156] - Invalid id format:
+[2024-10-08 20:11:12,780][solve_graph.py:249][ERROR][26156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,784][solve_graph.py:249][ERROR][27376] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,786][solve_graph.py:249][ERROR][23776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,791][solve_graph.py:249][ERROR][24864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,794][solve_graph.py:249][ERROR][23700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,799][solve_graph.py:249][ERROR][7880] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,801][solve_graph.py:249][ERROR][17912] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,804][solve_graph.py:249][ERROR][19184] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,812][solve_graph.py:249][ERROR][23936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,814][solve_graph.py:249][ERROR][18216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,818][solve_graph.py:196][ERROR][25788] - Invalid birthday format: 2004-08-25T00:00:00
+[2024-10-08 20:11:12,818][solve_graph.py:197][ERROR][25788] - Invalid id format:
+[2024-10-08 20:11:12,819][solve_graph.py:249][ERROR][25788] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,820][solve_graph.py:249][ERROR][14496] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,823][solve_graph.py:249][ERROR][20040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,831][solve_graph.py:249][ERROR][18168] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,833][solve_graph.py:249][ERROR][15540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,837][solve_graph.py:249][ERROR][22160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,841][solve_graph.py:196][ERROR][20780] - Invalid birthday format: 2004-04-29T00:00:00
+[2024-10-08 20:11:12,842][solve_graph.py:197][ERROR][20780] - Invalid id format:
+[2024-10-08 20:11:12,843][solve_graph.py:249][ERROR][20780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,846][solve_graph.py:249][ERROR][29620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,848][solve_graph.py:196][ERROR][22752] - Invalid birthday format: 2002-02-16T00:00:00
+[2024-10-08 20:11:12,849][solve_graph.py:197][ERROR][22752] - Invalid id format:
+[2024-10-08 20:11:12,850][solve_graph.py:249][ERROR][22752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,851][solve_graph.py:249][ERROR][20832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,854][solve_graph.py:249][ERROR][8544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,859][solve_graph.py:196][ERROR][25824] - Invalid birthday format: 2003-06-17T00:00:00
+[2024-10-08 20:11:12,860][solve_graph.py:197][ERROR][25824] - Invalid id format:
+[2024-10-08 20:11:12,862][solve_graph.py:249][ERROR][14812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,862][solve_graph.py:249][ERROR][25824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,866][solve_graph.py:249][ERROR][18036] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,869][solve_graph.py:249][ERROR][19716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,873][solve_graph.py:249][ERROR][17164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,877][solve_graph.py:249][ERROR][3948] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,878][solve_graph.py:249][ERROR][22096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,883][solve_graph.py:196][ERROR][5488] - Invalid birthday format: 2004-04-21T00:00:00
+[2024-10-08 20:11:12,883][solve_graph.py:197][ERROR][5488] - Invalid id format:
+[2024-10-08 20:11:12,884][solve_graph.py:249][ERROR][5488] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,885][solve_graph.py:249][ERROR][15632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,889][solve_graph.py:249][ERROR][26564] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,893][solve_graph.py:196][ERROR][19200] - Invalid birthday format: 2004-03-24T00:00:00
+[2024-10-08 20:11:12,894][solve_graph.py:197][ERROR][19200] - Invalid id format:
+[2024-10-08 20:11:12,895][solve_graph.py:196][ERROR][14736] - Invalid birthday format: 2004-08-31T00:00:00
+[2024-10-08 20:11:12,895][solve_graph.py:249][ERROR][19200] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,896][solve_graph.py:197][ERROR][14736] - Invalid id format:
+[2024-10-08 20:11:12,898][solve_graph.py:196][ERROR][8144] - Invalid birthday format: 2003-11-23T00:00:00
+[2024-10-08 20:11:12,899][solve_graph.py:249][ERROR][14736] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,899][solve_graph.py:197][ERROR][8144] - Invalid id format:
+[2024-10-08 20:11:12,901][solve_graph.py:249][ERROR][25312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,903][solve_graph.py:249][ERROR][8144] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,904][solve_graph.py:196][ERROR][23640] - Invalid birthday format: 2003-02-16T00:00:00
+[2024-10-08 20:11:12,909][solve_graph.py:249][ERROR][27924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,909][solve_graph.py:197][ERROR][23640] - Invalid id format:
+[2024-10-08 20:11:12,911][solve_graph.py:249][ERROR][4072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,913][solve_graph.py:249][ERROR][23640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,917][solve_graph.py:249][ERROR][25500] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,921][solve_graph.py:249][ERROR][15708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,925][solve_graph.py:249][ERROR][11584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,928][solve_graph.py:249][ERROR][1820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,931][solve_graph.py:249][ERROR][14740] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,936][solve_graph.py:249][ERROR][21296] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,945][solve_graph.py:249][ERROR][22928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,949][solve_graph.py:249][ERROR][19608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,952][solve_graph.py:249][ERROR][22480] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,959][solve_graph.py:249][ERROR][328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,963][solve_graph.py:249][ERROR][16616] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,972][solve_graph.py:249][ERROR][19252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,976][solve_graph.py:249][ERROR][22240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,980][solve_graph.py:196][ERROR][20668] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:12,980][solve_graph.py:197][ERROR][20668] - Invalid id format:
+[2024-10-08 20:11:12,981][solve_graph.py:249][ERROR][20668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,984][solve_graph.py:249][ERROR][3068] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,992][solve_graph.py:196][ERROR][24360] - Invalid birthday format: 2004-07-01T00:00:00
+[2024-10-08 20:11:12,993][solve_graph.py:197][ERROR][24360] - Invalid id format:
+[2024-10-08 20:11:12,993][solve_graph.py:249][ERROR][24360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:12,995][solve_graph.py:249][ERROR][21072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,001][solve_graph.py:249][ERROR][18140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,009][solve_graph.py:249][ERROR][16660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,018][solve_graph.py:249][ERROR][9960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,023][solve_graph.py:249][ERROR][24560] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,026][solve_graph.py:249][ERROR][26820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,036][solve_graph.py:196][ERROR][7928] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,036][solve_graph.py:197][ERROR][7928] - Invalid id format:
+[2024-10-08 20:11:13,038][solve_graph.py:249][ERROR][24188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,038][solve_graph.py:249][ERROR][7928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,042][solve_graph.py:249][ERROR][16280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,052][solve_graph.py:249][ERROR][1404] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,055][solve_graph.py:196][ERROR][29320] - Invalid birthday format: 2004-03-01T00:00:00
+[2024-10-08 20:11:13,056][solve_graph.py:197][ERROR][29320] - Invalid id format:
+[2024-10-08 20:11:13,057][solve_graph.py:249][ERROR][29320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,058][solve_graph.py:196][ERROR][11220] - Invalid birthday format: 2004-07-02T00:00:00
+[2024-10-08 20:11:13,062][solve_graph.py:197][ERROR][11220] - Invalid id format:
+[2024-10-08 20:11:13,063][solve_graph.py:249][ERROR][11220] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,066][solve_graph.py:249][ERROR][24800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,070][solve_graph.py:249][ERROR][20020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,074][solve_graph.py:249][ERROR][21444] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,080][solve_graph.py:249][ERROR][27048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,083][solve_graph.py:196][ERROR][20680] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,084][solve_graph.py:197][ERROR][20680] - Invalid id format:
+[2024-10-08 20:11:13,084][solve_graph.py:249][ERROR][20680] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,087][solve_graph.py:249][ERROR][18352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,092][solve_graph.py:249][ERROR][12744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,103][solve_graph.py:249][ERROR][19728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,107][solve_graph.py:196][ERROR][10544] - Invalid birthday format: 2004-03-03T00:00:00
+[2024-10-08 20:11:13,108][solve_graph.py:197][ERROR][10544] - Invalid id format:
+[2024-10-08 20:11:13,109][solve_graph.py:249][ERROR][10544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,111][solve_graph.py:249][ERROR][26016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,115][solve_graph.py:249][ERROR][27928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,119][solve_graph.py:249][ERROR][29068] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,135][solve_graph.py:249][ERROR][21144] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,139][solve_graph.py:249][ERROR][21876] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,151][solve_graph.py:249][ERROR][26816] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,167][solve_graph.py:249][ERROR][24968] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,179][solve_graph.py:249][ERROR][29072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,185][solve_graph.py:249][ERROR][20752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,195][solve_graph.py:249][ERROR][15692] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,201][solve_graph.py:249][ERROR][22164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,210][solve_graph.py:249][ERROR][6520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,219][solve_graph.py:249][ERROR][22672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,227][solve_graph.py:249][ERROR][18612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,238][solve_graph.py:249][ERROR][24096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,247][solve_graph.py:196][ERROR][1932] - Invalid birthday format: 2003-12-11T00:00:00
+[2024-10-08 20:11:13,247][solve_graph.py:197][ERROR][1932] - Invalid id format:
+[2024-10-08 20:11:13,247][solve_graph.py:249][ERROR][1932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,257][solve_graph.py:249][ERROR][14416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,265][solve_graph.py:249][ERROR][29516] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,271][solve_graph.py:196][ERROR][29152] - Invalid birthday format: 2004-04-22T00:00:00
+[2024-10-08 20:11:13,272][solve_graph.py:197][ERROR][29152] - Invalid id format:
+[2024-10-08 20:11:13,272][solve_graph.py:249][ERROR][29152] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,277][solve_graph.py:196][ERROR][24348] - Invalid birthday format: 2004-05-31T00:00:00
+[2024-10-08 20:11:13,277][solve_graph.py:197][ERROR][24348] - Invalid id format:
+[2024-10-08 20:11:13,277][solve_graph.py:249][ERROR][24348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,289][solve_graph.py:249][ERROR][19532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,295][solve_graph.py:249][ERROR][24288] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,299][solve_graph.py:196][ERROR][12756] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,299][solve_graph.py:197][ERROR][12756] - Invalid id format:
+[2024-10-08 20:11:13,300][solve_graph.py:249][ERROR][12756] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,303][solve_graph.py:196][ERROR][28200] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,303][solve_graph.py:197][ERROR][28200] - Invalid id format:
+[2024-10-08 20:11:13,304][solve_graph.py:249][ERROR][28200] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,308][solve_graph.py:249][ERROR][24416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,316][solve_graph.py:249][ERROR][22724] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,329][solve_graph.py:249][ERROR][20372] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,335][solve_graph.py:249][ERROR][25692] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,337][solve_graph.py:249][ERROR][9488] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,342][solve_graph.py:249][ERROR][29432] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,346][solve_graph.py:196][ERROR][3480] - Invalid birthday format: 1987-10-06T00:00:00
+[2024-10-08 20:11:13,346][solve_graph.py:197][ERROR][3480] - Invalid id format:
+[2024-10-08 20:11:13,346][solve_graph.py:249][ERROR][3480] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,350][solve_graph.py:249][ERROR][5904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,354][solve_graph.py:249][ERROR][27748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,362][solve_graph.py:249][ERROR][25128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,364][solve_graph.py:196][ERROR][11216] - Invalid birthday format: 2004-05-11T00:00:00
+[2024-10-08 20:11:13,365][solve_graph.py:197][ERROR][11216] - Invalid id format:
+[2024-10-08 20:11:13,367][solve_graph.py:249][ERROR][4840] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,367][solve_graph.py:249][ERROR][11216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,372][solve_graph.py:196][ERROR][12832] - Invalid birthday format: 2001-07-16T00:00:00
+[2024-10-08 20:11:13,374][solve_graph.py:197][ERROR][12832] - Invalid id format:
+[2024-10-08 20:11:13,374][solve_graph.py:249][ERROR][12832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,380][solve_graph.py:249][ERROR][12608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,383][solve_graph.py:249][ERROR][15656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,386][solve_graph.py:249][ERROR][10656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,392][solve_graph.py:249][ERROR][20952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,395][solve_graph.py:249][ERROR][2352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,398][solve_graph.py:249][ERROR][19016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,402][solve_graph.py:249][ERROR][16244] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,406][solve_graph.py:249][ERROR][19904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,410][solve_graph.py:196][ERROR][3964] - Invalid birthday format: 2003-12-11T00:00:00
+[2024-10-08 20:11:13,410][solve_graph.py:197][ERROR][3964] - Invalid id format:
+[2024-10-08 20:11:13,410][solve_graph.py:249][ERROR][3964] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,412][solve_graph.py:249][ERROR][18956] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,416][solve_graph.py:196][ERROR][23004] - Invalid birthday format: 2002-08-24T00:00:00
+[2024-10-08 20:11:13,417][solve_graph.py:197][ERROR][23004] - Invalid id format:
+[2024-10-08 20:11:13,419][solve_graph.py:249][ERROR][29012] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,419][solve_graph.py:249][ERROR][23004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,424][solve_graph.py:196][ERROR][28436] - Invalid birthday format: 2004-09-23T00:00:00
+[2024-10-08 20:11:13,425][solve_graph.py:197][ERROR][28436] - Invalid id format:
+[2024-10-08 20:11:13,425][solve_graph.py:249][ERROR][28436] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,428][solve_graph.py:249][ERROR][29272] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,431][solve_graph.py:249][ERROR][13584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,434][solve_graph.py:196][ERROR][22676] - Invalid birthday format: 1993-11-20T00:00:00
+[2024-10-08 20:11:13,435][solve_graph.py:197][ERROR][22676] - Invalid id format:
+[2024-10-08 20:11:13,436][solve_graph.py:249][ERROR][22676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,439][solve_graph.py:196][ERROR][20520] - Invalid birthday format: 1989-07-25T00:00:00
+[2024-10-08 20:11:13,439][solve_graph.py:197][ERROR][20520] - Invalid id format:
+[2024-10-08 20:11:13,440][solve_graph.py:249][ERROR][20520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,442][solve_graph.py:196][ERROR][13176] - Invalid birthday format: 2004-05-04T00:00:00
+[2024-10-08 20:11:13,443][solve_graph.py:197][ERROR][13176] - Invalid id format:
+[2024-10-08 20:11:13,444][solve_graph.py:249][ERROR][13176] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,446][solve_graph.py:249][ERROR][9532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,451][solve_graph.py:249][ERROR][11028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,454][solve_graph.py:196][ERROR][16140] - Invalid birthday format: 2003-08-13T00:00:00
+[2024-10-08 20:11:13,455][solve_graph.py:197][ERROR][16140] - Invalid id format:
+[2024-10-08 20:11:13,455][solve_graph.py:249][ERROR][16140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,457][solve_graph.py:249][ERROR][11972] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,460][solve_graph.py:249][ERROR][28292] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,465][solve_graph.py:196][ERROR][17704] - Invalid birthday format: 2003-11-05T00:00:00
+[2024-10-08 20:11:13,466][solve_graph.py:197][ERROR][17704] - Invalid id format:
+[2024-10-08 20:11:13,466][solve_graph.py:249][ERROR][17704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,468][solve_graph.py:196][ERROR][23208] - Invalid birthday format: 2004-01-20T00:00:00
+[2024-10-08 20:11:13,471][solve_graph.py:249][ERROR][1276] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,474][solve_graph.py:249][ERROR][912] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,476][solve_graph.py:249][ERROR][14700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,478][solve_graph.py:249][ERROR][20720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,479][solve_graph.py:249][ERROR][17572] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,482][solve_graph.py:249][ERROR][5692] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,484][solve_graph.py:196][ERROR][26664] - Invalid birthday format: 2004-06-29T00:00:00
+[2024-10-08 20:11:13,485][solve_graph.py:196][ERROR][1752] - Invalid birthday format: 1997-01-05T00:00:00
+[2024-10-08 20:11:13,487][solve_graph.py:249][ERROR][8000] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,489][solve_graph.py:249][ERROR][27548] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,491][solve_graph.py:196][ERROR][26192] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,493][solve_graph.py:196][ERROR][1084] - Invalid birthday format: 2004-12-29T00:00:00
+[2024-10-08 20:11:13,576][solve_graph.py:197][ERROR][26192] - Invalid id format:
+[2024-10-08 20:11:13,576][solve_graph.py:249][ERROR][26192] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,495][solve_graph.py:196][ERROR][5984] - Invalid birthday format: 1998-01-21T00:00:00
+[2024-10-08 20:11:13,578][solve_graph.py:197][ERROR][1084] - Invalid id format:
+[2024-10-08 20:11:13,579][solve_graph.py:249][ERROR][1084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,504][solve_graph.py:249][ERROR][29412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,580][solve_graph.py:197][ERROR][5984] - Invalid id format:
+[2024-10-08 20:11:13,558][solve_graph.py:197][ERROR][23208] - Invalid id format:
+[2024-10-08 20:11:13,570][solve_graph.py:249][ERROR][12208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,571][solve_graph.py:197][ERROR][26664] - Invalid id format:
+[2024-10-08 20:11:13,571][solve_graph.py:197][ERROR][1752] - Invalid id format:
+[2024-10-08 20:11:13,497][solve_graph.py:249][ERROR][15812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,502][solve_graph.py:249][ERROR][9168] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,506][solve_graph.py:249][ERROR][22316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,508][solve_graph.py:249][ERROR][19952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,510][solve_graph.py:196][ERROR][11184] - Invalid birthday format: 2003-04-28T00:00:00
+[2024-10-08 20:11:13,582][solve_graph.py:249][ERROR][5984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,583][solve_graph.py:249][ERROR][23208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,584][solve_graph.py:249][ERROR][26664] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,585][solve_graph.py:249][ERROR][1752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,592][solve_graph.py:249][ERROR][10248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,594][solve_graph.py:197][ERROR][11184] - Invalid id format:
+[2024-10-08 20:11:13,601][solve_graph.py:249][ERROR][27620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,603][solve_graph.py:196][ERROR][24340] - Invalid birthday format: 2001-08-02T00:00:00
+[2024-10-08 20:11:13,606][solve_graph.py:249][ERROR][6576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,606][solve_graph.py:249][ERROR][11184] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,612][solve_graph.py:197][ERROR][24340] - Invalid id format:
+[2024-10-08 20:11:13,615][solve_graph.py:249][ERROR][24340] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,621][solve_graph.py:249][ERROR][23636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,627][solve_graph.py:249][ERROR][28328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,630][solve_graph.py:249][ERROR][1316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,632][solve_graph.py:249][ERROR][15164] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,636][solve_graph.py:249][ERROR][20068] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,645][solve_graph.py:249][ERROR][5528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,650][solve_graph.py:196][ERROR][11076] - Invalid birthday format: 2004-05-18T00:00:00
+[2024-10-08 20:11:13,651][solve_graph.py:249][ERROR][18720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,652][solve_graph.py:197][ERROR][11076] - Invalid id format:
+[2024-10-08 20:11:13,654][solve_graph.py:249][ERROR][11076] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,658][solve_graph.py:196][ERROR][10420] - Invalid birthday format: 2004-06-26T00:00:00
+[2024-10-08 20:11:13,658][solve_graph.py:197][ERROR][10420] - Invalid id format:
+[2024-10-08 20:11:13,659][solve_graph.py:249][ERROR][10420] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,660][solve_graph.py:196][ERROR][29176] - Invalid birthday format: 2004-10-30T00:00:00
+[2024-10-08 20:11:13,663][solve_graph.py:249][ERROR][8132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,663][solve_graph.py:197][ERROR][29176] - Invalid id format:
+[2024-10-08 20:11:13,666][solve_graph.py:196][ERROR][21316] - Invalid birthday format: 2004-07-09T00:00:00
+[2024-10-08 20:11:13,667][solve_graph.py:249][ERROR][29176] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,667][solve_graph.py:197][ERROR][21316] - Invalid id format:
+[2024-10-08 20:11:13,670][solve_graph.py:249][ERROR][19696] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,671][solve_graph.py:249][ERROR][21316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,675][solve_graph.py:249][ERROR][27172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,676][solve_graph.py:249][ERROR][1464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,680][solve_graph.py:249][ERROR][26212] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,685][solve_graph.py:249][ERROR][29584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,688][solve_graph.py:249][ERROR][23676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,692][solve_graph.py:249][ERROR][22544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,695][solve_graph.py:249][ERROR][15328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,698][solve_graph.py:249][ERROR][27208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,701][solve_graph.py:249][ERROR][15024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,704][solve_graph.py:196][ERROR][28016] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,705][solve_graph.py:197][ERROR][28016] - Invalid id format:
+[2024-10-08 20:11:13,707][solve_graph.py:249][ERROR][28320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,707][solve_graph.py:249][ERROR][28016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,710][solve_graph.py:249][ERROR][27064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,713][solve_graph.py:249][ERROR][19672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,717][solve_graph.py:196][ERROR][24608] - Invalid birthday format: 2004-05-26T00:00:00
+[2024-10-08 20:11:13,719][solve_graph.py:249][ERROR][12848] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,719][solve_graph.py:197][ERROR][24608] - Invalid id format:
+[2024-10-08 20:11:13,722][solve_graph.py:249][ERROR][27640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,723][solve_graph.py:249][ERROR][24608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,726][solve_graph.py:249][ERROR][20692] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,734][solve_graph.py:249][ERROR][22876] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,738][solve_graph.py:249][ERROR][632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,743][solve_graph.py:249][ERROR][11824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,747][solve_graph.py:196][ERROR][28904] - Invalid birthday format: 2004-06-25T00:00:00
+[2024-10-08 20:11:13,748][solve_graph.py:197][ERROR][28904] - Invalid id format:
+[2024-10-08 20:11:13,749][solve_graph.py:249][ERROR][28904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,751][solve_graph.py:196][ERROR][15216] - Invalid birthday format: 2004-06-24T00:00:00
+[2024-10-08 20:11:13,753][solve_graph.py:249][ERROR][16576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,753][solve_graph.py:197][ERROR][15216] - Invalid id format:
+[2024-10-08 20:11:13,755][solve_graph.py:249][ERROR][15216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,757][solve_graph.py:249][ERROR][15928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,760][solve_graph.py:249][ERROR][13184] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,765][solve_graph.py:196][ERROR][29276] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,766][solve_graph.py:197][ERROR][29276] - Invalid id format:
+[2024-10-08 20:11:13,766][solve_graph.py:249][ERROR][29276] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,771][solve_graph.py:249][ERROR][25056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,781][solve_graph.py:249][ERROR][12980] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,787][solve_graph.py:196][ERROR][28112] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:11:13,789][solve_graph.py:197][ERROR][28112] - Invalid id format:
+[2024-10-08 20:11:13,791][solve_graph.py:196][ERROR][24048] - Invalid birthday format: 2003-11-03T00:00:00
+[2024-10-08 20:11:13,794][solve_graph.py:249][ERROR][28112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,794][solve_graph.py:197][ERROR][24048] - Invalid id format:
+[2024-10-08 20:11:13,797][solve_graph.py:249][ERROR][23516] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,798][solve_graph.py:249][ERROR][24048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,804][solve_graph.py:249][ERROR][9452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,807][solve_graph.py:249][ERROR][14248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,811][solve_graph.py:249][ERROR][12784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,817][solve_graph.py:249][ERROR][14300] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,820][solve_graph.py:249][ERROR][16196] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,827][solve_graph.py:249][ERROR][21412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,835][solve_graph.py:249][ERROR][15528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,838][solve_graph.py:249][ERROR][22952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,843][solve_graph.py:249][ERROR][21808] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,849][solve_graph.py:196][ERROR][24352] - Invalid birthday format: 2004-02-03T00:00:00
+[2024-10-08 20:11:13,851][solve_graph.py:249][ERROR][19112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,852][solve_graph.py:197][ERROR][24352] - Invalid id format:
+[2024-10-08 20:11:13,854][solve_graph.py:249][ERROR][24352] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,856][solve_graph.py:249][ERROR][25548] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,862][solve_graph.py:249][ERROR][19816] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,869][solve_graph.py:249][ERROR][20092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,874][solve_graph.py:249][ERROR][10748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,879][solve_graph.py:196][ERROR][24776] - Invalid birthday format: 2003-10-28T00:00:00
+[2024-10-08 20:11:13,881][solve_graph.py:197][ERROR][24776] - Invalid id format:
+[2024-10-08 20:11:13,883][solve_graph.py:249][ERROR][18464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,883][solve_graph.py:249][ERROR][24776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,886][solve_graph.py:249][ERROR][21604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,892][solve_graph.py:249][ERROR][16324] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,895][solve_graph.py:249][ERROR][22860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,899][solve_graph.py:249][ERROR][17668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,902][solve_graph.py:249][ERROR][9560] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,905][solve_graph.py:249][ERROR][10140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,909][solve_graph.py:249][ERROR][22236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,915][solve_graph.py:249][ERROR][6632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,919][solve_graph.py:249][ERROR][16136] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,922][solve_graph.py:249][ERROR][25608] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,927][solve_graph.py:249][ERROR][128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,930][solve_graph.py:249][ERROR][26976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,934][solve_graph.py:249][ERROR][14840] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,937][solve_graph.py:249][ERROR][14224] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,941][solve_graph.py:249][ERROR][25416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,944][solve_graph.py:249][ERROR][4204] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,948][solve_graph.py:249][ERROR][19212] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,951][solve_graph.py:249][ERROR][25768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,954][solve_graph.py:249][ERROR][24052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,958][solve_graph.py:249][ERROR][17528] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,960][solve_graph.py:249][ERROR][25316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,963][solve_graph.py:196][ERROR][27828] - Invalid birthday format: 1991-06-30T00:00:00
+[2024-10-08 20:11:13,964][solve_graph.py:197][ERROR][27828] - Invalid id format:
+[2024-10-08 20:11:13,965][solve_graph.py:249][ERROR][27828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,966][solve_graph.py:249][ERROR][21936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,974][solve_graph.py:249][ERROR][4228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,980][solve_graph.py:196][ERROR][14996] - Invalid birthday format: 2004-02-25T00:00:00
+[2024-10-08 20:11:13,982][solve_graph.py:197][ERROR][14996] - Invalid id format:
+[2024-10-08 20:11:13,982][solve_graph.py:249][ERROR][14996] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,984][solve_graph.py:249][ERROR][18188] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,988][solve_graph.py:249][ERROR][10132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,994][solve_graph.py:196][ERROR][18704] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:13,994][solve_graph.py:197][ERROR][18704] - Invalid id format:
+[2024-10-08 20:11:13,997][solve_graph.py:249][ERROR][19976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:13,997][solve_graph.py:249][ERROR][18704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,001][solve_graph.py:196][ERROR][24064] - Invalid birthday format: 1989-08-25T00:00:00
+[2024-10-08 20:11:14,003][solve_graph.py:197][ERROR][24064] - Invalid id format:
+[2024-10-08 20:11:14,006][solve_graph.py:249][ERROR][24064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,010][solve_graph.py:196][ERROR][17760] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,011][solve_graph.py:197][ERROR][17760] - Invalid id format:
+[2024-10-08 20:11:14,012][solve_graph.py:196][ERROR][28344] - Invalid birthday format: 1979-05-28T00:00:00
+[2024-10-08 20:11:14,013][solve_graph.py:249][ERROR][17760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,013][solve_graph.py:197][ERROR][28344] - Invalid id format:
+[2024-10-08 20:11:14,016][solve_graph.py:249][ERROR][12780] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,017][solve_graph.py:249][ERROR][28344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,018][solve_graph.py:249][ERROR][20308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,025][solve_graph.py:196][ERROR][18424] - Invalid birthday format: 1990-10-19T00:00:00
+[2024-10-08 20:11:14,025][solve_graph.py:197][ERROR][18424] - Invalid id format:
+[2024-10-08 20:11:14,026][solve_graph.py:249][ERROR][18424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,028][solve_graph.py:249][ERROR][25272] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,032][solve_graph.py:249][ERROR][25936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,037][solve_graph.py:249][ERROR][12976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,039][solve_graph.py:249][ERROR][9104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,043][solve_graph.py:249][ERROR][27124] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,046][solve_graph.py:249][ERROR][17660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,049][solve_graph.py:196][ERROR][24896] - Invalid birthday format: 1993-12-03T00:00:00
+[2024-10-08 20:11:14,049][solve_graph.py:197][ERROR][24896] - Invalid id format:
+[2024-10-08 20:11:14,050][solve_graph.py:249][ERROR][24896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,054][solve_graph.py:249][ERROR][992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,057][solve_graph.py:196][ERROR][24004] - Invalid birthday format: 2004-07-29T00:00:00
+[2024-10-08 20:11:14,057][solve_graph.py:197][ERROR][24004] - Invalid id format:
+[2024-10-08 20:11:14,058][solve_graph.py:249][ERROR][24004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,063][solve_graph.py:249][ERROR][26732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,070][solve_graph.py:196][ERROR][23480] - Invalid birthday format: 1978-12-23T00:00:00
+[2024-10-08 20:11:14,070][solve_graph.py:197][ERROR][23480] - Invalid id format:
+[2024-10-08 20:11:14,072][solve_graph.py:249][ERROR][19280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,072][solve_graph.py:249][ERROR][23480] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,076][solve_graph.py:249][ERROR][29612] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,082][solve_graph.py:249][ERROR][26524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,086][solve_graph.py:249][ERROR][6672] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,089][solve_graph.py:249][ERROR][18724] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,093][solve_graph.py:249][ERROR][23732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,097][solve_graph.py:196][ERROR][17776] - Invalid birthday format: 1983-11-02T00:00:00
+[2024-10-08 20:11:14,097][solve_graph.py:197][ERROR][17776] - Invalid id format:
+[2024-10-08 20:11:14,098][solve_graph.py:249][ERROR][17776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,100][solve_graph.py:249][ERROR][25172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,103][solve_graph.py:249][ERROR][21384] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,107][solve_graph.py:196][ERROR][5476] - Invalid birthday format: 1985-05-19T00:00:00
+[2024-10-08 20:11:14,107][solve_graph.py:197][ERROR][5476] - Invalid id format:
+[2024-10-08 20:11:14,107][solve_graph.py:249][ERROR][5476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,110][solve_graph.py:249][ERROR][22756] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,115][solve_graph.py:249][ERROR][19748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,120][solve_graph.py:196][ERROR][21912] - Invalid birthday format: 1988-07-16T00:00:00
+[2024-10-08 20:11:14,120][solve_graph.py:197][ERROR][21912] - Invalid id format:
+[2024-10-08 20:11:14,123][solve_graph.py:249][ERROR][19740] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,123][solve_graph.py:249][ERROR][21912] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,129][solve_graph.py:249][ERROR][19336] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,135][solve_graph.py:249][ERROR][1500] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,138][solve_graph.py:249][ERROR][26900] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,141][solve_graph.py:249][ERROR][28696] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,145][solve_graph.py:249][ERROR][18820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,151][solve_graph.py:249][ERROR][22520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,154][solve_graph.py:196][ERROR][24436] - Invalid birthday format: 1977-03-02T00:00:00
+[2024-10-08 20:11:14,155][solve_graph.py:197][ERROR][24436] - Invalid id format:
+[2024-10-08 20:11:14,157][solve_graph.py:249][ERROR][11052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,157][solve_graph.py:249][ERROR][24436] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,168][solve_graph.py:249][ERROR][15132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,171][solve_graph.py:249][ERROR][16956] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,175][solve_graph.py:196][ERROR][2856] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,176][solve_graph.py:197][ERROR][2856] - Invalid id format:
+[2024-10-08 20:11:14,176][solve_graph.py:249][ERROR][2856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,187][solve_graph.py:249][ERROR][25960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,189][solve_graph.py:249][ERROR][13400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,197][solve_graph.py:249][ERROR][23852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,200][solve_graph.py:249][ERROR][22256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,204][solve_graph.py:249][ERROR][16924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,208][solve_graph.py:196][ERROR][19396] - Invalid birthday format: 1999-11-14T00:00:00
+[2024-10-08 20:11:14,208][solve_graph.py:197][ERROR][19396] - Invalid id format:
+[2024-10-08 20:11:14,209][solve_graph.py:249][ERROR][19396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,210][solve_graph.py:249][ERROR][29028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,215][solve_graph.py:249][ERROR][26660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,235][solve_graph.py:249][ERROR][23492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,244][solve_graph.py:196][ERROR][22784] - Invalid birthday format: 1986-08-26T00:00:00
+[2024-10-08 20:11:14,248][solve_graph.py:197][ERROR][22784] - Invalid id format:
+[2024-10-08 20:11:14,249][solve_graph.py:249][ERROR][26208] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,249][solve_graph.py:249][ERROR][22784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,253][solve_graph.py:249][ERROR][26260] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,274][solve_graph.py:249][ERROR][13344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,277][solve_graph.py:249][ERROR][14832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,280][solve_graph.py:196][ERROR][14104] - Invalid birthday format: 1989-04-05T00:00:00
+[2024-10-08 20:11:14,281][solve_graph.py:197][ERROR][14104] - Invalid id format:
+[2024-10-08 20:11:14,283][solve_graph.py:249][ERROR][27568] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,284][solve_graph.py:249][ERROR][14104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,293][solve_graph.py:249][ERROR][26040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,297][solve_graph.py:196][ERROR][16752] - Invalid birthday format: 1986-11-01T00:00:00
+[2024-10-08 20:11:14,298][solve_graph.py:197][ERROR][16752] - Invalid id format:
+[2024-10-08 20:11:14,300][solve_graph.py:249][ERROR][24520] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,300][solve_graph.py:249][ERROR][16752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,305][solve_graph.py:249][ERROR][2464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,309][solve_graph.py:249][ERROR][25088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,312][solve_graph.py:196][ERROR][22492] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,316][solve_graph.py:196][ERROR][14984] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,316][solve_graph.py:197][ERROR][22492] - Invalid id format:
+[2024-10-08 20:11:14,317][solve_graph.py:197][ERROR][14984] - Invalid id format:
+[2024-10-08 20:11:14,317][solve_graph.py:249][ERROR][22492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,319][solve_graph.py:249][ERROR][17924] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,319][solve_graph.py:249][ERROR][14984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,323][solve_graph.py:249][ERROR][17168] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,328][solve_graph.py:249][ERROR][18736] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,335][solve_graph.py:196][ERROR][26180] - Invalid birthday format: 2001-03-05T00:00:00
+[2024-10-08 20:11:14,336][solve_graph.py:197][ERROR][26180] - Invalid id format:
+[2024-10-08 20:11:14,337][solve_graph.py:249][ERROR][27592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,338][solve_graph.py:249][ERROR][26180] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,346][solve_graph.py:196][ERROR][16532] - Invalid birthday format: 1982-09-13T00:00:00
+[2024-10-08 20:11:14,350][solve_graph.py:249][ERROR][16744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,350][solve_graph.py:197][ERROR][16532] - Invalid id format:
+[2024-10-08 20:11:14,354][solve_graph.py:249][ERROR][21180] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,355][solve_graph.py:249][ERROR][16532] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,359][solve_graph.py:249][ERROR][11308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,363][solve_graph.py:196][ERROR][8492] - Invalid birthday format: 1985-06-21T00:00:00
+[2024-10-08 20:11:14,366][solve_graph.py:197][ERROR][8492] - Invalid id format:
+[2024-10-08 20:11:14,367][solve_graph.py:249][ERROR][6540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,368][solve_graph.py:249][ERROR][8492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,371][solve_graph.py:249][ERROR][23420] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,380][solve_graph.py:249][ERROR][8092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,429][solve_graph.py:249][ERROR][24936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,433][solve_graph.py:196][ERROR][26396] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,434][solve_graph.py:197][ERROR][26396] - Invalid id format:
+[2024-10-08 20:11:14,434][solve_graph.py:249][ERROR][26396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,435][solve_graph.py:249][ERROR][10268] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,444][solve_graph.py:249][ERROR][29452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,448][solve_graph.py:249][ERROR][23192] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,457][solve_graph.py:249][ERROR][15140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,464][solve_graph.py:249][ERROR][19032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,477][solve_graph.py:249][ERROR][17536] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,486][solve_graph.py:196][ERROR][20536] - Invalid birthday format: 1989-04-30T00:00:00
+[2024-10-08 20:11:14,486][solve_graph.py:197][ERROR][20536] - Invalid id format:
+[2024-10-08 20:11:14,491][solve_graph.py:249][ERROR][20536] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,488][solve_graph.py:249][ERROR][14712] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,498][solve_graph.py:249][ERROR][11416] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,502][solve_graph.py:196][ERROR][19564] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:11:14,505][solve_graph.py:197][ERROR][19564] - Invalid id format:
+[2024-10-08 20:11:14,506][solve_graph.py:249][ERROR][19564] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,509][solve_graph.py:249][ERROR][14084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,514][solve_graph.py:249][ERROR][18116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,532][solve_graph.py:249][ERROR][1764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,538][solve_graph.py:249][ERROR][18832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,542][solve_graph.py:249][ERROR][24232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,545][solve_graph.py:249][ERROR][23504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,548][solve_graph.py:249][ERROR][19204] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,553][solve_graph.py:249][ERROR][15464] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,556][solve_graph.py:196][ERROR][28848] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,556][solve_graph.py:197][ERROR][28848] - Invalid id format:
+[2024-10-08 20:11:14,557][solve_graph.py:249][ERROR][28848] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,560][solve_graph.py:249][ERROR][14724] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,563][solve_graph.py:249][ERROR][24640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,566][solve_graph.py:249][ERROR][21016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,570][solve_graph.py:249][ERROR][29368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,573][solve_graph.py:196][ERROR][7916] - Invalid birthday format: 1990-07-05T00:00:00
+[2024-10-08 20:11:14,574][solve_graph.py:197][ERROR][7916] - Invalid id format:
+[2024-10-08 20:11:14,574][solve_graph.py:249][ERROR][7916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,579][solve_graph.py:249][ERROR][24236] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,593][solve_graph.py:249][ERROR][5844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,599][solve_graph.py:249][ERROR][14064] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,603][solve_graph.py:249][ERROR][19052] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,606][solve_graph.py:249][ERROR][25552] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,610][solve_graph.py:249][ERROR][22332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,616][solve_graph.py:249][ERROR][17304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,620][solve_graph.py:249][ERROR][19060] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,628][solve_graph.py:249][ERROR][25856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,630][solve_graph.py:249][ERROR][18676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,641][solve_graph.py:249][ERROR][25092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,645][solve_graph.py:249][ERROR][25108] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,653][solve_graph.py:196][ERROR][20312] - Invalid birthday format: 1981-10-21T00:00:00
+[2024-10-08 20:11:14,653][solve_graph.py:197][ERROR][20312] - Invalid id format:
+[2024-10-08 20:11:14,654][solve_graph.py:249][ERROR][20312] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,655][solve_graph.py:196][ERROR][8160] - Invalid birthday format: 1990-05-10T00:00:00
+[2024-10-08 20:11:14,658][solve_graph.py:197][ERROR][8160] - Invalid id format:
+[2024-10-08 20:11:14,659][solve_graph.py:249][ERROR][22660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,660][solve_graph.py:249][ERROR][8160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,672][solve_graph.py:249][ERROR][16820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,675][solve_graph.py:196][ERROR][11920] - Invalid birthday format: 1992-02-20T00:00:00
+[2024-10-08 20:11:14,677][solve_graph.py:197][ERROR][11920] - Invalid id format:
+[2024-10-08 20:11:14,679][solve_graph.py:249][ERROR][16960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,680][solve_graph.py:249][ERROR][11920] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,685][solve_graph.py:249][ERROR][24592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,691][solve_graph.py:249][ERROR][25112] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,700][solve_graph.py:249][ERROR][26244] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,710][solve_graph.py:196][ERROR][21812] - Invalid birthday format: 1988-10-03T00:00:00
+[2024-10-08 20:11:14,711][solve_graph.py:197][ERROR][21812] - Invalid id format:
+[2024-10-08 20:11:14,711][solve_graph.py:249][ERROR][21812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,717][solve_graph.py:249][ERROR][28688] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,720][solve_graph.py:196][ERROR][9824] - Invalid birthday format: 1991-09-15T00:00:00
+[2024-10-08 20:11:14,721][solve_graph.py:197][ERROR][9824] - Invalid id format:
+[2024-10-08 20:11:14,721][solve_graph.py:249][ERROR][9824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,732][solve_graph.py:249][ERROR][17100] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,736][solve_graph.py:249][ERROR][296] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,742][solve_graph.py:196][ERROR][13348] - Invalid birthday format: 2004-04-15T00:00:00
+[2024-10-08 20:11:14,743][solve_graph.py:197][ERROR][13348] - Invalid id format:
+[2024-10-08 20:11:14,743][solve_graph.py:249][ERROR][13348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,746][solve_graph.py:196][ERROR][28484] - Invalid birthday format: 1994-01-01T00:00:00
+[2024-10-08 20:11:14,746][solve_graph.py:197][ERROR][28484] - Invalid id format:
+[2024-10-08 20:11:14,747][solve_graph.py:249][ERROR][28484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,749][solve_graph.py:249][ERROR][22016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,753][solve_graph.py:249][ERROR][10956] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,763][solve_graph.py:249][ERROR][9412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,765][solve_graph.py:196][ERROR][11080] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,768][solve_graph.py:197][ERROR][11080] - Invalid id format:
+[2024-10-08 20:11:14,770][solve_graph.py:196][ERROR][28556] - Invalid birthday format: 2002-10-25T00:00:00
+[2024-10-08 20:11:14,771][solve_graph.py:249][ERROR][11080] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,772][solve_graph.py:197][ERROR][28556] - Invalid id format:
+[2024-10-08 20:11:14,778][solve_graph.py:249][ERROR][16592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,779][solve_graph.py:249][ERROR][28556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,783][solve_graph.py:249][ERROR][7264] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,787][solve_graph.py:249][ERROR][16572] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,791][solve_graph.py:249][ERROR][25716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,793][solve_graph.py:249][ERROR][19372] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,797][solve_graph.py:249][ERROR][18768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,801][solve_graph.py:249][ERROR][23628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,809][solve_graph.py:249][ERROR][14200] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,818][solve_graph.py:196][ERROR][21404] - Invalid birthday format: 1993-02-04T00:00:00
+[2024-10-08 20:11:14,820][solve_graph.py:197][ERROR][21404] - Invalid id format:
+[2024-10-08 20:11:14,821][solve_graph.py:249][ERROR][21404] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,825][solve_graph.py:249][ERROR][24292] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,829][solve_graph.py:249][ERROR][22348] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,836][solve_graph.py:196][ERROR][29624] - Invalid birthday format: 1988-05-04T00:00:00
+[2024-10-08 20:11:14,837][solve_graph.py:197][ERROR][29624] - Invalid id format:
+[2024-10-08 20:11:14,837][solve_graph.py:249][ERROR][29624] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,843][solve_graph.py:249][ERROR][1592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,850][solve_graph.py:249][ERROR][22176] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,854][solve_graph.py:249][ERROR][23008] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,862][solve_graph.py:249][ERROR][320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,868][solve_graph.py:249][ERROR][25996] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,874][solve_graph.py:196][ERROR][12644] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:14,875][solve_graph.py:197][ERROR][12644] - Invalid id format:
+[2024-10-08 20:11:14,876][solve_graph.py:249][ERROR][12644] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,880][solve_graph.py:249][ERROR][17856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,888][solve_graph.py:249][ERROR][25604] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,893][solve_graph.py:249][ERROR][15668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,899][solve_graph.py:249][ERROR][23524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,907][solve_graph.py:249][ERROR][7544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,912][solve_graph.py:249][ERROR][19888] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,928][solve_graph.py:249][ERROR][18992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,933][solve_graph.py:249][ERROR][27016] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,945][solve_graph.py:196][ERROR][28980] - Invalid birthday format: 1990-02-20T00:00:00
+[2024-10-08 20:11:14,947][solve_graph.py:197][ERROR][28980] - Invalid id format:
+[2024-10-08 20:11:14,948][solve_graph.py:249][ERROR][28980] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,960][solve_graph.py:249][ERROR][17424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,966][solve_graph.py:196][ERROR][5504] - Invalid birthday format: 1990-12-28T00:00:00
+[2024-10-08 20:11:14,969][solve_graph.py:196][ERROR][16940] - Invalid birthday format: 1983-01-11T00:00:00
+[2024-10-08 20:11:14,969][solve_graph.py:197][ERROR][5504] - Invalid id format:
+[2024-10-08 20:11:14,969][solve_graph.py:197][ERROR][16940] - Invalid id format:
+[2024-10-08 20:11:14,970][solve_graph.py:249][ERROR][5504] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,972][solve_graph.py:249][ERROR][16940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,977][solve_graph.py:249][ERROR][29356] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,980][solve_graph.py:249][ERROR][18652] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,985][solve_graph.py:196][ERROR][8084] - Invalid birthday format: 1981-03-01T00:00:00
+[2024-10-08 20:11:14,987][solve_graph.py:197][ERROR][8084] - Invalid id format:
+[2024-10-08 20:11:14,988][solve_graph.py:249][ERROR][8084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,989][solve_graph.py:249][ERROR][18492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,994][solve_graph.py:249][ERROR][9448] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:14,998][solve_graph.py:249][ERROR][25264] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,005][solve_graph.py:249][ERROR][10256] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,009][solve_graph.py:196][ERROR][13428] - Invalid birthday format: 1989-03-25T00:00:00
+[2024-10-08 20:11:15,010][solve_graph.py:197][ERROR][13428] - Invalid id format:
+[2024-10-08 20:11:15,011][solve_graph.py:249][ERROR][13428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,012][solve_graph.py:196][ERROR][25228] - Invalid birthday format: 1980-05-19T00:00:00
+[2024-10-08 20:11:15,014][solve_graph.py:197][ERROR][25228] - Invalid id format:
+[2024-10-08 20:11:15,014][solve_graph.py:249][ERROR][25228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,016][solve_graph.py:196][ERROR][28396] - Invalid birthday format: 1989-05-06T00:00:00
+[2024-10-08 20:11:15,019][solve_graph.py:197][ERROR][28396] - Invalid id format:
+[2024-10-08 20:11:15,021][solve_graph.py:249][ERROR][24976] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,021][solve_graph.py:249][ERROR][28396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,027][solve_graph.py:249][ERROR][27364] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,034][solve_graph.py:249][ERROR][10800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,046][solve_graph.py:249][ERROR][17088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,050][solve_graph.py:249][ERROR][16756] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,054][solve_graph.py:249][ERROR][28024] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,067][solve_graph.py:249][ERROR][28028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,074][solve_graph.py:196][ERROR][20716] - Invalid birthday format: 1983-02-12T00:00:00
+[2024-10-08 20:11:15,074][solve_graph.py:197][ERROR][20716] - Invalid id format:
+[2024-10-08 20:11:15,075][solve_graph.py:249][ERROR][20716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,077][solve_graph.py:249][ERROR][8004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,082][solve_graph.py:196][ERROR][23440] - Invalid birthday format: 1993-08-03T00:00:00
+[2024-10-08 20:11:15,083][solve_graph.py:197][ERROR][23440] - Invalid id format:
+[2024-10-08 20:11:15,084][solve_graph.py:249][ERROR][23440] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,086][solve_graph.py:249][ERROR][21288] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,093][solve_graph.py:249][ERROR][26084] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,096][solve_graph.py:249][ERROR][28908] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,100][solve_graph.py:249][ERROR][24012] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,104][solve_graph.py:249][ERROR][11636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,107][solve_graph.py:196][ERROR][9280] - Invalid birthday format: 1979-10-16T00:00:00
+[2024-10-08 20:11:15,108][solve_graph.py:197][ERROR][9280] - Invalid id format:
+[2024-10-08 20:11:15,109][solve_graph.py:249][ERROR][9280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,117][solve_graph.py:196][ERROR][27400] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:15,120][solve_graph.py:197][ERROR][27400] - Invalid id format:
+[2024-10-08 20:11:15,120][solve_graph.py:249][ERROR][27400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,125][solve_graph.py:249][ERROR][17896] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,129][solve_graph.py:249][ERROR][23748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,133][solve_graph.py:249][ERROR][16056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,140][solve_graph.py:249][ERROR][26968] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,147][solve_graph.py:196][ERROR][28852] - Invalid birthday format: 1994-09-21T00:00:00
+[2024-10-08 20:11:15,147][solve_graph.py:197][ERROR][28852] - Invalid id format:
+[2024-10-08 20:11:15,147][solve_graph.py:249][ERROR][28852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,154][solve_graph.py:249][ERROR][22116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,160][solve_graph.py:249][ERROR][24912] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,164][solve_graph.py:249][ERROR][26328] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,171][solve_graph.py:249][ERROR][29476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,178][solve_graph.py:249][ERROR][22432] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,182][solve_graph.py:249][ERROR][15968] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,186][solve_graph.py:249][ERROR][25740] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,191][solve_graph.py:249][ERROR][13132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,194][solve_graph.py:196][ERROR][23856] - Invalid birthday format: 1992-02-02T00:00:00
+[2024-10-08 20:11:15,196][solve_graph.py:197][ERROR][23856] - Invalid id format:
+[2024-10-08 20:11:15,196][solve_graph.py:249][ERROR][23856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,198][solve_graph.py:249][ERROR][23960] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,202][solve_graph.py:249][ERROR][19412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,205][solve_graph.py:249][ERROR][12548] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,208][solve_graph.py:249][ERROR][10512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,213][solve_graph.py:249][ERROR][27556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,216][solve_graph.py:249][ERROR][28116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,219][solve_graph.py:249][ERROR][28764] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,222][solve_graph.py:196][ERROR][8900] - Invalid birthday format: 1981-12-10T00:00:00
+[2024-10-08 20:11:15,222][solve_graph.py:197][ERROR][8900] - Invalid id format:
+[2024-10-08 20:11:15,223][solve_graph.py:249][ERROR][8900] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,227][solve_graph.py:196][ERROR][11820] - Invalid birthday format: 1992-04-19T00:00:00
+[2024-10-08 20:11:15,227][solve_graph.py:197][ERROR][11820] - Invalid id format:
+[2024-10-08 20:11:15,227][solve_graph.py:249][ERROR][11820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,232][solve_graph.py:196][ERROR][18156] - Invalid birthday format: 1985-03-09T00:00:00
+[2024-10-08 20:11:15,233][solve_graph.py:197][ERROR][18156] - Invalid id format:
+[2024-10-08 20:11:15,236][solve_graph.py:249][ERROR][18156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,240][solve_graph.py:249][ERROR][19172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,246][solve_graph.py:249][ERROR][12172] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,250][solve_graph.py:249][ERROR][19420] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,254][solve_graph.py:249][ERROR][28860] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,258][solve_graph.py:249][ERROR][26404] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,266][solve_graph.py:249][ERROR][23784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,270][solve_graph.py:249][ERROR][2484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,275][solve_graph.py:249][ERROR][28468] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,280][solve_graph.py:249][ERROR][25984] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,283][solve_graph.py:249][ERROR][8364] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,287][solve_graph.py:249][ERROR][29688] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,290][solve_graph.py:249][ERROR][16412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,294][solve_graph.py:249][ERROR][21744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,297][solve_graph.py:196][ERROR][24008] - Invalid birthday format: 1990-09-23T00:00:00
+[2024-10-08 20:11:15,298][solve_graph.py:197][ERROR][24008] - Invalid id format:
+[2024-10-08 20:11:15,298][solve_graph.py:249][ERROR][24008] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,301][solve_graph.py:249][ERROR][26028] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,310][solve_graph.py:249][ERROR][26580] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,314][solve_graph.py:249][ERROR][16032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,321][solve_graph.py:249][ERROR][11708] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,329][solve_graph.py:249][ERROR][27584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,334][solve_graph.py:249][ERROR][14760] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,339][solve_graph.py:249][ERROR][4212] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,344][solve_graph.py:196][ERROR][9160] - Invalid birthday format: 1976-08-23T00:00:00
+[2024-10-08 20:11:15,345][solve_graph.py:197][ERROR][9160] - Invalid id format:
+[2024-10-08 20:11:15,345][solve_graph.py:249][ERROR][9160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,347][solve_graph.py:196][ERROR][3640] - Invalid birthday format: 1982-11-18T00:00:00
+[2024-10-08 20:11:15,349][solve_graph.py:197][ERROR][3640] - Invalid id format:
+[2024-10-08 20:11:15,349][solve_graph.py:249][ERROR][3640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,358][solve_graph.py:249][ERROR][11996] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,363][solve_graph.py:249][ERROR][20344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,372][solve_graph.py:249][ERROR][25412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,379][solve_graph.py:249][ERROR][15460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,384][solve_graph.py:196][ERROR][21132] - Invalid birthday format: 1980-04-03T00:00:00
+[2024-10-08 20:11:15,386][solve_graph.py:197][ERROR][21132] - Invalid id format:
+[2024-10-08 20:11:15,388][solve_graph.py:249][ERROR][14452] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,389][solve_graph.py:249][ERROR][21132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,393][solve_graph.py:249][ERROR][11240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,398][solve_graph.py:196][ERROR][29316] - Invalid birthday format: 1982-01-13T00:00:00
+[2024-10-08 20:11:15,401][solve_graph.py:196][ERROR][26944] - Invalid birthday format: 2001-10-01T00:00:00
+[2024-10-08 20:11:15,401][solve_graph.py:197][ERROR][29316] - Invalid id format:
+[2024-10-08 20:11:15,401][solve_graph.py:197][ERROR][26944] - Invalid id format:
+[2024-10-08 20:11:15,402][solve_graph.py:249][ERROR][29316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,402][solve_graph.py:249][ERROR][26944] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,408][solve_graph.py:196][ERROR][17940] - Invalid birthday format: 1984-03-17T00:00:00
+[2024-10-08 20:11:15,409][solve_graph.py:197][ERROR][17940] - Invalid id format:
+[2024-10-08 20:11:15,411][solve_graph.py:249][ERROR][17940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,414][solve_graph.py:196][ERROR][29492] - Invalid birthday format: 1982-09-26T00:00:00
+[2024-10-08 20:11:15,415][solve_graph.py:197][ERROR][29492] - Invalid id format:
+[2024-10-08 20:11:15,417][solve_graph.py:249][ERROR][22304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,418][solve_graph.py:249][ERROR][29492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,421][solve_graph.py:196][ERROR][18044] - Invalid birthday format: 1976-10-11T00:00:00
+[2024-10-08 20:11:15,425][solve_graph.py:196][ERROR][22600] - Invalid birthday format: 1986-04-23T00:00:00
+[2024-10-08 20:11:15,425][solve_graph.py:197][ERROR][18044] - Invalid id format:
+[2024-10-08 20:11:15,426][solve_graph.py:197][ERROR][22600] - Invalid id format:
+[2024-10-08 20:11:15,426][solve_graph.py:249][ERROR][18044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,428][solve_graph.py:249][ERROR][20804] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,428][solve_graph.py:249][ERROR][22600] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,431][solve_graph.py:249][ERROR][23620] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,438][solve_graph.py:196][ERROR][27808] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:15,439][solve_graph.py:197][ERROR][27808] - Invalid id format:
+[2024-10-08 20:11:15,439][solve_graph.py:249][ERROR][27808] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,442][solve_graph.py:249][ERROR][12048] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,454][solve_graph.py:249][ERROR][25632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,459][solve_graph.py:249][ERROR][16508] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,464][solve_graph.py:249][ERROR][26704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,473][solve_graph.py:249][ERROR][10988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,479][solve_graph.py:249][ERROR][16832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,487][solve_graph.py:249][ERROR][216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,516][solve_graph.py:249][ERROR][14856] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,547][solve_graph.py:196][ERROR][24296] - Invalid birthday format: 1981-04-14T00:00:00
+[2024-10-08 20:11:15,547][solve_graph.py:197][ERROR][24296] - Invalid id format:
+[2024-10-08 20:11:15,547][solve_graph.py:249][ERROR][24296] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,553][solve_graph.py:249][ERROR][23540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,559][solve_graph.py:249][ERROR][25832] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,577][solve_graph.py:196][ERROR][28032] - Invalid birthday format: 1994-09-11T00:00:00
+[2024-10-08 20:11:15,578][solve_graph.py:197][ERROR][28032] - Invalid id format:
+[2024-10-08 20:11:15,579][solve_graph.py:249][ERROR][28032] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,588][solve_graph.py:249][ERROR][25916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,594][solve_graph.py:249][ERROR][17396] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,597][solve_graph.py:249][ERROR][24768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,601][solve_graph.py:249][ERROR][20004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,606][solve_graph.py:196][ERROR][24556] - Invalid birthday format: 1997-05-27T00:00:00
+[2024-10-08 20:11:15,607][solve_graph.py:197][ERROR][24556] - Invalid id format:
+[2024-10-08 20:11:15,607][solve_graph.py:249][ERROR][24556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,611][solve_graph.py:249][ERROR][17220] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,614][solve_graph.py:196][ERROR][11344] - Invalid birthday format: 1994-09-04T00:00:00
+[2024-10-08 20:11:15,614][solve_graph.py:197][ERROR][11344] - Invalid id format:
+[2024-10-08 20:11:15,614][solve_graph.py:249][ERROR][11344] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,621][solve_graph.py:249][ERROR][27652] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,628][solve_graph.py:249][ERROR][29232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,633][solve_graph.py:249][ERROR][25476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,646][solve_graph.py:249][ERROR][18920] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,653][solve_graph.py:249][ERROR][10124] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,658][solve_graph.py:196][ERROR][24104] - Invalid birthday format: 1999-08-19T00:00:00
+[2024-10-08 20:11:15,658][solve_graph.py:197][ERROR][24104] - Invalid id format:
+[2024-10-08 20:11:15,658][solve_graph.py:249][ERROR][24104] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,666][solve_graph.py:249][ERROR][27744] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,671][solve_graph.py:249][ERROR][22436] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,675][solve_graph.py:249][ERROR][23116] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,681][solve_graph.py:249][ERROR][21852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,687][solve_graph.py:249][ERROR][1992] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,688][solve_graph.py:249][ERROR][15008] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,697][solve_graph.py:196][ERROR][27072] - Invalid birthday format: 1999-07-30T00:00:00
+[2024-10-08 20:11:15,697][solve_graph.py:197][ERROR][27072] - Invalid id format:
+[2024-10-08 20:11:15,698][solve_graph.py:249][ERROR][27072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,701][solve_graph.py:249][ERROR][25516] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,705][solve_graph.py:249][ERROR][3704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,711][solve_graph.py:249][ERROR][17580] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,715][solve_graph.py:196][ERROR][17512] - Invalid birthday format: 1979-10-11T00:00:00
+[2024-10-08 20:11:15,716][solve_graph.py:197][ERROR][17512] - Invalid id format:
+[2024-10-08 20:11:15,716][solve_graph.py:249][ERROR][17512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,719][solve_graph.py:249][ERROR][13500] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,721][solve_graph.py:196][ERROR][23224] - Invalid birthday format: 1995-03-03T00:00:00
+[2024-10-08 20:11:15,723][solve_graph.py:197][ERROR][23224] - Invalid id format:
+[2024-10-08 20:11:15,725][solve_graph.py:249][ERROR][6908] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,726][solve_graph.py:249][ERROR][23224] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,728][solve_graph.py:196][ERROR][24940] - Invalid birthday format: 1989-01-08T00:00:00
+[2024-10-08 20:11:15,731][solve_graph.py:197][ERROR][24940] - Invalid id format:
+[2024-10-08 20:11:15,733][solve_graph.py:249][ERROR][29376] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,734][solve_graph.py:249][ERROR][24940] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,735][solve_graph.py:249][ERROR][20864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,739][solve_graph.py:249][ERROR][26292] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,747][solve_graph.py:249][ERROR][28916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,750][solve_graph.py:196][ERROR][10876] - Invalid birthday format: 1971-01-29T00:00:00
+[2024-10-08 20:11:15,750][solve_graph.py:197][ERROR][10876] - Invalid id format:
+[2024-10-08 20:11:15,752][solve_graph.py:249][ERROR][17636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,753][solve_graph.py:249][ERROR][10876] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,756][solve_graph.py:249][ERROR][25944] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,762][solve_graph.py:249][ERROR][22100] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,767][solve_graph.py:196][ERROR][20368] - Invalid birthday format: 1990-01-30T00:00:00
+[2024-10-08 20:11:15,768][solve_graph.py:197][ERROR][20368] - Invalid id format:
+[2024-10-08 20:11:15,770][solve_graph.py:196][ERROR][15948] - Invalid birthday format: 1993-03-16T00:00:00
+[2024-10-08 20:11:15,770][solve_graph.py:249][ERROR][20368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,771][solve_graph.py:197][ERROR][15948] - Invalid id format:
+[2024-10-08 20:11:15,775][solve_graph.py:196][ERROR][19932] - Invalid birthday format: 1990-10-27T00:00:00
+[2024-10-08 20:11:15,776][solve_graph.py:249][ERROR][15948] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,777][solve_graph.py:197][ERROR][19932] - Invalid id format:
+[2024-10-08 20:11:15,781][solve_graph.py:196][ERROR][19380] - Invalid birthday format: 1990-12-31T00:00:00
+[2024-10-08 20:11:15,781][solve_graph.py:249][ERROR][19932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,783][solve_graph.py:249][ERROR][24356] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,784][solve_graph.py:197][ERROR][19380] - Invalid id format:
+[2024-10-08 20:11:15,787][solve_graph.py:196][ERROR][16320] - Invalid birthday format: 1978-07-25T00:00:00
+[2024-10-08 20:11:15,787][solve_graph.py:249][ERROR][19380] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,791][solve_graph.py:249][ERROR][18596] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,791][solve_graph.py:197][ERROR][16320] - Invalid id format:
+[2024-10-08 20:11:15,794][solve_graph.py:249][ERROR][16320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,795][solve_graph.py:249][ERROR][17056] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,803][solve_graph.py:249][ERROR][5768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,807][solve_graph.py:249][ERROR][17784] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,812][solve_graph.py:249][ERROR][24648] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,816][solve_graph.py:249][ERROR][26068] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,822][solve_graph.py:249][ERROR][26700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,826][solve_graph.py:196][ERROR][15524] - Invalid birthday format: 1991-12-22T00:00:00
+[2024-10-08 20:11:15,827][solve_graph.py:197][ERROR][15524] - Invalid id format:
+[2024-10-08 20:11:15,827][solve_graph.py:249][ERROR][15524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,832][solve_graph.py:249][ERROR][11624] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,838][solve_graph.py:249][ERROR][29576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,843][solve_graph.py:249][ERROR][20664] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,846][solve_graph.py:196][ERROR][28216] - Invalid birthday format: 1998-05-06T00:00:00
+[2024-10-08 20:11:15,847][solve_graph.py:197][ERROR][28216] - Invalid id format:
+[2024-10-08 20:11:15,847][solve_graph.py:249][ERROR][28216] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,848][solve_graph.py:196][ERROR][27656] - Invalid birthday format: 1986-09-11T00:00:00
+[2024-10-08 20:11:15,850][solve_graph.py:197][ERROR][27656] - Invalid id format:
+[2024-10-08 20:11:15,850][solve_graph.py:249][ERROR][27656] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,853][solve_graph.py:249][ERROR][25240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,856][solve_graph.py:249][ERROR][21932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,859][solve_graph.py:249][ERROR][23068] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,862][solve_graph.py:249][ERROR][26676] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,865][solve_graph.py:196][ERROR][3192] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:15,865][solve_graph.py:197][ERROR][3192] - Invalid id format:
+[2024-10-08 20:11:15,866][solve_graph.py:249][ERROR][3192] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,867][solve_graph.py:249][ERROR][10864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,871][solve_graph.py:249][ERROR][25576] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,875][solve_graph.py:249][ERROR][12544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,878][solve_graph.py:196][ERROR][15248] - Invalid birthday format: 1980-11-29T00:00:00
+[2024-10-08 20:11:15,878][solve_graph.py:197][ERROR][15248] - Invalid id format:
+[2024-10-08 20:11:15,879][solve_graph.py:249][ERROR][15248] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,880][solve_graph.py:249][ERROR][29572] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,883][solve_graph.py:249][ERROR][29020] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,887][solve_graph.py:196][ERROR][25060] - Invalid birthday format: 1992-02-19T00:00:00
+[2024-10-08 20:11:15,887][solve_graph.py:197][ERROR][25060] - Invalid id format:
+[2024-10-08 20:11:15,887][solve_graph.py:249][ERROR][25060] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,894][solve_graph.py:196][ERROR][5840] - Invalid birthday format: 2002-08-04T00:00:00
+[2024-10-08 20:11:15,895][solve_graph.py:197][ERROR][5840] - Invalid id format:
+[2024-10-08 20:11:15,895][solve_graph.py:249][ERROR][5840] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,898][solve_graph.py:196][ERROR][844] - Invalid birthday format: 1986-08-29T00:00:00
+[2024-10-08 20:11:15,898][solve_graph.py:197][ERROR][844] - Invalid id format:
+[2024-10-08 20:11:15,899][solve_graph.py:249][ERROR][844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,902][solve_graph.py:249][ERROR][5836] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,906][solve_graph.py:249][ERROR][16304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,909][solve_graph.py:249][ERROR][23460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,914][solve_graph.py:249][ERROR][8948] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,918][solve_graph.py:196][ERROR][9516] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:15,919][solve_graph.py:197][ERROR][9516] - Invalid id format:
+[2024-10-08 20:11:15,919][solve_graph.py:249][ERROR][9516] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,922][solve_graph.py:249][ERROR][14640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,927][solve_graph.py:249][ERROR][28360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,928][solve_graph.py:249][ERROR][5852] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,933][solve_graph.py:196][ERROR][10716] - Invalid birthday format: 2001-11-08T00:00:00
+[2024-10-08 20:11:15,933][solve_graph.py:197][ERROR][10716] - Invalid id format:
+[2024-10-08 20:11:15,934][solve_graph.py:249][ERROR][10716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,937][solve_graph.py:249][ERROR][29332] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,941][solve_graph.py:196][ERROR][21748] - Invalid birthday format: 1986-09-09T00:00:00
+[2024-10-08 20:11:15,943][solve_graph.py:196][ERROR][29044] - Invalid birthday format: 1994-06-10T00:00:00
+[2024-10-08 20:11:15,943][solve_graph.py:197][ERROR][21748] - Invalid id format:
+[2024-10-08 20:11:15,944][solve_graph.py:197][ERROR][29044] - Invalid id format:
+[2024-10-08 20:11:15,945][solve_graph.py:249][ERROR][21748] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,946][solve_graph.py:196][ERROR][14800] - Invalid birthday format: 1990-01-14T00:00:00
+[2024-10-08 20:11:15,946][solve_graph.py:249][ERROR][29044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,949][solve_graph.py:249][ERROR][14716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,949][solve_graph.py:197][ERROR][14800] - Invalid id format:
+[2024-10-08 20:11:15,954][solve_graph.py:249][ERROR][14800] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,957][solve_graph.py:196][ERROR][22448] - Invalid birthday format: 1988-02-26T00:00:00
+[2024-10-08 20:11:15,960][solve_graph.py:249][ERROR][5368] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,961][solve_graph.py:197][ERROR][22448] - Invalid id format:
+[2024-10-08 20:11:15,966][solve_graph.py:249][ERROR][22448] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,968][solve_graph.py:196][ERROR][24932] - Invalid birthday format: 1989-05-18T00:00:00
+[2024-10-08 20:11:15,972][solve_graph.py:197][ERROR][24932] - Invalid id format:
+[2024-10-08 20:11:15,976][solve_graph.py:249][ERROR][10968] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,977][solve_graph.py:249][ERROR][24932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,984][solve_graph.py:249][ERROR][13304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,988][solve_graph.py:249][ERROR][23680] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,992][solve_graph.py:249][ERROR][24700] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:15,998][solve_graph.py:249][ERROR][28728] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,001][solve_graph.py:196][ERROR][23012] - Invalid birthday format: 1981-01-17T00:00:00
+[2024-10-08 20:11:16,003][solve_graph.py:197][ERROR][23012] - Invalid id format:
+[2024-10-08 20:11:16,005][solve_graph.py:196][ERROR][24092] - Invalid birthday format: 1981-04-29T00:00:00
+[2024-10-08 20:11:16,006][solve_graph.py:249][ERROR][23012] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,007][solve_graph.py:197][ERROR][24092] - Invalid id format:
+[2024-10-08 20:11:16,008][solve_graph.py:249][ERROR][24092] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,016][solve_graph.py:196][ERROR][18824] - Invalid birthday format: 1981-09-13T00:00:00
+[2024-10-08 20:11:16,017][solve_graph.py:197][ERROR][18824] - Invalid id format:
+[2024-10-08 20:11:16,018][solve_graph.py:249][ERROR][3484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,018][solve_graph.py:249][ERROR][18824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,026][solve_graph.py:249][ERROR][7240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,032][solve_graph.py:249][ERROR][24284] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,038][solve_graph.py:249][ERROR][20904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,044][solve_graph.py:196][ERROR][24660] - Invalid birthday format: 1985-01-20T00:00:00
+[2024-10-08 20:11:16,044][solve_graph.py:197][ERROR][24660] - Invalid id format:
+[2024-10-08 20:11:16,045][solve_graph.py:249][ERROR][24660] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,050][solve_graph.py:249][ERROR][28704] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,054][solve_graph.py:249][ERROR][15264] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,058][solve_graph.py:249][ERROR][25952] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,063][solve_graph.py:249][ERROR][23716] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,066][solve_graph.py:196][ERROR][28356] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:16,066][solve_graph.py:197][ERROR][28356] - Invalid id format:
+[2024-10-08 20:11:16,067][solve_graph.py:249][ERROR][28356] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,072][solve_graph.py:249][ERROR][4988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,081][solve_graph.py:196][ERROR][27320] - Invalid birthday format: 2006-03-04T00:00:00
+[2024-10-08 20:11:16,082][solve_graph.py:197][ERROR][27320] - Invalid id format:
+[2024-10-08 20:11:16,085][solve_graph.py:249][ERROR][9544] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,086][solve_graph.py:249][ERROR][27320] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,091][solve_graph.py:249][ERROR][20252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,096][solve_graph.py:249][ERROR][17232] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,099][solve_graph.py:249][ERROR][29360] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,102][solve_graph.py:196][ERROR][25844] - Invalid birthday format: 1983-02-11T00:00:00
+[2024-10-08 20:11:16,102][solve_graph.py:197][ERROR][25844] - Invalid id format:
+[2024-10-08 20:11:16,104][solve_graph.py:249][ERROR][23920] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,104][solve_graph.py:249][ERROR][25844] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,110][solve_graph.py:196][ERROR][18276] - Invalid birthday format: 1994-10-25T00:00:00
+[2024-10-08 20:11:16,114][solve_graph.py:249][ERROR][27816] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,114][solve_graph.py:197][ERROR][18276] - Invalid id format:
+[2024-10-08 20:11:16,116][solve_graph.py:196][ERROR][24484] - Invalid birthday format: 1989-11-09T00:00:00
+[2024-10-08 20:11:16,117][solve_graph.py:249][ERROR][18276] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,119][solve_graph.py:249][ERROR][20476] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,119][solve_graph.py:197][ERROR][24484] - Invalid id format:
+[2024-10-08 20:11:16,125][solve_graph.py:249][ERROR][15988] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,125][solve_graph.py:249][ERROR][24484] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,129][solve_graph.py:249][ERROR][11492] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,132][solve_graph.py:249][ERROR][19668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,139][solve_graph.py:249][ERROR][22864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,150][solve_graph.py:249][ERROR][400] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,155][solve_graph.py:249][ERROR][9404] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,163][solve_graph.py:249][ERROR][21228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,168][solve_graph.py:249][ERROR][7072] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,181][solve_graph.py:249][ERROR][17316] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,184][solve_graph.py:196][ERROR][23820] - Invalid birthday format: 1991-12-26T00:00:00
+[2024-10-08 20:11:16,187][solve_graph.py:197][ERROR][23820] - Invalid id format:
+[2024-10-08 20:11:16,187][solve_graph.py:249][ERROR][23820] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,194][solve_graph.py:196][ERROR][19540] - Invalid birthday format: 2004-04-01T00:00:00
+[2024-10-08 20:11:16,196][solve_graph.py:197][ERROR][19540] - Invalid id format:
+[2024-10-08 20:11:16,196][solve_graph.py:249][ERROR][19540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,202][solve_graph.py:249][ERROR][16156] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,211][solve_graph.py:196][ERROR][23596] - Invalid birthday format: 2000-03-27T00:00:00
+[2024-10-08 20:11:16,218][solve_graph.py:249][ERROR][21556] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,224][solve_graph.py:249][ERROR][18932] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,229][solve_graph.py:196][ERROR][29428] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:16,235][solve_graph.py:249][ERROR][17552] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,239][solve_graph.py:249][ERROR][20460] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,240][solve_graph.py:196][ERROR][19628] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:16,243][solve_graph.py:196][ERROR][26668] - Invalid birthday format: 1988-10-28T00:00:00
+[2024-10-08 20:11:16,244][solve_graph.py:249][ERROR][27288] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,247][solve_graph.py:196][ERROR][12824] - Invalid birthday format: 1972-05-20T00:00:00
+[2024-10-08 20:11:16,254][solve_graph.py:249][ERROR][16160] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,257][solve_graph.py:196][ERROR][21864] - Invalid birthday format: 1991-05-01T00:00:00
+[2024-10-08 20:11:16,260][solve_graph.py:249][ERROR][4592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,262][solve_graph.py:196][ERROR][22636] - Invalid birthday format: 1993-02-08T00:00:00
+[2024-10-08 20:11:16,266][solve_graph.py:196][ERROR][10668] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:16,269][solve_graph.py:196][ERROR][18592] - Invalid birthday format: 1983-11-04T00:00:00
+[2024-10-08 20:11:16,271][solve_graph.py:249][ERROR][19624] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,273][solve_graph.py:196][ERROR][18680] - Invalid birthday format: 1992-11-05T00:00:00
+[2024-10-08 20:11:16,278][solve_graph.py:249][ERROR][18240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,289][solve_graph.py:196][ERROR][18900] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:16,964][solve_graph.py:197][ERROR][23596] - Invalid id format:
+[2024-10-08 20:11:16,967][solve_graph.py:197][ERROR][29428] - Invalid id format:
+[2024-10-08 20:11:16,971][solve_graph.py:197][ERROR][19628] - Invalid id format:
+[2024-10-08 20:11:16,974][solve_graph.py:249][ERROR][3304] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,975][solve_graph.py:197][ERROR][26668] - Invalid id format:
+[2024-10-08 20:11:16,976][solve_graph.py:249][ERROR][24140] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,978][solve_graph.py:197][ERROR][12824] - Invalid id format:
+[2024-10-08 20:11:16,980][solve_graph.py:197][ERROR][21864] - Invalid id format:
+[2024-10-08 20:11:16,982][solve_graph.py:197][ERROR][22636] - Invalid id format:
+[2024-10-08 20:11:16,984][solve_graph.py:196][ERROR][27812] - Invalid birthday format: 1980-08-07T00:00:00
+[2024-10-08 20:11:16,984][solve_graph.py:197][ERROR][10668] - Invalid id format:
+[2024-10-08 20:11:16,986][solve_graph.py:196][ERROR][7600] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:16,986][solve_graph.py:197][ERROR][18592] - Invalid id format:
+[2024-10-08 20:11:16,989][solve_graph.py:197][ERROR][18680] - Invalid id format:
+[2024-10-08 20:11:16,991][solve_graph.py:197][ERROR][18900] - Invalid id format:
+[2024-10-08 20:11:16,993][solve_graph.py:249][ERROR][8736] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,994][solve_graph.py:249][ERROR][23596] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,994][solve_graph.py:249][ERROR][29428] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,995][solve_graph.py:249][ERROR][19628] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,998][solve_graph.py:249][ERROR][20776] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,998][solve_graph.py:249][ERROR][26668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:16,999][solve_graph.py:249][ERROR][12824] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,002][solve_graph.py:249][ERROR][21864] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,002][solve_graph.py:249][ERROR][22636] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,003][solve_graph.py:197][ERROR][27812] - Invalid id format:
+[2024-10-08 20:11:17,003][solve_graph.py:249][ERROR][10668] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,004][solve_graph.py:197][ERROR][7600] - Invalid id format:
+[2024-10-08 20:11:17,004][solve_graph.py:249][ERROR][18592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,005][solve_graph.py:249][ERROR][18680] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,005][solve_graph.py:249][ERROR][18900] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,019][solve_graph.py:196][ERROR][28524] - Invalid birthday format: 1988-03-02T00:00:00
+[2024-10-08 20:11:17,031][solve_graph.py:249][ERROR][29424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,032][solve_graph.py:249][ERROR][27812] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,034][solve_graph.py:249][ERROR][7600] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,044][solve_graph.py:249][ERROR][22088] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,044][solve_graph.py:197][ERROR][28524] - Invalid id format:
+[2024-10-08 20:11:17,047][solve_graph.py:196][ERROR][17252] - Invalid birthday format: 1990-01-01T00:00:00
+[2024-10-08 20:11:17,050][solve_graph.py:249][ERROR][20240] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,054][solve_graph.py:249][ERROR][8696] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,059][solve_graph.py:249][ERROR][11128] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,062][solve_graph.py:249][ERROR][15096] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,065][solve_graph.py:249][ERROR][28524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,067][solve_graph.py:197][ERROR][17252] - Invalid id format:
+[2024-10-08 20:11:17,076][solve_graph.py:196][ERROR][26228] - Invalid birthday format: 1978-12-19T00:00:00
+[2024-10-08 20:11:17,088][solve_graph.py:249][ERROR][17252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,092][solve_graph.py:249][ERROR][15512] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,095][solve_graph.py:249][ERROR][21684] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,097][solve_graph.py:197][ERROR][26228] - Invalid id format:
+[2024-10-08 20:11:17,112][solve_graph.py:249][ERROR][26228] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,114][solve_graph.py:249][ERROR][19584] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,117][solve_graph.py:196][ERROR][25972] - Invalid birthday format: 1983-12-08T00:00:00
+[2024-10-08 20:11:17,121][solve_graph.py:249][ERROR][22936] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,124][solve_graph.py:197][ERROR][25972] - Invalid id format:
+[2024-10-08 20:11:17,128][solve_graph.py:249][ERROR][28472] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,128][solve_graph.py:249][ERROR][25972] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,130][solve_graph.py:249][ERROR][16252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,135][solve_graph.py:249][ERROR][23752] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,143][solve_graph.py:249][ERROR][540] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,148][solve_graph.py:196][ERROR][18040] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:17,149][solve_graph.py:197][ERROR][18040] - Invalid id format:
+[2024-10-08 20:11:17,150][solve_graph.py:249][ERROR][18040] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,157][solve_graph.py:196][ERROR][17964] - Invalid birthday format: 1983-07-05T00:00:00
+[2024-10-08 20:11:17,159][solve_graph.py:197][ERROR][17964] - Invalid id format:
+[2024-10-08 20:11:17,161][solve_graph.py:249][ERROR][17964] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,166][solve_graph.py:249][ERROR][6252] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,173][solve_graph.py:249][ERROR][27336] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,183][solve_graph.py:249][ERROR][27916] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,189][solve_graph.py:249][ERROR][4816] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,198][solve_graph.py:249][ERROR][29632] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,200][solve_graph.py:249][ERROR][25524] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,205][solve_graph.py:249][ERROR][21720] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,210][solve_graph.py:249][ERROR][15280] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,212][solve_graph.py:249][ERROR][12592] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,217][solve_graph.py:196][ERROR][26828] - Invalid birthday format: 1993-01-01T00:00:00
+[2024-10-08 20:11:17,218][solve_graph.py:197][ERROR][26828] - Invalid id format:
+[2024-10-08 20:11:17,220][solve_graph.py:249][ERROR][14308] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,220][solve_graph.py:249][ERROR][26828] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,222][solve_graph.py:249][ERROR][25568] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,230][solve_graph.py:249][ERROR][17044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,234][solve_graph.py:249][ERROR][14732] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,238][solve_graph.py:249][ERROR][18412] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,243][solve_graph.py:249][ERROR][5044] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,245][solve_graph.py:249][ERROR][21004] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,249][solve_graph.py:249][ERROR][29288] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,252][solve_graph.py:196][ERROR][21768] - Invalid birthday format: 1986-12-17T00:00:00
+[2024-10-08 20:11:17,253][solve_graph.py:197][ERROR][21768] - Invalid id format:
+[2024-10-08 20:11:17,254][solve_graph.py:249][ERROR][28640] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,255][solve_graph.py:249][ERROR][21768] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,258][solve_graph.py:249][ERROR][5928] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,262][solve_graph.py:196][ERROR][19424] - Invalid birthday format: 1981-05-20T00:00:00
+[2024-10-08 20:11:17,262][solve_graph.py:197][ERROR][19424] - Invalid id format:
+[2024-10-08 20:11:17,263][solve_graph.py:249][ERROR][19424] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,265][solve_graph.py:249][ERROR][15904] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:11:17,270][solve_graph.py:249][ERROR][26132] - create_seeker_dataList error: unsupported operand type(s) for /: 'str' and 'int'
+[2024-10-08 20:19:53,072][solve_graph.py:98][ERROR][20004] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:19:55,961][solve_graph.py:98][ERROR][13344] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:23:40,153][solve_graph.py:72][ERROR][15620] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:23:42,127][solve_graph.py:72][ERROR][21260] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:24:56,786][app.py:35][ERROR][16832] - Failed to rollover log file: [WinError 32] 另一个程序正在使用此文件,进程无法访问。: 'E:\\task1\\mendunr_project\\logs\\flask.log' -> 'E:\\task1\\mendunr_project\\logs\\flask.log.2024-10-08'
+[2024-10-08 20:39:27,888][solve_graph.py:98][ERROR][16304] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:40:03,285][solve_graph.py:98][ERROR][1404] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:40:07,487][solve_graph.py:98][ERROR][1616] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:40:22,265][solve_graph.py:98][ERROR][26484] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-08 20:48:51,669][solve_graph.py:98][ERROR][28216] - llm_client error: invalid character in identifier (<unknown>, line 1)

+ 16 - 0
logs/flask.log.2024-10-09

@@ -0,0 +1,16 @@
+[2024-10-09 16:03:17,081][app.py:34][ERROR][7224] - Failed to rollover log file: [WinError 32] 另一个程序正在使用此文件,进程无法访问。: 'E:\\task1\\mendunr_project\\logs\\flask.log' -> 'E:\\task1\\mendunr_project\\logs\\flask.log.2024-10-09'
+[2024-10-09 18:22:34,451][solve_graph.py:100][ERROR][19120] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:22:38,772][solve_graph.py:100][ERROR][19120] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:22:42,909][solve_graph.py:126][ERROR][19120] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:23:00,876][solve_graph.py:100][ERROR][18820] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:23:06,115][solve_graph.py:100][ERROR][18820] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:23:14,323][solve_graph.py:126][ERROR][18820] - address_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:23:20,898][solve_graph.py:100][ERROR][18820] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:33:29,746][solve_graph.py:100][ERROR][20216] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:33:54,584][solve_graph.py:100][ERROR][4180] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:33:57,845][solve_graph.py:100][ERROR][4180] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:34:08,467][solve_graph.py:126][ERROR][4180] - address_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:34:14,297][solve_graph.py:100][ERROR][4180] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:34:47,696][solve_graph.py:100][ERROR][10348] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:34:52,081][solve_graph.py:100][ERROR][10348] - llm_client error: invalid character in identifier (<unknown>, line 1)
+[2024-10-09 18:35:00,462][solve_graph.py:126][ERROR][10348] - address_client error: invalid character in identifier (<unknown>, line 1)

File diff ditekan karena terlalu besar
+ 68 - 0
logs/flask.log.2024-10-10


Beberapa file tidak ditampilkan karena terlalu banyak file yang berubah dalam diff ini