diff --git a/EOM.Client.TopSkyHotelManagementSystem.sln b/EOM.Client.TopSkyHotelManagementSystem.sln index c877a7bcf5c776c1a24a497afc488cf0bc084d09..9858e69e58c3e68608ea19efb8012496801c79bb 100644 --- a/EOM.Client.TopSkyHotelManagementSystem.sln +++ b/EOM.Client.TopSkyHotelManagementSystem.sln @@ -22,6 +22,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.FormU EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Shared", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.Shared\EOM.TSHotelManagement.Shared.csproj", "{1A37446C-A721-4507-89B5-7BFF6F66A004}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Common.Contract", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.Common.Contract\EOM.TSHotelManagement.Common.Contract.csproj", "{7E8046FD-4CB3-4BBC-8ADD-E27FE3DBBB55}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Migration", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.Migration\EOM.TSHotelManagement.Migration.csproj", "{A1A986E0-E59D-4913-B63E-D965453B8CC0}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -60,6 +64,14 @@ Global {1A37446C-A721-4507-89B5-7BFF6F66A004}.Debug|Any CPU.Build.0 = Debug|Any CPU {1A37446C-A721-4507-89B5-7BFF6F66A004}.Release|Any CPU.ActiveCfg = Release|Any CPU {1A37446C-A721-4507-89B5-7BFF6F66A004}.Release|Any CPU.Build.0 = Release|Any CPU + {7E8046FD-4CB3-4BBC-8ADD-E27FE3DBBB55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7E8046FD-4CB3-4BBC-8ADD-E27FE3DBBB55}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7E8046FD-4CB3-4BBC-8ADD-E27FE3DBBB55}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7E8046FD-4CB3-4BBC-8ADD-E27FE3DBBB55}.Release|Any CPU.Build.0 = Release|Any CPU + {A1A986E0-E59D-4913-B63E-D965453B8CC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A1A986E0-E59D-4913-B63E-D965453B8CC0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A1A986E0-E59D-4913-B63E-D965453B8CC0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A1A986E0-E59D-4913-B63E-D965453B8CC0}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -73,6 +85,8 @@ Global {781CEE04-DDB4-4037-8175-9A6548716871} = {3B8902EC-CAB9-406A-AAF7-24DABD885AC0} {D89E76F5-007B-4915-91A8-265CCA6814BF} = {3B8902EC-CAB9-406A-AAF7-24DABD885AC0} {1A37446C-A721-4507-89B5-7BFF6F66A004} = {6A3E4936-8B95-49E0-842B-E002C0E024CE} + {7E8046FD-4CB3-4BBC-8ADD-E27FE3DBBB55} = {6A3E4936-8B95-49E0-842B-E002C0E024CE} + {A1A986E0-E59D-4913-B63E-D965453B8CC0} = {6A3E4936-8B95-49E0-842B-E002C0E024CE} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {B93ABE6D-89AD-45B3-94FB-65BD98597CC6} diff --git a/EOM.TSHotelManagement.Common/AppConstant/AdminConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/AdminConstant.cs deleted file mode 100644 index a223724bba85885a819c7b692bfa012cd17ddc98..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/AppConstant/AdminConstant.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace EOM.TSHotelManagement.Common -{ - public class AdminConstant : Constant - { - // 超级管理员 - public static readonly AdminConstant Admin = new AdminConstant("Admin", "超级管理员"); - // 财务经理 - public static readonly AdminConstant FinanceManager = new AdminConstant("FinanceManager", "财务经理"); - // 总经理 - public static readonly AdminConstant GeneralManager = new AdminConstant("GeneralManager", "总经理"); - // 酒店经理 - public static readonly AdminConstant HotelManager = new AdminConstant("HotelManager", "酒店经理"); - // 人力资源经理 - public static readonly AdminConstant HRManager = new AdminConstant("HRManager", "人力资源经理"); - // 后勤经理 - public static readonly AdminConstant LogisticsManager = new AdminConstant("LogisticsManager", "后勤经理"); - // 监管小组 - public static readonly AdminConstant CheckGroup = new AdminConstant("CheckGroup", "监管小组"); - - private AdminConstant(string code, string description) : base(code, description) - { - } - } -} diff --git a/EOM.TSHotelManagement.Common/AppConstant/Constant.cs b/EOM.TSHotelManagement.Common/AppConstant/Constant.cs deleted file mode 100644 index 4e056a37068d1628504051b4e1671e2af45e9330..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/AppConstant/Constant.cs +++ /dev/null @@ -1,40 +0,0 @@ -namespace EOM.TSHotelManagement.Common -{ - public class Constant where T : Constant - { - public string Code { get; } - public string Description { get; } - - private static List _constants = new List(); - - protected Constant(string code, string description) - { - Code = code; - Description = description; - _constants.Add((T)this); - } - - public static IEnumerable GetAll() - { - return _constants; - } - - public static string GetDescriptionByCode(string code) - { - var constant = _constants.SingleOrDefault(c => c.Code == code); - return constant?.Description ?? string.Empty; - } - - public static string GetCodeByDescription(string description) - { - var constant = _constants.SingleOrDefault(c => c.Description == description); - return constant?.Code ?? string.Empty; - } - - public static T? GetConstantByCode(string code) - { - var constant = _constants.FirstOrDefault(c => c.Code == code); - return constant ?? null; - } - } -} diff --git a/EOM.TSHotelManagement.Common/AppConstant/CustomTypeConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/CustomTypeConstant.cs deleted file mode 100644 index f200f300c80ab13e88ca22b29c700bd06f258572..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/AppConstant/CustomTypeConstant.cs +++ /dev/null @@ -1,18 +0,0 @@ -namespace EOM.TSHotelManagement.Common -{ - public class CustomTypeConstant : Constant - { - // 普通会员 - public static readonly CustomTypeConstant RegularMember = new CustomTypeConstant("0", "普通会员"); - // 钻石会员 - public static readonly CustomTypeConstant DiamondMember = new CustomTypeConstant("1", "钻石会员"); - // 白金会员 - public static readonly CustomTypeConstant PlatinumMember = new CustomTypeConstant("2", "白金会员"); - // 黄金会员 - public static readonly CustomTypeConstant GoldMember = new CustomTypeConstant("3", "黄金会员"); - - private CustomTypeConstant(string code, string description) : base(code, description) - { - } - } -} diff --git a/EOM.TSHotelManagement.Common/AppConstant/PassportConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/PassportConstant.cs deleted file mode 100644 index ef63e9a7eebaa2a17fc0eebaa80a080afd5e8015..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/AppConstant/PassportConstant.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace EOM.TSHotelManagement.Common -{ - public class PassportConstant : Constant - { - // 中国居民身份证 - public static readonly PassportConstant ChineseResidentIdentityCard = new PassportConstant("0", "中国居民身份证"); - // 港澳居民来往内地通行证 - public static readonly PassportConstant MainlandTravelPermitforHKandMOResidents = new PassportConstant("1", "港澳居民来往内地通行证"); - // 台湾居民来往大陆通行证 - public static readonly PassportConstant MainlandTravelPermitforTWResidents = new PassportConstant("2", "台湾居民来往大陆通行证"); - // 军官证 - public static readonly PassportConstant OfficerCertificate = new PassportConstant("3", "军官证"); - // 外国护照 - public static readonly PassportConstant ForeignPassport = new PassportConstant("4", "外国护照"); - - private PassportConstant(string code, string description) : base(code, description) - { - } - } -} diff --git a/EOM.TSHotelManagement.Common/AppConstant/RoomStateConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/RoomStateConstant.cs deleted file mode 100644 index b986172627221f083198e4d957263ddc945916db..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/AppConstant/RoomStateConstant.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace EOM.TSHotelManagement.Common -{ - public class RoomStateConstant : Constant - { - // 空房 - public static readonly RoomStateConstant Empty = new RoomStateConstant("0", "空房"); - // 已住 - public static readonly RoomStateConstant Occupied = new RoomStateConstant("1", "已住"); - // 维修 - public static readonly RoomStateConstant UnderRepair = new RoomStateConstant("2", "维修"); - // 脏房 - public static readonly RoomStateConstant Dirty = new RoomStateConstant("3", "脏房"); - // 预约 - public static readonly RoomStateConstant Reserved = new RoomStateConstant("4", "预约"); - - private RoomStateConstant(string code, string description) : base(code, description) - { - } - } -} diff --git a/EOM.TSHotelManagement.Common/AppConstant/SexConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/SexConstant.cs deleted file mode 100644 index c75dd922973c2c8b6af035ef5c421b05bd6ee07e..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/AppConstant/SexConstant.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace EOM.TSHotelManagement.Common -{ - public class SexConstant : Constant - { - // 女 - public static readonly SexConstant Female = new SexConstant("0", "女"); - // 男 - public static readonly SexConstant Male = new SexConstant("1", "男"); - - private SexConstant(string code, string description) : base(code, description) - { - } - } -} diff --git a/EOM.TSHotelManagement.Common/BackendApi/ApiConstants.cs b/EOM.TSHotelManagement.Common/BackendApi/ApiConstants.cs new file mode 100644 index 0000000000000000000000000000000000000000..03ae1bf2f409abdc4281efd200df0609276d8f09 --- /dev/null +++ b/EOM.TSHotelManagement.Common/BackendApi/ApiConstants.cs @@ -0,0 +1,102 @@ +namespace EOM.TSHotelManagement.Common +{ + public static class ApiConstants + { + // Base URLs + public const string Base_SelectNationAll = "Base/SelectNationAll"; + public const string Base_SelectGenderTypeAll = "Base/SelectGenderTypeAll"; + public const string Base_SelectDeptAllCanUse = "Base/SelectDeptAllCanUse"; + public const string Base_SelectPositionAll = "Base/SelectPositionAll"; + public const string Base_SelectCustoTypeAllCanUse = "Base/SelectCustoTypeAllCanUse"; + public const string Base_SelectPassPortTypeAllCanUse = "Base/SelectPassPortTypeAllCanUse"; + public const string Base_SelectRoomStateAll = "Base/SelectRoomStateAll"; + + // Employee URLs + public const string Employee_SelectEmployeeInfoByEmployeeId = "Employee/SelectEmployeeInfoByEmployeeId"; + public const string Employee_UpdateEmployee = "Employee/UpdateEmployee"; + public const string Employee_SelectEmployeeInfoByEmployeeIdAndEmployeePwd = "Employee/SelectEmployeeInfoByEmployeeIdAndEmployeePwd"; + public const string Employee_UpdateEmployeeAccountPassword = "Employee/UpdateEmployeeAccountPassword"; + + // EmployeePhoto URLs + public const string EmployeePhoto_EmployeePhoto = "EmployeePhoto/EmployeePhoto"; + public const string EmployeePhoto_DeleteWorkerPhoto = "EmployeePhoto/DeleteWorkerPhoto"; + public const string EmployeePhoto_InsertWorkerPhoto = "EmployeePhoto/InsertWorkerPhoto"; + + // EmployeeCheck + public const string EmployeeCheck_SelectToDayCheckInfoByWorkerNo = "EmployeeCheck/SelectToDayCheckInfoByWorkerNo"; + public const string EmployeeCheck_SelectWorkerCheckDaySumByEmployeeId = "EmployeeCheck/SelectWorkerCheckDaySumByEmployeeId"; + public const string EmployeeCheck_AddCheckInfo = "EmployeeCheck/AddCheckInfo"; + + // Room URLs + public const string Room_SelectRoomAll = "Room/SelectRoomAll"; + public const string Room_SelectRoomByRoomNo = "Room/SelectRoomByRoomNo"; + public const string Room_DayByRoomNo = "Room/DayByRoomNo"; + public const string Room_CheckoutRoomByRoomNo = "Room/CheckoutRoomByRoomNo"; + public const string Room_SelectCanUseRoomAll = "Room/SelectCanUseRoomAll"; + public const string Room_UpdateRoomInfo = "Room​/UpdateRoomInfo"; + public const string Room_UpdateRoomInfoWithReser = "Room​/UpdateRoomInfoWithReser"; + public const string Room_SelectRoomByTypeName = "Room/SelectRoomByTypeName"; + public const string Room_SelectRoomByRoomState = "Room/SelectRoomByRoomState"; + public const string Room_UpdateRoomStateByRoomNo = "Room/UpdateRoomStateByRoomNo"; + public const string Room_SelectCanUseRoomAllByRoomState = "Room/SelectCanUseRoomAllByRoomState"; + public const string Room_SelectNotUseRoomAllByRoomState = "Room/SelectNotUseRoomAllByRoomState"; + public const string Room_SelectNotClearRoomAllByRoomState = "Room/SelectNotClearRoomAllByRoomState"; + public const string Room_SelectFixingRoomAllByRoomState = "Room/SelectFixingRoomAllByRoomState"; + public const string Room_SelectReservedRoomAllByRoomState = "Room/SelectReservedRoomAllByRoomState"; + public const string Room_TransferRoom = "Room/TransferRoom"; + public const string Room_CheckoutRoom = "Room/CheckoutRoom"; + public const string Room_CheckinRoomByReservation = "Room/CheckinRoomByReservation"; + + // Reser URLs + public const string Reser_SelectReserAll = "Reser/SelectReserAll"; + public const string Reser_DeleteReserInfo = "Reser/DeleteReserInfo"; + public const string Reser_InsertReserInfo = "Reser​/InserReserInfo"; + public const string Reser_SelectReserInfoByRoomNo = "Reser/SelectReserInfoByRoomNo"; + + // Room Type URLs + public const string RoomType_SelectRoomTypeByRoomNo = "RoomType/SelectRoomTypeByRoomNo"; + public const string RoomType_SelectRoomTypesAll = "RoomType/SelectRoomTypesAll"; + + // Customer URLs + public const string Customer_SelectCustoByInfo = "Customer/SelectCustoByInfo"; + public const string Customer_SelectCustomers = "Customer/SelectCustomers"; + public const string Customer_UpdCustomerTypeByCustoNo = "Customer/UpdCustomerTypeByCustoNo"; + public const string Customer_UpdCustomerInfo = "Customer/UpdCustomerInfo"; + public const string Customer_InsertCustomerInfo = "Customer/InsertCustomerInfo"; + + // Customer Type URLs + public const string CustoType_SelectCustoTypeByTypeId = "Base/SelectCustoTypeByTypeId"; + + // Spend URLs + public const string Spend_SelectSpendByRoomNo = "Spend/SelectSpendByRoomNo"; + public const string Spend_SumConsumptionAmount = "Spend/SumConsumptionAmount"; + public const string Spend_UpdateMoneyState = "Spend/UpdateMoneyState"; + public const string Spend_UpdateSpendInfoByRoomNo = "Spend​/UpdateSpendInfoByRoomNo"; + public const string Spend_AddCustomerSpend = "Spend​/AddCustomerSpend"; + public const string Spend_SeletHistorySpendInfoAll = "Spend/SeletHistorySpendInfoAll"; + public const string Spend_UpdSpenInfo = "Spend/UpdSpenInfo"; + public const string Spend_UndoCustomerSpend = "Spend/UndoCustomerSpend"; + + // EnergyManagement URLs + public const string EnergyManagement_SelectEnergyManagementInfo = "EnergyManagement/SelectEnergyManagementInfo"; + public const string EnergyManagement_InsertEnergyManagementInfo = "EnergyManagement/InsertEnergyManagementInfo"; + + // PromotionContent + public const string PromotionContent_SelectPromotionContents = "PromotionContent/SelectPromotionContents"; + + // NavBar + public const string NavBar_NavBarList = "NavBar/NavBarList"; + + // VipLevelRule URLs + public const string VipLevelRule_SelectVipRuleList = "VipRule/SelectVipRuleList"; + + // SellThing + public const string Sellthing_SelectSellThingAll = "Sellthing/SelectSellThingAll"; + public const string Sellthing_UpdateSellthingInfo = "Sellthing/UpdateSellthingInfo"; + public const string Sellthing_SelectSellThingByNameAndPrice = "Sellthing/SelectSellThingByNameAndPrice"; + + // Utility + public const string Utility_SelectCardCode = "Utility/SelectCardCode"; + public const string Utility_AddLog = "Utility/AddLog"; + } +} diff --git a/EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj b/EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj index 818c91234223c5308dcbe42285953b0c94004d67..8dd223e611a7a1e1db71c17b2030f6cf7871c582 100644 --- a/EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj +++ b/EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj @@ -13,10 +13,12 @@ - + + + diff --git a/EOM.TSHotelManagement.Common/Helper/HttpHelper.cs b/EOM.TSHotelManagement.Common/Helper/HttpHelper.cs index b2fec7bac6a0187792602153cdc397c880f7d796..3c334a51ca9cb9b125448d4813cbaf408cf54fa6 100644 --- a/EOM.TSHotelManagement.Common/Helper/HttpHelper.cs +++ b/EOM.TSHotelManagement.Common/Helper/HttpHelper.cs @@ -1,9 +1,7 @@ -using jvncorelib.EncryptorLib; -using jvncorelib.EntityLib; +using jvncorelib.EntityLib; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using RestSharp; -using System.Net; using System.Text; using System.Text.RegularExpressions; using System.Web; @@ -15,32 +13,17 @@ namespace EOM.TSHotelManagement.Common /// public static class HttpHelper { - static EncryptLib encrypt = new EncryptLib(); - - #region 受限于打包插件的限制才放在这,个人开发时建议统一在App.Config进行配置 - - /// - /// 数据库配置连接 - /// - public const string mysqlString = "server = localhost; user id = softuser; password = .; database = tshoteldb;"; - /// - /// 照片文件配置URL - /// - public const string baseUrl = ""; - /// - /// 上传照片URL - /// - public const string postUrl = ""; +#if DEBUG /// - /// WebApi URL(release) + /// WebApi URL /// - public const string apiUrl = ""; + public const string apiUrl = "http://localhost:63001/api/"; +#elif RELEASE /// - /// WebApi URL(debug) + /// WebApi URL /// - //public const string apiUrl = "1/F8hHIvdiAzWpBv3RqANkv1On8CAw01xgL+WewjgIA=·0*%#^f*a0d?d*#0< - /// WebClient上传文件至服务器 + /// 使用 RestSharp 上传文件(multipart/form-data) /// - /// 文件名,全路径格式 - /// 服务器文件夹路径 - public static string UpLoadFile(string fileNamePath, string uriString) + /// API地址 + /// 本地文件路径 + /// 其他参数 + /// 自定义Headers + /// 响应结果 + public static ResponseMsg UploadFile( + string url, + string filePath, + Dictionary? additionalParams = null, + Dictionary? dicHeaders = null) { - using HttpClient client = new HttpClient(); - using MultipartFormDataContent content = new MultipartFormDataContent(); - using FileStream fs = new FileStream(fileNamePath, FileMode.Open, FileAccess.Read); - using StreamContent streamContent = new StreamContent(fs); - content.Add(streamContent, "file", Path.GetFileName(fileNamePath)); + var sourceStr = url.Replace("​", string.Empty); + + var requestUrl = apiUrl + sourceStr; + + var client = new RestClient(requestUrl); + var request = new RestRequest(); + + + request.AddHeader("Content-Type", "multipart/form-data"); + request.AddHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36"); + + + if (!string.IsNullOrEmpty(LoginInfo.UserToken)) + { + request.AddHeader("Authorization", $"Bearer {LoginInfo.UserToken}"); + } + + + if (dicHeaders != null) + { + foreach (var key in dicHeaders.Keys) + { + request.AddHeader(key, dicHeaders[key]); + } + } + + if (additionalParams != null) + { + foreach (var kv in additionalParams) + { + request.AddParameter(kv.Key, kv.Value, ParameterType.GetOrPost); + } + } - HttpResponseMessage response = client.PostAsync(uriString, content).Result; - response.EnsureSuccessStatusCode(); - string responseData = response.Content.ReadAsStringAsync().Result; + request.AddFile( + name: "file", + path: filePath, + contentType: GetMimeType(filePath) + ); - return responseData.Replace('\"', ' '); + var response = client.ExecutePost(request); + + return new ResponseMsg + { + statusCode = (int)response.StatusCode, + message = response.Content + }; } /// @@ -120,10 +146,7 @@ namespace EOM.TSHotelManagement.Common //处理url var sourceStr = url.Replace("​", string.Empty); - //解密原始URL - var api = encrypt.Decryption(apiUrl); - - var requestUrl = api + sourceStr; + var requestUrl = apiUrl + sourceStr; msg = DoGet(requestUrl); @@ -144,10 +167,7 @@ namespace EOM.TSHotelManagement.Common //处理url var sourceStr = url.Replace("​", string.Empty); - //解密原始URL - var api = encrypt.Decryption(apiUrl); - - var requestUrl = api + sourceStr; + var requestUrl = apiUrl + sourceStr; if (!json.IsNullOrEmpty()) { @@ -175,10 +195,7 @@ namespace EOM.TSHotelManagement.Common //处理url var sourceStr = url.Replace("​", string.Empty); - //解密原始URL - var api = encrypt.Decryption(apiUrl); - - var requestUrl = api + sourceStr; + var requestUrl = apiUrl + sourceStr; if (!dic.IsNullOrEmpty()) { @@ -192,32 +209,6 @@ namespace EOM.TSHotelManagement.Common return msg; } - /// - /// 批量请求 - /// - /// - /// - public static Dictionary RaiseBatchRequest(Dictionary? dic)> requests) - { - var results = new Dictionary(); - - foreach (var (url, (json, dic)) in requests) - { - var result = Request(url); - if (!json.IsNullOrEmpty()) - { - result = Request(url, json); - } - else if (!dic.IsNullOrEmpty()) - { - result = Request(url, dic); - } - results.Add(url, result); - } - - return results; - } - /// /// GET请求 /// @@ -271,7 +262,7 @@ namespace EOM.TSHotelManagement.Common } } - var token = LoginInfo.UserToken.IsNullOrEmpty() ? AdminInfo.UserToken : LoginInfo.UserToken; + var token = LoginInfo.UserToken; request.AddHeader("Authorization", string.Format("Bearer {0}", token)); rsp = client.ExecuteGet(request); @@ -283,7 +274,7 @@ namespace EOM.TSHotelManagement.Common throw; } - return new ResponseMsg() { statusCode = (int)rsp.StatusCode, message = resultContent }; + return new ResponseMsg() { message = resultContent }; } /// @@ -332,7 +323,7 @@ namespace EOM.TSHotelManagement.Common request.AddBody(jsonParam!); - var token = LoginInfo.UserToken.IsNullOrEmpty() ? AdminInfo.UserToken : LoginInfo.UserToken; + var token = LoginInfo.UserToken; request.AddHeader("Authorization", string.Format("Bearer {0}", token)); @@ -340,7 +331,24 @@ namespace EOM.TSHotelManagement.Common var responseString = reponse.Content; - return new ResponseMsg() { statusCode = (int)reponse.StatusCode, message = responseString }; + return new ResponseMsg() { message = responseString }; + } + + /// + /// 获取文件的MIME类型 + /// + /// + /// + public static string GetMimeType(string fileName) + { + var extension = Path.GetExtension(fileName).ToLowerInvariant(); + return extension switch + { + ".jpg" => "image/jpeg", + ".jpeg" => "image/jpeg", + ".png" => "image/png", + _ => "application/octet-stream" + }; } /// @@ -437,7 +445,7 @@ namespace EOM.TSHotelManagement.Common { try { - return Newtonsoft.Json.JsonConvert.SerializeObject(input, new JsonSerializerSettings + return JsonConvert.SerializeObject(input, new JsonSerializerSettings { Converters = { new IgnoreNullValuesConverter(true) }, Formatting = Formatting.Indented // 如果需要格式化输出 diff --git a/EOM.TSHotelManagement.Common/LocalInfo/AdminInfo.cs b/EOM.TSHotelManagement.Common/LocalInfo/AdminInfo.cs deleted file mode 100644 index d99eaa38d28d7a25c792213692ee799fad12e102..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/LocalInfo/AdminInfo.cs +++ /dev/null @@ -1,68 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(Easy-Open-Meta) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - *模块说明:管理员信息静态类 - */ -namespace EOM.TSHotelManagement.Common -{ - /// - /// 管理员信息静态类(后台管理员登入后的本地信息存储) - /// - public class AdminInfo - { - /// - /// 存储当前超管账号 - /// - public static string Account = ""; - - /// - /// 存储当前超管类型 - /// - public static string Type = ""; - - /// - /// 存储当前超管用户组 - /// - public static string Group = ""; - - /// - /// 存储当前超管名称 - /// - public static string Name = ""; - - /// - /// 是否为超管 - /// - public static bool isAdmin; - - /// - /// 存储当前软件版本 - /// - public static string SoftwareVersion = ""; - - /// - /// 存储当前用户Token - /// - public static string UserToken = ""; - - } -} diff --git a/EOM.TSHotelManagement.Common/LocalInfo/LoginInfo.cs b/EOM.TSHotelManagement.Common/LocalInfo/LoginInfo.cs index 114dfc2d45891c2919d54faec5fccb7d21c913e9..bd3a346a4017746cb924efe1453046844c37d173 100644 --- a/EOM.TSHotelManagement.Common/LocalInfo/LoginInfo.cs +++ b/EOM.TSHotelManagement.Common/LocalInfo/LoginInfo.cs @@ -58,5 +58,10 @@ namespace EOM.TSHotelManagement.Common /// 存储当前用户Token /// public static string UserToken = ""; + + /// + /// 软件更新日志 + /// + public static string SoftwareReleaseLog = ""; } } diff --git a/EOM.TSHotelManagement.Common/Util/ApplicationUtil.cs b/EOM.TSHotelManagement.Common/Util/ApplicationUtil.cs index eca25d8f8974aebb2f4c6464c51d2b25e6bc17b7..a296c1b3b020bb77755cf52c0a9e6b139d6e01e2 100644 --- a/EOM.TSHotelManagement.Common/Util/ApplicationUtil.cs +++ b/EOM.TSHotelManagement.Common/Util/ApplicationUtil.cs @@ -1,6 +1,7 @@ -using System.Diagnostics; +using EOM.TSHotelManagement.Common.Contract; +using jvncorelib.EntityLib; +using System.Diagnostics; using System.Reflection; -using System.Text; namespace EOM.TSHotelManagement.Common { @@ -9,102 +10,48 @@ namespace EOM.TSHotelManagement.Common /// public static class ApplicationUtil { - //锁对象 - private static readonly object lockTimeCode = new object(); - - private static Dictionary dic = new Dictionary(); - /// /// 证件号码归属地查询 /// /// /// - public static Card searchCode(string code) + public static Card SearchCode(string code) { - Dictionary dic = new Dictionary(); - dic.Add("identityCard", code.Substring(0, 6)); - ResponseMsg result = HttpHelper.Request("App/SelectCardCode", dic); - if (result.statusCode != 200) + Dictionary dic = new Dictionary() { - return new Card { message = "SelectCardCode+接口服务异常,请提交Issue或尝试更新版本!" }; - } - var addrResult = result.message; - var address = addrResult.Replace(",", "").ToString(); - var birthday = code.Substring(6, 4) + "-" + code.Substring(10, 2) + "-" + code.Substring(12, 2); - var sex = code.Substring(14, 3); - //性别代码为偶数是女性奇数为男性 - if (int.Parse(sex) % 2 == 0) + { nameof(ReadCardCodeInputDto.IdentityCardNumber), code.Substring(0,6) } + }; + var input = new ReadCardCodeInputDto { - sex = "女"; - } - else + IdentityCardNumber = code.Substring(0, 6) + }; + ResponseMsg result = HttpHelper.Request(ApiConstants.Utility_SelectCardCode, input.ModelToJson()); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - sex = "男"; + return new Card { message = "SelectCardCode+接口服务异常,请提交Issue或尝试更新版本!" }; } - return new Card { message = string.Empty, sex = sex, address = address, birthday = birthday }; - } - /// - /// 批量获取流水号 - /// - /// 流水号前缀 - /// 填充位数,e.g 3为 000 - /// 流水号数量 - /// 分隔符 - /// 流水号集合 - public static List GetListNewId(string preCode = null, int fillCount = 0, int pCount = 1, string separatorChar = null) - { - List list = new List(); - int num = 1; - StringBuilder sb = new StringBuilder(); - for (int i = 0; i < pCount; i++) + if (!response.Source.IsNullOrEmpty()) { - sb.Clear(); - sb.Append(preCode); - DateTime now = Convert.ToDateTime(DateTime.Now); - string text = now.ToString("yyyyMMdd"); - sb.Append(text); - sb.Append(separatorChar); - lock (lockTimeCode) + var address = $"{response.Source.Province}{response.Source.City}{response.Source.District}"; + var birthday = code.Substring(6, 4) + "-" + code.Substring(10, 2) + "-" + code.Substring(12, 2); + var sex = code.Substring(14, 3); + //性别代码为偶数是女性奇数为男性 + if (int.Parse(sex) % 2 == 0) + { + sex = "女"; + } + else { - if (!dic.ContainsKey(text)) - { - if (dic.Count > 10) - { - dic.Clear(); - } - num++; - dic.Add(text, 1); - } - else - { - if (dic[text] > 8998) - { - while (true) - { - string a = text; - now = Convert.ToDateTime(DateTime.Now); - if (a == now.ToString("yyyyMMdd")) - { - Thread.Sleep(0); - continue; - } - break; - } - goto end_IL_004e; - } - Dictionary dictionary = dic; - string key = text; - dictionary[key]++; - num = dic[text]; - } - string value = num.ToString().PadLeft(fillCount, '0'); - sb.Append(value); - list.Add(sb.ToString()); - end_IL_004e:; + sex = "男"; } + return new Card { message = string.Empty, sex = sex, address = address, birthday = birthday }; + } + else + { + return new Card() { message = "未配置号码表" }; } - return list; } /// @@ -130,36 +77,6 @@ namespace EOM.TSHotelManagement.Common return null; } - /// - /// 请求列表数据 - /// - /// - /// - /// - /// - // public static List GetDataList(HttpHelper.HttpRequestContext httpRequestContext,PageOptions pageOptions = null) - // { - // var result = HttpHelper.Request(httpRequestContext); - // var listDataSource = HttpHelper.JsonToList(result.message); - // if (pageOptions != null) - // { - // int skip = (pageOptions.index - 1) * pageOptions.pageSize; - // listDataSource = listDataSource - // .Skip(skip) - // .Take(pageOptions.pageSize) - // .ToList(); - // } - // return listDataSource; - // } - //} - - public class PageOptions - { - public int index { get; set; } - - public int pageSize { get; set; } - } - /// /// 身份证实体类 /// diff --git a/EOM.TSHotelManagement.Common/Util/ClipboardHelper.cs b/EOM.TSHotelManagement.Common/Util/ClipboardHelper.cs new file mode 100644 index 0000000000000000000000000000000000000000..47be9cebc3ef2b9dc13d34b778c9219a89af1168 --- /dev/null +++ b/EOM.TSHotelManagement.Common/Util/ClipboardHelper.cs @@ -0,0 +1,83 @@ +using System.Runtime.InteropServices; +using System.Text; + +namespace EOM.TSHotelManagement.Common; +public class ClipboardHelper +{ + [DllImport("user32.dll", SetLastError = true)] + private static extern bool OpenClipboard(IntPtr hWndNewOwner); + + [DllImport("user32.dll", SetLastError = true)] + private static extern bool CloseClipboard(); + + [DllImport("user32.dll", SetLastError = true)] + private static extern bool EmptyClipboard(); + + [DllImport("user32.dll", SetLastError = true)] + private static extern IntPtr SetClipboardData(uint uFormat, IntPtr hMem); + + [DllImport("kernel32.dll")] + private static extern IntPtr GlobalAlloc(uint uFlags, UIntPtr dwBytes); + + [DllImport("kernel32.dll")] + private static extern IntPtr GlobalLock(IntPtr hMem); + + [DllImport("kernel32.dll")] + [return: MarshalAs(UnmanagedType.Bool)] + private static extern bool GlobalUnlock(IntPtr hMem); + + private const uint CF_UNICODETEXT = 13; + + private const uint GMEM_MOVEABLE = 0x0002; + private const uint GMEM_ZEROINIT = 0x0040; + private const uint GMEM_DDESHARE = 0x2000; + + /// + /// 将文本复制到剪贴板 + /// + public static bool SetTextToClipboard(string text) + { + if (string.IsNullOrEmpty(text)) + return false; + + try + { + if (!OpenClipboard(IntPtr.Zero)) + return false; + + EmptyClipboard(); + + var textBytes = Encoding.Unicode.GetBytes(text + '\0'); + uint allocSize = (uint)(textBytes.Length * sizeof(byte)); + IntPtr hGlobal = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE | GMEM_ZEROINIT, (UIntPtr)allocSize); + + if (hGlobal == IntPtr.Zero) + return false; + + try + { + IntPtr pGlobal = GlobalLock(hGlobal); + if (pGlobal == IntPtr.Zero) + return false; + + try + { + Marshal.Copy(textBytes, 0, pGlobal, textBytes.Length); + } + finally + { + GlobalUnlock(hGlobal); + } + + return SetClipboardData(CF_UNICODETEXT, hGlobal) != IntPtr.Zero; + } + finally + { + } + } + finally + { + CloseClipboard(); + } + } +} \ No newline at end of file diff --git a/EOM.TSHotelManagement.Common/Util/ExportHelper.cs b/EOM.TSHotelManagement.Common/Util/ExportHelper.cs deleted file mode 100644 index 25121980606afa48d2806460b425423827ccf078..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.Common/Util/ExportHelper.cs +++ /dev/null @@ -1,125 +0,0 @@ -using jvncorelib.EntityLib; -using NPOI.SS.UserModel; -using NPOI.XSSF.UserModel; -using System.Data; - -namespace EOM.TSHotelManagement.Common -{ - /// - /// 导出助手 - /// - public class ExportHelper - { - /// - /// 导出DataTable数据到Excel - /// - /// 要导出的数据表 - /// 保存的文件路径 - /// 要忽略的列名列表 - public void ExportDataTableToExcel(DataTable dataTable, string filePath, List ignoreColumns = null) - { - var workbook = new XSSFWorkbook(); // 创建XSSFWorkbook实例 - ISheet sheet = workbook.CreateSheet("Customer List"); // 创建工作表 - - // 创建表头 - IRow headerRow = sheet.CreateRow(0); - for (int i = 0; i < dataTable.Columns.Count; i++) - { - if (ignoreColumns == null || !ignoreColumns.Contains(dataTable.Columns[i].ColumnName)) - { - var cell = headerRow.CreateCell(i); - cell.SetCellValue(dataTable.Columns[i].ColumnName); - } - } - - // 写入数据行 - int rowIndex = 1; - foreach (DataRow row in dataTable.Rows) - { - IRow sheetRow = sheet.CreateRow(rowIndex++); - for (int i = 0; i < row.ItemArray.Length; i++) - { - var cell = sheetRow.CreateCell(i); - var cellValue = row.ItemArray[i]; - if (cellValue != DBNull.Value && (ignoreColumns == null || !ignoreColumns.Contains(dataTable.Columns[i].ColumnName))) - { - if (cellValue is DateTime) - { - cell.SetCellValue(Convert.ToDateTime(cellValue).ToString("yyyy-MM-dd")); - } - else - { - cell.SetCellValue(cellValue.ToString()); - } - } - } - } - - // 保存到文件 - using (FileStream fileStream = new FileStream(filePath, FileMode.Create, FileAccess.Write)) - { - workbook.Write(fileStream); - } - } - - /// - /// 导出DataGridView数据到Excel(默认全部) - /// - /// - /// - /// - /// - public void ExportDataToExcel(List dataSource, string filePath, List ignoreColumns = null) - { - var workbook = new XSSFWorkbook(); // 创建XSSFWorkbook实例 - ISheet sheet = workbook.CreateSheet("Customer List"); // 创建工作表 - - IRow headerRow = sheet.CreateRow(0); // 创建表头行 - - // 使用反射获取数据类型的属性,这些属性将用作列名 - var properties = typeof(T).GetProperties(); - - if (!ignoreColumns.IsNullOrEmpty()) - { - properties = properties.Where(prop => !ignoreColumns.Contains(prop.Name)).ToArray(); - } - - // 创建表头 - for (int i = 0; i < properties.Length; i++) - { - var cell = headerRow.CreateCell(i); - cell.SetCellValue(properties[i].Name); - } - - // 写入数据行 - int rowIndex = 1; - foreach (var item in dataSource) - { - IRow sheetRow = sheet.CreateRow(rowIndex++); - for (int i = 0; i < properties.Length; i++) - { - var cell = sheetRow.CreateCell(i); - var value = properties[i].GetValue(item); - - if (value != null) - { - if (value is DateTime) - { - cell.SetCellValue(((DateTime)value).ToString("yyyy-MM-dd")); - } - else - { - cell.SetCellValue(value.ToString()); - } - } - } - } - - // 保存到文件 - using (FileStream fileStream = new FileStream(filePath, FileMode.Create, FileAccess.Write)) - { - workbook.Write(fileStream); - } - } - } -} diff --git a/EOM.TSHotelManagement.Common/Util/RecordHelper.cs b/EOM.TSHotelManagement.Common/Util/RecordHelper.cs index 11083e8a54f5cd7c645016f67a6008238fd7164f..a20c925395b7d37d5e32eae2dc3b924fbb9521d6 100644 --- a/EOM.TSHotelManagement.Common/Util/RecordHelper.cs +++ b/EOM.TSHotelManagement.Common/Util/RecordHelper.cs @@ -1,4 +1,5 @@ -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; +using EOM.TSHotelManagement.Common.Core; namespace EOM.TSHotelManagement.Common { @@ -12,19 +13,19 @@ namespace EOM.TSHotelManagement.Common /// /// /// - public static void Record(string operationLog, int level) + public static void Record(string operationLog, LogLevel level) { - string api = "App/AddLog"; - var logDetail = new OperationLog + string api = ApiConstants.Utility_AddLog; + var logDetail = new CreateOperationLogInputDto { OperationTime = Convert.ToDateTime(DateTime.Now), LogContent = operationLog, - OperationAccount = LoginInfo.WorkerNo + AdminInfo.Account, - OperationLevel = level == 1 ? RecordLevel.Normal : level == 2 ? RecordLevel.Warning : RecordLevel.Danger, - SoftwareVersion = AdminInfo.SoftwareVersion + LoginInfo.SoftwareVersion, - delete_mk = 0, - datains_usr = AdminInfo.Account + LoginInfo.WorkerNo, - datains_date = Convert.ToDateTime(DateTime.Now) + OperationAccount = LoginInfo.WorkerNo, + LogLevel = level, + SoftwareVersion = LoginInfo.SoftwareVersion, + IsDelete = 0, + DataInsUsr = LoginInfo.WorkerNo, + DataInsDate = Convert.ToDateTime(DateTime.Now) }; HttpHelper.Request(api, HttpHelper.ModelToJson(logDetail)); } diff --git a/EOM.TSHotelManagement.FormUI/ApiExtractor/ApiConstant.cs b/EOM.TSHotelManagement.FormUI/ApiExtractor/ApiConstant.cs deleted file mode 100644 index 22b1d94b80c5f436f0acacac3a6f3271f269723b..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/ApiExtractor/ApiConstant.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - public static class ApiConstant - { - // 使用静态字段来存储路径名称 - public static HashSet Paths { get; } = new HashSet(); - } -} diff --git a/EOM.TSHotelManagement.FormUI/ApiExtractor/SwaggerExtractor.cs b/EOM.TSHotelManagement.FormUI/ApiExtractor/SwaggerExtractor.cs deleted file mode 100644 index 32903096048a8f31e19da3cc60d44b602c08a3d2..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/ApiExtractor/SwaggerExtractor.cs +++ /dev/null @@ -1,40 +0,0 @@ -using EOM.TSHotelManagement.Common; -using Newtonsoft.Json; -using RestSharp; - -namespace EOM.TSHotelManagement.FormUI -{ - public class SwaggerExtractor - { - public void ExtractRoutesToFileAsync(string swaggerUrl) - { - var reponse = new RestResponse(); - var client = new RestClient(swaggerUrl); - var request = new RestRequest(); - - string resultContent = ""; - RestResponse rsp = null; - - rsp = client.ExecuteGet(request); - - resultContent = rsp.Content; - - var result = new ResponseMsg() { statusCode = (int)rsp.StatusCode, message = resultContent }; - - GetSwaggerJson(result.message); - } - - public void GetSwaggerJson(string json) - { - // 解析JSON内容 - dynamic swaggerObject = JsonConvert.DeserializeObject(json); - - // 遍历并打印所有的路径和HTTP方法 - foreach (var path in swaggerObject.paths) - { - // 只保存唯一的路径名称 - ApiConstant.Paths.Add(path.Name); - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.Designer.cs index 013268a5ab96e49717886c5f785a0f34c864b0fc..0b1c687960d1f09cc46cd5b549c9e63ec1891d41 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.Designer.cs @@ -29,28 +29,40 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAboutUs)); - uiRichTextBox1 = new Sunny.UI.UIRichTextBox(); + rtbAboutUs = new Sunny.UI.UIRichTextBox(); + btnOk = new AntdUI.Button(); SuspendLayout(); // - // uiRichTextBox1 + // rtbAboutUs // - uiRichTextBox1.BulletIndent = 5; - uiRichTextBox1.FillColor = Color.White; - uiRichTextBox1.Font = new Font("微软雅黑", 12F); - uiRichTextBox1.HideSelection = false; - uiRichTextBox1.Location = new Point(4, 32); - uiRichTextBox1.Margin = new Padding(3, 4, 3, 4); - uiRichTextBox1.MinimumSize = new Size(1, 1); - uiRichTextBox1.Name = "uiRichTextBox1"; - uiRichTextBox1.Padding = new Padding(1, 2, 1, 2); - uiRichTextBox1.Radius = 10; - uiRichTextBox1.ReadOnly = true; - uiRichTextBox1.ScrollBarStyleInherited = false; - uiRichTextBox1.ShowText = false; - uiRichTextBox1.Size = new Size(377, 146); - uiRichTextBox1.Style = Sunny.UI.UIStyle.Custom; - uiRichTextBox1.TabIndex = 0; - uiRichTextBox1.TextAlignment = ContentAlignment.MiddleCenter; + rtbAboutUs.BulletIndent = 5; + rtbAboutUs.FillColor = Color.White; + rtbAboutUs.Font = new Font("微软雅黑", 12F); + rtbAboutUs.HideSelection = false; + rtbAboutUs.Location = new Point(3, 2); + rtbAboutUs.Margin = new Padding(3, 4, 3, 4); + rtbAboutUs.MinimumSize = new Size(1, 1); + rtbAboutUs.Name = "rtbAboutUs"; + rtbAboutUs.Padding = new Padding(1, 2, 1, 2); + rtbAboutUs.Radius = 10; + rtbAboutUs.ReadOnly = true; + rtbAboutUs.ScrollBarStyleInherited = false; + rtbAboutUs.ShowText = false; + rtbAboutUs.Size = new Size(385, 146); + rtbAboutUs.Style = Sunny.UI.UIStyle.Custom; + rtbAboutUs.TabIndex = 0; + rtbAboutUs.TextAlignment = ContentAlignment.MiddleCenter; + // + // btnOk + // + btnOk.Font = new Font("Microsoft YaHei UI", 12F); + btnOk.Location = new Point(145, 152); + btnOk.Name = "btnOk"; + btnOk.Size = new Size(93, 36); + btnOk.TabIndex = 129; + btnOk.Text = "知道了!"; + btnOk.Type = AntdUI.TTypeMini.Primary; + btnOk.Click += btnOk_Click; // // FrmAboutUs // @@ -58,12 +70,13 @@ AutoScaleMode = AutoScaleMode.Font; BackColor = Color.FromArgb(235, 243, 255); ClientSize = new Size(390, 192); - Controls.Add(uiRichTextBox1); + Controls.Add(btnOk); + Controls.Add(rtbAboutUs); + FormBorderStyle = FormBorderStyle.FixedSingle; Icon = (Icon)resources.GetObject("$this.Icon"); - Margin = new Padding(2, 2, 2, 2); - MaximizeBox = false; - MinimizeBox = false; + Margin = new Padding(2); Name = "FrmAboutUs"; + StartPosition = FormStartPosition.CenterScreen; Text = "关于我们"; Load += FrmAboutUs_Load; MouseDown += FrmAboutUs_MouseDown; @@ -73,6 +86,7 @@ #endregion - private Sunny.UI.UIRichTextBox uiRichTextBox1; + private Sunny.UI.UIRichTextBox rtbAboutUs; + private AntdUI.Button btnOk; } } \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.cs index 39f8d511ce3401f692837936c9cc7d3bbc33bf15..356cf88cd9a17495f1a02d70be5af4537c237a30 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.cs @@ -22,7 +22,7 @@ * */ using AntdUI; -using Sunny.UI; +using EOM.TSHotelManagement.Common.Util; namespace EOM.TSHotelManagement.FormUI { @@ -61,7 +61,13 @@ namespace EOM.TSHotelManagement.FormUI private void FrmAboutUs_Load(object sender, EventArgs e) { - uiRichTextBox1.Text = " 我们团队一直都致力于打造一款人机交互方便,操作简单的管理软件,我们的愿景是“用技术创造易用的开源软件/组件”,一路心怀愿景去制作软件,我们的团队充满活力、激情!\r\n 关于我们团队,您可以浏览:https://www.oscode.top了解更多! \r\n 关于本软件的详细信息,您可以浏览:https://gitee.com/java-and-net/TopskyHotelManagerSystem 了解更多!另外仍会提供后续的版本升级支持!"; + rtbAboutUs.Text = LocalizationHelper.GetLocalizedString("Our team has always been committed to creating a user-friendly and easy-to-use management software. Our vision is to use technology to create easy-to-use open source software/components and to create software with a vision in mind. Our team is full of vitality and passion!\r\n Regarding our team, you can browse: https://www.oscode.top Learn more! \r\n For detailed information about this software, you can browse: https://gitee.com/java-and-net/TopskyHotelManagerSystem Learn more! In addition, we will still provide support for future version upgrades!", + " 我们团队一直都致力于打造一款人机交互方便,操作简单的管理软件,我们的愿景是“用技术创造易用的开源软件/组件”,一路心怀愿景去制作软件,我们的团队充满活力、激情!\r\n 关于我们团队,您可以浏览:https://www.oscode.top了解更多! \r\n 关于本软件的详细信息,您可以浏览:https://gitee.com/java-and-net/TopskyHotelManagerSystem 了解更多!另外仍会提供后续的版本升级支持!"); + } + + private void btnOk_Click(object sender, EventArgs e) + { + this.Close(); } } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.Designer.cs deleted file mode 100644 index 72eb842ea81be2f96ea11f7c4dad11b57912179e..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.Designer.cs +++ /dev/null @@ -1,236 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmAddAdmin - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAddAdmin)); - label1 = new AntdUI.Label(); - txtAccount = new AntdUI.Input(); - txtPassword = new AntdUI.Input(); - label2 = new AntdUI.Label(); - label4 = new AntdUI.Label(); - cbAccountType = new AntdUI.Select(); - txtName = new AntdUI.Input(); - label5 = new AntdUI.Label(); - btnAdd = new AntdUI.Button(); - btnReset = new AntdUI.Button(); - dgvAdminList = new AntdUI.Table(); - pgnPageNavigate = new AntdUI.Pagination(); - pageHeader1 = new AntdUI.PageHeader(); - SuspendLayout(); - // - // label1 - // - label1.Font = new Font("Microsoft YaHei UI", 12.5F); - label1.Location = new Point(174, 96); - label1.Name = "label1"; - label1.Size = new Size(86, 23); - label1.TabIndex = 122; - label1.Text = "账 号"; - label1.TextAlign = ContentAlignment.MiddleCenter; - // - // txtAccount - // - txtAccount.Font = new Font("Microsoft YaHei UI", 12F); - txtAccount.Location = new Point(257, 88); - txtAccount.Name = "txtAccount"; - txtAccount.PlaceholderText = "请输入管理员账户..."; - txtAccount.Size = new Size(175, 39); - txtAccount.TabIndex = 123; - // - // txtPassword - // - txtPassword.Font = new Font("Microsoft YaHei UI", 12F); - txtPassword.Location = new Point(535, 88); - txtPassword.Name = "txtPassword"; - txtPassword.PasswordChar = '*'; - txtPassword.PasswordCopy = true; - txtPassword.PlaceholderText = "请输入管理员密码..."; - txtPassword.Size = new Size(175, 39); - txtPassword.TabIndex = 125; - // - // label2 - // - label2.Font = new Font("Microsoft YaHei UI", 12.5F); - label2.Location = new Point(452, 96); - label2.Name = "label2"; - label2.Size = new Size(86, 23); - label2.TabIndex = 124; - label2.Text = "账号密码"; - label2.TextAlign = ContentAlignment.MiddleCenter; - // - // label4 - // - label4.Font = new Font("Microsoft YaHei UI", 12.5F); - label4.Location = new Point(174, 149); - label4.Name = "label4"; - label4.Size = new Size(86, 23); - label4.TabIndex = 126; - label4.Text = "账户类型"; - label4.TextAlign = ContentAlignment.MiddleCenter; - // - // cbAccountType - // - cbAccountType.Font = new Font("Microsoft YaHei UI", 12F); - cbAccountType.List = true; - cbAccountType.ListAutoWidth = true; - cbAccountType.Location = new Point(257, 140); - cbAccountType.Name = "cbAccountType"; - cbAccountType.PlaceholderText = "请选择管理员类型..."; - cbAccountType.Size = new Size(175, 39); - cbAccountType.TabIndex = 127; - // - // txtName - // - txtName.Font = new Font("Microsoft YaHei UI", 12F); - txtName.Location = new Point(535, 141); - txtName.Name = "txtName"; - txtName.PlaceholderText = "请输入管理员姓名..."; - txtName.Size = new Size(175, 39); - txtName.TabIndex = 129; - // - // label5 - // - label5.Font = new Font("Microsoft YaHei UI", 12.5F); - label5.Location = new Point(452, 149); - label5.Name = "label5"; - label5.Size = new Size(86, 23); - label5.TabIndex = 128; - label5.Text = "真实姓名"; - label5.TextAlign = ContentAlignment.MiddleCenter; - // - // btnAdd - // - btnAdd.Font = new Font("Microsoft YaHei UI", 12F); - btnAdd.Location = new Point(734, 88); - btnAdd.Name = "btnAdd"; - btnAdd.Size = new Size(93, 39); - btnAdd.TabIndex = 130; - btnAdd.Text = "添 加"; - btnAdd.Type = AntdUI.TTypeMini.Primary; - btnAdd.Click += btnAdd_Click; - // - // btnReset - // - btnReset.Font = new Font("Microsoft YaHei UI", 12F); - btnReset.Location = new Point(734, 140); - btnReset.Name = "btnReset"; - btnReset.Size = new Size(93, 39); - btnReset.TabIndex = 131; - btnReset.Text = "重 置"; - btnReset.Type = AntdUI.TTypeMini.Primary; - btnReset.Click += btnReset_Click; - // - // dgvAdminList - // - dgvAdminList.Bordered = true; - dgvAdminList.Location = new Point(12, 198); - dgvAdminList.Name = "dgvAdminList"; - dgvAdminList.Size = new Size(977, 380); - dgvAdminList.TabIndex = 0; - dgvAdminList.Text = "table1"; - // - // pgnPageNavigate - // - pgnPageNavigate.Location = new Point(12, 584); - pgnPageNavigate.Name = "pgnPageNavigate"; - pgnPageNavigate.ShowSizeChanger = true; - pgnPageNavigate.Size = new Size(977, 27); - pgnPageNavigate.TabIndex = 132; - pgnPageNavigate.Total = 100; - pgnPageNavigate.ValueChanged += pgnPageNavigate_ValueChanged; - pgnPageNavigate.ShowTotalChanged += pgnPageNavigate_ShowTotalChanged; - // - // pageHeader1 - // - pageHeader1.Font = new Font("Microsoft YaHei UI", 12F); - pageHeader1.Location = new Point(0, 3); - pageHeader1.Name = "pageHeader1"; - pageHeader1.ShowButton = true; - pageHeader1.ShowIcon = true; - pageHeader1.Size = new Size(1002, 41); - pageHeader1.TabIndex = 133; - pageHeader1.Text = "系统管理员"; - // - // FrmAddAdmin - // - AutoScaleDimensions = new SizeF(7F, 17F); - AutoScaleMode = AutoScaleMode.Font; - BackColor = Color.FromArgb(235, 243, 255); - ClientSize = new Size(1001, 623); - ControlBox = false; - Controls.Add(pageHeader1); - Controls.Add(pgnPageNavigate); - Controls.Add(dgvAdminList); - Controls.Add(btnReset); - Controls.Add(btnAdd); - Controls.Add(txtName); - Controls.Add(label5); - Controls.Add(cbAccountType); - Controls.Add(label4); - Controls.Add(txtPassword); - Controls.Add(label2); - Controls.Add(txtAccount); - Controls.Add(label1); - Icon = (Icon)resources.GetObject("$this.Icon"); - Margin = new Padding(2); - MaximizeBox = false; - MinimizeBox = false; - Name = "FrmAddAdmin"; - Text = "添加管理员"; - Load += FrmAddAdmin_Load; - ResumeLayout(false); - } - - #endregion - //private Sunny.UI.UITextBox txtName; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.DataGridViewTextBoxColumn clId; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminAccount; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminPassword; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminType; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminName; - private System.Windows.Forms.DataGridViewTextBoxColumn clIsAdmin; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeleteMk; - private AntdUI.Label label1; - private AntdUI.Input txtAccount; - private AntdUI.Input txtPassword; - private AntdUI.Label label2; - private AntdUI.Label label4; - private AntdUI.Select cbAccountType; - private AntdUI.Input txtName; - private AntdUI.Label label5; - private AntdUI.Button btnAdd; - private AntdUI.Button btnReset; - private AntdUI.Table dgvAdminList; - private AntdUI.Pagination pgnPageNavigate; - private AntdUI.PageHeader pageHeader1; - //private AntdUI.WindowBar windowBar1; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.cs deleted file mode 100644 index de3e626084e0c140ff4d3013c82d4b1c4045d16b..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.cs +++ /dev/null @@ -1,158 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using AntdUI; -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.Common.Util; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmAddAdmin : Window - { - TableComHelper tableComHelper = null; - public FrmAddAdmin() - { - InitializeComponent(); - tableComHelper = new TableComHelper(); - } - - ResponseMsg result = null; - private Dictionary dic = null; - - private void FrmAddAdmin_Load(object sender, EventArgs e) - { - LoadAdminType(); - cbAccountType.SelectedIndex = 0; - LoadAdminList(); - } - - public void LoadAdminList() - { - pgnPageNavigate.PageSizeOptions = new int[] { 10, 30, 50, 100 }; - var dataCount = 0; - dgvAdminList.Spin("正在加载中......", config => - { - TableComHelper tableComHelper = new TableComHelper(); - dgvAdminList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); - dgvAdminList.DataSource = GetPageData(pgnPageNavigate.Current, pgnPageNavigate.PageSize, ref dataCount); - pgnPageNavigate.PageSize = 10; - pgnPageNavigate.Total = dataCount; - }, () => - { - System.Diagnostics.Debug.WriteLine("加载结束"); - }); - } - - object GetPageData(int current, int pageSize, ref int totalCount) - { - result = HttpHelper.Request("Admin/GetAllAdmin"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("GetAllAdmin+接口服务异常,请提交Issue或尝试更新版本!"); - return null; - } - var listDataSource = HttpHelper.JsonToList(result.message); - totalCount = listDataSource.Count; - var listTableSource = new List(); - - int skip = (current - 1) * pageSize; - listDataSource = listDataSource.OrderBy(a => a.Id).Skip(skip).Take(pageSize).ToList(); - - listTableSource = tableComHelper.ConvertToAntdItems(listDataSource); - return listTableSource; - } - - public void LoadAdminType() - { - result = HttpHelper.Request("Admin/GetAllAdminTypes"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("GetAllAdminTypes+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - - cbAccountType.Items.AddRange(HttpHelper.JsonToList(result.message).Select(a => new SelectItem(a.type_name, a.type_id)).ToArray()); - } - - private void btnReset_Click(object sender, EventArgs e) - { - txtAccount.Text = string.Empty; - txtName.Text = string.Empty; - txtPassword.Text = string.Empty; - } - - private void btnAdd_Click(object sender, EventArgs e) - { - var admin = new Admin - { - AdminAccount = txtAccount.Text.Trim(), - AdminPassword = txtPassword.Text.Trim(), - AdminName = txtName.Text.Trim(), - AdminType = cbAccountType.SelectedValue.ToString(), - IsAdmin = cbAccountType.SelectedValue.ToString() == "超级管理员" ? 1 : 0, - DeleteMk = 0, - datains_usr = AdminInfo.Account - }; - if (ValidateHelper.Validate(admin)) - { - result = HttpHelper.Request("Admin​/AddAdmin", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("AddAdmin+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (tf) - { - UIMessageBox.ShowSuccess("添加管理员成功!"); - LoadAdminList(); - return; - } - } - } - - private void pgnPageNavigate_ValueChanged(object sender, PagePageEventArgs e) - { - var dataCount = 0; - dgvAdminList.Spin("正在加载中...", config => - { - dgvAdminList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount); - pgnPageNavigate.PageSize = 10; - pgnPageNavigate.Total = dataCount; - }, () => - { - System.Diagnostics.Debug.WriteLine("加载结束"); - txtAccount.Text = string.Empty; - txtName.Text = string.Empty; - txtPassword.Text = string.Empty; - }); - } - - private string pgnPageNavigate_ShowTotalChanged(object sender, PagePageEventArgs e) - { - return $"{e.PageSize} / {e.Total}条 {e.PageTotal}页"; - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.resx deleted file mode 100644 index 9f8c763d6ce0a2e1b554833bc8778613541ccac3..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.resx +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGADVAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACaklEQVRYR72WPWgT - YRjHMwrqImodFCpUcBJLcRLBQaWI0A8RhCAGugSpQzCLk9mUZtGCrYMgSqHQpVNpi8MhLqVLaykddEgX - KQgaJM6Jvyfm9OnL5e597mIDf3L33vP/eO/er1zO89dsNq+DEngDdsBP8B48BXlwzFPKVtZqtY6ABRD7 - I8BnCWJTT6hGsBjlSnsNrINf7nPa5noSAqEBLc79LhgHfdqA+wvgrVP7KHMIRINQ1KdX1Ew6IS6lDoHY - Q2W+6CukPxnXH8FhX+6+OohbEoD/OjhrEaF+WYW/b+G2ayEfVwLzVgECTCj+cytfAlxT37JiFYDbrwJ8 - sPJz9KCsBG6ZBSCoT9gw8525XzAL/AlQ74yhDTMf8oh6A1WrAPwrij9r5Uv6M+BHpwerVgG4T1SAdEsz - Ii+UyIxvCHh3Fe879+k2KIiDoKHEhpNCiJmzEk4ncWKfI/jYEazSdjqKRHveqf3C/alMAYSM8DtHWM4A - KxIO3AavwbZT06BtLLN5KID4M20Qd43xV54P9cwcwZKvuRovAbybmUIgdgeRTdecNjmILNJekekG5HgW - eTCRmlQhxDzCuIxR112RZyfAAxAo7t8AtPV7hXHNEfxE23kvcqeI+oIg5KCxJqH4j99XKDgHvqlvOWUx - 7larx0bSvH+lipd6YS4aXgHo+Q1VKAPt5EEH0Kfa0SzmhH/pOXX/zZLOAiIDZQ/yobQBZLR7motX0Pbh - 4rJ6/eYzoBtWRruIh3AWKN1+tc2VBUMVFdP2PvUsIOk9FSDd/h2T2msWyMJBkKO97r33NPwfxmollP2i - RicvRvn8Bs1By/gJRf3pAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.Designer.cs deleted file mode 100644 index 7bdf9d9e6f03080e1b97e362334729e04b52836a..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.Designer.cs +++ /dev/null @@ -1,235 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmAddRoom - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAddRoom)); - flpRoom = new System.Windows.Forms.FlowLayoutPanel(); - ttTips = new Sunny.UI.UIToolTip(components); - txtRoomPosition = new AntdUI.Input(); - label5 = new AntdUI.Label(); - txtRoomNo = new AntdUI.Input(); - label7 = new AntdUI.Label(); - label8 = new AntdUI.Label(); - txtMoney = new AntdUI.InputNumber(); - label9 = new AntdUI.Label(); - cboRoomType = new AntdUI.Select(); - txtDeposit = new AntdUI.InputNumber(); - label10 = new AntdUI.Label(); - btnAddRoom = new AntdUI.Button(); - //windowBar1 = new AntdUI.WindowBar(); - SuspendLayout(); - // - // flpRoom - // - flpRoom.AutoScroll = true; - flpRoom.BackColor = System.Drawing.Color.Transparent; - flpRoom.Location = new System.Drawing.Point(83, 56); - flpRoom.Name = "flpRoom"; - flpRoom.Size = new System.Drawing.Size(838, 424); - flpRoom.TabIndex = 116; - flpRoom.MouseEnter += flpRoom_MouseEnter; - // - // ttTips - // - ttTips.BackColor = System.Drawing.Color.FromArgb(54, 54, 54); - ttTips.ForeColor = System.Drawing.Color.FromArgb(239, 239, 239); - ttTips.OwnerDraw = true; - // - // txtRoomPosition - // - txtRoomPosition.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - txtRoomPosition.Location = new System.Drawing.Point(493, 500); - txtRoomPosition.Name = "txtRoomPosition"; - txtRoomPosition.PasswordChar = '*'; - txtRoomPosition.PasswordCopy = true; - txtRoomPosition.PlaceholderText = "房间位置..."; - txtRoomPosition.Size = new System.Drawing.Size(127, 39); - txtRoomPosition.TabIndex = 129; - // - // label5 - // - label5.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - label5.Location = new System.Drawing.Point(385, 508); - label5.Name = "label5"; - label5.Size = new System.Drawing.Size(86, 23); - label5.TabIndex = 128; - label5.Text = "房间位置"; - label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // txtRoomNo - // - txtRoomNo.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - txtRoomNo.Location = new System.Drawing.Point(238, 500); - txtRoomNo.Name = "txtRoomNo"; - txtRoomNo.PlaceholderText = "房号..."; - txtRoomNo.Size = new System.Drawing.Size(127, 39); - txtRoomNo.TabIndex = 127; - txtRoomNo.Validated += txtRoomNo_Validated; - // - // label7 - // - label7.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - label7.Location = new System.Drawing.Point(130, 508); - label7.Name = "label7"; - label7.Size = new System.Drawing.Size(86, 23); - label7.TabIndex = 126; - label7.Text = "房间编号"; - label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // label8 - // - label8.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - label8.Location = new System.Drawing.Point(640, 508); - label8.Name = "label8"; - label8.Size = new System.Drawing.Size(86, 23); - label8.TabIndex = 130; - label8.Text = "房间单价"; - label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // txtMoney - // - txtMoney.DecimalPlaces = 2; - txtMoney.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - txtMoney.Location = new System.Drawing.Point(748, 500); - txtMoney.Name = "txtMoney"; - txtMoney.PlaceholderText = "房间单价..."; - txtMoney.Size = new System.Drawing.Size(127, 39); - txtMoney.TabIndex = 131; - txtMoney.Text = "0.00"; - // - // label9 - // - label9.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - label9.Location = new System.Drawing.Point(130, 572); - label9.Name = "label9"; - label9.Size = new System.Drawing.Size(86, 23); - label9.TabIndex = 132; - label9.Text = "房间类型"; - label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // cboRoomType - // - cboRoomType.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - cboRoomType.Location = new System.Drawing.Point(238, 562); - cboRoomType.Name = "cboRoomType"; - cboRoomType.Size = new System.Drawing.Size(127, 39); - cboRoomType.TabIndex = 133; - cboRoomType.TextChanged += cboRoomType_TextChanged; - // - // txtDeposit - // - txtDeposit.DecimalPlaces = 2; - txtDeposit.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - txtDeposit.Location = new System.Drawing.Point(493, 562); - txtDeposit.Name = "txtDeposit"; - txtDeposit.PlaceholderText = "房间单价..."; - txtDeposit.Size = new System.Drawing.Size(127, 39); - txtDeposit.TabIndex = 135; - txtDeposit.Text = "0.00"; - // - // label10 - // - label10.Font = new System.Drawing.Font("Microsoft YaHei UI", 14.25F); - label10.Location = new System.Drawing.Point(385, 570); - label10.Name = "label10"; - label10.Size = new System.Drawing.Size(86, 23); - label10.TabIndex = 134; - label10.Text = "房间押金"; - label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // btnAddRoom - // - btnAddRoom.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134); - btnAddRoom.Location = new System.Drawing.Point(748, 562); - btnAddRoom.Name = "btnAddRoom"; - btnAddRoom.Size = new System.Drawing.Size(127, 39); - btnAddRoom.TabIndex = 136; - btnAddRoom.Text = "新增客房"; - btnAddRoom.Type = AntdUI.TTypeMini.Primary; - btnAddRoom.Click += btnAddRoom_Click; - // - // windowBar1 - // - //windowBar1.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F); - //windowBar1.Icon = (System.Drawing.Image)resources.GetObject("windowBar1.Icon"); - //windowBar1.Location = new System.Drawing.Point(1, 3); - //windowBar1.MaximizeBox = false; - //windowBar1.MinimizeBox = false; - //windowBar1.Name = "windowBar1"; - //windowBar1.Size = new System.Drawing.Size(999, 40); - //windowBar1.TabIndex = 137; - //windowBar1.Text = "新增客房"; - // - // FrmAddRoom - // - AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - BackColor = System.Drawing.Color.FromArgb(235, 243, 255); - BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - ClientSize = new System.Drawing.Size(1001, 623); - ControlBox = false; - //Controls.Add(windowBar1); - Controls.Add(btnAddRoom); - Controls.Add(txtDeposit); - Controls.Add(label10); - Controls.Add(cboRoomType); - Controls.Add(label9); - Controls.Add(txtMoney); - Controls.Add(label8); - Controls.Add(txtRoomPosition); - Controls.Add(label5); - Controls.Add(txtRoomNo); - Controls.Add(label7); - Controls.Add(flpRoom); - Icon = (System.Drawing.Icon)resources.GetObject("$this.Icon"); - MaximizeBox = false; - MinimizeBox = false; - Name = "FrmAddRoom"; - Text = "新增客房"; - Load += FrmAddRoom_Load; - ResumeLayout(false); - } - - #endregion - private System.Windows.Forms.FlowLayoutPanel flpRoom; - private Sunny.UI.UIToolTip ttTips; - private AntdUI.Input txtRoomPosition; - private AntdUI.Label label5; - private AntdUI.Input txtRoomNo; - private AntdUI.Label label7; - private AntdUI.Label label8; - private AntdUI.InputNumber txtMoney; - private AntdUI.Label label9; - private AntdUI.Select cboRoomType; - private AntdUI.InputNumber txtDeposit; - private AntdUI.Label label10; - private AntdUI.Button btnAddRoom; - //private AntdUI.WindowBar windowBar1; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.cs deleted file mode 100644 index b4972105c6d740adb8bce8cb01a69298a1660ce6..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.cs +++ /dev/null @@ -1,197 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using AntdUI; -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.Common.Util; -using jvncorelib.EntityLib; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmAddRoom : Window - { - public FrmAddRoom() - { - InitializeComponent(); - } - - Room rn; - - ResponseMsg result = null; - Dictionary dic = null; - - private void btnAddRoom_Click(object sender, EventArgs e) - { - dic = new Dictionary - { - { "roomType", Convert.ToString(cboRoomType.SelectedValue.ToString())} - }; - result = HttpHelper.Request("RoomType/SelectRoomTypeByType", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomTypeByType+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - RoomType roomType = HttpHelper.JsonToModel(result.message); - - txtMoney.Text = Convert.ToDecimal(txtMoney.Text) <= 0 ? roomType.RoomRent.ToString() : txtMoney.Text; - txtDeposit.Text = Convert.ToDecimal(txtDeposit.Text) <= 0 ? roomType.RoomDeposit.ToString() : txtDeposit.Text; - - rn = new Room() - { - RoomNo = txtRoomNo.Text, - RoomType = cboRoomType.SelectedIndex, - RoomMoney = Convert.ToDecimal(txtMoney.Text), - RoomPosition = txtRoomPosition.Text, - RoomStateId = 0, - RoomDeposit = Convert.ToDecimal(txtDeposit.Text), - datains_usr = AdminInfo.Account - }; - if (ValidateHelper.Validate(rn)) - { - result = HttpHelper.Request("Room​/InsertRoom", HttpHelper.ModelToJson(rn)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertRoom+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (tf) - { - UIMessageBox.Show("添加房间成功!"); - LoadRoom(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + AdminInfo.Name + "于" + Convert.ToDateTime(DateTime.Now) + "新增了房间,房间号为:" + txtRoomNo.Text + ",房间类型为:" + cboRoomType.Text, 2); - #endregion - txtRoomNo.Text = string.Empty; - txtDeposit.Text = "0.00"; - txtMoney.Text = "0.00"; - txtRoomPosition.Text = string.Empty; - - return; - } - } - else - { - UIMessageBox.Show("房间信息不完整,请重试!"); - } - - } - - - ucRoom room = null; - private void FrmAddRoom_Load(object sender, EventArgs e) - { - LoadRoom(); - dic = new Dictionary - { - { "isDelete","0"} - }; - result = HttpHelper.Request("RoomType/SelectRoomTypesAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomTypesAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboRoomType.Items.AddRange(HttpHelper.JsonToList(result.message).Select(a => new SelectItem(a.RoomName, a.Roomtype)).ToArray()); - cboRoomType.SelectedIndex = 0; - - } - - public void LoadRoom() - { - result = HttpHelper.Request("Room/SelectRoomAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List rooms = HttpHelper.JsonToList(result.message); - flpRoom.Controls.Clear(); - for (int i = 0; i < rooms.Count; i++) - { - room = new ucRoom(); - room.btnRoom.Text = string.Format("{0}\n\n{1}\n\n{2}", rooms[i].RoomName, rooms[i].RoomNo, rooms[i].CustoName); - room.lblMark = "Mark"; //=Mark时,判断为房态图,禁用右键菜单 - room.romRoomInfo = rooms[i]; - flpRoom.Controls.Add(room); - } - } - - private void cboRoomType_TextChanged(object sender, EventArgs e) - { - dic = new Dictionary() - { - { "roomTypeId",cboRoomType.SelectedValue.ToString()} - }; - result = HttpHelper.Request("RoomType/SelectRoomTypeByType", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomTypeByType+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - - var roomType = HttpHelper.JsonToModel(result.message); - - txtMoney.Value = !roomType.IsNullOrEmpty() ? roomType.RoomRent : 0; - txtDeposit.Value = !roomType.IsNullOrEmpty() ? roomType.RoomDeposit : 0; - } - - private bool CheckRoomExists(string RoomNo) - { - bool ret = false; - dic = new Dictionary - { - { "no", RoomNo } - }; - result = HttpHelper.Request("Room/SelectRoomByRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return ret; - } - var room = HttpHelper.JsonToModel(result.message); - if (room.RoomNo != null) - { - ret = true; - } - return ret; - } - - private void flpRoom_MouseEnter(object sender, EventArgs e) - { - return; - } - - private void txtRoomNo_Validated(object sender, EventArgs e) - { - if (CheckRoomExists(txtRoomNo.Text)) - { - UIMessageBox.ShowError("房间已存在。"); - return; - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.resx deleted file mode 100644 index b9f6ba627f39c1b28fd1c930342c3d9e07053bd3..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.resx +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - - - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAARxJREFUWEftk08OwUAUxnsSCxunsJI4iJ04gZ0biAu4BZa9hBULh7Av35v+glRm - OqMqQX9JM96f770v7chCFEUxuzREM3IdC0bGI+GoHNEczdozNg5pehKdSnkJpWSQp+m1fGcinWunFpSS - QR6v19KlCXQeLXZq4YovgDxOr6VT+s3A0HKE7RvQwjG9tnxO+jMGVO9r6cEadW5JOyxnECaDPKzX0o01 - 6TzrGZB2OLUgTAa5X6+FK3rMwIT0DUrtGaBeC+3JIP8CA4Rvh/F/bEAXO7eH8Bn2t2agFvZ3Bn73DjDe - P596Z6Az0NiA3XRGReP+Hfz+fgM+GN/+J/DB+M6Af/4rlyeEu1gPkA6+gYVE+7KtOVUDFldzd7LsCvM7 - /TvRsI3tAAAAAElFTkSuQmCC - - - - - AAABAAEAICAAAAEAGACHAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABHElEQVRYR+2TTw7B - QBTGexILG6ewkjiInTiBnRuIC7gFlr2EFQuHsC/fm/6CVGY6oypBf0kz3p/vvS/tyEIURTG7NEQzch0L - RsYj4agc0RzN2jM2Dml6Ep1KeQmlZJCn6bV8ZyKda6cWlJJBHq/X0qUJdB4tdmrhii+APE6vpVP6zcDQ - coTtG9DCMb22fE76MwZU72vpwRp1bkk7LGcQJoM8rNfSjTXpPOsZkHY4tSBMBrlfr4UreszAhPQNSu0Z - oF4L7ckg/wIDhG+H8X9sQBc7t4fwGfa3ZqAW9ncGfvcOMN4/n3pnoDPQ2IDddEZF4/4d/P5+Az4Y3/4n - 8MH4zoB//iuXJ4S7WA+QDr6BhUT7sq05VQMWV3N3suwK8zv9O9Gwje0AAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.Designer.cs deleted file mode 100644 index 9b9dbc5196a89562f2613900d435c0e766fd2d2b..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.Designer.cs +++ /dev/null @@ -1,282 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmAdminManager - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAdminManager)); - this.btnAuthority = new Sunny.UI.UIButton(); - this.dgvAdminList = new Sunny.UI.UIDataGridView(); - this.clId = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAdminAccount = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAdminPassword = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAdminType = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAdminName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clIsAdmin = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeleteMk = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dgvAdminList)).BeginInit(); - this.SuspendLayout(); - // - // btnAuthority - // - this.btnAuthority.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAuthority.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAuthority.Location = new System.Drawing.Point(888, 580); - this.btnAuthority.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAuthority.Name = "btnAuthority"; - this.btnAuthority.Radius = 20; - this.btnAuthority.Size = new System.Drawing.Size(106, 35); - this.btnAuthority.TabIndex = 129; - this.btnAuthority.Text = "启/禁用账号"; - this.btnAuthority.Click += new System.EventHandler(this.btnAuthority_Click); - // - // dgvAdminList - // - this.dgvAdminList.AllowUserToAddRows = false; - this.dgvAdminList.AllowUserToDeleteRows = false; - this.dgvAdminList.AllowUserToResizeColumns = false; - this.dgvAdminList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvAdminList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvAdminList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvAdminList.BackgroundColor = System.Drawing.Color.White; - this.dgvAdminList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvAdminList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvAdminList.ColumnHeadersHeight = 32; - this.dgvAdminList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvAdminList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clId, - this.clAdminAccount, - this.clAdminPassword, - this.clAdminType, - this.clAdminName, - this.clIsAdmin, - this.clDeleteMk, - this.Column1, - this.Column2, - this.Column3, - this.Column4, - this.Column5, - this.Column6, - this.Column7}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvAdminList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvAdminList.EnableHeadersVisualStyles = false; - this.dgvAdminList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvAdminList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvAdminList.Location = new System.Drawing.Point(3, 38); - this.dgvAdminList.Name = "dgvAdminList"; - this.dgvAdminList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvAdminList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvAdminList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvAdminList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvAdminList.RowTemplate.Height = 29; - this.dgvAdminList.SelectedIndex = -1; - this.dgvAdminList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvAdminList.Size = new System.Drawing.Size(991, 535); - this.dgvAdminList.TabIndex = 130; - // - // clId - // - this.clId.DataPropertyName = "Id"; - this.clId.HeaderText = "编号"; - this.clId.Name = "clId"; - this.clId.ReadOnly = true; - // - // clAdminAccount - // - this.clAdminAccount.DataPropertyName = "AdminAccount"; - this.clAdminAccount.HeaderText = "管理员账号"; - this.clAdminAccount.Name = "clAdminAccount"; - this.clAdminAccount.ReadOnly = true; - // - // clAdminPassword - // - this.clAdminPassword.DataPropertyName = "AdminPassword"; - this.clAdminPassword.HeaderText = "管理员密码"; - this.clAdminPassword.Name = "clAdminPassword"; - this.clAdminPassword.ReadOnly = true; - this.clAdminPassword.Visible = false; - // - // clAdminType - // - this.clAdminType.DataPropertyName = "TypeName"; - this.clAdminType.HeaderText = "管理员类型"; - this.clAdminType.Name = "clAdminType"; - this.clAdminType.ReadOnly = true; - // - // clAdminName - // - this.clAdminName.DataPropertyName = "AdminName"; - this.clAdminName.HeaderText = "真实姓名"; - this.clAdminName.Name = "clAdminName"; - this.clAdminName.ReadOnly = true; - // - // clIsAdmin - // - this.clIsAdmin.DataPropertyName = "IsAdminNm"; - this.clIsAdmin.HeaderText = "是否为超级管理"; - this.clIsAdmin.Name = "clIsAdmin"; - this.clIsAdmin.ReadOnly = true; - // - // clDeleteMk - // - this.clDeleteMk.DataPropertyName = "DeleteNm"; - this.clDeleteMk.HeaderText = "删除标记"; - this.clDeleteMk.Name = "clDeleteMk"; - this.clDeleteMk.ReadOnly = true; - // - // Column1 - // - this.Column1.DataPropertyName = "DeleteMk"; - this.Column1.HeaderText = "Column1"; - this.Column1.Name = "Column1"; - this.Column1.ReadOnly = true; - this.Column1.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "AdminType"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "IsAdmin"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datains_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datains_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // Column6 - // - this.Column6.DataPropertyName = "datachg_usr"; - this.Column6.HeaderText = "Column6"; - this.Column6.Name = "Column6"; - this.Column6.ReadOnly = true; - this.Column6.Visible = false; - // - // Column7 - // - this.Column7.DataPropertyName = "datachg_date"; - this.Column7.HeaderText = "Column7"; - this.Column7.Name = "Column7"; - this.Column7.ReadOnly = true; - this.Column7.Visible = false; - // - // FrmAdminManager - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1001, 623); - this.ControlBox = false; - this.Controls.Add(this.dgvAdminList); - this.Controls.Add(this.btnAuthority); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmAdminManager"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "启/禁用管理员"; - this.Load += new System.EventHandler(this.FrmAdminManager_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvAdminList)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - private Sunny.UI.UIButton btnAuthority; - private Sunny.UI.UIDataGridView dgvAdminList; - private System.Windows.Forms.DataGridViewTextBoxColumn clId; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminAccount; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminPassword; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminType; - private System.Windows.Forms.DataGridViewTextBoxColumn clAdminName; - private System.Windows.Forms.DataGridViewTextBoxColumn clIsAdmin; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeleteMk; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn Column6; - private System.Windows.Forms.DataGridViewTextBoxColumn Column7; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.cs deleted file mode 100644 index ac6fa7c7c03db33b083b42ad99072b6e734c0d91..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.cs +++ /dev/null @@ -1,86 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmAdminManager : UIForm - { - public FrmAdminManager() - { - InitializeComponent(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - private void FrmAdminManager_Load(object sender, EventArgs e) - { - LoadAdminList(); - } - - public void LoadAdminList() - { - result = HttpHelper.Request("Admin/GetAllAdminList"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("GetAllAdminList+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvAdminList.AutoGenerateColumns = false; - dgvAdminList.DataSource = HttpHelper.JsonToList(result.message); - } - - private void btnAuthority_Click(object sender, EventArgs e) - { - if (dgvAdminList.SelectedRows.Count > 0) - { - Admin admin = new Admin() - { - Id = Convert.ToInt32(dgvAdminList.SelectedRows[0].Cells["clId"].Value), - DeleteMk = Convert.ToInt32(dgvAdminList.SelectedRows[0].Cells["Column1"].Value), - datachg_usr = AdminInfo.Account - }; - result = HttpHelper.Request("Admin/UpdAccount", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdAccount+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (tf) - { - UIMessageBox.ShowSuccess("操作成功!"); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "禁用/启用管理账号操作!新增值为:" + admin.DeleteMk, 2); - #endregion - LoadAdminList(); - return; - } - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.resx deleted file mode 100644 index b233c84bf4ab08af53bbccabb0aeb64be05e277a..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.resx +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGAA4BAAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAADzUlEQVRYR62XS0gV - URjHLbJ8ZQYWEQRGWVlCUEhBSW7EWvTcJEgoFQRZYYlFEOYiWrSx3PRauAu1RUEEUVZGRE8VQoxqEelC - NO1tmZD2+4/fvdxx7r0zan/4cc5833e+OTNz5jwSgmp0dDQJNo6MjNTBM/gIf+ALvIV7cAiWWJP/IxIu - tMRtMEwn4oqYb9BItcBSTE4kmEuiPZSvlDgkbL1wH+rhLFyARnhqIY647od6qmstZXDRKJPG1ZRfLdkg - 6CbbIN3CXCJsOmThPwZtaidRb4dCC/MXbTJocGqsuZPgJRRTnWMhviJ+EZyDHsvxHjabO7aITSKwVI0k - 6nqtk/qWtE2Ho9BnuR7AanN7RUwiAVthwBpoVOeYe9IiVRl5ui1nA0WWudzCOR9niwU+p5j44Ikh8pVD - 6HOcBPc4wq6n32sBH6DYXB4RUoBfI19v6KHRjL0GFliYS9g1qK/CL3gCi801Jgyp0AxDcI0GaeZyCd8a - eI3fI+x/oRXWWbhL2LdAh8UeoUgxl+MsMkc3bDezR/gugp5Cv2i4k1yXQA/0QbmZXSJ+Br5a+AF3YJ65 - nATnQWonMMPMHuG/AQOwykyOuJ4F1aDktWb2CF8pdMFvWM69poUc78x4xTHEEH51QBPLUjM5sqcrBr8O - 5IIeUm/7MMVMGVPN8Bn2WWxU4Z9SByT8GrzSZUhW4yzrwCeKHRbnEj71XFPxoGLjiZguijJr6hG+JmKG - 4Tr1FCXPs4ZaZPItziXsldCvuCAi9gXkWXOXsF8CrS2aGVODdqDWyRxQxL+hiPU23R0gMMgn8HQAm37H - fKgyU1jYYnYAu+cT+A5C7NE6oIUqDQocQ4TwxXsD7kFoxg7QE9U5hnHCPuEOgGdCw7YMWi3mAEWi46BS - g0HStsuz4cD2vzqgX1VrjcZANqFjExEVJwnGqFMxtqiDEPtxCi1CLmH3dABz5FR8i+tMczk3iLsYYdsF - nUoeRMQ+AtdkxXXsxYgL3+UYWx5UEqInDoPt9DgqINeaOSIu/nIsYYzckDymWGGuKYt8+0EzpHJ7NyQS - Rq1oWlZ/ghamuHN6UJEnB/TNdfPbkG0ur4hJI6DCgjUvnKEac3n2E+1Xwk3L1wkbzBVbBGk3q9GtRkMU - mrlc39RPlmM3aG+pPPq9N5nbXwTPBm0key2Bzn4nqEbd84WEX+dH7RkbQJ2XWqivt5DgoqEOKCWU4aMZ - 1zr33QVtybTdLoKdcBB0EAn/qtQnfzSLFElCh1NtRIIcTr9TNMHUDqfjReJkKAQtp9GO55rIqmACh5mE - hH9jE4xJZSQJkAAAAABJRU5ErkJggg== - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.Designer.cs deleted file mode 100644 index 50c88bfa80bbd104961d57dde0253b7a6ca4c676..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.Designer.cs +++ /dev/null @@ -1,245 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmAuthority - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAuthority)); - this.tfModuleZero = new Sunny.UI.UITransfer(); - this.cbAccountType = new Sunny.UI.UIComboBox(); - this.txtAccount = new Sunny.UI.UITextBox(); - this.txtName = new Sunny.UI.UITextBox(); - this.label6 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.btnFind = new Sunny.UI.UIButton(); - this.btnAuthority = new Sunny.UI.UIButton(); - this.uiPanel1 = new Sunny.UI.UIPanel(); - this.uiPanel2 = new Sunny.UI.UIPanel(); - this.SuspendLayout(); - // - // tfModuleZero - // - this.tfModuleZero.Font = new System.Drawing.Font("微软雅黑", 12F); - this.tfModuleZero.Location = new System.Drawing.Point(7, 227); - this.tfModuleZero.Margin = new System.Windows.Forms.Padding(7, 9, 7, 9); - this.tfModuleZero.MinimumSize = new System.Drawing.Size(1, 1); - this.tfModuleZero.Name = "tfModuleZero"; - this.tfModuleZero.Padding = new System.Windows.Forms.Padding(1); - this.tfModuleZero.RadiusSides = Sunny.UI.UICornerRadiusSides.None; - this.tfModuleZero.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; - this.tfModuleZero.Size = new System.Drawing.Size(987, 341); - this.tfModuleZero.TabIndex = 0; - this.tfModuleZero.Text = "uiTransfer1"; - this.tfModuleZero.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - // - // cbAccountType - // - this.cbAccountType.DataSource = null; - this.cbAccountType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cbAccountType.Enabled = false; - this.cbAccountType.FillColor = System.Drawing.Color.White; - this.cbAccountType.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cbAccountType.Items.AddRange(new object[] { - "管理员", - "超级管理员"}); - this.cbAccountType.Location = new System.Drawing.Point(238, 118); - this.cbAccountType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cbAccountType.MinimumSize = new System.Drawing.Size(63, 0); - this.cbAccountType.Name = "cbAccountType"; - this.cbAccountType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cbAccountType.Radius = 20; - this.cbAccountType.Size = new System.Drawing.Size(250, 35); - this.cbAccountType.TabIndex = 123; - this.cbAccountType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cbAccountType.Watermark = ""; - // - // txtAccount - // - this.txtAccount.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtAccount.FillColor = System.Drawing.Color.White; - this.txtAccount.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtAccount.Location = new System.Drawing.Point(236, 57); - this.txtAccount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtAccount.Maximum = 2147483647D; - this.txtAccount.Minimum = -2147483648D; - this.txtAccount.MinimumSize = new System.Drawing.Size(1, 1); - this.txtAccount.Name = "txtAccount"; - this.txtAccount.Padding = new System.Windows.Forms.Padding(5); - this.txtAccount.Radius = 20; - this.txtAccount.Size = new System.Drawing.Size(506, 35); - this.txtAccount.Style = Sunny.UI.UIStyle.Custom; - this.txtAccount.StyleCustomMode = true; - this.txtAccount.TabIndex = 121; - this.txtAccount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // txtName - // - this.txtName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtName.Enabled = false; - this.txtName.FillColor = System.Drawing.Color.White; - this.txtName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtName.Location = new System.Drawing.Point(626, 118); - this.txtName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtName.Maximum = 2147483647D; - this.txtName.Minimum = -2147483648D; - this.txtName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtName.Name = "txtName"; - this.txtName.Padding = new System.Windows.Forms.Padding(5); - this.txtName.Radius = 20; - this.txtName.Size = new System.Drawing.Size(250, 35); - this.txtName.Style = Sunny.UI.UIStyle.Custom; - this.txtName.StyleCustomMode = true; - this.txtName.TabIndex = 122; - this.txtName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label6.Location = new System.Drawing.Point(125, 125); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(88, 25); - this.label6.TabIndex = 120; - this.label6.Text = "账户类型"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(513, 125); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(88, 25); - this.label3.TabIndex = 119; - this.label3.Text = "真实姓名"; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(125, 63); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(86, 25); - this.label2.TabIndex = 118; - this.label2.Text = "账 号"; - // - // btnFind - // - this.btnFind.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnFind.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnFind.Location = new System.Drawing.Point(770, 57); - this.btnFind.MinimumSize = new System.Drawing.Size(1, 1); - this.btnFind.Name = "btnFind"; - this.btnFind.Radius = 20; - this.btnFind.Size = new System.Drawing.Size(106, 35); - this.btnFind.TabIndex = 124; - this.btnFind.Text = "查 询"; - this.btnFind.Click += new System.EventHandler(this.btnFind_Click); - // - // btnAuthority - // - this.btnAuthority.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAuthority.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAuthority.Location = new System.Drawing.Point(888, 577); - this.btnAuthority.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAuthority.Name = "btnAuthority"; - this.btnAuthority.Radius = 20; - this.btnAuthority.Size = new System.Drawing.Size(106, 35); - this.btnAuthority.TabIndex = 125; - this.btnAuthority.Text = "分配权限"; - this.btnAuthority.Click += new System.EventHandler(this.btnAuthority_Click); - // - // uiPanel1 - // - this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.uiPanel1.Location = new System.Drawing.Point(7, 186); - this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1); - this.uiPanel1.Name = "uiPanel1"; - this.uiPanel1.Size = new System.Drawing.Size(454, 35); - this.uiPanel1.TabIndex = 126; - this.uiPanel1.Text = "我未拥有的系统模块"; - this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - // - // uiPanel2 - // - this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.uiPanel2.Location = new System.Drawing.Point(541, 183); - this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1); - this.uiPanel2.Name = "uiPanel2"; - this.uiPanel2.Size = new System.Drawing.Size(453, 38); - this.uiPanel2.TabIndex = 127; - this.uiPanel2.Text = "我拥有的系统模块"; - this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - // - // FrmAuthority - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1001, 623); - this.ControlBox = false; - this.Controls.Add(this.uiPanel2); - this.Controls.Add(this.uiPanel1); - this.Controls.Add(this.btnAuthority); - this.Controls.Add(this.btnFind); - this.Controls.Add(this.cbAccountType); - this.Controls.Add(this.txtAccount); - this.Controls.Add(this.txtName); - this.Controls.Add(this.label6); - this.Controls.Add(this.label3); - this.Controls.Add(this.label2); - this.Controls.Add(this.tfModuleZero); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmAuthority"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "权限分配"; - this.Load += new System.EventHandler(this.FrmAuthority_Load); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UITransfer tfModuleZero; - private Sunny.UI.UIComboBox cbAccountType; - private Sunny.UI.UITextBox txtAccount; - private Sunny.UI.UITextBox txtName; - private System.Windows.Forms.Label label6; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label2; - private Sunny.UI.UIButton btnFind; - private Sunny.UI.UIButton btnAuthority; - private Sunny.UI.UIPanel uiPanel1; - private Sunny.UI.UIPanel uiPanel2; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.cs deleted file mode 100644 index 8d30c1cb7676d18a4faa8e328d5bf672dae82f2a..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.cs +++ /dev/null @@ -1,166 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using jvncorelib.EntityLib; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmAuthority : UIForm - { - public FrmAuthority() - { - InitializeComponent(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - private void FrmAuthority_Load(object sender, EventArgs e) - { - } - - public void LoadAdminInfo() - { - dic = new Dictionary() - { - { "AdminAccount",txtAccount.Text.Trim() } - }; - result = HttpHelper.Request("Admin/GetAdminInfoByAdminAccount", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("GetAdminInfoByAdminAccount+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var adminInfo = HttpHelper.JsonToModel(result.message); - if (adminInfo.IsNullOrEmpty()) - { - UIMessageTip.ShowError("找不到对应的管理员,请检查是否输入有误!"); - cbAccountType.Text = ""; - txtName.Text = ""; - txtAccount.Text = ""; - return; - } - txtAccount.Text = adminInfo.AdminAccount; - txtName.Text = adminInfo.AdminName; - cbAccountType.Text = adminInfo.TypeName; - } - - public void LoadAllMyModule() - { - tfModuleZero.ItemsLeft.Clear(); - var admin = new Admin - { - AdminAccount = txtAccount.Text.Trim(), - }; - - result = HttpHelper.Request("Module/GetAllModuleByAdmin", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("GetAllModuleByAdmin+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var listMyModule = HttpHelper.JsonToList(result.message); - listMyModule.ForEach(myModule => - { - tfModuleZero.ItemsRight.Add(myModule.module_name); - }); - result = HttpHelper.Request("Module/GetAllModule"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("GetAllModule+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var listModules = HttpHelper.JsonToList(result.message); - listModules.ForEach(module => - { - var myModule = listMyModule.FirstOrDefault(a => a.module_name.Equals(module.module_name)); - if (myModule == null) - { - tfModuleZero.ItemsLeft.Add(module.module_name); - } - }); - } - - private void btnFind_Click(object sender, EventArgs e) - { - tfModuleZero.ItemsRight.Clear(); - LoadAdminInfo(); - LoadAllMyModule(); - } - - private void btnAuthority_Click(object sender, EventArgs e) - { - if (string.IsNullOrWhiteSpace(txtAccount.Text.Trim())) - { - UIMessageTip.ShowError("账号不能为空,请检查!"); - return; - } - dic = new Dictionary() - { - { "AdminAccount",txtAccount.Text.Trim() } - }; - var admin = new Admin { AdminAccount = txtAccount.Text.Trim() }; - result = HttpHelper.Request("Module/GetAllModuleByAdmin", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("GetAllModuleByAdmin+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var listExsitModule = HttpHelper.JsonToList(result.message); - var listAddModule = new List(); - if (listExsitModule != null) - { - ModuleZero moduleZero = new ModuleZero() { admin_account = txtAccount.Text.Trim() }; - result = HttpHelper.Request("Module/DelModuleZeroList", HttpHelper.ModelToJson(moduleZero)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("DelModuleZeroList+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - for (int i = 0; i < tfModuleZero.ItemsRight.Count; i++) - { - var newModule = tfModuleZero.ItemsRight[i].ToString(); - listAddModule.Add(new ModuleZero() { admin_account = txtAccount.Text.Trim(), module_name = newModule, module_enable = 1 }); - } - } - if (!listAddModule.IsNullOrEmpty()) - { - result = HttpHelper.Request("Module/AddModuleZeroList", HttpHelper.ModelToJson(listAddModule)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("AddModuleZeroList+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (tf) - { - UIMessageBox.ShowSuccess("批量授权成功!"); - return; - } - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.resx deleted file mode 100644 index f0be0ca624b7904a46976a34652aa818b165eb25..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.resx +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGADMAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACYUlEQVRYR92XQUhU - URSGZ+FO2iQJRosiCXJVieCuQVqVLiJaqAQFFbgQokW0CHJX4rpdEFFgBEG4ShSCFCMQhCgIokWLaOVK - XLSZ6Tv3/jnzfPPevfdhCX3wc51z/vPf4zjjaC2GRqPR12w2BzlH0XV0Dz1Cr9Aieopm0W00gUbQADqo - iOoQcofLK8Hse8VUh5BF5SXD7BY6oqh0yKgraBNNI/sRDKOT6DDqRvfNUwT9OcWlw/APhayplCO0gIFn - WPY4mHnoRz0ETKqVI3IB+0ZmOPs0lgdDHcMTtOGmBI+fy9IR+sEF/oDXFnmJZjTegqL7eRsYv6EFNKp2 - ISkLtFG+gEpR/D8LEDSk5r4tMKCmvQYOqBykygLM3NJ4C+pHfdsZit8uu6i4wDWNt6B4SH0znFA5SMUF - Lmq8BcVu9Y1BlYNUXGBE41nUN+oqBbEF0Ar6gDbQZ/QVfUc/kX2O2IfSL2XbAmc0noXGF3lSyL+iC5Df - FjiuUhYar+VJIWoBsvvltwV6VM5CY1aeFGIXuCS/0aVyFkwXZEghdoHHZuZ8q1Iemr0uMo3YBT6ZmTP/ - S6gdDGsuNp7gAmS2P/2nVO4MhqveF03MAu/MyDmvUjkYl1x0HKULkPXATJzb6LTK5WAcc9FxdFyAehc5 - z7zFEfVa2YGBy34uSC6Yi4+hnWeRr1+olQazMUtkFuCyK+ijeuVvuxgIOIuWldcJtwDnObvMlzw8nnIh - ewF5dwnc9tEZ7M/t3Re/QWMa3TsIHUILuicHvVU0Lvvfg7tuonV3q2edi2+o/e/g0vMo+L9DMbXabxYs - j9H1yEhiAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.Designer.cs deleted file mode 100644 index 975d12d563f874632d366a3af3f66238a2901926..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.Designer.cs +++ /dev/null @@ -1,102 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmBaseManager - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.flpMenu = new Sunny.UI.UIFlowLayoutPanel(); - this.uiButton1 = new Sunny.UI.UIButton(); - this.btnRoomFix = new Sunny.UI.UIButton(); - this.flpMenu.SuspendLayout(); - this.SuspendLayout(); - // - // flpMenu - // - this.flpMenu.Controls.Add(this.uiButton1); - this.flpMenu.Controls.Add(this.btnRoomFix); - this.flpMenu.Font = new System.Drawing.Font("微软雅黑", 12F); - this.flpMenu.Location = new System.Drawing.Point(1, 2); - this.flpMenu.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.flpMenu.MinimumSize = new System.Drawing.Size(1, 1); - this.flpMenu.Name = "flpMenu"; - this.flpMenu.Padding = new System.Windows.Forms.Padding(2); - this.flpMenu.Size = new System.Drawing.Size(208, 486); - this.flpMenu.TabIndex = 0; - this.flpMenu.Text = "uiFlowLayoutPanel1"; - this.flpMenu.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - // - // uiButton1 - // - this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand; - this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F); - this.uiButton1.Location = new System.Drawing.Point(8, 60); - this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1); - this.uiButton1.Name = "uiButton1"; - this.uiButton1.Size = new System.Drawing.Size(192, 42); - this.uiButton1.TabIndex = 3; - this.uiButton1.Text = "维修进度"; - // - // btnRoomFix - // - this.btnRoomFix.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnRoomFix.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnRoomFix.Location = new System.Drawing.Point(8, 9); - this.btnRoomFix.MinimumSize = new System.Drawing.Size(1, 1); - this.btnRoomFix.Name = "btnRoomFix"; - this.btnRoomFix.Size = new System.Drawing.Size(192, 42); - this.btnRoomFix.TabIndex = 1; - this.btnRoomFix.Text = "客房报修"; - // - // FrmBaseManager - // - this.AllowShowTitle = false; - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1072, 490); - this.ControlBox = false; - this.Controls.Add(this.flpMenu); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmBaseManager"; - this.Padding = new System.Windows.Forms.Padding(0); - this.ShowRect = false; - this.ShowTitle = false; - this.Text = "FrmBaseManager"; - this.Load += new System.EventHandler(this.FrmBaseManager_Load); - this.flpMenu.ResumeLayout(false); - this.ResumeLayout(false); - - } - - #endregion - - private Sunny.UI.UIFlowLayoutPanel flpMenu; - private Sunny.UI.UIButton btnRoomFix; - private Sunny.UI.UIButton uiButton1; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.cs deleted file mode 100644 index e9e7c293e35d5ed4d9541b5526f068bccf394148..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.cs +++ /dev/null @@ -1,40 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmBaseManager : UIForm - { - public FrmBaseManager() - { - InitializeComponent(); - } - - private void FrmBaseManager_Load(object sender, EventArgs e) - { - - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.resx deleted file mode 100644 index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.Designer.cs deleted file mode 100644 index 8b9be9af731195e83e56d09567dff2444c220595..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.Designer.cs +++ /dev/null @@ -1,441 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmCash - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCash)); - this.dgvCashList = new Sunny.UI.UIDataGridView(); - this.clAssetsNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAssetsName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAssetsValue = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDepartment = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clStorageTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAssetsSource = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clAssetsManager = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.cboCashPerson = new Sunny.UI.UIComboBox(); - this.label1 = new System.Windows.Forms.Label(); - this.btnOK = new Sunny.UI.UIButton(); - this.label11 = new System.Windows.Forms.Label(); - this.txtFrom = new Sunny.UI.UITextBox(); - this.label10 = new System.Windows.Forms.Label(); - this.label9 = new System.Windows.Forms.Label(); - this.cboClub = new Sunny.UI.UIComboBox(); - this.label8 = new System.Windows.Forms.Label(); - this.txtCashMoney = new Sunny.UI.UITextBox(); - this.label7 = new System.Windows.Forms.Label(); - this.txtCashName = new Sunny.UI.UITextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.txtCashNo = new Sunny.UI.UITextBox(); - this.dtpDate = new Sunny.UI.UIDatePicker(); - ((System.ComponentModel.ISupportInitialize)(this.dgvCashList)).BeginInit(); - this.SuspendLayout(); - // - // dgvCashList - // - this.dgvCashList.AllowUserToAddRows = false; - this.dgvCashList.AllowUserToDeleteRows = false; - this.dgvCashList.AllowUserToResizeColumns = false; - this.dgvCashList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvCashList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvCashList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvCashList.BackgroundColor = System.Drawing.Color.White; - this.dgvCashList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvCashList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvCashList.ColumnHeadersHeight = 32; - this.dgvCashList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvCashList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clAssetsNo, - this.clAssetsName, - this.clAssetsValue, - this.clDepartment, - this.clStorageTime, - this.clAssetsSource, - this.clAssetsManager}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvCashList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvCashList.EnableHeadersVisualStyles = false; - this.dgvCashList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvCashList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvCashList.Location = new System.Drawing.Point(3, 38); - this.dgvCashList.Name = "dgvCashList"; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvCashList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvCashList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvCashList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvCashList.RowTemplate.Height = 29; - this.dgvCashList.SelectedIndex = -1; - this.dgvCashList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvCashList.Size = new System.Drawing.Size(809, 582); - this.dgvCashList.TabIndex = 2; - // - // clAssetsNo - // - this.clAssetsNo.DataPropertyName = "CashNo"; - this.clAssetsNo.HeaderText = "资产编号"; - this.clAssetsNo.Name = "clAssetsNo"; - // - // clAssetsName - // - this.clAssetsName.DataPropertyName = "CashName"; - this.clAssetsName.HeaderText = "资产名称"; - this.clAssetsName.Name = "clAssetsName"; - // - // clAssetsValue - // - this.clAssetsValue.DataPropertyName = "CashPriceStr"; - this.clAssetsValue.HeaderText = "资产总值"; - this.clAssetsValue.Name = "clAssetsValue"; - // - // clDepartment - // - this.clDepartment.DataPropertyName = "DeptName"; - this.clDepartment.HeaderText = "所属部门"; - this.clDepartment.Name = "clDepartment"; - // - // clStorageTime - // - this.clStorageTime.DataPropertyName = "CashTime"; - this.clStorageTime.HeaderText = "入库时间"; - this.clStorageTime.Name = "clStorageTime"; - // - // clAssetsSource - // - this.clAssetsSource.DataPropertyName = "CashSource"; - this.clAssetsSource.HeaderText = "资产来源"; - this.clAssetsSource.Name = "clAssetsSource"; - // - // clAssetsManager - // - this.clAssetsManager.DataPropertyName = "PersonName"; - this.clAssetsManager.HeaderText = "资产经办人"; - this.clAssetsManager.Name = "clAssetsManager"; - // - // cboCashPerson - // - this.cboCashPerson.DataSource = null; - this.cboCashPerson.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboCashPerson.FillColor = System.Drawing.Color.White; - this.cboCashPerson.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.cboCashPerson.Location = new System.Drawing.Point(826, 520); - this.cboCashPerson.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboCashPerson.MinimumSize = new System.Drawing.Size(63, 0); - this.cboCashPerson.Name = "cboCashPerson"; - this.cboCashPerson.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboCashPerson.Radius = 20; - this.cboCashPerson.Size = new System.Drawing.Size(165, 23); - this.cboCashPerson.TabIndex = 167; - this.cboCashPerson.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboCashPerson.Watermark = ""; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(864, 492); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(77, 14); - this.label1.TabIndex = 166; - this.label1.Text = "资产经办人"; - // - // btnOK - // - this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnOK.Location = new System.Drawing.Point(852, 565); - this.btnOK.MinimumSize = new System.Drawing.Size(1, 1); - this.btnOK.Name = "btnOK"; - this.btnOK.Radius = 20; - this.btnOK.Size = new System.Drawing.Size(112, 33); - this.btnOK.TabIndex = 165; - this.btnOK.Text = "录入"; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // label11 - // - this.label11.AutoSize = true; - this.label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label11.Location = new System.Drawing.Point(864, 419); - this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(63, 14); - this.label11.TabIndex = 164; - this.label11.Text = "资产来源"; - // - // txtFrom - // - this.txtFrom.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtFrom.FillColor = System.Drawing.Color.White; - this.txtFrom.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtFrom.Location = new System.Drawing.Point(826, 451); - this.txtFrom.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtFrom.Maximum = 2147483647D; - this.txtFrom.Minimum = -2147483648D; - this.txtFrom.MinimumSize = new System.Drawing.Size(1, 1); - this.txtFrom.Name = "txtFrom"; - this.txtFrom.Padding = new System.Windows.Forms.Padding(5); - this.txtFrom.Radius = 20; - this.txtFrom.Size = new System.Drawing.Size(165, 23); - this.txtFrom.Style = Sunny.UI.UIStyle.Custom; - this.txtFrom.StyleCustomMode = true; - this.txtFrom.TabIndex = 163; - this.txtFrom.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label10 - // - this.label10.AutoSize = true; - this.label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label10.Location = new System.Drawing.Point(845, 346); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(91, 14); - this.label10.TabIndex = 161; - this.label10.Text = "资产入库时间"; - // - // label9 - // - this.label9.AutoSize = true; - this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label9.Location = new System.Drawing.Point(864, 273); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(63, 14); - this.label9.TabIndex = 160; - this.label9.Text = "所属部门"; - // - // cboClub - // - this.cboClub.DataSource = null; - this.cboClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboClub.FillColor = System.Drawing.Color.White; - this.cboClub.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.cboClub.Location = new System.Drawing.Point(826, 305); - this.cboClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboClub.MinimumSize = new System.Drawing.Size(63, 0); - this.cboClub.Name = "cboClub"; - this.cboClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboClub.Radius = 20; - this.cboClub.Size = new System.Drawing.Size(165, 23); - this.cboClub.TabIndex = 159; - this.cboClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboClub.Watermark = ""; - // - // label8 - // - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label8.Location = new System.Drawing.Point(864, 200); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(63, 14); - this.label8.TabIndex = 158; - this.label8.Text = "资产总值"; - // - // txtCashMoney - // - this.txtCashMoney.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCashMoney.FillColor = System.Drawing.Color.White; - this.txtCashMoney.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCashMoney.Location = new System.Drawing.Point(826, 232); - this.txtCashMoney.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCashMoney.Maximum = 2147483647D; - this.txtCashMoney.Minimum = -2147483648D; - this.txtCashMoney.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCashMoney.Name = "txtCashMoney"; - this.txtCashMoney.Padding = new System.Windows.Forms.Padding(5); - this.txtCashMoney.Radius = 20; - this.txtCashMoney.Size = new System.Drawing.Size(165, 23); - this.txtCashMoney.Style = Sunny.UI.UIStyle.Custom; - this.txtCashMoney.StyleCustomMode = true; - this.txtCashMoney.TabIndex = 157; - this.txtCashMoney.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(864, 127); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(63, 14); - this.label7.TabIndex = 156; - this.label7.Text = "资产名称"; - // - // txtCashName - // - this.txtCashName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCashName.FillColor = System.Drawing.Color.White; - this.txtCashName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCashName.Location = new System.Drawing.Point(826, 159); - this.txtCashName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCashName.Maximum = 2147483647D; - this.txtCashName.Minimum = -2147483648D; - this.txtCashName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCashName.Name = "txtCashName"; - this.txtCashName.Padding = new System.Windows.Forms.Padding(5); - this.txtCashName.Radius = 20; - this.txtCashName.Size = new System.Drawing.Size(165, 23); - this.txtCashName.Style = Sunny.UI.UIStyle.Custom; - this.txtCashName.StyleCustomMode = true; - this.txtCashName.TabIndex = 155; - this.txtCashName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(864, 59); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(63, 14); - this.label20.TabIndex = 154; - this.label20.Text = "资产编号"; - // - // txtCashNo - // - this.txtCashNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCashNo.FillColor = System.Drawing.Color.White; - this.txtCashNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCashNo.Location = new System.Drawing.Point(826, 86); - this.txtCashNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCashNo.Maximum = 2147483647D; - this.txtCashNo.Minimum = -2147483648D; - this.txtCashNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCashNo.Name = "txtCashNo"; - this.txtCashNo.Padding = new System.Windows.Forms.Padding(5); - this.txtCashNo.Radius = 20; - this.txtCashNo.ReadOnly = true; - this.txtCashNo.Size = new System.Drawing.Size(165, 23); - this.txtCashNo.Style = Sunny.UI.UIStyle.Custom; - this.txtCashNo.StyleCustomMode = true; - this.txtCashNo.TabIndex = 153; - this.txtCashNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // dtpDate - // - this.dtpDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpDate.FillColor = System.Drawing.Color.White; - this.dtpDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.dtpDate.Location = new System.Drawing.Point(826, 378); - this.dtpDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpDate.MaxLength = 10; - this.dtpDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpDate.Name = "dtpDate"; - this.dtpDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpDate.Radius = 20; - this.dtpDate.Size = new System.Drawing.Size(165, 23); - this.dtpDate.SymbolDropDown = 61555; - this.dtpDate.SymbolNormal = 61555; - this.dtpDate.TabIndex = 162; - this.dtpDate.Text = "2021-01-31"; - this.dtpDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpDate.Value = new System.DateTime(2021, 1, 31, 14, 30, 7, 297); - // - // FrmCash - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.cboCashPerson); - this.Controls.Add(this.label1); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.label11); - this.Controls.Add(this.txtFrom); - this.Controls.Add(this.label10); - this.Controls.Add(this.label9); - this.Controls.Add(this.cboClub); - this.Controls.Add(this.label8); - this.Controls.Add(this.txtCashMoney); - this.Controls.Add(this.label7); - this.Controls.Add(this.txtCashName); - this.Controls.Add(this.label20); - this.Controls.Add(this.txtCashNo); - this.Controls.Add(this.dtpDate); - this.Controls.Add(this.dgvCashList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.IsForbidAltF4 = true; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmCash"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "内部财务账单"; - this.Load += new System.EventHandler(this.FrmCash_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvCashList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private Sunny.UI.UIDataGridView dgvCashList; - private Sunny.UI.UIComboBox cboCashPerson; - private System.Windows.Forms.Label label1; - private Sunny.UI.UIButton btnOK; - private System.Windows.Forms.Label label11; - private Sunny.UI.UITextBox txtFrom; - private System.Windows.Forms.Label label10; - private System.Windows.Forms.Label label9; - private Sunny.UI.UIComboBox cboClub; - private System.Windows.Forms.Label label8; - private Sunny.UI.UITextBox txtCashMoney; - private System.Windows.Forms.Label label7; - private Sunny.UI.UITextBox txtCashName; - private System.Windows.Forms.Label label20; - private Sunny.UI.UITextBox txtCashNo; - private Sunny.UI.UIDatePicker dtpDate; - private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsName; - private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsValue; - private System.Windows.Forms.DataGridViewTextBoxColumn clDepartment; - private System.Windows.Forms.DataGridViewTextBoxColumn clStorageTime; - private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsSource; - private System.Windows.Forms.DataGridViewTextBoxColumn clAssetsManager; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.cs deleted file mode 100644 index 66564151cb3eeb2cf2fec4946b4ed821f59769d3..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.cs +++ /dev/null @@ -1,139 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.Common.Util; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmCash : UIForm - { - public FrmCash() - { - InitializeComponent(); - } - - ResponseMsg result = new ResponseMsg(); - - - private void FrmCash_Load(object sender, EventArgs e) - { - //获取所有部门信息 - result = HttpHelper.Request("Base/SelectDeptAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectDeptAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboClub.DataSource = HttpHelper.JsonToList(result.message); - cboClub.DisplayMember = "dept_name"; - cboClub.ValueMember = "dept_no"; - //获取所有员工信息 - result = HttpHelper.Request("Worker/SelectWorkerAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectWorkerAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboCashPerson.DataSource = HttpHelper.JsonToList(result.message); - cboCashPerson.DisplayMember = "WorkerName"; - cboCashPerson.ValueMember = "WorkerId"; - - LoadCashInfo(); - txtCashNo.Text = ApplicationUtil.GetListNewId("CN", 3, 1, "-").FirstOrDefault(); - if (AdminInfo.Type != "GeneralManager" && AdminInfo.Type != "FinanceManager" && AdminInfo.isAdmin == false) - { - btnOK.Enabled = false; - btnOK.Text = "权限不足"; - } - } - - private void LoadCashInfo() - { - dgvCashList.AutoGenerateColumns = false; - result = HttpHelper.Request("Cash/SelectCashInfoAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectCashInfoAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvCashList.DataSource = HttpHelper.JsonToList(result.message); - } - - private void btnOK_Click(object sender, EventArgs e) - { - Cash cash = new Cash() - { - CashNo = txtCashNo.Text.Trim(), - CashName = txtCashName.Text.Trim(), - CashPrice = txtCashMoney.Text == null ? 0 : Convert.ToDecimal(txtCashMoney.Text), - CashClub = cboClub.SelectedValue.ToString(), - CashTime = dtpDate.Value, - CashSource = txtFrom.Text.Trim(), - CashPerson = cboCashPerson.SelectedValue.ToString(), - datains_usr = AdminInfo.Account - }; - if (ValidateHelper.Validate(cash)) - { - bool dr = UIMessageBox.Show("请确认信息没有错误,一旦录入则无法修改!", "警告提醒", UIStyle.Orange, UIMessageBoxButtons.OKCancel); - if (dr == true) - { - result = HttpHelper.Request("Cash/AddCashInfo", HttpHelper.ModelToJson(cash)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("AddCashInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool n = result.message.ToString().Equals("true") ? true : false; - if (n) - { - UIMessageBox.Show("录入成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - LoadCashInfo(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + AdminInfo.Name + "于" + Convert.ToDateTime(DateTime.Now) + "进行资产录入,资产编号为:" + txtCashNo.Text.Trim(), 3); - txtCashNo.Text = ApplicationUtil.GetListNewId("CN", 3, 1, "-").FirstOrDefault(); - #endregion - } - else - { - UIMessageBox.Show("录入失败,请检查数据格式是否存在错误或稍后再试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - } - else - { - UIMessageBox.Show("操作取消!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); - return; - } - } - else - { - UIMessageBox.Show("信息填写不完整,请重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.resx deleted file mode 100644 index 0317be0522bfb16f04fcb2475e042443f9244f36..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.resx +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGABOAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB40lEQVRYR+2V63HC - MBCEXQIlUAIdJCVQAiVQAh0kHYQS6CB0ACWkA1IBye7dWtHTdgJM/vib0ehxq9NZOlndzEzO9Xp9/XoQ - 9K1l2kj7MLRMG+nIJ8rxToW+DC3TRjpy1NDN0Je7nAO4IQD0n5HFT60iWRX6Mo9AQ22kIyEALDB6NaHZ - Sl4A8/8G0M9HfdZQG/PmFEcwVCRrIt1C3TYQ9dyUhJi/wheP5keBr238OgDMWWDBN5+eovGlpG1cboQA - 0F7DwcWHzRnba5kN9mMN4N9v501H9pWm1HGpMZiEHJOZc1Y++gPsB9n2PuKMBuEyI94BLkBHvE4sbAcn - cHpGv4dfniQl+kuzCOjfZSqRhkzKAeg2Lg9sOI5FtuygPqG8mCWlvgsykqkBJOcMLADWKOEVrLAzBzky - kqkBhL8c4RejCtmO9hol0Yi9JCkykj8FQBDEBYXXLuQC2rnubjuQH0FOfyTVoyqQkUwNgFscs8HX89oe - UR9QW7KxT2PEfZKQUOtTbPuZ8eGfj/ZSxxFggDKXSNNfn+LdjwtkthBq3vM84+0DoIv/EfT7gar9KLls - GnB20jTO4+OTLFaBOzX8HijCSXBBTQtgmMkWnzd3hv160uVAuEAp3vtGGXzfx+wzXdd13ym2MM//aApS - AAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs deleted file mode 100644 index 17f8cfdd4f32e746ec56ea6c6738512a2d296cca..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs +++ /dev/null @@ -1,202 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmChangeAdminPwd - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChangeAdminPwd)); - this.btnUpdPwd = new Sunny.UI.UIButton(); - this.lblNewMsg = new Sunny.UI.UILabel(); - this.lblOldMsg = new Sunny.UI.UILabel(); - this.lgCheckNewPwd = new Sunny.UI.UILight(); - this.lgCheckOldPwd = new Sunny.UI.UILight(); - this.txtOldPwd = new Sunny.UI.UITextBox(); - this.txtNewPwd = new Sunny.UI.UITextBox(); - this.label4 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // btnUpdPwd - // - this.btnUpdPwd.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdPwd.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdPwd.Location = new System.Drawing.Point(294, 232); - this.btnUpdPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdPwd.Name = "btnUpdPwd"; - this.btnUpdPwd.Radius = 20; - this.btnUpdPwd.Size = new System.Drawing.Size(115, 42); - this.btnUpdPwd.TabIndex = 140; - this.btnUpdPwd.Text = "修 改"; - this.btnUpdPwd.Click += new System.EventHandler(this.btnUpdPwd_Click); - // - // lblNewMsg - // - this.lblNewMsg.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lblNewMsg.Location = new System.Drawing.Point(100, 195); - this.lblNewMsg.Name = "lblNewMsg"; - this.lblNewMsg.Size = new System.Drawing.Size(267, 23); - this.lblNewMsg.TabIndex = 139; - this.lblNewMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // lblOldMsg - // - this.lblOldMsg.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lblOldMsg.Location = new System.Drawing.Point(100, 107); - this.lblOldMsg.Name = "lblOldMsg"; - this.lblOldMsg.Size = new System.Drawing.Size(267, 23); - this.lblOldMsg.TabIndex = 138; - this.lblOldMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // lgCheckNewPwd - // - this.lgCheckNewPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckNewPwd.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lgCheckNewPwd.Location = new System.Drawing.Point(369, 145); - this.lgCheckNewPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.lgCheckNewPwd.Name = "lgCheckNewPwd"; - this.lgCheckNewPwd.OnCenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckNewPwd.Radius = 35; - this.lgCheckNewPwd.Size = new System.Drawing.Size(35, 35); - this.lgCheckNewPwd.TabIndex = 137; - this.lgCheckNewPwd.Text = "uiLight2"; - this.lgCheckNewPwd.Visible = false; - // - // lgCheckOldPwd - // - this.lgCheckOldPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckOldPwd.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lgCheckOldPwd.Location = new System.Drawing.Point(369, 57); - this.lgCheckOldPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.lgCheckOldPwd.Name = "lgCheckOldPwd"; - this.lgCheckOldPwd.OnCenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckOldPwd.Radius = 35; - this.lgCheckOldPwd.Size = new System.Drawing.Size(35, 35); - this.lgCheckOldPwd.TabIndex = 136; - this.lgCheckOldPwd.Text = "uiLight1"; - this.lgCheckOldPwd.Visible = false; - // - // txtOldPwd - // - this.txtOldPwd.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtOldPwd.FillColor = System.Drawing.Color.White; - this.txtOldPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtOldPwd.Location = new System.Drawing.Point(95, 57); - this.txtOldPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtOldPwd.Maximum = 2147483647D; - this.txtOldPwd.Minimum = -2147483648D; - this.txtOldPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.txtOldPwd.Name = "txtOldPwd"; - this.txtOldPwd.Padding = new System.Windows.Forms.Padding(5); - this.txtOldPwd.PasswordChar = '*'; - this.txtOldPwd.Radius = 20; - this.txtOldPwd.Size = new System.Drawing.Size(272, 35); - this.txtOldPwd.Style = Sunny.UI.UIStyle.Custom; - this.txtOldPwd.StyleCustomMode = true; - this.txtOldPwd.TabIndex = 135; - this.txtOldPwd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtOldPwd.Validated += new System.EventHandler(this.txtOldPwd_Validated); - this.txtOldPwd.TextChanged += new System.EventHandler(this.txtOldPwd_TextChanged); - // - // txtNewPwd - // - this.txtNewPwd.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtNewPwd.FillColor = System.Drawing.Color.White; - this.txtNewPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtNewPwd.Location = new System.Drawing.Point(95, 145); - this.txtNewPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtNewPwd.Maximum = 2147483647D; - this.txtNewPwd.Minimum = -2147483648D; - this.txtNewPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.txtNewPwd.Name = "txtNewPwd"; - this.txtNewPwd.Padding = new System.Windows.Forms.Padding(5); - this.txtNewPwd.PasswordChar = '*'; - this.txtNewPwd.Radius = 20; - this.txtNewPwd.Size = new System.Drawing.Size(272, 35); - this.txtNewPwd.Style = Sunny.UI.UIStyle.Custom; - this.txtNewPwd.StyleCustomMode = true; - this.txtNewPwd.TabIndex = 136; - this.txtNewPwd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label4.Location = new System.Drawing.Point(19, 149); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(69, 25); - this.label4.TabIndex = 133; - this.label4.Text = "新密码"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label6.Location = new System.Drawing.Point(19, 61); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(69, 25); - this.label6.TabIndex = 132; - this.label6.Text = "旧密码"; - // - // FrmChangeAdminPwd - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(422, 294); - this.Controls.Add(this.btnUpdPwd); - this.Controls.Add(this.lblNewMsg); - this.Controls.Add(this.lblOldMsg); - this.Controls.Add(this.lgCheckNewPwd); - this.Controls.Add(this.lgCheckOldPwd); - this.Controls.Add(this.txtOldPwd); - this.Controls.Add(this.txtNewPwd); - this.Controls.Add(this.label4); - this.Controls.Add(this.label6); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "FrmChangeAdminPwd"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "修改密码"; - this.Load += new System.EventHandler(this.FrmChangeAdminPwd_Load); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UIButton btnUpdPwd; - private Sunny.UI.UILabel lblNewMsg; - private Sunny.UI.UILabel lblOldMsg; - private Sunny.UI.UILight lgCheckNewPwd; - private Sunny.UI.UILight lgCheckOldPwd; - private Sunny.UI.UITextBox txtOldPwd; - private Sunny.UI.UITextBox txtNewPwd; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label6; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.cs deleted file mode 100644 index 1fb3f981b8c35456e789266818042aa6919f0f89..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.cs +++ /dev/null @@ -1,136 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using jvncorelib.EntityLib; -using Sunny.UI; -using System.Text.RegularExpressions; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmChangeAdminPwd : UIForm - { - public FrmChangeAdminPwd() - { - InitializeComponent(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - private void FrmChangeAdminPwd_Load(object sender, EventArgs e) - { - - } - - private void btnUpdPwd_Click(object sender, EventArgs e) - { - Admin admin = new Admin() { AdminAccount = AdminInfo.Account, AdminPassword = txtNewPwd.Text.Trim(), datachg_usr = AdminInfo.Account }; - result = HttpHelper.Request("Admin​/UpdateNewPwdByOldPwd", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateNewPwdByOldPwd+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (!tf) - { - UIMessageBox.Show("服务器繁忙,修改失败!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - UIMessageBox.Show("修改成功,系统将在稍后退出,请使用新密码进行登录系统!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - FrmBackgroundSystem.closeform(); - this.Close(); - return; - } - - private void txtOldPwd_TextChanged(object sender, EventArgs e) - { - if (txtOldPwd.TextLength < 6) - { - lgCheckOldPwd.Visible = true; - lgCheckOldPwd.OnColor = Color.Red; - } - } - - private void txtOldPwd_Validated(object sender, EventArgs e) - { - //校验旧密码是否正确 - Admin admin = new Admin() { AdminAccount = AdminInfo.Account, AdminPassword = txtOldPwd.Text.Trim() }; - result = HttpHelper.Request("Admin​/SelectMangerByPass", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectMangerByPass+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var source = HttpHelper.JsonToModel(result.message); - if (!source.IsNullOrEmpty()) - { - lgCheckOldPwd.Visible = true; - lgCheckOldPwd.OnColor = Color.Green; - lblOldMsg.ForeColor = Color.Green; - lblOldMsg.Text = "旧密码符合,请继续填写新密码!"; - txtNewPwd.ReadOnly = false; - txtNewPwd.Validated += new EventHandler(txtNewPwd_Validated); - } - else - { - lgCheckOldPwd.Visible = true; - lgCheckOldPwd.OnColor = Color.Red; - lblOldMsg.ForeColor = Color.Red; - lblOldMsg.Text = "旧密码有误,请重试!"; - txtNewPwd.ReadOnly = true; - txtNewPwd.Validated -= new EventHandler(txtNewPwd_Validated); - - } - } - - - private void txtNewPwd_Validated(object sender, EventArgs e) - { - string pattern = @"^[A-Za-z0-9]+$"; - Regex regex = new Regex(pattern); - if (regex.IsMatch(txtNewPwd.Text.Trim()) && txtNewPwd.TextLength > 8) - { - lblNewMsg.ForeColor = Color.Green; - lblNewMsg.Text = "密码长度及格式符合要求!"; - lgCheckNewPwd.Visible = true; - lgCheckNewPwd.OnColor = Color.Green; - return; - - } - else - { - lblNewMsg.ForeColor = Color.Red; - lblNewMsg.Text = "密码长度及格式不符合要求,请检查!"; - lgCheckNewPwd.Visible = true; - txtNewPwd.Focus(); - lgCheckNewPwd.OnColor = Color.Red; - return; - } - } - - - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.resx deleted file mode 100644 index 35539703df887b7898b9087dc32ce33939b1cd0c..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.resx +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGADJAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABXklEQVRYR2NgGAWj - ITAaAqMhgCME/v37Fw3Ei4D44n8gANLHgHgqEPvQPNCA9jWALMUFgI7YBMRaNHEIPouR5YAOuILuCCBf - H5ujgPpCiXIs0ICZxDoAqu4MzGCg3kIgvgnEdsiWgSyHqsXvCKAiY2yWAw3cCY2SVTgclwZUkw+TA7Jf - wdIJkuUwadyOAGrKw2JBA7JvQAkTi5oz6GJAdb+BeD8uB2ONDqCGFWhxvAObQqC6XSRGE4ZyoBndGGYD - Bd+hOaALhwP6qeCAbdgccBrNActwOGAdFRzQiWE20NAOLAajJBpcCZUUBwFDehpQvRy2EAjGYRCoUHKA - ZrO3WBLcJKLyODGKgJYcIsU3ILVAPSrEmE2UGqB5EqQ4AGh5FVEGk6IIaKg0EJ/H5xCg/FsgTiTFXJLV - Ai3oBOI7WOJ8Cc0qIhzZThSaCNWBtCDJPhnVMBoCoyEwGgIEQgAA8i/d/iTGP6QAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.Designer.cs deleted file mode 100644 index fcb9f7218e7feb7af4fc903a780ccfeb67c8fd19..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.Designer.cs +++ /dev/null @@ -1,289 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmChangePosition - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChangePosition)); - this.label3 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.txtworkerId = new Sunny.UI.UITextBox(); - this.label7 = new System.Windows.Forms.Label(); - this.txtworkerName = new Sunny.UI.UITextBox(); - this.label8 = new System.Windows.Forms.Label(); - this.txtPosition = new Sunny.UI.UITextBox(); - this.txtClub = new Sunny.UI.UITextBox(); - this.cboNewClub = new Sunny.UI.UIComboBox(); - this.cboNewPosition = new Sunny.UI.UIComboBox(); - this.btnOK = new Sunny.UI.UIButton(); - this.SuspendLayout(); - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 12F); - this.label3.Location = new System.Drawing.Point(13, 136); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(74, 21); - this.label3.TabIndex = 2; - this.label3.Text = "原属部门"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("微软雅黑", 12F); - this.label4.Location = new System.Drawing.Point(13, 179); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(74, 21); - this.label4.TabIndex = 3; - this.label4.Text = "原属职位"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("微软雅黑", 12F); - this.label5.Location = new System.Drawing.Point(218, 179); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(74, 21); - this.label5.TabIndex = 8; - this.label5.Text = "调任职位"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("微软雅黑", 12F); - this.label6.Location = new System.Drawing.Point(218, 136); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(74, 21); - this.label6.TabIndex = 10; - this.label6.Text = "调任部门"; - // - // txtworkerId - // - this.txtworkerId.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtworkerId.Enabled = false; - this.txtworkerId.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtworkerId.Location = new System.Drawing.Point(86, 44); - this.txtworkerId.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtworkerId.MinimumSize = new System.Drawing.Size(1, 1); - this.txtworkerId.Name = "txtworkerId"; - this.txtworkerId.Padding = new System.Windows.Forms.Padding(5); - this.txtworkerId.Radius = 20; - this.txtworkerId.ReadOnly = true; - this.txtworkerId.ShowText = false; - this.txtworkerId.Size = new System.Drawing.Size(125, 29); - this.txtworkerId.Style = Sunny.UI.UIStyle.Custom; - this.txtworkerId.StyleCustomMode = true; - this.txtworkerId.TabIndex = 106; - this.txtworkerId.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtworkerId.Watermark = ""; - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(13, 47); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(74, 21); - this.label7.TabIndex = 105; - this.label7.Text = "员工编号"; - // - // txtworkerName - // - this.txtworkerName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtworkerName.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtworkerName.Location = new System.Drawing.Point(86, 88); - this.txtworkerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtworkerName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtworkerName.Name = "txtworkerName"; - this.txtworkerName.Padding = new System.Windows.Forms.Padding(5); - this.txtworkerName.Radius = 20; - this.txtworkerName.ReadOnly = true; - this.txtworkerName.ShowText = false; - this.txtworkerName.Size = new System.Drawing.Size(125, 29); - this.txtworkerName.Style = Sunny.UI.UIStyle.Custom; - this.txtworkerName.StyleCustomMode = true; - this.txtworkerName.TabIndex = 108; - this.txtworkerName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtworkerName.Watermark = ""; - // - // label8 - // - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label8.Location = new System.Drawing.Point(13, 92); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(74, 21); - this.label8.TabIndex = 107; - this.label8.Text = "员工姓名"; - // - // txtPosition - // - this.txtPosition.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtPosition.Enabled = false; - this.txtPosition.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtPosition.Location = new System.Drawing.Point(86, 177); - this.txtPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtPosition.MinimumSize = new System.Drawing.Size(1, 1); - this.txtPosition.Name = "txtPosition"; - this.txtPosition.Padding = new System.Windows.Forms.Padding(5); - this.txtPosition.Radius = 20; - this.txtPosition.ReadOnly = true; - this.txtPosition.ShowText = false; - this.txtPosition.Size = new System.Drawing.Size(125, 29); - this.txtPosition.Style = Sunny.UI.UIStyle.Custom; - this.txtPosition.StyleCustomMode = true; - this.txtPosition.TabIndex = 110; - this.txtPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtPosition.Watermark = ""; - // - // txtClub - // - this.txtClub.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtClub.Enabled = false; - this.txtClub.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtClub.Location = new System.Drawing.Point(86, 133); - this.txtClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtClub.MinimumSize = new System.Drawing.Size(1, 1); - this.txtClub.Name = "txtClub"; - this.txtClub.Padding = new System.Windows.Forms.Padding(5); - this.txtClub.Radius = 20; - this.txtClub.ReadOnly = true; - this.txtClub.ShowText = false; - this.txtClub.Size = new System.Drawing.Size(125, 29); - this.txtClub.Style = Sunny.UI.UIStyle.Custom; - this.txtClub.StyleCustomMode = true; - this.txtClub.TabIndex = 109; - this.txtClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtClub.Watermark = ""; - // - // cboNewClub - // - this.cboNewClub.DataSource = null; - this.cboNewClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboNewClub.FillColor = System.Drawing.Color.White; - this.cboNewClub.Font = new System.Drawing.Font("微软雅黑", 12F); - this.cboNewClub.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboNewClub.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboNewClub.Location = new System.Drawing.Point(299, 133); - this.cboNewClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboNewClub.MinimumSize = new System.Drawing.Size(63, 0); - this.cboNewClub.Name = "cboNewClub"; - this.cboNewClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboNewClub.Radius = 20; - this.cboNewClub.Size = new System.Drawing.Size(125, 29); - this.cboNewClub.SymbolSize = 24; - this.cboNewClub.TabIndex = 111; - this.cboNewClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboNewClub.Watermark = ""; - this.cboNewClub.TextChanged += new System.EventHandler(this.cboNewClub_TextChanged); - // - // cboNewPosition - // - this.cboNewPosition.DataSource = null; - this.cboNewPosition.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboNewPosition.FillColor = System.Drawing.Color.White; - this.cboNewPosition.Font = new System.Drawing.Font("微软雅黑", 12F); - this.cboNewPosition.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboNewPosition.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboNewPosition.Location = new System.Drawing.Point(299, 177); - this.cboNewPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboNewPosition.MinimumSize = new System.Drawing.Size(63, 0); - this.cboNewPosition.Name = "cboNewPosition"; - this.cboNewPosition.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboNewPosition.Radius = 20; - this.cboNewPosition.Size = new System.Drawing.Size(125, 29); - this.cboNewPosition.SymbolSize = 24; - this.cboNewPosition.TabIndex = 112; - this.cboNewPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboNewPosition.Watermark = ""; - this.cboNewPosition.TextChanged += new System.EventHandler(this.cboNewPosition_TextChanged); - // - // btnOK - // - this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnOK.Location = new System.Drawing.Point(431, 166); - this.btnOK.MinimumSize = new System.Drawing.Size(1, 1); - this.btnOK.Name = "btnOK"; - this.btnOK.Radius = 20; - this.btnOK.Size = new System.Drawing.Size(100, 40); - this.btnOK.TabIndex = 113; - this.btnOK.Text = "任 命"; - this.btnOK.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // FrmChangePosition - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.ClientSize = new System.Drawing.Size(544, 216); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.cboNewPosition); - this.Controls.Add(this.cboNewClub); - this.Controls.Add(this.txtPosition); - this.Controls.Add(this.txtClub); - this.Controls.Add(this.txtworkerName); - this.Controls.Add(this.label8); - this.Controls.Add(this.txtworkerId); - this.Controls.Add(this.label7); - this.Controls.Add(this.label6); - this.Controls.Add(this.label5); - this.Controls.Add(this.label4); - this.Controls.Add(this.label3); - this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmChangePosition"; - this.ShowTitleIcon = true; - this.Text = "将XXX任命为XXX"; - this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 544, 216); - this.Load += new System.EventHandler(this.FrmChangePosition_Load); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.Label label6; - private Sunny.UI.UITextBox txtworkerId; - private System.Windows.Forms.Label label7; - private Sunny.UI.UITextBox txtworkerName; - private System.Windows.Forms.Label label8; - private Sunny.UI.UITextBox txtPosition; - private Sunny.UI.UITextBox txtClub; - private Sunny.UI.UIComboBox cboNewClub; - private Sunny.UI.UIComboBox cboNewPosition; - private Sunny.UI.UIButton btnOK; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.cs deleted file mode 100644 index a6cfbf314bbeeba9004a45dde8ab141959d3189f..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.cs +++ /dev/null @@ -1,116 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmChangePosition : UIForm - { - public static string wk_WorkerNo; - public static string wk_WorkerPosition; - public static string wk_WorkerName; - public static string wk_WorkerClub; - public FrmChangePosition() - { - InitializeComponent(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - private void FrmChangePosition_Load(object sender, EventArgs e) - { - txtworkerId.Text = FrmWorkerPanel.wk_WorkerNo; - txtworkerName.Text = FrmWorkerPanel.wk_WorkerName; - txtClub.Text = FrmWorkerPanel.wk_WorkerClub; - txtPosition.Text = FrmWorkerPanel.wk_WorkerPosition; - //获取所有职位信息 - dic = new Dictionary() - { - { "delete_mk","0"} - }; - result = HttpHelper.Request("Base/SelectPositionAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectPositionAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboNewPosition.DataSource = HttpHelper.JsonToList(result.message); - cboNewPosition.DisplayMember = "position_name"; - cboNewPosition.ValueMember = "position_no"; - //获取所有部门信息 - result = HttpHelper.Request("Base/SelectDeptAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectDeptAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboNewClub.DataSource = HttpHelper.JsonToList(result.message); - cboNewClub.DisplayMember = "dept_name"; - cboNewClub.ValueMember = "dept_no"; - } - - private void cboNewClub_TextChanged(object sender, EventArgs e) - { - this.Text = "将" + FrmWorkerPanel.wk_WorkerClub + ":" + FrmWorkerPanel.wk_WorkerName + "任命为:" + cboNewClub.Text + "的" + cboNewPosition.Text + ""; - } - - private void cboNewPosition_TextChanged(object sender, EventArgs e) - { - this.Text = "将" + FrmWorkerPanel.wk_WorkerClub + ":" + FrmWorkerPanel.wk_WorkerName + "任命为:" + cboNewClub.Text + "的" + cboNewPosition.Text + ""; - - } - - private void btnOK_Click(object sender, EventArgs e) - { - Worker worker = new Worker() - { - WorkerClub = cboNewClub.SelectedValue.ToString(), - WorkerPosition = cboNewPosition.SelectedValue.ToString(), - WorkerId = txtworkerId.Text, - datachg_usr = AdminInfo.Account - }; - result = HttpHelper.Request("Worker​/UpdateWorkerPositionAndClub", HttpHelper.ModelToJson(worker)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateWorkerPositionAndClub+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool n = result.message.ToString().Equals("true"); - if (n) - { - UIMessageBox.ShowSuccess("任命已生效!"); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "职位任命操作!任命值为:" + worker.WorkerId, 2); - #endregion - FrmWorkerManager.Reload(); - this.Close(); - } - } - - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.resx deleted file mode 100644 index 327bfa9e9e773169528d953adeae384ac343895a..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.resx +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGAARAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACpklEQVRYR+2WP2hT - URjFswitlCKupZuLAaFIpbQ6VBzqIGI7VXDoVFQ6WCxd06kOHdShiCB08C9FWgmlVREEEcRMopMgCBaH - UkGHDk6Jv3NzCMaX9/Lqe936g8N993znfvcmeclLYZ//oVqtnkBX0AqaRyOo2+W9o1arDbPRO8YI+Jto - xtH8YY+5+lZhs4/oPtKrX0Rll1Tb8JL8oOlR99cGLxi6XGqAX6onQmbKdj7Q8Ll7z9lqCfXheiwcYtx2 - Nmh00g1f2UqEXHgnGJdsZYNGs274wFYiRC84X7GVDRo9c8MbthIhesj5HVvZoNG8Gy7aSoRon/OfbWWD - RiNuWLaVCLlrzj+2lQ0adaNNNYXEb4Eg86sebZ9NDQeYcVO9svO2m/BB3zrz2nZ+0HQjnAC4vocuosNo - AF1H2y7XvCR/2GTKe7SE+l1H9w42GUdLqIJ20Be0wv75featYJNbvkyEnH4Jlxn1dNTNu5zpcCw+SKNP - jGLSdgQyuhe+o5/oDrpk6VqeagOOp4MFg95Yn69e0bRLEZxZZeiz1UCea+lvUBYUtUBw/RAdcykCtQX0 - BnXakvcNvfdU805nFmzFQ6iIfnjz27ZjIfOV6ClPA3hl9MjTgDLKehoPoYo3X7MVC5leZ3tsyTuDNcH4 - BPXblt/jbK+tKBTHHNpCR2zHQua48tBhS57+pJ5GJXTOtt6BDgW1xlYUik8davvWC6IHyP5GRVsBfP2B - LXkaUEZZrbHVDMV+bS64HrTdFrJ6BjR915lHDqCMsp5GoTjtzV/aSgVLJr3u77e76QCqKQOxvyVapF8t - NbppKzWsWddamLDVQJ4KythqDYHw3Ge8amtXsG4U6dmwjT5YupY36lg8hHTXSmdt7RrO38X6IXTZGpLn - 8j7/UCj8AdXGnoYuGZdFAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.cs index a7b23a4febbdca15e3aa7d9c3f2f9add327bf0fc..8276769aed2f3fad9ad9b783b20243f8df6bc7c0 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.cs @@ -23,10 +23,9 @@ */ using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; +using jvncorelib.EntityLib; using Sunny.UI; -using System.Transactions; -using EOM.TSHotelManagement.Shared; namespace EOM.TSHotelManagement.FormUI { @@ -39,155 +38,84 @@ namespace EOM.TSHotelManagement.FormUI ResponseMsg result = null; Dictionary dic = null; - static bool firstLoad = true; private void FrmChangeRoom_Load(object sender, EventArgs e) { - //string rno = cboRoomList.Text; - result = HttpHelper.Request("Room/SelectCanUseRoomAll"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_SelectCanUseRoomAll); + var datas = HttpHelper.JsonToModel>(result.message); + if (datas.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectCanUseRoomAll+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_SelectCanUseRoomAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - cboRoomList.DataSource = HttpHelper.JsonToList(result.message); - cboRoomList.DisplayMember = nameof(Room.RoomNo); - cboRoomList.ValueMember = nameof(Room.RoomNo); - firstLoad = false; + cboRoomList.DataSource = datas.listSource; + cboRoomList.DisplayMember = nameof(ReadRoomOutputDto.RoomNumber); + cboRoomList.ValueMember = nameof(ReadRoomOutputDto.RoomNumber); } private void btnChangeRoom_Click(object sender, EventArgs e) { - double sum = 0; - string lbu = LoginInfo.WorkerName; string rno = ucRoom.co_RoomNo.ToString(); string nrno = cboRoomList.Text; - dic = new Dictionary() - { - { "no",rno} - }; - - result = HttpHelper.Request("Room/SelectRoomByRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - Room room = HttpHelper.JsonToModel(result.message); - Room checkInRoom = new Room() - { - RoomNo = nrno, - CustoNo = ucRoom.co_CustoNo, - RoomStateId = 1, - CheckTime = Convert.ToDateTime(DateTime.Now), - datains_usr = LoginInfo.WorkerNo - }; - dic = new Dictionary() - { - { "roomno",rno} - }; - result = HttpHelper.Request("Room/DayByRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("DayByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(result.message) * room.RoomMoney)); - Spend s = new Spend() + try { - RoomNo = cboRoomList.Text, - SpendName = "居住" + rno + "共" + Convert.ToInt32(result.message) + "天", - SpendAmount = Convert.ToInt32(result.message), - CustoNo = ucRoom.co_CustoNo, - SpendPrice = room.RoomMoney, - SpendMoney = Convert.ToDecimal(sum), - SpendTime = Convert.ToDateTime(Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd HH:mm:ss")), - MoneyState = SpendConsts.UnSettle, - }; + #region 发起转房和转移消费以及添加消费的请求 - result = HttpHelper.Request("Room​/UpdateRoomInfo", HttpHelper.ModelToJson(checkInRoom)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateRoomInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool result1 = result.message.ToString().Equals("true"); - dic = new Dictionary() + var transferRoom = new TransferRoomDto { - { "room",rno} + OriginalRoomNumber = rno, + TargetRoomNumber = nrno, + CustomerNumber = ucRoom.CustoNo, + DataChgUsr = LoginInfo.WorkerNo, + DataChgDate = Convert.ToDateTime(DateTime.Now) }; - result = HttpHelper.Request("Room​/UpdateRoomByRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool result2 = result.message.ToString().Equals("true"); - dic = new Dictionary() - { - { "No",rno} - }; - result = HttpHelper.Request("Spend​/SelectSpendByCustoNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSpendByCustoNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var result3 = HttpHelper.JsonToList(result.message); - if (result3.Count != 0) - { - Spend spend = new Spend() { RoomNo = nrno, CustoNo = ucRoom.CustoNo }; - result = HttpHelper.Request("Spend​/UpdateSpendInfoByRoomNo", HttpHelper.ModelToJson(spend)); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_TransferRoom, HttpHelper.ModelToJson(transferRoom)); + var response = HttpHelper.JsonToModel(result.message!); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("UpdateSpendInfoByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_TransferRoom}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - bool result4 = result.message.ToString().Equals("true"); + + #endregion + + FrmRoomManager.Reload(""); + FrmRoomManager._RefreshRoomCount(); + #region 获取添加操作日志所需的信息 + RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + transferRoom.DataChgDate + "位于" + LoginInfo.SoftwareVersion + "执行:" + transferRoom.CustomerNumber + "于" + transferRoom.DataChgDate + "进行了换房!", Common.Core.LogLevel.Warning); + #endregion + UIMessageBox.ShowSuccess("转房成功"); + this.Close(); } - using (TransactionScope scope = new TransactionScope()) + catch (Exception) { - if (result1 && result2) - { - UIMessageBox.ShowSuccess("转房成功"); - result = HttpHelper.Request("Spend​/InsertSpendInfo", HttpHelper.ModelToJson(s)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertSpendInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool m = result.message.ToString().Equals("true"); - FrmRoomManager.Reload(""); - FrmRoomManager._RefreshRoomCount(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + ucRoom.CustoNo + "于" + Convert.ToDateTime(DateTime.Now) + "进行了换房!", 2); - #endregion - scope.Complete(); - this.Close(); - } - else - { - UIMessageBox.ShowError("转房失败"); - } + UIMessageBox.ShowError("转房失败"); } } private void cboRoomList_TextChanged(object sender, EventArgs e) { - string str = firstLoad ? ucRoom.RoomNo.ToString() : cboRoomList.SelectedValue.ToString(); + string str = cboRoomList.SelectedValue.IsNullOrEmpty() ? string.Empty : cboRoomList.SelectedValue.ToString(); + if (string.IsNullOrEmpty(str)) + { + lblRoomType.Text = string.Empty; + return; + } + dic = new Dictionary() { - { "no",str} + { nameof(ReadRoomTypeInputDto.RoomNumber) , str } }; - result = HttpHelper.Request("RoomType/SelectRoomTypeByRoomNo", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.RoomType_SelectRoomTypeByRoomNo, dic); + var data = HttpHelper.JsonToModel>(result.message); + if (data.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectRoomTypeByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.RoomType_SelectRoomTypeByRoomNo}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - RoomType roomType = HttpHelper.JsonToModel(result.message); - lblRoomType.Text = roomType.RoomName; + var roomType = data.Source; + lblRoomType.Text = roomType.RoomTypeName; } } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.Designer.cs deleted file mode 100644 index 181be9b78a32c1f37519f3dcda030173eeaccba4..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.Designer.cs +++ /dev/null @@ -1,112 +0,0 @@ -namespace EOM.TSHotelManager.FormUI -{ - partial class FrmChart - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); - System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChart)); - this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart(); - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit(); - this.SuspendLayout(); - // - // chart1 - // - this.chart1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - chartArea1.AxisX.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - chartArea1.AxisX.TitleForeColor = System.Drawing.Color.SkyBlue; - chartArea1.AxisY.TitleFont = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - chartArea1.AxisY.TitleForeColor = System.Drawing.Color.Red; - chartArea1.BorderColor = System.Drawing.Color.White; - chartArea1.BorderWidth = 3; - chartArea1.Name = "ChartArea1"; - this.chart1.ChartAreas.Add(chartArea1); - legend1.Name = "总销售额"; - this.chart1.Legends.Add(legend1); - this.chart1.Location = new System.Drawing.Point(12, 52); - this.chart1.Name = "chart1"; - this.chart1.Size = new System.Drawing.Size(981, 531); - this.chart1.TabIndex = 3; - this.chart1.Text = "chart1"; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.BackColor = System.Drawing.Color.Transparent; - this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.ForeColor = System.Drawing.Color.Red; - this.label1.Location = new System.Drawing.Point(662, 590); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(143, 24); - this.label1.TabIndex = 4; - this.label1.Text = "以上数据截止:"; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.BackColor = System.Drawing.Color.Transparent; - this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.ForeColor = System.Drawing.Color.Red; - this.label2.Location = new System.Drawing.Point(800, 590); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(0, 24); - this.label2.TabIndex = 5; - // - // FrmChart - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.label2); - this.Controls.Add(this.label1); - this.Controls.Add(this.chart1); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmChart"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "酒店盈利情况(仅含已结算)"; - this.Load += new System.EventHandler(this.FrmChart_Load); - ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.DataVisualization.Charting.Chart chart1; - private System.Windows.Forms.Label label1; - private System.Windows.Forms.Label label2; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.cs deleted file mode 100644 index aaa82eda5e3fbe7256bf33e8fbac699fe5952528..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.cs +++ /dev/null @@ -1,68 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 咖啡与网络(java-and-net) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using Sunny.UI; -using System; - -namespace EOM.TSHotelManager.FormUI -{ - public partial class FrmChart : UIForm - { - public FrmChart() - { - InitializeComponent(); - } - - ResponseMsg result = null; - - private void FrmChart_Load(object sender, EventArgs e) - { - System.Windows.Forms.DataVisualization.Charting.Series series = new System.Windows.Forms.DataVisualization.Charting.Series("商品销售额(/元)"); - series.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line; - //series.BorderWidth = 2; - series.IsValueShownAsLabel = true; - result = HttpHelper.Request("Custo/SelectAllMoney"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectAllMoney+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var listHotelMoney = HttpHelper.JsonToList(result.message); - listHotelMoney.ForEach(source => - { - series.Points.AddXY(Convert.ToDouble(source.Years.ToString()), Convert.ToDouble(Convert.ToDouble(source.Money.ToString()))); - }); - chart1.Series.Add(series); - label2.Text = DateTime.Now.ToString(); - } - - private void timer1_Tick(object sender, EventArgs e) - { - - } - - } - -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.resx deleted file mode 100644 index ee88fa82c30667f52577094ca83154e4d9aff229..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.resx +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGAAGAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABm0lEQVRYR+2WPUsD - QRiE06uNjZWCYGlhFwgK/gR/g4W2lnamVrC3sk8TK0EQ7ATBUrCSYGEt2NkkPrNOLtHsYXK3d4g4MOy+ - 835NvjwbeRgMBttVsd/vL3hNHBScUVgl7r0qDgwcu7AyeFX98P5faEBvO7ypguxre02+AeuVQCa8ZioD - 0Z9OQbbhbAYcJgHj6jVA+wYc/7zTGEDe+cyOhn8HSw7gq4p0l6Z6x8UN0NyEb05r2K5TAcQt2HVa+Wen - yhugcRU+OtXxqYFbHPPwkHt41QL3fbcGIBU3QNMcvJbG+WTtyvELvNRd4H4Bl0PjGEiVMjD+QFqxtgjv - rGnwO8deaIiAXCkDwwfSpqUA9DX4ALtw3XIU9Jb/Es4CFp3DHmwpZlztBvR3Xwg/V50KChmg6QjqFS1Z - +hGpDXwZNg1qM0DuBDYdZqjFALGechras5ShVgOCpQz/Bv6eAQ+cMDDMWcrwvUcnLGYgBRgXM6DHesfh - CCoUHCYB4yYM5EKFVWEqAxTduj45mH3qNfmgTv9i6RuenF4RQaPxAf/HhC/sVoa3AAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.Designer.cs index 232921b154d0aa4f3c3276ac650105a2fcea7b88..6ece672041c2bf5495c2981e914bad2d018dc2d2 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.Designer.cs @@ -29,419 +29,410 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCheckIn)); - this.txtRoomPosition = new Sunny.UI.UITextBox(); - this.label3 = new System.Windows.Forms.Label(); - this.txtType = new Sunny.UI.UIComboBox(); - this.txtRoomNo = new Sunny.UI.UITextBox(); - this.txtState = new Sunny.UI.UITextBox(); - this.txtMoney = new Sunny.UI.UITextBox(); - this.label13 = new System.Windows.Forms.Label(); - this.label15 = new System.Windows.Forms.Label(); - this.label19 = new System.Windows.Forms.Label(); - this.label20 = new System.Windows.Forms.Label(); - this.txtCustoNo = new Sunny.UI.UITextBox(); - this.txtCustoName = new Sunny.UI.UITextBox(); - this.label18 = new System.Windows.Forms.Label(); - this.label16 = new System.Windows.Forms.Label(); - this.txtCustoTel = new Sunny.UI.UITextBox(); - this.label14 = new System.Windows.Forms.Label(); - this.txtCustoType = new Sunny.UI.UITextBox(); - this.label12 = new System.Windows.Forms.Label(); - this.txtDeposit = new Sunny.UI.UITextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.pnlBtm.SuspendLayout(); - this.SuspendLayout(); + txtRoomPosition = new Sunny.UI.UITextBox(); + label3 = new Label(); + txtType = new Sunny.UI.UIComboBox(); + txtRoomNo = new Sunny.UI.UITextBox(); + txtState = new Sunny.UI.UITextBox(); + txtMoney = new Sunny.UI.UITextBox(); + label13 = new Label(); + label15 = new Label(); + label19 = new Label(); + label20 = new Label(); + txtCustoNo = new Sunny.UI.UITextBox(); + txtCustoName = new Sunny.UI.UITextBox(); + label18 = new Label(); + label16 = new Label(); + txtCustoTel = new Sunny.UI.UITextBox(); + label14 = new Label(); + txtCustoType = new Sunny.UI.UITextBox(); + label12 = new Label(); + txtDeposit = new Sunny.UI.UITextBox(); + label1 = new Label(); + pnlBtm.SuspendLayout(); + SuspendLayout(); // // pnlBtm // - this.pnlBtm.Location = new System.Drawing.Point(1, 328); - this.pnlBtm.Size = new System.Drawing.Size(859, 53); - this.pnlBtm.Style = Sunny.UI.UIStyle.Custom; + pnlBtm.Location = new Point(1, 328); + pnlBtm.Size = new Size(859, 53); + pnlBtm.Style = Sunny.UI.UIStyle.Custom; // // btnCancel // - this.btnCancel.Location = new System.Drawing.Point(731, 12); - this.btnCancel.Style = Sunny.UI.UIStyle.Custom; + btnCancel.Location = new Point(731, 12); + btnCancel.Style = Sunny.UI.UIStyle.Custom; // // btnOK // - this.btnOK.Location = new System.Drawing.Point(616, 12); - this.btnOK.Style = Sunny.UI.UIStyle.Custom; + btnOK.Location = new Point(616, 12); + btnOK.Style = Sunny.UI.UIStyle.Custom; // // txtRoomPosition // - this.txtRoomPosition.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRoomPosition.FillColor = System.Drawing.Color.White; - this.txtRoomPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRoomPosition.Location = new System.Drawing.Point(170, 163); - this.txtRoomPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRoomPosition.Maximum = 2147483647D; - this.txtRoomPosition.Minimum = -2147483648D; - this.txtRoomPosition.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRoomPosition.Name = "txtRoomPosition"; - this.txtRoomPosition.Padding = new System.Windows.Forms.Padding(5); - this.txtRoomPosition.Radius = 20; - this.txtRoomPosition.ReadOnly = true; - this.txtRoomPosition.Size = new System.Drawing.Size(251, 35); - this.txtRoomPosition.Style = Sunny.UI.UIStyle.Custom; - this.txtRoomPosition.StyleCustomMode = true; - this.txtRoomPosition.TabIndex = 150; - this.txtRoomPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtRoomPosition.Cursor = Cursors.IBeam; + txtRoomPosition.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtRoomPosition.Location = new Point(170, 163); + txtRoomPosition.Margin = new Padding(4, 5, 4, 5); + txtRoomPosition.MinimumSize = new Size(1, 1); + txtRoomPosition.Name = "txtRoomPosition"; + txtRoomPosition.Padding = new Padding(5); + txtRoomPosition.Radius = 20; + txtRoomPosition.ReadOnly = true; + txtRoomPosition.ShowText = false; + txtRoomPosition.Size = new Size(251, 35); + txtRoomPosition.Style = Sunny.UI.UIStyle.Custom; + txtRoomPosition.StyleCustomMode = true; + txtRoomPosition.TabIndex = 150; + txtRoomPosition.TextAlignment = ContentAlignment.MiddleLeft; + txtRoomPosition.Watermark = ""; // // label3 // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(63, 168); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(88, 25); - this.label3.TabIndex = 149; - this.label3.Text = "房间位置"; + label3.AutoSize = true; + label3.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label3.Location = new Point(63, 168); + label3.Name = "label3"; + label3.Size = new Size(88, 25); + label3.TabIndex = 149; + label3.Text = "房间位置"; // // txtType // - this.txtType.DataSource = null; - this.txtType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.txtType.FillColor = System.Drawing.Color.White; - this.txtType.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.txtType.Location = new System.Drawing.Point(547, 55); - this.txtType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtType.MinimumSize = new System.Drawing.Size(63, 0); - this.txtType.Name = "txtType"; - this.txtType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.txtType.Radius = 20; - this.txtType.ReadOnly = true; - this.txtType.Size = new System.Drawing.Size(250, 35); - this.txtType.Style = Sunny.UI.UIStyle.Custom; - this.txtType.TabIndex = 148; - this.txtType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtType.Watermark = ""; + txtType.DataSource = null; + txtType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + txtType.FillColor = Color.White; + txtType.Font = new Font("微软雅黑", 15.75F); + txtType.ItemHoverColor = Color.FromArgb(155, 200, 255); + txtType.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + txtType.Location = new Point(547, 55); + txtType.Margin = new Padding(4, 5, 4, 5); + txtType.MinimumSize = new Size(63, 0); + txtType.Name = "txtType"; + txtType.Padding = new Padding(0, 0, 30, 2); + txtType.Radius = 20; + txtType.ReadOnly = true; + txtType.Size = new Size(250, 35); + txtType.Style = Sunny.UI.UIStyle.Custom; + txtType.SymbolSize = 24; + txtType.TabIndex = 148; + txtType.TextAlignment = ContentAlignment.MiddleLeft; + txtType.Watermark = ""; // // txtRoomNo // - this.txtRoomNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRoomNo.FillColor = System.Drawing.Color.White; - this.txtRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRoomNo.Location = new System.Drawing.Point(171, 55); - this.txtRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRoomNo.Maximum = 2147483647D; - this.txtRoomNo.Minimum = -2147483648D; - this.txtRoomNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRoomNo.Name = "txtRoomNo"; - this.txtRoomNo.Padding = new System.Windows.Forms.Padding(5); - this.txtRoomNo.Radius = 20; - this.txtRoomNo.ReadOnly = true; - this.txtRoomNo.Size = new System.Drawing.Size(250, 35); - this.txtRoomNo.Style = Sunny.UI.UIStyle.Custom; - this.txtRoomNo.StyleCustomMode = true; - this.txtRoomNo.TabIndex = 147; - this.txtRoomNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtRoomNo.Cursor = Cursors.IBeam; + txtRoomNo.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtRoomNo.Location = new Point(171, 55); + txtRoomNo.Margin = new Padding(4, 5, 4, 5); + txtRoomNo.MinimumSize = new Size(1, 1); + txtRoomNo.Name = "txtRoomNo"; + txtRoomNo.Padding = new Padding(5); + txtRoomNo.Radius = 20; + txtRoomNo.ReadOnly = true; + txtRoomNo.ShowText = false; + txtRoomNo.Size = new Size(250, 35); + txtRoomNo.Style = Sunny.UI.UIStyle.Custom; + txtRoomNo.StyleCustomMode = true; + txtRoomNo.TabIndex = 147; + txtRoomNo.TextAlignment = ContentAlignment.MiddleLeft; + txtRoomNo.Watermark = ""; // // txtState // - this.txtState.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtState.FillColor = System.Drawing.Color.White; - this.txtState.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtState.Location = new System.Drawing.Point(171, 110); - this.txtState.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtState.Maximum = 2147483647D; - this.txtState.Minimum = -2147483648D; - this.txtState.MinimumSize = new System.Drawing.Size(1, 1); - this.txtState.Name = "txtState"; - this.txtState.Padding = new System.Windows.Forms.Padding(5); - this.txtState.Radius = 20; - this.txtState.ReadOnly = true; - this.txtState.Size = new System.Drawing.Size(250, 35); - this.txtState.Style = Sunny.UI.UIStyle.Custom; - this.txtState.StyleCustomMode = true; - this.txtState.TabIndex = 146; - this.txtState.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtState.Cursor = Cursors.IBeam; + txtState.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtState.Location = new Point(171, 110); + txtState.Margin = new Padding(4, 5, 4, 5); + txtState.MinimumSize = new Size(1, 1); + txtState.Name = "txtState"; + txtState.Padding = new Padding(5); + txtState.Radius = 20; + txtState.ReadOnly = true; + txtState.ShowText = false; + txtState.Size = new Size(250, 35); + txtState.Style = Sunny.UI.UIStyle.Custom; + txtState.StyleCustomMode = true; + txtState.TabIndex = 146; + txtState.TextAlignment = ContentAlignment.MiddleLeft; + txtState.Watermark = ""; // // txtMoney // - this.txtMoney.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtMoney.FillColor = System.Drawing.Color.White; - this.txtMoney.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtMoney.Location = new System.Drawing.Point(547, 111); - this.txtMoney.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtMoney.Maximum = 2147483647D; - this.txtMoney.Minimum = -2147483648D; - this.txtMoney.MinimumSize = new System.Drawing.Size(1, 1); - this.txtMoney.Name = "txtMoney"; - this.txtMoney.Padding = new System.Windows.Forms.Padding(5); - this.txtMoney.Radius = 20; - this.txtMoney.ReadOnly = true; - this.txtMoney.Size = new System.Drawing.Size(250, 35); - this.txtMoney.Style = Sunny.UI.UIStyle.Custom; - this.txtMoney.StyleCustomMode = true; - this.txtMoney.TabIndex = 145; - this.txtMoney.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtMoney.Cursor = Cursors.IBeam; + txtMoney.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtMoney.Location = new Point(547, 111); + txtMoney.Margin = new Padding(4, 5, 4, 5); + txtMoney.MinimumSize = new Size(1, 1); + txtMoney.Name = "txtMoney"; + txtMoney.Padding = new Padding(5); + txtMoney.Radius = 20; + txtMoney.ReadOnly = true; + txtMoney.ShowText = false; + txtMoney.Size = new Size(250, 35); + txtMoney.Style = Sunny.UI.UIStyle.Custom; + txtMoney.StyleCustomMode = true; + txtMoney.TabIndex = 145; + txtMoney.TextAlignment = ContentAlignment.MiddleLeft; + txtMoney.Watermark = ""; // // label13 // - this.label13.AutoSize = true; - this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label13.Location = new System.Drawing.Point(443, 114); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(88, 25); - this.label13.TabIndex = 144; - this.label13.Text = "房间单价"; + label13.AutoSize = true; + label13.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label13.Location = new Point(443, 114); + label13.Name = "label13"; + label13.Size = new Size(88, 25); + label13.TabIndex = 144; + label13.Text = "房间单价"; // // label15 // - this.label15.AutoSize = true; - this.label15.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label15.Location = new System.Drawing.Point(443, 62); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(88, 25); - this.label15.TabIndex = 143; - this.label15.Text = "房间类型"; + label15.AutoSize = true; + label15.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label15.Location = new Point(443, 62); + label15.Name = "label15"; + label15.Size = new Size(88, 25); + label15.TabIndex = 143; + label15.Text = "房间类型"; // // label19 // - this.label19.AutoSize = true; - this.label19.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label19.Location = new System.Drawing.Point(64, 114); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(88, 25); - this.label19.TabIndex = 142; - this.label19.Text = "房间状态"; + label19.AutoSize = true; + label19.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label19.Location = new Point(64, 114); + label19.Name = "label19"; + label19.Size = new Size(88, 25); + label19.TabIndex = 142; + label19.Text = "房间状态"; // // label20 // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(64, 62); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(88, 25); - this.label20.TabIndex = 141; - this.label20.Text = "房间编号"; + label20.AutoSize = true; + label20.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label20.Location = new Point(64, 62); + label20.Name = "label20"; + label20.Size = new Size(88, 25); + label20.TabIndex = 141; + label20.Text = "房间编号"; // // txtCustoNo // - this.txtCustoNo.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; - this.txtCustoNo.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource; - this.txtCustoNo.BackColor = System.Drawing.Color.Transparent; - this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoNo.FillColor = System.Drawing.Color.White; - this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoNo.Location = new System.Drawing.Point(170, 218); - this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoNo.Maximum = 2147483647D; - this.txtCustoNo.Minimum = -2147483648D; - this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoNo.Name = "txtCustoNo"; - this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoNo.Radius = 20; - this.txtCustoNo.Size = new System.Drawing.Size(250, 35); - this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoNo.StyleCustomMode = true; - this.txtCustoNo.TabIndex = 143; - this.txtCustoNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtCustoNo.Validated += new System.EventHandler(this.txtCustoNo_Validated); - this.txtCustoNo.TextChanged += new System.EventHandler(this.txtCustoNo_TextChanged); + txtCustoNo.AutoCompleteMode = AutoCompleteMode.Suggest; + txtCustoNo.AutoCompleteSource = AutoCompleteSource.CustomSource; + txtCustoNo.BackColor = Color.Transparent; + txtCustoNo.Cursor = Cursors.IBeam; + txtCustoNo.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoNo.Location = new Point(170, 218); + txtCustoNo.Margin = new Padding(4, 5, 4, 5); + txtCustoNo.MinimumSize = new Size(1, 1); + txtCustoNo.Name = "txtCustoNo"; + txtCustoNo.Padding = new Padding(5); + txtCustoNo.Radius = 20; + txtCustoNo.ShowText = false; + txtCustoNo.Size = new Size(250, 35); + txtCustoNo.Style = Sunny.UI.UIStyle.Custom; + txtCustoNo.StyleCustomMode = true; + txtCustoNo.TabIndex = 143; + txtCustoNo.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoNo.Watermark = ""; + txtCustoNo.Validated += txtCustoNo_Validated; // // txtCustoName // - this.txtCustoName.BackColor = System.Drawing.Color.Transparent; - this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoName.FillColor = System.Drawing.Color.White; - this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoName.Location = new System.Drawing.Point(546, 218); - this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoName.Maximum = 2147483647D; - this.txtCustoName.Minimum = -2147483648D; - this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoName.Name = "txtCustoName"; - this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoName.Radius = 20; - this.txtCustoName.ReadOnly = true; - this.txtCustoName.Size = new System.Drawing.Size(250, 35); - this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoName.StyleCustomMode = true; - this.txtCustoName.TabIndex = 144; - this.txtCustoName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoName.BackColor = Color.Transparent; + txtCustoName.Cursor = Cursors.IBeam; + txtCustoName.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoName.Location = new Point(546, 218); + txtCustoName.Margin = new Padding(4, 5, 4, 5); + txtCustoName.MinimumSize = new Size(1, 1); + txtCustoName.Name = "txtCustoName"; + txtCustoName.Padding = new Padding(5); + txtCustoName.Radius = 20; + txtCustoName.ReadOnly = true; + txtCustoName.ShowText = false; + txtCustoName.Size = new Size(250, 35); + txtCustoName.Style = Sunny.UI.UIStyle.Custom; + txtCustoName.StyleCustomMode = true; + txtCustoName.TabIndex = 144; + txtCustoName.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoName.Watermark = ""; // // label18 // - this.label18.AutoSize = true; - this.label18.BackColor = System.Drawing.Color.Transparent; - this.label18.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label18.Location = new System.Drawing.Point(63, 225); - this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(88, 25); - this.label18.TabIndex = 137; - this.label18.Text = "客户编号"; + label18.AutoSize = true; + label18.BackColor = Color.Transparent; + label18.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label18.Location = new Point(63, 225); + label18.Name = "label18"; + label18.Size = new Size(88, 25); + label18.TabIndex = 137; + label18.Text = "客户编号"; // // label16 // - this.label16.AutoSize = true; - this.label16.BackColor = System.Drawing.Color.Transparent; - this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label16.Location = new System.Drawing.Point(63, 277); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(88, 25); - this.label16.TabIndex = 138; - this.label16.Text = "客户电话"; + label16.AutoSize = true; + label16.BackColor = Color.Transparent; + label16.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label16.Location = new Point(63, 277); + label16.Name = "label16"; + label16.Size = new Size(88, 25); + label16.TabIndex = 138; + label16.Text = "客户电话"; // // txtCustoTel // - this.txtCustoTel.BackColor = System.Drawing.Color.Transparent; - this.txtCustoTel.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoTel.FillColor = System.Drawing.Color.White; - this.txtCustoTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoTel.Location = new System.Drawing.Point(170, 273); - this.txtCustoTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoTel.Maximum = 2147483647D; - this.txtCustoTel.Minimum = -2147483648D; - this.txtCustoTel.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoTel.Name = "txtCustoTel"; - this.txtCustoTel.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoTel.Radius = 20; - this.txtCustoTel.ReadOnly = true; - this.txtCustoTel.Size = new System.Drawing.Size(250, 35); - this.txtCustoTel.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoTel.StyleCustomMode = true; - this.txtCustoTel.TabIndex = 142; - this.txtCustoTel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoTel.BackColor = Color.Transparent; + txtCustoTel.Cursor = Cursors.IBeam; + txtCustoTel.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoTel.Location = new Point(170, 273); + txtCustoTel.Margin = new Padding(4, 5, 4, 5); + txtCustoTel.MinimumSize = new Size(1, 1); + txtCustoTel.Name = "txtCustoTel"; + txtCustoTel.Padding = new Padding(5); + txtCustoTel.Radius = 20; + txtCustoTel.ReadOnly = true; + txtCustoTel.ShowText = false; + txtCustoTel.Size = new Size(250, 35); + txtCustoTel.Style = Sunny.UI.UIStyle.Custom; + txtCustoTel.StyleCustomMode = true; + txtCustoTel.TabIndex = 142; + txtCustoTel.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoTel.Watermark = ""; // // label14 // - this.label14.AutoSize = true; - this.label14.BackColor = System.Drawing.Color.Transparent; - this.label14.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label14.Location = new System.Drawing.Point(442, 225); - this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(88, 25); - this.label14.TabIndex = 139; - this.label14.Text = "客户姓名"; + label14.AutoSize = true; + label14.BackColor = Color.Transparent; + label14.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label14.Location = new Point(442, 225); + label14.Name = "label14"; + label14.Size = new Size(88, 25); + label14.TabIndex = 139; + label14.Text = "客户姓名"; // // txtCustoType // - this.txtCustoType.BackColor = System.Drawing.Color.Transparent; - this.txtCustoType.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoType.FillColor = System.Drawing.Color.White; - this.txtCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoType.Location = new System.Drawing.Point(546, 274); - this.txtCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoType.Maximum = 2147483647D; - this.txtCustoType.Minimum = -2147483648D; - this.txtCustoType.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoType.Name = "txtCustoType"; - this.txtCustoType.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoType.Radius = 20; - this.txtCustoType.ReadOnly = true; - this.txtCustoType.Size = new System.Drawing.Size(250, 35); - this.txtCustoType.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoType.StyleCustomMode = true; - this.txtCustoType.TabIndex = 141; - this.txtCustoType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoType.BackColor = Color.Transparent; + txtCustoType.Cursor = Cursors.IBeam; + txtCustoType.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoType.Location = new Point(546, 274); + txtCustoType.Margin = new Padding(4, 5, 4, 5); + txtCustoType.MinimumSize = new Size(1, 1); + txtCustoType.Name = "txtCustoType"; + txtCustoType.Padding = new Padding(5); + txtCustoType.Radius = 20; + txtCustoType.ReadOnly = true; + txtCustoType.ShowText = false; + txtCustoType.Size = new Size(250, 35); + txtCustoType.Style = Sunny.UI.UIStyle.Custom; + txtCustoType.StyleCustomMode = true; + txtCustoType.TabIndex = 141; + txtCustoType.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoType.Watermark = ""; // // label12 // - this.label12.AutoSize = true; - this.label12.BackColor = System.Drawing.Color.Transparent; - this.label12.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label12.Location = new System.Drawing.Point(442, 277); - this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(88, 25); - this.label12.TabIndex = 140; - this.label12.Text = "会员等级"; + label12.AutoSize = true; + label12.BackColor = Color.Transparent; + label12.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label12.Location = new Point(442, 277); + label12.Name = "label12"; + label12.Size = new Size(88, 25); + label12.TabIndex = 140; + label12.Text = "会员等级"; // // txtDeposit // - this.txtDeposit.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtDeposit.FillColor = System.Drawing.Color.White; - this.txtDeposit.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtDeposit.Location = new System.Drawing.Point(547, 163); - this.txtDeposit.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtDeposit.Maximum = 2147483647D; - this.txtDeposit.Minimum = -2147483648D; - this.txtDeposit.MinimumSize = new System.Drawing.Size(1, 1); - this.txtDeposit.Name = "txtDeposit"; - this.txtDeposit.Padding = new System.Windows.Forms.Padding(5); - this.txtDeposit.Radius = 20; - this.txtDeposit.ReadOnly = true; - this.txtDeposit.Size = new System.Drawing.Size(250, 35); - this.txtDeposit.Style = Sunny.UI.UIStyle.Custom; - this.txtDeposit.StyleCustomMode = true; - this.txtDeposit.TabIndex = 152; - this.txtDeposit.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtDeposit.Cursor = Cursors.IBeam; + txtDeposit.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtDeposit.Location = new Point(547, 163); + txtDeposit.Margin = new Padding(4, 5, 4, 5); + txtDeposit.MinimumSize = new Size(1, 1); + txtDeposit.Name = "txtDeposit"; + txtDeposit.Padding = new Padding(5); + txtDeposit.Radius = 20; + txtDeposit.ReadOnly = true; + txtDeposit.ShowText = false; + txtDeposit.Size = new Size(250, 35); + txtDeposit.Style = Sunny.UI.UIStyle.Custom; + txtDeposit.StyleCustomMode = true; + txtDeposit.TabIndex = 152; + txtDeposit.TextAlignment = ContentAlignment.MiddleLeft; + txtDeposit.Watermark = ""; // // label1 // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(443, 168); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(88, 25); - this.label1.TabIndex = 151; - this.label1.Text = "房间押金"; + label1.AutoSize = true; + label1.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label1.Location = new Point(443, 168); + label1.Name = "label1"; + label1.Size = new Size(88, 25); + label1.TabIndex = 151; + label1.Text = "房间押金"; // // FrmCheckIn // - this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(861, 384); - this.ControlBox = false; - this.Controls.Add(this.txtDeposit); - this.Controls.Add(this.label1); - this.Controls.Add(this.txtCustoNo); - this.Controls.Add(this.txtCustoName); - this.Controls.Add(this.txtRoomPosition); - this.Controls.Add(this.label18); - this.Controls.Add(this.label3); - this.Controls.Add(this.label16); - this.Controls.Add(this.txtType); - this.Controls.Add(this.txtCustoTel); - this.Controls.Add(this.txtRoomNo); - this.Controls.Add(this.label14); - this.Controls.Add(this.txtState); - this.Controls.Add(this.txtCustoType); - this.Controls.Add(this.txtMoney); - this.Controls.Add(this.label12); - this.Controls.Add(this.label13); - this.Controls.Add(this.label15); - this.Controls.Add(this.label19); - this.Controls.Add(this.label20); - this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.IsForbidAltF4 = true; - this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.Name = "FrmCheckIn"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "房间入住"; - this.ButtonOkClick += new System.EventHandler(this.FrmCheckIn_ButtonOkClick); - this.ButtonCancelClick += new System.EventHandler(this.FrmCheckIn_ButtonCancelClick); - this.Load += new System.EventHandler(this.FrmCheckIn_Load); - this.Controls.SetChildIndex(this.label20, 0); - this.Controls.SetChildIndex(this.label19, 0); - this.Controls.SetChildIndex(this.label15, 0); - this.Controls.SetChildIndex(this.label13, 0); - this.Controls.SetChildIndex(this.label12, 0); - this.Controls.SetChildIndex(this.txtMoney, 0); - this.Controls.SetChildIndex(this.txtCustoType, 0); - this.Controls.SetChildIndex(this.txtState, 0); - this.Controls.SetChildIndex(this.label14, 0); - this.Controls.SetChildIndex(this.txtRoomNo, 0); - this.Controls.SetChildIndex(this.txtCustoTel, 0); - this.Controls.SetChildIndex(this.txtType, 0); - this.Controls.SetChildIndex(this.label16, 0); - this.Controls.SetChildIndex(this.label3, 0); - this.Controls.SetChildIndex(this.label18, 0); - this.Controls.SetChildIndex(this.txtRoomPosition, 0); - this.Controls.SetChildIndex(this.txtCustoName, 0); - this.Controls.SetChildIndex(this.txtCustoNo, 0); - this.Controls.SetChildIndex(this.label1, 0); - this.Controls.SetChildIndex(this.txtDeposit, 0); - this.Controls.SetChildIndex(this.pnlBtm, 0); - this.pnlBtm.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); - + AutoScaleMode = AutoScaleMode.None; + BackColor = Color.FromArgb(235, 243, 255); + ClientSize = new Size(861, 384); + ControlBox = false; + Controls.Add(txtDeposit); + Controls.Add(label1); + Controls.Add(txtCustoNo); + Controls.Add(txtCustoName); + Controls.Add(txtRoomPosition); + Controls.Add(label18); + Controls.Add(label3); + Controls.Add(label16); + Controls.Add(txtType); + Controls.Add(txtCustoTel); + Controls.Add(txtRoomNo); + Controls.Add(label14); + Controls.Add(txtState); + Controls.Add(txtCustoType); + Controls.Add(txtMoney); + Controls.Add(label12); + Controls.Add(label13); + Controls.Add(label15); + Controls.Add(label19); + Controls.Add(label20); + Font = new Font("微软雅黑", 10.5F, FontStyle.Regular, GraphicsUnit.Point, 134); + Icon = (Icon)resources.GetObject("$this.Icon"); + IsForbidAltF4 = true; + Margin = new Padding(4, 5, 4, 5); + Name = "FrmCheckIn"; + ShowTitleIcon = true; + Style = Sunny.UI.UIStyle.Custom; + Text = "房间入住"; + ZoomScaleRect = new Rectangle(15, 15, 861, 384); + ButtonOkClick += FrmCheckIn_ButtonOkClick; + ButtonCancelClick += FrmCheckIn_ButtonCancelClick; + Load += FrmCheckIn_Load; + Controls.SetChildIndex(label20, 0); + Controls.SetChildIndex(label19, 0); + Controls.SetChildIndex(label15, 0); + Controls.SetChildIndex(label13, 0); + Controls.SetChildIndex(label12, 0); + Controls.SetChildIndex(txtMoney, 0); + Controls.SetChildIndex(txtCustoType, 0); + Controls.SetChildIndex(txtState, 0); + Controls.SetChildIndex(label14, 0); + Controls.SetChildIndex(txtRoomNo, 0); + Controls.SetChildIndex(txtCustoTel, 0); + Controls.SetChildIndex(txtType, 0); + Controls.SetChildIndex(label16, 0); + Controls.SetChildIndex(label3, 0); + Controls.SetChildIndex(label18, 0); + Controls.SetChildIndex(txtRoomPosition, 0); + Controls.SetChildIndex(txtCustoName, 0); + Controls.SetChildIndex(txtCustoNo, 0); + Controls.SetChildIndex(label1, 0); + Controls.SetChildIndex(txtDeposit, 0); + Controls.SetChildIndex(pnlBtm, 0); + pnlBtm.ResumeLayout(false); + ResumeLayout(false); + PerformLayout(); } #endregion diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.cs index 6a10da49e37fb11b644d133a0748dfb4ac067535..86df5cfc85de19fd54f631fc336269fe75833cc3 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.cs @@ -24,7 +24,9 @@ using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Contract; using EOM.TSHotelManagement.Common.Core; +using jvncorelib.EntityLib; using Sunny.UI; using System.Transactions; @@ -42,37 +44,47 @@ namespace EOM.TSHotelManagement.FormUI private void FrmCheckIn_Load(object sender, EventArgs e) { txtRoomNo.Text = ucRoom.rm_RoomNo; - Dictionary pairs = new Dictionary(); - pairs.Add("no", txtRoomNo.Text.Trim()!); - result = HttpHelper.Request("Room/SelectRoomByRoomNo", pairs); - if (result.statusCode != 200) + Dictionary pairs = new Dictionary { - UIMessageTip.ShowError("SelectRoomByRoomNo+接口服务异常,请提交issue"); + { nameof(ReadRoomInputDto.RoomNumber), txtRoomNo.Text.Trim()! } + }; + result = HttpHelper.Request(ApiConstants.Room_SelectRoomByRoomNo, pairs); + var response = HttpHelper.JsonToModel>(result.message!); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageTip.ShowError($"{ApiConstants.Room_SelectRoomByRoomNo}+接口服务异常,请提交issue"); return; } - Room r = HttpHelper.JsonToModel(result.message!)!; - result = HttpHelper.Request("RoomType/SelectRoomTypeByRoomNo", pairs); - if (result.statusCode != 200) + ReadRoomOutputDto r = response.Source; + result = HttpHelper.Request(ApiConstants.RoomType_SelectRoomTypeByRoomNo, pairs); + var roomTypeResponse = HttpHelper.JsonToModel>(result.message!); + if (roomTypeResponse.StatusCode != StatusCodeConstants.Success) { - UIMessageTip.ShowError("SelectRoomTypeByRoomNo+接口服务异常,请提交issue"); + UIMessageTip.ShowError($"{ApiConstants.RoomType_SelectRoomTypeByRoomNo}+接口服务异常,请提交issue"); return; } - RoomType t = HttpHelper.JsonToModel(result.message!)!; - txtType.Text = t.RoomName; - txtMoney.Text = r.RoomMoney.ToString(); - txtRoomPosition.Text = r.RoomPosition; + ReadRoomTypeOutputDto t = roomTypeResponse.Source; + txtType.Text = t.RoomTypeName; + txtMoney.Text = r.RoomRent.ToString(); + txtRoomPosition.Text = r.RoomLocation; txtState.Text = r.RoomState; txtDeposit.Text = r.RoomDeposit.ToString(); - result = HttpHelper.Request("Custo/SelectCustoAll"); - if (result.statusCode != 200) + pairs = new Dictionary + { + { nameof(ReadCustomerInputDto.IgnorePaging) , "true" }, + { nameof(ReadCustomerInputDto.IsDelete) , "0" } + }; + result = HttpHelper.Request(ApiConstants.Customer_SelectCustomers, pairs); + var customerResponse = HttpHelper.JsonToModel>(result.message!); + if (customerResponse.StatusCode != StatusCodeConstants.Success) { - UIMessageTip.ShowError("SelectCustoAll+接口服务异常,请提交issue"); + UIMessageTip.ShowError($"{ApiConstants.Customer_SelectCustomers}+接口服务异常,请提交issue"); return; } - var custoList = HttpHelper.JsonToPageList>(result.message!); + var custoList = customerResponse.listSource; if (custoList != null && custoList != null) { - var ctos = custoList.listSource.Select(custo => custo.CustoNo).ToArray(); + var ctos = custoList.Select(custo => custo.CustomerNumber).ToArray(); txtCustoNo.AutoCompleteCustomSource.AddRange(ctos); } try @@ -85,27 +97,6 @@ namespace EOM.TSHotelManagement.FormUI } } - #region 关闭窗口 - private void btnClose_Click(object sender, EventArgs e) - { - this.Close(); - } - #endregion - - #region 入住按钮点击事件方法 - private void btnCheckIn_Click(object sender, EventArgs e) - { - - } - #endregion - - #region 客户编号输入框的值发生改变时候的事件方法 - private void txtCustoNo_TextChanged(object sender, EventArgs e) - { - - } - #endregion - private void txtCustoNo_Validated(object sender, EventArgs e) { try @@ -114,53 +105,57 @@ namespace EOM.TSHotelManagement.FormUI } catch (Exception ex) { - UIMessageTip.ShowError($"接口服务异常,请提交issue: {ex.Message}"); + UIMessageTip.ShowError($"接口服务异常,请提交issue: {ex.Message}", 3000); } } private void ValidateAndUpdateCustomerInfo() { // 获取会员规则列表 - var result = HttpHelper.Request("VipRule/SelectVipRuleList"); - if (result.statusCode != 200) + var dic = new Dictionary + { + { nameof(ReadVipLevelRuleInputDto.IgnorePaging), "true" }, + { nameof(ReadVipLevelRuleInputDto.IsDelete), "0" } + }; + var result = HttpHelper.Request(ApiConstants.VipLevelRule_SelectVipRuleList, dic); + var response = HttpHelper.JsonToModel>(result.message!); + if (response.StatusCode != StatusCodeConstants.Success) { - throw new Exception("SelectVipRuleList+接口服务异常"); + UIMessageTip.ShowError($"{ApiConstants.VipLevelRule_SelectVipRuleList}+接口服务异常,请提交issue: {response.Message}", 3000); } - var listVipRule = HttpHelper.JsonToList(result.message!)! - .OrderBy(a => a.rule_value) + var listVipRule = response.listSource + .OrderBy(a => a.RuleValue) .Distinct() .ToList(); // 查询用户消费记录 - var user = new Dictionary { { "custoNo", txtCustoNo.Text.Trim() } }; - result = HttpHelper.Request("Spend/SeletHistorySpendInfoAll", user); - if (result.statusCode != 200) + var user = new Dictionary { { nameof(ReadSpendInputDto.CustomerNumber), txtCustoNo.Text.Trim() } }; + result = HttpHelper.Request(ApiConstants.Spend_SeletHistorySpendInfoAll, user); + var customerSpends = HttpHelper.JsonToModel>(result.message!); + if (customerSpends.StatusCode != StatusCodeConstants.Success) { - throw new Exception("SeletHistorySpendInfoAll+接口服务异常"); + UIMessageTip.ShowError($"{ApiConstants.Spend_SeletHistorySpendInfoAll}+接口服务异常,请提交issue: {response.Message}", 3000); } - var listCustoSpend = HttpHelper.JsonToList(result.message!)!; + var listCustoSpend = customerSpends.listSource; if (!listCustoSpend.IsNullOrEmpty()) { - var spendAmount = listCustoSpend.Sum(a => a.SpendMoney); + var spendAmount = listCustoSpend.Sum(a => a.ConsumptionAmount); var new_type = listVipRule - .Where(vipRule => spendAmount >= vipRule.rule_value) - .OrderByDescending(vipRule => vipRule.rule_value) - .FirstOrDefault()?.type_id ?? 0; + .Where(vipRule => spendAmount >= vipRule.RuleValue) + .OrderByDescending(vipRule => vipRule.RuleValue) + .ThenByDescending(vipRule => vipRule.VipLevelId) + .FirstOrDefault()?.VipLevelId ?? 0; // 如果会员等级有变,更新会员等级 if (new_type != 0) { - user = new Dictionary - { - { "custoNo", txtCustoNo.Text.Trim() }, - { "userType", new_type.ToString() } - }; - result = HttpHelper.Request("Custo/UpdCustomerTypeByCustoNo", user); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Customer_UpdCustomerTypeByCustoNo, HttpHelper.ModelToJson(new UpdateCustomerInputDto { CustomerNumber = txtCustoNo.Text.Trim(), CustomerType = new_type })); + var updateResponse = HttpHelper.JsonToModel(result.message!); + if (updateResponse.StatusCode != StatusCodeConstants.Success) { - throw new Exception("UpdCustomerTypeByCustoNo+接口服务异常"); + throw new Exception($"{ApiConstants.Customer_UpdCustomerTypeByCustoNo}+接口服务异常"); } } } @@ -168,72 +163,67 @@ namespace EOM.TSHotelManagement.FormUI // 获取用户卡片信息 if (!string.IsNullOrEmpty(txtCustoNo.Text)) { - user = new Dictionary { { "CustoNo", txtCustoNo.Text.Trim() } }; - result = HttpHelper.Request("Custo/SelectCardInfoByCustoNo", user); - if (result.statusCode != 200) + user = new Dictionary { { nameof(ReadCustomerInputDto.CustomerNumber), txtCustoNo.Text.Trim() } }; + result = HttpHelper.Request(ApiConstants.Customer_SelectCustoByInfo, user); + var customerResponse = HttpHelper.JsonToModel>(result.message!); + if (customerResponse.StatusCode != StatusCodeConstants.Success) { - throw new Exception("SelectCardInfoByCustoNo+接口服务异常"); + throw new Exception($"{ApiConstants.Customer_SelectCustoByInfo}+接口服务异常"); } - var custo = HttpHelper.JsonToModel(result.message!); - txtCustoName.Text = custo?.CustoName ?? ""; - txtCustoTel.Text = custo?.CustoTel ?? ""; - txtCustoType.Text = custo?.typeName ?? ""; + var custo = customerResponse.Source; + txtCustoName.Text = custo?.CustomerNumber ?? ""; + txtCustoTel.Text = custo?.CustomerPhoneNumber ?? ""; + txtCustoType.Text = custo?.CustomerTypeName ?? ""; } } private void FrmCheckIn_ButtonOkClick(object sender, EventArgs e) { - Dictionary user = new Dictionary(); - user.Add("CustoNo", txtCustoNo.Text.Trim()); - result = HttpHelper.Request("Custo/SelectCardInfoByCustoNo", user); - if (result.statusCode != 200) + var user = new Dictionary { { nameof(ReadCustomerInputDto.CustomerNumber), txtCustoNo.Text.Trim() } }; + result = HttpHelper.Request(ApiConstants.Customer_SelectCustoByInfo, user); + var customerResponse = HttpHelper.JsonToModel>(result.message!); + if (customerResponse.StatusCode != StatusCodeConstants.Success) { - UIMessageTip.ShowError("SelectCardInfoByCustoNo+接口服务异常,请提交issue"); - return; + throw new Exception($"{ApiConstants.Customer_SelectCustoByInfo}+接口服务异常"); } - if (!result.message.IsNullOrEmpty()) + + var custo = customerResponse.Source; + if (!custo.IsNullOrEmpty()) { using (TransactionScope scope = new TransactionScope()) { - Room r = new Room() + UpdateRoomInputDto r = new UpdateRoomInputDto() { - CheckTime = Convert.ToDateTime(Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd HH:mm:ss")), - CustoNo = txtCustoNo.Text, - RoomStateId = 1, - RoomNo = txtRoomNo.Text, - datachg_usr = LoginInfo.WorkerNo + LastCheckInTime = DateOnly.FromDateTime(DateTime.Now), + CustomerNumber = txtCustoNo.Text, + RoomStateId = (int)RoomState.Occupied, + RoomNumber = txtRoomNo.Text, + DataChgUsr = LoginInfo.WorkerNo }; - result = HttpHelper.Request("Room/UpdateRoomInfo", HttpHelper.ModelToJson(r)); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("UpdateRoomInfo+接口服务异常,请提交issue"); - return; - } - bool n = result.message.Equals("true") ? true : false; - if (n) - { - UIMessageBox.Show("登记入住成功!", "登记提示", UIStyle.Green); - txtCustoNo.Text = ""; - FrmRoomManager.Reload(""); - FrmRoomManager._RefreshRoomCount(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerClub + "-" + LoginInfo.WorkerPosition + "-" + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "帮助" + r.CustoNo + "进行了入住操作!", 1); - #endregion - scope.Complete(); - this.Close(); - return; - } - else + result = HttpHelper.Request(ApiConstants.Room_UpdateRoomInfo, HttpHelper.ModelToJson(r)); + var response = HttpHelper.JsonToModel(result.message!); + if (response.StatusCode != StatusCodeConstants.Success) { + UIMessageTip.ShowError($"{ApiConstants.Room_UpdateRoomInfo}+接口服务异常,请提交issue"); UIMessageBox.Show("登记入住失败!", "登记提示", UIStyle.Red); return; } + UIMessageBox.Show("登记入住成功!", "登记提示", UIStyle.Green); + txtCustoNo.Text = ""; + FrmRoomManager.Reload(""); + FrmRoomManager._RefreshRoomCount(); + #region 获取添加操作日志所需的信息 + RecordHelper.Record(LoginInfo.WorkerClub + "-" + LoginInfo.WorkerPosition + "-" + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "帮助" + r.CustomerNumber + "进行了入住操作!", Common.Core.LogLevel.Normal); + #endregion + scope.Complete(); + this.Close(); + return; } } else { - UIMessageBox.Show("客户编号不存在!", "来自小T的提示", UIStyle.Red); + UIMessageBox.Show("所选客户不存在!", "系统提示", UIStyle.Red); } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.resx index d13d94a246f57b3adee15abadd7b88dcb021db42..e5c918ef47d5d25fdc2b24b6e3043cf297466523 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.resx +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.resx @@ -1,17 +1,17 @@  - diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.Designer.cs deleted file mode 100644 index e20fda95e3878a7bae92e585466d5fe73250e0e8..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.Designer.cs +++ /dev/null @@ -1,231 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmCheckList - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCheckList)); - this.dgvCheckInfo = new Sunny.UI.UIDataGridView(); - this.clCheckNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckClub = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckProgress = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckCash = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.CheckScore = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckPerson = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckAdvice = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dgvCheckInfo)).BeginInit(); - this.SuspendLayout(); - // - // dgvCheckInfo - // - this.dgvCheckInfo.AllowUserToAddRows = false; - this.dgvCheckInfo.AllowUserToDeleteRows = false; - this.dgvCheckInfo.AllowUserToResizeColumns = false; - this.dgvCheckInfo.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvCheckInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvCheckInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvCheckInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvCheckInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvCheckInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvCheckInfo.ColumnHeadersHeight = 32; - this.dgvCheckInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvCheckInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clCheckNo, - this.clCheckClub, - this.clCheckProgress, - this.clCheckCash, - this.CheckScore, - this.clCheckPerson, - this.clCheckAdvice, - this.Column8, - this.Column9, - this.Column10, - this.Column11, - this.Column1}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvCheckInfo.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvCheckInfo.EnableHeadersVisualStyles = false; - this.dgvCheckInfo.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvCheckInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvCheckInfo.Location = new System.Drawing.Point(3, 38); - this.dgvCheckInfo.Name = "dgvCheckInfo"; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvCheckInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvCheckInfo.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvCheckInfo.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvCheckInfo.RowTemplate.Height = 29; - this.dgvCheckInfo.SelectedIndex = -1; - this.dgvCheckInfo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvCheckInfo.Size = new System.Drawing.Size(999, 582); - this.dgvCheckInfo.TabIndex = 2; - // - // clCheckNo - // - this.clCheckNo.DataPropertyName = "CheckNo"; - this.clCheckNo.HeaderText = "监管统计编号"; - this.clCheckNo.Name = "clCheckNo"; - // - // clCheckClub - // - this.clCheckClub.DataPropertyName = "CheckClub"; - this.clCheckClub.HeaderText = "接受监管部门"; - this.clCheckClub.Name = "clCheckClub"; - // - // clCheckProgress - // - this.clCheckProgress.DataPropertyName = "CheckProgress"; - this.clCheckProgress.HeaderText = "总体情况概述"; - this.clCheckProgress.Name = "clCheckProgress"; - // - // clCheckCash - // - this.clCheckCash.DataPropertyName = "CheckCash"; - this.clCheckCash.HeaderText = "部门财务情况"; - this.clCheckCash.Name = "clCheckCash"; - // - // CheckScore - // - this.CheckScore.DataPropertyName = "CheckScore"; - this.CheckScore.HeaderText = "本次得分"; - this.CheckScore.Name = "CheckScore"; - // - // clCheckPerson - // - this.clCheckPerson.DataPropertyName = "CheckPerson"; - this.clCheckPerson.HeaderText = "本次监管负责人"; - this.clCheckPerson.Name = "clCheckPerson"; - // - // clCheckAdvice - // - this.clCheckAdvice.DataPropertyName = "CheckAdvice"; - this.clCheckAdvice.HeaderText = "监管结果建议"; - this.clCheckAdvice.Name = "clCheckAdvice"; - // - // Column8 - // - this.Column8.DataPropertyName = "delete_mk"; - this.Column8.HeaderText = "Column8"; - this.Column8.Name = "Column8"; - this.Column8.Visible = false; - // - // Column9 - // - this.Column9.DataPropertyName = "datains_usr"; - this.Column9.HeaderText = "Column9"; - this.Column9.Name = "Column9"; - this.Column9.Visible = false; - // - // Column10 - // - this.Column10.DataPropertyName = "datains_date"; - this.Column10.HeaderText = "Column10"; - this.Column10.Name = "Column10"; - this.Column10.Visible = false; - // - // Column11 - // - this.Column11.DataPropertyName = "datachg_usr"; - this.Column11.HeaderText = "Column11"; - this.Column11.Name = "Column11"; - this.Column11.Visible = false; - // - // Column1 - // - this.Column1.DataPropertyName = "datachg_date"; - this.Column1.HeaderText = "Column1"; - this.Column1.Name = "Column1"; - this.Column1.Visible = false; - // - // FrmCheckList - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.dgvCheckInfo); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmCheckList"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "监管统计信息"; - this.Load += new System.EventHandler(this.FrmCashList_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvCheckInfo)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private Sunny.UI.UIDataGridView dgvCheckInfo; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckClub; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckProgress; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckCash; - private System.Windows.Forms.DataGridViewTextBoxColumn CheckScore; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckPerson; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckAdvice; - private System.Windows.Forms.DataGridViewTextBoxColumn Column8; - private System.Windows.Forms.DataGridViewTextBoxColumn Column9; - private System.Windows.Forms.DataGridViewTextBoxColumn Column10; - private System.Windows.Forms.DataGridViewTextBoxColumn Column11; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.cs deleted file mode 100644 index b17010d909622074abd65f3e38c1efd79aaa5e6d..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.cs +++ /dev/null @@ -1,52 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmCheckList : UIForm - { - public FrmCheckList() - { - InitializeComponent(); - } - - - private void FrmCashList_Load(object sender, EventArgs e) - { - var result = HttpHelper.Request("CheckInfo/SelectCheckInfoAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectCheckInfoAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvCheckInfo.AutoGenerateColumns = false; - dgvCheckInfo.DataSource = HttpHelper.JsonToList(result.message); - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.resx deleted file mode 100644 index e07a7f25259aaecd8517fdeb758899ce2ebfe310..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.resx +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGADDAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACWElEQVRYR+2XQUgU - YRiGl27dhYhAu0V0DUIP2tUQKqKCAquTSNCxju4tohCEBA+Vl/JmkJBHvVl6DkQv0i2K3Uvgcet5/31n - pt1Zx5nZWSjogZeZ//3e//s/d3XcrZWl1WpdR1voC3pge/Bw2Cn08leauiODg4PvoF0fmILaa3TG8eqg - 6Yia+5wA659Ib8MVdGBb/nf0DJ3z9nLQ6wS6RqM36EfoblivohFHNeBJNO9ygPUhWkSXHMsHGybQC7Tv - XjF4G+iGoymojaP3jsfgfUZz6OhhKE6hbe/pAH8H3XP0WMjeRp+8vQN8DTPlaALmpjMB1k20jK46Uhjt - dY+m2wZYbzqSIDMqolHblaGef55hOyGzWBGVDkD0LNllrrkfQFUPUFfeXLadSekBsOuuxz8t6znlzWAH - iGrC1t85AN4k+oieh1AXUR9dbSVkFaOasNVzAK6ZvxdZZxQegNvUYVz/D/BvD7AQtgH3M7YDrPWfco3S - fVs6bAhvHT21pdxp9JZa6umIP6PegvsF2wmY+qy358BXLsMu9Y16uad67+kslzqhMK2Q4H7Jdt+ol9uq - 77Tt3hBYcVbhW7ZLox5up34rto+G0AXU8B4Rv+9F0d52i3B4Q71dyob8zfa2Nmx86FJutMfbA6zvupQP - 9nQP8cSlY1HW2wKsZ10qBnu7h3iFxl1OoZoyjgdYP3a5HPToGELQ9AOX+EGje3sxrPUF5ZEj/UGjMbTq - 3jF4+gAbPyUj8N6h895eHTTVd8Oe3x2Ehyn9V5MbDtFLrq9depm/oXl00eUC1Gq/AYRGrw/yvI69AAAA - AElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.Designer.cs index 7e20aba440ac283c74450c4eeac196e6ad00c57d..05091947f076ab0c591ecb8a5172d3397d5c7f15 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.Designer.cs @@ -28,60 +28,23 @@ /// private void InitializeComponent() { - DataGridViewCellStyle dataGridViewCellStyle1 = new DataGridViewCellStyle(); - DataGridViewCellStyle dataGridViewCellStyle2 = new DataGridViewCellStyle(); - DataGridViewCellStyle dataGridViewCellStyle3 = new DataGridViewCellStyle(); - DataGridViewCellStyle dataGridViewCellStyle4 = new DataGridViewCellStyle(); - DataGridViewCellStyle dataGridViewCellStyle5 = new DataGridViewCellStyle(); - DataGridViewCellStyle dataGridViewCellStyle6 = new DataGridViewCellStyle(); - DataGridViewCellStyle dataGridViewCellStyle7 = new DataGridViewCellStyle(); - DataGridViewCellStyle dataGridViewCellStyle8 = new DataGridViewCellStyle(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCheckOutForm)); - btnBalance = new Sunny.UI.UIButton(); lblVIPPrice = new Label(); label15 = new Label(); - dgvSpendList = new Sunny.UI.UIDataGridView(); - dataGridViewTextBoxColumn1 = new DataGridViewTextBoxColumn(); - clPrice = new DataGridViewTextBoxColumn(); - dataGridViewTextBoxColumn2 = new DataGridViewTextBoxColumn(); - dataGridViewTextBoxColumn3 = new DataGridViewTextBoxColumn(); - dataGridViewTextBoxColumn4 = new DataGridViewTextBoxColumn(); - dataGridViewTextBoxColumn5 = new DataGridViewTextBoxColumn(); - dataGridViewTextBoxColumn6 = new DataGridViewTextBoxColumn(); - dataGridViewTextBoxColumn7 = new DataGridViewTextBoxColumn(); - clSpendNo = new DataGridViewTextBoxColumn(); - Column1 = new DataGridViewTextBoxColumn(); - Column2 = new DataGridViewTextBoxColumn(); - Column3 = new DataGridViewTextBoxColumn(); - Column4 = new DataGridViewTextBoxColumn(); - Column8 = new DataGridViewTextBoxColumn(); lblDay = new Label(); lable00 = new Label(); label29 = new Label(); lblVIP = new Label(); - dtpCheckTime = new Sunny.UI.UITextBox(); label25 = new Label(); - txtRoomNo = new Sunny.UI.UITextBox(); label27 = new Label(); label28 = new Label(); lblChange = new Label(); - CustoNo = new Sunny.UI.UITextBox(); label21 = new Label(); - CustoName = new Sunny.UI.UITextBox(); lblGetReceipts = new Label(); label1 = new Label(); label24 = new Label(); label17 = new Label(); label18 = new Label(); - cboCustoType = new Sunny.UI.UIComboBox(); - cboPassportType = new Sunny.UI.UIComboBox(); - cboCustoSex = new Sunny.UI.UIComboBox(); - txtCustoNo = new Sunny.UI.UITextBox(); - txtCustoName = new Sunny.UI.UITextBox(); - txtPassportNum = new Sunny.UI.UITextBox(); - txtTel = new Sunny.UI.UITextBox(); - dtpBirth = new Sunny.UI.UIDatePicker(); - txtAddress = new Sunny.UI.UITextBox(); label2 = new Label(); label3 = new Label(); label4 = new Label(); @@ -91,54 +54,39 @@ label30 = new Label(); label31 = new Label(); label32 = new Label(); - dgvWti = new Sunny.UI.UIDataGridView(); uiTabControlMenu2 = new Sunny.UI.UITabControlMenu(); tabPage1 = new TabPage(); - txtReceipts = new Sunny.UI.UITextBox(); + dtpCheckTime = new AntdUI.Input(); + txtRoomNo = new AntdUI.Input(); + CustoName = new AntdUI.Input(); + CustoNo = new AntdUI.Input(); + btnBalance = new AntdUI.Button(); + txtReceipts = new AntdUI.Input(); + btnPg = new AntdUI.Pagination(); + dgvSpendList = new AntdUI.Table(); tabPage2 = new TabPage(); + txtCustomerAddress = new AntdUI.Input(); + txtDateOfBirth = new AntdUI.Input(); + txtCustomerGender = new AntdUI.Input(); + txtCustomerName = new AntdUI.Input(); + txtCustomerNumber = new AntdUI.Input(); + txtTel = new AntdUI.Input(); + txtIdCardNumber = new AntdUI.Input(); + txtPassportName = new AntdUI.Input(); + txtCustomerType = new AntdUI.Input(); tabPage3 = new TabPage(); - Column11 = new DataGridViewTextBoxColumn(); - token = new DataGridViewTextBoxColumn(); - clRoomNo = new DataGridViewTextBoxColumn(); - clCustoNo = new DataGridViewTextBoxColumn(); - clStartTime = new DataGridViewTextBoxColumn(); - clDealTime = new DataGridViewTextBoxColumn(); - clWater = new DataGridViewTextBoxColumn(); - clElectric = new DataGridViewTextBoxColumn(); - clMarkUser = new DataGridViewTextBoxColumn(); - Column5 = new DataGridViewTextBoxColumn(); - Column6 = new DataGridViewTextBoxColumn(); - Column7 = new DataGridViewTextBoxColumn(); - Column9 = new DataGridViewTextBoxColumn(); - Column10 = new DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)dgvSpendList).BeginInit(); - ((System.ComponentModel.ISupportInitialize)dgvWti).BeginInit(); + dgvWti = new AntdUI.Table(); uiTabControlMenu2.SuspendLayout(); tabPage1.SuspendLayout(); tabPage2.SuspendLayout(); tabPage3.SuspendLayout(); SuspendLayout(); // - // btnBalance - // - btnBalance.Cursor = Cursors.Hand; - btnBalance.Font = new Font("微软雅黑", 12F); - btnBalance.Location = new Point(459, 486); - btnBalance.MinimumSize = new Size(1, 1); - btnBalance.Name = "btnBalance"; - btnBalance.Radius = 30; - btnBalance.Size = new Size(162, 46); - btnBalance.Style = Sunny.UI.UIStyle.Custom; - btnBalance.TabIndex = 116; - btnBalance.Text = "结 算"; - btnBalance.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - btnBalance.Click += btnBalance_Click; - // // lblVIPPrice // lblVIPPrice.AutoSize = true; lblVIPPrice.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - lblVIPPrice.Location = new Point(549, 389); + lblVIPPrice.Location = new Point(509, 394); lblVIPPrice.Name = "lblVIPPrice"; lblVIPPrice.Size = new Size(40, 20); lblVIPPrice.TabIndex = 28; @@ -147,179 +95,19 @@ // label15 // label15.AutoSize = true; - label15.Font = new Font("Microsoft Sans Serif", 10.5F, FontStyle.Regular, GraphicsUnit.Point, 134); + label15.Font = new Font("Microsoft Sans Serif", 10.5F, FontStyle.Bold, GraphicsUnit.Point, 0); label15.ForeColor = Color.Red; label15.Location = new Point(7, 525); label15.Name = "label15"; - label15.Size = new Size(253, 17); + label15.Size = new Size(273, 17); label15.TabIndex = 11; label15.Text = "Tips:请提醒客人不要忘记带齐行李哦~"; // - // dgvSpendList - // - dgvSpendList.AllowUserToAddRows = false; - dgvSpendList.AllowUserToDeleteRows = false; - dgvSpendList.AllowUserToResizeColumns = false; - dgvSpendList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = Color.FromArgb(235, 243, 255); - dgvSpendList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - dgvSpendList.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill; - dgvSpendList.BackgroundColor = Color.White; - dgvSpendList.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = Color.FromArgb(80, 160, 255); - dataGridViewCellStyle2.Font = new Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = Color.White; - dataGridViewCellStyle2.SelectionBackColor = SystemColors.Highlight; - dataGridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = DataGridViewTriState.True; - dgvSpendList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - dgvSpendList.ColumnHeadersHeight = 32; - dgvSpendList.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - dgvSpendList.Columns.AddRange(new DataGridViewColumn[] { dataGridViewTextBoxColumn1, clPrice, dataGridViewTextBoxColumn2, dataGridViewTextBoxColumn3, dataGridViewTextBoxColumn4, dataGridViewTextBoxColumn5, dataGridViewTextBoxColumn6, dataGridViewTextBoxColumn7, clSpendNo, Column1, Column2, Column3, Column4, Column8 }); - dgvSpendList.EnableHeadersVisualStyles = false; - dgvSpendList.Font = new Font("微软雅黑", 12F); - dgvSpendList.GridColor = Color.FromArgb(80, 160, 255); - dgvSpendList.Location = new Point(10, 113); - dgvSpendList.Name = "dgvSpendList"; - dgvSpendList.ReadOnly = true; - dataGridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = Color.FromArgb(235, 243, 255); - dataGridViewCellStyle3.Font = new Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = Color.FromArgb(48, 48, 48); - dataGridViewCellStyle3.SelectionBackColor = Color.FromArgb(80, 160, 255); - dataGridViewCellStyle3.SelectionForeColor = Color.White; - dataGridViewCellStyle3.WrapMode = DataGridViewTriState.True; - dgvSpendList.RowHeadersDefaultCellStyle = dataGridViewCellStyle3; - dgvSpendList.RowHeadersVisible = false; - dataGridViewCellStyle4.BackColor = Color.White; - dgvSpendList.RowsDefaultCellStyle = dataGridViewCellStyle4; - dgvSpendList.RowTemplate.Height = 29; - dgvSpendList.SelectedIndex = -1; - dgvSpendList.SelectionMode = DataGridViewSelectionMode.FullRowSelect; - dgvSpendList.ShowRowErrors = false; - dgvSpendList.Size = new Size(648, 202); - dgvSpendList.StripeOddColor = Color.FromArgb(235, 243, 255); - dgvSpendList.Style = Sunny.UI.UIStyle.Custom; - dgvSpendList.TabIndex = 115; - // - // dataGridViewTextBoxColumn1 - // - dataGridViewTextBoxColumn1.DataPropertyName = "RoomNo"; - dataGridViewTextBoxColumn1.FillWeight = 102.6831F; - dataGridViewTextBoxColumn1.HeaderText = "房号"; - dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; - dataGridViewTextBoxColumn1.ReadOnly = true; - // - // clPrice - // - clPrice.DataPropertyName = "SpendPriceStr"; - clPrice.HeaderText = "单价(元)"; - clPrice.Name = "clPrice"; - clPrice.ReadOnly = true; - // - // dataGridViewTextBoxColumn2 - // - dataGridViewTextBoxColumn2.DataPropertyName = "CustoNo"; - dataGridViewTextBoxColumn2.FillWeight = 102.6831F; - dataGridViewTextBoxColumn2.HeaderText = "客户编号"; - dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; - dataGridViewTextBoxColumn2.ReadOnly = true; - // - // dataGridViewTextBoxColumn3 - // - dataGridViewTextBoxColumn3.DataPropertyName = "SpendName"; - dataGridViewTextBoxColumn3.FillWeight = 102.6831F; - dataGridViewTextBoxColumn3.HeaderText = "商品"; - dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; - dataGridViewTextBoxColumn3.ReadOnly = true; - // - // dataGridViewTextBoxColumn4 - // - dataGridViewTextBoxColumn4.DataPropertyName = "SpendAmount"; - dataGridViewTextBoxColumn4.FillWeight = 60F; - dataGridViewTextBoxColumn4.HeaderText = "数量"; - dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; - dataGridViewTextBoxColumn4.ReadOnly = true; - // - // dataGridViewTextBoxColumn5 - // - dataGridViewTextBoxColumn5.DataPropertyName = "SpendPrice"; - dataGridViewTextBoxColumn5.FillWeight = 102.6831F; - dataGridViewTextBoxColumn5.HeaderText = "单价(元)"; - dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; - dataGridViewTextBoxColumn5.ReadOnly = true; - dataGridViewTextBoxColumn5.Visible = false; - // - // dataGridViewTextBoxColumn6 - // - dataGridViewTextBoxColumn6.DataPropertyName = "SpendMoneyStr"; - dataGridViewTextBoxColumn6.FillWeight = 102.6831F; - dataGridViewTextBoxColumn6.HeaderText = "总额"; - dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; - dataGridViewTextBoxColumn6.ReadOnly = true; - // - // dataGridViewTextBoxColumn7 - // - dataGridViewTextBoxColumn7.DataPropertyName = "SpendTime"; - dataGridViewTextBoxColumn7.FillWeight = 102.6831F; - dataGridViewTextBoxColumn7.HeaderText = "消费时间"; - dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7"; - dataGridViewTextBoxColumn7.ReadOnly = true; - // - // clSpendNo - // - clSpendNo.DataPropertyName = "delete_mk"; - clSpendNo.HeaderText = "Column1"; - clSpendNo.Name = "clSpendNo"; - clSpendNo.ReadOnly = true; - clSpendNo.Visible = false; - // - // Column1 - // - Column1.DataPropertyName = "datains_usr"; - Column1.HeaderText = "Column1"; - Column1.Name = "Column1"; - Column1.ReadOnly = true; - Column1.Visible = false; - // - // Column2 - // - Column2.DataPropertyName = "datains_date"; - Column2.HeaderText = "Column2"; - Column2.Name = "Column2"; - Column2.ReadOnly = true; - Column2.Visible = false; - // - // Column3 - // - Column3.DataPropertyName = "datachg_usr"; - Column3.HeaderText = "Column3"; - Column3.Name = "Column3"; - Column3.ReadOnly = true; - Column3.Visible = false; - // - // Column4 - // - Column4.DataPropertyName = "datachg_date"; - Column4.HeaderText = "Column4"; - Column4.Name = "Column4"; - Column4.ReadOnly = true; - Column4.Visible = false; - // - // Column8 - // - Column8.DataPropertyName = "MoneyState"; - Column8.HeaderText = "Column8"; - Column8.Name = "Column8"; - Column8.ReadOnly = true; - Column8.Visible = false; - // // lblDay // lblDay.AutoSize = true; lblDay.Font = new Font("Microsoft Sans Serif", 15F, FontStyle.Regular, GraphicsUnit.Point, 0); - lblDay.Location = new Point(572, 76); + lblDay.Location = new Point(593, 76); lblDay.Name = "lblDay"; lblDay.Size = new Size(45, 25); lblDay.TabIndex = 114; @@ -329,17 +117,17 @@ // lable00.AutoSize = true; lable00.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - lable00.Location = new Point(456, 388); + lable00.Location = new Point(422, 394); lable00.Name = "lable00"; lable00.Size = new Size(89, 20); lable00.TabIndex = 26; - lable00.Text = "折后金额:"; + lable00.Text = "应付金额:"; // // label29 // label29.AutoSize = true; label29.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); - label29.Location = new Point(551, 24); + label29.Location = new Point(572, 24); label29.Name = "label29"; label29.Size = new Size(88, 25); label29.TabIndex = 113; @@ -349,61 +137,22 @@ // lblVIP.AutoSize = true; lblVIP.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - lblVIP.Location = new Point(549, 361); + lblVIP.Location = new Point(508, 362); lblVIP.Name = "lblVIP"; lblVIP.Size = new Size(73, 20); lblVIP.TabIndex = 24; lblVIP.Text = "不 打 折"; // - // dtpCheckTime - // - dtpCheckTime.Cursor = Cursors.IBeam; - dtpCheckTime.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - dtpCheckTime.Location = new Point(376, 18); - dtpCheckTime.Margin = new Padding(4, 5, 4, 5); - dtpCheckTime.MinimumSize = new Size(1, 1); - dtpCheckTime.Name = "dtpCheckTime"; - dtpCheckTime.Padding = new Padding(5); - dtpCheckTime.Radius = 20; - dtpCheckTime.ReadOnly = true; - dtpCheckTime.ShowText = false; - dtpCheckTime.Size = new Size(168, 35); - dtpCheckTime.Style = Sunny.UI.UIStyle.Custom; - dtpCheckTime.StyleCustomMode = true; - dtpCheckTime.Symbol = 559683; - dtpCheckTime.TabIndex = 111; - dtpCheckTime.TextAlignment = ContentAlignment.MiddleLeft; - dtpCheckTime.Watermark = ""; - // // label25 // label25.AutoSize = true; label25.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - label25.Location = new Point(456, 359); + label25.Location = new Point(422, 362); label25.Name = "label25"; label25.Size = new Size(89, 20); label25.TabIndex = 23; label25.Text = "会员折扣:"; // - // txtRoomNo - // - txtRoomNo.Cursor = Cursors.IBeam; - txtRoomNo.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtRoomNo.Location = new Point(376, 70); - txtRoomNo.Margin = new Padding(4, 5, 4, 5); - txtRoomNo.MinimumSize = new Size(1, 1); - txtRoomNo.Name = "txtRoomNo"; - txtRoomNo.Padding = new Padding(5); - txtRoomNo.Radius = 20; - txtRoomNo.ReadOnly = true; - txtRoomNo.ShowText = false; - txtRoomNo.Size = new Size(168, 35); - txtRoomNo.Style = Sunny.UI.UIStyle.Custom; - txtRoomNo.StyleCustomMode = true; - txtRoomNo.TabIndex = 112; - txtRoomNo.TextAlignment = ContentAlignment.MiddleLeft; - txtRoomNo.Watermark = ""; - // // label27 // label27.AutoSize = true; @@ -428,65 +177,27 @@ // lblChange.AutoSize = true; lblChange.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - lblChange.Location = new Point(548, 445); + lblChange.Location = new Point(509, 458); lblChange.Name = "lblChange"; lblChange.Size = new Size(40, 20); lblChange.TabIndex = 21; lblChange.Text = "0.00"; // - // CustoNo - // - CustoNo.Cursor = Cursors.IBeam; - CustoNo.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - CustoNo.Location = new Point(117, 18); - CustoNo.Margin = new Padding(4, 5, 4, 5); - CustoNo.MinimumSize = new Size(1, 1); - CustoNo.Name = "CustoNo"; - CustoNo.Padding = new Padding(5); - CustoNo.Radius = 20; - CustoNo.ReadOnly = true; - CustoNo.ShowText = false; - CustoNo.Size = new Size(144, 35); - CustoNo.Style = Sunny.UI.UIStyle.Custom; - CustoNo.StyleCustomMode = true; - CustoNo.TabIndex = 107; - CustoNo.TextAlignment = ContentAlignment.MiddleLeft; - CustoNo.Watermark = ""; - // // label21 // label21.AutoSize = true; label21.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - label21.Location = new Point(455, 446); + label21.Location = new Point(421, 458); label21.Name = "label21"; label21.Size = new Size(89, 20); label21.TabIndex = 20; label21.Text = "找 零:"; // - // CustoName - // - CustoName.Cursor = Cursors.IBeam; - CustoName.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - CustoName.Location = new Point(117, 70); - CustoName.Margin = new Padding(4, 5, 4, 5); - CustoName.MinimumSize = new Size(1, 1); - CustoName.Name = "CustoName"; - CustoName.Padding = new Padding(5); - CustoName.Radius = 20; - CustoName.ReadOnly = true; - CustoName.ShowText = false; - CustoName.Size = new Size(144, 35); - CustoName.Style = Sunny.UI.UIStyle.Custom; - CustoName.StyleCustomMode = true; - CustoName.TabIndex = 108; - CustoName.TextAlignment = ContentAlignment.MiddleLeft; - CustoName.Watermark = ""; - // // lblGetReceipts // lblGetReceipts.AutoSize = true; lblGetReceipts.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - lblGetReceipts.Location = new Point(548, 417); + lblGetReceipts.Location = new Point(509, 330); lblGetReceipts.Name = "lblGetReceipts"; lblGetReceipts.Size = new Size(40, 20); lblGetReceipts.TabIndex = 19; @@ -496,7 +207,7 @@ // label1.AutoSize = true; label1.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); - label1.Location = new Point(26, 76); + label1.Location = new Point(7, 76); label1.Name = "label1"; label1.Size = new Size(88, 25); label1.TabIndex = 106; @@ -506,7 +217,7 @@ // label24.AutoSize = true; label24.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); - label24.Location = new Point(26, 24); + label24.Location = new Point(7, 24); label24.Name = "label24"; label24.Size = new Size(88, 25); label24.TabIndex = 105; @@ -516,7 +227,7 @@ // label17.AutoSize = true; label17.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - label17.Location = new Point(455, 330); + label17.Location = new Point(421, 426); label17.Name = "label17"; label17.Size = new Size(89, 20); label17.TabIndex = 14; @@ -526,196 +237,11 @@ // label18.AutoSize = true; label18.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); - label18.Location = new Point(455, 417); + label18.Location = new Point(422, 330); label18.Name = "label18"; label18.Size = new Size(89, 20); label18.TabIndex = 15; - label18.Text = "应收金额:"; - // - // cboCustoType - // - cboCustoType.DataSource = null; - cboCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - cboCustoType.FillColor = Color.White; - cboCustoType.Font = new Font("微软雅黑", 15.75F); - cboCustoType.ItemHoverColor = Color.FromArgb(155, 200, 255); - cboCustoType.ItemSelectForeColor = Color.FromArgb(235, 243, 255); - cboCustoType.Location = new Point(437, 19); - cboCustoType.Margin = new Padding(4, 5, 4, 5); - cboCustoType.MinimumSize = new Size(63, 0); - cboCustoType.Name = "cboCustoType"; - cboCustoType.Padding = new Padding(0, 0, 30, 2); - cboCustoType.Radius = 20; - cboCustoType.ReadOnly = true; - cboCustoType.Size = new Size(203, 35); - cboCustoType.Style = Sunny.UI.UIStyle.Custom; - cboCustoType.SymbolSize = 24; - cboCustoType.TabIndex = 125; - cboCustoType.TextAlignment = ContentAlignment.MiddleLeft; - cboCustoType.Watermark = ""; - // - // cboPassportType - // - cboPassportType.DataSource = null; - cboPassportType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - cboPassportType.FillColor = Color.White; - cboPassportType.Font = new Font("微软雅黑", 15.75F); - cboPassportType.ItemHoverColor = Color.FromArgb(155, 200, 255); - cboPassportType.ItemSelectForeColor = Color.FromArgb(235, 243, 255); - cboPassportType.Location = new Point(437, 70); - cboPassportType.Margin = new Padding(4, 5, 4, 5); - cboPassportType.MinimumSize = new Size(63, 0); - cboPassportType.Name = "cboPassportType"; - cboPassportType.Padding = new Padding(0, 0, 30, 2); - cboPassportType.Radius = 20; - cboPassportType.ReadOnly = true; - cboPassportType.Size = new Size(203, 35); - cboPassportType.Style = Sunny.UI.UIStyle.Custom; - cboPassportType.SymbolSize = 24; - cboPassportType.TabIndex = 124; - cboPassportType.TextAlignment = ContentAlignment.MiddleLeft; - cboPassportType.Watermark = ""; - // - // cboCustoSex - // - cboCustoSex.DataSource = null; - cboCustoSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - cboCustoSex.FillColor = Color.White; - cboCustoSex.Font = new Font("微软雅黑", 15.75F); - cboCustoSex.ItemHoverColor = Color.FromArgb(155, 200, 255); - cboCustoSex.ItemSelectForeColor = Color.FromArgb(235, 243, 255); - cboCustoSex.Location = new Point(134, 124); - cboCustoSex.Margin = new Padding(4, 5, 4, 5); - cboCustoSex.MinimumSize = new Size(63, 0); - cboCustoSex.Name = "cboCustoSex"; - cboCustoSex.Padding = new Padding(0, 0, 30, 2); - cboCustoSex.Radius = 20; - cboCustoSex.ReadOnly = true; - cboCustoSex.Size = new Size(203, 35); - cboCustoSex.Style = Sunny.UI.UIStyle.Custom; - cboCustoSex.SymbolSize = 24; - cboCustoSex.TabIndex = 123; - cboCustoSex.TextAlignment = ContentAlignment.MiddleLeft; - cboCustoSex.Watermark = ""; - // - // txtCustoNo - // - txtCustoNo.Cursor = Cursors.IBeam; - txtCustoNo.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtCustoNo.Location = new Point(134, 20); - txtCustoNo.Margin = new Padding(4, 5, 4, 5); - txtCustoNo.MinimumSize = new Size(1, 1); - txtCustoNo.Name = "txtCustoNo"; - txtCustoNo.Padding = new Padding(5); - txtCustoNo.Radius = 20; - txtCustoNo.ReadOnly = true; - txtCustoNo.ShowText = false; - txtCustoNo.Size = new Size(203, 35); - txtCustoNo.Style = Sunny.UI.UIStyle.Custom; - txtCustoNo.StyleCustomMode = true; - txtCustoNo.TabIndex = 122; - txtCustoNo.TextAlignment = ContentAlignment.MiddleLeft; - txtCustoNo.Watermark = ""; - // - // txtCustoName - // - txtCustoName.Cursor = Cursors.IBeam; - txtCustoName.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtCustoName.Location = new Point(134, 72); - txtCustoName.Margin = new Padding(4, 5, 4, 5); - txtCustoName.MinimumSize = new Size(1, 1); - txtCustoName.Name = "txtCustoName"; - txtCustoName.Padding = new Padding(5); - txtCustoName.Radius = 20; - txtCustoName.ReadOnly = true; - txtCustoName.ShowText = false; - txtCustoName.Size = new Size(203, 35); - txtCustoName.Style = Sunny.UI.UIStyle.Custom; - txtCustoName.StyleCustomMode = true; - txtCustoName.TabIndex = 121; - txtCustoName.TextAlignment = ContentAlignment.MiddleLeft; - txtCustoName.Watermark = ""; - // - // txtPassportNum - // - txtPassportNum.Cursor = Cursors.IBeam; - txtPassportNum.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtPassportNum.Location = new Point(437, 121); - txtPassportNum.Margin = new Padding(4, 5, 4, 5); - txtPassportNum.MinimumSize = new Size(1, 1); - txtPassportNum.Name = "txtPassportNum"; - txtPassportNum.Padding = new Padding(5); - txtPassportNum.Radius = 20; - txtPassportNum.ReadOnly = true; - txtPassportNum.ShowText = false; - txtPassportNum.Size = new Size(203, 35); - txtPassportNum.Style = Sunny.UI.UIStyle.Custom; - txtPassportNum.StyleCustomMode = true; - txtPassportNum.TabIndex = 120; - txtPassportNum.TextAlignment = ContentAlignment.MiddleLeft; - txtPassportNum.Watermark = ""; - // - // txtTel - // - txtTel.Cursor = Cursors.IBeam; - txtTel.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtTel.Location = new Point(437, 172); - txtTel.Margin = new Padding(4, 5, 4, 5); - txtTel.MinimumSize = new Size(1, 1); - txtTel.Name = "txtTel"; - txtTel.Padding = new Padding(5); - txtTel.Radius = 20; - txtTel.ReadOnly = true; - txtTel.ShowText = false; - txtTel.Size = new Size(203, 35); - txtTel.Style = Sunny.UI.UIStyle.Custom; - txtTel.StyleCustomMode = true; - txtTel.TabIndex = 119; - txtTel.TextAlignment = ContentAlignment.MiddleLeft; - txtTel.Watermark = ""; - // - // dtpBirth - // - dtpBirth.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - dtpBirth.FillColor = Color.White; - dtpBirth.Font = new Font("Microsoft Sans Serif", 15.75F); - dtpBirth.Location = new Point(134, 176); - dtpBirth.Margin = new Padding(4, 5, 4, 5); - dtpBirth.MaxLength = 10; - dtpBirth.MinimumSize = new Size(63, 0); - dtpBirth.Name = "dtpBirth"; - dtpBirth.Padding = new Padding(0, 0, 30, 2); - dtpBirth.Radius = 20; - dtpBirth.ReadOnly = true; - dtpBirth.Size = new Size(203, 31); - dtpBirth.Style = Sunny.UI.UIStyle.Custom; - dtpBirth.SymbolDropDown = 61555; - dtpBirth.SymbolNormal = 61555; - dtpBirth.SymbolSize = 24; - dtpBirth.TabIndex = 118; - dtpBirth.Text = "2020-11-24"; - dtpBirth.TextAlignment = ContentAlignment.MiddleLeft; - dtpBirth.Value = new DateTime(2020, 11, 24, 22, 50, 36, 791); - dtpBirth.Watermark = ""; - // - // txtAddress - // - txtAddress.Cursor = Cursors.IBeam; - txtAddress.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtAddress.Location = new Point(132, 224); - txtAddress.Margin = new Padding(4, 5, 4, 5); - txtAddress.MinimumSize = new Size(1, 1); - txtAddress.Name = "txtAddress"; - txtAddress.Padding = new Padding(5); - txtAddress.Radius = 20; - txtAddress.ReadOnly = true; - txtAddress.ShowText = false; - txtAddress.Size = new Size(508, 35); - txtAddress.Style = Sunny.UI.UIStyle.Custom; - txtAddress.StyleCustomMode = true; - txtAddress.TabIndex = 117; - txtAddress.TextAlignment = ContentAlignment.MiddleLeft; - txtAddress.Watermark = ""; + label18.Text = "消费总额:"; // // label2 // @@ -807,52 +333,6 @@ label32.TabIndex = 107; label32.Text = "客户编号"; // - // dgvWti - // - dgvWti.AllowUserToAddRows = false; - dgvWti.AllowUserToDeleteRows = false; - dgvWti.AllowUserToResizeColumns = false; - dgvWti.AllowUserToResizeRows = false; - dataGridViewCellStyle5.BackColor = Color.FromArgb(235, 243, 255); - dgvWti.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle5; - dgvWti.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill; - dgvWti.BackgroundColor = Color.White; - dgvWti.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle6.BackColor = Color.FromArgb(80, 160, 255); - dataGridViewCellStyle6.Font = new Font("微软雅黑", 12F); - dataGridViewCellStyle6.ForeColor = Color.White; - dataGridViewCellStyle6.SelectionBackColor = SystemColors.Highlight; - dataGridViewCellStyle6.SelectionForeColor = SystemColors.HighlightText; - dataGridViewCellStyle6.WrapMode = DataGridViewTriState.True; - dgvWti.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6; - dgvWti.ColumnHeadersHeight = 32; - dgvWti.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - dgvWti.Columns.AddRange(new DataGridViewColumn[] { Column11, token, clRoomNo, clCustoNo, clStartTime, clDealTime, clWater, clElectric, clMarkUser, Column5, Column6, Column7, Column9, Column10 }); - dgvWti.EnableHeadersVisualStyles = false; - dgvWti.Font = new Font("微软雅黑", 12F); - dgvWti.GridColor = Color.FromArgb(80, 160, 255); - dgvWti.Location = new Point(3, 3); - dgvWti.Name = "dgvWti"; - dataGridViewCellStyle7.Alignment = DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle7.BackColor = Color.FromArgb(235, 243, 255); - dataGridViewCellStyle7.Font = new Font("微软雅黑", 12F); - dataGridViewCellStyle7.ForeColor = Color.FromArgb(48, 48, 48); - dataGridViewCellStyle7.SelectionBackColor = Color.FromArgb(80, 160, 255); - dataGridViewCellStyle7.SelectionForeColor = Color.White; - dataGridViewCellStyle7.WrapMode = DataGridViewTriState.True; - dgvWti.RowHeadersDefaultCellStyle = dataGridViewCellStyle7; - dgvWti.RowHeadersVisible = false; - dataGridViewCellStyle8.BackColor = Color.White; - dgvWti.RowsDefaultCellStyle = dataGridViewCellStyle8; - dgvWti.RowTemplate.Height = 29; - dgvWti.SelectedIndex = -1; - dgvWti.SelectionMode = DataGridViewSelectionMode.FullRowSelect; - dgvWti.Size = new Size(656, 291); - dgvWti.StripeOddColor = Color.FromArgb(235, 243, 255); - dgvWti.Style = Sunny.UI.UIStyle.Custom; - dgvWti.TabIndex = 0; - // // uiTabControlMenu2 // uiTabControlMenu2.Alignment = TabAlignment.Left; @@ -874,27 +354,28 @@ // // tabPage1 // - tabPage1.Controls.Add(txtReceipts); + tabPage1.Controls.Add(dtpCheckTime); + tabPage1.Controls.Add(txtRoomNo); + tabPage1.Controls.Add(CustoName); + tabPage1.Controls.Add(CustoNo); tabPage1.Controls.Add(btnBalance); + tabPage1.Controls.Add(txtReceipts); + tabPage1.Controls.Add(btnPg); + tabPage1.Controls.Add(dgvSpendList); tabPage1.Controls.Add(label24); tabPage1.Controls.Add(lblVIPPrice); tabPage1.Controls.Add(label18); tabPage1.Controls.Add(label15); - tabPage1.Controls.Add(dgvSpendList); tabPage1.Controls.Add(label17); tabPage1.Controls.Add(lblDay); tabPage1.Controls.Add(label1); tabPage1.Controls.Add(lable00); tabPage1.Controls.Add(lblGetReceipts); tabPage1.Controls.Add(label29); - tabPage1.Controls.Add(CustoName); tabPage1.Controls.Add(lblVIP); tabPage1.Controls.Add(label21); - tabPage1.Controls.Add(dtpCheckTime); - tabPage1.Controls.Add(CustoNo); tabPage1.Controls.Add(label25); tabPage1.Controls.Add(lblChange); - tabPage1.Controls.Add(txtRoomNo); tabPage1.Controls.Add(label28); tabPage1.Controls.Add(label27); tabPage1.Location = new Point(201, 0); @@ -904,41 +385,108 @@ tabPage1.Text = "退房结算"; tabPage1.UseVisualStyleBackColor = true; // + // dtpCheckTime + // + dtpCheckTime.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + dtpCheckTime.Location = new Point(376, 16); + dtpCheckTime.Name = "dtpCheckTime"; + dtpCheckTime.PlaceholderText = ""; + dtpCheckTime.ReadOnly = true; + dtpCheckTime.Size = new Size(180, 42); + dtpCheckTime.TabIndex = 161; + // + // txtRoomNo + // + txtRoomNo.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtRoomNo.Location = new Point(376, 67); + txtRoomNo.Name = "txtRoomNo"; + txtRoomNo.PlaceholderText = ""; + txtRoomNo.ReadOnly = true; + txtRoomNo.Size = new Size(180, 42); + txtRoomNo.TabIndex = 160; + // + // CustoName + // + CustoName.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + CustoName.Location = new Point(98, 67); + CustoName.Name = "CustoName"; + CustoName.PlaceholderText = ""; + CustoName.ReadOnly = true; + CustoName.Size = new Size(180, 42); + CustoName.TabIndex = 159; + // + // CustoNo + // + CustoNo.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + CustoNo.Location = new Point(98, 16); + CustoNo.Name = "CustoNo"; + CustoNo.PlaceholderText = ""; + CustoNo.ReadOnly = true; + CustoNo.Size = new Size(180, 42); + CustoNo.TabIndex = 158; + // + // btnBalance + // + btnBalance.Location = new Point(422, 493); + btnBalance.Name = "btnBalance"; + btnBalance.Size = new Size(183, 48); + btnBalance.TabIndex = 157; + btnBalance.Text = "结 算"; + btnBalance.Type = AntdUI.TTypeMini.Primary; + btnBalance.Click += btnBalance_Click; + // // txtReceipts // - txtReceipts.Cursor = Cursors.IBeam; - txtReceipts.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtReceipts.Location = new Point(548, 329); - txtReceipts.Margin = new Padding(4, 5, 4, 5); - txtReceipts.MinimumSize = new Size(1, 16); + txtReceipts.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtReceipts.HandCursor = Cursors.IBeam; + txtReceipts.Location = new Point(508, 424); txtReceipts.Name = "txtReceipts"; - txtReceipts.Padding = new Padding(5); - txtReceipts.ShowText = false; - txtReceipts.Size = new Size(74, 26); - txtReceipts.TabIndex = 117; - txtReceipts.TextAlignment = ContentAlignment.MiddleCenter; - txtReceipts.Watermark = ""; + txtReceipts.PlaceholderText = ""; + txtReceipts.Radius = 0; + txtReceipts.Size = new Size(97, 29); + txtReceipts.TabIndex = 156; txtReceipts.TextChanged += txtReceipts_TextChanged; // + // btnPg + // + btnPg.Current = 0; + btnPg.Location = new Point(7, 330); + btnPg.Name = "btnPg"; + btnPg.PageSize = 15; + btnPg.ShowSizeChanger = true; + btnPg.Size = new Size(403, 25); + btnPg.TabIndex = 135; + btnPg.Total = 1000000; + btnPg.ValueChanged += btnPg_ValueChanged; + btnPg.ShowTotalChanged += btnPg_ShowTotalChanged; + // + // dgvSpendList + // + dgvSpendList.Location = new Point(7, 113); + dgvSpendList.Name = "dgvSpendList"; + dgvSpendList.Size = new Size(654, 208); + dgvSpendList.TabIndex = 118; + dgvSpendList.Text = "table1"; + // // tabPage2 // - tabPage2.Controls.Add(cboCustoType); + tabPage2.Controls.Add(txtCustomerAddress); + tabPage2.Controls.Add(txtDateOfBirth); + tabPage2.Controls.Add(txtCustomerGender); + tabPage2.Controls.Add(txtCustomerName); + tabPage2.Controls.Add(txtCustomerNumber); + tabPage2.Controls.Add(txtTel); + tabPage2.Controls.Add(txtIdCardNumber); + tabPage2.Controls.Add(txtPassportName); + tabPage2.Controls.Add(txtCustomerType); tabPage2.Controls.Add(label32); - tabPage2.Controls.Add(cboPassportType); tabPage2.Controls.Add(label31); - tabPage2.Controls.Add(cboCustoSex); tabPage2.Controls.Add(label30); - tabPage2.Controls.Add(txtCustoNo); tabPage2.Controls.Add(label22); - tabPage2.Controls.Add(txtCustoName); tabPage2.Controls.Add(label16); - tabPage2.Controls.Add(txtPassportNum); tabPage2.Controls.Add(label5); - tabPage2.Controls.Add(txtTel); tabPage2.Controls.Add(label4); - tabPage2.Controls.Add(dtpBirth); tabPage2.Controls.Add(label3); - tabPage2.Controls.Add(txtAddress); tabPage2.Controls.Add(label2); tabPage2.Location = new Point(201, 0); tabPage2.Name = "tabPage2"; @@ -947,6 +495,96 @@ tabPage2.Text = "客户信息"; tabPage2.UseVisualStyleBackColor = true; // + // txtCustomerAddress + // + txtCustomerAddress.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustomerAddress.Location = new Point(134, 221); + txtCustomerAddress.Name = "txtCustomerAddress"; + txtCustomerAddress.PlaceholderText = ""; + txtCustomerAddress.ReadOnly = true; + txtCustomerAddress.Size = new Size(506, 42); + txtCustomerAddress.TabIndex = 158; + // + // txtDateOfBirth + // + txtDateOfBirth.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtDateOfBirth.Location = new Point(134, 170); + txtDateOfBirth.Name = "txtDateOfBirth"; + txtDateOfBirth.PlaceholderText = ""; + txtDateOfBirth.ReadOnly = true; + txtDateOfBirth.Size = new Size(203, 42); + txtDateOfBirth.TabIndex = 157; + // + // txtCustomerGender + // + txtCustomerGender.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustomerGender.Location = new Point(134, 119); + txtCustomerGender.Name = "txtCustomerGender"; + txtCustomerGender.PlaceholderText = ""; + txtCustomerGender.ReadOnly = true; + txtCustomerGender.Size = new Size(203, 42); + txtCustomerGender.TabIndex = 156; + // + // txtCustomerName + // + txtCustomerName.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustomerName.Location = new Point(134, 68); + txtCustomerName.Name = "txtCustomerName"; + txtCustomerName.PlaceholderText = ""; + txtCustomerName.ReadOnly = true; + txtCustomerName.Size = new Size(203, 42); + txtCustomerName.TabIndex = 155; + // + // txtCustomerNumber + // + txtCustomerNumber.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustomerNumber.Location = new Point(134, 17); + txtCustomerNumber.Name = "txtCustomerNumber"; + txtCustomerNumber.PlaceholderText = ""; + txtCustomerNumber.ReadOnly = true; + txtCustomerNumber.Size = new Size(203, 42); + txtCustomerNumber.TabIndex = 154; + // + // txtTel + // + txtTel.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtTel.Location = new Point(437, 170); + txtTel.Name = "txtTel"; + txtTel.PlaceholderText = ""; + txtTel.ReadOnly = true; + txtTel.Size = new Size(203, 42); + txtTel.TabIndex = 153; + // + // txtIdCardNumber + // + txtIdCardNumber.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtIdCardNumber.Location = new Point(437, 119); + txtIdCardNumber.Name = "txtIdCardNumber"; + txtIdCardNumber.PlaceholderText = ""; + txtIdCardNumber.ReadOnly = true; + txtIdCardNumber.Size = new Size(203, 42); + txtIdCardNumber.TabIndex = 152; + // + // txtPassportName + // + txtPassportName.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtPassportName.Location = new Point(437, 68); + txtPassportName.Name = "txtPassportName"; + txtPassportName.PlaceholderText = ""; + txtPassportName.ReadOnly = true; + txtPassportName.Size = new Size(203, 42); + txtPassportName.TabIndex = 151; + // + // txtCustomerType + // + txtCustomerType.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustomerType.Location = new Point(437, 17); + txtCustomerType.Name = "txtCustomerType"; + txtCustomerType.PlaceholderText = ""; + txtCustomerType.ReadOnly = true; + txtCustomerType.Size = new Size(203, 42); + txtCustomerType.TabIndex = 150; + // // tabPage3 // tabPage3.Controls.Add(dgvWti); @@ -957,96 +595,13 @@ tabPage3.Text = "历史水电情况"; tabPage3.UseVisualStyleBackColor = true; // - // Column11 - // - Column11.DataPropertyName = "WtiNo"; - Column11.HeaderText = "Column11"; - Column11.Name = "Column11"; - Column11.Visible = false; - // - // token - // - token.DataPropertyName = "user_token"; - token.HeaderText = "token"; - token.Name = "token"; - token.Visible = false; - // - // clRoomNo - // - clRoomNo.DataPropertyName = "RoomNo"; - clRoomNo.HeaderText = "房间号"; - clRoomNo.Name = "clRoomNo"; - // - // clCustoNo - // - clCustoNo.DataPropertyName = "CustoNo"; - clCustoNo.HeaderText = "客户编号"; - clCustoNo.Name = "clCustoNo"; - // - // clStartTime - // - clStartTime.DataPropertyName = "UseDate"; - clStartTime.HeaderText = "开始时间"; - clStartTime.Name = "clStartTime"; - // - // clDealTime - // - clDealTime.DataPropertyName = "EndDate"; - clDealTime.HeaderText = "结束时间"; - clDealTime.Name = "clDealTime"; - // - // clWater - // - clWater.DataPropertyName = "WaterUse"; - clWater.HeaderText = "水费"; - clWater.Name = "clWater"; - // - // clElectric - // - clElectric.DataPropertyName = "PowerUse"; - clElectric.HeaderText = "电费"; - clElectric.Name = "clElectric"; - // - // clMarkUser - // - clMarkUser.DataPropertyName = "Record"; - clMarkUser.HeaderText = "记录员"; - clMarkUser.Name = "clMarkUser"; - // - // Column5 - // - Column5.DataPropertyName = "delete_mk"; - Column5.HeaderText = "Column5"; - Column5.Name = "Column5"; - Column5.Visible = false; - // - // Column6 - // - Column6.DataPropertyName = "datains_usr"; - Column6.HeaderText = "Column6"; - Column6.Name = "Column6"; - Column6.Visible = false; - // - // Column7 - // - Column7.DataPropertyName = "datains_date"; - Column7.HeaderText = "Column7"; - Column7.Name = "Column7"; - Column7.Visible = false; - // - // Column9 - // - Column9.DataPropertyName = "datachg_usr"; - Column9.HeaderText = "Column9"; - Column9.Name = "Column9"; - Column9.Visible = false; - // - // Column10 + // dgvWti // - Column10.DataPropertyName = "datachg_date"; - Column10.HeaderText = "Column10"; - Column10.Name = "Column10"; - Column10.Visible = false; + dgvWti.Location = new Point(5, 7); + dgvWti.Name = "dgvWti"; + dgvWti.Size = new Size(654, 502); + dgvWti.TabIndex = 136; + dgvWti.Text = "table1"; // // FrmCheckOutForm // @@ -1064,8 +619,6 @@ Load += FrmCheckOutForm_Load; MouseDown += FrmCheckOutForm_MouseDown; MouseMove += FrmCheckOutForm_MouseMove; - ((System.ComponentModel.ISupportInitialize)dgvSpendList).EndInit(); - ((System.ComponentModel.ISupportInitialize)dgvWti).EndInit(); uiTabControlMenu2.ResumeLayout(false); tabPage1.ResumeLayout(false); tabPage1.PerformLayout(); @@ -1076,51 +629,22 @@ } #endregion - private Sunny.UI.UIButton btnBalance; private System.Windows.Forms.Label lblVIPPrice; private System.Windows.Forms.Label label15; - private Sunny.UI.UIDataGridView dgvSpendList; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; - private System.Windows.Forms.DataGridViewTextBoxColumn clPrice; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7; - private System.Windows.Forms.DataGridViewTextBoxColumn clSpendNo; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column8; private System.Windows.Forms.Label lblDay; private System.Windows.Forms.Label lable00; private System.Windows.Forms.Label label29; private System.Windows.Forms.Label lblVIP; - private Sunny.UI.UITextBox dtpCheckTime; private System.Windows.Forms.Label label25; - private Sunny.UI.UITextBox txtRoomNo; private System.Windows.Forms.Label label27; private System.Windows.Forms.Label label28; private System.Windows.Forms.Label lblChange; - private Sunny.UI.UITextBox CustoNo; private System.Windows.Forms.Label label21; - private Sunny.UI.UITextBox CustoName; private System.Windows.Forms.Label lblGetReceipts; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label24; private System.Windows.Forms.Label label17; private System.Windows.Forms.Label label18; - private Sunny.UI.UIComboBox cboCustoType; - private Sunny.UI.UIComboBox cboPassportType; - private Sunny.UI.UIComboBox cboCustoSex; - private Sunny.UI.UITextBox txtCustoNo; - private Sunny.UI.UITextBox txtCustoName; - private Sunny.UI.UITextBox txtPassportNum; - private Sunny.UI.UITextBox txtTel; - private Sunny.UI.UIDatePicker dtpBirth; - private Sunny.UI.UITextBox txtAddress; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; @@ -1130,25 +654,27 @@ private System.Windows.Forms.Label label30; private System.Windows.Forms.Label label31; private System.Windows.Forms.Label label32; - private Sunny.UI.UIDataGridView dgvWti; private Sunny.UI.UITabControlMenu uiTabControlMenu2; private System.Windows.Forms.TabPage tabPage1; private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.TabPage tabPage3; - private Sunny.UI.UITextBox txtReceipts; - private DataGridViewTextBoxColumn Column11; - private DataGridViewTextBoxColumn token; - private DataGridViewTextBoxColumn clRoomNo; - private DataGridViewTextBoxColumn clCustoNo; - private DataGridViewTextBoxColumn clStartTime; - private DataGridViewTextBoxColumn clDealTime; - private DataGridViewTextBoxColumn clWater; - private DataGridViewTextBoxColumn clElectric; - private DataGridViewTextBoxColumn clMarkUser; - private DataGridViewTextBoxColumn Column5; - private DataGridViewTextBoxColumn Column6; - private DataGridViewTextBoxColumn Column7; - private DataGridViewTextBoxColumn Column9; - private DataGridViewTextBoxColumn Column10; + private AntdUI.Table dgvSpendList; + private AntdUI.Pagination btnPg; + private AntdUI.Input txtTel; + private AntdUI.Input txtIdCardNumber; + private AntdUI.Input txtPassportName; + private AntdUI.Input txtCustomerType; + private AntdUI.Input txtCustomerAddress; + private AntdUI.Input txtDateOfBirth; + private AntdUI.Input txtCustomerGender; + private AntdUI.Input txtCustomerName; + private AntdUI.Input txtCustomerNumber; + private AntdUI.Input txtReceipts; + private AntdUI.Button btnBalance; + private AntdUI.Input txtRoomNo; + private AntdUI.Input CustoName; + private AntdUI.Input CustoNo; + private AntdUI.Input dtpCheckTime; + private AntdUI.Table dgvWti; } } \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.cs index a7ad89137e11d519ae6186ad84f1b5f1a9d01f65..656bd327df85782720254969bb530a41e2b2faf1 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.cs @@ -23,9 +23,9 @@ */ using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; +using EOM.TSHotelManagement.Shared; using Sunny.UI; -using System.Transactions; namespace EOM.TSHotelManagement.FormUI { @@ -41,7 +41,7 @@ namespace EOM.TSHotelManagement.FormUI public static string co_CustoAddress; public static string co_CustoType; public static string co_CustoID; - public static Hydroelectricity w; + public static CreateEnergyManagementInputDto w; private LoadingProgress _loadingProgress; public FrmCheckOutForm(LoadingProgress loadingProgress) @@ -83,122 +83,89 @@ namespace EOM.TSHotelManagement.FormUI private void FrmCheckOutForm_Load(object sender, EventArgs e) { #region 加载客户类型信息 - result = HttpHelper.Request("Base/SelectCustoTypeAllCanUse"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectCustoTypeAllCanUse); + var customerTypes = HttpHelper.JsonToModel>(result.message); + if (customerTypes.StatusCode != StatusCodeConstants.Success) { UIMessageBox.ShowError("SelectCustoTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List lstSourceGrid = HttpHelper.JsonToList(result.message); - this.cboCustoType.DataSource = lstSourceGrid; - this.cboCustoType.DisplayMember = "TypeName"; - this.cboCustoType.ValueMember = "UserType"; - this.cboCustoType.SelectedIndex = 0; - this.cboCustoType.ReadOnly = true; + List lstSourceGrid = customerTypes.listSource; #endregion - #region 加载证件类型信息 - result = HttpHelper.Request("Base/SelectPassPortTypeAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectPassPortTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List passPorts = HttpHelper.JsonToList(result.message); - this.cboPassportType.DataSource = passPorts; - this.cboPassportType.DisplayMember = "PassportName"; - this.cboPassportType.ValueMember = "PassportId"; - this.cboPassportType.SelectedIndex = 0; - #endregion - - #region 加载性别信息 - result = HttpHelper.Request("Base/SelectSexTypeAll?delete_mk=0"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List listSexType = HttpHelper.JsonToList(result.message); - this.cboCustoSex.DataSource = listSexType; - this.cboCustoSex.DisplayMember = "sexName"; - this.cboCustoSex.ValueMember = "sexId"; - this.cboCustoSex.SelectedIndex = 0; - #endregion - - double sum = 0; - txtCustoNo.Text = ucRoom.rm_CustoNo; + decimal sum = 0; + txtCustomerNumber.Text = ucRoom.rm_CustoNo; CustoNo.Text = ucRoom.rm_CustoNo; txtRoomNo.Text = ucRoom.rm_RoomNo; dic = new Dictionary() { - { "no",txtRoomNo.Text.ToString()} + { nameof(ReadRoomInputDto.RoomNumber) , txtRoomNo.Text.ToString()} }; - result = HttpHelper.Request("Room/SelectRoomByRoomNo", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_SelectRoomByRoomNo, dic); + var roomInfo = HttpHelper.JsonToModel>(result.message); + if (roomInfo.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError("SelectRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); return; } - Room room = HttpHelper.JsonToModel(result.message); + ReadRoomOutputDto room = roomInfo.Source; - if (room.CheckTime == null) + if (room.LastCheckInTime == null) { dtpCheckTime.Text = Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd"); } else { - dtpCheckTime.Text = Convert.ToDateTime(room.CheckTime).ToString("yyyy-MM-dd"); + dtpCheckTime.Text = Convert.ToDateTime(room.LastCheckInTime).ToString("yyyy-MM-dd"); } dic = new Dictionary() { - { "roomno",txtRoomNo.Text} + { nameof(ReadRoomInputDto.RoomNumber) , txtRoomNo.Text} }; - result = HttpHelper.Request("Room/DayByRoomNo", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_DayByRoomNo, dic); + var stayDays = HttpHelper.JsonToModel>(result.message); + if (stayDays.StatusCode != 200) { UIMessageBox.ShowError("DayByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); return; } - sum = Convert.ToDouble(Convert.ToString(Convert.ToInt32(result.message) * room.RoomMoney)); + sum = Convert.ToDecimal(Convert.ToString(Convert.ToInt32(stayDays.Source.StayDays) * room.RoomRent)); + + lblDay.Text = Convert.ToString(Convert.ToInt32(stayDays.Source.StayDays)); - lblDay.Text = Convert.ToString(Convert.ToInt32(result.message)); - w = new Hydroelectricity() + w = new CreateEnergyManagementInputDto() { - CustoNo = txtCustoNo.Text, - EndDate = Convert.ToDateTime(DateTime.Parse(Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd HH:mm:ss"))), - PowerUse = Convert.ToDecimal(Convert.ToInt32(result.message) * 3 * 1), - WaterUse = Convert.ToDecimal(Convert.ToDouble(result.message) * 80 * 0.002), - RoomNo = txtRoomNo.Text, - Record = "admin", - UseDate = Convert.ToDateTime(DateTime.Parse(dtpCheckTime.Text)), + PowerUsage = Convert.ToDecimal(Convert.ToInt32(stayDays.Source.StayDays) * 3 * 1), + WaterUsage = Convert.ToDecimal(Convert.ToDouble(stayDays.Source.StayDays) * 80 * 0.002) }; #region 加载客户信息 dic = new Dictionary() { - { "CustoNo",CustoNo.Text.ToString()} + { nameof(ReadCustomerInputDto.CustomerNumber),CustoNo.Text.ToString() } }; - result = HttpHelper.Request("Custo​/SelectCardInfoByCustoNo", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Customer_SelectCustoByInfo, dic); + SingleOutputDto customer = HttpHelper.JsonToModel>(result.message); + if (customer?.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectCardInfoByCustoNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError("SelectCustoByInfo+接口服务异常,请提交Issue或尝试更新版本!"); return; } - Custo cto = HttpHelper.JsonToModel(result.message); try { - CustoName.Text = cto.CustoName; - txtCustoName.Text = cto.CustoName; - txtTel.Text = cto.CustoTel; - cboCustoSex.SelectedIndex = cto.CustoSex; - cboCustoType.SelectedIndex = cto.CustoType; - cboPassportType.SelectedIndex = cto.PassportType; - dtpBirth.Value = Convert.ToDateTime(cto.CustoBirth); - txtPassportNum.Text = cto.CustoID; + CustoName.Text = customer?.Source.CustomerName; + txtCustomerName.Text = customer?.Source.CustomerName; + txtTel.Text = customer?.Source.CustomerPhoneNumber; + txtCustomerGender.Text = customer?.Source.GenderName ?? string.Empty; + txtCustomerType.Text = customer.Source.CustomerTypeName; + txtPassportName.Text = customer.Source.PassportName; + txtDateOfBirth.Text = customer.Source.DateOfBirth.ToString("yyyy/MM/dd"); + txtIdCardNumber.Text = customer.Source.IdCardNumber; + txtCustomerAddress.Text = customer.Source.CustomerAddress; } catch { @@ -210,108 +177,60 @@ namespace EOM.TSHotelManagement.FormUI #endregion #region 加载消费信息 - string RoomNo = txtRoomNo.Text; - dic = new Dictionary() - { - { "RoomNo",RoomNo} - }; - result = HttpHelper.Request("Spend/SelectSpendInfoRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSpendInfoRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvSpendList.AutoGenerateColumns = false; - dgvSpendList.DataSource = HttpHelper.JsonToList(result.message); - double total = 0; - if (dgvSpendList.Rows.Count == 0) + + var dataCount = 0; + btnPg.PageSizeOptions = new int[] { 15, 30, 50, 100 }; + dgvSpendList.Spin("正在加载中...", config => { - total = 0; - } - else + TableComHelper tableComHelper = new TableComHelper(); + dgvSpendList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + dgvSpendList.DataSource = GetPageData(btnPg.Current, btnPg.PageSize, ref dataCount); + btnPg.PageSize = 15; + btnPg.Current = 1; + btnPg.Total = dataCount; + }, () => { - dic = new Dictionary() - { - { "roomno",RoomNo}, - { "custono",CustoNo.Text.ToString()} - }; - result = HttpHelper.Request("Spend/SelectMoneyByRoomNoAndTime", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectMoneyByRoomNoAndTime+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - total = Convert.ToDouble(result.message); - } + System.Diagnostics.Debug.WriteLine("加载结束"); + }); #endregion #region 加载水电费信息 - dic = new Dictionary() + dgvWti.Spin("正在加载中...", config => { - { "roomno",txtRoomNo.Text.Trim()} - }; - result = HttpHelper.Request("Hydroelectricity/SelectWtiInfo", dic); - if (result.statusCode != 200) + TableComHelper tableComHelper = new TableComHelper(); + dgvWti.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + dgvWti.DataSource = GetEnergyPageData(); + }, () => { - UIMessageBox.ShowError("SelectWtiInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var listWti = HttpHelper.JsonToList(result.message); - dgvWti.DataSource = listWti; - dgvWti.AutoGenerateColumns = false; + System.Diagnostics.Debug.WriteLine("加载结束"); + }); #endregion - if (cboCustoType.Text == "钻石会员") - { - double m = total + sum; - lblGetReceipts.Text = Decimal.Parse(m.ToString()).ToString("#,##0.00"); - lblVIPPrice.Text = Decimal.Parse((m * 0.80).ToString()).ToString("#,##0.00"); - lblVIP.Text = "八折"; - } - else if (cboCustoType.Text == "白金会员") - { + var customerType = lstSourceGrid.SingleOrDefault(a => a.CustomerTypeName == txtCustomerType.Text); - double m = total + sum; - lblGetReceipts.Text = Decimal.Parse(m.ToString()).ToString("#,##0.00"); - lblVIPPrice.Text = Decimal.Parse((m * 0.85).ToString()).ToString("#,##0.00"); - lblVIP.Text = "八五折"; - } - else if (cboCustoType.Text == "黄金会员") - { - double m = total + sum; - lblGetReceipts.Text = Decimal.Parse(m.ToString()).ToString("#,##0.00"); - lblVIPPrice.Text = Decimal.Parse((m * 0.90).ToString()).ToString("#,##0.00"); - lblVIP.Text = "九折"; - } - else if (cboCustoType.Text == "普通会员") - { - double m = total + sum; - lblGetReceipts.Text = Decimal.Parse(m.ToString()).ToString("#,##0.00"); - lblVIPPrice.Text = Decimal.Parse((m * 0.95).ToString()).ToString("#,##0.00"); - lblVIP.Text = "九五折"; - } - else if (cboCustoType.Text == "普通用户") + //计算消费总额 + dic = new Dictionary() { - double m = total + sum; - lblGetReceipts.Text = Decimal.Parse(m.ToString()).ToString("#,##0.00"); - lblVIPPrice.Text = Decimal.Parse(m.ToString()).ToString("#,##0.00"); - lblVIP.Text = "不 打 折"; - - } - - if (_loadingProgress != null) + { nameof(ReadSpendInputDto.RoomNumber), txtRoomNo.Text.Trim() }, + { nameof(ReadSpendInputDto.CustomerNumber), txtCustomerNumber.Text.Trim() }, + }; + result = HttpHelper.Request(ApiConstants.Spend_SumConsumptionAmount, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - _loadingProgress.Close(); + UIMessageBox.ShowError($"{ApiConstants.Spend_SumConsumptionAmount}+接口服务异常,请提交Issue或尝试更新版本!"); + return; } - - } - #endregion - - #region 关闭 - private void btnClose_Click(object sender, EventArgs e) - { - this.Close(); + decimal total = response.Source.ConsumptionAmount; + decimal m = total + sum; + decimal discount = (customerType != null && customerType.Discount > 0 && customerType.Discount < 100) + ? customerType.Discount / 100M + : 1M; + lblGetReceipts.Text = m.ToString("#,##0.00"); + lblVIPPrice.Text = (m * discount).ToString("#,##0.00"); + lblVIP.Text = (discount < 1M) ? DiscountConverter.ToZheString(customerType.Discount) : "无折扣(100%)"; + Refresh(); } #endregion @@ -322,10 +241,9 @@ namespace EOM.TSHotelManagement.FormUI { try { - double n = Convert.ToDouble(Convert.ToDecimal(txtReceipts.Text)); - double m = Convert.ToDouble(Convert.ToDecimal(lblGetReceipts.Text)); - double h = Convert.ToDouble(Convert.ToDecimal(lblVIPPrice.Text)); - lblChange.Text = Decimal.Parse((n - h).ToString()).ToString("#,##0.00"); + double receipt = Convert.ToDouble(Convert.ToDecimal(txtReceipts.Text)); + double vipPrice = Convert.ToDouble(Convert.ToDecimal(lblVIPPrice.Text)); + lblChange.Text = Decimal.Parse((receipt - vipPrice).ToString()).ToString("#,##0.00"); } catch { @@ -346,114 +264,32 @@ namespace EOM.TSHotelManagement.FormUI #region 结算按钮点击事件 private void btnBalance_Click(object sender, EventArgs e) { - if (!txtReceipts.Text.IsNullOrEmpty() && Convert.ToDecimal(txtReceipts.Text) > Convert.ToDecimal(lblVIPPrice.Text))//判断实收金额是否为空以及是否小于应收金额 + if (!string.IsNullOrEmpty(txtReceipts.Text) && Convert.ToDecimal(txtReceipts.Text) > Convert.ToDecimal(lblVIPPrice.Text))//判断实收金额是否为空以及是否小于应收金额 { - using (TransactionScope scope = new TransactionScope()) - { - dic = new Dictionary() - { - { "no",txtRoomNo.Text} - }; - result = HttpHelper.Request("Room/SelectRoomByRoomNo", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_CheckoutRoom, + HttpHelper.ModelToJson(new CheckoutRoomDto { - UIMessageBox.ShowError("SelectRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - Room r = HttpHelper.JsonToModel(result.message);//根据房间编号查询房间信息 - string checktime = r.CheckTime.ToString();//获取入住时间 - if (dgvSpendList.Rows.Count == 0) - { - dic = new Dictionary() - { - { "room",txtRoomNo.Text} - }; - result = HttpHelper.Request("Room/UpdateRoomByRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool n = result.message.ToString().Equals("true"); - if (n) - { - result = HttpHelper.Request("HydroelectricPower​/InsertWtiInfo", HttpHelper.ModelToJson(w)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertWtiInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - this.Close(); - } - else - { - return; - } - UIMessageBox.Show("结算成功!", "系统提示", UIStyle.Green); - FrmRoomManager.Reload(""); - FrmRoomManager._RefreshRoomCount(); - - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerClub + "-" + LoginInfo.WorkerPosition + "-" + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "帮助" + txtCustoNo.Text + "进行了退房结算操作!", 3); - #endregion - scope.Complete(); - } - else - { - dic = new Dictionary() - { - { "roomno",txtRoomNo.Text}, - { "checktime",checktime} - }; - result = HttpHelper.Request("Spend​/UpdateMoneyState", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateMoneyState+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - if (result.message.ToString().Equals("true")) - { - dic = new Dictionary() - { - { "room",txtRoomNo.Text} - }; - result = HttpHelper.Request("Room/UpdateRoomByRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateMoneyState+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool n = result.message.ToString().Equals("true"); - if (n) - { - result = HttpHelper.Request("HydroelectricPower​/InsertWtiInfo", HttpHelper.ModelToJson(w)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertWtiInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - this.Close(); - } - else - { - return; - } - UIMessageBox.Show("结算成功!", "系统提示", UIStyle.Green); - FrmRoomManager.Reload(""); - FrmRoomManager._RefreshRoomCount(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerClub + "-" + LoginInfo.WorkerPosition + "-" + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "帮助" + txtCustoNo.Text + "进行了退房结算操作!", 3); - #endregion - scope.Complete(); - return; - } - else - { - UIMessageBox.Show("结算失败!", "系统提示", UIStyle.Red); - return; - } - } + RoomNumber = txtRoomNo.Text.Trim(), + CustomerNumber = txtCustomerNumber.Text.Trim(), + DataChgDate = DateTime.Now, + DataChgUsr = LoginInfo.WorkerNo, + ElectricityUsage = w.PowerUsage, + WaterUsage = w.WaterUsage + })); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Room_CheckoutRoom}+接口服务异常,请提交Issue或尝试更新版本!"); + return; } + UIMessageBox.Show("结算成功!", "系统提示", UIStyle.Green); + FrmRoomManager.Reload(""); + FrmRoomManager._RefreshRoomCount(); + + #region 获取添加操作日志所需的信息 + RecordHelper.Record(LoginInfo.WorkerClub + "-" + LoginInfo.WorkerPosition + "-" + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "帮助" + txtCustomerNumber.Text + "进行了退房结算操作!", Common.Core.LogLevel.Critical); + #endregion + this.Close(); } else { @@ -462,5 +298,76 @@ namespace EOM.TSHotelManagement.FormUI } } #endregion + + private string btnPg_ShowTotalChanged(object sender, AntdUI.PagePageEventArgs e) + { + return $"{e.PageSize} / {e.Total}条 共{e.PageTotal}页"; + } + + private void btnPg_ValueChanged(object sender, AntdUI.PagePageEventArgs e) + { + var dataCount = 0; + dgvSpendList.Spin("正在加载中...", config => + { + dgvSpendList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount); + btnPg.Total = dataCount; + }, () => + { + System.Diagnostics.Debug.WriteLine("加载结束"); + }); + } + + object GetPageData(int current, int pageSize, ref int totalCount) + { + string RoomNo = txtRoomNo.Text; + dic = new Dictionary() + { + { nameof(ReadSpendInputDto.RoomNumber) , RoomNo }, + { nameof(ReadAdministratorInputDto.IgnorePaging) , "true" } + }; + result = HttpHelper.Request(ApiConstants.Spend_SelectSpendByRoomNo, dic); + var spendInfo = HttpHelper.JsonToModel>(result.message); + if (spendInfo.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Spend_SelectSpendByRoomNo}+接口服务异常,请提交Issue或尝试更新版本!"); + } + + List spends = spendInfo.listSource; + totalCount = spendInfo.total; + var listTableSource = new List(); + + spends = spends.OrderBy(a => a.SpendNumber).ToList(); + + TableComHelper tableComHelper = new TableComHelper(); + listTableSource = tableComHelper.ConvertToAntdItems(spends); + + return listTableSource; + } + + object GetEnergyPageData() + { + dic = new Dictionary() + { + { nameof(ReadEnergyManagementInputDto.RoomNo),txtRoomNo.Text.Trim()} + }; + result = HttpHelper.Request(ApiConstants.EnergyManagement_SelectEnergyManagementInfo, dic); + var energyManagements = HttpHelper.JsonToModel>(result.message); + if (energyManagements.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.EnergyManagement_SelectEnergyManagementInfo}+接口服务异常,请提交Issue或尝试更新版本!"); + } + + List energys = energyManagements.listSource; + var listTableSource = new List(); + + energys = energys.OrderByDescending(a => a.StartDate).ToList(); + + TableComHelper tableComHelper = new TableComHelper(); + listTableSource = tableComHelper.ConvertToAntdItems(energys); + + return listTableSource; + } + + } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.resx index ca0e1a4096fe6e94041167349c7d81a4251a9205..598af854b0a606471ccdb858c9f8030aa7623668 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.resx +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.resx @@ -117,90 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.Designer.cs deleted file mode 100644 index 38e084de779fc41cb9668858a287bbc6a4726015..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.Designer.cs +++ /dev/null @@ -1,240 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmCustoManager - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCustoManager)); - cmsCustoManager = new Sunny.UI.UIContextMenuStrip(); - tsmiCustoNo = new ToolStripMenuItem(); - dgvCustomerList = new AntdUI.Table(); - btnPg = new AntdUI.Pagination(); - txtCustoNo = new AntdUI.Input(); - txtCustoName = new AntdUI.Input(); - label2 = new AntdUI.Label(); - label1 = new AntdUI.Label(); - btnSerach = new AntdUI.Button(); - btnAddCusto = new AntdUI.Button(); - btnExport = new AntdUI.Button(); - btnUpdate = new AntdUI.Button(); - cbOnlyVip = new AntdUI.Checkbox(); - divider1 = new AntdUI.Divider(); - cmsCustoManager.SuspendLayout(); - SuspendLayout(); - // - // cmsCustoManager - // - cmsCustoManager.BackColor = Color.FromArgb(243, 249, 255); - cmsCustoManager.Font = new Font("微软雅黑", 12F); - cmsCustoManager.Items.AddRange(new ToolStripItem[] { tsmiCustoNo }); - cmsCustoManager.Name = "cmsCustoManager"; - cmsCustoManager.Size = new Size(177, 30); - // - // tsmiCustoNo - // - tsmiCustoNo.Image = Properties.Resources.复制; - tsmiCustoNo.Name = "tsmiCustoNo"; - tsmiCustoNo.Size = new Size(176, 26); - tsmiCustoNo.Text = "复制用户编号"; - tsmiCustoNo.Click += tsmiCustoNo_Click; - // - // dgvCustomerList - // - dgvCustomerList.Bordered = true; - dgvCustomerList.ContextMenuStrip = cmsCustoManager; - dgvCustomerList.Location = new Point(4, 49); - dgvCustomerList.Name = "dgvCustomerList"; - dgvCustomerList.Size = new Size(998, 476); - dgvCustomerList.TabIndex = 126; - dgvCustomerList.CellClick += dgvCustomerList_CellClick; - // - // btnPg - // - btnPg.Current = 0; - btnPg.Location = new Point(4, 531); - btnPg.Name = "btnPg"; - btnPg.PageSize = 15; - btnPg.ShowSizeChanger = true; - btnPg.Size = new Size(530, 31); - btnPg.TabIndex = 133; - btnPg.Total = 100; - btnPg.ValueChanged += btnPg_ValueChanged; - btnPg.ShowTotalChanged += btnPg_ShowTotalChanged; - // - // txtCustoNo - // - txtCustoNo.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtCustoNo.Location = new Point(104, 573); - txtCustoNo.Name = "txtCustoNo"; - txtCustoNo.PlaceholderText = "请输入客户编号..."; - txtCustoNo.Size = new Size(173, 42); - txtCustoNo.TabIndex = 139; - // - // txtCustoName - // - txtCustoName.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - txtCustoName.Location = new Point(375, 573); - txtCustoName.Name = "txtCustoName"; - txtCustoName.PlaceholderText = "请输入客户姓名..."; - txtCustoName.Size = new Size(173, 42); - txtCustoName.TabIndex = 140; - // - // label2 - // - label2.Font = new Font("Microsoft YaHei UI", 12.5F); - label2.Location = new Point(12, 582); - label2.Name = "label2"; - label2.Size = new Size(86, 26); - label2.TabIndex = 141; - label2.Text = "客户编号"; - label2.TextAlign = ContentAlignment.MiddleCenter; - label2.TooltipConfig = null; - // - // label1 - // - label1.Font = new Font("Microsoft YaHei UI", 12.5F); - label1.Location = new Point(283, 582); - label1.Name = "label1"; - label1.Size = new Size(86, 26); - label1.TabIndex = 142; - label1.Text = "客户姓名"; - label1.TextAlign = ContentAlignment.MiddleCenter; - label1.TooltipConfig = null; - // - // btnSerach - // - btnSerach.Font = new Font("Microsoft YaHei UI", 12F); - btnSerach.Location = new Point(567, 568); - btnSerach.Name = "btnSerach"; - btnSerach.Size = new Size(93, 47); - btnSerach.TabIndex = 143; - btnSerach.Text = "搜 索"; - btnSerach.Type = AntdUI.TTypeMini.Primary; - btnSerach.Click += btnSerach_Click; - // - // btnAddCusto - // - btnAddCusto.Font = new Font("Microsoft YaHei UI", 12F); - btnAddCusto.Location = new Point(678, 568); - btnAddCusto.Name = "btnAddCusto"; - btnAddCusto.Size = new Size(93, 47); - btnAddCusto.TabIndex = 144; - btnAddCusto.Text = "添加客户"; - btnAddCusto.Type = AntdUI.TTypeMini.Primary; - btnAddCusto.Click += btnAddCusto_Click; - // - // btnExport - // - btnExport.Enabled = false; - btnExport.Font = new Font("Microsoft YaHei UI", 12F); - btnExport.Location = new Point(900, 568); - btnExport.Name = "btnExport"; - btnExport.Size = new Size(93, 47); - btnExport.TabIndex = 145; - btnExport.Text = "导出列表"; - btnExport.Type = AntdUI.TTypeMini.Primary; - btnExport.Click += btnExport_Click; - // - // btnUpdate - // - btnUpdate.Enabled = false; - btnUpdate.Font = new Font("Microsoft YaHei UI", 12F); - btnUpdate.Location = new Point(789, 568); - btnUpdate.Name = "btnUpdate"; - btnUpdate.Size = new Size(93, 47); - btnUpdate.TabIndex = 146; - btnUpdate.Text = "修改客户"; - btnUpdate.Type = AntdUI.TTypeMini.Primary; - btnUpdate.Click += btnUpdate_Click; - // - // cbOnlyVip - // - cbOnlyVip.AutoCheck = true; - cbOnlyVip.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - cbOnlyVip.Location = new Point(540, 538); - cbOnlyVip.Name = "cbOnlyVip"; - cbOnlyVip.Size = new Size(120, 23); - cbOnlyVip.TabIndex = 147; - cbOnlyVip.Text = "仅查看会员"; - cbOnlyVip.CheckedChanged += cbOnlyVip_CheckedChanged; - // - // divider1 - // - divider1.ColorSplit = Color.Blue; - divider1.Font = new Font("Microsoft YaHei UI", 12F); - divider1.Location = new Point(678, 538); - divider1.Name = "divider1"; - divider1.Size = new Size(325, 23); - divider1.TabIndex = 149; - divider1.Text = "右键列表复制客户编号"; - // - // FrmCustoManager - // - AutoScaleMode = AutoScaleMode.None; - BackColor = Color.FromArgb(235, 243, 255); - ClientSize = new Size(1005, 623); - ControlBox = false; - Controls.Add(divider1); - Controls.Add(cbOnlyVip); - Controls.Add(btnUpdate); - Controls.Add(btnExport); - Controls.Add(btnAddCusto); - Controls.Add(btnSerach); - Controls.Add(label1); - Controls.Add(label2); - Controls.Add(txtCustoName); - Controls.Add(txtCustoNo); - Controls.Add(btnPg); - Controls.Add(dgvCustomerList); - Icon = (Icon)resources.GetObject("$this.Icon"); - MaximizeBox = false; - MinimizeBox = false; - Name = "FrmCustoManager"; - Resizable = false; - Text = "客户信息管理"; - Load += FrmCustoManager_Load; - cmsCustoManager.ResumeLayout(false); - ResumeLayout(false); - } - - #endregion - private Sunny.UI.UIContextMenuStrip cmsCustoManager; - private System.Windows.Forms.ToolStripMenuItem tsmiCustoNo; - private AntdUI.Table dgvCustomerList; - private AntdUI.Pagination btnPg; - private AntdUI.Input txtCustoNo; - private AntdUI.Input txtCustoName; - private AntdUI.Label label2; - private AntdUI.Label label1; - private AntdUI.Button btnSerach; - private AntdUI.Button btnAddCusto; - private AntdUI.Button btnExport; - private AntdUI.Button btnUpdate; - private AntdUI.Checkbox cbOnlyVip; - private AntdUI.Divider divider1; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.cs deleted file mode 100644 index a0688e2eb8df79374634bf9e65d6d7cbe66d659d..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.cs +++ /dev/null @@ -1,286 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using AntdUI; -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using jvncorelib.EntityLib; -using System.Data; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmCustoManager : Window - { - public static string cm_CustoNo; - public static string cm_CustoName; - public static int cm_CustoSex; - public static string cm_CustoTel; - public static int cm_PassportType; - public static string cm_CustoID; - public static string cm_CustoAddress; - public static DateTime cm_CustoBirth; - public static int cm_CustoType; - - public delegate void ReloadCustomerList(bool onlyVip); - - - //定义委托类型的变量 - public static ReloadCustomerList ReloadCusto; - TableComHelper tableComHelper = null; - public FrmCustoManager() - { - InitializeComponent(); - ReloadCusto = LoadCustomer; - tableComHelper = new TableComHelper(); - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void FrmCustoManager_Load(object sender, EventArgs e) - { - this.btnPg.PageSize = 15; - LoadCustomer(); - } - - #region 加载用户信息列表 - private void LoadCustomer(bool onlyVip = false) - { - var dataCount = 0; - btnPg.PageSizeOptions = new int[] { 15, 30, 50, 100 }; - dgvCustomerList.Spin("正在加载中...", config => - { - TableComHelper tableComHelper = new TableComHelper(); - dgvCustomerList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); - dgvCustomerList.DataSource = GetPageData(btnPg.Current, btnPg.PageSize, ref dataCount, onlyVip); - btnPg.PageSize = 15; - btnPg.Current = 1; - btnPg.Total = dataCount; - }, () => - { - System.Diagnostics.Debug.WriteLine("加载结束"); - }); - } - - object GetPageData(int current, int pageSize, ref int totalCount, bool onlyVip = false) - { - dic = new Dictionary() - { - { "pageIndex",current <= 0 ? "1":current.ToString()}, - { "pageSize",pageSize.ToString()} - }; - if (onlyVip) - { - dic.Add("onlyVip", onlyVip.ToString()); - } - result = HttpHelper.Request("Custo/SelectCustoAll", dic); - if (result.statusCode != 200) - { - AntdUI.Message.error(this, "SelectCustoAll+接口服务异常,请提交Issue或尝试更新版本!"); - return null!; - } - OSelectAllDto custos = HttpHelper.JsonToModel>(result.message); - totalCount = custos.total; - var listTableSource = new List(); - - custos.listSource = custos.listSource.OrderBy(a => a.CustoNo).ThenBy(a => a.CustoName).ToList(); - - TableComHelper tableComHelper = new TableComHelper(); - listTableSource = tableComHelper.ConvertToAntdItems(custos.listSource); - - return listTableSource; - } - - #endregion - - private void tsmiCustoNo_Click(object sender, EventArgs e) - { - if (!cm_CustoNo.IsNullOrEmpty()) - { - Clipboard.SetText(cm_CustoNo); - AntdUI.Message.success(this, "复制完成!"); - } - } - - private void btnSerach_Click(object sender, EventArgs e) - { - OSelectAllDto custos = new OSelectAllDto(); - if (!txtCustoNo.Text.IsNullOrEmpty() || !txtCustoName.Text.IsNullOrEmpty()) - { - if (!txtCustoNo.Text.IsNullOrEmpty()) - { - dic = new Dictionary - { - { "CustoNo", txtCustoNo.Text.Trim() } - }; - } - if (!txtCustoName.Text.IsNullOrEmpty()) - { - dic = new Dictionary - { - { "CustoName", txtCustoName.Text.Trim() } - }; - } - result = HttpHelper.Request("Custo/SelectCustoByInfo", dic); - if (result.statusCode != 200) - { - AntdUI.Message.error(this, "SelectCustoByInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - } - else - { - result = HttpHelper.Request("Custo/SelectCustoAll?pageIndex=1&pageSize=15"); - if (result.statusCode != 200) - { - AntdUI.Message.error(this, "SelectCustoAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - } - - custos = HttpHelper.JsonToModel>(result.message); - - var listTableSource = new List(); - - custos.listSource = custos.listSource.OrderBy(a => a.CustoNo).ThenBy(a => a.CustoName).ToList(); - - TableComHelper tableComHelper = new TableComHelper(); - listTableSource = tableComHelper.ConvertToAntdItems(custos.listSource); - - dgvCustomerList.Spin("正在加载中...", config => - { - dgvCustomerList.DataSource = listTableSource; - }, () => - { - System.Diagnostics.Debug.WriteLine("加载结束"); - }); - - dgvCustomerList.DataSource = custos; - } - - private void btnAddCusto_Click(object sender, EventArgs e) - { - FrmEditInputs frmInputs = new FrmEditInputs(); - frmInputs.ShowDialog(); - frmInputs.Text = "添加客户"; - } - - private void btnExport_Click(object sender, EventArgs e) - { - // 调用之前定义的导出方法 - ExportHelper exportHelper = new ExportHelper(); - SaveFileDialog saveFileDialog = new SaveFileDialog(); - // 设置保存对话框的属性 - saveFileDialog.Filter = "2003~2007工作表*.xls|*.xls|2010及以上版本工作表*.xlsx|*.xlsx"; - saveFileDialog.Title = "导出Excel文件"; - saveFileDialog.FileName = Convert.ToDateTime(DateTime.Now).ToString("yyyyMMddHHmmss") + "_" + "客户列表"; // 默认文件名 - saveFileDialog.CheckPathExists = true; // 检查目录是否存在 - - if (saveFileDialog.ShowDialog() == DialogResult.OK) - { - // 用户确认保存,获取选择的文件路径 - string filePath = saveFileDialog.FileName; - - try - { - dic = new Dictionary() - { - { "pageIndex",null}, - { "pageSize",null} - }; - ResponseMsg response = HttpHelper.Request("Custo/SelectCustoAll", dic); - if (response.statusCode != 200) - { - AntdUI.Message.error(this, "SelectCustoAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - OSelectAllDto custos = HttpHelper.JsonToModel>(response.message); - exportHelper.ExportDataToExcel(custos.listSource, filePath, new List { "CustoSex", "PassportType", "CustoID", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date" }); - - AntdUI.Message.success(this, "导出成功!"); - System.Diagnostics.Process.Start("Explorer.exe", filePath); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "导出了" + "后台用户信息!", 3); - #endregion - } - catch (Exception ex) - { - AntdUI.Message.error(this, $"导出失败: {ex.Message}"); - } - } - } - - private void btnUpdate_Click(object sender, EventArgs e) - { - if (dgvCustomerList.SelectedIndex < 0) - { - AntdUI.Message.error(this, "未选中客户,无法继续操作!"); - return; - } - FrmEditInputs frmInputs = new FrmEditInputs(); - frmInputs.Text = "修改客户信息"; - frmInputs.ShowDialog(); - } - - private void dgvCustomerList_CellClick(object sender, TableClickEventArgs e) - { - if (e.Record is IList data) - { - cm_CustoNo = data[0].value.ToString(); - cm_CustoName = data[1].value.ToString(); - cm_CustoSex = Convert.ToInt32(SexConstant.GetCodeByDescription(data[2].value.ToString())); - cm_CustoTel = data[3].value.ToString(); - cm_CustoBirth = Convert.ToDateTime(data[4].value.ToString()); - cm_CustoType = Convert.ToInt32(CustomTypeConstant.GetCodeByDescription(data[5].value.ToString())); - cm_PassportType = Convert.ToInt32(PassportConstant.GetCodeByDescription(data[6].value.ToString())); - cm_CustoID = data[7].value.ToString(); - cm_CustoAddress = data[8].value.ToString(); - btnUpdate.Enabled = true; - } - } - - private void cbOnlyVip_CheckedChanged(object sender, BoolEventArgs e) - { - LoadCustomer(e.Value); - } - - private void btnPg_ValueChanged(object sender, PagePageEventArgs e) - { - var dataCount = 0; - dgvCustomerList.Spin("正在加载中...", config => - { - dgvCustomerList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount,cbOnlyVip.Checked); - btnPg.Total = dataCount; - }, () => - { - System.Diagnostics.Debug.WriteLine("加载结束"); - }); - } - - private string btnPg_ShowTotalChanged(object sender, PagePageEventArgs e) - { - return $"{e.PageSize} / {e.Total}条 共{e.PageTotal}页"; - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.resx deleted file mode 100644 index 750c0dd07b214549e9fa026398d6c5859c603342..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.resx +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - - - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAA25JREFUWEet11uo5mMUx/FxzDnn5BBKk3BBEslhLkgphxzHMNMk54TkLCFxodQe - ElLIhRxyKKPEMGWSQ2pLDI1TLlyM0xAXhM/Senv++u/V++79vnvmW/vi/a/fs9azn/+zDv8FC8YEh+JC - 3I0X8TRui4hzI2KHqt+k4Bx8HiPAhzimrtsk4JqI+LUFeh9TWIzL8UhEfNRsv2BpXb9R4Aysw4+4PiJ2 - rpoEN7VN5CkdUO3zIh3hSfyJK6u9D7bFo/gDD1b7xETElrgIP+EVHFI1FeyL7/FtvqJqnwjsgfvxJc6r - 9mFgJzyAn3FntU8EFrZUexfHV/swImIbXIJ/8Ey1T0SmFKbb8S+s9mFExOY4tl3G1di/asYGR7XcfgNH - VPswImKrzJq2gVXYu2rGBofhdXyMU6t9GNg+Im5pG1iZmVE1Y4N98HDLghvGcRYRu+PVlopT1T4xrfxm - dfsGZ1V7n3b8V7X//mucXTUT0xWi5vQdHF01HRGxqOk2RMRd1T5vWjasbs7XY0VEHJcp1+yn4bFeU5qu - PjYanNBO4N9eoK/wG7Tff+OFiNgMB+EenN/5iIjDcV366jY/Ftl8cDE+64IPA79HxEkRcRnWtmdrcUFE - HInX2rP1+Yqwa401gyzFzdkHbeFfrSy/nGU2UzMvJu6IiOdbCZ6qGxtFO6Eda9wB7fI92xO/h9Mzz6u2 - ozWvxTPDjCY759DWHhF7RcRTTZRd7VbsV3XDyI3XQKPAtRGxXXWQ7zsnnBSsy1lvhmAWImLr3GwJ8h0e - bwUt/fVtL2G36uDmZsyefsWMCLPQ7sR0CbAmIg7uabJVP1c0qyJi+UCQU23Odq3y3d4PMBd9p83x0IGk - a3BV3xkz1bKPr8kMqItnozrEJ5l6VdfGtpVV3xnfysk3i0VdOBfVYRtMF1Ud9sz2XvVpOLktzKZzYF04 - F/i07xA/4Maqi4gz67dF/k4HV7dCc29dNA5Z1bCkq3ad4wzY0+RXVV66zp4T9NJBRcRD2cOHHdsk1DrQ - xvkv8k40/32ybG8xWNjGrg3V4SSks+yMJchIslFl6g8WZ8GoggnJ9M0Lln1hLHDf/70g87YKJiUH17zA - eLv3LOtBvusVXYdsz3NePDGnqO748t3lRDOvv/5XUxY0LMObWVm75zgFT+DSiNile578B51F4FHueb4u - AAAAAElFTkSuQmCC - - - - - AAABAAEAICAAAAEAGAASBAAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAADp0lEQVRYR7WXWYhP - URzHx5pliGEkSyhJeCCJZHsgpSxZx5pkT0h2CYkHpQYJKeRBliyFEoMiWVIj2bLmwYOdeCDM+HzP/c5/ - TPP3n/u/xrc+nXN+27n/+7/3nHNz4qqkpKQrTIYNcBwOwurS0tJxkOuw/yMmGgsPmSit8N2CPg6vXlF4 - IXN88kQ3oBAKYA7swnzbvg8w1WnVIwqOhMfwFpYwTxO7Kgjfcl+E7lJ7m/9NKkTB/fAN5tmcVvjrw274 - CtttTi4mr02hKfAOTkEXu/4qYtrAK3gBBTYnEwXyYQs8gfE2ZxRxjWErvId1NicTBTqBXrVr0N/mjOKu - 1SN2JvyEQzYnEwX6QDHo9neyOaO4gJrE9qXVw3gZ2tmVvUjuBXq3z0MPmzOKeesQO9IXUASt7MpeJHeD - c3AHhtmcUcQ1ZO6VvoAzUN+u7EVya9gJeguWxinGvM2JOw16FQttTi6KaPnV6vYcRtucVkyu2z/fv/4Z - jLEruagVFiIXvQK97aokQgY57iPNepv/XRTU23DZxV/DNrr9oJ79w2GP/BL94pBYnaLoANAd+OV5NNFT - +AwlHv+AY3Rr0HaEjTDBJXSHujNeDAPoh4uPJYKbkDQD7tP/q/B/oRkMs+k/sO0BTKTbk/asba9p1tPm - eYr0IiCfQBW76cTvoGX5JKyDYTAa1uI+SqsluFCxcUSs7lAjT1dR+PXwHY5CQ/B1GAENHVJJhGnzKogy - qhaxu2kqb+0YW8IBB2lXWwVt7c4oUtorL46ouYimgVMjYdD/rROOAh7TjLOrShFbVxer3DIxfgl7QQua - 6qXE+AQ0c3qqwAo7tafPtatKEatnoli5ZWJ8laazQxSjrfpI5I3EuIhmegigkwu3MWrlWxOMMaVif4r8 - tAcSbGGDc1hKZU69atrHr0J+MMaU66RE/l2annanhF3HtjNRVLnKnBfpf6JdHAxZKCpTLmroYDrI7pSw - t4DzUVS55BiiDq02nQ6Ojy1y7oVKFuM3sMzulHCNwl7h20JjFVgAWmg2OTYrkZcHkyCsdhJ9TTTKIYrR - V5UeuiD6OkFPhTw5d8BX7JVuWzYiv8I6QE0d5x/BXdf/U1q2a4VEnDp2fQyDhFIxagwPpWOI2Ak0dUMy - g5eRObH0+uoB074QS8RuhmgvoPPC9sSiRg/oAJdskk3rgf7rbRB2SIm+zosD6dYJF0BH/51ONImgWOqr - iXEu42lwAVbYrB85FPbBLGKa2oxycn4DnUXgUUEkWqsAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.Designer.cs deleted file mode 100644 index 3d43d642d5eeaa47f229bb48f5a054f64b1e28c9..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.Designer.cs +++ /dev/null @@ -1,275 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmCustoSpend - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmCustoSpend)); - this.dgvSpendList = new Sunny.UI.UIDataGridView(); - this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clSpendNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clMoneyState = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clSpendState = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dgvSpendList)).BeginInit(); - this.SuspendLayout(); - // - // dgvSpendList - // - this.dgvSpendList.AllowUserToAddRows = false; - this.dgvSpendList.AllowUserToDeleteRows = false; - this.dgvSpendList.AllowUserToResizeColumns = false; - this.dgvSpendList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvSpendList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvSpendList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvSpendList.BackgroundColor = System.Drawing.Color.White; - this.dgvSpendList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvSpendList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvSpendList.ColumnHeadersHeight = 32; - this.dgvSpendList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvSpendList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.dataGridViewTextBoxColumn1, - this.dataGridViewTextBoxColumn2, - this.dataGridViewTextBoxColumn3, - this.dataGridViewTextBoxColumn4, - this.dataGridViewTextBoxColumn5, - this.dataGridViewTextBoxColumn6, - this.dataGridViewTextBoxColumn7, - this.clSpendNo, - this.clMoneyState, - this.clSpendState, - this.Column6, - this.Column7, - this.Column9, - this.Column10}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvSpendList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvSpendList.EnableHeadersVisualStyles = false; - this.dgvSpendList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvSpendList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvSpendList.Location = new System.Drawing.Point(3, 38); - this.dgvSpendList.Name = "dgvSpendList"; - this.dgvSpendList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvSpendList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvSpendList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvSpendList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvSpendList.RowTemplate.Height = 29; - this.dgvSpendList.SelectedIndex = -1; - this.dgvSpendList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvSpendList.ShowRowErrors = false; - this.dgvSpendList.Size = new System.Drawing.Size(999, 582); - this.dgvSpendList.Style = Sunny.UI.UIStyle.Custom; - this.dgvSpendList.TabIndex = 16; - // - // dataGridViewTextBoxColumn1 - // - this.dataGridViewTextBoxColumn1.DataPropertyName = "RoomNo"; - this.dataGridViewTextBoxColumn1.FillWeight = 102.6831F; - this.dataGridViewTextBoxColumn1.HeaderText = "房号"; - this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; - this.dataGridViewTextBoxColumn1.ReadOnly = true; - // - // dataGridViewTextBoxColumn2 - // - this.dataGridViewTextBoxColumn2.DataPropertyName = "CustoNo"; - this.dataGridViewTextBoxColumn2.FillWeight = 102.6831F; - this.dataGridViewTextBoxColumn2.HeaderText = "客户编号"; - this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; - this.dataGridViewTextBoxColumn2.ReadOnly = true; - // - // dataGridViewTextBoxColumn3 - // - this.dataGridViewTextBoxColumn3.DataPropertyName = "SpendName"; - this.dataGridViewTextBoxColumn3.FillWeight = 102.6831F; - this.dataGridViewTextBoxColumn3.HeaderText = "商品"; - this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; - this.dataGridViewTextBoxColumn3.ReadOnly = true; - // - // dataGridViewTextBoxColumn4 - // - this.dataGridViewTextBoxColumn4.DataPropertyName = "SpendAmount"; - this.dataGridViewTextBoxColumn4.FillWeight = 60F; - this.dataGridViewTextBoxColumn4.HeaderText = "数量"; - this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; - this.dataGridViewTextBoxColumn4.ReadOnly = true; - // - // dataGridViewTextBoxColumn5 - // - this.dataGridViewTextBoxColumn5.DataPropertyName = "SpendPriceStr"; - this.dataGridViewTextBoxColumn5.FillWeight = 102.6831F; - this.dataGridViewTextBoxColumn5.HeaderText = "单价(元)"; - this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; - this.dataGridViewTextBoxColumn5.ReadOnly = true; - // - // dataGridViewTextBoxColumn6 - // - this.dataGridViewTextBoxColumn6.DataPropertyName = "SpendMoneyStr"; - this.dataGridViewTextBoxColumn6.FillWeight = 102.6831F; - this.dataGridViewTextBoxColumn6.HeaderText = "总额"; - this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; - this.dataGridViewTextBoxColumn6.ReadOnly = true; - // - // dataGridViewTextBoxColumn7 - // - this.dataGridViewTextBoxColumn7.DataPropertyName = "SpendTime"; - this.dataGridViewTextBoxColumn7.FillWeight = 102.6831F; - this.dataGridViewTextBoxColumn7.HeaderText = "消费时间"; - this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7"; - this.dataGridViewTextBoxColumn7.ReadOnly = true; - // - // clSpendNo - // - this.clSpendNo.DataPropertyName = "delete_mk"; - this.clSpendNo.HeaderText = "Column1"; - this.clSpendNo.Name = "clSpendNo"; - this.clSpendNo.ReadOnly = true; - this.clSpendNo.Visible = false; - // - // clMoneyState - // - this.clMoneyState.DataPropertyName = "MoneyState"; - this.clMoneyState.HeaderText = "结算状态"; - this.clMoneyState.Name = "clMoneyState"; - this.clMoneyState.ReadOnly = true; - this.clMoneyState.Visible = false; - // - // clSpendState - // - this.clSpendState.DataPropertyName = "SpendStateNm"; - this.clSpendState.HeaderText = "结算状态"; - this.clSpendState.Name = "clSpendState"; - this.clSpendState.ReadOnly = true; - // - // Column6 - // - this.Column6.DataPropertyName = "datains_usr"; - this.Column6.HeaderText = "Column6"; - this.Column6.Name = "Column6"; - this.Column6.ReadOnly = true; - this.Column6.Visible = false; - // - // Column7 - // - this.Column7.DataPropertyName = "datains_date"; - this.Column7.HeaderText = "Column7"; - this.Column7.Name = "Column7"; - this.Column7.ReadOnly = true; - this.Column7.Visible = false; - // - // Column9 - // - this.Column9.DataPropertyName = "datachg_usr"; - this.Column9.HeaderText = "Column9"; - this.Column9.Name = "Column9"; - this.Column9.ReadOnly = true; - this.Column9.Visible = false; - // - // Column10 - // - this.Column10.DataPropertyName = "datachg_date"; - this.Column10.HeaderText = "Column10"; - this.Column10.Name = "Column10"; - this.Column10.ReadOnly = true; - this.Column10.Visible = false; - // - // FrmCustoSpend - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.dgvSpendList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmCustoSpend"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "顾客消费账单"; - this.Load += new System.EventHandler(this.FrmCustoSpend_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvSpendList)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private Sunny.UI.UIDataGridView dgvSpendList; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; - private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7; - private System.Windows.Forms.DataGridViewTextBoxColumn clSpendNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clMoneyState; - private System.Windows.Forms.DataGridViewTextBoxColumn clSpendState; - private System.Windows.Forms.DataGridViewTextBoxColumn Column6; - private System.Windows.Forms.DataGridViewTextBoxColumn Column7; - private System.Windows.Forms.DataGridViewTextBoxColumn Column9; - private System.Windows.Forms.DataGridViewTextBoxColumn Column10; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.cs deleted file mode 100644 index 6c4f559f64296bf19f1926593d9ee879416fc33f..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.cs +++ /dev/null @@ -1,50 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 咖啡与网络(java-and-net) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmCustoSpend : UIForm - { - public FrmCustoSpend() - { - InitializeComponent(); - } - - private void FrmCustoSpend_Load(object sender, EventArgs e) - { - var result = HttpHelper.Request("Spend/SelectSpendInfoAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSpendInfoAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvSpendList.AutoGenerateColumns = false; - dgvSpendList.DataSource = HttpHelper.JsonToList(result.message); - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.resx deleted file mode 100644 index ec4adf6c3b6350f721fb64cef7822d3bf5cba441..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.resx +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGADqAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABf0lEQVRYR+2XMU7D - QBBFXdAgRYiGPjSho8kBQkWRoyDEFRLRI45AScUZOAASp0hFwwWQzZ/l77I2u45nvAEh5Ulf8czOjL+d - lWxX22iaZgJdGDXhGDt1XT9jkAnp5Rg7fhB+UleYlTfOMcNA03k8hDJdiTcAWvPkHCxpg4WVVKcYaSDF - mmXf5BxLYqSBYfN8A8MA8m+StyC9HBNgXmVgJmtGzTgmoDZQmsEGEB8h7P5/JsksjlUZcHEJ4hN240DC - wN/egV3xfwwg3m/CJcJ1Ccksjt1vQp0B5O6ZP2DKgdy15KH0s70HrYFD6AW6Y0pyZ9AHdMX4RPr6QM2D - awaMh/8FyF+yyW0k/D5Bj24RYOlYevuEmvACwlm6PYC1W+gVuoE20CmX1KgNSD7Se3S8YIkKi4EF5d4Z - o/jXDLh8F28Ah9OvTB7U2jehB+vuDjBsIb19Qtu4TSjIENSsGJoxGyjFVgMg+UgtqKyB7JfRDvj5ZSRg - YQ6lXJfUnKcDVfUJcL0q6EftHWEAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs index 5a52f8e774266a62259463f9cc4fda0011efe3aa..e5aeaf09d67c9f203559286cc71ce3a4443b5803 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs @@ -38,7 +38,6 @@ btnUpdCustomer = new AntdUI.Button(); dgvCustomerList = new AntdUI.Table(); btnPg = new AntdUI.Pagination(); - cbOnlyVip = new AntdUI.Checkbox(); label1 = new AntdUI.Label(); label2 = new AntdUI.Label(); txtCustoName = new AntdUI.Input(); @@ -138,17 +137,6 @@ btnPg.ValueChanged += btnPg_ValueChanged; btnPg.ShowTotalChanged += btnPg_ShowTotalChanged; // - // cbOnlyVip - // - cbOnlyVip.AutoCheck = true; - cbOnlyVip.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - cbOnlyVip.Location = new Point(630, 412); - cbOnlyVip.Name = "cbOnlyVip"; - cbOnlyVip.Size = new Size(120, 23); - cbOnlyVip.TabIndex = 148; - cbOnlyVip.Text = "仅查看会员"; - cbOnlyVip.CheckedChanged += cbOnlyVip_CheckedChanged; - // // label1 // label1.Font = new Font("Microsoft YaHei UI", 12.5F); @@ -158,7 +146,6 @@ label1.TabIndex = 152; label1.Text = "客户姓名"; label1.TextAlign = ContentAlignment.MiddleCenter; - label1.TooltipConfig = null; // // label2 // @@ -169,7 +156,6 @@ label2.TabIndex = 151; label2.Text = "客户编号"; label2.TextAlign = ContentAlignment.MiddleCenter; - label2.TooltipConfig = null; // // txtCustoName // @@ -199,7 +185,6 @@ Controls.Add(label2); Controls.Add(txtCustoName); Controls.Add(txtCustoNo); - Controls.Add(cbOnlyVip); Controls.Add(btnPg); Controls.Add(dgvCustomerList); Controls.Add(btnUpdCustomer); @@ -226,7 +211,6 @@ private AntdUI.Button btnUpdCustomer; private AntdUI.Table dgvCustomerList; private AntdUI.Pagination btnPg; - private AntdUI.Checkbox cbOnlyVip; private AntdUI.Label label1; private AntdUI.Label label2; private AntdUI.Input txtCustoName; diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs index eb9e0c7abf9b41c389ccb852d8b661aaa79f2759..7d6c85981b38be1729b2c4e8a6b3b82f60f67604 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs @@ -23,25 +23,29 @@ */ using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; using Sunny.UI; +using System.Runtime.InteropServices; namespace EOM.TSHotelManagement.FormUI { public partial class FrmCustomerManager : Form { + public static int cm_CustoId; public static string cm_CustoNo; public static string cm_CustoName; public static int cm_CustoSex; public static string cm_CustoTel; public static int cm_PassportType; - public static string cm_CustoID; + public static string cm_CustoIdCardNumber; public static string cm_CustoAddress; public static DateTime cm_CustoBirth; public static int cm_CustoType; public delegate void ReloadCustomerList(bool onlyVip); + [DllImport("user32.dll", SetLastError = true)] + private static extern IntPtr SetClipboardData(uint uFormat, IntPtr hMem); //定义委托类型的变量 public static ReloadCustomerList ReloadCustomer; @@ -57,18 +61,16 @@ namespace EOM.TSHotelManagement.FormUI Dictionary dic = null; ResponseMsg result = null; + TableComHelper helper = new TableComHelper(); + #region 用户管理界面加载事件方法 private void FrmCustomerManager_Load(object sender, EventArgs e) { - _loadingProgress.Show(); this.btnPg.PageSize = 15; LoadCustomer(); - _loadingProgress.Close(); } #endregion - private static bool? onlyVip = null; - #region 加载用户信息列表 private void LoadCustomer(bool onlyVip = false) { @@ -77,8 +79,8 @@ namespace EOM.TSHotelManagement.FormUI dgvCustomerList.Spin("正在加载中...", config => { TableComHelper tableComHelper = new TableComHelper(); - dgvCustomerList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); - dgvCustomerList.DataSource = GetPageData(btnPg.Current, btnPg.PageSize, ref dataCount, onlyVip); + dgvCustomerList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + dgvCustomerList.DataSource = GetPageData(btnPg.Current, btnPg.PageSize, ref dataCount); btnPg.PageSize = 15; btnPg.Current = 1; btnPg.Total = dataCount; @@ -89,31 +91,29 @@ namespace EOM.TSHotelManagement.FormUI } - object GetPageData(int current, int pageSize, ref int totalCount, bool onlyVip = false) + object GetPageData(int current, int pageSize, ref int totalCount) { dic = new Dictionary() { - { "pageIndex",current <= 0 ? "1":current.ToString()}, - { "pageSize",pageSize.ToString()} + { nameof(ReadCustomerInputDto.Page), current <= 0 ? "1":current.ToString() }, + { nameof(ReadCustomerInputDto.PageSize), pageSize.ToString() }, + { nameof(ReadCustomerInputDto.IsDelete), "0" } }; - if (onlyVip) + result = HttpHelper.Request(ApiConstants.Customer_SelectCustomers, dic); + var customers = HttpHelper.JsonToModel>(result.message); + if (customers.StatusCode != StatusCodeConstants.Success) { - dic.Add("onlyVip", onlyVip.ToString()); - } - result = HttpHelper.Request("Custo/SelectCustoAll", dic); - if (result.statusCode != 200) - { - AntdUI.Message.error(this, "SelectCustoAll+接口服务异常,请提交Issue或尝试更新版本!"); + AntdUI.Message.error(this, "SelectCustomers+接口服务异常,请提交Issue或尝试更新版本!"); return null!; } - OSelectAllDto custos = HttpHelper.JsonToModel>(result.message); - totalCount = custos.total; + List custos = customers.listSource; + totalCount = customers.total; var listTableSource = new List(); - custos.listSource = custos.listSource.OrderBy(a => a.CustoNo).ThenBy(a => a.CustoName).ToList(); + custos = custos.OrderBy(a => a.CustomerNumber).ThenBy(a => a.CustomerName).ToList(); TableComHelper tableComHelper = new TableComHelper(); - listTableSource = tableComHelper.ConvertToAntdItems(custos.listSource); + listTableSource = tableComHelper.ConvertToAntdItems(custos); return listTableSource; } @@ -123,58 +123,41 @@ namespace EOM.TSHotelManagement.FormUI int count = 0; private void btnSerach_BtnClick(object sender, EventArgs e) { - OSelectAllDto custos = new OSelectAllDto(); - if (!txtCustoNo.Text.IsNullOrEmpty() || !txtCustoName.Text.IsNullOrEmpty()) + var custos = new List(); + var response = new ListOutputDto(); + dic = new Dictionary + { + { nameof(ReadCustomerInputDto.Page), "1" }, + { nameof(ReadCustomerInputDto.PageSize), "15" }, + { nameof(ReadCustomerInputDto.IsDelete), "0" } + }; + if (!txtCustoNo.Text.IsNullOrEmpty()) { - if (!txtCustoNo.Text.IsNullOrEmpty()) - { - dic = new Dictionary - { - { "CustoNo", txtCustoNo.Text.Trim() } - }; - } - if (!txtCustoName.Text.IsNullOrEmpty()) - { - dic = new Dictionary - { - { "CustoName", txtCustoName.Text.Trim() } - }; - } - result = HttpHelper.Request("Custo/SelectCustoByInfo", dic); - if (result.statusCode != 200) - { - AntdUI.Message.error(this, "SelectCustoByInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } + dic.Add(nameof(ReadCustomerInputDto.CustomerNumber), txtCustoNo.Text.Trim()); } - else + if (!txtCustoName.Text.IsNullOrEmpty()) { - result = HttpHelper.Request("Custo/SelectCustoAll?pageIndex=1&pageSize=15"); - if (result.statusCode != 200) - { - AntdUI.Message.error(this, "SelectCustoAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } + dic.Add(nameof(ReadCustomerInputDto.CustomerName), txtCustoName.Text.Trim()); + } + result = HttpHelper.Request(ApiConstants.Customer_SelectCustomers, dic); + response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + AntdUI.Message.error(this, $"{ApiConstants.Customer_SelectCustomers}+接口服务异常,请提交Issue或尝试更新版本!"); + return; } - custos = HttpHelper.JsonToModel>(result.message); - + custos = response.listSource; + var totalCount = response.total; var listTableSource = new List(); - custos.listSource = custos.listSource.OrderBy(a => a.CustoNo).ThenBy(a => a.CustoName).ToList(); + custos = custos.OrderBy(a => a.CustomerNumber).ThenBy(a => a.CustomerName).ToList(); TableComHelper tableComHelper = new TableComHelper(); - listTableSource = tableComHelper.ConvertToAntdItems(custos.listSource); + listTableSource = tableComHelper.ConvertToAntdItems(custos); - dgvCustomerList.Spin("正在加载中...", config => - { - dgvCustomerList.DataSource = listTableSource; - }, () => - { - System.Diagnostics.Debug.WriteLine("加载结束"); - }); - - dgvCustomerList.DataSource = custos; + dgvCustomerList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + dgvCustomerList.DataSource = listTableSource; } private void btnAddCusto_BtnClick(object sender, EventArgs e) @@ -191,15 +174,16 @@ namespace EOM.TSHotelManagement.FormUI AntdUI.Message.error(this, "未选中客户,无法继续操作!"); return; } - FrmCustoManager.cm_CustoNo = cm_CustoNo; - FrmCustoManager.cm_CustoName = cm_CustoName; - FrmCustoManager.cm_CustoAddress = cm_CustoAddress.IsNullOrEmpty() ? "" : cm_CustoAddress.ToString(); - FrmCustoManager.cm_CustoType = Convert.ToInt32(cm_CustoType); - FrmCustoManager.cm_CustoSex = Convert.ToInt32(cm_CustoSex); - FrmCustoManager.cm_PassportType = Convert.ToInt32(cm_PassportType); - FrmCustoManager.cm_CustoBirth = Convert.ToDateTime(cm_CustoBirth); - FrmCustoManager.cm_CustoID = cm_CustoID; - FrmCustoManager.cm_CustoTel = cm_CustoTel; + //cm_CustoId = cm_CustoId; + //cm_CustoNo = cm_CustoNo; + //cm_CustoName = cm_CustoName; + //cm_CustoAddress = cm_CustoAddress.IsNullOrEmpty() ? "" : cm_CustoAddress.ToString(); + //cm_CustoType = Convert.ToInt32(cm_CustoType); + //cm_CustoSex = Convert.ToInt32(cm_CustoSex); + //cm_PassportType = Convert.ToInt32(cm_PassportType); + //cm_CustoBirth = Convert.ToDateTime(cm_CustoBirth); + //cm_CustoID = cm_CustoID; + //cm_CustoTel = cm_CustoTel; FrmEditInputs frmInputs = new FrmEditInputs(); frmInputs.Text = "修改客户信息"; frmInputs.ShowDialog(); @@ -209,7 +193,7 @@ namespace EOM.TSHotelManagement.FormUI { if (!cm_CustoNo.IsNullOrEmpty()) { - Clipboard.SetText(cm_CustoNo); + ClipboardHelper.SetTextToClipboard(cm_CustoNo); AntdUI.Message.success(this, "复制完成!"); } } @@ -218,24 +202,20 @@ namespace EOM.TSHotelManagement.FormUI { if (e.Record is IList data) { - cm_CustoNo = data[0].value.ToString(); - cm_CustoName = data[1].value.ToString(); - cm_CustoSex = Convert.ToInt32(SexConstant.GetCodeByDescription(data[2].value.ToString())); - cm_CustoTel = data[3].value.ToString(); - cm_CustoBirth = Convert.ToDateTime(data[4].value.ToString()); - cm_CustoType = Convert.ToInt32(CustomTypeConstant.GetCodeByDescription(data[5].value.ToString())); - cm_PassportType = Convert.ToInt32(PassportConstant.GetCodeByDescription(data[6].value.ToString())); - cm_CustoID = data[7].value.ToString(); - cm_CustoAddress = data[8].value.ToString(); + cm_CustoId = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.Id))); + cm_CustoNo = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerNumber)); + cm_CustoName = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerName)); + cm_CustoSex = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerGender))); + cm_CustoTel = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerPhoneNumber)); + cm_CustoBirth = Convert.ToDateTime(helper.GetValue(data, nameof(ReadCustomerOutputDto.DateOfBirth))); + cm_CustoType = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerType))); + cm_PassportType = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.PassportId))); + cm_CustoIdCardNumber = helper.GetValue(data, nameof(ReadCustomerOutputDto.IdCardNumber)); + cm_CustoAddress = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerAddress)); btnUpdCustomer.Enabled = true; } } - private void cbOnlyVip_CheckedChanged(object sender, AntdUI.BoolEventArgs e) - { - LoadCustomer(e.Value); - } - private string btnPg_ShowTotalChanged(object sender, AntdUI.PagePageEventArgs e) { return $"{e.PageSize} / {e.Total}条 共{e.PageTotal}页"; @@ -246,7 +226,7 @@ namespace EOM.TSHotelManagement.FormUI var dataCount = 0; dgvCustomerList.Spin("正在加载中...", config => { - dgvCustomerList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount,cbOnlyVip.Checked); + dgvCustomerList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount); btnPg.Total = dataCount; }, () => { @@ -256,18 +236,18 @@ namespace EOM.TSHotelManagement.FormUI private void dgvCustomerList_CellDoubleClick(object sender, AntdUI.TableClickEventArgs e) { - _loadingProgress.Show(); if (e.Record is IList data) { - FrmCustoManager.cm_CustoNo = data[0].value.ToString(); - FrmCustoManager.cm_CustoName = data[1].value.ToString(); - FrmCustoManager.cm_CustoSex = Convert.ToInt32(SexConstant.GetCodeByDescription(data[2].value.ToString())); - FrmCustoManager.cm_CustoTel = data[3].value.ToString(); - FrmCustoManager.cm_CustoBirth = Convert.ToDateTime(data[4].value.ToString()); - FrmCustoManager.cm_CustoType = Convert.ToInt32(CustomTypeConstant.GetCodeByDescription(data[5].value.ToString())); - FrmCustoManager.cm_PassportType = Convert.ToInt32(PassportConstant.GetCodeByDescription(data[6].value.ToString())); - FrmCustoManager.cm_CustoID = data[7].value.ToString(); - FrmCustoManager.cm_CustoAddress = data[8].value.ToString(); + cm_CustoId = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.Id))); + cm_CustoNo = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerNumber)); + cm_CustoName = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerName)); + cm_CustoSex = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerGender))); + cm_CustoTel = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerPhoneNumber)); + cm_CustoBirth = Convert.ToDateTime(helper.GetValue(data, nameof(ReadCustomerOutputDto.DateOfBirth))); + cm_CustoType = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerType))); + cm_PassportType = Convert.ToInt32(helper.GetValue(data, nameof(ReadCustomerOutputDto.PassportId))); + cm_CustoIdCardNumber = helper.GetValue(data, nameof(ReadCustomerOutputDto.IdCardNumber)); + cm_CustoAddress = helper.GetValue(data, nameof(ReadCustomerOutputDto.CustomerAddress)); FrmEditInputs frmInputs = new FrmEditInputs(_loadingProgress); frmInputs.Text = "修改客户信息"; diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.Designer.cs deleted file mode 100644 index 948ce055e74f288e02928ff4dc273c0a54c1b016..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.Designer.cs +++ /dev/null @@ -1,485 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmDepartment - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDepartment)); - this.dgvDeptList = new Sunny.UI.UIDataGridView(); - this.clDeptNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeptName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeptDesc = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeptDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeptLeader = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeptParent = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeptLeaderNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeptParentNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.label1 = new System.Windows.Forms.Label(); - this.btnAddDept = new Sunny.UI.UIButton(); - this.label9 = new System.Windows.Forms.Label(); - this.label8 = new System.Windows.Forms.Label(); - this.txtDeptDesc = new Sunny.UI.UITextBox(); - this.label7 = new System.Windows.Forms.Label(); - this.txtDeptName = new Sunny.UI.UITextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.txtDeptNo = new Sunny.UI.UITextBox(); - this.btnUpdateDept = new Sunny.UI.UIButton(); - this.btnDeleteDept = new Sunny.UI.UIButton(); - this.cboDeptParent = new Sunny.UI.UIComboBox(); - this.cboDeptLeader = new Sunny.UI.UIComboBox(); - ((System.ComponentModel.ISupportInitialize)(this.dgvDeptList)).BeginInit(); - this.SuspendLayout(); - // - // dgvDeptList - // - this.dgvDeptList.AllowUserToAddRows = false; - this.dgvDeptList.AllowUserToDeleteRows = false; - this.dgvDeptList.AllowUserToResizeColumns = false; - this.dgvDeptList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvDeptList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvDeptList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvDeptList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvDeptList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvDeptList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvDeptList.ColumnHeadersHeight = 32; - this.dgvDeptList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvDeptList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clDeptNo, - this.clDeptName, - this.clDeptDesc, - this.clDeptDate, - this.clDeptLeader, - this.clDeptParent, - this.Column1, - this.Column2, - this.Column3, - this.Column4, - this.Column5, - this.clDeptLeaderNo, - this.clDeptParentNo}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvDeptList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvDeptList.EnableHeadersVisualStyles = false; - this.dgvDeptList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvDeptList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvDeptList.Location = new System.Drawing.Point(3, 38); - this.dgvDeptList.MultiSelect = false; - this.dgvDeptList.Name = "dgvDeptList"; - this.dgvDeptList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvDeptList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvDeptList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvDeptList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvDeptList.RowTemplate.Height = 29; - this.dgvDeptList.SelectedIndex = -1; - this.dgvDeptList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvDeptList.Size = new System.Drawing.Size(788, 582); - this.dgvDeptList.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvDeptList.TabIndex = 0; - this.dgvDeptList.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvDeptList_CellMouseClick); - // - // clDeptNo - // - this.clDeptNo.DataPropertyName = "dept_no"; - this.clDeptNo.HeaderText = "部门编号"; - this.clDeptNo.Name = "clDeptNo"; - this.clDeptNo.ReadOnly = true; - // - // clDeptName - // - this.clDeptName.DataPropertyName = "dept_name"; - this.clDeptName.HeaderText = "部门名称"; - this.clDeptName.Name = "clDeptName"; - this.clDeptName.ReadOnly = true; - // - // clDeptDesc - // - this.clDeptDesc.DataPropertyName = "dept_desc"; - this.clDeptDesc.HeaderText = "部门描述"; - this.clDeptDesc.Name = "clDeptDesc"; - this.clDeptDesc.ReadOnly = true; - // - // clDeptDate - // - this.clDeptDate.DataPropertyName = "dept_date"; - this.clDeptDate.HeaderText = "部门创建时间"; - this.clDeptDate.Name = "clDeptDate"; - this.clDeptDate.ReadOnly = true; - // - // clDeptLeader - // - this.clDeptLeader.DataPropertyName = "leader_name"; - this.clDeptLeader.HeaderText = "部门主管"; - this.clDeptLeader.Name = "clDeptLeader"; - this.clDeptLeader.ReadOnly = true; - // - // clDeptParent - // - this.clDeptParent.DataPropertyName = "parent_name"; - this.clDeptParent.HeaderText = "上级部门"; - this.clDeptParent.Name = "clDeptParent"; - this.clDeptParent.ReadOnly = true; - // - // Column1 - // - this.Column1.DataPropertyName = "delete_mk"; - this.Column1.HeaderText = "Column1"; - this.Column1.Name = "Column1"; - this.Column1.ReadOnly = true; - this.Column1.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_usr"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_date"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // clDeptLeaderNo - // - this.clDeptLeaderNo.DataPropertyName = "dept_leader"; - this.clDeptLeaderNo.HeaderText = "Column6"; - this.clDeptLeaderNo.Name = "clDeptLeaderNo"; - this.clDeptLeaderNo.ReadOnly = true; - this.clDeptLeaderNo.Visible = false; - // - // clDeptParentNo - // - this.clDeptParentNo.DataPropertyName = "dept_parent"; - this.clDeptParentNo.HeaderText = "Column7"; - this.clDeptParentNo.Name = "clDeptParentNo"; - this.clDeptParentNo.ReadOnly = true; - this.clDeptParentNo.Visible = false; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(858, 412); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(85, 19); - this.label1.TabIndex = 181; - this.label1.Text = "上级部门"; - // - // btnAddDept - // - this.btnAddDept.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAddDept.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAddDept.Location = new System.Drawing.Point(820, 484); - this.btnAddDept.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAddDept.Name = "btnAddDept"; - this.btnAddDept.Radius = 20; - this.btnAddDept.Size = new System.Drawing.Size(165, 33); - this.btnAddDept.TabIndex = 180; - this.btnAddDept.Text = "新增部门"; - this.btnAddDept.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnAddDept.Click += new System.EventHandler(this.btnAddDept_Click); - // - // label9 - // - this.label9.AutoSize = true; - this.label9.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label9.Location = new System.Drawing.Point(858, 340); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(85, 19); - this.label9.TabIndex = 175; - this.label9.Text = "部门主管"; - // - // label8 - // - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label8.Location = new System.Drawing.Point(858, 194); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(85, 19); - this.label8.TabIndex = 173; - this.label8.Text = "部门描述"; - // - // txtDeptDesc - // - this.txtDeptDesc.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtDeptDesc.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtDeptDesc.Location = new System.Drawing.Point(820, 225); - this.txtDeptDesc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtDeptDesc.MinimumSize = new System.Drawing.Size(1, 1); - this.txtDeptDesc.Multiline = true; - this.txtDeptDesc.Name = "txtDeptDesc"; - this.txtDeptDesc.Padding = new System.Windows.Forms.Padding(5); - this.txtDeptDesc.Radius = 10; - this.txtDeptDesc.ShowText = false; - this.txtDeptDesc.Size = new System.Drawing.Size(165, 103); - this.txtDeptDesc.Style = Sunny.UI.UIStyle.Custom; - this.txtDeptDesc.StyleCustomMode = true; - this.txtDeptDesc.TabIndex = 172; - this.txtDeptDesc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtDeptDesc.Watermark = ""; - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(858, 122); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(85, 19); - this.label7.TabIndex = 171; - this.label7.Text = "部门名称"; - // - // txtDeptName - // - this.txtDeptName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtDeptName.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtDeptName.Location = new System.Drawing.Point(820, 153); - this.txtDeptName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtDeptName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtDeptName.Name = "txtDeptName"; - this.txtDeptName.Padding = new System.Windows.Forms.Padding(5); - this.txtDeptName.Radius = 20; - this.txtDeptName.ShowText = false; - this.txtDeptName.Size = new System.Drawing.Size(165, 29); - this.txtDeptName.Style = Sunny.UI.UIStyle.Custom; - this.txtDeptName.StyleCustomMode = true; - this.txtDeptName.TabIndex = 170; - this.txtDeptName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtDeptName.Watermark = ""; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(858, 50); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(85, 19); - this.label20.TabIndex = 169; - this.label20.Text = "部门编号"; - // - // txtDeptNo - // - this.txtDeptNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtDeptNo.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtDeptNo.Location = new System.Drawing.Point(820, 81); - this.txtDeptNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtDeptNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtDeptNo.Name = "txtDeptNo"; - this.txtDeptNo.Padding = new System.Windows.Forms.Padding(5); - this.txtDeptNo.Radius = 20; - this.txtDeptNo.ReadOnly = true; - this.txtDeptNo.ShowText = false; - this.txtDeptNo.Size = new System.Drawing.Size(165, 29); - this.txtDeptNo.Style = Sunny.UI.UIStyle.Custom; - this.txtDeptNo.StyleCustomMode = true; - this.txtDeptNo.TabIndex = 168; - this.txtDeptNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtDeptNo.Watermark = ""; - // - // btnUpdateDept - // - this.btnUpdateDept.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdateDept.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdateDept.Location = new System.Drawing.Point(820, 529); - this.btnUpdateDept.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdateDept.Name = "btnUpdateDept"; - this.btnUpdateDept.Radius = 20; - this.btnUpdateDept.Size = new System.Drawing.Size(165, 33); - this.btnUpdateDept.TabIndex = 183; - this.btnUpdateDept.Text = "更新部门"; - this.btnUpdateDept.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnUpdateDept.Click += new System.EventHandler(this.btnUpdateDept_Click); - // - // btnDeleteDept - // - this.btnDeleteDept.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnDeleteDept.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnDeleteDept.Location = new System.Drawing.Point(820, 574); - this.btnDeleteDept.MinimumSize = new System.Drawing.Size(1, 1); - this.btnDeleteDept.Name = "btnDeleteDept"; - this.btnDeleteDept.Radius = 20; - this.btnDeleteDept.Size = new System.Drawing.Size(165, 33); - this.btnDeleteDept.TabIndex = 184; - this.btnDeleteDept.Text = "删除部门"; - this.btnDeleteDept.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnDeleteDept.Click += new System.EventHandler(this.btnDeleteDept_Click); - // - // cboDeptParent - // - this.cboDeptParent.DataSource = null; - this.cboDeptParent.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboDeptParent.FillColor = System.Drawing.Color.White; - this.cboDeptParent.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.cboDeptParent.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboDeptParent.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboDeptParent.Location = new System.Drawing.Point(820, 443); - this.cboDeptParent.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboDeptParent.MinimumSize = new System.Drawing.Size(63, 0); - this.cboDeptParent.Name = "cboDeptParent"; - this.cboDeptParent.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboDeptParent.Radius = 10; - this.cboDeptParent.Size = new System.Drawing.Size(165, 29); - this.cboDeptParent.SymbolSize = 24; - this.cboDeptParent.TabIndex = 185; - this.cboDeptParent.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboDeptParent.Watermark = ""; - // - // cboDeptLeader - // - this.cboDeptLeader.DataSource = null; - this.cboDeptLeader.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboDeptLeader.FillColor = System.Drawing.Color.White; - this.cboDeptLeader.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.cboDeptLeader.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboDeptLeader.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboDeptLeader.Location = new System.Drawing.Point(820, 371); - this.cboDeptLeader.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboDeptLeader.MinimumSize = new System.Drawing.Size(63, 0); - this.cboDeptLeader.Name = "cboDeptLeader"; - this.cboDeptLeader.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboDeptLeader.Size = new System.Drawing.Size(165, 29); - this.cboDeptLeader.SymbolSize = 24; - this.cboDeptLeader.TabIndex = 186; - this.cboDeptLeader.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboDeptLeader.Watermark = ""; - // - // FrmDepartment - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.cboDeptLeader); - this.Controls.Add(this.cboDeptParent); - this.Controls.Add(this.btnDeleteDept); - this.Controls.Add(this.btnUpdateDept); - this.Controls.Add(this.label1); - this.Controls.Add(this.btnAddDept); - this.Controls.Add(this.label9); - this.Controls.Add(this.label8); - this.Controls.Add(this.txtDeptDesc); - this.Controls.Add(this.label7); - this.Controls.Add(this.txtDeptName); - this.Controls.Add(this.label20); - this.Controls.Add(this.txtDeptNo); - this.Controls.Add(this.dgvDeptList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmDepartment"; - this.ShowTitleIcon = true; - this.Text = "部门信息"; - this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 1005, 623); - this.Load += new System.EventHandler(this.FrmDepartment_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvDeptList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UIDataGridView dgvDeptList; - private System.Windows.Forms.Label label1; - private Sunny.UI.UIButton btnAddDept; - private System.Windows.Forms.Label label9; - private System.Windows.Forms.Label label8; - private Sunny.UI.UITextBox txtDeptDesc; - private System.Windows.Forms.Label label7; - private Sunny.UI.UITextBox txtDeptName; - private System.Windows.Forms.Label label20; - private Sunny.UI.UITextBox txtDeptNo; - private Sunny.UI.UIButton btnUpdateDept; - private Sunny.UI.UIButton btnDeleteDept; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptName; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptDesc; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptDate; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptLeader; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptParent; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptLeaderNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeptParentNo; - private Sunny.UI.UIComboBox cboDeptParent; - private Sunny.UI.UIComboBox cboDeptLeader; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.cs deleted file mode 100644 index 5143f51e374cf01899b4429b412acc0aca15445a..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.cs +++ /dev/null @@ -1,266 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using jvncorelib.EntityLib; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmDepartment : UIForm - { - public FrmDepartment() - { - InitializeComponent(); - } - - private void FrmDepartment_Load(object sender, EventArgs e) - { - ReloadDeptList(); - LoadDept(); - LoadLeader(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - public void ReloadDeptList() - { - txtDeptNo.Text = ApplicationUtil.GetListNewId("D", 3, 1, "-").FirstOrDefault(); - result = HttpHelper.Request("Base/SelectDeptAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectDeptAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvDeptList.AutoGenerateColumns = false; - dgvDeptList.DataSource = HttpHelper.JsonToList(result.message); - } - - public void LoadDept() - { - result = HttpHelper.Request("Base/SelectDeptAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectDeptAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboDeptParent.DataSource = HttpHelper.JsonToList(result.message); - cboDeptParent.DisplayMember = "dept_name"; - cboDeptParent.ValueMember = "dept_no"; - } - - public void LoadLeader() - { - result = HttpHelper.Request("Worker/SelectWorkerAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectWorkerAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboDeptLeader.DataSource = HttpHelper.JsonToList(result.message); - cboDeptLeader.DisplayMember = "WorkerName"; - cboDeptLeader.ValueMember = "WorkerId"; - } - - public bool CheckInput(Dept dept) - { - if (string.IsNullOrWhiteSpace(dept.dept_no)) - { - return false; - } - if (string.IsNullOrWhiteSpace(dept.dept_name)) - { - return false; - } - if (string.IsNullOrWhiteSpace(dept.dept_desc)) - { - return false; - } - return true; - } - - private void btnAddDept_Click(object sender, EventArgs e) - { - Dept dept = new Dept() - { - dept_no = txtDeptNo.Text.Trim(), - dept_name = txtDeptName.Text.Trim(), - dept_desc = txtDeptDesc.Text.Trim(), - dept_parent = cboDeptParent.SelectedValue.ToString(), - dept_date = Convert.ToDateTime(DateTime.Now), - dept_leader = cboDeptLeader.SelectedValue.ToString(), - datains_usr = AdminInfo.Account - }; - if (CheckInput(dept)) - { - result = HttpHelper.Request("Base/AddDept", HttpHelper.ModelToJson(dept)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("AddDept+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (!tf) - { - UIMessageBox.Show("添加失败!或是服务器繁忙所致,请稍后重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - UIMessageBox.Show("添加成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "添加部门类型操作!新增值为:" + dept.dept_no, 2); - #endregion - txtDeptName.Text = ""; - txtDeptDesc.Text = ""; - ReloadDeptList(); - return; - } - else - { - UIMessageBox.Show("信息不完整,请检查!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); - return; - } - - } - - private void dgvDeptList_CellClick(object sender, DataGridViewCellEventArgs e) - { - - } - - private void btnUpdateDept_Click(object sender, EventArgs e) - { - Dept dept = new Dept() - { - dept_no = txtDeptNo.Text.Trim(), - dept_name = txtDeptName.Text.Trim(), - dept_desc = txtDeptDesc.Text.Trim(), - dept_parent = cboDeptParent.SelectedValue == null ? "" : cboDeptParent.ToString(), - dept_leader = cboDeptLeader.SelectedValue == null ? "" : cboDeptLeader.SelectedValue.ToString(), - datachg_usr = AdminInfo.Account, - }; - if (CheckInput(dept)) - { - result = HttpHelper.Request("Base/UpdDept", HttpHelper.ModelToJson(dept)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdDept+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (!tf) - { - UIMessageBox.Show("修改失败!或是服务器繁忙所致,请稍后重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - UIMessageBox.Show("修改成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "修改部门类型操作!修改值为:" + dept.dept_no, 2); - #endregion - txtDeptName.Text = ""; - txtDeptDesc.Text = ""; - ReloadDeptList(); - return; - } - else - { - UIMessageBox.Show("信息不完整,请检查!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); - return; - } - } - - private void btnDeleteDept_Click(object sender, EventArgs e) - { - if (dgvDeptList.SelectedRows.Count > 0) - { - //删除前先检索该部门下是否存在员工 - dic = new Dictionary() - { - { "deptNo",txtDeptNo.Text.Trim()} - }; - result = HttpHelper.Request("Worker/CheckWorkerBydepartment", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("CheckWorkerBydepartment+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - - if (result.message.ToString().Equals("true")) - { - UIMessageBox.ShowError("当前部门下存在工作人员信息,无法删除该部门"); - return; - } - - Dept dept = new Dept() - { - dept_no = txtDeptNo.Text.Trim(), - delete_mk = 1, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base/DelDept", HttpHelper.ModelToJson(dept)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("DelDept+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true"); - if (!tf) - { - UIMessageBox.Show("删除失败!或是服务器繁忙所致,请稍后重试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - UIMessageBox.Show("删除成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "删除部门类型操作!删除值为:" + dept.dept_no, 2); - #endregion - txtDeptName.Text = ""; - txtDeptDesc.Text = ""; - ReloadDeptList(); - return; - } - - } - - private void dgvDeptList_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) - { - if (dgvDeptList.SelectedRows.Count == 1) - { - txtDeptNo.Text = dgvDeptList.SelectedRows[0].Cells["clDeptNo"].Value.IsNullOrEmpty() ? "" : dgvDeptList.SelectedRows[0].Cells["clDeptNo"].Value.ToString(); - txtDeptName.Text = dgvDeptList.SelectedRows[0].Cells["clDeptName"].Value.IsNullOrEmpty() ? "" : dgvDeptList.SelectedRows[0].Cells["clDeptName"].Value.ToString(); - txtDeptDesc.Text = dgvDeptList.SelectedRows[0].Cells["clDeptDesc"].Value.IsNullOrEmpty() ? "" : dgvDeptList.SelectedRows[0].Cells["clDeptDesc"].Value.ToString(); - cboDeptLeader.SelectedValue = dgvDeptList.SelectedRows[0].Cells["clDeptLeaderNo"].Value.IsNullOrEmpty() ? "" : dgvDeptList.SelectedRows[0].Cells["clDeptLeaderNo"].Value.ToString(); - cboDeptParent.SelectedValue = dgvDeptList.SelectedRows[0].Cells["clDeptParentNo"].Value.IsNullOrEmpty() ? "" : dgvDeptList.SelectedRows[0].Cells["clDeptParentNo"].Value.ToString(); - } - } - - private void cboDeptLeader_SelectedValueChanged(object sender, EventArgs e) - { - //UIMessageBox.Show(cboDeptLeader.SelectedValue.ToString()); - } - } - - - -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.resx deleted file mode 100644 index 6a110fc0c3dabf6a7dd2e6046648d5f91b1f2c59..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.resx +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGADYAAAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAbUlEQVRYR+2WMQoA - IAwD/f+ndVGHSiiFIILXxcHQxlNLW5vRL8Wqd6yX6vfUgBSEjWXYprcnrBrGAAT+JaAakPrfdr09ofj/ - sc6WxbvP3oJdb0+YdMDjgBiAAAQgAAEIQAACz4xkcmarznhF/QC4XwpL07/nXAAAAABJRU5ErkJggg== - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.cs index 5506f6004c67a2ef01c022334d56ffe30312d484..7d104ada4da40433677d654d1e4a6530185a70f1 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.cs @@ -23,7 +23,8 @@ */ using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; +using jvncorelib.CodeLib; using Sunny.UI; namespace EOM.TSHotelManagement.FormUI @@ -40,79 +41,74 @@ namespace EOM.TSHotelManagement.FormUI Dictionary dic = null; ResponseMsg result = null; - protected override bool CheckData() - { - return CheckEmpty(txtCustoNo, "请输入客户ID") - && CheckEmpty(txtCustoName, "请输入姓名") - && CheckEmpty(cbCustoType, "请选择客户类型") - && CheckEmpty(cbPassportType, "请选择证件类型") - && CheckEmpty(cbSex, "请选择客户性别") - && CheckEmpty(dtpBirthday, "请选择客户生日") - && CheckEmpty(txtCardID, "请输入证件号码") - && CheckEmpty(txtTel, "输入11位手机号码") - && CheckEmpty(txtCustoAdress, "请填写居住地址"); - } - private void FrmEditInputs_Load(object sender, EventArgs e) { - string cardId = ApplicationUtil.GetListNewId("TS", 3, 1, "-").FirstOrDefault(); + string cardId = new UniqueCode().GetNewId("TS"); txtCustoNo.Text = cardId; #region 加载客户类型信息 - var result = HttpHelper.Request("Base/SelectCustoTypeAllCanUse"); - if (result.statusCode != 200) + var result = HttpHelper.Request(ApiConstants.Base_SelectCustoTypeAllCanUse); + var customerTypes = HttpHelper.JsonToModel>(result.message); + if (customerTypes.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectCustoTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectCustoTypeAllCanUse}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List lstSourceGrid = HttpHelper.JsonToList(result.message); + var lstSourceGrid = customerTypes.listSource; this.cbCustoType.DataSource = lstSourceGrid; - this.cbCustoType.DisplayMember = "TypeName"; - this.cbCustoType.ValueMember = "UserType"; + this.cbCustoType.DisplayMember = nameof(ReadCustoTypeOutputDto.CustomerTypeName); + this.cbCustoType.ValueMember = nameof(ReadCustoTypeOutputDto.CustomerType); this.cbCustoType.SelectedIndex = 0; this.cbCustoType.ReadOnly = true; #endregion #region 加载证件类型信息 - result = HttpHelper.Request("Base/SelectPassPortTypeAllCanUse"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectPassPortTypeAllCanUse); + var passportTypes = HttpHelper.JsonToModel>(result.message); + if (passportTypes.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectPassPortTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectPassPortTypeAllCanUse}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List passPorts = HttpHelper.JsonToList(result.message); + var passPorts = passportTypes.listSource; this.cbPassportType.DataSource = passPorts; - this.cbPassportType.DisplayMember = "PassportName"; - this.cbPassportType.ValueMember = "PassportId"; + this.cbPassportType.DisplayMember = nameof(ReadPassportTypeOutputDto.PassportName); + this.cbPassportType.ValueMember = nameof(ReadPassportTypeOutputDto.PassportId); this.cbPassportType.SelectedIndex = 0; #endregion #region 加载性别信息 - result = HttpHelper.Request("Base/SelectSexTypeAll?delete_mk=0"); - if (result.statusCode != 200) + dic = new Dictionary { - UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); + { nameof(ReadGenderTypeInputDto.IsDelete) , "0" }, + { nameof(ReadGenderTypeInputDto.IgnorePaging) , "true" } + }; + result = HttpHelper.Request(ApiConstants.Base_SelectGenderTypeAll, dic); + var genderTypes = HttpHelper.JsonToModel>(result.message); + if (genderTypes.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Base_SelectGenderTypeAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List listSexType = HttpHelper.JsonToList(result.message); + var listSexType = genderTypes.listSource; this.cbSex.DataSource = listSexType; - this.cbSex.DisplayMember = "sexName"; - this.cbSex.ValueMember = "sexId"; + this.cbSex.DisplayMember = nameof(ReadGenderTypeOutputDto.Description); + this.cbSex.ValueMember = nameof(ReadGenderTypeOutputDto.Id); this.cbSex.SelectedIndex = 0; #endregion if (this.Text.Equals("修改客户信息")) { - txtCustoNo.Text = FrmCustoManager.cm_CustoNo; - txtCustoName.Text = FrmCustoManager.cm_CustoName; - txtCustoAdress.Text = FrmCustoManager.cm_CustoAddress; - cbCustoType.SelectedIndex = FrmCustoManager.cm_CustoType; - cbSex.SelectedIndex = FrmCustoManager.cm_CustoSex; - cbPassportType.SelectedIndex = FrmCustoManager.cm_PassportType; - dtpBirthday.Value = FrmCustoManager.cm_CustoBirth; - txtCardID.Text = FrmCustoManager.cm_CustoID; - txtCustoAdress.Text = FrmCustoManager.cm_CustoAddress; - txtTel.Text = FrmCustoManager.cm_CustoTel; + txtCustoNo.Text = FrmCustomerManager.cm_CustoNo; + txtCustoName.Text = FrmCustomerManager.cm_CustoName; + txtCustoAdress.Text = FrmCustomerManager.cm_CustoAddress; + cbCustoType.SelectedValue = FrmCustomerManager.cm_CustoType; + cbSex.SelectedValue = FrmCustomerManager.cm_CustoSex; + cbPassportType.SelectedValue = FrmCustomerManager.cm_PassportType; + dtpBirthday.Value = FrmCustomerManager.cm_CustoBirth; + txtCardID.Text = FrmCustomerManager.cm_CustoIdCardNumber; + txtCustoAdress.Text = FrmCustomerManager.cm_CustoAddress; + txtTel.Text = FrmCustomerManager.cm_CustoTel; btnOK.Text = "修改"; this.ButtonOkClick -= new EventHandler(FrmEditInputs_ButtonOkClick); @@ -126,36 +122,29 @@ namespace EOM.TSHotelManagement.FormUI } } - if (_loadingProgress != null) - { - _loadingProgress.Close(); - } } private void btnOK_UpdClick(object sender, EventArgs e) { - Custo custo = new Custo() + UpdateCustomerInputDto custo = new UpdateCustomerInputDto() { - CustoNo = txtCustoNo.Text, - CustoName = txtCustoName.Text, - CustoSex = Convert.ToInt32(cbSex.SelectedValue.ToString()), - CustoBirth = dtpBirthday.Value, - CustoType = Convert.ToInt32(cbCustoType.SelectedValue.ToString()), - PassportType = Convert.ToInt32(cbPassportType.SelectedValue.ToString()), - CustoID = txtCardID.Text, - CustoTel = txtTel.Text, - CustoAdress = txtCustoAdress.Text, - datachg_usr = LoginInfo.WorkerNo == null ? AdminInfo.Account : LoginInfo.WorkerNo, + Id = FrmCustomerManager.cm_CustoId, + CustomerNumber = txtCustoNo.Text, + CustomerName = txtCustoName.Text, + CustomerGender = Convert.ToInt32(cbSex.SelectedValue.ToString()), + DateOfBirth = DateOnly.FromDateTime(dtpBirthday.Value.Date), + CustomerType = Convert.ToInt32(cbCustoType.SelectedValue.ToString()), + PassportId = Convert.ToInt32(cbPassportType.SelectedValue), + IdCardNumber = txtCardID.Text, + CustomerPhoneNumber = txtTel.Text, + CustomerAddress = txtCustoAdress.Text, + IsDelete = 0, + DataChgUsr = LoginInfo.WorkerNo, }; - result = HttpHelper.Request("Custo/UpdCustomerInfoByCustoNo", HttpHelper.ModelToJson(custo)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdCustomerInfoByCustoNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool t = result.message.ToString().Equals("true") ? true : false; - if (!t) + result = HttpHelper.Request(ApiConstants.Customer_UpdCustomerInfo, HttpHelper.ModelToJson(custo)); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { UIMessageBox.Show("修改失败", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); return; @@ -163,7 +152,7 @@ namespace EOM.TSHotelManagement.FormUI UIMessageBox.Show("修改成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "修改了一名客户信息,客户编号为:" + custo.CustoNo, 3); + RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "修改了一名客户信息,客户编号为:" + custo.CustomerNumber, Common.Core.LogLevel.Critical); #endregion this.Close(); FrmCustomerManager.ReloadCustomer(false); @@ -185,41 +174,35 @@ namespace EOM.TSHotelManagement.FormUI private void FrmEditInputs_ButtonOkClick(object sender, EventArgs e) { - Custo custo = new Custo() + CreateCustomerInputDto custo = new CreateCustomerInputDto() { - CustoNo = txtCustoNo.Text, - CustoName = txtCustoName.Text, - CustoSex = Convert.ToInt32(cbSex.SelectedValue.ToString()), - CustoBirth = dtpBirthday.Value, - CustoType = Convert.ToInt32(cbCustoType.SelectedValue.ToString()), - PassportType = Convert.ToInt32(cbPassportType.SelectedValue.ToString()), - CustoID = txtCardID.Text, - CustoTel = txtTel.Text, - CustoAdress = txtCustoAdress.Text, - datains_usr = LoginInfo.WorkerNo == null ? AdminInfo.Account : LoginInfo.WorkerNo, - + DataInsDate = DateTime.Now, + CustomerNumber = txtCustoNo.Text, + CustomerName = txtCustoName.Text, + CustomerGender = Convert.ToInt32(cbSex.SelectedValue.ToString()), + DateOfBirth = dtpBirthday.Value.Date, + CustomerType = Convert.ToInt32(cbCustoType.SelectedValue.ToString()), + PassportId = Convert.ToInt32(cbPassportType.SelectedValue.ToString()), + IdCardNumber = txtCardID.Text, + CustomerPhoneNumber = txtTel.Text, + CustomerAddress = txtCustoAdress.Text, + DataInsUsr = LoginInfo.WorkerNo, + IsDelete = 0 }; - result = HttpHelper.Request("Custo/InsertCustomerInfo", HttpHelper.ModelToJson(custo)); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Customer_InsertCustomerInfo, HttpHelper.ModelToJson(custo)); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("InsertCustomerInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - if (result.message.ToString().Equals("true")) - { - UIMessageBox.Show("添加成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - FrmCustomerManager.ReloadCustomer(false); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "添加了一名客户,客户编号为:" + custo.CustoNo, 3); - #endregion - this.Close(); - } - else - { - UIMessageBox.Show("添加失败", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + UIMessageBox.Show($"添加失败\n{response.Message}", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); return; } + UIMessageBox.Show("添加成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); + FrmCustomerManager.ReloadCustomer(false); + #region 获取添加操作日志所需的信息 + RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "添加了一名客户,客户编号为:" + custo.CustomerNumber, Common.Core.LogLevel.Critical); + #endregion + this.Close(); foreach (Control Ctrol in this.Controls) @@ -248,7 +231,7 @@ namespace EOM.TSHotelManagement.FormUI //获取得到输入的身份证号码 string identityCard = txtCardID.Text.Trim(); - if (!cbPassportType.SelectedText.ToString().Contains("身份证")) + if (!cbPassportType.Text.ToString().Contains("身份证")) { dtpBirthday.Enabled = true; dtpBirthday.ReadOnly = false; @@ -280,14 +263,23 @@ namespace EOM.TSHotelManagement.FormUI if (identityCard.Length == 18) { - var result = ApplicationUtil.searchCode(identityCard); + var result = ApplicationUtil.SearchCode(identityCard); if (result.message.IsNullOrEmpty()) //如果没有错误消息输出,则代表成功 { try { - cbSex.Text = result.sex; - txtCustoAdress.Text = result.address; - dtpBirthday.Value = Convert.ToDateTime(result.birthday); + cbSex.Text = result.sex ?? string.Empty; + txtCustoAdress.Text = result.address ?? string.Empty; + + if (DateTime.TryParse(result.birthday, out DateTime parsedDate)) + { + dtpBirthday.Value = parsedDate; + } + else + { + UIMessageBox.ShowError("请正确输入证件号码!"); + return; + } } catch { diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.Designer.cs deleted file mode 100644 index 0443a2254f416b14452b6bd051952dcb16aa0123..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.Designer.cs +++ /dev/null @@ -1,316 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmEducation - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEducation)); - this.btnDeleteEducation = new Sunny.UI.UIButton(); - this.btnUpdateEducation = new Sunny.UI.UIButton(); - this.btnAddEducation = new Sunny.UI.UIButton(); - this.label7 = new System.Windows.Forms.Label(); - this.txtEducationName = new Sunny.UI.UITextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.txtEducationNo = new Sunny.UI.UITextBox(); - this.dgvEducationList = new Sunny.UI.UIDataGridView(); - this.clEducationNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clEducationName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeleteMk = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dgvEducationList)).BeginInit(); - this.SuspendLayout(); - // - // btnDeleteEducation - // - this.btnDeleteEducation.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnDeleteEducation.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnDeleteEducation.Location = new System.Drawing.Point(821, 419); - this.btnDeleteEducation.MinimumSize = new System.Drawing.Size(1, 1); - this.btnDeleteEducation.Name = "btnDeleteEducation"; - this.btnDeleteEducation.Radius = 20; - this.btnDeleteEducation.Size = new System.Drawing.Size(165, 33); - this.btnDeleteEducation.TabIndex = 198; - this.btnDeleteEducation.Text = "删除学历"; - this.btnDeleteEducation.Click += new System.EventHandler(this.btnDeleteEducation_Click); - // - // btnUpdateEducation - // - this.btnUpdateEducation.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdateEducation.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdateEducation.Location = new System.Drawing.Point(821, 374); - this.btnUpdateEducation.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdateEducation.Name = "btnUpdateEducation"; - this.btnUpdateEducation.Radius = 20; - this.btnUpdateEducation.Size = new System.Drawing.Size(165, 33); - this.btnUpdateEducation.TabIndex = 197; - this.btnUpdateEducation.Text = "更新学历"; - this.btnUpdateEducation.Click += new System.EventHandler(this.btnUpdateEducation_Click); - // - // btnAddEducation - // - this.btnAddEducation.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAddEducation.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAddEducation.Location = new System.Drawing.Point(821, 329); - this.btnAddEducation.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAddEducation.Name = "btnAddEducation"; - this.btnAddEducation.Radius = 20; - this.btnAddEducation.Size = new System.Drawing.Size(165, 33); - this.btnAddEducation.TabIndex = 194; - this.btnAddEducation.Text = "新增学历"; - this.btnAddEducation.Click += new System.EventHandler(this.btnAddEducation_Click); - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(859, 247); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(85, 19); - this.label7.TabIndex = 189; - this.label7.Text = "学历名称"; - // - // txtEducationName - // - this.txtEducationName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtEducationName.FillColor = System.Drawing.Color.White; - this.txtEducationName.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtEducationName.Location = new System.Drawing.Point(821, 278); - this.txtEducationName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtEducationName.Maximum = 2147483647D; - this.txtEducationName.Minimum = -2147483648D; - this.txtEducationName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtEducationName.Name = "txtEducationName"; - this.txtEducationName.Padding = new System.Windows.Forms.Padding(5); - this.txtEducationName.Radius = 20; - this.txtEducationName.Size = new System.Drawing.Size(165, 29); - this.txtEducationName.Style = Sunny.UI.UIStyle.Custom; - this.txtEducationName.StyleCustomMode = true; - this.txtEducationName.TabIndex = 188; - this.txtEducationName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(859, 175); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(85, 19); - this.label20.TabIndex = 187; - this.label20.Text = "学历编号"; - // - // txtEducationNo - // - this.txtEducationNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtEducationNo.FillColor = System.Drawing.Color.White; - this.txtEducationNo.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtEducationNo.Location = new System.Drawing.Point(821, 206); - this.txtEducationNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtEducationNo.Maximum = 2147483647D; - this.txtEducationNo.Minimum = -2147483648D; - this.txtEducationNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtEducationNo.Name = "txtEducationNo"; - this.txtEducationNo.Padding = new System.Windows.Forms.Padding(5); - this.txtEducationNo.Radius = 20; - this.txtEducationNo.ReadOnly = true; - this.txtEducationNo.Size = new System.Drawing.Size(165, 29); - this.txtEducationNo.Style = Sunny.UI.UIStyle.Custom; - this.txtEducationNo.StyleCustomMode = true; - this.txtEducationNo.TabIndex = 186; - this.txtEducationNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // dgvEducationList - // - this.dgvEducationList.AllowUserToAddRows = false; - this.dgvEducationList.AllowUserToDeleteRows = false; - this.dgvEducationList.AllowUserToResizeColumns = false; - this.dgvEducationList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvEducationList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvEducationList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvEducationList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvEducationList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvEducationList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvEducationList.ColumnHeadersHeight = 32; - this.dgvEducationList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvEducationList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clEducationNo, - this.clEducationName, - this.clDeleteMk, - this.Column2, - this.Column3, - this.Column4, - this.Column5}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvEducationList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvEducationList.EnableHeadersVisualStyles = false; - this.dgvEducationList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvEducationList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvEducationList.Location = new System.Drawing.Point(3, 38); - this.dgvEducationList.MultiSelect = false; - this.dgvEducationList.Name = "dgvEducationList"; - this.dgvEducationList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvEducationList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvEducationList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvEducationList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvEducationList.RowTemplate.Height = 29; - this.dgvEducationList.SelectedIndex = -1; - this.dgvEducationList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvEducationList.Size = new System.Drawing.Size(788, 582); - this.dgvEducationList.TabIndex = 185; - this.dgvEducationList.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvEducationList_CellMouseClick); - // - // clEducationNo - // - this.clEducationNo.DataPropertyName = "education_no"; - this.clEducationNo.HeaderText = "学历编号"; - this.clEducationNo.Name = "clEducationNo"; - this.clEducationNo.ReadOnly = true; - // - // clEducationName - // - this.clEducationName.DataPropertyName = "education_name"; - this.clEducationName.HeaderText = "学历名称"; - this.clEducationName.Name = "clEducationName"; - this.clEducationName.ReadOnly = true; - // - // clDeleteMk - // - this.clDeleteMk.DataPropertyName = "delete_mk"; - this.clDeleteMk.HeaderText = "Column1"; - this.clDeleteMk.Name = "clDeleteMk"; - this.clDeleteMk.ReadOnly = true; - this.clDeleteMk.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_usr"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_date"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // FrmEducation - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1005, 627); - this.ControlBox = false; - this.Controls.Add(this.btnDeleteEducation); - this.Controls.Add(this.btnUpdateEducation); - this.Controls.Add(this.btnAddEducation); - this.Controls.Add(this.label7); - this.Controls.Add(this.txtEducationName); - this.Controls.Add(this.label20); - this.Controls.Add(this.txtEducationNo); - this.Controls.Add(this.dgvEducationList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmEducation"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "学历类型维护"; - this.Load += new System.EventHandler(this.FrmEducation_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvEducationList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UIButton btnDeleteEducation; - private Sunny.UI.UIButton btnUpdateEducation; - private Sunny.UI.UIButton btnAddEducation; - private System.Windows.Forms.Label label7; - private Sunny.UI.UITextBox txtEducationName; - private System.Windows.Forms.Label label20; - private Sunny.UI.UITextBox txtEducationNo; - private Sunny.UI.UIDataGridView dgvEducationList; - private System.Windows.Forms.DataGridViewTextBoxColumn clEducationNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clEducationName; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeleteMk; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.cs deleted file mode 100644 index 96af102c2361958d0ff66b49927257d7eb2c3fa0..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.cs +++ /dev/null @@ -1,183 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmEducation : UIForm - { - public delegate void OperationEducation(); - - - //定义委托类型的变量 - public static OperationEducation operation; - - public static OperationEducation reload; - - public FrmEducation() - { - InitializeComponent(); - reload = ReloadEducationList; - } - List educations = null; - public static string info = null; - private void FrmEducation_Load(object sender, EventArgs e) - { - ReloadEducationList(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - public void ReloadEducationList() - { - //flpInformation.Controls.Clear(); - txtEducationNo.Text = ApplicationUtil.GetListNewId("E", 3, 1, "-").FirstOrDefault(); - result = HttpHelper.Request("Base/SelectEducationAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectEducationAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - educations = HttpHelper.JsonToList(result.message); - dgvEducationList.AutoGenerateColumns = false; - dgvEducationList.DataSource = educations; - } - - private void btnAddEducation_Click(object sender, EventArgs e) - { - if (txtEducationName.Text.Trim().IsNullOrEmpty()) - { - UIMessageTip.ShowWarning("学历名称为空,请检查", 1500); - txtEducationName.Focus(); - return; - } - var edu = new Education() - { - education_no = txtEducationNo.Text.Trim(), - education_name = txtEducationName.Text.Trim(), - delete_mk = 0, - datains_usr = AdminInfo.Account - }; - result = HttpHelper.Request("Base​/AddEducation", HttpHelper.ModelToJson(edu)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("AddEducation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - UIMessageTip.ShowOk("添加学历成功!", 1500); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "新增学历类型操作!新增值为:" + edu.education_no, 2); - #endregion - ReloadEducationList(); - return; - - } - - private void btnUpdateEducation_Click(object sender, EventArgs e) - { - if (dgvEducationList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的学历数据,请检查", 1500); - return; - } - var edu = new Education() - { - education_no = txtEducationNo.Text.Trim(), - education_name = txtEducationName.Text.Trim(), - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/UpdEducation", HttpHelper.ModelToJson(edu)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("UpdEducation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - ReloadEducationList(); - } - - private void btnDeleteEducation_Click(object sender, EventArgs e) - { - if (dgvEducationList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的学历数据,请检查", 1500); - return; - } - var edu = new Education() - { - education_no = txtEducationNo.Text.Trim(), - education_name = txtEducationName.Text.Trim(), - delete_mk = 1, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/DelEducation", HttpHelper.ModelToJson(edu)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("DelEducation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - UIMessageTip.ShowOk("删除成功!"); - ReloadEducationList(); - return; - } - - private void dgvEducationList_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) - { - txtEducationNo.Text = dgvEducationList.SelectedRows[0].Cells["clEducationNo"].Value.ToString(); - txtEducationName.Text = dgvEducationList.SelectedRows[0].Cells["clEducationName"].Value.ToString(); - if (dgvEducationList.SelectedRows[0].Cells["clDeleteMk"].Value.ToString() == "1") - { - btnDeleteEducation.Text = "恢复学历"; - btnDeleteEducation.FillColor = Color.Green; - btnDeleteEducation.Click += btnRecoveryEducation_Click; - } - } - - private void btnRecoveryEducation_Click(object sender, EventArgs e) - { - if (dgvEducationList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的学历数据,请检查", 1500); - return; - } - var edu = new Education() - { - education_no = txtEducationNo.Text.Trim(), - education_name = txtEducationName.Text.Trim(), - delete_mk = 0, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/UpdEducation", HttpHelper.ModelToJson(edu)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("UpdEducation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.resx deleted file mode 100644 index 02a1cfd045c917e693aada6723ef3c92c6d26634..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.resx +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGACVAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAADKklEQVRYR+2XS0gV - URjHr/SWdCFmD8xCSog2PYhaCOkiIougqFZRES4Me1EEUUEgFBGmQQUlkRS0CaxFQS2KLHpID1RMFFpU - ED2kF1pqWff2+65nLt9Mo3Pm3tvOCz/mfOd8j/+cOXPm3EgkiV80Gs2GcmiFTtgVi8Vyk0gVLoQiGRRb - BNdou3703aKjBMaEy2rpTYEsqKLAN6cy9lPajcrupq8acizT2rmRcB08V4W6sPdiZ3IdB1vhtRpvx95k - l30YL5LMh3r4Lsm5/oEGKPKGMVxA/znoNb4DXK9gLwkthKDJsBteqbt6ib06KBk+S6FFxX3APgj5QbER - gsbiWAq34be5kx+0j8pUByZQDvjvhB41c4+xV8EE3zwMTIIa6FLqb2DPDlNY+xKbBxdVvs/YZ2GGKycd - m6HZs4g2Yk9MtrgTR47x5F4JTZ7822QswkC9R2EtdmGqhb3x1JkGh+Gdqlctz11W9wDco1mS7sI+QhZT - Sx5tPzyMCzAieulooL3wf4kg/1yZceg2NesSApSQ9zhUQfBrY6mU3Lnk2wOJ15q+xvhiNEp6MGq1A+0W - 2MB4pmWdf9zMa72MPA88C3A7fdnxACWgwiyU01z7VMB17CLsjDBC8J9C3CWV5xO2fCemu/JoAerV2e8E - qgQnbAUQ44qn6Eeo9I0fTgBB8lH5qkRIe8tQQvBdA2+Uv+yizakKKCOB7F6/jFh5Ze/TLnaEYC8AeVT9 - qvhNbPkupCaAhPOkEInkIHJXzwb2KTgid6j627DXmvVVkDYBJuEoEspRrNNnjbw1YgZX9+ACT68ANeVT - KXYGvoCcgi7DUGeEwEcg57hiSBwqnVUsi9B5BN6FR/9oKJTCXH3PgVYz4LeibQTYvJIjAkZmIOkZYGXv - ANlGZQ8/AIl322bxmY1L/i8cMjlkjyi3jZVdrxT1z9TuJp/mfTAnKAkxM/GrhBcq/g72rKBY1zgBy6FN - 73jY8hMxV+E8HGf8GNc6kD8sT+CnKiz+HVAWqrja8fIJrgH5Cob6ESM7pIgMd+d+SkmSQ/X1XC9Ak7kr - Obr1gRwupS13+ghOwgrIsrnrv3NISOTeENvRAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.Designer.cs deleted file mode 100644 index c806bb69cff17219f027d2c9027390ba99776387..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.Designer.cs +++ /dev/null @@ -1,490 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmGoodOrBad - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmGoodOrBad)); - this.label2 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.lblWorkerNo = new System.Windows.Forms.Label(); - this.lblName = new System.Windows.Forms.Label(); - this.lblDate = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.label7 = new System.Windows.Forms.Label(); - this.CboType = new Sunny.UI.UIComboBox(); - this.DtpDate = new Sunny.UI.UIDatePicker(); - this.RtbGBInfo = new Sunny.UI.UIRichTextBox(); - this.DgvGoodBadList = new Sunny.UI.UIDataGridView(); - this.clWorkNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clGBType = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clGBInfo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clGBOperation = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clGBTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.label1 = new System.Windows.Forms.Label(); - this.btnAdd = new Sunny.UI.UIButton(); - this.btnClose = new Sunny.UI.UIButton(); - ((System.ComponentModel.ISupportInitialize)(this.DgvGoodBadList)).BeginInit(); - this.SuspendLayout(); - // - // label2 - // - this.label2.AutoSize = true; - this.label2.BackColor = System.Drawing.Color.Transparent; - this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label2.Location = new System.Drawing.Point(12, 52); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(105, 24); - this.label2.TabIndex = 2; - this.label2.Text = "员工编号:"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.BackColor = System.Drawing.Color.Transparent; - this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label3.Location = new System.Drawing.Point(207, 52); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(105, 24); - this.label3.TabIndex = 3; - this.label3.Text = "员工姓名:"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.BackColor = System.Drawing.Color.Transparent; - this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label4.Location = new System.Drawing.Point(402, 52); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(105, 24); - this.label4.TabIndex = 3; - this.label4.Text = "入职日期:"; - // - // lblWorkerNo - // - this.lblWorkerNo.AutoSize = true; - this.lblWorkerNo.BackColor = System.Drawing.Color.Transparent; - this.lblWorkerNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblWorkerNo.Location = new System.Drawing.Point(119, 52); - this.lblWorkerNo.Name = "lblWorkerNo"; - this.lblWorkerNo.Size = new System.Drawing.Size(86, 24); - this.lblWorkerNo.TabIndex = 4; - this.lblWorkerNo.Text = "员工编号"; - // - // lblName - // - this.lblName.AutoSize = true; - this.lblName.BackColor = System.Drawing.Color.Transparent; - this.lblName.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblName.Location = new System.Drawing.Point(314, 52); - this.lblName.Name = "lblName"; - this.lblName.Size = new System.Drawing.Size(86, 24); - this.lblName.TabIndex = 5; - this.lblName.Text = "员工姓名"; - // - // lblDate - // - this.lblDate.AutoSize = true; - this.lblDate.BackColor = System.Drawing.Color.Transparent; - this.lblDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblDate.Location = new System.Drawing.Point(509, 52); - this.lblDate.Name = "lblDate"; - this.lblDate.Size = new System.Drawing.Size(86, 24); - this.lblDate.TabIndex = 6; - this.lblDate.Text = "入职日期"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.BackColor = System.Drawing.Color.Transparent; - this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label5.Location = new System.Drawing.Point(30, 110); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(105, 24); - this.label5.TabIndex = 8; - this.label5.Text = "奖罚类型:"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.BackColor = System.Drawing.Color.Transparent; - this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label6.Location = new System.Drawing.Point(30, 153); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(105, 24); - this.label6.TabIndex = 9; - this.label6.Text = "奖罚时间:"; - // - // label7 - // - this.label7.AutoSize = true; - this.label7.BackColor = System.Drawing.Color.Transparent; - this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label7.Location = new System.Drawing.Point(30, 196); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(105, 24); - this.label7.TabIndex = 10; - this.label7.Text = "奖罚情况:"; - // - // CboType - // - this.CboType.DataSource = null; - this.CboType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.CboType.FillColor = System.Drawing.Color.White; - this.CboType.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.CboType.Location = new System.Drawing.Point(141, 104); - this.CboType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.CboType.MinimumSize = new System.Drawing.Size(63, 0); - this.CboType.Name = "CboType"; - this.CboType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.CboType.Radius = 20; - this.CboType.Size = new System.Drawing.Size(158, 35); - this.CboType.Style = Sunny.UI.UIStyle.Custom; - this.CboType.TabIndex = 107; - this.CboType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // DtpDate - // - this.DtpDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.DtpDate.FillColor = System.Drawing.Color.White; - this.DtpDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.DtpDate.Location = new System.Drawing.Point(141, 152); - this.DtpDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.DtpDate.MaxLength = 10; - this.DtpDate.MinimumSize = new System.Drawing.Size(63, 0); - this.DtpDate.Name = "DtpDate"; - this.DtpDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.DtpDate.Radius = 20; - this.DtpDate.ReadOnly = true; - this.DtpDate.Size = new System.Drawing.Size(158, 31); - this.DtpDate.Style = Sunny.UI.UIStyle.Custom; - this.DtpDate.SymbolDropDown = 61555; - this.DtpDate.SymbolNormal = 61555; - this.DtpDate.TabIndex = 108; - this.DtpDate.Text = "2020-11-24"; - this.DtpDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.DtpDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); - // - // RtbGBInfo - // - this.RtbGBInfo.AutoWordSelection = true; - this.RtbGBInfo.FillColor = System.Drawing.Color.White; - this.RtbGBInfo.Font = new System.Drawing.Font("微软雅黑", 12F); - this.RtbGBInfo.Location = new System.Drawing.Point(141, 196); - this.RtbGBInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.RtbGBInfo.MinimumSize = new System.Drawing.Size(1, 1); - this.RtbGBInfo.Name = "RtbGBInfo"; - this.RtbGBInfo.Padding = new System.Windows.Forms.Padding(2); - this.RtbGBInfo.Radius = 20; - this.RtbGBInfo.Size = new System.Drawing.Size(486, 148); - this.RtbGBInfo.Style = Sunny.UI.UIStyle.Custom; - this.RtbGBInfo.TabIndex = 109; - this.RtbGBInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.RtbGBInfo.WordWrap = true; - // - // DgvGoodBadList - // - this.DgvGoodBadList.AllowUserToAddRows = false; - this.DgvGoodBadList.AllowUserToDeleteRows = false; - this.DgvGoodBadList.AllowUserToResizeColumns = false; - this.DgvGoodBadList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.DgvGoodBadList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.DgvGoodBadList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.DgvGoodBadList.BackgroundColor = System.Drawing.Color.White; - this.DgvGoodBadList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.DgvGoodBadList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.DgvGoodBadList.ColumnHeadersHeight = 32; - this.DgvGoodBadList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.DgvGoodBadList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clWorkNo, - this.clGBType, - this.clGBInfo, - this.clGBOperation, - this.clGBTime, - this.Column1, - this.Column2, - this.Column3, - this.Column4, - this.Column5, - this.Column6, - this.Column7}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.DgvGoodBadList.DefaultCellStyle = dataGridViewCellStyle3; - this.DgvGoodBadList.EnableHeadersVisualStyles = false; - this.DgvGoodBadList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.DgvGoodBadList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.DgvGoodBadList.Location = new System.Drawing.Point(34, 390); - this.DgvGoodBadList.MultiSelect = false; - this.DgvGoodBadList.Name = "DgvGoodBadList"; - this.DgvGoodBadList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.DgvGoodBadList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.DgvGoodBadList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.DgvGoodBadList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.DgvGoodBadList.RowTemplate.Height = 29; - this.DgvGoodBadList.SelectedIndex = -1; - this.DgvGoodBadList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.DgvGoodBadList.Size = new System.Drawing.Size(593, 199); - this.DgvGoodBadList.Style = Sunny.UI.UIStyle.Custom; - this.DgvGoodBadList.TabIndex = 3; - // - // clWorkNo - // - this.clWorkNo.DataPropertyName = "WorkNo"; - this.clWorkNo.HeaderText = "员工编号"; - this.clWorkNo.Name = "clWorkNo"; - this.clWorkNo.ReadOnly = true; - // - // clGBType - // - this.clGBType.DataPropertyName = "TypeName"; - this.clGBType.HeaderText = "奖罚类型"; - this.clGBType.Name = "clGBType"; - this.clGBType.ReadOnly = true; - // - // clGBInfo - // - this.clGBInfo.DataPropertyName = "GBInfo"; - this.clGBInfo.HeaderText = "奖惩信息"; - this.clGBInfo.Name = "clGBInfo"; - this.clGBInfo.ReadOnly = true; - // - // clGBOperation - // - this.clGBOperation.DataPropertyName = "OperationName"; - this.clGBOperation.HeaderText = "奖惩操作人"; - this.clGBOperation.Name = "clGBOperation"; - this.clGBOperation.ReadOnly = true; - // - // clGBTime - // - this.clGBTime.DataPropertyName = "GBTime"; - this.clGBTime.HeaderText = "奖惩时间"; - this.clGBTime.Name = "clGBTime"; - this.clGBTime.ReadOnly = true; - // - // Column1 - // - this.Column1.DataPropertyName = "delete_mk"; - this.Column1.HeaderText = "Column1"; - this.Column1.Name = "Column1"; - this.Column1.ReadOnly = true; - this.Column1.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_date"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_usr"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // Column6 - // - this.Column6.DataPropertyName = "GBType"; - this.Column6.HeaderText = "Column6"; - this.Column6.Name = "Column6"; - this.Column6.ReadOnly = true; - this.Column6.Visible = false; - // - // Column7 - // - this.Column7.DataPropertyName = "GBOperation"; - this.Column7.HeaderText = "Column7"; - this.Column7.Name = "Column7"; - this.Column7.ReadOnly = true; - this.Column7.Visible = false; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.BackColor = System.Drawing.Color.Transparent; - this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label1.Location = new System.Drawing.Point(37, 355); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(143, 24); - this.label1.TabIndex = 110; - this.label1.Text = "历史奖罚情况:"; - // - // btnAdd - // - this.btnAdd.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAdd.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAdd.Location = new System.Drawing.Point(421, 599); - this.btnAdd.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAdd.Name = "btnAdd"; - this.btnAdd.Radius = 20; - this.btnAdd.Size = new System.Drawing.Size(100, 35); - this.btnAdd.Style = Sunny.UI.UIStyle.Custom; - this.btnAdd.TabIndex = 111; - this.btnAdd.Text = "新 增"; - this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); - // - // btnClose - // - this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnClose.Location = new System.Drawing.Point(527, 599); - this.btnClose.MinimumSize = new System.Drawing.Size(1, 1); - this.btnClose.Name = "btnClose"; - this.btnClose.Radius = 20; - this.btnClose.Size = new System.Drawing.Size(100, 35); - this.btnClose.Style = Sunny.UI.UIStyle.Custom; - this.btnClose.TabIndex = 112; - this.btnClose.Text = "关 闭"; - this.btnClose.Click += new System.EventHandler(this.btnClose_Click); - // - // FrmGoodOrBad - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(657, 646); - this.ControlBox = false; - this.Controls.Add(this.btnClose); - this.Controls.Add(this.btnAdd); - this.Controls.Add(this.label1); - this.Controls.Add(this.DgvGoodBadList); - this.Controls.Add(this.RtbGBInfo); - this.Controls.Add(this.DtpDate); - this.Controls.Add(this.CboType); - this.Controls.Add(this.label7); - this.Controls.Add(this.label6); - this.Controls.Add(this.label5); - this.Controls.Add(this.lblDate); - this.Controls.Add(this.lblName); - this.Controls.Add(this.lblWorkerNo); - this.Controls.Add(this.label4); - this.Controls.Add(this.label3); - this.Controls.Add(this.label2); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmGoodOrBad"; - this.ShowIcon = true; - this.ShowRadius = false; - this.ShowShadow = true; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "员工奖罚情况页"; - this.Load += new System.EventHandler(this.FrmGoodOrBad_Load); - ((System.ComponentModel.ISupportInitialize)(this.DgvGoodBadList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label label2; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label lblWorkerNo; - private System.Windows.Forms.Label lblName; - private System.Windows.Forms.Label lblDate; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.Label label6; - private System.Windows.Forms.Label label7; - private Sunny.UI.UIComboBox CboType; - private Sunny.UI.UIDatePicker DtpDate; - private Sunny.UI.UIRichTextBox RtbGBInfo; - private Sunny.UI.UIDataGridView DgvGoodBadList; - private System.Windows.Forms.Label label1; - private Sunny.UI.UIButton btnAdd; - private Sunny.UI.UIButton btnClose; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clGBType; - private System.Windows.Forms.DataGridViewTextBoxColumn clGBInfo; - private System.Windows.Forms.DataGridViewTextBoxColumn clGBOperation; - private System.Windows.Forms.DataGridViewTextBoxColumn clGBTime; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn Column6; - private System.Windows.Forms.DataGridViewTextBoxColumn Column7; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.cs deleted file mode 100644 index dad1d5d0ef96e940a05525ad552b6b7a92f4515d..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.cs +++ /dev/null @@ -1,155 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmGoodOrBad : UIForm - { - public FrmGoodOrBad() - { - InitializeComponent(); - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void FrmGoodOrBad_Load(object sender, EventArgs e) - { - LoadGoodBadInfo(); - result = HttpHelper.Request("Base/SelectGBTypeAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectGBTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - CboType.DataSource = HttpHelper.JsonToList(result.message); - CboType.DisplayMember = "GBName"; - CboType.ValueMember = "GBTypeId"; - } - - public void LoadGoodBadInfo() - { - DgvGoodBadList.Rows.Clear(); - lblWorkerNo.Text = FrmWorkerManager.wk_WorkerNo; - lblName.Text = FrmWorkerManager.wk_WorkerName; - lblDate.Text = Convert.ToDateTime(FrmWorkerManager.wk_WorkerTime).ToString("yyyy年MM月dd日").Substring(0, 9); - dic = new Dictionary() - { - { "wn",lblWorkerNo.Text} - }; - result = HttpHelper.Request("WorkerGoodBad/SelectAllGoodBadByWorkNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectAllGoodBadByWorkNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - DgvGoodBadList.AutoGenerateColumns = false; - DgvGoodBadList.DataSource = HttpHelper.JsonToList(result.message); - } - - public bool CheckInput(WorkerGoodBad workerGoodBad) - { - if (string.IsNullOrWhiteSpace(workerGoodBad.WorkNo)) - { - return false; - } - if (string.IsNullOrWhiteSpace(workerGoodBad.GBType + "")) - { - return false; - } - if (string.IsNullOrWhiteSpace(workerGoodBad.GBInfo)) - { - return false; - } - if (string.IsNullOrWhiteSpace(workerGoodBad.GBTime + "")) - { - return false; - } - if (string.IsNullOrWhiteSpace(workerGoodBad.GBOperation)) - { - return false; - } - return true; - } - - private void btnAdd_Click(object sender, EventArgs e) - { - WorkerGoodBad goodBad = new WorkerGoodBad() - { - WorkNo = lblWorkerNo.Text, - GBType = (int)CboType.SelectedValue, - GBInfo = RtbGBInfo.Text, - GBOperation = AdminInfo.Account, - GBTime = DtpDate.Value, - datains_usr = AdminInfo.Account, - }; - if (CheckInput(goodBad)) - { - bool dr = UIMessageBox.Show("确定录入?一旦录入后将无法修改及删除,或会影响员工的晋升!", "录入警告", UIStyle.Orange, UIMessageBoxButtons.OKCancel); - if (dr) - { - result = HttpHelper.Request("WorkerGoodBad​/AddGoodBad", HttpHelper.ModelToJson(goodBad)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("AddGoodBad+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool n = result.message.ToString().Equals("true"); - if (n) - { - UIMessageBox.Show("新增成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "录入员工奖惩操作!新增值为:" + goodBad.GBInfo, 2); - #endregion - LoadGoodBadInfo(); - } - else - { - UIMessageBox.Show("或是服务器错误所致!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - } - else - { - UIMessageBox.Show("取消录入操作!", "系统提示", UIStyle.Orange, UIMessageBoxButtons.OK); - return; - } - - } - else - { - UIMessageBox.Show("信息不能为空!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - } - } - - private void btnClose_Click(object sender, EventArgs e) - { - this.Close(); - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.resx deleted file mode 100644 index d63b7cec39f2567e803727e3b43f8ca57289ca7f..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.resx +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP///6MAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7////9+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9M//////// - /0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9c/////////zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /wz/////////swAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8H/////AAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////Ov/////////7////TAAAAAAAAAAAAAAAAAAAAAD///9k////+/////8AAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7H///+nAAAAAAAA - AAAAAAAAAAAAAAAAAAD///+Z////o////5X////BAAAAAAAAAAAAAAAAAAAAAP///7////+V////pf// - /4sAAAAAAAAAAAAAAAAAAAAAAAAAAP///6v///9+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Mv// - //////+T////HAAAAAD///8i////gf////X///9I////Lv////P///9MAAAAAAAAAAD///9c////8/// - /y7///9I////9f///4H///8cAAAAAP///yL///+v/////////xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////mf///9X////////////////////H////OAAAAAAAAAAA////jf///9EAAAAAAAAAAP// - /8X///+NAAAAAAAAAAD///84////x////////////////////9v///+ZAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAD///8q/////////yr///9A////FAAAAAAAAAAAAAAAAAAAAAD///8G////6/// - /1z///9i////6////yYAAAAAAAAAAAAAAAAAAAAA////FP///0D///9O/////////xgAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+Z////xQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAD///9o////y////9f///+FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8P///+BAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xz/////////LgAAAAAAAAAAAAAAAP// - /4H///+p////0/////3///////////////3////T////qf///4EAAAAAAAAAAAAAAAD///9g////+/// - /xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4////+3AAAAAP// - /yj///+x/////////+H///+3////jf///1j///9a////k////73////p/////////6f///8W////Av// - /9X///+BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Dv// - //////+V//////////////9gAAAAAAAAAAAAAAAA////JP///yQAAAAAAAAAAAAAAAD///94//////// - //////+d////5f///xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////0f/////////d////IAAAAAD///9c////q////+P//////////////+P///+r////XAAA - AAD///8s////6/////////+tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAP///1L/////////4QAAAAD///8I////l/////////+v////gf///1T///9U////gf// - /6//////////l////wgAAAAA////4f////////8KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAD///8E////4/////////8Y////Iv/////////x////YAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAP///27//////////////yL///8Y/////////7EAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5P/////////aAAAAAD////X////1wAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////1wAAAAD///9o/////////2IAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////1////68AAAAA////ev////////8mAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///1j/////////egAAAAD///+v////pQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///xD/////////gQAAAAD////T////gQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///7v////TAAAAAP// - /4H////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////NP////////9Q////HP// - //////9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////k/// - //////8c////UP////////8eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9e//////// - /yL///9Q/////////yYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAD///9m/////////1D///8i/////////1IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /3T/////////Dv///3D/////////DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAP///0z/////////cP///w7/////////cgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////TP////////9E////NP////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////gf////////80////RP////////88AAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAD///8k/////////3j///8E////7////2wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+n////7////wT///94////+f///wYAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////v////pQAAAAD///+z////vQAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Kv////f///+zAAAAAP///6X////DAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8X////v////KP///zz/////////kQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////V/////////zz///8o////7/// - /40AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP////////+tAAAAAP// - /43/////////w////xIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8m////3/////////+NAAAAAP// - /63////T////FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////aP// - //////9oAAAAAP///4f/////////6////3T///9G////Fv///xb///9G////dP////X/////////hwAA - AAD///9o/////////zoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////yf////////9mAAAAAP///zL///+7////////////////////////////////////u/// - /zIAAAAA////bP////////96AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////2f////////+tAAAAAAAAAAD///82////bP///6X///+l////bP// - /zYAAAAA////JP///7//////////qQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////if/////////L////aP///zr///8MAAAAAAAA - AAD///8Q////Qv///3L////r////9f///2oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Ov///7H////t//////// - ///////X////1///////////////7f///7H///8uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /wL///80////ZP///6H///+h////ZP///zT///8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA/+/3///v9///5+f//+fn/+fDw+/zm9nP8DmcD/v9v9/5/j+f/eAHv/zB - gz/+H/h//jgcf/5hhn/8z/M/+Z/5v/m//Z/5P/yf+3/83/t//t/7f/7f+3/83/t//N/5P/yf+Z/5n/yP - 8T/+x+N//nAO//8eeP//j/P//+AH///+f/8= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.Designer.cs index 493c89b560f188697c4369abe8822ad79b5b3408..7c21ae0b90eebc6aac3201d553b053efa394f735 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.Designer.cs @@ -30,533 +30,494 @@ namespace EOM.TSHotelManagement.FormUI private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMySpace)); - this.label7 = new System.Windows.Forms.Label(); - this.btnUpdWorker = new Sunny.UI.UIButton(); - this.cbWorkerNation = new Sunny.UI.UIComboBox(); - this.label1 = new System.Windows.Forms.Label(); - this.cboWorkerClub = new Sunny.UI.UIComboBox(); - this.cboWorkerPosition = new Sunny.UI.UIComboBox(); - this.cboSex = new Sunny.UI.UIComboBox(); - this.txtWorkerNo = new Sunny.UI.UITextBox(); - this.txtWorkerName = new Sunny.UI.UITextBox(); - this.txtTel = new Sunny.UI.UITextBox(); - this.txtAddress = new Sunny.UI.UITextBox(); - this.label2 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.label16 = new System.Windows.Forms.Label(); - this.label30 = new System.Windows.Forms.Label(); - this.label31 = new System.Windows.Forms.Label(); - this.label32 = new System.Windows.Forms.Label(); - this.btnUpdPwd = new Sunny.UI.UIButton(); - this.lblNewMsg = new Sunny.UI.UILabel(); - this.lblOldMsg = new Sunny.UI.UILabel(); - this.lgCheckNewPwd = new Sunny.UI.UILight(); - this.lgCheckOldPwd = new Sunny.UI.UILight(); - this.txtOldPwd = new Sunny.UI.UITextBox(); - this.txtNewPwd = new Sunny.UI.UITextBox(); - this.label4 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.openPic = new System.Windows.Forms.OpenFileDialog(); - this.uiTabControlMenu2 = new Sunny.UI.UITabControlMenu(); - this.tabPage1 = new System.Windows.Forms.TabPage(); - this.tabPage2 = new System.Windows.Forms.TabPage(); - this.tabPage3 = new System.Windows.Forms.TabPage(); - this.picWorkerPic = new System.Windows.Forms.PictureBox(); - this.uiTabControlMenu2.SuspendLayout(); - this.tabPage1.SuspendLayout(); - this.tabPage2.SuspendLayout(); - this.tabPage3.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.picWorkerPic)).BeginInit(); - this.SuspendLayout(); + label7 = new Label(); + btnUpdWorker = new Sunny.UI.UIButton(); + cbWorkerNation = new Sunny.UI.UIComboBox(); + label1 = new Label(); + cboWorkerClub = new Sunny.UI.UIComboBox(); + cboWorkerPosition = new Sunny.UI.UIComboBox(); + cboSex = new Sunny.UI.UIComboBox(); + txtWorkerNo = new Sunny.UI.UITextBox(); + txtWorkerName = new Sunny.UI.UITextBox(); + txtTel = new Sunny.UI.UITextBox(); + txtAddress = new Sunny.UI.UITextBox(); + label2 = new Label(); + label5 = new Label(); + label16 = new Label(); + label30 = new Label(); + label31 = new Label(); + label32 = new Label(); + openPic = new OpenFileDialog(); + uiTabControlMenu2 = new Sunny.UI.UITabControlMenu(); + tabPage1 = new TabPage(); + tabPage2 = new TabPage(); + avatar3 = new AntdUI.Avatar(); + txtOldPassword = new AntdUI.Input(); + lblEmployeeId = new AntdUI.Label(); + avatar2 = new AntdUI.Avatar(); + avatar1 = new AntdUI.Avatar(); + btnUpdatePassword = new AntdUI.Button(); + txtNewPassword = new AntdUI.Input(); + tabPage3 = new TabPage(); + label4 = new AntdUI.Label(); + picWorkerPic = new PictureBox(); + uiTabControlMenu2.SuspendLayout(); + tabPage1.SuspendLayout(); + tabPage2.SuspendLayout(); + tabPage3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)picWorkerPic).BeginInit(); + SuspendLayout(); // // label7 // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(58, 171); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(88, 25); - this.label7.TabIndex = 131; - this.label7.Text = "联系方式"; + label7.AutoSize = true; + label7.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label7.Location = new Point(58, 171); + label7.Name = "label7"; + label7.Size = new Size(88, 25); + label7.TabIndex = 131; + label7.Text = "联系方式"; // // btnUpdWorker // - this.btnUpdWorker.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdWorker.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdWorker.Location = new System.Drawing.Point(562, 270); - this.btnUpdWorker.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdWorker.Name = "btnUpdWorker"; - this.btnUpdWorker.Radius = 20; - this.btnUpdWorker.Size = new System.Drawing.Size(109, 42); - this.btnUpdWorker.TabIndex = 130; - this.btnUpdWorker.Text = "修 改"; - this.btnUpdWorker.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnUpdWorker.Click += new System.EventHandler(this.btnUpdWorker_Click); + btnUpdWorker.Cursor = Cursors.Hand; + btnUpdWorker.Font = new Font("微软雅黑", 12F); + btnUpdWorker.Location = new Point(562, 270); + btnUpdWorker.MinimumSize = new Size(1, 1); + btnUpdWorker.Name = "btnUpdWorker"; + btnUpdWorker.Radius = 20; + btnUpdWorker.Size = new Size(109, 42); + btnUpdWorker.TabIndex = 130; + btnUpdWorker.Text = "修 改"; + btnUpdWorker.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnUpdWorker.Click += btnUpdWorker_Click; // // cbWorkerNation // - this.cbWorkerNation.DataSource = null; - this.cbWorkerNation.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cbWorkerNation.FillColor = System.Drawing.Color.White; - this.cbWorkerNation.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cbWorkerNation.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cbWorkerNation.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cbWorkerNation.Location = new System.Drawing.Point(466, 116); - this.cbWorkerNation.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cbWorkerNation.MinimumSize = new System.Drawing.Size(63, 0); - this.cbWorkerNation.Name = "cbWorkerNation"; - this.cbWorkerNation.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cbWorkerNation.Radius = 20; - this.cbWorkerNation.Size = new System.Drawing.Size(203, 35); - this.cbWorkerNation.Style = Sunny.UI.UIStyle.Custom; - this.cbWorkerNation.SymbolSize = 24; - this.cbWorkerNation.TabIndex = 129; - this.cbWorkerNation.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cbWorkerNation.Watermark = ""; - this.cbWorkerNation.SelectedIndexChanged += new System.EventHandler(this.cbWorkerNation_SelectedIndexChanged); + cbWorkerNation.DataSource = null; + cbWorkerNation.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cbWorkerNation.FillColor = Color.White; + cbWorkerNation.Font = new Font("微软雅黑", 15.75F); + cbWorkerNation.ItemHoverColor = Color.FromArgb(155, 200, 255); + cbWorkerNation.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cbWorkerNation.Location = new Point(466, 116); + cbWorkerNation.Margin = new Padding(4, 5, 4, 5); + cbWorkerNation.MinimumSize = new Size(63, 0); + cbWorkerNation.Name = "cbWorkerNation"; + cbWorkerNation.Padding = new Padding(0, 0, 30, 2); + cbWorkerNation.Radius = 20; + cbWorkerNation.Size = new Size(203, 35); + cbWorkerNation.Style = Sunny.UI.UIStyle.Custom; + cbWorkerNation.SymbolSize = 24; + cbWorkerNation.TabIndex = 129; + cbWorkerNation.TextAlignment = ContentAlignment.MiddleLeft; + cbWorkerNation.Watermark = ""; + cbWorkerNation.SelectedIndexChanged += cbWorkerNation_SelectedIndexChanged; // // label1 // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(369, 119); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(86, 25); - this.label1.TabIndex = 128; - this.label1.Text = "民 族"; + label1.AutoSize = true; + label1.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label1.Location = new Point(369, 119); + label1.Name = "label1"; + label1.Size = new Size(86, 25); + label1.TabIndex = 128; + label1.Text = "民 族"; // // cboWorkerClub // - this.cboWorkerClub.DataSource = null; - this.cboWorkerClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboWorkerClub.FillColor = System.Drawing.Color.White; - this.cboWorkerClub.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboWorkerClub.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboWorkerClub.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboWorkerClub.Location = new System.Drawing.Point(467, 12); - this.cboWorkerClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboWorkerClub.MinimumSize = new System.Drawing.Size(63, 0); - this.cboWorkerClub.Name = "cboWorkerClub"; - this.cboWorkerClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboWorkerClub.Radius = 20; - this.cboWorkerClub.ReadOnly = true; - this.cboWorkerClub.Size = new System.Drawing.Size(203, 35); - this.cboWorkerClub.Style = Sunny.UI.UIStyle.Custom; - this.cboWorkerClub.SymbolSize = 24; - this.cboWorkerClub.TabIndex = 125; - this.cboWorkerClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboWorkerClub.Watermark = ""; + cboWorkerClub.DataSource = null; + cboWorkerClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cboWorkerClub.FillColor = Color.White; + cboWorkerClub.Font = new Font("微软雅黑", 15.75F); + cboWorkerClub.ItemHoverColor = Color.FromArgb(155, 200, 255); + cboWorkerClub.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cboWorkerClub.Location = new Point(467, 12); + cboWorkerClub.Margin = new Padding(4, 5, 4, 5); + cboWorkerClub.MinimumSize = new Size(63, 0); + cboWorkerClub.Name = "cboWorkerClub"; + cboWorkerClub.Padding = new Padding(0, 0, 30, 2); + cboWorkerClub.Radius = 20; + cboWorkerClub.ReadOnly = true; + cboWorkerClub.Size = new Size(203, 35); + cboWorkerClub.Style = Sunny.UI.UIStyle.Custom; + cboWorkerClub.SymbolSize = 24; + cboWorkerClub.TabIndex = 125; + cboWorkerClub.TextAlignment = ContentAlignment.MiddleLeft; + cboWorkerClub.Watermark = ""; // // cboWorkerPosition // - this.cboWorkerPosition.DataSource = null; - this.cboWorkerPosition.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboWorkerPosition.FillColor = System.Drawing.Color.White; - this.cboWorkerPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboWorkerPosition.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboWorkerPosition.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboWorkerPosition.Location = new System.Drawing.Point(467, 64); - this.cboWorkerPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboWorkerPosition.MinimumSize = new System.Drawing.Size(63, 0); - this.cboWorkerPosition.Name = "cboWorkerPosition"; - this.cboWorkerPosition.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboWorkerPosition.Radius = 20; - this.cboWorkerPosition.ReadOnly = true; - this.cboWorkerPosition.Size = new System.Drawing.Size(203, 35); - this.cboWorkerPosition.Style = Sunny.UI.UIStyle.Custom; - this.cboWorkerPosition.SymbolSize = 24; - this.cboWorkerPosition.TabIndex = 124; - this.cboWorkerPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboWorkerPosition.Watermark = ""; + cboWorkerPosition.DataSource = null; + cboWorkerPosition.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cboWorkerPosition.FillColor = Color.White; + cboWorkerPosition.Font = new Font("微软雅黑", 15.75F); + cboWorkerPosition.ItemHoverColor = Color.FromArgb(155, 200, 255); + cboWorkerPosition.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cboWorkerPosition.Location = new Point(467, 64); + cboWorkerPosition.Margin = new Padding(4, 5, 4, 5); + cboWorkerPosition.MinimumSize = new Size(63, 0); + cboWorkerPosition.Name = "cboWorkerPosition"; + cboWorkerPosition.Padding = new Padding(0, 0, 30, 2); + cboWorkerPosition.Radius = 20; + cboWorkerPosition.ReadOnly = true; + cboWorkerPosition.Size = new Size(203, 35); + cboWorkerPosition.Style = Sunny.UI.UIStyle.Custom; + cboWorkerPosition.SymbolSize = 24; + cboWorkerPosition.TabIndex = 124; + cboWorkerPosition.TextAlignment = ContentAlignment.MiddleLeft; + cboWorkerPosition.Watermark = ""; // // cboSex // - this.cboSex.DataSource = null; - this.cboSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboSex.FillColor = System.Drawing.Color.White; - this.cboSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboSex.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboSex.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboSex.Location = new System.Drawing.Point(155, 116); - this.cboSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboSex.MinimumSize = new System.Drawing.Size(63, 0); - this.cboSex.Name = "cboSex"; - this.cboSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboSex.Radius = 20; - this.cboSex.Size = new System.Drawing.Size(203, 35); - this.cboSex.Style = Sunny.UI.UIStyle.Custom; - this.cboSex.SymbolSize = 24; - this.cboSex.TabIndex = 123; - this.cboSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboSex.Watermark = ""; + cboSex.DataSource = null; + cboSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cboSex.FillColor = Color.White; + cboSex.Font = new Font("微软雅黑", 15.75F); + cboSex.ItemHoverColor = Color.FromArgb(155, 200, 255); + cboSex.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cboSex.Location = new Point(155, 116); + cboSex.Margin = new Padding(4, 5, 4, 5); + cboSex.MinimumSize = new Size(63, 0); + cboSex.Name = "cboSex"; + cboSex.Padding = new Padding(0, 0, 30, 2); + cboSex.Radius = 20; + cboSex.Size = new Size(203, 35); + cboSex.Style = Sunny.UI.UIStyle.Custom; + cboSex.SymbolSize = 24; + cboSex.TabIndex = 123; + cboSex.TextAlignment = ContentAlignment.MiddleLeft; + cboSex.Watermark = ""; // // txtWorkerNo // - this.txtWorkerNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtWorkerNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtWorkerNo.Location = new System.Drawing.Point(156, 12); - this.txtWorkerNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtWorkerNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtWorkerNo.Name = "txtWorkerNo"; - this.txtWorkerNo.Padding = new System.Windows.Forms.Padding(5); - this.txtWorkerNo.Radius = 20; - this.txtWorkerNo.ReadOnly = true; - this.txtWorkerNo.ShowText = false; - this.txtWorkerNo.Size = new System.Drawing.Size(203, 35); - this.txtWorkerNo.Style = Sunny.UI.UIStyle.Custom; - this.txtWorkerNo.StyleCustomMode = true; - this.txtWorkerNo.TabIndex = 122; - this.txtWorkerNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtWorkerNo.Watermark = ""; + txtWorkerNo.Cursor = Cursors.IBeam; + txtWorkerNo.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtWorkerNo.Location = new Point(156, 12); + txtWorkerNo.Margin = new Padding(4, 5, 4, 5); + txtWorkerNo.MinimumSize = new Size(1, 1); + txtWorkerNo.Name = "txtWorkerNo"; + txtWorkerNo.Padding = new Padding(5); + txtWorkerNo.Radius = 20; + txtWorkerNo.ReadOnly = true; + txtWorkerNo.ShowText = false; + txtWorkerNo.Size = new Size(203, 35); + txtWorkerNo.Style = Sunny.UI.UIStyle.Custom; + txtWorkerNo.StyleCustomMode = true; + txtWorkerNo.TabIndex = 122; + txtWorkerNo.TextAlignment = ContentAlignment.MiddleLeft; + txtWorkerNo.Watermark = ""; // // txtWorkerName // - this.txtWorkerName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtWorkerName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtWorkerName.Location = new System.Drawing.Point(156, 64); - this.txtWorkerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtWorkerName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtWorkerName.Name = "txtWorkerName"; - this.txtWorkerName.Padding = new System.Windows.Forms.Padding(5); - this.txtWorkerName.Radius = 20; - this.txtWorkerName.ShowText = false; - this.txtWorkerName.Size = new System.Drawing.Size(203, 35); - this.txtWorkerName.Style = Sunny.UI.UIStyle.Custom; - this.txtWorkerName.StyleCustomMode = true; - this.txtWorkerName.TabIndex = 121; - this.txtWorkerName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtWorkerName.Watermark = ""; + txtWorkerName.Cursor = Cursors.IBeam; + txtWorkerName.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtWorkerName.Location = new Point(156, 64); + txtWorkerName.Margin = new Padding(4, 5, 4, 5); + txtWorkerName.MinimumSize = new Size(1, 1); + txtWorkerName.Name = "txtWorkerName"; + txtWorkerName.Padding = new Padding(5); + txtWorkerName.Radius = 20; + txtWorkerName.ShowText = false; + txtWorkerName.Size = new Size(203, 35); + txtWorkerName.Style = Sunny.UI.UIStyle.Custom; + txtWorkerName.StyleCustomMode = true; + txtWorkerName.TabIndex = 121; + txtWorkerName.TextAlignment = ContentAlignment.MiddleLeft; + txtWorkerName.Watermark = ""; // // txtTel // - this.txtTel.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtTel.Location = new System.Drawing.Point(156, 164); - this.txtTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtTel.MinimumSize = new System.Drawing.Size(1, 1); - this.txtTel.Name = "txtTel"; - this.txtTel.Padding = new System.Windows.Forms.Padding(5); - this.txtTel.Radius = 20; - this.txtTel.ShowText = false; - this.txtTel.Size = new System.Drawing.Size(515, 35); - this.txtTel.Style = Sunny.UI.UIStyle.Custom; - this.txtTel.StyleCustomMode = true; - this.txtTel.TabIndex = 119; - this.txtTel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtTel.Watermark = ""; + txtTel.Cursor = Cursors.IBeam; + txtTel.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtTel.Location = new Point(156, 164); + txtTel.Margin = new Padding(4, 5, 4, 5); + txtTel.MinimumSize = new Size(1, 1); + txtTel.Name = "txtTel"; + txtTel.Padding = new Padding(5); + txtTel.Radius = 20; + txtTel.ShowText = false; + txtTel.Size = new Size(515, 35); + txtTel.Style = Sunny.UI.UIStyle.Custom; + txtTel.StyleCustomMode = true; + txtTel.TabIndex = 119; + txtTel.TextAlignment = ContentAlignment.MiddleLeft; + txtTel.Watermark = ""; // // txtAddress // - this.txtAddress.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtAddress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtAddress.Location = new System.Drawing.Point(156, 216); - this.txtAddress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtAddress.MinimumSize = new System.Drawing.Size(1, 1); - this.txtAddress.Name = "txtAddress"; - this.txtAddress.Padding = new System.Windows.Forms.Padding(5); - this.txtAddress.Radius = 20; - this.txtAddress.ShowText = false; - this.txtAddress.Size = new System.Drawing.Size(515, 35); - this.txtAddress.Style = Sunny.UI.UIStyle.Custom; - this.txtAddress.StyleCustomMode = true; - this.txtAddress.TabIndex = 117; - this.txtAddress.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtAddress.Watermark = ""; + txtAddress.Cursor = Cursors.IBeam; + txtAddress.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtAddress.Location = new Point(156, 216); + txtAddress.Margin = new Padding(4, 5, 4, 5); + txtAddress.MinimumSize = new Size(1, 1); + txtAddress.Name = "txtAddress"; + txtAddress.Padding = new Padding(5); + txtAddress.Radius = 20; + txtAddress.ShowText = false; + txtAddress.Size = new Size(515, 35); + txtAddress.Style = Sunny.UI.UIStyle.Custom; + txtAddress.StyleCustomMode = true; + txtAddress.TabIndex = 117; + txtAddress.TextAlignment = ContentAlignment.MiddleLeft; + txtAddress.Watermark = ""; // // label2 // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(58, 221); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(88, 25); - this.label2.TabIndex = 115; - this.label2.Text = "居住地址"; + label2.AutoSize = true; + label2.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label2.Location = new Point(58, 221); + label2.Name = "label2"; + label2.Size = new Size(88, 25); + label2.TabIndex = 115; + label2.Text = "居住地址"; // // label5 // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(369, 69); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(88, 25); - this.label5.TabIndex = 112; - this.label5.Text = "现任职位"; + label5.AutoSize = true; + label5.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label5.Location = new Point(369, 69); + label5.Name = "label5"; + label5.Size = new Size(88, 25); + label5.TabIndex = 112; + label5.Text = "现任职位"; // // label16 // - this.label16.AutoSize = true; - this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label16.Location = new System.Drawing.Point(369, 18); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(88, 25); - this.label16.TabIndex = 111; - this.label16.Text = "所在部门"; + label16.AutoSize = true; + label16.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label16.Location = new Point(369, 18); + label16.Name = "label16"; + label16.Size = new Size(88, 25); + label16.TabIndex = 111; + label16.Text = "所在部门"; // // label30 // - this.label30.AutoSize = true; - this.label30.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label30.Location = new System.Drawing.Point(58, 119); - this.label30.Name = "label30"; - this.label30.Size = new System.Drawing.Size(86, 25); - this.label30.TabIndex = 109; - this.label30.Text = "性 别"; + label30.AutoSize = true; + label30.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label30.Location = new Point(58, 119); + label30.Name = "label30"; + label30.Size = new Size(86, 25); + label30.TabIndex = 109; + label30.Text = "性 别"; // // label31 // - this.label31.AutoSize = true; - this.label31.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label31.Location = new System.Drawing.Point(58, 69); - this.label31.Name = "label31"; - this.label31.Size = new System.Drawing.Size(88, 25); - this.label31.TabIndex = 108; - this.label31.Text = "员工姓名"; + label31.AutoSize = true; + label31.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label31.Location = new Point(58, 69); + label31.Name = "label31"; + label31.Size = new Size(88, 25); + label31.TabIndex = 108; + label31.Text = "员工姓名"; // // label32 // - this.label32.AutoSize = true; - this.label32.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label32.Location = new System.Drawing.Point(58, 18); - this.label32.Name = "label32"; - this.label32.Size = new System.Drawing.Size(88, 25); - this.label32.TabIndex = 107; - this.label32.Text = "员工编号"; - // - // btnUpdPwd - // - this.btnUpdPwd.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdPwd.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdPwd.Location = new System.Drawing.Point(277, 251); - this.btnUpdPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdPwd.Name = "btnUpdPwd"; - this.btnUpdPwd.Radius = 20; - this.btnUpdPwd.Size = new System.Drawing.Size(175, 42); - this.btnUpdPwd.TabIndex = 131; - this.btnUpdPwd.Text = "修 改"; - this.btnUpdPwd.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnUpdPwd.Click += new System.EventHandler(this.btnUpdPwd_Click); - // - // lblNewMsg - // - this.lblNewMsg.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lblNewMsg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - this.lblNewMsg.Location = new System.Drawing.Point(242, 187); - this.lblNewMsg.Name = "lblNewMsg"; - this.lblNewMsg.Size = new System.Drawing.Size(267, 23); - this.lblNewMsg.Style = Sunny.UI.UIStyle.Custom; - this.lblNewMsg.TabIndex = 130; - this.lblNewMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // lblOldMsg - // - this.lblOldMsg.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lblOldMsg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - this.lblOldMsg.Location = new System.Drawing.Point(242, 96); - this.lblOldMsg.Name = "lblOldMsg"; - this.lblOldMsg.Size = new System.Drawing.Size(267, 23); - this.lblOldMsg.Style = Sunny.UI.UIStyle.Custom; - this.lblOldMsg.TabIndex = 129; - this.lblOldMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // lgCheckNewPwd - // - this.lgCheckNewPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckNewPwd.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lgCheckNewPwd.Location = new System.Drawing.Point(532, 135); - this.lgCheckNewPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.lgCheckNewPwd.Name = "lgCheckNewPwd"; - this.lgCheckNewPwd.OnCenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckNewPwd.Radius = 35; - this.lgCheckNewPwd.Size = new System.Drawing.Size(35, 35); - this.lgCheckNewPwd.TabIndex = 128; - this.lgCheckNewPwd.Text = "uiLight2"; - this.lgCheckNewPwd.Visible = false; - // - // lgCheckOldPwd - // - this.lgCheckOldPwd.CenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckOldPwd.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lgCheckOldPwd.Location = new System.Drawing.Point(532, 47); - this.lgCheckOldPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.lgCheckOldPwd.Name = "lgCheckOldPwd"; - this.lgCheckOldPwd.OnCenterColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(248)))), ((int)(((byte)(232))))); - this.lgCheckOldPwd.Radius = 35; - this.lgCheckOldPwd.Size = new System.Drawing.Size(35, 35); - this.lgCheckOldPwd.TabIndex = 127; - this.lgCheckOldPwd.Text = "uiLight1"; - this.lgCheckOldPwd.Visible = false; - // - // txtOldPwd - // - this.txtOldPwd.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtOldPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtOldPwd.Location = new System.Drawing.Point(237, 47); - this.txtOldPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtOldPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.txtOldPwd.Name = "txtOldPwd"; - this.txtOldPwd.Padding = new System.Windows.Forms.Padding(5); - this.txtOldPwd.PasswordChar = '*'; - this.txtOldPwd.Radius = 20; - this.txtOldPwd.ShowText = false; - this.txtOldPwd.Size = new System.Drawing.Size(272, 35); - this.txtOldPwd.Style = Sunny.UI.UIStyle.Custom; - this.txtOldPwd.StyleCustomMode = true; - this.txtOldPwd.TabIndex = 126; - this.txtOldPwd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtOldPwd.Watermark = ""; - this.txtOldPwd.Validated += new System.EventHandler(this.txtOldPwd_Validated); - this.txtOldPwd.TextChanged += new System.EventHandler(this.txtOldPwd_TextChanged); - // - // txtNewPwd - // - this.txtNewPwd.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtNewPwd.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtNewPwd.Location = new System.Drawing.Point(237, 135); - this.txtNewPwd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtNewPwd.MinimumSize = new System.Drawing.Size(1, 1); - this.txtNewPwd.Name = "txtNewPwd"; - this.txtNewPwd.Padding = new System.Windows.Forms.Padding(5); - this.txtNewPwd.PasswordChar = '*'; - this.txtNewPwd.Radius = 20; - this.txtNewPwd.ShowText = false; - this.txtNewPwd.Size = new System.Drawing.Size(272, 35); - this.txtNewPwd.Style = Sunny.UI.UIStyle.Custom; - this.txtNewPwd.StyleCustomMode = true; - this.txtNewPwd.TabIndex = 125; - this.txtNewPwd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtNewPwd.Watermark = ""; - this.txtNewPwd.Validated += new System.EventHandler(this.txtNewPwd_Validated); - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label4.Location = new System.Drawing.Point(161, 139); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(69, 25); - this.label4.TabIndex = 124; - this.label4.Text = "新密码"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label6.Location = new System.Drawing.Point(161, 51); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(69, 25); - this.label6.TabIndex = 123; - this.label6.Text = "旧密码"; + label32.AutoSize = true; + label32.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label32.Location = new Point(58, 18); + label32.Name = "label32"; + label32.Size = new Size(88, 25); + label32.TabIndex = 107; + label32.Text = "员工编号"; // // openPic // - this.openPic.FileName = "openFileDialog1"; - this.openPic.Filter = "PNG文件|*.png|JPG文件|*.jpg|位图文件|*.bmp"; - this.openPic.FileOk += new System.ComponentModel.CancelEventHandler(this.openPic_FileOk); + openPic.FileName = "openFileDialog1"; + openPic.Filter = "PNG文件|*.png|JPG文件|*.jpg|位图文件|*.bmp"; + openPic.FileOk += openPic_FileOk; // // uiTabControlMenu2 // - this.uiTabControlMenu2.Alignment = System.Windows.Forms.TabAlignment.Left; - this.uiTabControlMenu2.Controls.Add(this.tabPage1); - this.uiTabControlMenu2.Controls.Add(this.tabPage2); - this.uiTabControlMenu2.Controls.Add(this.tabPage3); - this.uiTabControlMenu2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed; - this.uiTabControlMenu2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.uiTabControlMenu2.Location = new System.Drawing.Point(3, 38); - this.uiTabControlMenu2.MenuStyle = Sunny.UI.UIMenuStyle.Custom; - this.uiTabControlMenu2.Multiline = true; - this.uiTabControlMenu2.Name = "uiTabControlMenu2"; - this.uiTabControlMenu2.SelectedIndex = 0; - this.uiTabControlMenu2.Size = new System.Drawing.Size(929, 546); - this.uiTabControlMenu2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; - this.uiTabControlMenu2.TabBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.uiTabControlMenu2.TabIndex = 15; - this.uiTabControlMenu2.TabSelectedColor = System.Drawing.Color.Snow; + uiTabControlMenu2.Alignment = TabAlignment.Left; + uiTabControlMenu2.Controls.Add(tabPage1); + uiTabControlMenu2.Controls.Add(tabPage2); + uiTabControlMenu2.Controls.Add(tabPage3); + uiTabControlMenu2.DrawMode = TabDrawMode.OwnerDrawFixed; + uiTabControlMenu2.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); + uiTabControlMenu2.Location = new Point(3, 38); + uiTabControlMenu2.MenuStyle = Sunny.UI.UIMenuStyle.Custom; + uiTabControlMenu2.Multiline = true; + uiTabControlMenu2.Name = "uiTabControlMenu2"; + uiTabControlMenu2.SelectedIndex = 0; + uiTabControlMenu2.Size = new Size(929, 546); + uiTabControlMenu2.SizeMode = TabSizeMode.Fixed; + uiTabControlMenu2.TabBackColor = Color.FromArgb(235, 243, 255); + uiTabControlMenu2.TabIndex = 15; + uiTabControlMenu2.TabSelectedColor = Color.Snow; // // tabPage1 // - this.tabPage1.Controls.Add(this.label7); - this.tabPage1.Controls.Add(this.label32); - this.tabPage1.Controls.Add(this.btnUpdWorker); - this.tabPage1.Controls.Add(this.label31); - this.tabPage1.Controls.Add(this.cbWorkerNation); - this.tabPage1.Controls.Add(this.label30); - this.tabPage1.Controls.Add(this.label1); - this.tabPage1.Controls.Add(this.label16); - this.tabPage1.Controls.Add(this.cboWorkerClub); - this.tabPage1.Controls.Add(this.label5); - this.tabPage1.Controls.Add(this.cboWorkerPosition); - this.tabPage1.Controls.Add(this.label2); - this.tabPage1.Controls.Add(this.cboSex); - this.tabPage1.Controls.Add(this.txtAddress); - this.tabPage1.Controls.Add(this.txtWorkerNo); - this.tabPage1.Controls.Add(this.txtTel); - this.tabPage1.Controls.Add(this.txtWorkerName); - this.tabPage1.Location = new System.Drawing.Point(201, 0); - this.tabPage1.Name = "tabPage1"; - this.tabPage1.Size = new System.Drawing.Size(728, 546); - this.tabPage1.TabIndex = 0; - this.tabPage1.Text = "个人信息"; - this.tabPage1.UseVisualStyleBackColor = true; + tabPage1.Controls.Add(label7); + tabPage1.Controls.Add(label32); + tabPage1.Controls.Add(btnUpdWorker); + tabPage1.Controls.Add(label31); + tabPage1.Controls.Add(cbWorkerNation); + tabPage1.Controls.Add(label30); + tabPage1.Controls.Add(label1); + tabPage1.Controls.Add(label16); + tabPage1.Controls.Add(cboWorkerClub); + tabPage1.Controls.Add(label5); + tabPage1.Controls.Add(cboWorkerPosition); + tabPage1.Controls.Add(label2); + tabPage1.Controls.Add(cboSex); + tabPage1.Controls.Add(txtAddress); + tabPage1.Controls.Add(txtWorkerNo); + tabPage1.Controls.Add(txtTel); + tabPage1.Controls.Add(txtWorkerName); + tabPage1.Location = new Point(201, 0); + tabPage1.Name = "tabPage1"; + tabPage1.Size = new Size(728, 546); + tabPage1.TabIndex = 0; + tabPage1.Text = "个人信息"; + tabPage1.UseVisualStyleBackColor = true; // // tabPage2 // - this.tabPage2.Controls.Add(this.btnUpdPwd); - this.tabPage2.Controls.Add(this.label6); - this.tabPage2.Controls.Add(this.lblNewMsg); - this.tabPage2.Controls.Add(this.label4); - this.tabPage2.Controls.Add(this.lblOldMsg); - this.tabPage2.Controls.Add(this.txtNewPwd); - this.tabPage2.Controls.Add(this.lgCheckNewPwd); - this.tabPage2.Controls.Add(this.txtOldPwd); - this.tabPage2.Controls.Add(this.lgCheckOldPwd); - this.tabPage2.Location = new System.Drawing.Point(201, 0); - this.tabPage2.Name = "tabPage2"; - this.tabPage2.Size = new System.Drawing.Size(728, 546); - this.tabPage2.TabIndex = 1; - this.tabPage2.Text = "账号安全"; - this.tabPage2.UseVisualStyleBackColor = true; + tabPage2.Controls.Add(avatar3); + tabPage2.Controls.Add(txtOldPassword); + tabPage2.Controls.Add(lblEmployeeId); + tabPage2.Controls.Add(avatar2); + tabPage2.Controls.Add(avatar1); + tabPage2.Controls.Add(btnUpdatePassword); + tabPage2.Controls.Add(txtNewPassword); + tabPage2.Location = new Point(201, 0); + tabPage2.Name = "tabPage2"; + tabPage2.Size = new Size(728, 546); + tabPage2.TabIndex = 1; + tabPage2.Text = "账号安全"; + tabPage2.UseVisualStyleBackColor = true; + // + // avatar3 + // + avatar3.Image = (Image)resources.GetObject("avatar3.Image"); + avatar3.ImageFit = AntdUI.TFit.None; + avatar3.Location = new Point(224, 204); + avatar3.Name = "avatar3"; + avatar3.Size = new Size(45, 43); + avatar3.TabIndex = 47; + avatar3.Text = "a"; + // + // txtOldPassword + // + txtOldPassword.BackColor = Color.White; + txtOldPassword.Font = new Font("Microsoft YaHei UI", 14F); + txtOldPassword.Location = new Point(267, 201); + txtOldPassword.Name = "txtOldPassword"; + txtOldPassword.PasswordChar = '*'; + txtOldPassword.PasswordCopy = true; + txtOldPassword.PlaceholderColorExtend = ""; + txtOldPassword.PlaceholderText = ""; + txtOldPassword.Size = new Size(238, 52); + txtOldPassword.TabIndex = 46; + // + // lblEmployeeId + // + lblEmployeeId.Location = new Point(267, 131); + lblEmployeeId.Name = "lblEmployeeId"; + lblEmployeeId.Size = new Size(238, 43); + lblEmployeeId.TabIndex = 45; + lblEmployeeId.Text = ""; + lblEmployeeId.TextAlign = ContentAlignment.MiddleCenter; + // + // avatar2 + // + avatar2.Image = (Image)resources.GetObject("avatar2.Image"); + avatar2.ImageFit = AntdUI.TFit.None; + avatar2.Location = new Point(224, 284); + avatar2.Name = "avatar2"; + avatar2.Size = new Size(45, 43); + avatar2.TabIndex = 44; + avatar2.Text = "a"; + // + // avatar1 + // + avatar1.Image = (Image)resources.GetObject("avatar1.Image"); + avatar1.ImageFit = AntdUI.TFit.None; + avatar1.Location = new Point(224, 131); + avatar1.Name = "avatar1"; + avatar1.Size = new Size(45, 43); + avatar1.TabIndex = 43; + avatar1.Text = "a"; + // + // btnUpdatePassword + // + btnUpdatePassword.Font = new Font("Microsoft YaHei UI", 12F); + btnUpdatePassword.Location = new Point(277, 358); + btnUpdatePassword.Name = "btnUpdatePassword"; + btnUpdatePassword.Radius = 8; + btnUpdatePassword.Shape = AntdUI.TShape.Round; + btnUpdatePassword.Size = new Size(191, 57); + btnUpdatePassword.TabIndex = 42; + btnUpdatePassword.Text = "修改密码"; + btnUpdatePassword.Type = AntdUI.TTypeMini.Primary; + btnUpdatePassword.Click += btnUpdatePassword_Click; + // + // txtNewPassword + // + txtNewPassword.BackColor = Color.White; + txtNewPassword.Font = new Font("Microsoft YaHei UI", 14F); + txtNewPassword.Location = new Point(267, 280); + txtNewPassword.Name = "txtNewPassword"; + txtNewPassword.PasswordChar = '*'; + txtNewPassword.PasswordCopy = true; + txtNewPassword.PlaceholderColorExtend = ""; + txtNewPassword.PlaceholderText = ""; + txtNewPassword.Size = new Size(238, 52); + txtNewPassword.TabIndex = 41; // // tabPage3 // - this.tabPage3.Controls.Add(this.picWorkerPic); - this.tabPage3.Location = new System.Drawing.Point(201, 0); - this.tabPage3.Name = "tabPage3"; - this.tabPage3.Size = new System.Drawing.Size(728, 546); - this.tabPage3.TabIndex = 2; - this.tabPage3.Text = "账号头像"; - this.tabPage3.UseVisualStyleBackColor = true; + tabPage3.Controls.Add(label4); + tabPage3.Controls.Add(picWorkerPic); + tabPage3.Location = new Point(201, 0); + tabPage3.Name = "tabPage3"; + tabPage3.Size = new Size(728, 546); + tabPage3.TabIndex = 2; + tabPage3.Text = "账号头像"; + tabPage3.UseVisualStyleBackColor = true; + // + // label4 + // + label4.Location = new Point(257, 416); + label4.Name = "label4"; + label4.Size = new Size(215, 23); + label4.TabIndex = 1; + label4.Text = "Tips:头像大小不能超过1MB"; // // picWorkerPic // - this.picWorkerPic.Location = new System.Drawing.Point(286, 62); - this.picWorkerPic.Name = "picWorkerPic"; - this.picWorkerPic.Size = new System.Drawing.Size(157, 179); - this.picWorkerPic.TabIndex = 0; - this.picWorkerPic.TabStop = false; + picWorkerPic.BackgroundImage = Properties.Resources.账号; + picWorkerPic.BackgroundImageLayout = ImageLayout.Stretch; + picWorkerPic.Location = new Point(257, 150); + picWorkerPic.Name = "picWorkerPic"; + picWorkerPic.Size = new Size(215, 246); + picWorkerPic.SizeMode = PictureBoxSizeMode.StretchImage; + picWorkerPic.TabIndex = 0; + picWorkerPic.TabStop = false; + picWorkerPic.Click += picWorkerPic_Click; // // FrmMySpace // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.ClientSize = new System.Drawing.Size(937, 589); - this.Controls.Add(this.uiTabControlMenu2); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmMySpace"; - this.ShowTitleIcon = true; - this.Text = "个人中心"; - this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 873, 587); - this.Load += new System.EventHandler(this.FrmMySpace_Load); - this.uiTabControlMenu2.ResumeLayout(false); - this.tabPage1.ResumeLayout(false); - this.tabPage1.PerformLayout(); - this.tabPage2.ResumeLayout(false); - this.tabPage2.PerformLayout(); - this.tabPage3.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.picWorkerPic)).EndInit(); - this.ResumeLayout(false); - + AutoScaleMode = AutoScaleMode.None; + ClientSize = new Size(937, 589); + Controls.Add(uiTabControlMenu2); + Icon = (Icon)resources.GetObject("$this.Icon"); + MaximizeBox = false; + MinimizeBox = false; + Name = "FrmMySpace"; + ShowTitleIcon = true; + Text = "个人中心"; + ZoomScaleRect = new Rectangle(15, 15, 873, 587); + Load += FrmMySpace_Load; + uiTabControlMenu2.ResumeLayout(false); + tabPage1.ResumeLayout(false); + tabPage1.PerformLayout(); + tabPage2.ResumeLayout(false); + tabPage3.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)picWorkerPic).EndInit(); + ResumeLayout(false); } #endregion @@ -575,16 +536,7 @@ namespace EOM.TSHotelManagement.FormUI private System.Windows.Forms.Label label30; private System.Windows.Forms.Label label31; private System.Windows.Forms.Label label32; - private Sunny.UI.UITextBox txtOldPwd; - private Sunny.UI.UITextBox txtNewPwd; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label6; private Sunny.UI.UIButton btnUpdWorker; - private Sunny.UI.UILight lgCheckNewPwd; - private Sunny.UI.UILight lgCheckOldPwd; - private Sunny.UI.UILabel lblOldMsg; - private Sunny.UI.UILabel lblNewMsg; - private Sunny.UI.UIButton btnUpdPwd; private System.Windows.Forms.Label label7; private System.Windows.Forms.OpenFileDialog openPic; private Sunny.UI.UITabControlMenu uiTabControlMenu2; @@ -592,5 +544,13 @@ namespace EOM.TSHotelManagement.FormUI private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.TabPage tabPage3; private System.Windows.Forms.PictureBox picWorkerPic; + private AntdUI.Label label4; + private AntdUI.Label lblEmployeeId; + private AntdUI.Avatar avatar2; + private AntdUI.Avatar avatar1; + private AntdUI.Button btnUpdatePassword; + private AntdUI.Input txtNewPassword; + private AntdUI.Avatar avatar3; + private AntdUI.Input txtOldPassword; } } \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.cs index 65c0bdc9a19de956037d1abb84ff3328b5dd9598..d71c19dcae81d08434784fc5a694a6a9ab252288 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.cs @@ -22,13 +22,14 @@ * */ +using AntdUI; using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; +using EOM.TSHotelManagement.Common.Util; using jvncorelib.EncryptorLib; using jvncorelib.EntityLib; using Sunny.UI; using System.ComponentModel; -using System.Text.RegularExpressions; namespace EOM.TSHotelManagement.FormUI { @@ -43,213 +44,142 @@ namespace EOM.TSHotelManagement.FormUI private void FrmMySpace_Load(object sender, EventArgs e) { //加载民族信息 - Dictionary dic = new Dictionary(); - dic.Add("delete_mk", "0"); - var result = HttpHelper.Request("Base/SelectNationAll", dic); - if (result.statusCode != 200) + Dictionary dic = new Dictionary { - UIMessageBox.ShowError("SelectNationAll+接口服务异常,请提交Issue或尝试更新版本!"); + { nameof(ReadNationInputDto.IsDelete), "0" }, + { nameof(ReadNationInputDto.IgnorePaging), "true" } + }; + var result = HttpHelper.Request(ApiConstants.Base_SelectNationAll, dic); + var nations = HttpHelper.JsonToModel>(result.message); + if (nations.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Base_SelectNationAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - cbWorkerNation.DataSource = HttpHelper.JsonToList(result.message); - cbWorkerNation.DisplayMember = "nation_name"; - cbWorkerNation.ValueMember = "nation_no"; + cbWorkerNation.DataSource = nations.listSource; + cbWorkerNation.DisplayMember = nameof(ReadNationOutputDto.NationName); + cbWorkerNation.ValueMember = nameof(ReadNationOutputDto.NationNumber); //加载性别信息 - dic = new Dictionary(); - dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectSexTypeAll", dic); - if (result.statusCode != 200) + dic = new Dictionary { - UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); + { nameof(ReadGenderTypeInputDto.IsDelete) , "0" }, + { nameof(ReadGenderTypeInputDto.IgnorePaging) , "true" } + }; + result = HttpHelper.Request(ApiConstants.Base_SelectGenderTypeAll, dic); + var genderTypes = HttpHelper.JsonToModel>(result.message); + if (genderTypes.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Base_SelectGenderTypeAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - cboSex.DataSource = HttpHelper.JsonToList(result.message); - cboSex.DisplayMember = "sexName"; - cboSex.ValueMember = "sexId"; + cboSex.DataSource = genderTypes.listSource; + cboSex.DisplayMember = nameof(ReadGenderTypeOutputDto.Description); + cboSex.ValueMember = nameof(ReadGenderTypeOutputDto.Id); //加载部门信息 - result = HttpHelper.Request("Base/SelectDeptAllCanUse"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectDeptAllCanUse); + var depts = HttpHelper.JsonToModel>(result.message); + if (depts.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectDeptAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectDeptAllCanUse}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - cboWorkerClub.DataSource = HttpHelper.JsonToList(result.message); - cboWorkerClub.DisplayMember = "dept_name"; - cboWorkerClub.ValueMember = "dept_no"; + cboWorkerClub.DataSource = depts.listSource; + cboWorkerClub.DisplayMember = nameof(ReadDepartmentOutputDto.DepartmentName); + cboWorkerClub.ValueMember = nameof(ReadDepartmentOutputDto.DepartmentNumber); //加载职位信息 - dic = new Dictionary(); - dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectPositionAll", dic); - if (result.statusCode != 200) + dic = new Dictionary + { + { nameof(ReadPositionInputDto.IsDelete), "0" }, + { nameof(ReadPositionInputDto.IgnorePaging), "true" } + }; + result = HttpHelper.Request(ApiConstants.Base_SelectPositionAll, dic); + var positions = HttpHelper.JsonToModel>(result.message); + if (positions.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectPositionAll+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectPositionAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - cboWorkerPosition.DataSource = HttpHelper.JsonToList(result.message); - cboWorkerPosition.DisplayMember = "position_name"; - cboWorkerPosition.ValueMember = "position_no"; - LoadData(); - } + cboWorkerPosition.DataSource = positions.listSource; + cboWorkerPosition.DisplayMember = nameof(ReadPositionOutputDto.PositionName); + cboWorkerPosition.ValueMember = nameof(ReadPositionOutputDto.PositionNumber); - private void tpSecurity_Click(object sender, EventArgs e) - { + lblEmployeeId.Text = LoginInfo.WorkerNo; + txtOldPassword.PlaceholderText = LocalizationHelper.GetLocalizedString("Please input old password", "请输入旧密码"); + txtNewPassword.PlaceholderText = LocalizationHelper.GetLocalizedString("Please input new password", "请输入新密码"); + LoadData(); } public void LoadData() { - var dic = new Dictionary(); - dic.Add("workerId", LoginInfo.WorkerNo); - var result = HttpHelper.Request("Worker/SelectWorkerInfoByWorkerId", dic); - if (result.statusCode != 200) + var dic = new Dictionary { - UIMessageBox.ShowError("SelectWorkerInfoByWorkerId+接口服务异常,请提交Issue或尝试更新版本!"); + { nameof(ReadEmployeeInputDto.EmployeeId) , LoginInfo.WorkerNo } + }; + var result = HttpHelper.Request(ApiConstants.Employee_SelectEmployeeInfoByEmployeeId, dic); + var employees = HttpHelper.JsonToModel>(result.message); + if (employees.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Employee_SelectEmployeeInfoByEmployeeId}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - Worker worker = HttpHelper.JsonToModel(result.message); + ReadEmployeeOutputDto worker = employees.Source; if (!worker.IsNullOrEmpty()) { - txtWorkerNo.Text = worker.WorkerId; - txtWorkerName.Text = worker.WorkerName; - cboSex.SelectedIndex = worker.WorkerSex; + txtWorkerNo.Text = worker.EmployeeId; + txtWorkerName.Text = worker.EmployeeName; + cboSex.SelectedIndex = worker.Gender; cboWorkerPosition.Text = worker.PositionName; - cboWorkerPosition.SelectedValue = worker.WorkerPosition; - cboWorkerClub.Text = worker.ClubName; - cboWorkerClub.SelectedValue = worker.WorkerClub; - cbWorkerNation.Text = worker.NationName; - cbWorkerNation.SelectedValue = worker.WorkerNation; - txtAddress.Text = worker.WorkerAddress; - txtTel.Text = worker.WorkerTel; - } - dic = new Dictionary(); - dic.Add("WorkerId", LoginInfo.WorkerNo); - result = HttpHelper.Request("WorkerPicture/WorkerPic", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("WorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); - return; + cboWorkerPosition.SelectedValue = worker.Position; + cboWorkerClub.Text = worker.DepartmentName; + cboWorkerClub.SelectedValue = worker.Department; + cbWorkerNation.Text = worker.EthnicityName; + cbWorkerNation.SelectedValue = worker.Ethnicity; + txtAddress.Text = worker.Address; + txtTel.Text = worker.PhoneNumber; } - var workerPicSource = HttpHelper.JsonToModel(result.message); - if (workerPicSource != null && !string.IsNullOrEmpty(workerPicSource.Pic)) + dic = new Dictionary { - EncryptLib encryptLib = new EncryptLib(); - picWorkerPic.BackgroundImage = null; - picWorkerPic.LoadAsync(encryptLib.Decryption(HttpHelper.baseUrl) + workerPicSource.Pic); - } - } - - private void txtOldPwd_TextChanged(object sender, EventArgs e) - { - if (txtOldPwd.TextLength < 6) - { - lgCheckOldPwd.Visible = true; - lgCheckOldPwd.OnColor = Color.Red; - } - } - - private void txtOldPwd_Validated(object sender, EventArgs e) - { - //校验旧密码是否正确 - Worker worker = new Worker() { WorkerId = LoginInfo.WorkerNo, WorkerPwd = txtOldPwd.Text.Trim() }; - var result = HttpHelper.Request("Worker/SelectWorkerInfoByWorkerIdAndWorkerPwd", HttpHelper.ModelToJson(worker)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectWorkerInfoByWorkerIdAndWorkerPwd+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - worker = HttpHelper.JsonToModel(result.message); - if (worker != null) - { - lgCheckOldPwd.Visible = true; - lgCheckOldPwd.OnColor = Color.Green; - lblOldMsg.ForeColor = Color.Green; - lblOldMsg.Text = "旧密码符合,请继续填写新密码!"; - txtNewPwd.ReadOnly = false; - txtNewPwd.Validated += new EventHandler(txtNewPwd_Validated); - } - else - { - lgCheckOldPwd.Visible = true; - lgCheckOldPwd.OnColor = Color.Red; - lblOldMsg.ForeColor = Color.Red; - lblOldMsg.Text = "旧密码有误,请重试!"; - txtNewPwd.ReadOnly = true; - txtNewPwd.Validated -= new EventHandler(txtNewPwd_Validated); - - } - } - - private void txtNewPwd_Validated(object sender, EventArgs e) - { - string pattern = @"^[A-Za-z0-9]+$"; - Regex regex = new Regex(pattern); - if (regex.IsMatch(txtNewPwd.Text.Trim()) && txtNewPwd.TextLength > 8) - { - lblNewMsg.ForeColor = Color.Green; - lblNewMsg.Text = "密码长度及格式符合要求!"; - lgCheckNewPwd.Visible = true; - lgCheckNewPwd.OnColor = Color.Green; - return; - - } - else - { - lblNewMsg.ForeColor = Color.Red; - lblNewMsg.Text = "密码长度及格式不符合要求,请检查!"; - lgCheckNewPwd.Visible = true; - txtNewPwd.Focus(); - lgCheckNewPwd.OnColor = Color.Red; - return; - } - } - - private void btnUpdPwd_Click(object sender, EventArgs e) - { - var result = HttpHelper.Request("Worker/UpdWorkerPwdByWorkNo", HttpHelper.ModelToJson(new Worker { WorkerId = LoginInfo.WorkerNo, WorkerPwd = txtNewPwd.Text.Trim() })); - if (result.statusCode != 200) + { nameof(ReadEmployeePhotoInputDto.EmployeeId) , LoginInfo.WorkerNo } + }; + result = HttpHelper.Request(ApiConstants.EmployeePhoto_EmployeePhoto, dic); + var workerPic = HttpHelper.JsonToModel>(result.message); + if (workerPic.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("UpdWorkerPwdByWorkNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.EmployeePhoto_EmployeePhoto}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - bool tf = result.message.ToString().Equals("true") ? true : false; - if (!tf) + var workerPicSource = workerPic.Source; + if (workerPicSource != null && !string.IsNullOrEmpty(workerPicSource.PhotoPath)) { - UIMessageBox.Show("服务器繁忙,修改失败!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; + picWorkerPic.BackgroundImage = null; + if (!string.IsNullOrEmpty(workerPicSource.PhotoPath)) picWorkerPic.Load(workerPicSource.PhotoPath); } - - UIMessageBox.Show("修改成功,系统将在稍后退出,请使用新密码进行登录系统!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "修改密码操作!", 2); - #endregion - FrmMain.CloseMy(); - this.Close(); - return; } - public bool CheckInput(Worker worker) + public bool CheckInput(UpdateEmployeeInputDto worker) { - if (string.IsNullOrWhiteSpace(worker.WorkerId)) + if (string.IsNullOrWhiteSpace(worker.EmployeeId)) { return false; } - if (string.IsNullOrWhiteSpace(worker.WorkerName)) + if (string.IsNullOrWhiteSpace(worker.EmployeeName)) { return false; } - if (string.IsNullOrWhiteSpace(worker.WorkerSex + "")) + if (string.IsNullOrWhiteSpace(worker.Gender + "")) { return false; } - if (string.IsNullOrWhiteSpace(worker.WorkerNation)) + if (string.IsNullOrWhiteSpace(worker.Ethnicity)) { return false; } - if (string.IsNullOrWhiteSpace(worker.WorkerTel)) + if (string.IsNullOrWhiteSpace(worker.PhoneNumber)) { return false; } - if (string.IsNullOrWhiteSpace(worker.WorkerAddress)) + if (string.IsNullOrWhiteSpace(worker.Address)) { return false; } @@ -258,34 +188,30 @@ namespace EOM.TSHotelManagement.FormUI ResponseMsg result = new ResponseMsg(); private void btnUpdWorker_Click(object sender, EventArgs e) { - Worker worker = new Worker() + UpdateEmployeeInputDto worker = new UpdateEmployeeInputDto() { - WorkerId = txtWorkerNo.Text.Trim(), - WorkerName = txtWorkerName.Text.Trim(), - WorkerSex = cboSex.Text == "男" ? 1 : 0, - WorkerNation = cbWorkerNation.SelectedValue.ToString(), - WorkerTel = txtTel.Text.Trim(), - WorkerAddress = txtAddress.Text.Trim(), - datachg_usr = LoginInfo.WorkerNo + EmployeeId = txtWorkerNo.Text.Trim(), + EmployeeName = txtWorkerName.Text.Trim(), + Gender = cboSex.Text == "男" ? 1 : 0, + Ethnicity = cbWorkerNation.SelectedValue.ToString(), + PhoneNumber = txtTel.Text.Trim(), + Address = txtAddress.Text.Trim(), + DataChgUsr = LoginInfo.WorkerNo, + DataChgDate = DateTime.Now }; if (CheckInput(worker)) { - result = HttpHelper.Request("Worker/UpdateWorker", HttpHelper.ModelToJson(worker)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateWorker+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool tf = result.message.ToString().Equals("true") ? true : false; - if (!tf) + result = HttpHelper.Request(ApiConstants.Employee_UpdateEmployee, HttpHelper.ModelToJson(worker)); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.Show("修改失败!服务器处于繁忙,请稍后再试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + UIMessageBox.ShowError($"{ApiConstants.Employee_UpdateEmployee}+接口服务异常,请提交Issue或尝试更新版本!"); return; } UIMessageBox.Show("修改成功!", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "修改个人信息操作!", 2); + RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "修改个人信息操作!", Common.Core.LogLevel.Warning); #endregion LoadData(); return; @@ -303,33 +229,28 @@ namespace EOM.TSHotelManagement.FormUI private void openPic_FileOk(object sender, CancelEventArgs e) { - WorkerPic workerPic = null; - //查询当前账号是否已存在对应的图片,如果已存在则移除旧图片 - workerPic = new WorkerPic + var dic = new Dictionary { - WorkerId = txtWorkerNo.Text.Trim(), + { nameof(ReadEmployeePhotoInputDto.EmployeeId) , LoginInfo.WorkerNo } }; - Dictionary dic = new Dictionary(); - dic.Add("WorkerId", txtWorkerNo.Text.Trim()); - result = HttpHelper.Request("WorkerPicture/WorkerPic", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.EmployeePhoto_EmployeePhoto, dic); + var workerPic = HttpHelper.JsonToModel>(result.message); + if (workerPic.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("WorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.EmployeePhoto_EmployeePhoto}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - var source = HttpHelper.JsonToModel(result.message); - if (!source.IsNullOrEmpty()) + var workerPicSource = workerPic.Source; + if (!workerPicSource.IsNullOrEmpty() && !string.IsNullOrEmpty(workerPicSource.PhotoPath)) { - result = HttpHelper.Request("WorkerPicture/DeleteWorkerPic", HttpHelper.ModelToJson(workerPic)); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.EmployeePhoto_DeleteWorkerPhoto, HttpHelper.ModelToJson(workerPic)); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("DeleteWorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.EmployeePhoto_DeleteWorkerPhoto}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - if (result.message.ToString().Equals("true")) - { - PicHandler(); - } + PicHandler(); } else { @@ -340,25 +261,51 @@ namespace EOM.TSHotelManagement.FormUI public void PicHandler() { - var serverPath = encryptLib.Decryption(HttpHelper.postUrl); - //var serverPath = ConfigurationManager.AppSettings["post"].ToString(); - var result = HttpHelper.UpLoadFile(openPic.FileName, serverPath); - var workerPic = new WorkerPic + Dictionary additionalParams = new Dictionary { - WorkerId = txtWorkerNo.Text.Trim(), - Pic = result.Trim(), + { nameof(CreateEmployeePhotoInputDto.EmployeeId), txtWorkerNo.Text.Trim() } }; - var requestResult = HttpHelper.Request("WorkerPicture/InsertWorkerPic", HttpHelper.ModelToJson(workerPic)); - if (requestResult.statusCode != 200) + + var workerPic = new CreateEmployeePhotoInputDto { - UIMessageBox.ShowError("InsertWorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); + EmployeeId = txtWorkerNo.Text.Trim(), + PhotoUrl = null, + }; + var requestResult = HttpHelper.UploadFile(ApiConstants.EmployeePhoto_InsertWorkerPhoto, openPic.FileName, additionalParams); + var response = HttpHelper.JsonToModel>(requestResult.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{response.Message}:{ApiConstants.EmployeePhoto_InsertWorkerPhoto}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - picWorkerPic.BackgroundImage = null; - picWorkerPic.LoadAsync(encryptLib.Decryption(HttpHelper.baseUrl) + result.Trim()); UIMessageTip.ShowOk("头像上传成功!稍等将会加载头像哦.."); - //picWorkerPic.LoadAsync(ConfigurationManager.AppSettings["FileSite"] + result.Trim()); + picWorkerPic.Load(response.Source.PhotoPath); } + private void btnUpdatePassword_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(txtOldPassword.Text) || string.IsNullOrEmpty(txtNewPassword.Text)) + { + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("Please input new password or old password", "请输入旧密码或新密码"), TType.Error); + return; + } + + var request = HttpHelper.Request(ApiConstants.Employee_UpdateEmployeeAccountPassword, HttpHelper.ModelToJson(new UpdateEmployeeInputDto + { + EmployeeId = LoginInfo.WorkerNo, + OldPassword = txtOldPassword.Text.Trim(), + Password = txtNewPassword.Text.Trim(), + DataChgDate = DateTime.Now, + DataChgUsr = LoginInfo.WorkerNo + })); + var response = HttpHelper.JsonToModel(request.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString($"{ApiConstants.Employee_UpdateEmployeeAccountPassword}+Interface service exception, please submit an issue or try updating the version!", $"{ApiConstants.Employee_UpdateEmployeeAccountPassword}+接口服务异常,请提交Issue或尝试更新版本!")); + return; + } + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("Update password success", "更新密码成功"), TType.Success); + return; + } } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.resx index 325478a80651e8bafb3eaa7d562e9cc89a289205..962430fd9866e5e33f0bab916bc3df5ed0b09fc9 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.resx +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.resx @@ -1,17 +1,17 @@  - @@ -121,6 +121,42 @@ 17, 17 + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAATBJREFUWEfl + l8ENgzAMRVkAxAgdpaMwRFP12E0YpaNwzBitHIXWNSY/wUGo6pN8QHYcYyc2NM0v0t/8qbv6exDnx9b5 + ob/4s7SrDm3cOv/onH+uyEQ2cl0V6C2VDTWZKDNyvQlKL9+EsjCnPGZliOX4ZKJmSb7Snng7GYTUb0Kk + fpR6CdmwTA1SXwx3KHUa4YawUkl9MeFQFaaUlSx7zSol6Z/hZ0bqitkSQGnZkvxnALzPswDoMNJzjswH + NwROknUlY8fji2tLelaAQVNL9KtZvYEw5BRV5wRvuVn1KoT7PzwA1T80MAL9QwMj0D80MAL9QwMj0D80 + MAL9QwMj0D80MAL98y9f1cAIDkC04uTQKGTRijXf0mgvSc6ZmIV9x7E2BzjvP53lR4ZNEj80h/ICfjHx + PxFMstQAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAATBJREFUWEfl + l8ENgzAMRVkAxAgdpaMwRFP12E0YpaNwzBitHIXWNSY/wUGo6pN8QHYcYyc2NM0v0t/8qbv6exDnx9b5 + ob/4s7SrDm3cOv/onH+uyEQ2cl0V6C2VDTWZKDNyvQlKL9+EsjCnPGZliOX4ZKJmSb7Snng7GYTUb0Kk + fpR6CdmwTA1SXwx3KHUa4YawUkl9MeFQFaaUlSx7zSol6Z/hZ0bqitkSQGnZkvxnALzPswDoMNJzjswH + NwROknUlY8fji2tLelaAQVNL9KtZvYEw5BRV5wRvuVn1KoT7PzwA1T80MAL9QwMj0D80MAL9QwMj0D80 + MAL9QwMj0D80MAL98y9f1cAIDkC04uTQKGTRijXf0mgvSc6ZmIV9x7E2BzjvP53lR4ZNEj80h/ICfjHx + PxFMstQAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAg1JREFUWEe1 + VrtKA0EUTZmkERStxEfhT1iIra3+QFo7s4pEURL9AUEQQfDR2wkWVkkhCDZ2WlikESbZoAmILyKM3GVn + c/eYye7sbA6cIpuZ+753biZjgeyamMFvQwUpzDuikiuKas4R0medfucdcT5UgzzFPaU61ukc3rUGeCxH + S43W0nG7tnLWeVg4fHue23fraAjKSAyufGSzIY5uv8X9i5TIvZtPObHdbKuzqUQiuyEWlcDpsvuESpFX + j79ycrf5paJA91GmEXhYSTgq7MeTu59eKoqiijJjgypaCdq5/mihokGcP3i1r4WsIwqm3iuuXr4HUUic + BuprJQQVRJGnwcaAoO9NI0AdERjgiALKjgXeAeQRKhnEUAqSTkdehMunnX9KBpEVoUS5RvDmvCPkVNnt + xo0C957qCGUagadhtuJG1kJoBth6r8C7gYwgD1ExGcY9JyaufoRXC/AYEcdKDTm+1Qh9U0zlHeDwC7KG + ivqwm18XF3jfCjH3AKT9XqAJvdp+KpRjOkODps+W5DGxEXwGmAgLVjYwGs9FAnc+04r22zfYkozmQUi5 + xXvuRzEwItabwAePdynpHPcB8qJTwb03DbsOvCYi6yiN0CMgFfoo8A0oVr4MECuyfObb5h7B06B1jluJ + /9mCF6O2DoI8pZh/BT7YtDNBRUB7wBLKQa18NUbTzr+Cko/f/wBMTh9auuIjhwAAAABJRU5ErkJggg== + + AAABAAEAICAAAAEAGACFAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.Designer.cs deleted file mode 100644 index 81eb27bee66ea96429b83ad0b992341fc3f50efd..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.Designer.cs +++ /dev/null @@ -1,314 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmNation - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmNation)); - this.btnDeleteNation = new Sunny.UI.UIButton(); - this.btnUpdateNation = new Sunny.UI.UIButton(); - this.btnAddNation = new Sunny.UI.UIButton(); - this.label7 = new System.Windows.Forms.Label(); - this.txtNationName = new Sunny.UI.UITextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.txtNationNo = new Sunny.UI.UITextBox(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeleteMk = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clNationName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clNationNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.dgvNationList = new Sunny.UI.UIDataGridView(); - ((System.ComponentModel.ISupportInitialize)(this.dgvNationList)).BeginInit(); - this.SuspendLayout(); - // - // btnDeleteNation - // - this.btnDeleteNation.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnDeleteNation.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnDeleteNation.Location = new System.Drawing.Point(823, 419); - this.btnDeleteNation.MinimumSize = new System.Drawing.Size(1, 1); - this.btnDeleteNation.Name = "btnDeleteNation"; - this.btnDeleteNation.Radius = 20; - this.btnDeleteNation.Size = new System.Drawing.Size(165, 33); - this.btnDeleteNation.TabIndex = 206; - this.btnDeleteNation.Text = "删除民族"; - this.btnDeleteNation.Click += new System.EventHandler(this.btnDeleteNation_Click); - // - // btnUpdateNation - // - this.btnUpdateNation.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdateNation.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdateNation.Location = new System.Drawing.Point(823, 374); - this.btnUpdateNation.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdateNation.Name = "btnUpdateNation"; - this.btnUpdateNation.Radius = 20; - this.btnUpdateNation.Size = new System.Drawing.Size(165, 33); - this.btnUpdateNation.TabIndex = 205; - this.btnUpdateNation.Text = "更新民族"; - this.btnUpdateNation.Click += new System.EventHandler(this.btnUpdateNation_Click); - // - // btnAddNation - // - this.btnAddNation.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAddNation.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAddNation.Location = new System.Drawing.Point(823, 329); - this.btnAddNation.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAddNation.Name = "btnAddNation"; - this.btnAddNation.Radius = 20; - this.btnAddNation.Size = new System.Drawing.Size(165, 33); - this.btnAddNation.TabIndex = 204; - this.btnAddNation.Text = "新增民族"; - this.btnAddNation.Click += new System.EventHandler(this.btnAddNation_Click); - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(861, 247); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(85, 19); - this.label7.TabIndex = 203; - this.label7.Text = "民族名称"; - // - // txtNationName - // - this.txtNationName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtNationName.FillColor = System.Drawing.Color.White; - this.txtNationName.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtNationName.Location = new System.Drawing.Point(823, 278); - this.txtNationName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtNationName.Maximum = 2147483647D; - this.txtNationName.Minimum = -2147483648D; - this.txtNationName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtNationName.Name = "txtNationName"; - this.txtNationName.Padding = new System.Windows.Forms.Padding(5); - this.txtNationName.Radius = 20; - this.txtNationName.Size = new System.Drawing.Size(165, 29); - this.txtNationName.StyleCustomMode = true; - this.txtNationName.TabIndex = 202; - this.txtNationName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(861, 175); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(85, 19); - this.label20.TabIndex = 201; - this.label20.Text = "民族编号"; - // - // txtNationNo - // - this.txtNationNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtNationNo.FillColor = System.Drawing.Color.White; - this.txtNationNo.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtNationNo.Location = new System.Drawing.Point(823, 206); - this.txtNationNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtNationNo.Maximum = 2147483647D; - this.txtNationNo.Minimum = -2147483648D; - this.txtNationNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtNationNo.Name = "txtNationNo"; - this.txtNationNo.Padding = new System.Windows.Forms.Padding(5); - this.txtNationNo.Radius = 20; - this.txtNationNo.ReadOnly = true; - this.txtNationNo.Size = new System.Drawing.Size(165, 29); - this.txtNationNo.StyleCustomMode = true; - this.txtNationNo.TabIndex = 200; - this.txtNationNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "datachg_date"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_date"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_usr"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // clDeleteMk - // - this.clDeleteMk.DataPropertyName = "delete_mk"; - this.clDeleteMk.HeaderText = "Column1"; - this.clDeleteMk.Name = "clDeleteMk"; - this.clDeleteMk.ReadOnly = true; - this.clDeleteMk.Visible = false; - // - // clNationName - // - this.clNationName.DataPropertyName = "nation_name"; - this.clNationName.HeaderText = "民族名称"; - this.clNationName.Name = "clNationName"; - this.clNationName.ReadOnly = true; - // - // clNationNo - // - this.clNationNo.DataPropertyName = "nation_no"; - this.clNationNo.HeaderText = "民族编号"; - this.clNationNo.Name = "clNationNo"; - this.clNationNo.ReadOnly = true; - // - // dgvNationList - // - this.dgvNationList.AllowUserToAddRows = false; - this.dgvNationList.AllowUserToDeleteRows = false; - this.dgvNationList.AllowUserToResizeColumns = false; - this.dgvNationList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255))))); - this.dgvNationList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvNationList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvNationList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvNationList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvNationList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvNationList.ColumnHeadersHeight = 32; - this.dgvNationList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvNationList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clNationNo, - this.clNationName, - this.clDeleteMk, - this.Column2, - this.Column3, - this.Column4, - this.Column5}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvNationList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvNationList.EnableHeadersVisualStyles = false; - this.dgvNationList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvNationList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvNationList.Location = new System.Drawing.Point(5, 38); - this.dgvNationList.MultiSelect = false; - this.dgvNationList.Name = "dgvNationList"; - this.dgvNationList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvNationList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvNationList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvNationList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvNationList.RowTemplate.Height = 29; - this.dgvNationList.SelectedIndex = -1; - this.dgvNationList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvNationList.Size = new System.Drawing.Size(788, 582); - this.dgvNationList.TabIndex = 199; - this.dgvNationList.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvNationList_CellMouseClick); - // - // FrmNation - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.btnDeleteNation); - this.Controls.Add(this.btnUpdateNation); - this.Controls.Add(this.btnAddNation); - this.Controls.Add(this.label7); - this.Controls.Add(this.txtNationName); - this.Controls.Add(this.label20); - this.Controls.Add(this.txtNationNo); - this.Controls.Add(this.dgvNationList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmNation"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "民族类型维护"; - this.Load += new System.EventHandler(this.FrmNation_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvNationList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UIButton btnDeleteNation; - private Sunny.UI.UIButton btnUpdateNation; - private Sunny.UI.UIButton btnAddNation; - private System.Windows.Forms.Label label7; - private Sunny.UI.UITextBox txtNationName; - private System.Windows.Forms.Label label20; - private Sunny.UI.UITextBox txtNationNo; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeleteMk; - private System.Windows.Forms.DataGridViewTextBoxColumn clNationName; - private System.Windows.Forms.DataGridViewTextBoxColumn clNationNo; - private Sunny.UI.UIDataGridView dgvNationList; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.cs deleted file mode 100644 index 98466e04976b4ffe43b4c482bb5dcd228e91ec99..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.cs +++ /dev/null @@ -1,180 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -//using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmNation : UIForm - { - - public delegate void OperationInfo(); - - public static OperationInfo reload; - - public FrmNation() - { - InitializeComponent(); - reload = ReloadNationList; - } - - List nations = null; - public static string info = null; - private void FrmNation_Load(object sender, EventArgs e) - { - ReloadNationList(); - } - - ResponseMsg result = new ResponseMsg(); - Dictionary dic = null; - - public void ReloadNationList() - { - txtNationNo.Text = ApplicationUtil.GetListNewId("N", 3, 1, "-").FirstOrDefault(); - - result = HttpHelper.Request("Base/SelectNationAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectNationAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - nations = HttpHelper.JsonToList(result.message); - dgvNationList.AutoGenerateColumns = false; - dgvNationList.DataSource = nations; - } - - private void btnAddNation_Click(object sender, EventArgs e) - { - if (txtNationName.Text.Trim().IsNullOrEmpty()) - { - UIMessageTip.ShowWarning("民族名称为空,请检查", 1500); - txtNationName.Focus(); - return; - } - var nat = new Nation() - { - nation_no = txtNationNo.Text.Trim(), - nation_name = txtNationName.Text.Trim(), - delete_mk = 0, - datains_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/AddNation", HttpHelper.ModelToJson(nat)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("AddNation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - UIMessageTip.ShowOk("添加民族成功!", 1500); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "新增民族类型操作!新增值为:" + nat.nation_no, 2); - #endregion - ReloadNationList(); - return; - } - - private void btnUpdateNation_Click(object sender, EventArgs e) - { - if (dgvNationList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的民族数据,请检查", 1500); - return; - } - var nat = new Nation() - { - nation_no = txtNationNo.Text.Trim(), - nation_name = txtNationName.Text.Trim(), - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/UpdNation", HttpHelper.ModelToJson(nat)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("UpdNation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - } - - private void btnDeleteNation_Click(object sender, EventArgs e) - { - if (dgvNationList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的民族数据,请检查", 1500); - return; - } - var nat = new Nation() - { - nation_no = txtNationNo.Text.Trim(), - nation_name = txtNationName.Text.Trim(), - delete_mk = 1, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/DelNation", HttpHelper.ModelToJson(nat)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("DelNation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - UIMessageTip.ShowOk("删除成功!"); - ReloadNationList(); - return; - } - - private void dgvNationList_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) - { - txtNationNo.Text = dgvNationList.SelectedRows[0].Cells["clNationNo"].Value.ToString(); - txtNationName.Text = dgvNationList.SelectedRows[0].Cells["clNationName"].Value.ToString(); - if (dgvNationList.SelectedRows[0].Cells["clDeleteMk"].Value.ToString() == "1") - { - btnDeleteNation.Text = "恢复民族"; - btnDeleteNation.FillColor = Color.Green; - btnDeleteNation.Click += btnRecoveryNation_Click; - } - } - - private void btnRecoveryNation_Click(object sender, EventArgs e) - { - if (dgvNationList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的民族数据,请检查", 1500); - return; - } - var nat = new Nation() - { - nation_no = txtNationNo.Text.Trim(), - nation_name = txtNationName.Text.Trim(), - delete_mk = 0, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/UpdNation", HttpHelper.ModelToJson(nat)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("UpdNation+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - ReloadNationList(); - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.resx deleted file mode 100644 index e119f49abb986660097abe4596e6c64549773011..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.resx +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGACnAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABPElEQVRYR2NgGAWj - IUBkCPz//18AiBWA2ACIHYCYhUitlCsDWoYB/v379xOItwAlGoC0OeW24DEBajvI13AMtNQHiOuBeAdI - HkhPopkjYA7AZQHQ8nQgfggNETmqO4SQA0AWAi1XBeLdQHwJqN6Gqo4gxgFQR7ADHTAXqP4DkK4C4mQg - dgdFHUUOItYBMEugCfMpUsqlrwOQfUuq47GGFCWGUKIX7hhKDKFE7+BzADBFTwTi/UA8H4hbiclu1AwB - kFlngBZ3A/FOIH4BLQG3ANnhuLIZNR2AkZWAFgcB8RIg/g7Ep4HYEt0hNHUAzDKgxYpAPBuI3wBx8IBl - Q6DlZdBo2QRklwDZAXQJAWQfAy32BuKlUIeASsMzdC+KKSr3sWmmSjBS4qpRBwyGEGigOCVTkgZG9Y6G - AC1DAACmE9+CTlteYQAAAABJRU5ErkJggg== - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.Designer.cs deleted file mode 100644 index dd4de228a78f97a04ab7c14e6593037b2708b805..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.Designer.cs +++ /dev/null @@ -1,101 +0,0 @@ - -namespace EOM.TSHotelManager.FormUI -{ - partial class FrmNotice - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmNotice)); - this.label5 = new System.Windows.Forms.Label(); - this.rtbNoticeContent = new KSharpEditor.KEditor(); - this.dgvNoticeList = new Sunny.UI.UIListBox(); - this.SuspendLayout(); - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(38, 43); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(131, 33); - this.label5.TabIndex = 110; - this.label5.Text = "历史公告"; - // - // rtbNoticeContent - // - this.rtbNoticeContent.Enabled = false; - this.rtbNoticeContent.Html = "

 

"; - this.rtbNoticeContent.KEditorEventListener = null; - this.rtbNoticeContent.Location = new System.Drawing.Point(206, 38); - this.rtbNoticeContent.Name = "rtbNoticeContent"; - this.rtbNoticeContent.Size = new System.Drawing.Size(796, 582); - this.rtbNoticeContent.TabIndex = 112; - // - // dgvNoticeList - // - this.dgvNoticeList.FillColor = System.Drawing.Color.White; - this.dgvNoticeList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvNoticeList.HoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.dgvNoticeList.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvNoticeList.Location = new System.Drawing.Point(4, 84); - this.dgvNoticeList.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dgvNoticeList.MinimumSize = new System.Drawing.Size(1, 1); - this.dgvNoticeList.Name = "dgvNoticeList"; - this.dgvNoticeList.Padding = new System.Windows.Forms.Padding(2); - this.dgvNoticeList.ShowText = false; - this.dgvNoticeList.Size = new System.Drawing.Size(195, 534); - this.dgvNoticeList.TabIndex = 113; - this.dgvNoticeList.Text = "uiListBox1"; - this.dgvNoticeList.Click += new System.EventHandler(this.dgvNoticeList_ItemClick); - // - // FrmNotice - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.dgvNoticeList); - this.Controls.Add(this.rtbNoticeContent); - this.Controls.Add(this.label5); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmNotice"; - this.ShowTitleIcon = true; - this.Text = "历史公告"; - this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 1005, 623); - this.Load += new System.EventHandler(this.FrmNotice_Load); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label label5; - private KSharpEditor.KEditor rtbNoticeContent; - private Sunny.UI.UIListBox dgvNoticeList; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.cs deleted file mode 100644 index ec28e6a1ed56e0e00bcc5b2710865e231b291534..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.cs +++ /dev/null @@ -1,79 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 咖啡与网络(java-and-net) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManager.Common.Core; -using Sunny.UI; -using SYS.Common; -using System; -using System.Collections.Generic; -using System.Linq; - -namespace EOM.TSHotelManager.FormUI -{ - public partial class FrmNotice : UIForm - { - public FrmNotice() - { - InitializeComponent(); - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void FrmNotice_Load(object sender, EventArgs e) - { - result = HttpHelper.Request("Notice/SelectNoticeAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectNoticeAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List notices = HttpHelper.JsonToList(result.message); - notices.ForEach(source => - { - dgvNoticeList.Items.Add(source.NoticeNo + ":" + source.Noticetheme); - }); - } - - private void dgvNoticeList_ItemClick(object sender, EventArgs e) - { - //根据:来分割字符串并返回第一项数据即为公告编号 - var str = dgvNoticeList.SelectedItem.ToString().Split(":").First(); - dic = new Dictionary() - { - { "noticeId",str} - }; - result = HttpHelper.Request("Notice/SelectNoticeByNoticeNo", null, dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectNoticeAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - Notice notice = HttpHelper.JsonToModel(result.message); - if (notice != null) - { - rtbNoticeContent.Html = notice.NoticeContent; - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.resx deleted file mode 100644 index e10fc1388e6e3a1cfa7ca3338db279b04d21698f..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.resx +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGAC6AgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACT0lEQVRYR+2XP2sU - URTF9wNYKBIkGCFgIyFFIBZiZeEnCAnYaCESCBLLgKQwhfoRBBuFVBIL04YggoWFBBut/VNbhEAipNn1 - d+6eN8xkZ3cys1mJkAMn795zz5t3ZnY3m7TO8F+g3W5/EN1WotPprMnPesvScPDFOm4roQDyg/oB2LTT - 3TsyLPqocsjhO9ZdBNMTUF1G5k+OEl046hXWfFQ55OAChddbvXS3lcgFyF4C1V3pHwTQIfKDkwmApM1x - MWYT1AusT+EL+AZuw1X0ybw/7RHcC/UDJKDfj0sMAJ63LDPekgGtfgDK7E5gPFZmu/AZvBwbDPq7cMue - nyyFj6B6zcDxA7CmN9OGftDrUY+HEWguL6PsMPoVew/gnOWhA0j7Da+EycjNC3eLfk8i63tLzQLIrN6I - z3KYjH4BBGabGrDeVC+PetA4QCBMxqAAaAsa4Fl33yiANhUYJmNQAIH5IfyiWp6utUaAKqQArPOWCkD/ - AX+pxhYBtCeG/WDTcQPcsX+P5bblDOif4IFq5vUDUF6jfgxfxbAEzJa85zu8bln6mPXP6imbPQHa9PV8 - zlIP8K/Ab3DKkjT9ata1HqinbBxg0dqypVIwzx8+BRVoH16SxiWavweQ4imgP7TUF3jicPlB9o6nHirA - JNpHzYD+AMnuNgH9Avoj2HO4QN88gIB8Hv2d5oI88Dl8DeNLSKD+w9LzWUcbLkACs+xbLw+0r3AVXrW1 - ACwnEyABz0U4DW/ACct9USvAKFEZAMNLGP+IjIJkmPVRZzgNaLX+ApLAor7CZ5DTAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.Designer.cs deleted file mode 100644 index cb37e74c8a0915804c13db86d734564c939ad5b7..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.Designer.cs +++ /dev/null @@ -1,268 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmOperation - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOperation)); - this.dgvOperationlog = new Sunny.UI.UIDataGridView(); - this.clOperationTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clSoftwareVersion = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clOperationlog = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clOperationAccount = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clOperationLevel = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.btnPg = new Sunny.UI.UIPagination(); - ((System.ComponentModel.ISupportInitialize)(this.dgvOperationlog)).BeginInit(); - this.SuspendLayout(); - // - // dgvOperationlog - // - this.dgvOperationlog.AllowUserToAddRows = false; - this.dgvOperationlog.AllowUserToDeleteRows = false; - this.dgvOperationlog.AllowUserToResizeColumns = false; - this.dgvOperationlog.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvOperationlog.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvOperationlog.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvOperationlog.BackgroundColor = System.Drawing.Color.White; - this.dgvOperationlog.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvOperationlog.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvOperationlog.ColumnHeadersHeight = 32; - this.dgvOperationlog.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvOperationlog.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clOperationTime, - this.clSoftwareVersion, - this.clOperationlog, - this.clOperationAccount, - this.Column1, - this.Column2, - this.Column3, - this.Column4, - this.Column5, - this.clOperationLevel, - this.Column6}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvOperationlog.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvOperationlog.EnableHeadersVisualStyles = false; - this.dgvOperationlog.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvOperationlog.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvOperationlog.Location = new System.Drawing.Point(3, 39); - this.dgvOperationlog.MultiSelect = false; - this.dgvOperationlog.Name = "dgvOperationlog"; - this.dgvOperationlog.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvOperationlog.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvOperationlog.RowHeadersVisible = false; - this.dgvOperationlog.RowHeadersWidth = 72; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvOperationlog.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvOperationlog.RowTemplate.Height = 29; - this.dgvOperationlog.SelectedIndex = -1; - this.dgvOperationlog.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvOperationlog.Size = new System.Drawing.Size(998, 522); - this.dgvOperationlog.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvOperationlog.TabIndex = 1; - // - // clOperationTime - // - this.clOperationTime.DataPropertyName = "OperationTime"; - this.clOperationTime.HeaderText = "操作时间"; - this.clOperationTime.MinimumWidth = 9; - this.clOperationTime.Name = "clOperationTime"; - this.clOperationTime.ReadOnly = true; - // - // clSoftwareVersion - // - this.clSoftwareVersion.DataPropertyName = "SoftwareVersion"; - this.clSoftwareVersion.HeaderText = "软件版本"; - this.clSoftwareVersion.MinimumWidth = 9; - this.clSoftwareVersion.Name = "clSoftwareVersion"; - this.clSoftwareVersion.ReadOnly = true; - // - // clOperationlog - // - this.clOperationlog.DataPropertyName = "LogContent"; - this.clOperationlog.HeaderText = "操作日志"; - this.clOperationlog.MinimumWidth = 9; - this.clOperationlog.Name = "clOperationlog"; - this.clOperationlog.ReadOnly = true; - // - // clOperationAccount - // - this.clOperationAccount.DataPropertyName = "OperationAccount"; - this.clOperationAccount.HeaderText = "操作人"; - this.clOperationAccount.MinimumWidth = 9; - this.clOperationAccount.Name = "clOperationAccount"; - this.clOperationAccount.ReadOnly = true; - // - // Column1 - // - this.Column1.DataPropertyName = "delete_mk"; - this.Column1.HeaderText = "Column1"; - this.Column1.MinimumWidth = 9; - this.Column1.Name = "Column1"; - this.Column1.ReadOnly = true; - this.Column1.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_usr"; - this.Column2.HeaderText = "Column2"; - this.Column2.MinimumWidth = 9; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_date"; - this.Column3.HeaderText = "Column3"; - this.Column3.MinimumWidth = 9; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.MinimumWidth = 9; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.MinimumWidth = 9; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // clOperationLevel - // - this.clOperationLevel.DataPropertyName = "OperationLevelNm"; - this.clOperationLevel.HeaderText = "日志级别"; - this.clOperationLevel.MinimumWidth = 9; - this.clOperationLevel.Name = "clOperationLevel"; - this.clOperationLevel.ReadOnly = true; - // - // Column6 - // - this.Column6.DataPropertyName = "OperationLevel"; - this.Column6.HeaderText = "Column6"; - this.Column6.MinimumWidth = 9; - this.Column6.Name = "Column6"; - this.Column6.ReadOnly = true; - this.Column6.Visible = false; - // - // btnPg - // - this.btnPg.ButtonInterval = 5; - this.btnPg.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnPg.Location = new System.Drawing.Point(4, 575); - this.btnPg.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.btnPg.MinimumSize = new System.Drawing.Size(1, 1); - this.btnPg.Name = "btnPg"; - this.btnPg.PageSize = 15; - this.btnPg.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; - this.btnPg.ShowText = false; - this.btnPg.Size = new System.Drawing.Size(997, 34); - this.btnPg.TabIndex = 121; - this.btnPg.Text = null; - this.btnPg.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.btnPg.PageChanged += new Sunny.UI.UIPagination.OnPageChangeEventHandler(this.btnPg_PageChanged); - // - // FrmOperation - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.btnPg); - this.Controls.Add(this.dgvOperationlog); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmOperation"; - this.ShowTitleIcon = true; - this.Text = "员工操作日志"; - this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 1005, 623); - this.Load += new System.EventHandler(this.FrmOperation_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvOperationlog)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private Sunny.UI.UIDataGridView dgvOperationlog; - private System.Windows.Forms.DataGridViewTextBoxColumn clOperationTime; - private System.Windows.Forms.DataGridViewTextBoxColumn clSoftwareVersion; - private System.Windows.Forms.DataGridViewTextBoxColumn clOperationlog; - private System.Windows.Forms.DataGridViewTextBoxColumn clOperationAccount; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn clOperationLevel; - private System.Windows.Forms.DataGridViewTextBoxColumn Column6; - private Sunny.UI.UIPagination btnPg; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.cs deleted file mode 100644 index e0aadd292673454c1918e502f9840dd0533a53b9..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.cs +++ /dev/null @@ -1,85 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmOperation : UIForm - { - public FrmOperation() - { - InitializeComponent(); - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void FrmOperation_Load(object sender, EventArgs e) - { - this.btnPg.PageSize = 15; - LoadOperationLog(); - } - - private void LoadOperationLog() - { - dic = new Dictionary() - { - { "pageIndex","1"}, - { "pageSize","15"} - }; - result = HttpHelper.Request("App/SelectOperationlogAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectOperationlogAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - OSelectAllDto operationlog = HttpHelper.JsonToModel>(result.message); - this.btnPg.TotalCount = operationlog.total; - this.dgvOperationlog.AutoGenerateColumns = false; - this.dgvOperationlog.DataSource = operationlog.listSource; - } - - private void btnPg_PageChanged(object sender, object pagingSource, int pageIndex, int count) - { - dic = new Dictionary() - { - { "pageIndex",pageIndex.ToString()}, - { "pageSize",count.ToString()} - }; - result = HttpHelper.Request("App/SelectOperationlogAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectOperationlogAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - OSelectAllDto operationlog = HttpHelper.JsonToModel>(result.message); - this.btnPg.TotalCount = operationlog.total; - this.dgvOperationlog.AutoGenerateColumns = false; - this.dgvOperationlog.DataSource = operationlog.listSource; - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.resx deleted file mode 100644 index 16d084a31e33b4ac79a46c3e505f6e6a1c248cc0..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.resx +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGAAfAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACtElEQVRYR+2XO2gU - YRSFtxAEQVAQxEZEF1cULKKlQrCwsF+wMJDGB4JgITYWbiWIbSJKLCSNsGCCFrYBtRCJSNDCQgiI4gML - RayEXb9z58zOPmbXnVnLfHBz5577mH/IzPyzlQ26abfbjVar9RpfCPc0PKYcDKjHtMmoe1xxuIq3HjJt - aWzUo0bNsFQcDRAOC0PrKgt46bA4yenLL4CT75c5LI7PX3oBE+Pz9yyAK6pij6Xj13GzTv1/dBLhMOCk - 89Lw3yKZMNnjNgwP71/AsuV6uhjzz0VQf5C6phaPPVPsVD7J3IEF3JSGn3d8OoqA45ko6gK54dwXLH2s - m/qjGBu+iCgFhwHhkUSNAVPS8Ncd/8IucrjqeE2+G7QV9zx3vKw4l+gAhx1ouisd/9CStMUozoHcJdw0 - fkne9TXss/OXY0g/SgqHHZD20vRBOfwFa1s4fmptwZr2kRX8NsX9kLvh+nVLvSgpHPZA01nl8B+xqrWp - aEhIr3SXfB7k9KL67frBPcOJ3AUImh+45L4lafcwvR/2WBoJtXPJiHbTUoYToxZwCPuqGvwZy4Wg77j7 - X1nKUEI4zIVG3WAa8A7baXls6Km5f/A+UEI47EDxZmQ932HE8XLCz7lkbGjb7t6fljKUEA4DCk9hn5zK - o9C3A/Wb1MTMP5YylBAOAwoXpOFf4GbxM9gd7A2mm6/oAnZ43ndLGUoIhwGF6Wb0BKtZLg0zqp733lKG - EsJhQHiAYl19wPFVp0pB/1HPGf8poHgrFv8KwfEadgUr/BTQnn47LlnKUEI4HICmE9gjl2mIdrxb2GGX - jAWt2if2OcxIxg5fQAolxxhwO6lOIF7ETrqkHAxIf5CMdWdTt5uea/gf0ZVQ/muJYbHPj+CcSweg9zym - nbD8DxOhAQxKv2T6mWz4BrlUKn8Ba/iixBMATzQAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.Designer.cs deleted file mode 100644 index 3d9c8125f6f51b8bde648ba0737c89b018774db7..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.Designer.cs +++ /dev/null @@ -1,66 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmPleaseWait - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.lblScroll = new Sunny.UI.UIScrollingText(); - this.SuspendLayout(); - // - // lblScroll - // - this.lblScroll.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.lblScroll.Font = new System.Drawing.Font("微软雅黑", 12F); - this.lblScroll.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.lblScroll.Interval = 800; - this.lblScroll.Location = new System.Drawing.Point(154, 290); - this.lblScroll.MinimumSize = new System.Drawing.Size(1, 1); - this.lblScroll.Name = "lblScroll"; - this.lblScroll.Offset = 20; - this.lblScroll.Size = new System.Drawing.Size(693, 42); - this.lblScroll.TabIndex = 34; - this.lblScroll.Text = "功能即将上线,敬请期待..."; - // - // FrmPleaseWait - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1001, 623); - this.Controls.Add(this.lblScroll); - this.Name = "FrmPleaseWait"; - this.Text = "功能即将上线,敬请期待..."; - this.Load += new System.EventHandler(this.FrmPleaseWait_Load); - this.ResumeLayout(false); - - } - - #endregion - - private Sunny.UI.UIScrollingText lblScroll; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.cs deleted file mode 100644 index d365569a754998da8f36eaa17fa065e21e4bd812..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.cs +++ /dev/null @@ -1,40 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmPleaseWait : UIForm - { - public FrmPleaseWait() - { - InitializeComponent(); - } - - private void FrmPleaseWait_Load(object sender, EventArgs e) - { - - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.resx deleted file mode 100644 index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.Designer.cs deleted file mode 100644 index 1d932cdc228adf5418f558bb4b9741899b22ce3c..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.Designer.cs +++ /dev/null @@ -1,316 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmPosition - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPosition)); - this.btnDeletePosition = new Sunny.UI.UIButton(); - this.btnUpdatePosition = new Sunny.UI.UIButton(); - this.btnAddPosition = new Sunny.UI.UIButton(); - this.label7 = new System.Windows.Forms.Label(); - this.txtPositionName = new Sunny.UI.UITextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.txtPositionNo = new Sunny.UI.UITextBox(); - this.dgvPositionList = new Sunny.UI.UIDataGridView(); - this.clPositionNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clPositionName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeleteMk = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dgvPositionList)).BeginInit(); - this.SuspendLayout(); - // - // btnDeletePosition - // - this.btnDeletePosition.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnDeletePosition.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnDeletePosition.Location = new System.Drawing.Point(821, 419); - this.btnDeletePosition.MinimumSize = new System.Drawing.Size(1, 1); - this.btnDeletePosition.Name = "btnDeletePosition"; - this.btnDeletePosition.Radius = 20; - this.btnDeletePosition.Size = new System.Drawing.Size(165, 33); - this.btnDeletePosition.TabIndex = 214; - this.btnDeletePosition.Text = "删除职位"; - this.btnDeletePosition.Click += new System.EventHandler(this.btnDeletePosition_Click); - // - // btnUpdatePosition - // - this.btnUpdatePosition.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdatePosition.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdatePosition.Location = new System.Drawing.Point(821, 374); - this.btnUpdatePosition.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdatePosition.Name = "btnUpdatePosition"; - this.btnUpdatePosition.Radius = 20; - this.btnUpdatePosition.Size = new System.Drawing.Size(165, 33); - this.btnUpdatePosition.TabIndex = 213; - this.btnUpdatePosition.Text = "更新职位"; - this.btnUpdatePosition.Click += new System.EventHandler(this.btnUpdatePosition_Click); - // - // btnAddPosition - // - this.btnAddPosition.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAddPosition.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAddPosition.Location = new System.Drawing.Point(821, 329); - this.btnAddPosition.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAddPosition.Name = "btnAddPosition"; - this.btnAddPosition.Radius = 20; - this.btnAddPosition.Size = new System.Drawing.Size(165, 33); - this.btnAddPosition.TabIndex = 212; - this.btnAddPosition.Text = "新增职位"; - this.btnAddPosition.Click += new System.EventHandler(this.btnAddPosition_Click); - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(859, 247); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(85, 19); - this.label7.TabIndex = 211; - this.label7.Text = "职位名称"; - // - // txtPositionName - // - this.txtPositionName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtPositionName.FillColor = System.Drawing.Color.White; - this.txtPositionName.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtPositionName.Location = new System.Drawing.Point(821, 278); - this.txtPositionName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtPositionName.Maximum = 2147483647D; - this.txtPositionName.Minimum = -2147483648D; - this.txtPositionName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtPositionName.Name = "txtPositionName"; - this.txtPositionName.Padding = new System.Windows.Forms.Padding(5); - this.txtPositionName.Radius = 20; - this.txtPositionName.Size = new System.Drawing.Size(165, 29); - this.txtPositionName.Style = Sunny.UI.UIStyle.Custom; - this.txtPositionName.StyleCustomMode = true; - this.txtPositionName.TabIndex = 210; - this.txtPositionName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(859, 175); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(85, 19); - this.label20.TabIndex = 209; - this.label20.Text = "职位编号"; - // - // txtPositionNo - // - this.txtPositionNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtPositionNo.FillColor = System.Drawing.Color.White; - this.txtPositionNo.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtPositionNo.Location = new System.Drawing.Point(821, 206); - this.txtPositionNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtPositionNo.Maximum = 2147483647D; - this.txtPositionNo.Minimum = -2147483648D; - this.txtPositionNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtPositionNo.Name = "txtPositionNo"; - this.txtPositionNo.Padding = new System.Windows.Forms.Padding(5); - this.txtPositionNo.Radius = 20; - this.txtPositionNo.ReadOnly = true; - this.txtPositionNo.Size = new System.Drawing.Size(165, 29); - this.txtPositionNo.Style = Sunny.UI.UIStyle.Custom; - this.txtPositionNo.StyleCustomMode = true; - this.txtPositionNo.TabIndex = 208; - this.txtPositionNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // dgvPositionList - // - this.dgvPositionList.AllowUserToAddRows = false; - this.dgvPositionList.AllowUserToDeleteRows = false; - this.dgvPositionList.AllowUserToResizeColumns = false; - this.dgvPositionList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvPositionList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvPositionList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvPositionList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvPositionList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvPositionList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvPositionList.ColumnHeadersHeight = 32; - this.dgvPositionList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvPositionList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clPositionNo, - this.clPositionName, - this.clDeleteMk, - this.Column2, - this.Column3, - this.Column4, - this.Column5}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvPositionList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvPositionList.EnableHeadersVisualStyles = false; - this.dgvPositionList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvPositionList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvPositionList.Location = new System.Drawing.Point(3, 38); - this.dgvPositionList.MultiSelect = false; - this.dgvPositionList.Name = "dgvPositionList"; - this.dgvPositionList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvPositionList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvPositionList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvPositionList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvPositionList.RowTemplate.Height = 29; - this.dgvPositionList.SelectedIndex = -1; - this.dgvPositionList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvPositionList.Size = new System.Drawing.Size(788, 582); - this.dgvPositionList.TabIndex = 207; - this.dgvPositionList.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvPositionList_CellMouseClick); - // - // clPositionNo - // - this.clPositionNo.DataPropertyName = "position_no"; - this.clPositionNo.HeaderText = "职位编号"; - this.clPositionNo.Name = "clPositionNo"; - this.clPositionNo.ReadOnly = true; - // - // clPositionName - // - this.clPositionName.DataPropertyName = "position_name"; - this.clPositionName.HeaderText = "职位名称"; - this.clPositionName.Name = "clPositionName"; - this.clPositionName.ReadOnly = true; - // - // clDeleteMk - // - this.clDeleteMk.DataPropertyName = "delete_mk"; - this.clDeleteMk.HeaderText = "Column1"; - this.clDeleteMk.Name = "clDeleteMk"; - this.clDeleteMk.ReadOnly = true; - this.clDeleteMk.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_usr"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_date"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "datachg_date"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // FrmPosition - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.btnDeletePosition); - this.Controls.Add(this.btnUpdatePosition); - this.Controls.Add(this.btnAddPosition); - this.Controls.Add(this.label7); - this.Controls.Add(this.txtPositionName); - this.Controls.Add(this.label20); - this.Controls.Add(this.txtPositionNo); - this.Controls.Add(this.dgvPositionList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmPosition"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "职位类型维护"; - this.Load += new System.EventHandler(this.FrmPosition_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvPositionList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UIButton btnDeletePosition; - private Sunny.UI.UIButton btnUpdatePosition; - private Sunny.UI.UIButton btnAddPosition; - private System.Windows.Forms.Label label7; - private Sunny.UI.UITextBox txtPositionName; - private System.Windows.Forms.Label label20; - private Sunny.UI.UITextBox txtPositionNo; - private Sunny.UI.UIDataGridView dgvPositionList; - private System.Windows.Forms.DataGridViewTextBoxColumn clPositionNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clPositionName; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeleteMk; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.cs deleted file mode 100644 index 109cc8b21da5e26276cf14c7c3c65bc22a9442db..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.cs +++ /dev/null @@ -1,187 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmPosition : UIForm - { - public delegate void PositionInfo(); - - - //定义委托类型的变量 - public static PositionInfo operation; - - public static PositionInfo reload; - - public FrmPosition() - { - InitializeComponent(); - reload = ReloadPositionList; - } - - List positions = null; - public static string info = null; - private void FrmPosition_Load(object sender, EventArgs e) - { - ReloadPositionList(); - } - - ResponseMsg result = new ResponseMsg(); - Dictionary dic = null; - - public void ReloadPositionList() - { - txtPositionNo.Text = ApplicationUtil.GetListNewId("P", 3, 1, "-").FirstOrDefault(); - result = HttpHelper.Request("Base/SelectPositionAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectPositionAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - positions = HttpHelper.JsonToList(result.message); - dgvPositionList.AutoGenerateColumns = false; - dgvPositionList.DataSource = positions; - } - - private void btnAddPosition_Click(object sender, EventArgs e) - { - if (txtPositionName.Text.Trim().IsNullOrEmpty()) - { - UIMessageTip.ShowWarning("职位名称为空,请检查", 1500); - txtPositionName.Focus(); - return; - } - var pos = new Position() - { - position_no = txtPositionNo.Text.Trim(), - position_name = txtPositionName.Text.Trim(), - delete_mk = 0, - datains_usr = AdminInfo.Account - }; - result = HttpHelper.Request("Base​/AddPosition", HttpHelper.ModelToJson(pos)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("AddPosition+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - UIMessageTip.ShowOk("添加职位成功!", 1500); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "新增职位类型操作!新增值为:" + pos.position_no, 2); - #endregion - ReloadPositionList(); - return; - } - - private void btnUpdatePosition_Click(object sender, EventArgs e) - { - if (dgvPositionList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的职位数据,请检查", 1500); - return; - } - var pos = new Position() - { - position_no = txtPositionNo.Text.Trim(), - position_name = txtPositionName.Text.Trim(), - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/UpdPosition", HttpHelper.ModelToJson(pos)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("UpdPosition+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - } - - private void btnDeletePosition_Click(object sender, EventArgs e) - { - if (dgvPositionList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的职位数据,请检查", 1500); - return; - } - var pos = new Position() - { - position_no = txtPositionNo.Text.Trim(), - position_name = txtPositionName.Text.Trim(), - delete_mk = 1, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/DelPosition", HttpHelper.ModelToJson(pos)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("DelPosition+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - UIMessageTip.ShowOk("删除成功!"); - return; - } - - private void dgvPositionList_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) - { - txtPositionNo.Text = dgvPositionList.SelectedRows[0].Cells["clPositionNo"].Value.ToString(); - txtPositionName.Text = dgvPositionList.SelectedRows[0].Cells["clPositionName"].Value.ToString(); - if (dgvPositionList.SelectedRows[0].Cells["clDeleteMk"].Value.ToString() == "1") - { - btnDeletePosition.Text = "恢复职位"; - btnDeletePosition.FillColor = Color.Green; - btnDeletePosition.RectColor = Color.Green; - btnDeletePosition.Click += btnRecoveryPosition_Click; - } - else - { - btnDeletePosition.Text = "删除职位"; - btnDeletePosition.FillColor = Color.FromArgb(80, 160, 255); - btnDeletePosition.RectColor = Color.FromArgb(80, 160, 255); - btnDeletePosition.Click += btnDeletePosition_Click; - } - } - - private void btnRecoveryPosition_Click(object sender, EventArgs e) - { - if (dgvPositionList.SelectedRows.Count <= 0) - { - UIMessageTip.ShowWarning("未选择需修改的职位数据,请检查", 1500); - return; - } - var pos = new Position() - { - position_no = txtPositionNo.Text.Trim(), - position_name = txtPositionName.Text.Trim(), - delete_mk = 0, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("Base​/UpdPosition", HttpHelper.ModelToJson(pos)); - if (result.statusCode != 200 || result.message.ToString().Equals("false")) - { - UIMessageTip.ShowError("UpdPosition+接口服务异常,请提交Issue或尝试更新版本!", 1500); - return; - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.resx deleted file mode 100644 index 19a1cb384a934f9896bfc605bba38ae69f19e645..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.resx +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGACVAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACKklEQVRYR+1XPUsD - QRBNZyt2EguxkGCVTsuAiAhBsLBKE0VSW4md9wM0CYIEQRBsUqXQQoxNCr9KEextFMQmoIVd9M3xVjZ3 - uf0wKRQNDLfZefP27dzs3F0q5fjrdDpjsArs6cPwg/8eVha8I7UdBrK0WhPjR1jLYG0Nm7azOyCwWENI - cS04wFOAlohvuOCNGLV7XJs+ZMzQs09MTyx2kmNKAx8yxAQS5xPzL+BnZwBFteVzPwU/0Br40wIybCo1 - z1uwh6y9+sQkYkF0A3uHjboQQnAG2BfYhQveitFa6wPGRTYnaVAxw6LbsFs2r5KV3BWgOpvpSRjxeXVO - Jx3Y2QhsOrJzWVfPRBb/h50I+wVpz4lcv1xd8R5p9oI6i+SxM710ePu8uqIS4KzYApR3A6sAgFZh+wqs - vXJVMZ75jhjpG1InipM1MxHjUg+OpBsK/xts0UcE8HUDXxO+8ZAPg2Wm/FrG0UVAtEv/pasAxFQYcxxt - VvAd0nce8mHiiBP5pAWAqRGzYBMB7BKxBwa+HWanKAKsBaKdd2t3A98GyWPZVIIk/RTZGLgAEIcvoyLa - lC0KaA1cgFbQv0dA1XbPsKs7YrIORbjC9K4bijBPvkCOofrwkE+vco9jc0XCum1xnqpZ4k/BNxmNkQLE - /Akx86oXZDHZpqrYhV0xRpYkCASbikTrqOHzQ5s/64qHcwq2xioOpJhoBVyHXHavYxAzJ/0jKkD6Duzr - I/cTHFHxdL04ZCYAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.Designer.cs index 5e5c4b18d64386e3d1b226d3b21f0663670460fa..ea0c6c50c40701283f59008f249fd65d055185ca 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.Designer.cs @@ -28,480 +28,369 @@ /// private void InitializeComponent() { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmReserList)); - this.dgvReserList = new Sunny.UI.UIDataGridView(); - this.clReserNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCustoNm = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clTel = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clway = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clRoomNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clStartTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDealTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clReserMemo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.cbCustoType = new Sunny.UI.UIComboBox(); - this.cbPassportType = new Sunny.UI.UIComboBox(); - this.cbSex = new Sunny.UI.UIComboBox(); - this.txtCustoNo = new Sunny.UI.UITextBox(); - this.txtCustoName = new Sunny.UI.UITextBox(); - this.txtCardID = new Sunny.UI.UITextBox(); - this.txtTel = new Sunny.UI.UITextBox(); - this.dtpBirthday = new Sunny.UI.UIDatePicker(); - this.txtCustoAdress = new Sunny.UI.UITextBox(); - this.label10 = new System.Windows.Forms.Label(); - this.label9 = new System.Windows.Forms.Label(); - this.label8 = new System.Windows.Forms.Label(); - this.label7 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.btnSelect = new Sunny.UI.UIButton(); - ((System.ComponentModel.ISupportInitialize)(this.dgvReserList)).BeginInit(); - this.SuspendLayout(); - // - // dgvReserList - // - this.dgvReserList.AllowUserToAddRows = false; - this.dgvReserList.AllowUserToDeleteRows = false; - this.dgvReserList.AllowUserToResizeColumns = false; - this.dgvReserList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvReserList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvReserList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvReserList.BackgroundColor = System.Drawing.Color.White; - this.dgvReserList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvReserList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvReserList.ColumnHeadersHeight = 32; - this.dgvReserList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvReserList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clReserNo, - this.clCustoNm, - this.clTel, - this.clway, - this.clRoomNo, - this.clStartTime, - this.clDealTime, - this.clReserMemo}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvReserList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvReserList.EnableHeadersVisualStyles = false; - this.dgvReserList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvReserList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvReserList.Location = new System.Drawing.Point(18, 104); - this.dgvReserList.Name = "dgvReserList"; - this.dgvReserList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvReserList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvReserList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvReserList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvReserList.RowTemplate.Height = 29; - this.dgvReserList.SelectedIndex = -1; - this.dgvReserList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvReserList.Size = new System.Drawing.Size(726, 169); - this.dgvReserList.TabIndex = 113; - this.dgvReserList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvReserList_CellClick); - // - // clReserNo - // - this.clReserNo.DataPropertyName = "ReserId"; - this.clReserNo.HeaderText = "预约编号"; - this.clReserNo.Name = "clReserNo"; - this.clReserNo.ReadOnly = true; - // - // clCustoNm - // - this.clCustoNm.DataPropertyName = "CustoName"; - this.clCustoNm.HeaderText = "客户姓名"; - this.clCustoNm.Name = "clCustoNm"; - this.clCustoNm.ReadOnly = true; - // - // clTel - // - this.clTel.DataPropertyName = "CustoTel"; - this.clTel.HeaderText = "预约电话"; - this.clTel.Name = "clTel"; - this.clTel.ReadOnly = true; - // - // clway - // - this.clway.DataPropertyName = "ReserWay"; - this.clway.HeaderText = "预约方式"; - this.clway.Name = "clway"; - this.clway.ReadOnly = true; - // - // clRoomNo - // - this.clRoomNo.DataPropertyName = "ReserRoom"; - this.clRoomNo.HeaderText = "预约房号"; - this.clRoomNo.Name = "clRoomNo"; - this.clRoomNo.ReadOnly = true; - // - // clStartTime - // - this.clStartTime.DataPropertyName = "ReserDate"; - this.clStartTime.HeaderText = "开始时间"; - this.clStartTime.Name = "clStartTime"; - this.clStartTime.ReadOnly = true; - // - // clDealTime - // - this.clDealTime.DataPropertyName = "ReserEndDay"; - this.clDealTime.HeaderText = "截止时间"; - this.clDealTime.Name = "clDealTime"; - this.clDealTime.ReadOnly = true; - // - // clReserMemo - // - this.clReserMemo.DataPropertyName = "ReserRemark"; - this.clReserMemo.HeaderText = "预约备注"; - this.clReserMemo.Name = "clReserMemo"; - this.clReserMemo.ReadOnly = true; + cbCustoType = new Sunny.UI.UIComboBox(); + cbPassportType = new Sunny.UI.UIComboBox(); + cbSex = new Sunny.UI.UIComboBox(); + txtCustoNo = new Sunny.UI.UITextBox(); + txtCustoName = new Sunny.UI.UITextBox(); + txtCardID = new Sunny.UI.UITextBox(); + txtTel = new Sunny.UI.UITextBox(); + dtpBirthday = new Sunny.UI.UIDatePicker(); + txtCustoAdress = new Sunny.UI.UITextBox(); + label10 = new Label(); + label9 = new Label(); + label8 = new Label(); + label7 = new Label(); + label6 = new Label(); + label5 = new Label(); + label4 = new Label(); + label3 = new Label(); + label2 = new Label(); + btnSelect = new Sunny.UI.UIButton(); + dgvReserList = new AntdUI.Table(); + btnPg = new AntdUI.Pagination(); + SuspendLayout(); // // cbCustoType // - this.cbCustoType.DataSource = null; - this.cbCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cbCustoType.FillColor = System.Drawing.Color.White; - this.cbCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cbCustoType.Location = new System.Drawing.Point(499, 290); - this.cbCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cbCustoType.MinimumSize = new System.Drawing.Size(63, 0); - this.cbCustoType.Name = "cbCustoType"; - this.cbCustoType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cbCustoType.Radius = 20; - this.cbCustoType.ReadOnly = true; - this.cbCustoType.Size = new System.Drawing.Size(250, 35); - this.cbCustoType.TabIndex = 134; - this.cbCustoType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cbCustoType.Watermark = ""; + cbCustoType.DataSource = null; + cbCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cbCustoType.FillColor = Color.White; + cbCustoType.Font = new Font("微软雅黑", 15.75F); + cbCustoType.ItemHoverColor = Color.FromArgb(155, 200, 255); + cbCustoType.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cbCustoType.Location = new Point(499, 290); + cbCustoType.Margin = new Padding(4, 5, 4, 5); + cbCustoType.MinimumSize = new Size(63, 0); + cbCustoType.Name = "cbCustoType"; + cbCustoType.Padding = new Padding(0, 0, 30, 2); + cbCustoType.Radius = 20; + cbCustoType.ReadOnly = true; + cbCustoType.Size = new Size(250, 35); + cbCustoType.SymbolSize = 24; + cbCustoType.TabIndex = 134; + cbCustoType.TextAlignment = ContentAlignment.MiddleLeft; + cbCustoType.Watermark = ""; // // cbPassportType // - this.cbPassportType.DataSource = null; - this.cbPassportType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cbPassportType.FillColor = System.Drawing.Color.White; - this.cbPassportType.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cbPassportType.Location = new System.Drawing.Point(499, 341); - this.cbPassportType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cbPassportType.MinimumSize = new System.Drawing.Size(63, 0); - this.cbPassportType.Name = "cbPassportType"; - this.cbPassportType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cbPassportType.Radius = 20; - this.cbPassportType.Size = new System.Drawing.Size(250, 35); - this.cbPassportType.TabIndex = 133; - this.cbPassportType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + cbPassportType.DataSource = null; + cbPassportType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cbPassportType.FillColor = Color.White; + cbPassportType.Font = new Font("微软雅黑", 15.75F); + cbPassportType.ItemHoverColor = Color.FromArgb(155, 200, 255); + cbPassportType.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cbPassportType.Location = new Point(499, 341); + cbPassportType.Margin = new Padding(4, 5, 4, 5); + cbPassportType.MinimumSize = new Size(63, 0); + cbPassportType.Name = "cbPassportType"; + cbPassportType.Padding = new Padding(0, 0, 30, 2); + cbPassportType.Radius = 20; + cbPassportType.Size = new Size(250, 35); + cbPassportType.SymbolSize = 24; + cbPassportType.TabIndex = 133; + cbPassportType.TextAlignment = ContentAlignment.MiddleLeft; + cbPassportType.Watermark = ""; // // cbSex // - this.cbSex.DataSource = null; - this.cbSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cbSex.FillColor = System.Drawing.Color.White; - this.cbSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cbSex.Location = new System.Drawing.Point(123, 397); - this.cbSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cbSex.MinimumSize = new System.Drawing.Size(63, 0); - this.cbSex.Name = "cbSex"; - this.cbSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cbSex.Radius = 20; - this.cbSex.Size = new System.Drawing.Size(250, 35); - this.cbSex.TabIndex = 132; - this.cbSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + cbSex.DataSource = null; + cbSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cbSex.FillColor = Color.White; + cbSex.Font = new Font("微软雅黑", 15.75F); + cbSex.ItemHoverColor = Color.FromArgb(155, 200, 255); + cbSex.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cbSex.Location = new Point(123, 397); + cbSex.Margin = new Padding(4, 5, 4, 5); + cbSex.MinimumSize = new Size(63, 0); + cbSex.Name = "cbSex"; + cbSex.Padding = new Padding(0, 0, 30, 2); + cbSex.Radius = 20; + cbSex.Size = new Size(250, 35); + cbSex.SymbolSize = 24; + cbSex.TabIndex = 132; + cbSex.TextAlignment = ContentAlignment.MiddleLeft; + cbSex.Watermark = ""; // // txtCustoNo // - this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoNo.FillColor = System.Drawing.Color.White; - this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoNo.Location = new System.Drawing.Point(123, 293); - this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoNo.Maximum = 2147483647D; - this.txtCustoNo.Minimum = -2147483648D; - this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoNo.Name = "txtCustoNo"; - this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoNo.Radius = 20; - this.txtCustoNo.ReadOnly = true; - this.txtCustoNo.Size = new System.Drawing.Size(250, 35); - this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoNo.StyleCustomMode = true; - this.txtCustoNo.TabIndex = 131; - this.txtCustoNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoNo.Cursor = Cursors.IBeam; + txtCustoNo.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoNo.Location = new Point(123, 293); + txtCustoNo.Margin = new Padding(4, 5, 4, 5); + txtCustoNo.MinimumSize = new Size(1, 1); + txtCustoNo.Name = "txtCustoNo"; + txtCustoNo.Padding = new Padding(5); + txtCustoNo.Radius = 20; + txtCustoNo.ReadOnly = true; + txtCustoNo.ShowText = false; + txtCustoNo.Size = new Size(250, 35); + txtCustoNo.Style = Sunny.UI.UIStyle.Custom; + txtCustoNo.StyleCustomMode = true; + txtCustoNo.TabIndex = 131; + txtCustoNo.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoNo.Watermark = ""; // // txtCustoName // - this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoName.FillColor = System.Drawing.Color.White; - this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoName.Location = new System.Drawing.Point(123, 345); - this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoName.Maximum = 2147483647D; - this.txtCustoName.Minimum = -2147483648D; - this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoName.Name = "txtCustoName"; - this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoName.Radius = 20; - this.txtCustoName.Size = new System.Drawing.Size(250, 35); - this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoName.StyleCustomMode = true; - this.txtCustoName.TabIndex = 130; - this.txtCustoName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoName.Cursor = Cursors.IBeam; + txtCustoName.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoName.Location = new Point(123, 345); + txtCustoName.Margin = new Padding(4, 5, 4, 5); + txtCustoName.MinimumSize = new Size(1, 1); + txtCustoName.Name = "txtCustoName"; + txtCustoName.Padding = new Padding(5); + txtCustoName.Radius = 20; + txtCustoName.ShowText = false; + txtCustoName.Size = new Size(250, 35); + txtCustoName.Style = Sunny.UI.UIStyle.Custom; + txtCustoName.StyleCustomMode = true; + txtCustoName.TabIndex = 130; + txtCustoName.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoName.Watermark = ""; // // txtCardID // - this.txtCardID.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCardID.FillColor = System.Drawing.Color.White; - this.txtCardID.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCardID.Location = new System.Drawing.Point(499, 392); - this.txtCardID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCardID.Maximum = 2147483647D; - this.txtCardID.Minimum = -2147483648D; - this.txtCardID.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCardID.Name = "txtCardID"; - this.txtCardID.Padding = new System.Windows.Forms.Padding(5); - this.txtCardID.Radius = 20; - this.txtCardID.Size = new System.Drawing.Size(250, 35); - this.txtCardID.Style = Sunny.UI.UIStyle.Custom; - this.txtCardID.StyleCustomMode = true; - this.txtCardID.TabIndex = 129; - this.txtCardID.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtCardID.Validated += new System.EventHandler(this.txtCardID_Validated); + txtCardID.Cursor = Cursors.IBeam; + txtCardID.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCardID.Location = new Point(499, 392); + txtCardID.Margin = new Padding(4, 5, 4, 5); + txtCardID.MinimumSize = new Size(1, 1); + txtCardID.Name = "txtCardID"; + txtCardID.Padding = new Padding(5); + txtCardID.Radius = 20; + txtCardID.ShowText = false; + txtCardID.Size = new Size(250, 35); + txtCardID.Style = Sunny.UI.UIStyle.Custom; + txtCardID.StyleCustomMode = true; + txtCardID.TabIndex = 129; + txtCardID.TextAlignment = ContentAlignment.MiddleLeft; + txtCardID.Watermark = ""; + txtCardID.Validated += txtCardID_Validated; // // txtTel // - this.txtTel.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtTel.FillColor = System.Drawing.Color.White; - this.txtTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtTel.Location = new System.Drawing.Point(499, 443); - this.txtTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtTel.Maximum = 2147483647D; - this.txtTel.Minimum = -2147483648D; - this.txtTel.MinimumSize = new System.Drawing.Size(1, 1); - this.txtTel.Name = "txtTel"; - this.txtTel.Padding = new System.Windows.Forms.Padding(5); - this.txtTel.Radius = 20; - this.txtTel.Size = new System.Drawing.Size(250, 35); - this.txtTel.Style = Sunny.UI.UIStyle.Custom; - this.txtTel.StyleCustomMode = true; - this.txtTel.TabIndex = 128; - this.txtTel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtTel.Cursor = Cursors.IBeam; + txtTel.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtTel.Location = new Point(499, 443); + txtTel.Margin = new Padding(4, 5, 4, 5); + txtTel.MinimumSize = new Size(1, 1); + txtTel.Name = "txtTel"; + txtTel.Padding = new Padding(5); + txtTel.Radius = 20; + txtTel.ShowText = false; + txtTel.Size = new Size(250, 35); + txtTel.Style = Sunny.UI.UIStyle.Custom; + txtTel.StyleCustomMode = true; + txtTel.TabIndex = 128; + txtTel.TextAlignment = ContentAlignment.MiddleLeft; + txtTel.Watermark = ""; // // dtpBirthday // - this.dtpBirthday.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpBirthday.FillColor = System.Drawing.Color.White; - this.dtpBirthday.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpBirthday.Location = new System.Drawing.Point(123, 449); - this.dtpBirthday.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpBirthday.MaxLength = 10; - this.dtpBirthday.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpBirthday.Name = "dtpBirthday"; - this.dtpBirthday.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpBirthday.Radius = 20; - this.dtpBirthday.ReadOnly = true; - this.dtpBirthday.Size = new System.Drawing.Size(250, 31); - this.dtpBirthday.SymbolDropDown = 61555; - this.dtpBirthday.SymbolNormal = 61555; - this.dtpBirthday.TabIndex = 127; - this.dtpBirthday.Text = "2020-11-24"; - this.dtpBirthday.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpBirthday.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); + dtpBirthday.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + dtpBirthday.FillColor = Color.White; + dtpBirthday.Font = new Font("Microsoft Sans Serif", 15.75F); + dtpBirthday.Location = new Point(123, 449); + dtpBirthday.Margin = new Padding(4, 5, 4, 5); + dtpBirthday.MaxLength = 10; + dtpBirthday.MinimumSize = new Size(63, 0); + dtpBirthday.Name = "dtpBirthday"; + dtpBirthday.Padding = new Padding(0, 0, 30, 2); + dtpBirthday.Radius = 20; + dtpBirthday.ReadOnly = true; + dtpBirthday.Size = new Size(250, 31); + dtpBirthday.SymbolDropDown = 61555; + dtpBirthday.SymbolNormal = 61555; + dtpBirthday.SymbolSize = 24; + dtpBirthday.TabIndex = 127; + dtpBirthday.Text = "2020-11-24"; + dtpBirthday.TextAlignment = ContentAlignment.MiddleLeft; + dtpBirthday.Value = new DateTime(2020, 11, 24, 22, 50, 36, 791); + dtpBirthday.Watermark = ""; // // txtCustoAdress // - this.txtCustoAdress.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoAdress.FillColor = System.Drawing.Color.White; - this.txtCustoAdress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoAdress.Location = new System.Drawing.Point(121, 497); - this.txtCustoAdress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoAdress.Maximum = 2147483647D; - this.txtCustoAdress.Minimum = -2147483648D; - this.txtCustoAdress.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoAdress.Name = "txtCustoAdress"; - this.txtCustoAdress.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoAdress.Radius = 20; - this.txtCustoAdress.Size = new System.Drawing.Size(628, 35); - this.txtCustoAdress.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoAdress.StyleCustomMode = true; - this.txtCustoAdress.TabIndex = 126; - this.txtCustoAdress.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoAdress.Cursor = Cursors.IBeam; + txtCustoAdress.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoAdress.Location = new Point(121, 497); + txtCustoAdress.Margin = new Padding(4, 5, 4, 5); + txtCustoAdress.MinimumSize = new Size(1, 1); + txtCustoAdress.Name = "txtCustoAdress"; + txtCustoAdress.Padding = new Padding(5); + txtCustoAdress.Radius = 20; + txtCustoAdress.ShowText = false; + txtCustoAdress.Size = new Size(628, 35); + txtCustoAdress.Style = Sunny.UI.UIStyle.Custom; + txtCustoAdress.StyleCustomMode = true; + txtCustoAdress.TabIndex = 126; + txtCustoAdress.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoAdress.Watermark = ""; // // label10 // - this.label10.AutoSize = true; - this.label10.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label10.Location = new System.Drawing.Point(14, 505); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(88, 25); - this.label10.TabIndex = 122; - this.label10.Text = "居住地址"; + label10.AutoSize = true; + label10.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label10.Location = new Point(14, 505); + label10.Name = "label10"; + label10.Size = new Size(88, 25); + label10.TabIndex = 122; + label10.Text = "居住地址"; // // label9 // - this.label9.AutoSize = true; - this.label9.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label9.Location = new System.Drawing.Point(403, 450); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(88, 25); - this.label9.TabIndex = 121; - this.label9.Text = "联系方式"; + label9.AutoSize = true; + label9.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label9.Location = new Point(403, 450); + label9.Name = "label9"; + label9.Size = new Size(88, 25); + label9.TabIndex = 121; + label9.Text = "联系方式"; // // label8 // - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label8.Location = new System.Drawing.Point(403, 399); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(88, 25); - this.label8.TabIndex = 120; - this.label8.Text = "证件号码"; + label8.AutoSize = true; + label8.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label8.Location = new Point(403, 399); + label8.Name = "label8"; + label8.Size = new Size(88, 25); + label8.TabIndex = 120; + label8.Text = "证件号码"; // // label7 // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(403, 348); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(88, 25); - this.label7.TabIndex = 119; - this.label7.Text = "证件类型"; + label7.AutoSize = true; + label7.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label7.Location = new Point(403, 348); + label7.Name = "label7"; + label7.Size = new Size(88, 25); + label7.TabIndex = 119; + label7.Text = "证件类型"; // // label6 // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label6.Location = new System.Drawing.Point(403, 297); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(88, 25); - this.label6.TabIndex = 118; - this.label6.Text = "客户类型"; + label6.AutoSize = true; + label6.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label6.Location = new Point(403, 297); + label6.Name = "label6"; + label6.Size = new Size(88, 25); + label6.TabIndex = 118; + label6.Text = "客户类型"; // // label5 // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(16, 453); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(88, 25); - this.label5.TabIndex = 117; - this.label5.Text = "出生日期"; + label5.AutoSize = true; + label5.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label5.Location = new Point(16, 453); + label5.Name = "label5"; + label5.Size = new Size(88, 25); + label5.TabIndex = 117; + label5.Text = "出生日期"; // // label4 // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label4.Location = new System.Drawing.Point(16, 401); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(86, 25); - this.label4.TabIndex = 116; - this.label4.Text = "性 别"; + label4.AutoSize = true; + label4.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label4.Location = new Point(16, 401); + label4.Name = "label4"; + label4.Size = new Size(86, 25); + label4.TabIndex = 116; + label4.Text = "性 别"; // // label3 // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(16, 349); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(88, 25); - this.label3.TabIndex = 115; - this.label3.Text = "客户姓名"; + label3.AutoSize = true; + label3.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label3.Location = new Point(16, 349); + label3.Name = "label3"; + label3.Size = new Size(88, 25); + label3.TabIndex = 115; + label3.Text = "客户姓名"; // // label2 // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(16, 297); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(88, 25); - this.label2.TabIndex = 114; - this.label2.Text = "客户编号"; + label2.AutoSize = true; + label2.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label2.Location = new Point(16, 297); + label2.Name = "label2"; + label2.Size = new Size(88, 25); + label2.TabIndex = 114; + label2.Text = "客户编号"; // // btnSelect // - this.btnSelect.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnSelect.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnSelect.Location = new System.Drawing.Point(19, 48); - this.btnSelect.MinimumSize = new System.Drawing.Size(1, 1); - this.btnSelect.Name = "btnSelect"; - this.btnSelect.Radius = 15; - this.btnSelect.Size = new System.Drawing.Size(146, 44); - this.btnSelect.TabIndex = 135; - this.btnSelect.Text = "入住并注册"; - this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click); + btnSelect.Cursor = Cursors.Hand; + btnSelect.Font = new Font("微软雅黑", 12F); + btnSelect.Location = new Point(19, 44); + btnSelect.MinimumSize = new Size(1, 1); + btnSelect.Name = "btnSelect"; + btnSelect.Radius = 15; + btnSelect.Size = new Size(129, 29); + btnSelect.TabIndex = 135; + btnSelect.Text = "入住并注册"; + btnSelect.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnSelect.Click += btnSelect_Click; + // + // dgvReserList + // + dgvReserList.Location = new Point(14, 83); + dgvReserList.Name = "dgvReserList"; + dgvReserList.Size = new Size(735, 160); + dgvReserList.TabIndex = 136; + dgvReserList.Text = "table1"; + dgvReserList.CellClick += dgvReserList_CellClick; + // + // btnPg + // + btnPg.Current = 0; + btnPg.Location = new Point(14, 253); + btnPg.Name = "btnPg"; + btnPg.PageSize = 15; + btnPg.ShowSizeChanger = true; + btnPg.Size = new Size(735, 31); + btnPg.TabIndex = 137; + btnPg.Total = 1000000; + btnPg.ValueChanged += btnPg_ValueChanged; + btnPg.ShowTotalChanged += btnPg_ShowTotalChanged; // // FrmReserList // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.ClientSize = new System.Drawing.Size(763, 556); - this.Controls.Add(this.btnSelect); - this.Controls.Add(this.cbCustoType); - this.Controls.Add(this.cbPassportType); - this.Controls.Add(this.cbSex); - this.Controls.Add(this.txtCustoNo); - this.Controls.Add(this.txtCustoName); - this.Controls.Add(this.txtCardID); - this.Controls.Add(this.txtTel); - this.Controls.Add(this.dtpBirthday); - this.Controls.Add(this.txtCustoAdress); - this.Controls.Add(this.label10); - this.Controls.Add(this.label9); - this.Controls.Add(this.label8); - this.Controls.Add(this.label7); - this.Controls.Add(this.label6); - this.Controls.Add(this.label5); - this.Controls.Add(this.label4); - this.Controls.Add(this.label3); - this.Controls.Add(this.label2); - this.Controls.Add(this.dgvReserList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "FrmReserList"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "预约列表"; - this.Load += new System.EventHandler(this.FrmReserList_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvReserList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - + AutoScaleMode = AutoScaleMode.None; + BackgroundImageLayout = ImageLayout.Stretch; + ClientSize = new Size(763, 556); + Controls.Add(btnPg); + Controls.Add(dgvReserList); + Controls.Add(btnSelect); + Controls.Add(cbCustoType); + Controls.Add(cbPassportType); + Controls.Add(cbSex); + Controls.Add(txtCustoNo); + Controls.Add(txtCustoName); + Controls.Add(txtCardID); + Controls.Add(txtTel); + Controls.Add(dtpBirthday); + Controls.Add(txtCustoAdress); + Controls.Add(label10); + Controls.Add(label9); + Controls.Add(label8); + Controls.Add(label7); + Controls.Add(label6); + Controls.Add(label5); + Controls.Add(label4); + Controls.Add(label3); + Controls.Add(label2); + Icon = (Icon)resources.GetObject("$this.Icon"); + Name = "FrmReserList"; + ShowTitleIcon = true; + Text = "预约列表"; + ZoomScaleRect = new Rectangle(15, 15, 763, 556); + Load += FrmReserList_Load; + ResumeLayout(false); + PerformLayout(); } #endregion - private Sunny.UI.UIDataGridView dgvReserList; - private System.Windows.Forms.DataGridViewTextBoxColumn clReserNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clCustoNm; - private System.Windows.Forms.DataGridViewTextBoxColumn clTel; - private System.Windows.Forms.DataGridViewTextBoxColumn clway; - private System.Windows.Forms.DataGridViewTextBoxColumn clRoomNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clStartTime; - private System.Windows.Forms.DataGridViewTextBoxColumn clDealTime; - private System.Windows.Forms.DataGridViewTextBoxColumn clReserMemo; private Sunny.UI.UIComboBox cbCustoType; private Sunny.UI.UIComboBox cbPassportType; private Sunny.UI.UIComboBox cbSex; @@ -521,5 +410,7 @@ private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label2; private Sunny.UI.UIButton btnSelect; + private AntdUI.Table dgvReserList; + private AntdUI.Pagination btnPg; } } \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.cs index 4a1f3089baf6c75abbfd8316e77f417a37c621b7..5891c70899095a2dc1b23bc50a351a521e73be65 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.cs @@ -22,9 +22,9 @@ * */ using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; +using jvncorelib.CodeLib; using Sunny.UI; -using System.Transactions; namespace EOM.TSHotelManagement.FormUI { @@ -36,131 +36,178 @@ namespace EOM.TSHotelManagement.FormUI } ResponseMsg result = new ResponseMsg(); + Dictionary dic = null; - private void FrmReserList_Load(object sender, EventArgs e) + public static string RoomNumber { get; set; } = string.Empty; + public static string ReservationId { get; set; } = string.Empty; + + TableComHelper helper = new TableComHelper(); + + private void LoadReserData() { - result = HttpHelper.Request("Reser/SelectReserAll"); - if (result.statusCode != 200) + var dataCount = 0; + btnPg.PageSizeOptions = new int[] { 15, 30, 50, 100 }; + dgvReserList.Spin("正在加载中...", config => { - UIMessageBox.ShowError("SelectReserAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; + TableComHelper tableComHelper = new TableComHelper(); + dgvReserList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + dgvReserList.DataSource = GetPageData(btnPg.Current, btnPg.PageSize, ref dataCount); + btnPg.PageSize = 15; + btnPg.Current = 1; + btnPg.Total = dataCount; + }, () => + { + System.Diagnostics.Debug.WriteLine("加载结束"); + }); + } + + object GetPageData(int current, int pageSize, ref int totalCount) + { + dic = new Dictionary() + { + { nameof(ReadReserInputDto.Page), current <= 0 ? "1":current.ToString() }, + { nameof(ReadReserInputDto.PageSize), pageSize.ToString() }, + { nameof(ReadReserInputDto.IsDelete), "0" } + }; + result = HttpHelper.Request(ApiConstants.Reser_SelectReserAll, dic); + var resers = HttpHelper.JsonToModel>(result.message); + if (resers.StatusCode != StatusCodeConstants.Success) + { + AntdUI.Message.error(this, $"{ApiConstants.Reser_SelectReserAll}+接口服务异常,请提交Issue或尝试更新版本!"); + return null!; } - dgvReserList.AutoGenerateColumns = false; - dgvReserList.DataSource = HttpHelper.JsonToList(result.message); + List reserDataSource = resers.listSource; + totalCount = resers.total; + var listTableSource = new List(); + + reserDataSource = reserDataSource.OrderBy(a => a.ReservationId).ThenBy(a => a.CustomerName).ToList(); + + TableComHelper tableComHelper = new TableComHelper(); + listTableSource = tableComHelper.ConvertToAntdItems(reserDataSource); + + return listTableSource; + } + + private string btnPg_ShowTotalChanged(object sender, AntdUI.PagePageEventArgs e) + { + return $"{e.PageSize} / {e.Total}条 共{e.PageTotal}页"; + } + + private void btnPg_ValueChanged(object sender, AntdUI.PagePageEventArgs e) + { + var dataCount = 0; + dgvReserList.Spin("正在加载中...", config => + { + dgvReserList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount); + btnPg.Total = dataCount; + }, () => + { + System.Diagnostics.Debug.WriteLine("加载结束"); + }); + } + + private void FrmReserList_Load(object sender, EventArgs e) + { + LoadReserData(); #region 加载客户类型信息 - result = HttpHelper.Request("Base/SelectCustoTypeAllCanUse"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectCustoTypeAllCanUse); + var customerTypeDataSource = HttpHelper.JsonToModel>(result.message); + if (customerTypeDataSource.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectCustoTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectCustoTypeAllCanUse}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List lstSourceGrid = HttpHelper.JsonToList(result.message); + List lstSourceGrid = customerTypeDataSource.listSource; this.cbCustoType.DataSource = lstSourceGrid; - this.cbCustoType.DisplayMember = "TypeName"; - this.cbCustoType.ValueMember = "UserType"; + this.cbCustoType.DisplayMember = nameof(ReadCustoTypeOutputDto.CustomerTypeName); + this.cbCustoType.ValueMember = nameof(ReadCustoTypeOutputDto.CustomerType); this.cbCustoType.SelectedIndex = 0; this.cbCustoType.ReadOnly = true; #endregion #region 加载证件类型信息 - result = HttpHelper.Request("Base/SelectPassPortTypeAllCanUse"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectPassPortTypeAllCanUse); + var passportDataSource = HttpHelper.JsonToModel>(result.message); + if (passportDataSource.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectPassPortTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectPassPortTypeAllCanUse}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List passPorts = HttpHelper.JsonToList(result.message); + List passPorts = passportDataSource.listSource; this.cbPassportType.DataSource = passPorts; - this.cbPassportType.DisplayMember = "PassportName"; - this.cbPassportType.ValueMember = "PassportId"; + this.cbPassportType.DisplayMember = nameof(ReadPassportTypeOutputDto.PassportName); + this.cbPassportType.ValueMember = nameof(ReadPassportTypeOutputDto.PassportId); this.cbPassportType.SelectedIndex = 0; #endregion #region 加载性别信息 - result = HttpHelper.Request("Base/SelectSexTypeAll"); - if (result.statusCode != 200) + dic = new Dictionary { - UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); + { nameof(ReadGenderTypeInputDto.IsDelete), "0"}, + { nameof(ReadGenderTypeInputDto.IgnorePaging), "true" } + }; + result = HttpHelper.Request(ApiConstants.Base_SelectGenderTypeAll, dic); + var genderTypeDataSource = HttpHelper.JsonToModel>(result.message); + if (genderTypeDataSource.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Base_SelectGenderTypeAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List listSexType = HttpHelper.JsonToList(result.message); + List listSexType = genderTypeDataSource.listSource; this.cbSex.DataSource = listSexType; - this.cbSex.DisplayMember = "sexName"; - this.cbSex.ValueMember = "sexId"; + this.cbSex.DisplayMember = nameof(EnumDto.Description); + this.cbSex.ValueMember = nameof(EnumDto.Id); #endregion } - private void btnSelect_Click(object sender, EventArgs e) + private void dgvReserList_CellClick(object sender, AntdUI.TableClickEventArgs e) { - using (TransactionScope scope = new TransactionScope()) + if (e.Record is IList data) { - Custo custo = new Custo() - { - CustoNo = txtCustoNo.Text.Trim(), - CustoName = txtCustoName.Text.Trim(), - CustoSex = Convert.ToInt32(cbSex.SelectedValue.ToString()), - CustoTel = txtTel.Text.Trim(), - PassportType = cbPassportType.SelectedIndex, - CustoID = txtCardID.Text.Trim(), - CustoAdress = txtCustoAdress.Text.Trim(), - CustoBirth = dtpBirthday.Value, - CustoType = cbCustoType.SelectedIndex, - delete_mk = 0, - datains_usr = LoginInfo.WorkerNo - }; - result = HttpHelper.Request("Custo​/InsertCustomerInfo", HttpHelper.ModelToJson(custo)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertCustomerInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - - Room r = new Room() - { - CheckTime = Convert.ToDateTime(Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd HH:mm:ss")), - CustoNo = custo.CustoNo, - RoomStateId = 1, - RoomNo = dgvReserList.SelectedRows[0].Cells["clRoomNo"].Value.ToString() - }; - result = HttpHelper.Request("Room​/UpdateRoomInfo", HttpHelper.ModelToJson(r)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertCustomerInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var reser = new Reser - { - ReserId = dgvReserList.SelectedRows[0].Cells["clReserNo"].Value.ToString() - }; - result = HttpHelper.Request("Reser/DeleteReserInfo", HttpHelper.ModelToJson(reser)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("DeleteReserInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - - UIMessageBox.ShowSuccess("操作成功"); - dgvReserList.AutoGenerateColumns = false; - result = HttpHelper.Request("Reser/SelectReserAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectReserAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvReserList.DataSource = HttpHelper.JsonToList(result.message); - FrmRoomManager.Reload(""); - scope.Complete(); - this.Close(); + ReservationId = helper.GetValue(data, nameof(ReadReserOutputDto.ReservationId)); + RoomNumber = helper.GetValue(data, nameof(ReadReserOutputDto.ReservationRoomNumber)); + string custoNo = new UniqueCode().GetNewId("TS-"); + txtCustoNo.Text = custoNo; + txtCustoName.Text = helper.GetValue(data, nameof(ReadReserOutputDto.CustomerName)); + txtTel.Text = helper.GetValue(data, nameof(ReadReserOutputDto.ReservationPhoneNumber)); } } - private void dgvReserList_CellClick(object sender, DataGridViewCellEventArgs e) + private void btnSelect_Click(object sender, EventArgs e) { - string custoNo = ApplicationUtil.GetListNewId("TS", 2, 1, "-").FirstOrDefault(); - txtCustoNo.Text = custoNo; - txtCustoName.Text = dgvReserList.SelectedRows[0].Cells["clCustoNm"].Value.ToString(); - txtTel.Text = dgvReserList.SelectedRows[0].Cells["clTel"].Value.ToString(); + var reser = new CheckinRoomByReservationDto + { + ReservationId = ReservationId, + RoomNumber = RoomNumber, + CustomerNumber = txtCustoNo.Text.Trim(), + CustomerName = txtCustoName.Text.Trim(), + CustomerType = Convert.ToInt32(cbCustoType.SelectedValue), + CustomerPhoneNumber = txtTel.Text.Trim(), + CustomerAddress = txtCustoAdress.Text.Trim(), + IdCardNumber = txtCardID.Text.Trim(), + PassportId = Convert.ToInt32(cbPassportType.SelectedValue), + CustomerGender = Convert.ToInt32(cbSex.SelectedValue), + DateOfBirth = DateOnly.FromDateTime(dtpBirthday.Value), + IsDelete = 0, + DataInsUsr = LoginInfo.WorkerNo, + DataChgUsr = LoginInfo.WorkerNo, + DataInsDate = DateTime.Now, + DataChgDate = DateTime.Now + }; + result = HttpHelper.Request(ApiConstants.Room_CheckinRoomByReservation, HttpHelper.ModelToJson(reser)); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Room_CheckinRoomByReservation}+接口服务异常,请提交Issue或尝试更新版本!"); + return; + } + + UIMessageBox.ShowSuccess("操作成功"); + LoadReserData(); + FrmRoomManager.Reload(""); + FrmRoomManager._RefreshRoomCount(); + this.Close(); } private void txtCardID_Validated(object sender, EventArgs e) @@ -194,7 +241,7 @@ namespace EOM.TSHotelManagement.FormUI if (identityCard.Length == 18) { - var result = ApplicationUtil.searchCode(identityCard); + var result = ApplicationUtil.SearchCode(identityCard); if (result.message.IsNullOrEmpty()) //如果没有错误消息输出,则代表成功 { try diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.resx index f9f02ab01f93079261109fd833bb14422ebb4bb4..a1df40863be295616250c00434f37a2f230cf73f 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.resx +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.resx @@ -1,17 +1,17 @@  - @@ -117,30 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs index 4a16f0c5e8c94b53cb2be71bf3e28c8bfb05a428..7cb671acb1584689951e4a3bfe7197b0f12fc273 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs @@ -29,267 +29,268 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmReserManager)); - this.btnReserList = new Sunny.UI.UIButton(); - this.txtCustoName = new Sunny.UI.UITextBox(); - this.txtCustoTel = new Sunny.UI.UITextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.label9 = new System.Windows.Forms.Label(); - this.cboReserWay = new Sunny.UI.UIComboBox(); - this.label10 = new System.Windows.Forms.Label(); - this.cboReserRoomNo = new Sunny.UI.UIComboBox(); - this.label11 = new System.Windows.Forms.Label(); - this.dtpBouDate = new Sunny.UI.UIDatePicker(); - this.label12 = new System.Windows.Forms.Label(); - this.dtpEndDate = new Sunny.UI.UIDatePicker(); - this.label13 = new System.Windows.Forms.Label(); - this.btnReser = new Sunny.UI.UIButton(); - this.SuspendLayout(); + btnReserList = new Sunny.UI.UIButton(); + txtCustoName = new Sunny.UI.UITextBox(); + txtCustoTel = new Sunny.UI.UITextBox(); + label1 = new Label(); + label9 = new Label(); + cboReserWay = new Sunny.UI.UIComboBox(); + label10 = new Label(); + cboReserRoomNo = new Sunny.UI.UIComboBox(); + label11 = new Label(); + dtpBookDate = new Sunny.UI.UIDatePicker(); + label12 = new Label(); + dtpEndDate = new Sunny.UI.UIDatePicker(); + label13 = new Label(); + btnReser = new Sunny.UI.UIButton(); + SuspendLayout(); // // btnReserList // - this.btnReserList.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnReserList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnReserList.Location = new System.Drawing.Point(89, 50); - this.btnReserList.MinimumSize = new System.Drawing.Size(1, 1); - this.btnReserList.Name = "btnReserList"; - this.btnReserList.Radius = 15; - this.btnReserList.Size = new System.Drawing.Size(136, 35); - this.btnReserList.Style = Sunny.UI.UIStyle.Custom; - this.btnReserList.TabIndex = 72; - this.btnReserList.Text = "查看预约列表"; - this.btnReserList.Click += new System.EventHandler(this.btnReserList_Click); + btnReserList.Cursor = Cursors.Hand; + btnReserList.Font = new Font("微软雅黑", 12F); + btnReserList.Location = new Point(89, 50); + btnReserList.MinimumSize = new Size(1, 1); + btnReserList.Name = "btnReserList"; + btnReserList.Radius = 15; + btnReserList.Size = new Size(136, 35); + btnReserList.Style = Sunny.UI.UIStyle.Custom; + btnReserList.TabIndex = 72; + btnReserList.Text = "查看预约列表"; + btnReserList.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnReserList.Click += btnReserList_Click; // // txtCustoName // - this.txtCustoName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoName.FillColor = System.Drawing.Color.White; - this.txtCustoName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoName.Location = new System.Drawing.Point(122, 94); - this.txtCustoName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoName.Maximum = 2147483647D; - this.txtCustoName.Minimum = -2147483648D; - this.txtCustoName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoName.Name = "txtCustoName"; - this.txtCustoName.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoName.Radius = 20; - this.txtCustoName.Size = new System.Drawing.Size(159, 35); - this.txtCustoName.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoName.StyleCustomMode = true; - this.txtCustoName.TabIndex = 107; - this.txtCustoName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoName.Cursor = Cursors.IBeam; + txtCustoName.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoName.Location = new Point(122, 94); + txtCustoName.Margin = new Padding(4, 5, 4, 5); + txtCustoName.MinimumSize = new Size(1, 1); + txtCustoName.Name = "txtCustoName"; + txtCustoName.Padding = new Padding(5); + txtCustoName.Radius = 20; + txtCustoName.ShowText = false; + txtCustoName.Size = new Size(159, 35); + txtCustoName.Style = Sunny.UI.UIStyle.Custom; + txtCustoName.StyleCustomMode = true; + txtCustoName.TabIndex = 107; + txtCustoName.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoName.Watermark = ""; // // txtCustoTel // - this.txtCustoTel.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoTel.FillColor = System.Drawing.Color.White; - this.txtCustoTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoTel.Location = new System.Drawing.Point(122, 147); - this.txtCustoTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoTel.Maximum = 2147483647D; - this.txtCustoTel.MaxLength = 11; - this.txtCustoTel.Minimum = -2147483648D; - this.txtCustoTel.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoTel.Name = "txtCustoTel"; - this.txtCustoTel.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoTel.Radius = 20; - this.txtCustoTel.Size = new System.Drawing.Size(159, 35); - this.txtCustoTel.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoTel.StyleCustomMode = true; - this.txtCustoTel.TabIndex = 108; - this.txtCustoTel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; + txtCustoTel.Cursor = Cursors.IBeam; + txtCustoTel.Font = new Font("微软雅黑", 15.75F, FontStyle.Regular, GraphicsUnit.Point, 134); + txtCustoTel.Location = new Point(122, 147); + txtCustoTel.Margin = new Padding(4, 5, 4, 5); + txtCustoTel.MaxLength = 11; + txtCustoTel.MinimumSize = new Size(1, 1); + txtCustoTel.Name = "txtCustoTel"; + txtCustoTel.Padding = new Padding(5); + txtCustoTel.Radius = 20; + txtCustoTel.ShowText = false; + txtCustoTel.Size = new Size(159, 35); + txtCustoTel.Style = Sunny.UI.UIStyle.Custom; + txtCustoTel.StyleCustomMode = true; + txtCustoTel.TabIndex = 108; + txtCustoTel.TextAlignment = ContentAlignment.MiddleLeft; + txtCustoTel.Watermark = ""; // // label1 // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(30, 151); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(88, 25); - this.label1.TabIndex = 106; - this.label1.Text = "预约号码"; + label1.AutoSize = true; + label1.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label1.Location = new Point(30, 151); + label1.Name = "label1"; + label1.Size = new Size(88, 25); + label1.TabIndex = 106; + label1.Text = "预约号码"; // // label9 // - this.label9.AutoSize = true; - this.label9.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label9.Location = new System.Drawing.Point(30, 99); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(88, 25); - this.label9.TabIndex = 105; - this.label9.Text = "客户姓名"; + label9.AutoSize = true; + label9.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label9.Location = new Point(30, 99); + label9.Name = "label9"; + label9.Size = new Size(88, 25); + label9.TabIndex = 105; + label9.Text = "客户姓名"; // // cboReserWay // - this.cboReserWay.DataSource = null; - this.cboReserWay.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboReserWay.FillColor = System.Drawing.Color.White; - this.cboReserWay.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboReserWay.Items.AddRange(new object[] { - "前台", - "小程序", - "电话"}); - this.cboReserWay.Location = new System.Drawing.Point(122, 200); - this.cboReserWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboReserWay.MinimumSize = new System.Drawing.Size(63, 0); - this.cboReserWay.Name = "cboReserWay"; - this.cboReserWay.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboReserWay.Radius = 20; - this.cboReserWay.ReadOnly = true; - this.cboReserWay.Size = new System.Drawing.Size(159, 35); - this.cboReserWay.Style = Sunny.UI.UIStyle.Custom; - this.cboReserWay.TabIndex = 110; - this.cboReserWay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboReserWay.Watermark = ""; + cboReserWay.DataSource = null; + cboReserWay.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cboReserWay.FillColor = Color.White; + cboReserWay.Font = new Font("微软雅黑", 15.75F); + cboReserWay.ItemHoverColor = Color.FromArgb(155, 200, 255); + cboReserWay.Items.AddRange(new object[] { "前台", "小程序", "电话" }); + cboReserWay.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cboReserWay.Location = new Point(122, 200); + cboReserWay.Margin = new Padding(4, 5, 4, 5); + cboReserWay.MinimumSize = new Size(63, 0); + cboReserWay.Name = "cboReserWay"; + cboReserWay.Padding = new Padding(0, 0, 30, 2); + cboReserWay.Radius = 20; + cboReserWay.ReadOnly = true; + cboReserWay.Size = new Size(159, 35); + cboReserWay.Style = Sunny.UI.UIStyle.Custom; + cboReserWay.SymbolSize = 24; + cboReserWay.TabIndex = 110; + cboReserWay.TextAlignment = ContentAlignment.MiddleLeft; + cboReserWay.Watermark = ""; // // label10 // - this.label10.AutoSize = true; - this.label10.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label10.Location = new System.Drawing.Point(33, 203); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(88, 25); - this.label10.TabIndex = 109; - this.label10.Text = "预约渠道"; + label10.AutoSize = true; + label10.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label10.Location = new Point(33, 203); + label10.Name = "label10"; + label10.Size = new Size(88, 25); + label10.TabIndex = 109; + label10.Text = "预约渠道"; // // cboReserRoomNo // - this.cboReserRoomNo.DataSource = null; - this.cboReserRoomNo.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboReserRoomNo.FillColor = System.Drawing.Color.White; - this.cboReserRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboReserRoomNo.Location = new System.Drawing.Point(122, 253); - this.cboReserRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboReserRoomNo.MinimumSize = new System.Drawing.Size(63, 0); - this.cboReserRoomNo.Name = "cboReserRoomNo"; - this.cboReserRoomNo.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboReserRoomNo.Radius = 20; - this.cboReserRoomNo.Size = new System.Drawing.Size(159, 35); - this.cboReserRoomNo.Style = Sunny.UI.UIStyle.Custom; - this.cboReserRoomNo.TabIndex = 112; - this.cboReserRoomNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboReserRoomNo.Watermark = ""; + cboReserRoomNo.DataSource = null; + cboReserRoomNo.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + cboReserRoomNo.FillColor = Color.White; + cboReserRoomNo.Font = new Font("微软雅黑", 15.75F); + cboReserRoomNo.ItemHoverColor = Color.FromArgb(155, 200, 255); + cboReserRoomNo.ItemSelectForeColor = Color.FromArgb(235, 243, 255); + cboReserRoomNo.Location = new Point(122, 253); + cboReserRoomNo.Margin = new Padding(4, 5, 4, 5); + cboReserRoomNo.MinimumSize = new Size(63, 0); + cboReserRoomNo.Name = "cboReserRoomNo"; + cboReserRoomNo.Padding = new Padding(0, 0, 30, 2); + cboReserRoomNo.Radius = 20; + cboReserRoomNo.Size = new Size(159, 35); + cboReserRoomNo.Style = Sunny.UI.UIStyle.Custom; + cboReserRoomNo.SymbolSize = 24; + cboReserRoomNo.TabIndex = 112; + cboReserRoomNo.TextAlignment = ContentAlignment.MiddleLeft; + cboReserRoomNo.Watermark = ""; // // label11 // - this.label11.AutoSize = true; - this.label11.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label11.Location = new System.Drawing.Point(33, 255); - this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(88, 25); - this.label11.TabIndex = 111; - this.label11.Text = "预约房号"; + label11.AutoSize = true; + label11.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label11.Location = new Point(33, 255); + label11.Name = "label11"; + label11.Size = new Size(88, 25); + label11.TabIndex = 111; + label11.Text = "预约房号"; // - // dtpBouDate + // dtpBookDate // - this.dtpBouDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpBouDate.FillColor = System.Drawing.Color.White; - this.dtpBouDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpBouDate.Location = new System.Drawing.Point(122, 307); - this.dtpBouDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpBouDate.MaxLength = 10; - this.dtpBouDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpBouDate.Name = "dtpBouDate"; - this.dtpBouDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpBouDate.Radius = 20; - this.dtpBouDate.Size = new System.Drawing.Size(159, 31); - this.dtpBouDate.Style = Sunny.UI.UIStyle.Custom; - this.dtpBouDate.SymbolDropDown = 61555; - this.dtpBouDate.SymbolNormal = 61555; - this.dtpBouDate.TabIndex = 114; - this.dtpBouDate.Text = "2021-05-13"; - this.dtpBouDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpBouDate.Value = new System.DateTime(2021, 5, 13, 0, 0, 0, 0); - this.dtpBouDate.ValueChanged += new Sunny.UI.UIDatePicker.OnDateTimeChanged(this.dtpBouDate_ValueChanged); - this.dtpBouDate.TextChanged += new System.EventHandler(this.dtpBouDate_TextChanged); - this.dtpBouDate.Validated += new System.EventHandler(this.dtpBouDate_Validated); + dtpBookDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + dtpBookDate.FillColor = Color.White; + dtpBookDate.Font = new Font("Microsoft Sans Serif", 15.75F); + dtpBookDate.Location = new Point(122, 307); + dtpBookDate.Margin = new Padding(4, 5, 4, 5); + dtpBookDate.MaxLength = 10; + dtpBookDate.MinimumSize = new Size(63, 0); + dtpBookDate.Name = "dtpBookDate"; + dtpBookDate.Padding = new Padding(0, 0, 30, 2); + dtpBookDate.Radius = 20; + dtpBookDate.Size = new Size(159, 31); + dtpBookDate.Style = Sunny.UI.UIStyle.Custom; + dtpBookDate.SymbolDropDown = 61555; + dtpBookDate.SymbolNormal = 61555; + dtpBookDate.SymbolSize = 24; + dtpBookDate.TabIndex = 114; + dtpBookDate.Text = "2021-05-13"; + dtpBookDate.TextAlignment = ContentAlignment.MiddleLeft; + dtpBookDate.Value = new DateTime(2021, 5, 13, 0, 0, 0, 0); + dtpBookDate.Watermark = ""; // // label12 // - this.label12.AutoSize = true; - this.label12.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label12.Location = new System.Drawing.Point(30, 307); - this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(88, 25); - this.label12.TabIndex = 113; - this.label12.Text = "预约起始"; + label12.AutoSize = true; + label12.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label12.Location = new Point(30, 307); + label12.Name = "label12"; + label12.Size = new Size(88, 25); + label12.TabIndex = 113; + label12.Text = "预约起始"; // // dtpEndDate // - this.dtpEndDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpEndDate.FillColor = System.Drawing.Color.White; - this.dtpEndDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpEndDate.Location = new System.Drawing.Point(125, 356); - this.dtpEndDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpEndDate.MaxLength = 10; - this.dtpEndDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpEndDate.Name = "dtpEndDate"; - this.dtpEndDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpEndDate.Radius = 20; - this.dtpEndDate.ReadOnly = true; - this.dtpEndDate.Size = new System.Drawing.Size(156, 31); - this.dtpEndDate.Style = Sunny.UI.UIStyle.Custom; - this.dtpEndDate.SymbolDropDown = 61555; - this.dtpEndDate.SymbolNormal = 61555; - this.dtpEndDate.TabIndex = 116; - this.dtpEndDate.Text = "2021-05-13"; - this.dtpEndDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpEndDate.Value = new System.DateTime(2021, 5, 13, 0, 0, 0, 0); + dtpEndDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; + dtpEndDate.FillColor = Color.White; + dtpEndDate.Font = new Font("Microsoft Sans Serif", 15.75F); + dtpEndDate.Location = new Point(125, 356); + dtpEndDate.Margin = new Padding(4, 5, 4, 5); + dtpEndDate.MaxLength = 10; + dtpEndDate.MinimumSize = new Size(63, 0); + dtpEndDate.Name = "dtpEndDate"; + dtpEndDate.Padding = new Padding(0, 0, 30, 2); + dtpEndDate.Radius = 20; + dtpEndDate.Size = new Size(156, 31); + dtpEndDate.Style = Sunny.UI.UIStyle.Custom; + dtpEndDate.SymbolDropDown = 61555; + dtpEndDate.SymbolNormal = 61555; + dtpEndDate.SymbolSize = 24; + dtpEndDate.TabIndex = 116; + dtpEndDate.Text = "2021-05-13"; + dtpEndDate.TextAlignment = ContentAlignment.MiddleLeft; + dtpEndDate.Value = new DateTime(2021, 5, 13, 0, 0, 0, 0); + dtpEndDate.Watermark = ""; // // label13 // - this.label13.AutoSize = true; - this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label13.Location = new System.Drawing.Point(33, 359); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(88, 25); - this.label13.TabIndex = 115; - this.label13.Text = "预约止日"; + label13.AutoSize = true; + label13.Font = new Font("微软雅黑", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 134); + label13.Location = new Point(33, 359); + label13.Name = "label13"; + label13.Size = new Size(88, 25); + label13.TabIndex = 115; + label13.Text = "预约止日"; // // btnReser // - this.btnReser.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnReser.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnReser.Location = new System.Drawing.Point(109, 411); - this.btnReser.MinimumSize = new System.Drawing.Size(1, 1); - this.btnReser.Name = "btnReser"; - this.btnReser.Radius = 15; - this.btnReser.Size = new System.Drawing.Size(97, 35); - this.btnReser.Style = Sunny.UI.UIStyle.Custom; - this.btnReser.TabIndex = 117; - this.btnReser.Text = "预约"; - this.btnReser.Click += new System.EventHandler(this.btnReser_Click); + btnReser.Cursor = Cursors.Hand; + btnReser.Font = new Font("微软雅黑", 12F); + btnReser.Location = new Point(109, 411); + btnReser.MinimumSize = new Size(1, 1); + btnReser.Name = "btnReser"; + btnReser.Radius = 15; + btnReser.Size = new Size(97, 35); + btnReser.Style = Sunny.UI.UIStyle.Custom; + btnReser.TabIndex = 117; + btnReser.Text = "预约"; + btnReser.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); + btnReser.Click += btnReser_Click; // // FrmReserManager // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.ClientSize = new System.Drawing.Size(315, 461); - this.Controls.Add(this.btnReser); - this.Controls.Add(this.dtpEndDate); - this.Controls.Add(this.label13); - this.Controls.Add(this.dtpBouDate); - this.Controls.Add(this.label12); - this.Controls.Add(this.cboReserRoomNo); - this.Controls.Add(this.label11); - this.Controls.Add(this.cboReserWay); - this.Controls.Add(this.label10); - this.Controls.Add(this.txtCustoName); - this.Controls.Add(this.txtCustoTel); - this.Controls.Add(this.label1); - this.Controls.Add(this.label9); - this.Controls.Add(this.btnReserList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "FrmReserManager"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "预约管理"; - this.Load += new System.EventHandler(this.FrmRoomManager_Load); - this.ResumeLayout(false); - this.PerformLayout(); - + AutoScaleMode = AutoScaleMode.None; + BackColor = Color.FromArgb(235, 243, 255); + BackgroundImageLayout = ImageLayout.Stretch; + ClientSize = new Size(315, 461); + Controls.Add(btnReser); + Controls.Add(dtpEndDate); + Controls.Add(label13); + Controls.Add(dtpBookDate); + Controls.Add(label12); + Controls.Add(cboReserRoomNo); + Controls.Add(label11); + Controls.Add(cboReserWay); + Controls.Add(label10); + Controls.Add(txtCustoName); + Controls.Add(txtCustoTel); + Controls.Add(label1); + Controls.Add(label9); + Controls.Add(btnReserList); + Icon = (Icon)resources.GetObject("$this.Icon"); + Name = "FrmReserManager"; + ShowTitleIcon = true; + Style = Sunny.UI.UIStyle.Custom; + Text = "预约管理"; + ZoomScaleRect = new Rectangle(15, 15, 315, 461); + Load += FrmRoomManager_Load; + ResumeLayout(false); + PerformLayout(); } #endregion @@ -302,7 +303,7 @@ private System.Windows.Forms.Label label10; private Sunny.UI.UIComboBox cboReserRoomNo; private System.Windows.Forms.Label label11; - private Sunny.UI.UIDatePicker dtpBouDate; + private Sunny.UI.UIDatePicker dtpBookDate; private System.Windows.Forms.Label label12; private Sunny.UI.UIDatePicker dtpEndDate; private System.Windows.Forms.Label label13; diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs index a40a77c98f92a0ce282965212365831a6f33fb9b..a4126c869e5be160cdf3f6494da6fc32051fc4e0 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs @@ -22,8 +22,11 @@ * */ using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Contract; using EOM.TSHotelManagement.Common.Core; +using jvncorelib.CodeLib; using Sunny.UI; +using System.Transactions; namespace EOM.TSHotelManagement.FormUI { @@ -45,69 +48,67 @@ namespace EOM.TSHotelManagement.FormUI private void btnReser_Click(object sender, EventArgs e) { - Random random = new Random(); - string reserid = ApplicationUtil.GetListNewId("R", 3, 1, "-").FirstOrDefault(); - Reser reser = new Reser() - { - ReserId = reserid, - CustoName = txtCustoName.Text.Trim(), - CustoTel = txtCustoTel.Text.Trim(), - ReserWay = cboReserWay.Text, - ReserRoom = cboReserRoomNo.Text, - ReserDate = dtpBouDate.Value, - ReserEndDay = dtpEndDate.Value, - datains_usr = LoginInfo.WorkerNo - }; - Room room = new Room() - { - RoomNo = cboReserRoomNo.Text, - RoomStateId = 4 - }; - result = HttpHelper.Request("Reser​/InserReserInfo", HttpHelper.ModelToJson(reser)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InserReserInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool result1 = result.message.ToString().Equals("true"); - result = HttpHelper.Request("Room​/UpdateRoomInfoWithReser", HttpHelper.ModelToJson(room)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateRoomInfoWithReser+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool result2 = result.message.ToString().Equals("true"); - - if (result1 && result2) + using (TransactionScope scope = new TransactionScope()) { + string reserid = new UniqueCode().GetNewId("R-"); + CreateReserInputDto reser = new CreateReserInputDto() + { + ReservationId = reserid, + CustomerName = txtCustoName.Text.Trim(), + ReservationPhoneNumber = txtCustoTel.Text.Trim(), + ReservationChannel = cboReserWay.Text, + ReservationRoomNumber = cboReserRoomNo.Text, + ReservationStartDate = dtpBookDate.Value, + ReservationEndDate = dtpEndDate.Value, + DataInsUsr = LoginInfo.WorkerNo, + DataInsDate = DateTime.Now + }; + UpdateRoomInputDto room = new UpdateRoomInputDto() + { + RoomNumber = cboReserRoomNo.Text, + RoomStateId = (int)RoomState.Reserved, + DataInsDate = DateTime.Now, + DataInsUsr = LoginInfo.WorkerNo + }; + result = HttpHelper.Request(ApiConstants.Reser_InsertReserInfo, HttpHelper.ModelToJson(reser)); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Reser_InsertReserInfo}+接口服务异常,请提交Issue或尝试更新版本!"); + return; + } + result = HttpHelper.Request(ApiConstants.Room_UpdateRoomInfoWithReser, HttpHelper.ModelToJson(room)); + response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Room_UpdateRoomInfoWithReser}+接口服务异常,请提交Issue或尝试更新版本!"); + return; + } UIMessageBox.ShowSuccess("预约成功!请在指定时间内进行登记入住"); #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "帮助" + txtCustoTel.Text + "进行了预订房间操作!", 1); + RecordHelper.Record(LoginInfo.WorkerClub + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "帮助" + txtCustoTel.Text + "进行了预订房间操作!", Common.Core.LogLevel.Normal); #endregion + scope.Complete(); FrmRoomManager.Reload(""); this.Close(); } - else - { - UIMessageBox.ShowError("预约失败!服务器繁忙"); - return; - } } private void FrmRoomManager_Load(object sender, EventArgs e) { cboReserWay.SelectedIndex = 0; - result = HttpHelper.Request("Room/SelectCanUseRoomAll"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_SelectCanUseRoomAll); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectCanUseRoomAll+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_SelectCanUseRoomAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - cboReserRoomNo.DataSource = HttpHelper.JsonToList(result.message); - cboReserRoomNo.DisplayMember = "RoomNo"; - cboReserRoomNo.ValueMember = "RoomNo"; + cboReserRoomNo.DataSource = response.listSource; + cboReserRoomNo.DisplayMember = nameof(ReadRoomOutputDto.RoomNumber); + cboReserRoomNo.ValueMember = nameof(ReadRoomOutputDto.RoomNumber); cboReserRoomNo.Text = ucRoom.co_RoomNo; - dtpBouDate.Value = Convert.ToDateTime(DateTime.Now); + dtpBookDate.Value = Convert.ToDateTime(DateTime.Now); } private void btnReserList_Click(object sender, EventArgs e) @@ -115,20 +116,5 @@ namespace EOM.TSHotelManagement.FormUI FrmReserList frm = new FrmReserList(); frm.Show(); } - - private void dtpBouDate_ValueChanged(object sender, DateTime value) - { - dtpEndDate.Value = dtpBouDate.Value.AddDays(3); - } - - private void dtpBouDate_TextChanged(object sender, EventArgs e) - { - dtpEndDate.Value = dtpBouDate.Value.AddDays(3); - } - - private void dtpBouDate_Validated(object sender, EventArgs e) - { - dtpEndDate.Value = dtpBouDate.Value.AddDays(3); - } } } \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.resx index 16bf37dc3e2f046e67220b0f69e2ae1284b5c2da..a1df40863be295616250c00434f37a2f230cf73f 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.resx +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.resx @@ -1,17 +1,17 @@  - diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.Designer.cs deleted file mode 100644 index c5cacc98dd3a52a5ec74bf89bc9df336f0a74751..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.Designer.cs +++ /dev/null @@ -1,406 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI.AppFunction -{ - partial class FrmRoomConfig - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmRoomConfig)); - this.btnDeleteRoomType = new Sunny.UI.UIButton(); - this.btnUpdateRoomType = new Sunny.UI.UIButton(); - this.btnAddRoomType = new Sunny.UI.UIButton(); - this.label7 = new System.Windows.Forms.Label(); - this.txtRoomTypeName = new Sunny.UI.UITextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.txtRoomTypeId = new Sunny.UI.UITextBox(); - this.dgvRoomTypeList = new Sunny.UI.UIDataGridView(); - this.label1 = new System.Windows.Forms.Label(); - this.dudRent = new Sunny.UI.UIDoubleUpDown(); - this.label2 = new System.Windows.Forms.Label(); - this.dudDeposit = new Sunny.UI.UIDoubleUpDown(); - this.clRoomType = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clRoomTypeName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clRoomRent = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clRoomDeposit = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeleteMk = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clDeleteMark = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dgvRoomTypeList)).BeginInit(); - this.SuspendLayout(); - // - // btnDeleteRoomType - // - this.btnDeleteRoomType.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnDeleteRoomType.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnDeleteRoomType.Location = new System.Drawing.Point(821, 519); - this.btnDeleteRoomType.MinimumSize = new System.Drawing.Size(1, 1); - this.btnDeleteRoomType.Name = "btnDeleteRoomType"; - this.btnDeleteRoomType.Radius = 20; - this.btnDeleteRoomType.Size = new System.Drawing.Size(165, 33); - this.btnDeleteRoomType.TabIndex = 206; - this.btnDeleteRoomType.Text = "删除状态"; - this.btnDeleteRoomType.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnDeleteRoomType.Click += new System.EventHandler(this.btnDeleteRoomType_Click); - // - // btnUpdateRoomType - // - this.btnUpdateRoomType.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdateRoomType.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdateRoomType.Location = new System.Drawing.Point(821, 470); - this.btnUpdateRoomType.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdateRoomType.Name = "btnUpdateRoomType"; - this.btnUpdateRoomType.Radius = 20; - this.btnUpdateRoomType.Size = new System.Drawing.Size(165, 33); - this.btnUpdateRoomType.TabIndex = 205; - this.btnUpdateRoomType.Text = "更新状态"; - this.btnUpdateRoomType.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnUpdateRoomType.Click += new System.EventHandler(this.btnUpdateRoomType_Click); - // - // btnAddRoomType - // - this.btnAddRoomType.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAddRoomType.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAddRoomType.Location = new System.Drawing.Point(821, 421); - this.btnAddRoomType.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAddRoomType.Name = "btnAddRoomType"; - this.btnAddRoomType.Radius = 20; - this.btnAddRoomType.Size = new System.Drawing.Size(165, 33); - this.btnAddRoomType.TabIndex = 204; - this.btnAddRoomType.Text = "新增状态"; - this.btnAddRoomType.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnAddRoomType.Click += new System.EventHandler(this.btnAddRoomType_Click); - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label7.Location = new System.Drawing.Point(859, 169); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(85, 19); - this.label7.TabIndex = 203; - this.label7.Text = "状态描述"; - // - // txtRoomTypeName - // - this.txtRoomTypeName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRoomTypeName.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRoomTypeName.Location = new System.Drawing.Point(821, 204); - this.txtRoomTypeName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRoomTypeName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRoomTypeName.Name = "txtRoomTypeName"; - this.txtRoomTypeName.Padding = new System.Windows.Forms.Padding(5); - this.txtRoomTypeName.Radius = 20; - this.txtRoomTypeName.ShowText = false; - this.txtRoomTypeName.Size = new System.Drawing.Size(165, 29); - this.txtRoomTypeName.Style = Sunny.UI.UIStyle.Custom; - this.txtRoomTypeName.StyleCustomMode = true; - this.txtRoomTypeName.TabIndex = 202; - this.txtRoomTypeName.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.txtRoomTypeName.Watermark = ""; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(859, 89); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(85, 19); - this.label20.TabIndex = 201; - this.label20.Text = "状态编码"; - // - // txtRoomTypeId - // - this.txtRoomTypeId.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRoomTypeId.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRoomTypeId.Location = new System.Drawing.Point(821, 124); - this.txtRoomTypeId.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRoomTypeId.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRoomTypeId.Name = "txtRoomTypeId"; - this.txtRoomTypeId.Padding = new System.Windows.Forms.Padding(5); - this.txtRoomTypeId.Radius = 20; - this.txtRoomTypeId.ShowText = false; - this.txtRoomTypeId.Size = new System.Drawing.Size(165, 29); - this.txtRoomTypeId.Style = Sunny.UI.UIStyle.Custom; - this.txtRoomTypeId.StyleCustomMode = true; - this.txtRoomTypeId.TabIndex = 200; - this.txtRoomTypeId.Text = "0"; - this.txtRoomTypeId.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.txtRoomTypeId.Type = Sunny.UI.UITextBox.UIEditType.Integer; - this.txtRoomTypeId.Watermark = ""; - // - // dgvRoomTypeList - // - this.dgvRoomTypeList.AllowUserToAddRows = false; - this.dgvRoomTypeList.AllowUserToDeleteRows = false; - this.dgvRoomTypeList.AllowUserToResizeColumns = false; - this.dgvRoomTypeList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvRoomTypeList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvRoomTypeList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvRoomTypeList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvRoomTypeList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvRoomTypeList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvRoomTypeList.ColumnHeadersHeight = 32; - this.dgvRoomTypeList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvRoomTypeList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clRoomType, - this.clRoomTypeName, - this.clRoomRent, - this.clRoomDeposit, - this.clDeleteMk, - this.clDeleteMark, - this.Column2, - this.Column3, - this.Column4, - this.Column5}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvRoomTypeList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvRoomTypeList.EnableHeadersVisualStyles = false; - this.dgvRoomTypeList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvRoomTypeList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvRoomTypeList.Location = new System.Drawing.Point(3, 38); - this.dgvRoomTypeList.MultiSelect = false; - this.dgvRoomTypeList.Name = "dgvRoomTypeList"; - this.dgvRoomTypeList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvRoomTypeList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvRoomTypeList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvRoomTypeList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvRoomTypeList.RowTemplate.Height = 29; - this.dgvRoomTypeList.SelectedIndex = -1; - this.dgvRoomTypeList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvRoomTypeList.Size = new System.Drawing.Size(788, 582); - this.dgvRoomTypeList.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvRoomTypeList.TabIndex = 199; - this.dgvRoomTypeList.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvRoomTypeList_CellMouseClick); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(859, 249); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(85, 19); - this.label1.TabIndex = 208; - this.label1.Text = "租金配置"; - // - // dudRent - // - this.dudRent.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.dudRent.Location = new System.Drawing.Point(821, 284); - this.dudRent.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dudRent.MinimumSize = new System.Drawing.Size(100, 0); - this.dudRent.Name = "dudRent"; - this.dudRent.Radius = 20; - this.dudRent.ShowText = false; - this.dudRent.Size = new System.Drawing.Size(165, 35); - this.dudRent.Step = 1D; - this.dudRent.TabIndex = 209; - this.dudRent.Text = null; - this.dudRent.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(859, 335); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(85, 19); - this.label2.TabIndex = 210; - this.label2.Text = "押金配置"; - // - // dudDeposit - // - this.dudDeposit.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.dudDeposit.Location = new System.Drawing.Point(821, 370); - this.dudDeposit.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dudDeposit.MinimumSize = new System.Drawing.Size(100, 0); - this.dudDeposit.Name = "dudDeposit"; - this.dudDeposit.Radius = 20; - this.dudDeposit.ShowText = false; - this.dudDeposit.Size = new System.Drawing.Size(165, 35); - this.dudDeposit.Step = 1D; - this.dudDeposit.TabIndex = 211; - this.dudDeposit.Text = null; - this.dudDeposit.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - // - // clRoomType - // - this.clRoomType.DataPropertyName = "Roomtype"; - this.clRoomType.HeaderText = "状态编码"; - this.clRoomType.Name = "clRoomType"; - this.clRoomType.ReadOnly = true; - // - // clRoomTypeName - // - this.clRoomTypeName.DataPropertyName = "RoomName"; - this.clRoomTypeName.HeaderText = "状态描述"; - this.clRoomTypeName.Name = "clRoomTypeName"; - this.clRoomTypeName.ReadOnly = true; - // - // clRoomRent - // - this.clRoomRent.DataPropertyName = "RoomRent"; - this.clRoomRent.HeaderText = "租金"; - this.clRoomRent.Name = "clRoomRent"; - this.clRoomRent.ReadOnly = true; - // - // clRoomDeposit - // - this.clRoomDeposit.DataPropertyName = "RoomDeposit"; - this.clRoomDeposit.HeaderText = "押金"; - this.clRoomDeposit.Name = "clRoomDeposit"; - this.clRoomDeposit.ReadOnly = true; - // - // clDeleteMk - // - this.clDeleteMk.DataPropertyName = "DeleteMkNm"; - this.clDeleteMk.HeaderText = "删除标记"; - this.clDeleteMk.Name = "clDeleteMk"; - this.clDeleteMk.ReadOnly = true; - // - // clDeleteMark - // - this.clDeleteMark.DataPropertyName = "delete_mk"; - this.clDeleteMark.HeaderText = "Column1"; - this.clDeleteMark.Name = "clDeleteMark"; - this.clDeleteMark.ReadOnly = true; - this.clDeleteMark.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_usr"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_date"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // FrmRoomConfig - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.Controls.Add(this.label2); - this.Controls.Add(this.dudDeposit); - this.Controls.Add(this.label1); - this.Controls.Add(this.btnDeleteRoomType); - this.Controls.Add(this.dudRent); - this.Controls.Add(this.btnUpdateRoomType); - this.Controls.Add(this.btnAddRoomType); - this.Controls.Add(this.label7); - this.Controls.Add(this.txtRoomTypeName); - this.Controls.Add(this.label20); - this.Controls.Add(this.txtRoomTypeId); - this.Controls.Add(this.dgvRoomTypeList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "FrmRoomConfig"; - this.ShowTitleIcon = true; - this.Text = "客房配置"; - this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 800, 450); - this.Load += new System.EventHandler(this.FrmRoomConfig_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvRoomTypeList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UIButton btnDeleteRoomType; - private Sunny.UI.UIButton btnUpdateRoomType; - private Sunny.UI.UIButton btnAddRoomType; - private System.Windows.Forms.Label label7; - private Sunny.UI.UITextBox txtRoomTypeName; - private System.Windows.Forms.Label label20; - private Sunny.UI.UITextBox txtRoomTypeId; - private Sunny.UI.UIDataGridView dgvRoomTypeList; - private System.Windows.Forms.Label label1; - private Sunny.UI.UIDoubleUpDown dudRent; - private System.Windows.Forms.Label label2; - private Sunny.UI.UIDoubleUpDown dudDeposit; - private System.Windows.Forms.DataGridViewTextBoxColumn clRoomType; - private System.Windows.Forms.DataGridViewTextBoxColumn clRoomTypeName; - private System.Windows.Forms.DataGridViewTextBoxColumn clRoomRent; - private System.Windows.Forms.DataGridViewTextBoxColumn clRoomDeposit; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeleteMk; - private System.Windows.Forms.DataGridViewTextBoxColumn clDeleteMark; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.cs deleted file mode 100644 index 4b5c2a72863bf5dcd8271a74240e7e0dfee90dac..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.cs +++ /dev/null @@ -1,181 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.Common.Util; -using jvncorelib.EntityLib; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI.AppFunction -{ - public partial class FrmRoomConfig : UIForm - { - public FrmRoomConfig() - { - InitializeComponent(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - public void LoadRoomType() - { - result = HttpHelper.Request("RoomType/SelectRoomTypesAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomTypesAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List roomTypes = HttpHelper.JsonToList(result.message); - dgvRoomTypeList.AutoGenerateColumns = false; - dgvRoomTypeList.DataSource = roomTypes; - } - - private void FrmRoomConfig_Load(object sender, EventArgs e) - { - LoadRoomType(); - } - - private void btnAddRoomType_Click(object sender, EventArgs e) - { - dic = new Dictionary - { - { "roomTypeId",txtRoomTypeId.IntValue.ToString()} - }; - var result = HttpHelper.Request("RoomType/SelectRoomTypeByType", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomTypeByType+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var roomType = HttpHelper.JsonToModel(result.message); - if (!roomType.IsNullOrEmpty()) - { - UIMessageBox.ShowError("房间状态已存在,请重新检查"); - txtRoomTypeId.IntValue = 0; - txtRoomTypeName.Text = null; - dudDeposit.Value = 0; - dudRent.Value = 0; - return; - } - roomType = new RoomType - { - Roomtype = txtRoomTypeId.IntValue, - RoomName = txtRoomTypeName.Text.Trim(), - RoomRent = Convert.ToDecimal(dudRent.Value), - RoomDeposit = Convert.ToDecimal(dudDeposit.Value), - delete_mk = 0, - datains_usr = AdminInfo.Account - }; - if (ValidateHelper.Validate(roomType)) - { - result = HttpHelper.Request("RoomType/InsertRoomType", HttpHelper.ModelToJson(roomType)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertRoomType+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - UIMessageBox.ShowSuccess("提交成功,房间状态已添加!"); - RecordHelper.Record(AdminInfo.Account + AdminInfo.Name + "于" + Convert.ToDateTime(DateTime.Now) + "新增了房间状态,状态编码为:" + txtRoomTypeId.IntValue, 2); - txtRoomTypeId.IntValue = 0; - txtRoomTypeName.Text = null; - dudDeposit.Value = 0; - dudRent.Value = 0; - LoadRoomType(); - return; - } - UIMessageBox.ShowError("字段校验未通过,请检查"); - return; - } - - private void btnUpdateRoomType_Click(object sender, EventArgs e) - { - var roomType = new RoomType - { - Roomtype = txtRoomTypeId.IntValue, - RoomName = txtRoomTypeName.Text.Trim(), - RoomRent = Convert.ToDecimal(dudRent.Value), - RoomDeposit = Convert.ToDecimal(dudDeposit.Value), - delete_mk = 0, - datachg_usr = AdminInfo.Account - }; - if (ValidateHelper.Validate(roomType)) - { - result = HttpHelper.Request("RoomType/UpdateRoomType", HttpHelper.ModelToJson(roomType)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateRoomType+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - UIMessageBox.ShowSuccess("提交成功,状态信息已修改!"); - RecordHelper.Record(AdminInfo.Account + AdminInfo.Name + "于" + Convert.ToDateTime(DateTime.Now) + "修改了房间状态配置,状态编码为:" + txtRoomTypeId.IntValue, 2); - LoadRoomType(); - txtRoomTypeId.IntValue = 0; - txtRoomTypeName.Text = null; - dudDeposit.Value = 0; - dudRent.Value = 0; - return; - } - UIMessageBox.ShowError("字段校验未通过,请检查"); - return; - } - - private void btnDeleteRoomType_Click(object sender, EventArgs e) - { - var deleteMk = Convert.ToInt32(dgvRoomTypeList.SelectedRows[0].Cells["clDeleteMark"].Value); - var roomType = new RoomType - { - Roomtype = txtRoomTypeId.IntValue, - RoomName = txtRoomTypeName.Text.Trim(), - RoomRent = Convert.ToDecimal(dudRent.Value), - RoomDeposit = Convert.ToDecimal(dudDeposit.Value), - delete_mk = deleteMk == 0 ? 1 : 0, - datachg_usr = AdminInfo.Account - }; - if (ValidateHelper.Validate(roomType)) - { - result = HttpHelper.Request("RoomType/DeleteRoomType", HttpHelper.ModelToJson(roomType)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("DeleteRoomType+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - UIMessageBox.ShowSuccess("提交成功,状态信息已删除!"); - RecordHelper.Record(AdminInfo.Account + AdminInfo.Name + "于" + Convert.ToDateTime(DateTime.Now) + "删除了房间状态配置,状态编码为:" + txtRoomTypeId.IntValue, 2); - LoadRoomType(); - return; - } - UIMessageBox.ShowError("字段校验未通过,请检查"); - return; - } - - private void dgvRoomTypeList_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) - { - txtRoomTypeId.IntValue = Convert.ToInt32(dgvRoomTypeList.SelectedRows[0].Cells["clRoomType"].Value); - txtRoomTypeName.Text = dgvRoomTypeList.SelectedRows[0].Cells["clRoomTypeName"].Value.ToString(); - dudRent.Value = Convert.ToDouble(dgvRoomTypeList.SelectedRows[0].Cells["clRoomRent"].Value); - dudDeposit.Value = Convert.ToDouble(dgvRoomTypeList.SelectedRows[0].Cells["clRoomDeposit"].Value); - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.resx deleted file mode 100644 index d3e8c104349e92cbb15c8e7b593838d75bd0bfc5..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.resx +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////VP///6v///////////////////////////////////////////// - /////////////////////////////////////////////////////////////////4n///9OAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+t//////////////////////////////////////// - //////////////////////////////////////////////////////////////////////////////// - /78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Iv//////////////v////7////+/////v/// - /7////+/////v////7////+/////v////7////+/////v////7////+/////v////7////+/////v/// - /7///////////////ywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A//////////////+BAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////gf//////////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0D///////////// - /4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAD///+B//////////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP// - ////////////gQAAAAD///9A////QP///0D///9A////QP///0D///9A////QP///0D///9A////QP// - /0D///9A////QP///0AAAAAAAAAAAP///4H//////////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAD///9A//////////////+BAAAAAP////////////////////////////////////////////////// - /////////////////////////////////4EAAAAA////gf//////////////QAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAP///0D//////////////4EAAAAA//////////////////////////////////////// - ////////////////////////////////////////////gQAAAAD///+B//////////////9AAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////QP//////////////gQAAAAD///+B////fv///4H///+B////gf// - /4H///+B////gf///4H///+B////gf///4H///+B////gf///4H///8qAAAAAP///4H///////////// - /0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A//////////////+BAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////gf// - ////////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///0D//////////////4EAAAAAAAAAAP// - /yD////V////9////+X////R////v////1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAD///+B//////////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////QP//////////////gQAA - AAAAAAAA////Nv///////////////////////////////////1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAP///4H//////////////0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9A//////// - //////+BAAAAAAAAAAD///8m//////////////9U////eP////3//////////////1QAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////gf//////////////QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /0D//////////////4EAAAAAAAAAAP///xT//////////////zYAAAAA////Tv////f///////////// - /1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+B//////////////9AAAAAAAAAAAAAAAAAAAAAAAAA - AAD///8u////QP//////////////gQAAAAAAAAAA////BP///9//////////qwAAAAAAAAAA////SP// - /+///////////////1QAAAAAAAAAAAAAAAAAAAAAAAAAAP///4H//////////////0D///8oAAAAAAAA - AAD///8Y////y/////////////////////////+BAAAAAAAAAAAAAAAA////VP//////////////qwAA - AAAAAAAA////QP///+n//////////////1QAAAAAAAAAAAAAAAAAAAAA////gf////////////////// - ///////H////Fv///6///////////////////////////////4EAAAAAAAAAAAAAAAAAAAAA////VP// - ////////////qwAAAAAAAAAA////OP///+P//////////////1QAAAAAAAAAAAAAAAD///+B//////// - //////////////////////+t////7f/////////n////QP///0D///9A////QAAAAAAAAAAAAAAAAAAA - AAAAAAAA////VP//////////////qwAAAAAAAAAA////Mv///93//////////////1QAAAAAAAAAAP// - /0D///9A////QP///0D////r//////////H///+n////////////////////RgAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////VP//////////////qwAAAAAAAAAA////LP///9f/////////3wAA - AAAAAAAAAAAAAAAAAAD///9O////////////////////gQAAAAD///+v////////////////////ZAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////VP//////////////qwAAAAD///9i//////// - ///////JAAAAAAAAAAAAAAAA////dv///////////////////7UAAAAAAAAAAAAAAAD///+F//////// - ////////////gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////VP//////////////q/// - ////////////yf///yIAAAAAAAAAAP///53///////////////////+VAAAAAAAAAAAAAAAAAAAAAAAA - AAD///9a////////////////////owAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////VP// - /////////////////7v///8WAAAAAAAAAAD///+3////////////////////dAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAD///84////////////////////wf///xwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////VP///9////+r////CgAAAAD///8m////z////////////////////1YAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8k////7///////////////3////zgAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Tv///+f///////////////X///82AAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8O////xf///////////////f// - /1QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///2r////////////////////Z////FgAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////m/// - /////////////////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+D////////////////////vwAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////g////////////////////48AAAAAAAAAAAAAAAAAAAAA////m/////////////////// - /6MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////bv///////////////////6v///8c////Hv///7H///////////// - //////+HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wv///////////////////8f////J//////// - ////////////agAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Rv///+P///////////// - ////////////5////04AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////MP// - /5/////f////2////5n///80AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA+AAAH/AAAA/wAAAP8f//j/H//4/x//+P8QAAj/EAAI/xQAGP8f//j/HB - /4/xwP+P8cx/j/HOP4/xxx+PgeOPgQHxx4Af+OP4D/xx8If+MeHB/wOD8P+HD/h/zh/8P/w//h/4f/8P - 4P//g8H//+GD///wD///+B////w///////8= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs index 4ade855c3d9dbe73e3c3c7797f41c641f2fb3bf2..242e6101ceb0c27758476a208f091c5695439f5a 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs @@ -24,16 +24,18 @@ using AntdUI; using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Contract; using EOM.TSHotelManagement.Common.Core; using EOM.TSHotelManagement.FormUI.AppUserControls; using EOM.TSHotelManagement.FormUI.Properties; +using EOM.TSHotelManagement.Shared; using Sunny.UI; namespace EOM.TSHotelManagement.FormUI { public partial class FrmRoomManager : Form { - + public delegate void ReLoadRoomList(string typeName); @@ -59,75 +61,90 @@ namespace EOM.TSHotelManagement.FormUI Dictionary dic = null; ResponseMsg result = null; - List romsty = null; + List romsty = null; ucRoom room = null; - string EmptyCount; - string OccupiedCount; - string UnderRepairCount; - string ReservedCount; - string DirtyCount; - #region 房间加载事件方法 + + + public static int EmptyCount = 0; + public static int OccupiedCount = 0; + public static int DirtyCount = 0; + public static int UnderRepairCount = 0; + public static int ReservedCount = 0; + private void FrmRoomManager_Load(object sender, EventArgs e) { - loadingProgress.Show(); LoadRoomInfo(); LoadRoomTypesAndStates(); LoadRoomTypes(); LoadData(); - loadingProgress.Close(); } - #endregion - private void LoadRoomTypesAndStates() { try { - EmptyCount = "0"; - OccupiedCount = "0"; - DirtyCount = "0"; - UnderRepairCount = "0"; - ReservedCount = "0"; + EmptyCount = 0; + OccupiedCount = 0; + DirtyCount = 0; + UnderRepairCount = 0; + ReservedCount = 0; - var requests = new Dictionary? parameters)> + var statusCounts = new Dictionary { - { "Room/SelectCanUseRoomAllByRoomState", (null, null) }, - { "Room/SelectNotUseRoomAllByRoomState", (null, null) }, - { "Room/SelectNotClearRoomAllByRoomState", (null, null) }, - { "Room/SelectFixingRoomAllByRoomState", (null, null) }, - { "Room/SelectReseredRoomAllByRoomState", (null, null) } + [nameof(EmptyCount)] = 0, + [nameof(OccupiedCount)] = 0, + [nameof(DirtyCount)] = 0, + [nameof(UnderRepairCount)] = 0, + [nameof(ReservedCount)] = 0 }; - var results = HttpHelper.RaiseBatchRequest(requests); - - if (results["Room/SelectCanUseRoomAllByRoomState"].statusCode != 200) + var requestConfigs = new[] { - throw new Exception("SelectCanUseRoomAllByRoomState+接口服务异常"); - } - EmptyCount = results["Room/SelectCanUseRoomAllByRoomState"].message!; - - if (results["Room/SelectNotUseRoomAllByRoomState"].statusCode != 200) - { - throw new Exception("SelectNotUseRoomAllByRoomState+接口服务异常"); - } - OccupiedCount = results["Room/SelectNotUseRoomAllByRoomState"].message!; - - if (results["Room/SelectNotClearRoomAllByRoomState"].statusCode != 200) - { - throw new Exception("SelectNotClearRoomAllByRoomState+接口服务异常"); - } - DirtyCount = results["Room/SelectNotClearRoomAllByRoomState"].message!; + (ApiConstants.Room_SelectCanUseRoomAllByRoomState, nameof(RoomState.Vacant), nameof(EmptyCount)), + (ApiConstants.Room_SelectNotUseRoomAllByRoomState, nameof(RoomState.Occupied), nameof(OccupiedCount)), + (ApiConstants.Room_SelectNotClearRoomAllByRoomState, nameof(RoomState.Dirty), nameof(DirtyCount)), + (ApiConstants.Room_SelectFixingRoomAllByRoomState, nameof(RoomState.Maintenance), nameof(UnderRepairCount)), + (ApiConstants.Room_SelectReservedRoomAllByRoomState, nameof(RoomState.Reserved), nameof(ReservedCount)) + }; - if (results["Room/SelectFixingRoomAllByRoomState"].statusCode != 200) + foreach (var (url, propertyName, targetVar) in requestConfigs) { - throw new Exception("SelectFixingRoomAllByRoomState+接口服务异常"); + try + { + var httpResponse = HttpHelper.Request(url); + + var response = HttpHelper.JsonToModel>(httpResponse.message); + + if (response.StatusCode != StatusCodeConstants.Success) + { + throw new HttpRequestException($"{url} 请求失败,状态码:{response.StatusCode}"); + } + + var propertyInfo = typeof(ReadRoomOutputDto).GetProperty(propertyName); + if (propertyInfo == null) + { + throw new MissingFieldException($"ReadRoomOutputDto 中未找到 {propertyName} 属性"); + } + + if (propertyInfo.GetValue(response.Source) is int countValue) + { + statusCounts[targetVar] = countValue; + } + else + { + throw new InvalidCastException($"{propertyName} 值类型不匹配"); + } + } + catch (Exception ex) + { + throw new AggregateException($"处理 {url} 时发生错误", ex); + } } - UnderRepairCount = results["Room/SelectFixingRoomAllByRoomState"].message!; - if (results["Room/SelectReseredRoomAllByRoomState"].statusCode != 200) - { - throw new Exception("SelectReseredRoomAllByRoomState+接口服务异常"); - } - ReservedCount = results["Room/SelectReseredRoomAllByRoomState"].message!; + EmptyCount = statusCounts[nameof(EmptyCount)]; + OccupiedCount = statusCounts[nameof(OccupiedCount)]; + DirtyCount = statusCounts[nameof(DirtyCount)]; + UnderRepairCount = statusCounts[nameof(UnderRepairCount)]; + ReservedCount = statusCounts[nameof(ReservedCount)]; LoadRoomState(); } @@ -141,7 +158,15 @@ namespace EOM.TSHotelManagement.FormUI { muRoomState.Items.Clear(); - var stateList = RoomStateConstant.GetAll().ToList(); + var stateList = Enum.GetValues(typeof(RoomState)) + .Cast() + .Select(e => new EnumDto + { + Id = (int)e, + Name = e.ToString(), + Description = new EnumHelper().GetEnumDescription(e) + }) + .ToList(); MenuItem? menuItem = null; if (!stateList.IsNullOrEmpty()) { @@ -149,14 +174,14 @@ namespace EOM.TSHotelManagement.FormUI { menuItem = new MenuItem { - Text = item.Description + GetRoomCountText(item.Code), - Tag = item.Code + Text = item.Description + GetRoomCountText(item.Name), + ID = item.Id.ToString(), }; - var roomState = RoomStateConstant.GetConstantByCode(item.Code); + var roomState = new EnumHelper().GetEnumValue(item.Id); if (roomState != null) { - menuItem.Icon = GetRoomCountIcon(roomState.Code); + menuItem.Icon = GetRoomCountIcon(roomState); } muRoomState.Items.Add(menuItem); @@ -168,24 +193,24 @@ namespace EOM.TSHotelManagement.FormUI { return code switch { - var c when c == RoomStateConstant.Empty.Code => $"({EmptyCount})", - var c when c == RoomStateConstant.Occupied.Code => $"({OccupiedCount})", - var c when c == RoomStateConstant.UnderRepair.Code => $"({UnderRepairCount})", - var c when c == RoomStateConstant.Dirty.Code => $"({DirtyCount})", - var c when c == RoomStateConstant.Reserved.Code => $"({ReservedCount})", + var c when c == RoomState.Vacant.ToString() => $"({EmptyCount})", + var c when c == RoomState.Occupied.ToString() => $"({OccupiedCount})", + var c when c == RoomState.Maintenance.ToString() => $"({UnderRepairCount})", + var c when c == RoomState.Dirty.ToString() => $"({DirtyCount})", + var c when c == RoomState.Reserved.ToString() => $"({ReservedCount})", _ => string.Empty }; } - private Bitmap? GetRoomCountIcon(string code) + private Bitmap? GetRoomCountIcon(int code) { return code switch { - var c when c == RoomStateConstant.Empty.Code => Resources.可住状态, - var c when c == RoomStateConstant.Occupied.Code => Resources.已住状态, - var c when c == RoomStateConstant.UnderRepair.Code => Resources.维修状态, - var c when c == RoomStateConstant.Dirty.Code => Resources.脏房状态, - var c when c == RoomStateConstant.Reserved.Code => Resources.预约状态, + var c when c == new EnumHelper().GetEnumValue(RoomState.Vacant) => Resources.可住状态, + var c when c == new EnumHelper().GetEnumValue(RoomState.Occupied) => Resources.已住状态, + var c when c == new EnumHelper().GetEnumValue(RoomState.Maintenance) => Resources.维修状态, + var c when c == new EnumHelper().GetEnumValue(RoomState.Dirty) => Resources.脏房状态, + var c when c == new EnumHelper().GetEnumValue(RoomState.Reserved) => Resources.预约状态, _ => null }; } @@ -194,14 +219,19 @@ namespace EOM.TSHotelManagement.FormUI { try { - var dic = new Dictionary { { "isDelete", "0" } }; - var result = HttpHelper.Request("RoomType/SelectRoomTypesAll", dic); - if (result.statusCode != 200) + var dic = new Dictionary + { + { nameof(ReadRoomTypeInputDto.IsDelete), "0" }, + { nameof(ReadRoomTypeInputDto.IgnorePaging), "true"} + }; + var result = HttpHelper.Request(ApiConstants.RoomType_SelectRoomTypesAll, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - throw new Exception("SelectRoomTypesAll+接口服务异常"); + throw new Exception($"{ApiConstants.RoomType_SelectRoomTypesAll}+接口服务异常"); } - var listRoomTypes = HttpHelper.JsonToList(result.message!); + var listRoomTypes = response.listSource; if (listRoomTypes == null) { @@ -214,7 +244,7 @@ namespace EOM.TSHotelManagement.FormUI AddRoomTypeButton("全部房间", "btnAll", btnAll_Click); foreach (var type in listRoomTypes) { - AddRoomTypeButton(type.RoomName, Convert.ToString(type.Roomtype), btnRoomType_Click); + AddRoomTypeButton(type.RoomTypeName, Convert.ToString(type.RoomTypeName), btnRoomType_Click); } } catch (Exception ex) @@ -251,7 +281,8 @@ namespace EOM.TSHotelManagement.FormUI lblRoomNo.Text = ucRoom.co_RoomNo; lblCustoName.Text = ucRoom.co_CustoName; lblRoomPosition.Text = ucRoom.co_RoomPosition; - lblCheckTime.Text = ucRoom.co_CheckTime == null ? "" : Convert.ToDateTime(ucRoom.co_CheckTime).ToString("yyyy-MM-dd"); + lblCheckTime.Text = ucRoom.co_CheckTime == null || ucRoom.co_CheckTime == new DateTime(1900, 1, 1) ? "" + : Convert.ToDateTime(ucRoom.co_CheckTime).ToString("yyyy-MM-dd"); lblRoomState.Text = ucRoom.co_RoomState; } @@ -260,35 +291,44 @@ namespace EOM.TSHotelManagement.FormUI flpRoom.Controls.Clear(); if (string.IsNullOrEmpty(typeName)) { - result = HttpHelper.Request("Room/SelectRoomAll"); - if (result.statusCode != 200) + dic = new Dictionary + { + { nameof(ReadRoomInputDto.IsDelete), "0" }, + { nameof(ReadRoomInputDto.IgnorePaging), "true" } + }; + result = HttpHelper.Request(ApiConstants.Room_SelectRoomAll, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectRoomAll+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_SelectRoomAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - romsty = HttpHelper.JsonToList(result.message!)!; + romsty = response.listSource; } else { - dic = new Dictionary() + dic = new Dictionary { - { "TypeName",typeName} + { nameof(ReadRoomInputDto.IsDelete), "0" }, + { nameof(ReadRoomInputDto.IgnorePaging), "true" }, + { nameof(ReadRoomInputDto.RoomTypeName), typeName } }; - result = HttpHelper.Request("Room/SelectRoomByTypeName", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_SelectRoomByTypeName, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectRoomByTypeName+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_SelectRoomByTypeName}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - romsty = HttpHelper.JsonToList(result.message!)!; + romsty = response.listSource; } for (int i = 0; i < romsty.Count; i++) { room = new ucRoom(); - room.btnRoom.Text = string.Format("{0}\n\n{1}\n\n{2}", romsty[i].RoomName, romsty[i].RoomNo, romsty[i].CustoName ?? " "); + room.btnRoom.Text = string.Format("{0}\n\n{1}\n\n{2}", romsty[i].RoomName, romsty[i].RoomNumber, romsty[i].CustomerName ?? " "); room.lblMark = string.Empty; room.romRoomInfo = romsty[i]; - room.romCustoInfo = new Custo { CustoNo = romsty[i].CustoNo, CustoName = romsty[i].CustoName }; + room.romCustoInfo = new ReadCustomerOutputDto { CustomerNumber = romsty[i].CustomerNumber, CustomerName = romsty[i].CustomerName }; flpRoom.Controls.Add(room); } lblRoomNo.Text = ""; @@ -302,24 +342,27 @@ namespace EOM.TSHotelManagement.FormUI private void LoadRoomByState(int stateid) { flpRoom.Controls.Clear(); - dic = new Dictionary() + dic = new Dictionary { - { "stateid",stateid.ToString()} + { nameof(ReadRoomInputDto.IsDelete), "0" }, + { nameof(ReadRoomInputDto.IgnorePaging), "true" }, + { nameof(ReadRoomInputDto.RoomStateId), stateid.ToString() } }; - result = HttpHelper.Request("Room/SelectRoomByRoomState", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_SelectRoomByRoomState, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectRoomByRoomState+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_SelectRoomByRoomState}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - romsty = HttpHelper.JsonToList(result.message!)!; + romsty = response.listSource; for (int i = 0; i < romsty.Count; i++) { room = new ucRoom(); - room.btnRoom.Text = string.Format("{0}\n\n{1}\n\n{2}", romsty[i].RoomName, romsty[i].RoomNo, romsty[i].CustoName); + room.btnRoom.Text = string.Format("{0}\n\n{1}\n\n{2}", romsty[i].RoomName, romsty[i].RoomNumber, romsty[i].CustomerName); room.lblMark = string.Empty; room.romRoomInfo = romsty[i]; - room.romCustoInfo = new Custo { CustoNo = romsty[i].CustoNo, CustoName = romsty[i].CustoName }; + room.romCustoInfo = new ReadCustomerOutputDto { CustomerNumber = romsty[i].CustomerNumber, CustomerName = romsty[i].CustomerName }; flpRoom.Controls.Add(room); } lblRoomNo.Text = ""; @@ -333,26 +376,26 @@ namespace EOM.TSHotelManagement.FormUI { flpRoom.Controls.Clear(); - var roomState = RoomStateConstant.GetConstantByCode(e.Value.Tag as string); + var roomState = new EnumHelper().GetEnumValue(Convert.ToInt32(e.Value.ID)); if (roomState != null) { - switch (roomState.Code) + switch (roomState) { - case var code when code == RoomStateConstant.Empty.Code: - LoadRoomByState(0); + case var code when code == (int)RoomState.Vacant: + LoadRoomByState((int)RoomState.Vacant); break; - case var code when code == RoomStateConstant.Occupied.Code: - LoadRoomByState(1); + case var code when code == (int)RoomState.Occupied: + LoadRoomByState((int)RoomState.Occupied); break; - case var code when code == RoomStateConstant.UnderRepair.Code: - LoadRoomByState(2); + case var code when code == (int)RoomState.Maintenance: + LoadRoomByState((int)RoomState.Maintenance); break; - case var code when code == RoomStateConstant.Dirty.Code: - LoadRoomByState(3); + case var code when code == (int)RoomState.Dirty: + LoadRoomByState((int)RoomState.Dirty); break; - case var code when code == RoomStateConstant.Reserved.Code: - LoadRoomByState(4); + case var code when code == (int)RoomState.Reserved: + LoadRoomByState((int)RoomState.Reserved); break; } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.Designer.cs deleted file mode 100644 index 3aa1d09f5066d9f4c2aa087f54191efb29c9bb38..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.Designer.cs +++ /dev/null @@ -1,69 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI.AppFunction -{ - partial class FrmRoomMap - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmRoomMap)); - this.flpRoom = new System.Windows.Forms.FlowLayoutPanel(); - this.SuspendLayout(); - // - // flpRoom - // - this.flpRoom.AutoScroll = true; - this.flpRoom.BackColor = System.Drawing.Color.Transparent; - this.flpRoom.Location = new System.Drawing.Point(83, 99); - this.flpRoom.Name = "flpRoom"; - this.flpRoom.Size = new System.Drawing.Size(838, 424); - this.flpRoom.TabIndex = 72; - this.flpRoom.MouseEnter += new System.EventHandler(this.flpRoom_MouseEnter); - // - // FrmRoomMap - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.flpRoom); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmRoomMap"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "房态图一览"; - this.Load += new System.EventHandler(this.FrmRoomMap_Load); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.FlowLayoutPanel flpRoom; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.cs deleted file mode 100644 index 09fdeb07f7b9ae303e2bdcc7c9fcce44d88323e3..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.cs +++ /dev/null @@ -1,69 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI.AppFunction -{ - public partial class FrmRoomMap : UIForm - { - public FrmRoomMap() - { - InitializeComponent(); - } - ucRoom room = null; - private void FrmRoomMap_Load(object sender, EventArgs e) - { - LoadRoom(); - } - - public void LoadRoom() - { - flpRoom.Controls.Clear(); - var result = HttpHelper.Request("Room/SelectRoomAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectRoomAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List rooms = HttpHelper.JsonToList(result.message); - for (int i = 0; i < rooms.Count; i++) - { - room = new ucRoom(); - room.btnRoom.Text = string.Format("{0}\n\n{1}\n\n{2}", rooms[i].RoomName, rooms[i].RoomNo, rooms[i].CustoName); - room.lblMark = "Mark"; - room.romRoomInfo = rooms[i]; - flpRoom.Controls.Add(room); - } - } - - private void flpRoom_MouseEnter(object sender, EventArgs e) - { - return; - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.resx deleted file mode 100644 index c5681534de3a6b6828f9f852621f24026d8d692a..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.resx +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGAAfAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAtElEQVRYR+2WQQrC - MBBFc3Pd9QxewEVB8AaeQ3Bb8BRJZ9KXXc1UiA3UeTCkIZ+ZR7JpKKSUxhjjW9afIjMmqTtjFzjbnTxc - bdj3YFSBic3u6JN3u/6CC/QXcLgJE+Jmntj2vqwm9HUBF3CBAwo43IQJ8fZPwGpCXxc4oID8Gj/5rkLf - pgIy+6UCF/ZV6NtaYNgczkGB7UeIfdUzIzYnqZvUY62IaW71vBSxWu4qs8/E/p4QZs+OmxjDgilLAAAA - AElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs index 1a2dc31316f3dcaaeb78aa86d9add79c1ccd4216..acc0624e4c73b5fb98700537dbc1125e21b0f0da 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs @@ -23,7 +23,9 @@ */ using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Contract; using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Shared; using Sunny.UI; namespace EOM.TSHotelManagement.FormUI @@ -42,15 +44,16 @@ namespace EOM.TSHotelManagement.FormUI private void FrmRoomStateManager_Load(object sender, EventArgs e) { txtRoomNo.Text = ucRoom.rm_RoomNo; - result = HttpHelper.Request("Room/SelectRoomStateAll"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectRoomStateAll); + var datas = HttpHelper.JsonToModel>(result.message); + if (datas.StatusCode != 200) { - UIMessageBox.ShowError("SelectRoomStateAll+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectRoomStateAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - cboState.DataSource = HttpHelper.JsonToList(result.message); - cboState.DisplayMember = "RoomStateName"; - cboState.ValueMember = "RoomStateId"; + cboState.DataSource = datas.listSource; + cboState.DisplayMember = nameof(EnumDto.Description); + cboState.ValueMember = nameof(EnumDto.Id); cboState.SelectedIndex = 0; } #endregion @@ -58,37 +61,28 @@ namespace EOM.TSHotelManagement.FormUI #region 确定按钮点击事件 private void btnOk_Click(object sender, EventArgs e) { - switch (cboState.SelectedIndex) + var helper = new EnumHelper(); + switch (cboState.SelectedValue) { - case 1: + case (int)RoomState.Occupied: UIMessageBox.Show("不能设置为已住状态!", "来自小T的提示", UIStyle.Orange); break; - case 0: - case 2: - case 3: - case 4: - dic = new Dictionary() + case (int)RoomState.Vacant: + case (int)RoomState.Maintenance: + case (int)RoomState.Dirty: + case (int)RoomState.Reserved: + var updateRoom = new UpdateRoomInputDto { RoomNumber = txtRoomNo.Text.Trim(), RoomStateId = Convert.ToInt32(cboState.SelectedValue) }; + result = HttpHelper.Request(ApiConstants.Room_UpdateRoomStateByRoomNo, updateRoom.ModelToJson()); + var response = HttpHelper.JsonToModel(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - { "roomno",txtRoomNo.Text}, - { "stateid",cboState.SelectedIndex.ToString()} - }; - result = HttpHelper.Request("Room/UpdateRoomStateByRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateRoomStateByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_UpdateRoomStateByRoomNo}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - if (result.message.ToString().Equals("true")) - { - UIMessageBox.Show("房间" + txtRoomNo.Text + "成功修改为" + cboState.Text, "修改提示", UIStyle.Green); - FrmRoomManager.Reload(""); - FrmRoomManager._RefreshRoomCount(); - this.Close(); - } - else - { - UIMessageBox.Show("修改失败", "来自小T的提示", UIStyle.Red); - } + UIMessageBox.Show("房间" + txtRoomNo.Text + "成功修改为" + cboState.Text, "修改提示", UIStyle.Green); + FrmRoomManager.Reload(""); + FrmRoomManager._RefreshRoomCount(); + this.Close(); break; default: UIMessageBox.Show("请选择房间状态", "来自小T的提示", UIStyle.Orange); diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.cs index 18aa716d0abe851db106b9efcf2c38c2e8ecc8d3..1c71570ee4c206c04e3a9b6259de90164dcc690b 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.cs @@ -23,7 +23,7 @@ */ using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; using Sunny.UI; namespace EOM.TSHotelManagement.FormUI @@ -54,68 +54,73 @@ namespace EOM.TSHotelManagement.FormUI private void FrmSelectCustoInfo_Load(object sender, EventArgs e) { #region 加载客户类型信息 - result = HttpHelper.Request("Base/SelectCustoTypeAllCanUse"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectCustoTypeAllCanUse); + var customerTypes = HttpHelper.JsonToModel>(result.message); + if (customerTypes.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectCustoTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectCustoTypeAllCanUse}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List lstSourceGrid = HttpHelper.JsonToList(result.message); - this.cbCustoType.DataSource = lstSourceGrid; - this.cbCustoType.DisplayMember = "TypeName"; - this.cbCustoType.ValueMember = "UserType"; + this.cbCustoType.DataSource = customerTypes.listSource; + this.cbCustoType.DisplayMember = nameof(ReadCustoTypeOutputDto.CustomerTypeName); + this.cbCustoType.ValueMember = nameof(ReadCustoTypeOutputDto.CustomerType); this.cbCustoType.SelectedIndex = 0; this.cbCustoType.ReadOnly = true; #endregion #region 加载证件类型信息 - result = HttpHelper.Request("Base/SelectPassPortTypeAllCanUse"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Base_SelectPassPortTypeAllCanUse); + var passportTypes = HttpHelper.JsonToModel>(result.message); + if (passportTypes.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectPassPortTypeAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Base_SelectPassPortTypeAllCanUse}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List passPorts = HttpHelper.JsonToList(result.message); - this.cbPassportType.DataSource = passPorts; - this.cbPassportType.DisplayMember = "PassportName"; - this.cbPassportType.ValueMember = "PassportId"; + this.cbPassportType.DataSource = passportTypes.listSource; + this.cbPassportType.DisplayMember = nameof(ReadPassportTypeOutputDto.PassportName); + this.cbPassportType.ValueMember = nameof(ReadPassportTypeOutputDto.PassportId); this.cbPassportType.SelectedIndex = 0; #endregion #region 加载性别信息 - result = HttpHelper.Request("Base/SelectSexTypeAll?delete_mk=0"); - if (result.statusCode != 200) + dic = new Dictionary { - UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); + { nameof(ReadGenderTypeInputDto.IsDelete) , "0" }, + { nameof(ReadGenderTypeInputDto.IgnorePaging) , "true" } + }; + result = HttpHelper.Request(ApiConstants.Base_SelectGenderTypeAll, dic); + var genderTypes = HttpHelper.JsonToModel>(result.message); + if (genderTypes.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Base_SelectGenderTypeAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List listSexType = HttpHelper.JsonToList(result.message); - this.cbSex.DataSource = listSexType; - this.cbSex.DisplayMember = "sexName"; - this.cbSex.ValueMember = "sexId"; + this.cbSex.DataSource = genderTypes.listSource; + this.cbSex.DisplayMember = nameof(EnumDto.Description); + this.cbSex.ValueMember = nameof(EnumDto.Id); this.cbSex.SelectedIndex = 0; #endregion txtCustoNo.Text = ucRoom.rm_CustoNo; dic = new Dictionary() { - { "CustoNo",txtCustoNo.Text.Trim() } + { nameof(ReadCustomerInputDto.CustomerNumber),txtCustoNo.Text.ToString() } }; - result = HttpHelper.Request("Custo/SelectCardInfoByCustoNo", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Customer_SelectCustoByInfo, dic); + var c = HttpHelper.JsonToModel>(result.message); + if (c.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectCardInfoByCustoNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Customer_SelectCustoByInfo}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - Custo c = HttpHelper.JsonToModel(result.message); - txtCustoAdress.Text = c.CustoAdress; - txtCustoName.Text = c.CustoName; - txtCardID.Text = c.CustoID; - txtCustoTel.Text = c.CustoTel; - cbSex.Text = c.CustoSex == 1 ? "男" : "女"; - cbCustoType.SelectedIndex = c.CustoType; - cbPassportType.SelectedIndex = c.PassportType; - dtpBirthday.Value = Convert.ToDateTime(c.CustoBirth); + txtCustoAdress.Text = c.Source.CustomerAddress; + txtCustoName.Text = c.Source.CustomerName; + txtCardID.Text = c.Source.IdCardNumber; + txtCustoTel.Text = c.Source.CustomerPhoneNumber; + cbSex.Text = c.Source.CustomerGender == 1 ? "男" : "女"; + cbCustoType.SelectedValue = c.Source.CustomerType; + cbPassportType.SelectedValue = c.Source.PassportId; + dtpBirthday.Value = Convert.ToDateTime(c.Source.DateOfBirth); } } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.Designer.cs index 788cc59d07a511f462e4eb2a426f64c51500513a..651b8fd576ec269919237258db5bb8bf78b48410 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.Designer.cs @@ -274,7 +274,7 @@ dgvSellthing.Font = new Font("Microsoft YaHei UI", 9F); dgvSellthing.Location = new Point(4, 88); dgvSellthing.Name = "dgvSellthing"; - dgvSellthing.Size = new Size(487, 362); + dgvSellthing.Size = new Size(487, 351); dgvSellthing.TabIndex = 131; dgvSellthing.CellClick += dgvSellthing_CellClick; // @@ -282,7 +282,7 @@ // btnPg.Current = 0; btnPg.Font = new Font("微软雅黑", 12F); - btnPg.Location = new Point(4, 456); + btnPg.Location = new Point(4, 448); btnPg.Name = "btnPg"; btnPg.PageSize = 15; btnPg.ShowSizeChanger = true; @@ -319,7 +319,7 @@ dgvRoomSell.Font = new Font("Microsoft YaHei UI", 9F); dgvRoomSell.Location = new Point(497, 217); dgvRoomSell.Name = "dgvRoomSell"; - dgvRoomSell.Size = new Size(572, 270); + dgvRoomSell.Size = new Size(572, 262); dgvRoomSell.TabIndex = 138; dgvRoomSell.CellClick += dgvRoomSell_CellClick; // @@ -327,7 +327,7 @@ // AutoScaleMode = AutoScaleMode.None; BackColor = Color.FromArgb(235, 243, 255); - ClientSize = new Size(1072, 494); + ClientSize = new Size(1072, 486); Controls.Add(dgvRoomSell); Controls.Add(btnCancel); Controls.Add(btnAdd); diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.cs index f58c57b2e5009153af573a1bbcccff5bc15fb861..707520aeaaecf6b21dfc011f740d37c8138b51f2 100644 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.cs @@ -23,23 +23,24 @@ */ using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Contract; using EOM.TSHotelManagement.Common.Core; using EOM.TSHotelManagement.Shared; using jvncorelib.EntityLib; using Sunny.UI; +using System.Transactions; namespace EOM.TSHotelManagement.FormUI { public partial class FrmSellThing : Sunny.UI.UIForm { - private int rs = 0;//用于判断房间是否可消费 static string roomNo; Dictionary dic = null; ResponseMsg result = null; - Room r = null; + ReadRoomOutputDto r = null; - private static Spend spend = null; + private static ReadSpendOutputDto spend = null; private LoadingProgress loadingProgress; public FrmSellThing() @@ -51,9 +52,7 @@ namespace EOM.TSHotelManagement.FormUI #region 窗体加载事件 private void FrmSellThing_Load(object sender, EventArgs e) { - loadingProgress.Show(); LoadSellThingInfo(); - loadingProgress.Close(); } #endregion @@ -71,27 +70,29 @@ namespace EOM.TSHotelManagement.FormUI { dic = new Dictionary() { - { "SellNo",sellthing.Trim()}, - {"SellName", sellthing.Trim()} + { nameof(ReadSellThingInputDto.ProductNumber) , sellthing.Trim() }, + { nameof(ReadSellThingInputDto.ProductName) , sellthing.Trim() }, + { nameof(ReadSellThingInputDto.Specification) , sellthing.Trim() } }; - result = HttpHelper.Request("Sellthing/SelectSellThingAll", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Sellthing_SelectSellThingAll, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectSellThingAll+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Sellthing_SelectSellThingAll}+接口服务异常,请提交Issue或尝试更新版本!"); return; } var listTableSource = new List(); - List lstSource = HttpHelper.JsonToList(result.message!) ?? new List(); + List lstSource = response.listSource; TableComHelper tableComHelper = new TableComHelper(); listTableSource = tableComHelper.ConvertToAntdItems(lstSource); dgvSellthing.Spin("正在加载中...", config => { - this.dgvSellthing.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); - this.dgvSellthing.DataSource = lstSource; + this.dgvSellthing.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + this.dgvSellthing.DataSource = listTableSource; }, () => { System.Diagnostics.Debug.WriteLine("加载结束"); @@ -106,17 +107,18 @@ namespace EOM.TSHotelManagement.FormUI { dic = new Dictionary() { - { "No",room} + { nameof(ReadSpendInputDto.RoomNumber), room } }; - result = HttpHelper.Request("Spend/SelectSpendByRoomNo",dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Spend_SelectSpendByRoomNo, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectSpendByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Spend_SelectSpendByRoomNo}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - List lstSource = HttpHelper.JsonToList(result.message!) ?? new List(); + List lstSource = response.listSource; TableComHelper tableComHelper = new TableComHelper(); - dgvRoomSell.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + dgvRoomSell.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); dgvRoomSell.DataSource = tableComHelper.ConvertToAntdItems(lstSource); }, () => { @@ -133,7 +135,7 @@ namespace EOM.TSHotelManagement.FormUI dgvSellthing.Spin("正在加载中...", config => { TableComHelper tableComHelper = new TableComHelper(); - dgvSellthing.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); + dgvSellthing.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); dgvSellthing.DataSource = GetPageData(btnPg.Current, btnPg.PageSize, ref dataCount); btnPg.PageSize = 15; btnPg.Current = 1; @@ -144,15 +146,21 @@ namespace EOM.TSHotelManagement.FormUI object GetPageData(int current, int pageSize, ref int totalCount) { - result = HttpHelper.Request("Sellthing/SelectSellThingAll"); - if (result.statusCode != 200) + dic = new Dictionary() + { + { nameof(ReadSellThingInputDto.Page), current.ToString() }, + { nameof(ReadSellThingInputDto.PageSize), pageSize.ToString() }, + { nameof(ReadSellThingInputDto.IsDelete), "0"} + }; + result = HttpHelper.Request(ApiConstants.Sellthing_SelectSellThingAll, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - AntdUI.Message.error(this, "SelectSellThingAll+接口服务异常,请提交Issue或尝试更新版本!"); + AntdUI.Message.error(this, $"{ApiConstants.Sellthing_SelectSellThingAll}+接口服务异常,请提交Issue或尝试更新版本!"); return null!; } - List lstSource = HttpHelper.JsonToList(result.message); + List lstSource = response.listSource; totalCount = lstSource.Count; - lstSource = lstSource.Skip((current - 1) * pageSize).Take(pageSize).ToList(); var listTableSource = new List(); TableComHelper tableComHelper = new TableComHelper(); @@ -166,25 +174,25 @@ namespace EOM.TSHotelManagement.FormUI #region 判断输入的完整性的方法 public bool CheckInput() { - if (txtRoomNo.Text == "") + if (string.IsNullOrEmpty(txtRoomNo.Text)) { UIMessageBox.Show("消费房间不能为空", "提示信息", UIStyle.Red, UIMessageBoxButtons.OKCancel); txtRoomNo.Focus(); return false; } - if (txtSellNo.Text == "") + if (string.IsNullOrEmpty(txtSellNo.Text)) { UIMessageBox.Show("商品编号不能为空", "提示信息", UIStyle.Red, UIMessageBoxButtons.OKCancel); txtSellNo.Focus(); return false; } - if (txtSellName.Text == "") + if (string.IsNullOrEmpty(txtSellName.Text)) { UIMessageBox.Show("商品名称不能为空", "提示信息", UIStyle.Red, UIMessageBoxButtons.OKCancel); txtSellName.Focus(); return false; } - if (txtPrice.Text == "") + if (string.IsNullOrEmpty(txtPrice.Text)) { UIMessageBox.Show("商品单价不能为空", "提示信息", UIStyle.Red, UIMessageBoxButtons.OKCancel); txtPrice.Focus(); @@ -192,7 +200,7 @@ namespace EOM.TSHotelManagement.FormUI } if (nudNum.Value <= 0) { - UIMessageBox.Show("数量不能小于0", "提示信息", UIStyle.Red, UIMessageBoxButtons.OKCancel); + UIMessageBox.Show("数量不能小于或等于0", "提示信息", UIStyle.Red, UIMessageBoxButtons.OKCancel); txtPrice.Focus(); return false; } @@ -200,7 +208,11 @@ namespace EOM.TSHotelManagement.FormUI } #endregion - #region 添加事件 + /// + /// 添加消费事件 + /// + /// + /// private void btnAdd_Click(object sender, EventArgs e) { if (lblState.Visible == false) @@ -213,183 +225,46 @@ namespace EOM.TSHotelManagement.FormUI UIMessageBox.Show("请输入消费数量!", "提示信息", UIStyle.Red); return; } - if (lblState.Text == "该房间可消费")//判断房间编号是否可消费 + if (lblState.Text == "该房间可消费") { - if (CheckInput()) + if (!CheckInput()) return; + + try { - dic = new Dictionary() - { - { "SellNo",txtSellNo.Text.Trim()} - }; - result = HttpHelper.Request("Sellthing/SelectSellThingAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSellThingAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List st = HttpHelper.JsonToList(result.message); - dic = new Dictionary() + var result = HttpHelper.Request(ApiConstants.Spend_AddCustomerSpend, HttpHelper.ModelToJson(new AddCustomerSpendInputDto { - { "no",txtRoomNo.Text.Trim()} - }; - result = HttpHelper.Request("Room/SelectRoomByRoomNo", dic); - if (result.statusCode != 200) + RoomNumber = txtRoomNo.Text.Trim(), + ProductNumber = txtSellNo.Text.Trim(), + ProductName = txtSellName.Text.Trim(), + Quantity = (int)nudNum.Value, + Price = Convert.ToDecimal(txtPrice.Text), + WorkerNo = LoginInfo.WorkerNo, + SoftwareVersion = LoginInfo.SoftwareVersion + })); + var response = HttpHelper.JsonToModel(result.message!); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError(response.Message ?? "添加消费记录失败"); return; } - r = HttpHelper.JsonToModel(result.message); - dic = new Dictionary() - { - { "RoomNo",txtRoomNo.Text.Trim()} - }; - result = HttpHelper.Request("Spend/SelectSpendInfoRoomNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSpendInfoRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var listSource = HttpHelper.JsonToList(result.message); - Spend s = null; - if (!listSource.IsNullOrEmpty()) - { - var sellthing = listSource.FirstOrDefault(a => a.SpendName.Equals(txtSellName.Text)); - if (!sellthing.IsNullOrEmpty()) - { - s = new Spend() - { - RoomNo = txtRoomNo.Text, - SpendName = txtSellName.Text, - SpendAmount = (int)nudNum.Value + listSource.FirstOrDefault(a => a.SpendName.Equals(txtSellName.Text.Trim())).SpendAmount, - CustoNo = r.CustoNo, - SpendPrice = Convert.ToDecimal(txtPrice.Text), - SpendMoney = Convert.ToDecimal(Convert.ToDouble(txtPrice.Text) * nudNum.Value) + listSource.FirstOrDefault(a => a.SpendName.Equals(txtSellName.Text.Trim())).SpendMoney, - SpendTime = Convert.ToDateTime(Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd HH:mm:ss")), - MoneyState = SpendConsts.UnSettle, - datachg_usr = LoginInfo.WorkerNo - }; - result = HttpHelper.Request("Spend/UpdSpenInfo", HttpHelper.ModelToJson(s)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdSpenInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - if (result.message.ToString().Equals("true")) - { - var stock = (st.First().Stock - (decimal)nudNum.Value); - var sellThing = new SellThing { SellName = st.First().SellName, SellPrice = st.First().SellPrice, Stock = stock, SellNo = st.First().SellNo, format = st.First().format }; - result = HttpHelper.Request("Sellthing/UpdateSellthingInfo", HttpHelper.ModelToJson(sellThing)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateSellthingInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - UIMessageBox.Show("添加成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK, true); - LoadSpendInfoByRoomNo(r.RoomNo); - LoadSellThingInfo(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "帮助" + s.CustoNo + "进行了消费商品:" + txtSellName.Text + "操作!", 2); - #endregion - } - } - else - { - s = new Spend() - { - RoomNo = txtRoomNo.Text, - SpendName = txtSellName.Text, - SpendAmount = (int)nudNum.Value, - CustoNo = r.CustoNo, - SpendPrice = Convert.ToDecimal(txtPrice.Text), - SpendMoney = Convert.ToDecimal(Convert.ToDouble(txtPrice.Text) * nudNum.Value), - SpendTime = Convert.ToDateTime(Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd HH:mm:ss")), - MoneyState = SpendConsts.UnSettle, - datains_usr = LoginInfo.WorkerNo, - }; - result = HttpHelper.Request("Spend​/InsertSpendInfo", HttpHelper.ModelToJson(s)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertSpendInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool m = result.message.ToString().Equals("true"); - if (m) - { - var stock = (st.First().Stock - (decimal)nudNum.Value); - var sellThing = new SellThing { SellName = st.First().SellName, SellPrice = st.First().SellPrice, Stock = stock, SellNo = st.First().SellNo, format = st.First().format }; - result = HttpHelper.Request("Sellthing/UpdateSellthingInfo", HttpHelper.ModelToJson(sellThing)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateSellthingInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - UIMessageBox.Show("添加成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK, true); - LoadSpendInfoByRoomNo(r.RoomNo); - LoadSellThingInfo(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "帮助" + s.CustoNo + "进行了消费商品:" + txtSellName.Text + "操作!", 2); - #endregion - nudNum.Value = 0; - return; - } - else - { - UIMessageBox.ShowError("添加失败"); - return; - } - } - } - else - { - s = new Spend() - { - RoomNo = txtRoomNo.Text, - SpendName = txtSellName.Text, - SpendAmount = (int)nudNum.Value, - CustoNo = r.CustoNo, - SpendPrice = Convert.ToDecimal(txtPrice.Text), - SpendMoney = Convert.ToDecimal(Convert.ToDouble(txtPrice.Text) * nudNum.Value), - SpendTime = Convert.ToDateTime(Convert.ToDateTime(DateTime.Now).ToString("yyyy-MM-dd HH:mm:ss")), - MoneyState = SpendConsts.UnSettle, - }; - result = HttpHelper.Request("Spend​/InsertSpendInfo", HttpHelper.ModelToJson(s)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertSpendInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool m = result.message.ToString().Equals("true"); - if (m) - { - var stock = (st.First().Stock - (decimal)nudNum.Value); - var sellThing = new SellThing { SellName = st.First().SellName, SellPrice = st.First().SellPrice, Stock = stock, SellNo = st.First().SellNo, format = st.First().format }; - result = HttpHelper.Request("Sellthing/UpdateSellthingInfo", HttpHelper.ModelToJson(sellThing)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateSellthingInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - UIMessageBox.Show("添加成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK, true); - LoadSpendInfoByRoomNo(r.RoomNo); - LoadSellThingInfo(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "帮助" + s.CustoNo + "进行了消费商品:" + txtSellName.Text + "操作!", 2); - #endregion - nudNum.Value = 0; - return; - } - else - { - UIMessageBox.ShowError("添加失败"); - return; - } - } + UIMessageBox.Show("添加成功", "系统提示", UIStyle.Green); + + LoadSpendInfoByRoomNo(txtRoomNo.Text.Trim()); + LoadSellThingInfo(); + } + catch (Exception ex) + { + UIMessageBox.ShowError($"接口调用异常: {ex.Message}"); + return; } } } - #endregion - #region 撤回消费事件 + /// + /// 撤回消费事件 + /// + /// + /// private void btnCancel_Click(object sender, EventArgs e) { if (lblState.Visible == false) @@ -397,65 +272,64 @@ namespace EOM.TSHotelManagement.FormUI UIMessageBox.Show("请先输入消费的房间!", "提示信息", UIStyle.Red); return; } - if (dgvRoomSell.SelectedIndex > 0) + if (!spend.IsNullOrEmpty()) { - if (spend.SpendName.Contains("居住")) + if (spend.ConsumptionType == SpendType.Room.Code || spend.ConsumptionType == SpendType.Other.Code) { - UIMessageBox.Show("此条消费记录为住房记录,无法删除!", "提示信息", UIStyle.Red); + UIMessageBox.Show($"此条消费记录非{SpendType.Product.Description}记录,无法删除!", "提示信息", UIStyle.Red); return; } - if (UIMessageDialog.ShowMessageDialog("你确定要删除该消费记录吗?", UILocalize.WarningTitle, true, Style)) + if (UIMessageDialog.ShowMessageDialog("你确定要撤回该消费记录吗?", UILocalize.WarningTitle, true, Style)) { - var spendTime = spend.SpendTime; - string custoNo = spend.CustoNo; - string name = spend.SpendName; - string price = spend.SpendPrice.ToString("#.00"); - dic = new Dictionary() - { - { "name",name}, - { "price",price} - }; - result = HttpHelper.Request("Sellthing/SelectSellThingByNameAndPrice", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSellThingByNameAndPrice+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - SellThing s = HttpHelper.JsonToModel(result.message!)!; - decimal num = Convert.ToDecimal(spend.SpendAmount); - string Stock = (s.Stock + num).ToString(); - dic = new Dictionary() + using (TransactionScope scope = new TransactionScope()) { - { "roomNo",txtRoomNo.Text.Trim()}, - { "custoNo",custoNo}, - { "sellName",name} - }; - result = HttpHelper.Request("Sellthing/DeleteSellThing", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("DeleteSellThing+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - if (result.message.ToString().Equals("true")) - { - var sellThing = new SellThing { SellName = s.SellName, SellPrice = s.SellPrice, Stock = s.Stock, SellNo = s.SellNo, format = s.format }; - result = HttpHelper.Request("Sellthing/UpdateSellthingInfo", HttpHelper.ModelToJson(sellThing)); - if (result.statusCode != 200) + dic = new Dictionary() + { + { nameof(ReadSellThingInputDto.ProductNumber) , spend.ProductNumber }, + { nameof(ReadSellThingInputDto.ProductName) , spend.ProductName }, + { nameof(ReadSellThingInputDto.ProductPrice) , Decimal.Parse(spend.ProductPrice.ToString()).ToString("#,##0.00").ToString() } + }; + result = HttpHelper.Request(ApiConstants.Sellthing_SelectSellThingByNameAndPrice, dic); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Sellthing_SelectSellThingByNameAndPrice}+接口服务异常,请提交Issue或尝试更新版本!"); + return; + } + ReadSellThingOutputDto s = response.Source; + decimal num = Convert.ToDecimal(spend.ConsumptionQuantity); + decimal inboundStock = (s.Stock + num); + result = HttpHelper.Request(ApiConstants.Spend_UndoCustomerSpend, HttpHelper.ModelToJson(new UpdateSpendInputDto { SpendNumber = spend.SpendNumber })); + var undoSpendResponse = HttpHelper.JsonToModel(result.message); + if (undoSpendResponse.StatusCode != StatusCodeConstants.Success) + { + UIMessageBox.ShowError($"{ApiConstants.Spend_UndoCustomerSpend}+接口服务异常,请提交Issue或尝试更新版本!"); + return; + } + var sellThing = new UpdateSellThingInputDto { ProductName = s.ProductName, ProductPrice = s.ProductPrice, Stock = inboundStock, ProductNumber = s.ProductNumber, Specification = s.Specification }; + result = HttpHelper.Request(ApiConstants.Sellthing_UpdateSellthingInfo, HttpHelper.ModelToJson(sellThing)); + var updateResponse = HttpHelper.JsonToModel(result.message); + if (updateResponse.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("UpdateSellthingInfo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageTip.ShowError("撤销失败!", 1000); + RecordHelper.Record($"接口异常。Message:\n{updateResponse.Message}", Common.Core.LogLevel.Critical); + UIMessageBox.ShowError($"{ApiConstants.Sellthing_UpdateSellthingInfo}+接口服务异常,请提交Issue或尝试更新版本!"); return; } UIMessageTip.ShowOk("撤销成功!", 1000); #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "帮助" + custoNo + "撤销了消费商品:" + txtSellName.Text + "操作!", 2); + RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "执行:" + "帮助" + spend.CustomerNumber + "撤销了消费商品:" + txtSellName.Text + "操作!", Common.Core.LogLevel.Warning); #endregion LoadSpendInfoByRoomNo(txtRoomNo.Text); LoadSellThingInfo(); nudNum.Value = 0; - } - else - { - UIMessageTip.ShowOk("撤销失败!", 1000); + scope.Complete(); + dgvRoomSell.SelectedIndex = 0; + spend = null; + txtSellNo.Text = string.Empty; + txtSellName.Text = string.Empty; + txtPrice.Text = string.Empty; + nudNum.Value = 0; } } else @@ -468,14 +342,6 @@ namespace EOM.TSHotelManagement.FormUI UIMessageBox.Show("请选择要删除的消费记录!", "提示信息", UIStyle.Red); } } - #endregion - - - private void dgvSellthing_CellClick(object sender, DataGridViewCellEventArgs e) - { - - } - private void nudNum_ValueChanged(object sender, double value) { @@ -505,15 +371,16 @@ namespace EOM.TSHotelManagement.FormUI } dic = new Dictionary() { - { "no",room} + { nameof(ReadRoomInputDto.RoomNumber) , room} }; - result = HttpHelper.Request("Room/SelectRoomByRoomNo", dic); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Room_SelectRoomByRoomNo, dic); + var checkResponse = HttpHelper.JsonToModel>(result.message); + if (checkResponse.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.ShowError("SelectRoomByRoomNo+接口服务异常,请提交Issue或尝试更新版本!"); + UIMessageBox.ShowError($"{ApiConstants.Room_SelectRoomByRoomNo}+接口服务异常,请提交Issue或尝试更新版本!"); return; } - Room r = HttpHelper.JsonToModel(result.message); + ReadRoomOutputDto r = checkResponse.Source; if (txtRoomNo.Text == "") { lblState.Text = ""; @@ -523,30 +390,26 @@ namespace EOM.TSHotelManagement.FormUI lblState.Visible = true; lblState.Text = "该房间不存在"; lblState.ForeColor = Color.Red; - rs = 0; - //LoadSpendInfo(); - //清空 } else if (!r.IsNullOrEmpty()) { - if (r.RoomStateId == 1) + if (r.RoomStateId == new EnumHelper().GetEnumValue(RoomState.Occupied)) { lblState.Visible = true; lblState.Text = "该房间可消费"; lblState.ForeColor = Color.Black; LoadSpendInfoByRoomNo(room); - rs = 1; } else { lblState.Visible = true; lblState.Text = "该房间不可消费"; lblState.ForeColor = Color.Red; - rs = 0; } } } + TableComHelper helper = new TableComHelper(); private void dgvSellthing_CellClick(object sender, AntdUI.TableClickEventArgs e) { if (lblState.Visible == false) @@ -556,9 +419,9 @@ namespace EOM.TSHotelManagement.FormUI } if (e.Record is IList data) { - txtSellNo.Text = data[0].value.ToString(); - txtSellName.Text = data[1].value.ToString(); - txtPrice.Text = data[2].value.ToString(); ; + txtSellNo.Text = helper.GetValue(data, nameof(ReadSellThingOutputDto.ProductNumber)); + txtSellName.Text = helper.GetValue(data, nameof(ReadSellThingOutputDto.ProductName)); + txtPrice.Text = helper.GetValue(data, nameof(ReadSellThingOutputDto.ProductPrice)); } } @@ -566,14 +429,19 @@ namespace EOM.TSHotelManagement.FormUI { if (e.Record is IList data) { - spend = new Spend(); - spend.RoomNo = data[0].value.ToString(); - spend.CustoNo = data[1].value.ToString(); - spend.SpendName = data[2].value.ToString(); - spend.SpendAmount = Convert.ToInt32(data[3].value); - spend.SpendPrice = Convert.ToDecimal(data[4].value); - spend.SpendMoney = Convert.ToDecimal(data[5].value); - spend.SpendTime = Convert.ToDateTime(data[6].value); + spend = new ReadSpendOutputDto + { + ProductNumber = helper.GetValue(data, nameof(ReadSpendOutputDto.ProductNumber)), + SettlementStatus = helper.GetValue(data, nameof(ReadSpendOutputDto.SettlementStatus)), + SpendNumber = helper.GetValue(data, nameof(ReadSpendOutputDto.SpendNumber)), + RoomNumber = helper.GetValue(data, nameof(ReadSpendOutputDto.RoomNumber)), + CustomerNumber = helper.GetValue(data, nameof(ReadSpendOutputDto.CustomerNumber)), + ProductName = helper.GetValue(data, nameof(ReadSpendOutputDto.ProductName)), + ConsumptionQuantity = Convert.ToInt32(helper.GetValue(data, nameof(ReadSpendOutputDto.ConsumptionQuantity))), + ProductPrice = Convert.ToDecimal(helper.GetValue(data, nameof(ReadSpendOutputDto.ProductPrice))), + ConsumptionAmount = Convert.ToDecimal(helper.GetValue(data, nameof(ReadSpendOutputDto.ConsumptionAmount))), + ConsumptionTime = Convert.ToDateTime(helper.GetValue(data, nameof(ReadSpendOutputDto.ConsumptionTime))) + }; } } } diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.Designer.cs deleted file mode 100644 index d18251fc98881b41662f9302d7af09043cc89af6..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.Designer.cs +++ /dev/null @@ -1,499 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmSellThingManager - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSellThingManager)); - this.uiLabel1 = new Sunny.UI.UILabel(); - this.txtFind = new Sunny.UI.UITextBox(); - this.btnFind = new Sunny.UI.UIButton(); - this.btnAddSellThing = new Sunny.UI.UIButton(); - this.btnUpdateSellthing = new Sunny.UI.UIButton(); - this.btnDeleteSellThing = new Sunny.UI.UIButton(); - this.dgvSellthing = new Sunny.UI.UIDataGridView(); - this.clSellNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clSellName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clSellPrice = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clFormat = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clStock = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.txtStock = new Sunny.UI.UIDoubleUpDown(); - this.label4 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.txtformat = new Sunny.UI.UITextBox(); - this.label2 = new System.Windows.Forms.Label(); - this.txtSellPrice = new Sunny.UI.UITextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.txtSellName = new Sunny.UI.UITextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.txtSellNo = new Sunny.UI.UITextBox(); - ((System.ComponentModel.ISupportInitialize)(this.dgvSellthing)).BeginInit(); - this.SuspendLayout(); - // - // uiLabel1 - // - this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F); - this.uiLabel1.Location = new System.Drawing.Point(173, 45); - this.uiLabel1.Name = "uiLabel1"; - this.uiLabel1.Size = new System.Drawing.Size(125, 29); - this.uiLabel1.TabIndex = 114; - this.uiLabel1.Text = "要查找的商品:"; - this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - // - // txtFind - // - this.txtFind.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtFind.FillColor = System.Drawing.Color.White; - this.txtFind.Font = new System.Drawing.Font("微软雅黑", 12F); - this.txtFind.Location = new System.Drawing.Point(305, 45); - this.txtFind.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtFind.Maximum = 2147483647D; - this.txtFind.Minimum = -2147483648D; - this.txtFind.MinimumSize = new System.Drawing.Size(1, 1); - this.txtFind.Name = "txtFind"; - this.txtFind.Padding = new System.Windows.Forms.Padding(5); - this.txtFind.Radius = 20; - this.txtFind.Size = new System.Drawing.Size(197, 29); - this.txtFind.TabIndex = 113; - this.txtFind.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // btnFind - // - this.btnFind.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnFind.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnFind.Location = new System.Drawing.Point(509, 45); - this.btnFind.MinimumSize = new System.Drawing.Size(1, 1); - this.btnFind.Name = "btnFind"; - this.btnFind.Radius = 20; - this.btnFind.Size = new System.Drawing.Size(101, 28); - this.btnFind.TabIndex = 112; - this.btnFind.Text = "查 找"; - this.btnFind.Click += new System.EventHandler(this.btnFind_Click); - // - // btnAddSellThing - // - this.btnAddSellThing.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAddSellThing.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAddSellThing.Location = new System.Drawing.Point(818, 489); - this.btnAddSellThing.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAddSellThing.Name = "btnAddSellThing"; - this.btnAddSellThing.Radius = 20; - this.btnAddSellThing.Size = new System.Drawing.Size(176, 37); - this.btnAddSellThing.TabIndex = 115; - this.btnAddSellThing.Text = "新增商品信息"; - this.btnAddSellThing.Click += new System.EventHandler(this.btnAddSellThing_Click); - // - // btnUpdateSellthing - // - this.btnUpdateSellthing.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdateSellthing.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdateSellthing.Location = new System.Drawing.Point(818, 532); - this.btnUpdateSellthing.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdateSellthing.Name = "btnUpdateSellthing"; - this.btnUpdateSellthing.Radius = 20; - this.btnUpdateSellthing.Size = new System.Drawing.Size(176, 37); - this.btnUpdateSellthing.TabIndex = 116; - this.btnUpdateSellthing.Text = "修改商品信息"; - this.btnUpdateSellthing.Click += new System.EventHandler(this.btnUpdateSellthing_Click); - // - // btnDeleteSellThing - // - this.btnDeleteSellThing.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnDeleteSellThing.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnDeleteSellThing.Location = new System.Drawing.Point(818, 575); - this.btnDeleteSellThing.MinimumSize = new System.Drawing.Size(1, 1); - this.btnDeleteSellThing.Name = "btnDeleteSellThing"; - this.btnDeleteSellThing.Radius = 20; - this.btnDeleteSellThing.Size = new System.Drawing.Size(176, 37); - this.btnDeleteSellThing.TabIndex = 117; - this.btnDeleteSellThing.Text = "删除商品信息"; - this.btnDeleteSellThing.Click += new System.EventHandler(this.btnDeleteSellThing_Click); - // - // dgvSellthing - // - this.dgvSellthing.AllowUserToAddRows = false; - this.dgvSellthing.AllowUserToDeleteRows = false; - this.dgvSellthing.AllowUserToResizeColumns = false; - this.dgvSellthing.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvSellthing.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvSellthing.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvSellthing.BackgroundColor = System.Drawing.Color.White; - this.dgvSellthing.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvSellthing.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvSellthing.ColumnHeadersHeight = 32; - this.dgvSellthing.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvSellthing.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clSellNo, - this.Column1, - this.Column2, - this.Column3, - this.Column4, - this.Column5, - this.clSellName, - this.clSellPrice, - this.clFormat, - this.clStock}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvSellthing.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvSellthing.EnableHeadersVisualStyles = false; - this.dgvSellthing.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvSellthing.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvSellthing.Location = new System.Drawing.Point(3, 82); - this.dgvSellthing.Name = "dgvSellthing"; - this.dgvSellthing.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvSellthing.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvSellthing.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvSellthing.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvSellthing.RowTemplate.Height = 29; - this.dgvSellthing.SelectedIndex = -1; - this.dgvSellthing.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvSellthing.Size = new System.Drawing.Size(803, 538); - this.dgvSellthing.TabIndex = 118; - this.dgvSellthing.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSellthing_CellClick); - // - // clSellNo - // - this.clSellNo.DataPropertyName = "SellNo"; - this.clSellNo.HeaderText = "商品编号"; - this.clSellNo.Name = "clSellNo"; - this.clSellNo.ReadOnly = true; - // - // Column1 - // - this.Column1.DataPropertyName = "delete_mk"; - this.Column1.HeaderText = "Column1"; - this.Column1.Name = "Column1"; - this.Column1.ReadOnly = true; - this.Column1.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_usr"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_date"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // clSellName - // - this.clSellName.DataPropertyName = "SellName"; - this.clSellName.HeaderText = "商品名称"; - this.clSellName.Name = "clSellName"; - this.clSellName.ReadOnly = true; - // - // clSellPrice - // - this.clSellPrice.DataPropertyName = "SellPriceStr"; - this.clSellPrice.HeaderText = "价格(元)"; - this.clSellPrice.Name = "clSellPrice"; - this.clSellPrice.ReadOnly = true; - // - // clFormat - // - this.clFormat.DataPropertyName = "format"; - this.clFormat.HeaderText = "规格"; - this.clFormat.Name = "clFormat"; - this.clFormat.ReadOnly = true; - // - // clStock - // - this.clStock.DataPropertyName = "Stock"; - this.clStock.FillWeight = 60F; - this.clStock.HeaderText = "库存"; - this.clStock.Name = "clStock"; - this.clStock.ReadOnly = true; - // - // txtStock - // - this.txtStock.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.txtStock.Location = new System.Drawing.Point(825, 422); - this.txtStock.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtStock.MinimumSize = new System.Drawing.Size(100, 0); - this.txtStock.Name = "txtStock"; - this.txtStock.Radius = 20; - this.txtStock.Size = new System.Drawing.Size(165, 35); - this.txtStock.Step = 1D; - this.txtStock.TabIndex = 158; - this.txtStock.Text = null; - this.txtStock.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.txtStock.Value = 0D; - this.txtStock.ValueChanged += new Sunny.UI.UIDoubleUpDown.OnValueChanged(this.txtStock_ValueChanged); - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label4.Location = new System.Drawing.Point(863, 388); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(88, 25); - this.label4.TabIndex = 157; - this.label4.Text = "商品库存"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(863, 310); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(88, 25); - this.label3.TabIndex = 156; - this.label3.Text = "商品规格"; - // - // txtformat - // - this.txtformat.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtformat.FillColor = System.Drawing.Color.White; - this.txtformat.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtformat.Location = new System.Drawing.Point(825, 344); - this.txtformat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtformat.Maximum = 2147483647D; - this.txtformat.Minimum = -2147483648D; - this.txtformat.MinimumSize = new System.Drawing.Size(1, 1); - this.txtformat.Name = "txtformat"; - this.txtformat.Padding = new System.Windows.Forms.Padding(5); - this.txtformat.Radius = 20; - this.txtformat.Size = new System.Drawing.Size(165, 35); - this.txtformat.Style = Sunny.UI.UIStyle.Custom; - this.txtformat.StyleCustomMode = true; - this.txtformat.TabIndex = 155; - this.txtformat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(863, 232); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(88, 25); - this.label2.TabIndex = 154; - this.label2.Text = "商品价格"; - // - // txtSellPrice - // - this.txtSellPrice.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtSellPrice.FillColor = System.Drawing.Color.White; - this.txtSellPrice.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtSellPrice.Location = new System.Drawing.Point(825, 266); - this.txtSellPrice.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtSellPrice.Maximum = 2147483647D; - this.txtSellPrice.MaxLength = 10; - this.txtSellPrice.Minimum = -2147483648D; - this.txtSellPrice.MinimumSize = new System.Drawing.Size(1, 1); - this.txtSellPrice.Name = "txtSellPrice"; - this.txtSellPrice.Padding = new System.Windows.Forms.Padding(5); - this.txtSellPrice.Radius = 20; - this.txtSellPrice.Size = new System.Drawing.Size(165, 35); - this.txtSellPrice.Style = Sunny.UI.UIStyle.Custom; - this.txtSellPrice.StyleCustomMode = true; - this.txtSellPrice.TabIndex = 153; - this.txtSellPrice.Text = "0.00"; - this.txtSellPrice.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtSellPrice.Type = Sunny.UI.UITextBox.UIEditType.Double; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(863, 154); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(88, 25); - this.label1.TabIndex = 152; - this.label1.Text = "商品名称"; - // - // txtSellName - // - this.txtSellName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtSellName.FillColor = System.Drawing.Color.White; - this.txtSellName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtSellName.Location = new System.Drawing.Point(825, 188); - this.txtSellName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtSellName.Maximum = 2147483647D; - this.txtSellName.Minimum = -2147483648D; - this.txtSellName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtSellName.Name = "txtSellName"; - this.txtSellName.Padding = new System.Windows.Forms.Padding(5); - this.txtSellName.Radius = 20; - this.txtSellName.Size = new System.Drawing.Size(165, 35); - this.txtSellName.Style = Sunny.UI.UIStyle.Custom; - this.txtSellName.StyleCustomMode = true; - this.txtSellName.TabIndex = 151; - this.txtSellName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(863, 82); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(88, 25); - this.label20.TabIndex = 150; - this.label20.Text = "商品编号"; - // - // txtSellNo - // - this.txtSellNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtSellNo.FillColor = System.Drawing.Color.White; - this.txtSellNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtSellNo.Location = new System.Drawing.Point(825, 110); - this.txtSellNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtSellNo.Maximum = 2147483647D; - this.txtSellNo.Minimum = -2147483648D; - this.txtSellNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtSellNo.Name = "txtSellNo"; - this.txtSellNo.Padding = new System.Windows.Forms.Padding(5); - this.txtSellNo.Radius = 20; - this.txtSellNo.ReadOnly = true; - this.txtSellNo.Size = new System.Drawing.Size(165, 35); - this.txtSellNo.Style = Sunny.UI.UIStyle.Custom; - this.txtSellNo.StyleCustomMode = true; - this.txtSellNo.TabIndex = 149; - this.txtSellNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // FrmSellThingManager - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.txtStock); - this.Controls.Add(this.label4); - this.Controls.Add(this.label3); - this.Controls.Add(this.txtformat); - this.Controls.Add(this.label2); - this.Controls.Add(this.txtSellPrice); - this.Controls.Add(this.label1); - this.Controls.Add(this.txtSellName); - this.Controls.Add(this.label20); - this.Controls.Add(this.txtSellNo); - this.Controls.Add(this.dgvSellthing); - this.Controls.Add(this.btnDeleteSellThing); - this.Controls.Add(this.btnUpdateSellthing); - this.Controls.Add(this.btnAddSellThing); - this.Controls.Add(this.uiLabel1); - this.Controls.Add(this.txtFind); - this.Controls.Add(this.btnFind); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmSellThingManager"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "商品管理"; - this.Load += new System.EventHandler(this.FrmSellThingManager_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvSellthing)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private Sunny.UI.UILabel uiLabel1; - private Sunny.UI.UITextBox txtFind; - private Sunny.UI.UIButton btnFind; - private Sunny.UI.UIButton btnAddSellThing; - private Sunny.UI.UIButton btnUpdateSellthing; - private Sunny.UI.UIButton btnDeleteSellThing; - private Sunny.UI.UIDataGridView dgvSellthing; - private Sunny.UI.UIDoubleUpDown txtStock; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label3; - private Sunny.UI.UITextBox txtformat; - private System.Windows.Forms.Label label2; - private Sunny.UI.UITextBox txtSellPrice; - private System.Windows.Forms.Label label1; - private Sunny.UI.UITextBox txtSellName; - private System.Windows.Forms.Label label20; - private Sunny.UI.UITextBox txtSellNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clSellNo; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn clSellName; - private System.Windows.Forms.DataGridViewTextBoxColumn clSellPrice; - private System.Windows.Forms.DataGridViewTextBoxColumn clFormat; - private System.Windows.Forms.DataGridViewTextBoxColumn clStock; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.cs deleted file mode 100644 index 84f7110267b1f86b40c4994e4873c69e95dc28ef..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.cs +++ /dev/null @@ -1,233 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmSellThingManager : UIForm - { - public FrmSellThingManager() - { - InitializeComponent(); - } - - public static SellThing st; - - Dictionary dic = null; - ResponseMsg result = null; - - public void LoadData() - { - result = HttpHelper.Request("Sellthing/SelectSellThingAll"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSellThingAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvSellthing.AutoGenerateColumns = false; - dgvSellthing.DataSource = HttpHelper.JsonToList(result.message); - } - - private void FrmSellThingManager_Load(object sender, EventArgs e) - { - string SellId = ApplicationUtil.GetListNewId("ST", 3, 1, "-").FirstOrDefault(); - txtSellNo.Text = SellId; - LoadData(); - } - - private void btnFind_Click(object sender, EventArgs e) - { - dic = new Dictionary() - { - {"SellNo",txtFind.Text.Trim() }, - { "SellName",txtFind.Text.Trim()} - }; - result = HttpHelper.Request("Sellthing/SelectSellThingAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSellThingAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - dgvSellthing.DataSource = HttpHelper.JsonToList(result.message); - } - - private void btnDeleteSellThing_Click(object sender, EventArgs e) - { - dic = new Dictionary() - { - { "sellNo",txtSellNo.Text.Trim()} - }; - result = HttpHelper.Request("Sellthing/DeleteSellThingBySellNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("DeleteSellThingBySellNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - UIMessageBox.ShowSuccess("删除商品成功!"); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "删除商品操作!删除值为:" + st.SellNo, 2); - #endregion - LoadData(); - return; - } - - public bool CheckInput(SellThing sellThing) - { - if (string.IsNullOrWhiteSpace(sellThing.SellNo)) - { - return false; - } - if (string.IsNullOrWhiteSpace(sellThing.SellName)) - { - return false; - } - if (string.IsNullOrWhiteSpace(sellThing.SellPrice + "")) - { - return false; - } - if (string.IsNullOrWhiteSpace(sellThing.Stock + "")) - { - return false; - } - return true; - } - - private void btnAddSellThing_Click(object sender, EventArgs e) - { - st = new SellThing() - { - SellNo = txtSellNo.Text, - SellName = string.IsNullOrWhiteSpace(txtSellName.Text) ? "" : txtSellName.Text, - SellPrice = string.IsNullOrWhiteSpace(txtSellPrice.Text) ? 0 : Convert.ToDecimal(txtSellPrice.Text), - format = string.IsNullOrWhiteSpace(txtformat.Text) ? "" : Convert.ToString(txtformat.Text), - Stock = txtStock.Value == 0 ? 0 : Convert.ToInt32(txtStock.Value), - datains_usr = AdminInfo.Account, - }; - if (CheckInput(st)) - { - dic = new Dictionary() - { - { "SellNo",st.SellNo} - }; - result = HttpHelper.Request("Sellthing/SelectSellInfoBySellNo", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSellInfoBySellNo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var SellThing = HttpHelper.JsonToModel(result.message); - if (SellThing != null && SellThing.SellName.Equals(st.SellName) && SellThing.format.Equals(st.format)) - { - UIMessageBox.ShowError("信息已存在,请检查!"); - return; - } - result = HttpHelper.Request("Sellthing​/InsertSellThing", HttpHelper.ModelToJson(st)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertSellThing+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - if (!result.ToString().Equals("true")) - { - UIMessageBox.Show("添加商品失败", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - UIMessageBox.Show("添加商品成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "新增商品操作!新增值为:" + st.SellNo, 2); - #endregion - LoadData(); - string SellId = ApplicationUtil.GetListNewId("ST", 3, 1, "-").FirstOrDefault(); - txtSellNo.Text = SellId; - } - else - { - UIMessageBox.ShowError("信息不完整,请检查!"); - string SellId = ApplicationUtil.GetListNewId("ST", 3, 1, "-").FirstOrDefault(); - txtSellNo.Text = SellId; - return; - } - } - - private void dgvSellthing_CellClick(object sender, DataGridViewCellEventArgs e) - { - txtSellNo.Text = dgvSellthing.SelectedRows[0].Cells["clSellNo"].Value.ToString(); - txtSellName.Text = dgvSellthing.SelectedRows[0].Cells["clSellName"].Value.ToString(); - txtSellPrice.Text = dgvSellthing.SelectedRows[0].Cells["clSellPrice"].Value.ToString(); - txtformat.Text = dgvSellthing.SelectedRows[0].Cells["clFormat"].Value.ToString(); - txtStock.Value = Convert.ToDouble(dgvSellthing.SelectedRows[0].Cells["clStock"].Value); - } - - private void txtStock_ValueChanged(object sender, double value) - { - //对数量步进器做限制,当小于0时使其一直保持0 - if (txtStock.Value <= 0) - { - txtStock.Value = 0; - } - } - - private void btnUpdateSellthing_Click(object sender, EventArgs e) - { - st = new SellThing() - { - SellNo = txtSellNo.Text, - SellName = string.IsNullOrWhiteSpace(txtSellName.Text) ? "" : txtSellName.Text, - SellPrice = string.IsNullOrWhiteSpace(txtSellPrice.Text) ? 0 : Convert.ToDecimal(txtSellPrice.Text), - format = string.IsNullOrWhiteSpace(txtformat.Text) ? "" : Convert.ToString(txtformat.Text), - Stock = txtStock.Value == 0 ? 0 : Convert.ToInt32(txtStock.Value), - datachg_usr = AdminInfo.Account, - }; - if (CheckInput(st)) - { - result = HttpHelper.Request("Sellthing​/UpdateSellthingInfo", HttpHelper.ModelToJson(st)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateSellthingInfo+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - if (!result.message.ToString().Equals("true")) - { - UIMessageBox.Show("修改商品失败", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - UIMessageBox.Show("修改商品成功", "系统提示", UIStyle.Green, UIMessageBoxButtons.OK); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "修改商品操作!修改值为:" + st.SellNo, 2); - #endregion - LoadData(); - } - else - { - UIMessageBox.Show("信息不完整,请检查!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - } - } -} - - diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.resx deleted file mode 100644 index 9ca2b7774767587dcc00e67c0e10250ad85fd8e4..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.resx +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGABPAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB5ElEQVRYR+2XO0sD - URSEU1ooiAhqJ2KTv2CVShDSWFgIYiOC2EaCnWks7BWLdCIWWitiY2ejCHYRLKz8GYnfbGZ9ZDfZ3TxA - YT8Y7t575sw9a2GSQk4nzWZzudVq1bqoZFss1Oc7/L+kbFvjsbErBNzbGguWnv2mZvtvCF+xQayhUqds - 7Ulcn0T+OnrlWS+yYvs3HB50LQ4Jssu6A6J/BR22a18T1zUUWrQlM+Qs0H/Cuh/mIpE4gBoCCLixJTO0 - X7ZTgpw6S7oBMJ/6WTzZkhlyHpyhAc5ZUg8wha7DvS2ZUa8ClKXMcA+9B9Cehi1tWA8DQx/Qe+yMLe2V - rT0kD8A6SeMHegwMfUDvizKUpb2ydQEkDyBoDt+g6qPU0FNx77GPsg/A8xgBdzpk3fRxIng33HOrDB9n - H0AQMoeeVWA9Ypl2KYJq9ognNOtSAPvsAwhCi+hKRdYGqqIy0nAzaBntoYY9V6jo9i+UrTpEB6Ah+FcM - kQFC8Gyjd/siqCaP7RGwDDaAwDchD2sFXaAztIOWOB+3LRb16QLof4BBUHb7inyAfIB8gD8+wJqPhg53 - rPqO2AH0gySAZ31F17RDE5m76I1n5cf/QKEWfiCNkujb/8Rvr0FSCb++uqfVyH5z/FcKhU9oLRkC0uto - CQAAAABJRU5ErkJggg== - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.Designer.cs deleted file mode 100644 index 2d447ad7a263fa86cefa013c67312b94867b950a..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.Designer.cs +++ /dev/null @@ -1,54 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmSexType - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSexType)); - this.SuspendLayout(); - // - // FrmSexType - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1005, 623); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmSexType"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "性别类型维护"; - this.Load += new System.EventHandler(this.FrmSexType_Load); - this.ResumeLayout(false); - - } - - #endregion - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.cs deleted file mode 100644 index b821115e5d67a80f085b61f1c208155797bd0fea..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.cs +++ /dev/null @@ -1,41 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmSexType : UIForm - { - public FrmSexType() - { - InitializeComponent(); - } - - private void FrmSexType_Load(object sender, EventArgs e) - { - - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.resx deleted file mode 100644 index 93e341b2909ba2ad11f17d30028192089c854958..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.resx +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGAAbAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACsElEQVRYR+2WPWhU - QRSFg50IUYNiRMEUQTBV/EEQLWxiCiEosoWIEAgRGyVpxNgkhRFEFBElRYiCgoQtDIYggmAgSKogCHbW - YmGjWNmsfvdxZpm8fW/vvIAW4sJhZueeOffsfXfmbUfH/09BBRqNxikwAebBMzAGBv5KsUh041fJh9jz - P2oi5CXRLDgKuljbwXgcrIZ4ign4+8Gy7QN97h5Ir5RgqowMZ9I4jPfbCRLfB95HP+hjWxMEhyS87DmF - uyju2SIuse5QLatAkgmI10Qc9gzAu1RWKda3ofVW8XowwHhTposrYc2lTT2eAbi9IUHMZX1z9BjrFgsG - NL9bagLiEwV7Ewz0ids8EXzfhMZC3lhsQCZmCk1AvKzAlQQD4+KOBy77R0qqkvVArlJPtX+huY7AkchZ - Z5tT0AnXnuNPcCgnPJLfl69AZNgutsF1fBbmy5orEIlPyegdr1L5HnD5GDiN+DcleGPdrobrYT7MfEWx - D8z3uoK5JkzhW9ceAK9ViZaB2BLYlSS2EQNRqWtkrwcHJL0HjqUmjp51SxNW0ggGKm0SGcMD0UW0vuFS - BTdigKTToZfiZ8j6d/AgNXfGq2ogutC+svc6qLE2BK7a8VUTf2oxQcA6/WQBgoeWWP4k8H1CCd4xL7xL - iK9JMLuqm5+yrvfWo2Y7SNIfVnqvxFFfXIwN2BvOLpkMkCYNkYGiWC0yMKpfP+YZgHdC3IceN7kHMPtI - Zvs9Ubh7ZOCFx61i4KVEuzxRDGwRd8njVjGQ/ZFF/IInCie8+KY9brIBcp+RgRVPFAO3xD3ncZMNmBDC - 4WV1vkzYbkclf+wm10W0xqbVFDLC3eHU2LvDup1xJ+N2cJj5XHSqtqZoVuaQZHc450V3CLEvZqaycNUN - ukcWGT8LNr9t1aiq9e/zfwPLObkLEXoTMAAAAABJRU5ErkJggg== - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.Designer.cs deleted file mode 100644 index 285b969ce9789b8de527b834ecaa6f511fdf2801..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.Designer.cs +++ /dev/null @@ -1,123 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmUnLockSystem - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - this.label1 = new System.Windows.Forms.Label(); - this.txtUnLockPwd = new System.Windows.Forms.TextBox(); - this.timer1 = new System.Windows.Forms.Timer(this.components); - this.btnUnLock = new Sunny.UI.UIButton(); - this.SuspendLayout(); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.BackColor = System.Drawing.Color.Transparent; - this.label1.Font = new System.Drawing.Font("阿里巴巴普惠体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.ForeColor = System.Drawing.Color.Red; - this.label1.Location = new System.Drawing.Point(33, 22); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(432, 27); - this.label1.TabIndex = 0; - this.label1.Text = "当前系统已锁定,请输入超管密码进行解锁!"; - // - // txtUnLockPwd - // - this.txtUnLockPwd.Font = new System.Drawing.Font("阿里巴巴普惠体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.txtUnLockPwd.Location = new System.Drawing.Point(120, 65); - this.txtUnLockPwd.Name = "txtUnLockPwd"; - this.txtUnLockPwd.PasswordChar = '*'; - this.txtUnLockPwd.Size = new System.Drawing.Size(259, 35); - this.txtUnLockPwd.TabIndex = 1; - this.txtUnLockPwd.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtUnLockPwd_KeyDown); - // - // timer1 - // - this.timer1.Tick += new System.EventHandler(this.timer1_Tick); - // - // btnUnLock - // - this.btnUnLock.BackColor = System.Drawing.Color.Transparent; - this.btnUnLock.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUnLock.FillColor = System.Drawing.Color.Red; - this.btnUnLock.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUnLock.Location = new System.Drawing.Point(205, 116); - this.btnUnLock.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUnLock.Name = "btnUnLock"; - this.btnUnLock.Radius = 20; - this.btnUnLock.RectColor = System.Drawing.Color.Transparent; - this.btnUnLock.RectPressColor = System.Drawing.Color.Transparent; - this.btnUnLock.RectSelectedColor = System.Drawing.Color.Transparent; - this.btnUnLock.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; - this.btnUnLock.Size = new System.Drawing.Size(101, 40); - this.btnUnLock.Style = Sunny.UI.UIStyle.Custom; - this.btnUnLock.TabIndex = 113; - this.btnUnLock.Text = "解 锁"; - this.btnUnLock.Click += new System.EventHandler(this.btnUnLock_Click); - // - // FrmUnLockSystem - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackgroundImage = global::EOM.TSHotelManagement.FormUI.Properties.Resources.jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018_jpg_w1024_new_small; - this.ClientSize = new System.Drawing.Size(498, 179); - this.Controls.Add(this.btnUnLock); - this.Controls.Add(this.txtUnLockPwd); - this.Controls.Add(this.label1); - this.EscClose = false; - this.IsForbidAltF4 = true; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmUnLockSystem"; - this.Padding = new System.Windows.Forms.Padding(0); - this.RectColor = System.Drawing.Color.Transparent; - this.ShowInTaskbar = false; - this.ShowTitle = false; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "系统已锁定!"; - this.TitleColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); - this.TopMost = true; - this.Deactivate += new System.EventHandler(this.FrmUnLockSystem_Deactivate); - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmUnLockSystem_FormClosing); - this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmUnLockSystem_FormClosed); - this.Load += new System.EventHandler(this.FrmUnLockSystem_Load); - this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmUnLockSystem_KeyDown); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - private System.Windows.Forms.TextBox txtUnLockPwd; - private System.Windows.Forms.Timer timer1; - private Sunny.UI.UIButton btnUnLock; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.cs deleted file mode 100644 index 1e0df29c5e2d4725bf19905b0eb56e8398f46e51..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.cs +++ /dev/null @@ -1,185 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; -using System.Diagnostics; -using System.Runtime.InteropServices; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmUnLockSystem : UIForm - { - - public FrmUnLockSystem() - { - InitializeComponent(); - } - - private const int SC_CLOSE = 0xF060; - - private const int MF_ENABLED = 0x00000000; - - private const int MF_GRAYED = 0x00000001; - - private const int MF_DISABLED = 0x00000002; - - - - [DllImport("user32.dll", EntryPoint = "GetSystemMenu")] - - private static extern IntPtr GetSystemMenu(IntPtr hWnd, int bRevert); - - [DllImport("User32.dll")] - - public static extern bool EnableMenuItem(IntPtr hMenu, int uIDEnableItem, int uEnable); - - private void FrmUnLockSystem_FormClosing(object sender, FormClosingEventArgs e) - { - //HookStop(); - } - - private void FrmUnLockSystem_Deactivate(object sender, EventArgs e) - { - - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void btnUnLock_Click(object sender, EventArgs e) - { - dic = new Dictionary() - { - { "account",AdminInfo.Account.Trim()} - }; - result = HttpHelper.Request("Admin/SelectAdminPwdByAccount", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectAdminPwdByAccount+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var account = HttpHelper.JsonToModel(result.message); - if (account != null) - { - if (account.AdminPassword != txtUnLockPwd.Text.Trim()) - { - UIMessageBox.ShowError("密码错误! 请输入当前超管密码解锁!"); - txtUnLockPwd.Text = ""; - txtUnLockPwd.Focus(); - return; - } - this.Close(); - string regPath = System.Windows.Forms.Application.StartupPath + @"\启用任务管理器.reg"; - ExecuteReg(regPath); - } - - } - - - private void FrmUnLockSystem_FormClosed(object sender, FormClosedEventArgs e) - { - - } - - private void txtUnLockPwd_KeyDown(object sender, KeyEventArgs e) - { - - } - - private void FrmUnLockSystem_Load(object sender, EventArgs e) - { - //string regPath = System.Windows.Forms.Application.StartupPath + @"\禁用任务管理器.reg"; - //ExecuteReg(regPath); - //Process[] ps = Process.GetProcessesByName("TS酒店管理系统"); - //if (ps.Length < 0) - //{ - // foreach (Process p in ps) - // p.Kill(); - // FrmMain.Start(); - //} - //IntPtr hMenu = GetSystemMenu(this.Handle, 0); - //EnableMenuItem(hMenu, SC_CLOSE, MF_DISABLED | MF_GRAYED); - //FrmBackgroundSystem.hideform(); - } - - protected override CreateParams CreateParams - { - get - { - const int CS_NOCLOSE = 0x200; - CreateParams cp = base.CreateParams; - cp.ClassStyle = cp.ClassStyle | CS_NOCLOSE; - return cp; - } - - } - - protected override void WndProc(ref Message m) - { - base.WndProc(ref m); - if (m.Msg == 0x84 && m.Result == (IntPtr)2) // 不让拖动标题栏 - { - m.Result = (IntPtr)1; - } - if (m.Msg == 0xA3) // 双击标题栏无反应 - { - m.WParam = System.IntPtr.Zero; - } - } - - /// - /// 执行注册表导入 - /// - /// 注册表文件路径 - public void ExecuteReg(string regPath) - { - if (File.Exists(regPath)) - { - regPath = @"""" + regPath + @""""; - Process.Start("regedit", string.Format(" /s {0}", regPath)); - } - } - - private void FrmUnLockSystem_KeyDown(object sender, KeyEventArgs e) - { - if (e.KeyCode == Keys.F4 && e.Modifiers == Keys.Alt) - { - UIMessageBox.Show("请输入解锁密码!", "错误", UIStyle.Red, UIMessageBoxButtons.OK); - e.Handled = true; - } - } - - private void timer1_Tick(object sender, EventArgs e) - { - - } - - private void btnUnLock_Click_1(object sender, EventArgs e) - { - - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.resx deleted file mode 100644 index 1f666f268bc6af87ca66d64b28d790bd5214274e..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs deleted file mode 100644 index 896d795d13f30f02b5f618f5f3224e24136ec268..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs +++ /dev/null @@ -1,221 +0,0 @@ -namespace EOM.TSHotelManager.FormUI -{ - partial class FrmUpLoadNotice - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmUpLoadNotice)); - this.rtbNoticeContent = new KSharpEditor.KEditor(); - this.txtNoticeTheme = new Sunny.UI.UITextBox(); - this.label5 = new System.Windows.Forms.Label(); - this.label8 = new System.Windows.Forms.Label(); - this.dtpUpLoadDate = new Sunny.UI.UIDatePicker(); - this.label1 = new System.Windows.Forms.Label(); - this.cboSelectClub = new Sunny.UI.UIComboBox(); - this.btnUpLoad = new Sunny.UI.UIButton(); - this.label2 = new System.Windows.Forms.Label(); - this.cbNoticeType = new Sunny.UI.UIComboBox(); - this.SuspendLayout(); - // - // rtbNoticeContent - // - this.rtbNoticeContent.Html = "

 

"; - this.rtbNoticeContent.KEditorEventListener = null; - this.rtbNoticeContent.Location = new System.Drawing.Point(6, 99); - this.rtbNoticeContent.Name = "rtbNoticeContent"; - this.rtbNoticeContent.Size = new System.Drawing.Size(992, 475); - this.rtbNoticeContent.TabIndex = 24; - // - // txtNoticeTheme - // - this.txtNoticeTheme.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtNoticeTheme.FillColor = System.Drawing.Color.White; - this.txtNoticeTheme.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtNoticeTheme.Location = new System.Drawing.Point(113, 50); - this.txtNoticeTheme.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtNoticeTheme.Maximum = 2147483647D; - this.txtNoticeTheme.Minimum = -2147483648D; - this.txtNoticeTheme.MinimumSize = new System.Drawing.Size(1, 1); - this.txtNoticeTheme.Name = "txtNoticeTheme"; - this.txtNoticeTheme.Padding = new System.Windows.Forms.Padding(5); - this.txtNoticeTheme.Radius = 20; - this.txtNoticeTheme.Size = new System.Drawing.Size(297, 35); - this.txtNoticeTheme.Style = Sunny.UI.UIStyle.Custom; - this.txtNoticeTheme.StyleCustomMode = true; - this.txtNoticeTheme.TabIndex = 112; - this.txtNoticeTheme.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(12, 56); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(88, 25); - this.label5.TabIndex = 111; - this.label5.Text = "公告主题"; - // - // label8 - // - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label8.Location = new System.Drawing.Point(702, 56); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(88, 25); - this.label8.TabIndex = 113; - this.label8.Text = "发布日期"; - // - // dtpUpLoadDate - // - this.dtpUpLoadDate.FillColor = System.Drawing.Color.White; - this.dtpUpLoadDate.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.dtpUpLoadDate.Location = new System.Drawing.Point(803, 50); - this.dtpUpLoadDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpUpLoadDate.MaxLength = 10; - this.dtpUpLoadDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpUpLoadDate.Name = "dtpUpLoadDate"; - this.dtpUpLoadDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpUpLoadDate.Radius = 20; - this.dtpUpLoadDate.Size = new System.Drawing.Size(188, 35); - this.dtpUpLoadDate.SymbolDropDown = 61555; - this.dtpUpLoadDate.SymbolNormal = 61555; - this.dtpUpLoadDate.TabIndex = 115; - this.dtpUpLoadDate.Text = "2021-02-13"; - this.dtpUpLoadDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpUpLoadDate.Value = new System.DateTime(2021, 2, 13, 0, 0, 0, 0); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(423, 56); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(88, 25); - this.label1.TabIndex = 116; - this.label1.Text = "发布部门"; - // - // cboSelectClub - // - this.cboSelectClub.DataSource = null; - this.cboSelectClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboSelectClub.FillColor = System.Drawing.Color.White; - this.cboSelectClub.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboSelectClub.Location = new System.Drawing.Point(524, 50); - this.cboSelectClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboSelectClub.MinimumSize = new System.Drawing.Size(63, 0); - this.cboSelectClub.Name = "cboSelectClub"; - this.cboSelectClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboSelectClub.Radius = 20; - this.cboSelectClub.Size = new System.Drawing.Size(165, 35); - this.cboSelectClub.TabIndex = 118; - this.cboSelectClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // btnUpLoad - // - this.btnUpLoad.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpLoad.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpLoad.Location = new System.Drawing.Point(857, 582); - this.btnUpLoad.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpLoad.Name = "btnUpLoad"; - this.btnUpLoad.Radius = 20; - this.btnUpLoad.Size = new System.Drawing.Size(139, 35); - this.btnUpLoad.TabIndex = 119; - this.btnUpLoad.Text = "发布任命公告"; - this.btnUpLoad.Click += new System.EventHandler(this.btnUpLoad_Click); - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(594, 586); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(88, 25); - this.label2.TabIndex = 120; - this.label2.Text = "公告类型"; - // - // cbNoticeType - // - this.cbNoticeType.DataSource = null; - this.cbNoticeType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cbNoticeType.FillColor = System.Drawing.Color.White; - this.cbNoticeType.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cbNoticeType.Items.AddRange(new object[] { - "人事变动", - "普通公告"}); - this.cbNoticeType.Location = new System.Drawing.Point(685, 582); - this.cbNoticeType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cbNoticeType.MinimumSize = new System.Drawing.Size(63, 0); - this.cbNoticeType.Name = "cbNoticeType"; - this.cbNoticeType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cbNoticeType.Radius = 20; - this.cbNoticeType.Size = new System.Drawing.Size(165, 35); - this.cbNoticeType.TabIndex = 121; - this.cbNoticeType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // FrmUpLoadNotice - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.cbNoticeType); - this.Controls.Add(this.label2); - this.Controls.Add(this.btnUpLoad); - this.Controls.Add(this.cboSelectClub); - this.Controls.Add(this.label1); - this.Controls.Add(this.dtpUpLoadDate); - this.Controls.Add(this.label8); - this.Controls.Add(this.txtNoticeTheme); - this.Controls.Add(this.label5); - this.Controls.Add(this.rtbNoticeContent); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmUpLoadNotice"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "上传任命公告"; - this.Load += new System.EventHandler(this.FrmUpLoad_Load); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private KSharpEditor.KEditor rtbNoticeContent; - private Sunny.UI.UITextBox txtNoticeTheme; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.Label label8; - private Sunny.UI.UIDatePicker dtpUpLoadDate; - private System.Windows.Forms.Label label1; - private Sunny.UI.UIComboBox cboSelectClub; - private Sunny.UI.UIButton btnUpLoad; - private System.Windows.Forms.Label label2; - private Sunny.UI.UIComboBox cbNoticeType; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.cs deleted file mode 100644 index 9d10794f5c3a3b6ac46940c38641f7c41c55ae75..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.cs +++ /dev/null @@ -1,137 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 咖啡与网络(java-and-net) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ -using EOM.TSHotelManager.Common.Core; -using Sunny.UI; -using SYS.Common; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Windows.Forms; - -namespace EOM.TSHotelManager.FormUI -{ - public partial class FrmUpLoadNotice : UIForm - { - public FrmUpLoadNotice() - { - InitializeComponent(); - } - - Dictionary dic = null; - ResponseMsg result = null; - - public bool CheckInput(string Content) - { - if (string.IsNullOrWhiteSpace(Content)) - { - return false; - } - - if (Content.Contains("alert") || Content.Contains("ALERT")) - { - return false; - } - return true; - } - - private void btnUpLoad_Click(object sender, EventArgs e) - { - if (CheckInput(rtbNoticeContent.Html)) - { - Notice notice = new Notice() - { - NoticeNo = Util.GetListNewId("UP", 3, 1, "-").FirstOrDefault(), - Noticetheme = txtNoticeTheme.Text.Trim(), - NoticeContent = rtbNoticeContent.Html, - NoticeTime = dtpUpLoadDate.Value, - NoticeClub = cboSelectClub.SelectedValue.ToString(), - datains_usr = AdminInfo.Account, - }; - - switch (cbNoticeType.Text) - { - case "人事变动": - notice.NoticeTypeName = "PersonnelChanges"; - break; - case "普通公告": - notice.NoticeTypeName = "GeneralNotice"; - break; - } - result = HttpHelper.Request("Notice​/InsertNotice", HttpHelper.ModelToJson(notice)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("InsertNotice+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - if (!result.message.ToString().Equals("true")) - { - UIMessageBox.Show("上传失败!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); - return; - } - UIMessageBox.ShowSuccess("上传成功!"); - txtNoticeTheme.Text = string.Empty; - rtbNoticeContent.Html = string.Empty; - cbNoticeType.SelectedIndex = 0; - cboSelectClub.SelectedIndex = 0; - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + DateTime.Now + "位于" + AdminInfo.SoftwareVersion + "执行:" + "上传公告操作!新增值为:" + notice.NoticeNo, 2); - #endregion - } - else - { - UIMessageBox.ShowWarning("含有非法操作字符!"); - return; - } - foreach (Control Ctrol in this.Controls) - { - if (Ctrol is TextBox) - { - Ctrol.Text = ""; - } - if (Ctrol is KSharpEditor.KEditor) - { - Ctrol.Text = ""; - } - } - } - - - - private void FrmUpLoad_Load(object sender, EventArgs e) - { - dtpUpLoadDate.Value = DateTime.Now; - result = HttpHelper.Request("Base/SelectDeptAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectDeptAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - //加载部门信息 - cboSelectClub.DataSource = HttpHelper.JsonToList(result.message); - cboSelectClub.DisplayMember = "dept_name"; - cboSelectClub.ValueMember = "dept_no"; - - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.resx deleted file mode 100644 index ff0b57c3e734d5e5ec1cb7c0cb589bd1474974cc..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.resx +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAGABgAQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAA9UlEQVRYR2NgGAWj - ITCUQ+D///8NIDwgfvj3718O0HIwALKz6OoIoIURMMuR6FC6OAJouSsQ/0B3AEgMiJ1o6gigBYZA/ASL - 72FR8Rgor08TRwANlgXi87gsR0oPZ4HqZKjqCKDhXEBDdxOyHMkRu4DqOanmCGh2I9Z+mLpV1HSAA9BU - dIzuIHR5A6o5AJtB6LbT1LKR5QBg6p0PxF2EgpTUKCDWXAaYwdR2ALHmEu0AoI/0kHKGMbEOJqSOaAcQ - NAhNAdVDYNQBNA8BLEUvtuKYFDFwMiDocFJrHFLVE3QAtMDYD6SpjkG1KkEHjCoYDQF6hwAACPEOjtb4 - ucoAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.Designer.cs deleted file mode 100644 index 02f8cbd9802f81f28c9439ec7e8abde1632bfbd1..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.Designer.cs +++ /dev/null @@ -1,241 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmVipRule - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmVipRule)); - this.flpVipType = new Sunny.UI.UIFlowLayoutPanel(); - this.btnOK = new Sunny.UI.UIButton(); - this.txtRuleId = new Sunny.UI.UITextBox(); - this.txtRuleName = new Sunny.UI.UITextBox(); - this.label4 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.cboCustoType = new Sunny.UI.UIComboBox(); - this.label1 = new System.Windows.Forms.Label(); - this.dudSpendAmount = new Sunny.UI.UIDoubleUpDown(); - this.btnReset = new Sunny.UI.UIButton(); - this.SuspendLayout(); - // - // flpVipType - // - this.flpVipType.Font = new System.Drawing.Font("微软雅黑", 12F); - this.flpVipType.Location = new System.Drawing.Point(4, 40); - this.flpVipType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.flpVipType.MinimumSize = new System.Drawing.Size(1, 1); - this.flpVipType.Name = "flpVipType"; - this.flpVipType.Padding = new System.Windows.Forms.Padding(2); - this.flpVipType.Size = new System.Drawing.Size(489, 578); - this.flpVipType.TabIndex = 0; - this.flpVipType.Text = "uiFlowLayoutPanel1"; - this.flpVipType.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - // - // btnOK - // - this.btnOK.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnOK.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnOK.Location = new System.Drawing.Point(569, 262); - this.btnOK.MinimumSize = new System.Drawing.Size(1, 1); - this.btnOK.Name = "btnOK"; - this.btnOK.Radius = 20; - this.btnOK.Size = new System.Drawing.Size(144, 40); - this.btnOK.TabIndex = 180; - this.btnOK.Text = "录入"; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // txtRuleId - // - this.txtRuleId.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRuleId.FillColor = System.Drawing.Color.White; - this.txtRuleId.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRuleId.Location = new System.Drawing.Point(671, 53); - this.txtRuleId.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRuleId.Maximum = 2147483647D; - this.txtRuleId.Minimum = -2147483648D; - this.txtRuleId.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRuleId.Name = "txtRuleId"; - this.txtRuleId.Padding = new System.Windows.Forms.Padding(5); - this.txtRuleId.Radius = 20; - this.txtRuleId.ReadOnly = true; - this.txtRuleId.Size = new System.Drawing.Size(250, 35); - this.txtRuleId.Style = Sunny.UI.UIStyle.Custom; - this.txtRuleId.StyleCustomMode = true; - this.txtRuleId.TabIndex = 184; - this.txtRuleId.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // txtRuleName - // - this.txtRuleName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRuleName.FillColor = System.Drawing.Color.White; - this.txtRuleName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRuleName.Location = new System.Drawing.Point(671, 105); - this.txtRuleName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRuleName.Maximum = 2147483647D; - this.txtRuleName.Minimum = -2147483648D; - this.txtRuleName.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRuleName.Name = "txtRuleName"; - this.txtRuleName.Padding = new System.Windows.Forms.Padding(5); - this.txtRuleName.Radius = 20; - this.txtRuleName.Size = new System.Drawing.Size(250, 35); - this.txtRuleName.Style = Sunny.UI.UIStyle.Custom; - this.txtRuleName.StyleCustomMode = true; - this.txtRuleName.TabIndex = 185; - this.txtRuleName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label4.Location = new System.Drawing.Point(564, 163); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(88, 25); - this.label4.TabIndex = 183; - this.label4.Text = "消费总额"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(564, 111); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(88, 25); - this.label3.TabIndex = 182; - this.label3.Text = "规则名称"; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(564, 59); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(88, 25); - this.label2.TabIndex = 181; - this.label2.Text = "规则编号"; - // - // cboCustoType - // - this.cboCustoType.DataSource = null; - this.cboCustoType.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboCustoType.FillColor = System.Drawing.Color.White; - this.cboCustoType.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboCustoType.Location = new System.Drawing.Point(671, 209); - this.cboCustoType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboCustoType.MinimumSize = new System.Drawing.Size(63, 0); - this.cboCustoType.Name = "cboCustoType"; - this.cboCustoType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboCustoType.Radius = 20; - this.cboCustoType.Size = new System.Drawing.Size(250, 35); - this.cboCustoType.TabIndex = 188; - this.cboCustoType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(564, 214); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(88, 25); - this.label1.TabIndex = 187; - this.label1.Text = "会员类型"; - // - // dudSpendAmount - // - this.dudSpendAmount.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dudSpendAmount.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.dudSpendAmount.Location = new System.Drawing.Point(671, 157); - this.dudSpendAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dudSpendAmount.Maximum = 999999999999999D; - this.dudSpendAmount.Minimum = 0D; - this.dudSpendAmount.MinimumSize = new System.Drawing.Size(100, 0); - this.dudSpendAmount.Name = "dudSpendAmount"; - this.dudSpendAmount.Radius = 20; - this.dudSpendAmount.Size = new System.Drawing.Size(250, 35); - this.dudSpendAmount.Step = 5000D; - this.dudSpendAmount.TabIndex = 189; - this.dudSpendAmount.Text = null; - this.dudSpendAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.dudSpendAmount.Value = 0D; - // - // btnReset - // - this.btnReset.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnReset.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnReset.Location = new System.Drawing.Point(777, 262); - this.btnReset.MinimumSize = new System.Drawing.Size(1, 1); - this.btnReset.Name = "btnReset"; - this.btnReset.Radius = 20; - this.btnReset.Size = new System.Drawing.Size(144, 40); - this.btnReset.TabIndex = 190; - this.btnReset.Text = "重置"; - // - // FrmVipRule - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1001, 623); - this.ControlBox = false; - this.Controls.Add(this.btnReset); - this.Controls.Add(this.dudSpendAmount); - this.Controls.Add(this.cboCustoType); - this.Controls.Add(this.label1); - this.Controls.Add(this.txtRuleId); - this.Controls.Add(this.txtRuleName); - this.Controls.Add(this.label4); - this.Controls.Add(this.label3); - this.Controls.Add(this.label2); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.flpVipType); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmVipRule"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "会员等级规则"; - this.Load += new System.EventHandler(this.FrmVipRule_Load); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Sunny.UI.UIFlowLayoutPanel flpVipType; - private Sunny.UI.UIButton btnOK; - private Sunny.UI.UITextBox txtRuleId; - private Sunny.UI.UITextBox txtRuleName; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label2; - private Sunny.UI.UIComboBox cboCustoType; - private System.Windows.Forms.Label label1; - private Sunny.UI.UIDoubleUpDown dudSpendAmount; - private Sunny.UI.UIButton btnReset; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.cs deleted file mode 100644 index 6ad2406f70855fa5bdd4b35b8d2afb1945dafd98..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.cs +++ /dev/null @@ -1,140 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.FormUI.Properties; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmVipRule : UIForm - { - public FrmVipRule() - { - InitializeComponent(); - } - - ResponseMsg result = new ResponseMsg(); - - private void FrmVipRule_Load(object sender, EventArgs e) - { - #region 加载客户类型信息 - result = HttpHelper.Request("Base/SelectCustoTypeAllCanUse"); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("SelectCustoTypeAllCanUse+接口服务异常,请提交issue"); - return; - } - List lstSourceGrid = HttpHelper.JsonToList(result.message); - this.cboCustoType.DataSource = lstSourceGrid; - this.cboCustoType.DisplayMember = "TypeName"; - this.cboCustoType.ValueMember = "UserType"; - this.cboCustoType.SelectedIndex = 0; - #endregion - //生成流水号 - txtRuleId.Text = ApplicationUtil.GetListNewId("VR", 3, 1, "-").FirstOrDefault(); - LoadVipType(); - } - - /// - /// 加载会员等级规则列表 - /// - public void LoadVipType() - { - flpVipType.Clear(); - result = HttpHelper.Request("VipRule/SelectVipRuleList"); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("SelectVipRuleList+接口服务异常,请提交issue"); - return; - } - var listVipTypes = HttpHelper.JsonToList(result.message); - listVipTypes.ForEach(vipType => - { - ucVipType ucVipType = new ucVipType(); - ucVipType.picVip.BackgroundImage = vipType.type_id == 0 ? Resources.普通会员 - : vipType.type_id == 1 ? Resources.钻石会员 : vipType.type_id == 2 ? Resources.白金会员 : Resources.黄金会员; - ucVipType.lblValue.Text = vipType.type_name; - flpVipType.Add(ucVipType); - }); - - } - - /// - /// 添加会员等级规则方法 - /// - /// - /// - public bool InsertVipRule(VipRule vipRule) - { - VipRule vipRule1 = new VipRule - { - rule_id = vipRule.rule_id, - rule_name = vipRule.rule_name, - rule_value = vipRule.rule_value, - type_id = vipRule.type_id, - delete_mk = 0, - datains_usr = AdminInfo.Account - }; - result = HttpHelper.Request("VipRule/AddVipRule", HttpHelper.ModelToJson(vipRule1)); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("AddVipRule+接口服务异常,请提交issue"); - return false; - } - return true; - } - - private void btnOK_Click(object sender, EventArgs e) - { - if (!txtRuleId.Text.Trim().IsNullOrEmpty() && !txtRuleName.Text.Trim().IsNullOrEmpty() - && !dudSpendAmount.Value.IsZero()) - { - VipRule vipRule1 = new VipRule - { - rule_id = txtRuleId.Text.Trim(), - rule_name = txtRuleName.Text.Trim(), - rule_value = Convert.ToDecimal(dudSpendAmount.Value), - type_id = Convert.ToInt32(cboCustoType.SelectedValue), - datains_usr = AdminInfo.Account - }; - if (InsertVipRule(vipRule1)) - { - UIMessageBox.ShowSuccess("录入成功!"); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "添加会员规则操作!新增值为:" + vipRule1.rule_id, 2); - #endregion - LoadVipType(); - return; - } - else - { - UIMessageBox.ShowError("录入失败,请稍后再试!"); - return; - } - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.resx deleted file mode 100644 index 5b66478bd9abc9130f46e492920d0b959fea2b23..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.resx +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////nf///7////+/////v////7////+/////CgAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wj///////////////////////////////////94AAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////fP////////////////////////////////// - /+cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////z//////////////////////// - /////////////////zQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Wv////////////////// - ////////////////////////////owAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////T//////// - ////////////////////////////////////////////BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////Pv// - ///////////////////////////////////////b//////////////9cAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAD///+x////////////////////////////////////3////3T//////////////8sAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////Kv////////////////////////////////////////94////Dv////////////////// - /ywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAD///+R////////////////////////////////////8f///xIAAAAA////rf// - ////////////hwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////GP////////////////////////////////////////+RAAAAAAAA - AAD///9G///////////////1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///92//////////////////////////////////////// - /yoAAAAAAAAAAAAAAAD////X//////////////9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////BP///+f///////////////////////////// - //////+lAAAAAAAAAAAAAAAAAAAAAP///37//////////////7EAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9i//////////////////////// - /////////////////0IAAAAAAAAAAAAAAAAAAAAA////GP///////////////////ygAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///8X///////////// - //////////////////////+5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////qf//////////////fAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9O//////// - /////////////////////////////////1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9Q//////// - ///////ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /63////////////////////////////////////LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAD////P//////////////9OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAD///86/////////////////////////////////////////2wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAP///3j//////////////6MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAP///5n////////////////////////////////////f////DAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////Iv////f//////////////yIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAD///8m////+////////////////////////////////////4EAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////of//////////////dgAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///4X////////////////////////////////////z////IgAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///9K///////////////LAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g////6/////////////////////////////////// - /5cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////b//////// - //////9OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///5X///////////////////////////// - ////////////SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /5///////////////8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8g//////////////////////// - //////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA////j////////////////////2AAAAAAAAAAAAAAAAAAAAAA////cP///7f///////////// - /////////////////////////////////2b///8u////Hv///wwAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /xb///82////VP///3b/////////////////////////3////3T///8w////EP///4H///+/////v/// - /7////+/////v////7////+/////v////7////+/////v////6P///8y////vwAAAAAAAAAAAAAAAAAA - AAAAAAAA////v////8P////D////wf///8H///+/////v////7////+/////v////7////9+AAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA//////////////////gf///4H///+A////AP///wB///4Af//+AH///A - I///wGP//4Bh//+Acf//gPH//wD4//8B+P/+Afj//gP8f/wD/H/8B/4/+Af+P/gH/j/wD/8f8A//H+Af - /w/gH/8PwB//BwAF8AH///////////////8= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.Designer.cs deleted file mode 100644 index 6039f5065b0d78003bed40fe9366fe150e249a96..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.Designer.cs +++ /dev/null @@ -1,580 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmWoEInfo - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWoEInfo)); - this.dgvWti = new Sunny.UI.UIDataGridView(); - this.clWtiNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clRoomNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clUseDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clEndDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWaterUse = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clPowerUse = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clRecord = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCustoNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.btnUpdWti = new Sunny.UI.UIButton(); - this.pnlWtiInfo = new Sunny.UI.UIPanel(); - this.btnClose = new Sunny.UI.UIButton(); - this.txtCustoNo = new Sunny.UI.UITextBox(); - this.dtpEndDate = new Sunny.UI.UIDatePicker(); - this.label1 = new System.Windows.Forms.Label(); - this.dtpStartDate = new Sunny.UI.UIDatePicker(); - this.label5 = new System.Windows.Forms.Label(); - this.txtWInfo = new Sunny.UI.UITextBox(); - this.txtRecordNo = new Sunny.UI.UITextBox(); - this.txtRoomNo = new Sunny.UI.UITextBox(); - this.txtTInfo = new Sunny.UI.UITextBox(); - this.label8 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.uiToolTip1 = new Sunny.UI.UIToolTip(this.components); - ((System.ComponentModel.ISupportInitialize)(this.dgvWti)).BeginInit(); - this.pnlWtiInfo.SuspendLayout(); - this.SuspendLayout(); - // - // dgvWti - // - this.dgvWti.AllowUserToAddRows = false; - this.dgvWti.AllowUserToDeleteRows = false; - this.dgvWti.AllowUserToResizeColumns = false; - this.dgvWti.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvWti.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvWti.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvWti.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvWti.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken; - this.dgvWti.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvWti.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvWti.ColumnHeadersHeight = 32; - this.dgvWti.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvWti.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clWtiNo, - this.clRoomNo, - this.clUseDate, - this.clEndDate, - this.clWaterUse, - this.clPowerUse, - this.clRecord, - this.clCustoNo, - this.Column7, - this.Column8, - this.Column9, - this.Column10, - this.Column11}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvWti.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvWti.EnableHeadersVisualStyles = false; - this.dgvWti.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvWti.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvWti.Location = new System.Drawing.Point(12, 48); - this.dgvWti.MultiSelect = false; - this.dgvWti.Name = "dgvWti"; - this.dgvWti.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvWti.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvWti.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvWti.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvWti.RowTemplate.Height = 29; - this.dgvWti.SelectedIndex = -1; - this.dgvWti.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvWti.Size = new System.Drawing.Size(981, 528); - this.dgvWti.Style = Sunny.UI.UIStyle.Custom; - this.dgvWti.TabIndex = 58; - this.uiToolTip1.SetToolTip(this.dgvWti, "双击数据可进行修改!"); - this.dgvWti.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvWti_CellDoubleClick); - // - // clWtiNo - // - this.clWtiNo.DataPropertyName = "WtiNo"; - this.clWtiNo.HeaderText = "记录编号"; - this.clWtiNo.Name = "clWtiNo"; - this.clWtiNo.ReadOnly = true; - // - // clRoomNo - // - this.clRoomNo.DataPropertyName = "RoomNo"; - this.clRoomNo.HeaderText = "房号"; - this.clRoomNo.Name = "clRoomNo"; - this.clRoomNo.ReadOnly = true; - // - // clUseDate - // - this.clUseDate.DataPropertyName = "UseDate"; - this.clUseDate.HeaderText = "开始使用时间"; - this.clUseDate.Name = "clUseDate"; - this.clUseDate.ReadOnly = true; - // - // clEndDate - // - this.clEndDate.DataPropertyName = "EndDate"; - this.clEndDate.HeaderText = "结束使用时间"; - this.clEndDate.Name = "clEndDate"; - this.clEndDate.ReadOnly = true; - // - // clWaterUse - // - this.clWaterUse.DataPropertyName = "WaterUse"; - this.clWaterUse.HeaderText = "水费"; - this.clWaterUse.Name = "clWaterUse"; - this.clWaterUse.ReadOnly = true; - // - // clPowerUse - // - this.clPowerUse.DataPropertyName = "PowerUse"; - this.clPowerUse.HeaderText = "电费"; - this.clPowerUse.Name = "clPowerUse"; - this.clPowerUse.ReadOnly = true; - // - // clRecord - // - this.clRecord.DataPropertyName = "Record"; - this.clRecord.HeaderText = "记录员"; - this.clRecord.Name = "clRecord"; - this.clRecord.ReadOnly = true; - // - // clCustoNo - // - this.clCustoNo.DataPropertyName = "CustoNo"; - this.clCustoNo.HeaderText = "客户编号"; - this.clCustoNo.Name = "clCustoNo"; - this.clCustoNo.ReadOnly = true; - // - // Column7 - // - this.Column7.DataPropertyName = "delete_mk"; - this.Column7.HeaderText = "Column7"; - this.Column7.Name = "Column7"; - this.Column7.ReadOnly = true; - this.Column7.Visible = false; - // - // Column8 - // - this.Column8.DataPropertyName = "datains_usr"; - this.Column8.HeaderText = "Column8"; - this.Column8.Name = "Column8"; - this.Column8.ReadOnly = true; - this.Column8.Visible = false; - // - // Column9 - // - this.Column9.DataPropertyName = "datains_date"; - this.Column9.HeaderText = "Column9"; - this.Column9.Name = "Column9"; - this.Column9.ReadOnly = true; - this.Column9.Visible = false; - // - // Column10 - // - this.Column10.DataPropertyName = "datachg_usr"; - this.Column10.HeaderText = "Column10"; - this.Column10.Name = "Column10"; - this.Column10.ReadOnly = true; - this.Column10.Visible = false; - // - // Column11 - // - this.Column11.DataPropertyName = "datachg_date"; - this.Column11.HeaderText = "Column11"; - this.Column11.Name = "Column11"; - this.Column11.ReadOnly = true; - this.Column11.Visible = false; - // - // btnUpdWti - // - this.btnUpdWti.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdWti.Enabled = false; - this.btnUpdWti.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnUpdWti.Location = new System.Drawing.Point(525, 416); - this.btnUpdWti.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdWti.Name = "btnUpdWti"; - this.btnUpdWti.Radius = 20; - this.btnUpdWti.Size = new System.Drawing.Size(109, 28); - this.btnUpdWti.Style = Sunny.UI.UIStyle.Custom; - this.btnUpdWti.TabIndex = 131; - this.btnUpdWti.Text = "修 改"; - this.btnUpdWti.Click += new System.EventHandler(this.btnUpdWti_Click); - // - // pnlWtiInfo - // - this.pnlWtiInfo.Controls.Add(this.btnClose); - this.pnlWtiInfo.Controls.Add(this.txtCustoNo); - this.pnlWtiInfo.Controls.Add(this.btnUpdWti); - this.pnlWtiInfo.Controls.Add(this.dtpEndDate); - this.pnlWtiInfo.Controls.Add(this.label1); - this.pnlWtiInfo.Controls.Add(this.dtpStartDate); - this.pnlWtiInfo.Controls.Add(this.label5); - this.pnlWtiInfo.Controls.Add(this.txtWInfo); - this.pnlWtiInfo.Controls.Add(this.txtRecordNo); - this.pnlWtiInfo.Controls.Add(this.txtRoomNo); - this.pnlWtiInfo.Controls.Add(this.txtTInfo); - this.pnlWtiInfo.Controls.Add(this.label8); - this.pnlWtiInfo.Controls.Add(this.label6); - this.pnlWtiInfo.Controls.Add(this.label4); - this.pnlWtiInfo.Controls.Add(this.label3); - this.pnlWtiInfo.Controls.Add(this.label2); - this.pnlWtiInfo.Font = new System.Drawing.Font("微软雅黑", 12F); - this.pnlWtiInfo.Location = new System.Drawing.Point(129, 96); - this.pnlWtiInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.pnlWtiInfo.MinimumSize = new System.Drawing.Size(1, 1); - this.pnlWtiInfo.Name = "pnlWtiInfo"; - this.pnlWtiInfo.Size = new System.Drawing.Size(763, 458); - this.pnlWtiInfo.Style = Sunny.UI.UIStyle.Custom; - this.pnlWtiInfo.TabIndex = 132; - this.pnlWtiInfo.Text = "水电信息查看面板v1.0"; - this.pnlWtiInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.pnlWtiInfo.Visible = false; - // - // btnClose - // - this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnClose.Enabled = false; - this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnClose.Location = new System.Drawing.Point(640, 416); - this.btnClose.MinimumSize = new System.Drawing.Size(1, 1); - this.btnClose.Name = "btnClose"; - this.btnClose.Radius = 20; - this.btnClose.Size = new System.Drawing.Size(109, 28); - this.btnClose.Style = Sunny.UI.UIStyle.Custom; - this.btnClose.TabIndex = 136; - this.btnClose.Text = "关 闭"; - this.btnClose.Click += new System.EventHandler(this.btnClose_Click); - // - // txtCustoNo - // - this.txtCustoNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCustoNo.FillColor = System.Drawing.Color.White; - this.txtCustoNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCustoNo.Location = new System.Drawing.Point(498, 15); - this.txtCustoNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCustoNo.Maximum = 2147483647D; - this.txtCustoNo.Minimum = -2147483648D; - this.txtCustoNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCustoNo.Name = "txtCustoNo"; - this.txtCustoNo.Padding = new System.Windows.Forms.Padding(5); - this.txtCustoNo.Radius = 20; - this.txtCustoNo.ReadOnly = true; - this.txtCustoNo.Size = new System.Drawing.Size(250, 35); - this.txtCustoNo.Style = Sunny.UI.UIStyle.Custom; - this.txtCustoNo.StyleCustomMode = true; - this.txtCustoNo.TabIndex = 135; - this.txtCustoNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // dtpEndDate - // - this.dtpEndDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpEndDate.FillColor = System.Drawing.Color.White; - this.dtpEndDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpEndDate.Location = new System.Drawing.Point(498, 171); - this.dtpEndDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpEndDate.MaxLength = 10; - this.dtpEndDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpEndDate.Name = "dtpEndDate"; - this.dtpEndDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpEndDate.Radius = 20; - this.dtpEndDate.ReadOnly = true; - this.dtpEndDate.Size = new System.Drawing.Size(250, 31); - this.dtpEndDate.Style = Sunny.UI.UIStyle.Custom; - this.dtpEndDate.SymbolDropDown = 61555; - this.dtpEndDate.SymbolNormal = 61555; - this.dtpEndDate.TabIndex = 134; - this.dtpEndDate.Text = "2020-11-24"; - this.dtpEndDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpEndDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(394, 177); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(88, 25); - this.label1.TabIndex = 133; - this.label1.Text = "结束时间"; - // - // dtpStartDate - // - this.dtpStartDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpStartDate.FillColor = System.Drawing.Color.White; - this.dtpStartDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpStartDate.Location = new System.Drawing.Point(122, 171); - this.dtpStartDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpStartDate.MaxLength = 10; - this.dtpStartDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpStartDate.Name = "dtpStartDate"; - this.dtpStartDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpStartDate.Radius = 20; - this.dtpStartDate.ReadOnly = true; - this.dtpStartDate.Size = new System.Drawing.Size(265, 31); - this.dtpStartDate.Style = Sunny.UI.UIStyle.Custom; - this.dtpStartDate.SymbolDropDown = 61555; - this.dtpStartDate.SymbolNormal = 61555; - this.dtpStartDate.TabIndex = 132; - this.dtpStartDate.Text = "2020-11-24"; - this.dtpStartDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpStartDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(15, 177); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(88, 25); - this.label5.TabIndex = 131; - this.label5.Text = "开始时间"; - // - // txtWInfo - // - this.txtWInfo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtWInfo.FillColor = System.Drawing.Color.White; - this.txtWInfo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtWInfo.Location = new System.Drawing.Point(499, 119); - this.txtWInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtWInfo.Maximum = 2147483647D; - this.txtWInfo.Minimum = -2147483648D; - this.txtWInfo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtWInfo.Name = "txtWInfo"; - this.txtWInfo.Padding = new System.Windows.Forms.Padding(5); - this.txtWInfo.Radius = 20; - this.txtWInfo.Size = new System.Drawing.Size(249, 35); - this.txtWInfo.Style = Sunny.UI.UIStyle.Custom; - this.txtWInfo.StyleCustomMode = true; - this.txtWInfo.TabIndex = 130; - this.txtWInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // txtRecordNo - // - this.txtRecordNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRecordNo.FillColor = System.Drawing.Color.White; - this.txtRecordNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRecordNo.Location = new System.Drawing.Point(122, 15); - this.txtRecordNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRecordNo.Maximum = 2147483647D; - this.txtRecordNo.Minimum = -2147483648D; - this.txtRecordNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRecordNo.Name = "txtRecordNo"; - this.txtRecordNo.Padding = new System.Windows.Forms.Padding(5); - this.txtRecordNo.Radius = 20; - this.txtRecordNo.ReadOnly = true; - this.txtRecordNo.Size = new System.Drawing.Size(265, 35); - this.txtRecordNo.Style = Sunny.UI.UIStyle.Custom; - this.txtRecordNo.StyleCustomMode = true; - this.txtRecordNo.TabIndex = 126; - this.txtRecordNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // txtRoomNo - // - this.txtRoomNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtRoomNo.FillColor = System.Drawing.Color.White; - this.txtRoomNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtRoomNo.Location = new System.Drawing.Point(122, 67); - this.txtRoomNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtRoomNo.Maximum = 2147483647D; - this.txtRoomNo.Minimum = -2147483648D; - this.txtRoomNo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtRoomNo.Name = "txtRoomNo"; - this.txtRoomNo.Padding = new System.Windows.Forms.Padding(5); - this.txtRoomNo.Radius = 20; - this.txtRoomNo.ReadOnly = true; - this.txtRoomNo.Size = new System.Drawing.Size(626, 35); - this.txtRoomNo.Style = Sunny.UI.UIStyle.Custom; - this.txtRoomNo.StyleCustomMode = true; - this.txtRoomNo.TabIndex = 127; - this.txtRoomNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // txtTInfo - // - this.txtTInfo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtTInfo.FillColor = System.Drawing.Color.White; - this.txtTInfo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtTInfo.Location = new System.Drawing.Point(122, 119); - this.txtTInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtTInfo.Maximum = 2147483647D; - this.txtTInfo.Minimum = -2147483648D; - this.txtTInfo.MinimumSize = new System.Drawing.Size(1, 1); - this.txtTInfo.Name = "txtTInfo"; - this.txtTInfo.Padding = new System.Windows.Forms.Padding(5); - this.txtTInfo.Radius = 20; - this.txtTInfo.Size = new System.Drawing.Size(265, 35); - this.txtTInfo.Style = Sunny.UI.UIStyle.Custom; - this.txtTInfo.StyleCustomMode = true; - this.txtTInfo.TabIndex = 125; - this.txtTInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label8 - // - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label8.Location = new System.Drawing.Point(15, 125); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(101, 25); - this.label8.TabIndex = 124; - this.label8.Text = "电 费(/元)"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label6.Location = new System.Drawing.Point(394, 21); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(88, 25); - this.label6.TabIndex = 122; - this.label6.Text = "客户编号"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label4.Location = new System.Drawing.Point(391, 125); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(101, 25); - this.label4.TabIndex = 121; - this.label4.Text = "水 费(/元)"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(15, 73); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(86, 25); - this.label3.TabIndex = 120; - this.label3.Text = "房 号"; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label2.Location = new System.Drawing.Point(15, 21); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(88, 25); - this.label2.TabIndex = 119; - this.label2.Text = "记录编号"; - // - // uiToolTip1 - // - this.uiToolTip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54))))); - this.uiToolTip1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(239))))); - this.uiToolTip1.OwnerDraw = true; - // - // FrmWtiInfo - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.pnlWtiInfo); - this.Controls.Add(this.dgvWti); - this.ForeColor = System.Drawing.SystemColors.ControlText; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmWtiInfo"; - this.ShowIcon = true; - this.ShowInTaskbar = false; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "水电信息"; - this.Load += new System.EventHandler(this.WtiInfo_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvWti)).EndInit(); - this.pnlWtiInfo.ResumeLayout(false); - this.pnlWtiInfo.PerformLayout(); - this.ResumeLayout(false); - - } - - #endregion - private Sunny.UI.UIDataGridView dgvWti; - private System.Windows.Forms.DataGridViewTextBoxColumn clWtiNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clRoomNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clUseDate; - private System.Windows.Forms.DataGridViewTextBoxColumn clEndDate; - private System.Windows.Forms.DataGridViewTextBoxColumn clWaterUse; - private System.Windows.Forms.DataGridViewTextBoxColumn clPowerUse; - private System.Windows.Forms.DataGridViewTextBoxColumn clRecord; - private System.Windows.Forms.DataGridViewTextBoxColumn clCustoNo; - private System.Windows.Forms.DataGridViewTextBoxColumn Column7; - private System.Windows.Forms.DataGridViewTextBoxColumn Column8; - private System.Windows.Forms.DataGridViewTextBoxColumn Column9; - private System.Windows.Forms.DataGridViewTextBoxColumn Column10; - private System.Windows.Forms.DataGridViewTextBoxColumn Column11; - private Sunny.UI.UIButton btnUpdWti; - private Sunny.UI.UIPanel pnlWtiInfo; - private Sunny.UI.UITextBox txtWInfo; - private Sunny.UI.UITextBox txtRecordNo; - private Sunny.UI.UITextBox txtRoomNo; - private Sunny.UI.UITextBox txtTInfo; - private System.Windows.Forms.Label label8; - private System.Windows.Forms.Label label6; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label2; - private Sunny.UI.UIDatePicker dtpEndDate; - private System.Windows.Forms.Label label1; - private Sunny.UI.UIDatePicker dtpStartDate; - private System.Windows.Forms.Label label5; - private Sunny.UI.UITextBox txtCustoNo; - private Sunny.UI.UIToolTip uiToolTip1; - private Sunny.UI.UIButton btnClose; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.cs deleted file mode 100644 index a904be87cc11551d20c1ea0d6f90ad3b72fb2c89..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.cs +++ /dev/null @@ -1,125 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmWoEInfo : UIForm - { - public FrmWoEInfo() - { - InitializeComponent(); - } - - Dictionary dic = null; - ResponseMsg result = null; - - #region 窗体加载事件 - private void WtiInfo_Load(object sender, EventArgs e) - { - LoadWtiInfo();//加载水电费信息 - if (AdminInfo.isAdmin == false) - { - uiToolTip1.Active = false; - dgvWti.ShowCellToolTips = false; - btnUpdWti.Text = "权限不足"; - btnUpdWti.Enabled = false; - } - } - #endregion - - #region 加载水电费信息到Dgv - /// - /// 加载水电费信息到Dgv - /// - private void LoadWtiInfo() - { - result = HttpHelper.Request("HydroelectricPower/SelectWtiInfoAll"); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("SelectWtiInfoAll+接口服务异常,请提交issue"); - return; - } - //将水电费信息加载到Dgv - dgvWti.DataSource = HttpHelper.JsonToList(result.message); - dgvWti.AutoGenerateColumns = false; - } - #endregion - - private void btnUpdWti_Click(object sender, EventArgs e) - { - Hydroelectricity wti = new Hydroelectricity - { - WtiNo = Convert.ToInt16(txtRecordNo.Text.Trim()), - RoomNo = txtRoomNo.Text.Trim(), - CustoNo = txtCustoNo.Text.Trim(), - UseDate = dtpStartDate.Value, - EndDate = dtpEndDate.Value, - PowerUse = string.IsNullOrEmpty(txtTInfo.Text.Trim()) ? 0 : Convert.ToDecimal(txtTInfo.Text.Trim()), - WaterUse = string.IsNullOrEmpty(txtWInfo.Text.Trim()) ? 0 : Convert.ToDecimal(txtWInfo.Text.Trim()), - Record = AdminInfo.Account, - datachg_usr = AdminInfo.Account, - }; - result = HttpHelper.Request("HydroelectricPower/UpdateWtiInfo", HttpHelper.ModelToJson(wti)); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("UpdateWtiInfo+接口服务异常,请提交issue"); - return; - } - if (!result.message.ToString().Equals("true")) - { - UIMessageTip.ShowError("修改失败!", 1500); - } - UIMessageTip.ShowOk("修改成功!", 1500); - pnlWtiInfo.Visible = false; - LoadWtiInfo(); - return; - } - - private void dgvWti_CellDoubleClick(object sender, DataGridViewCellEventArgs e) - { - if (AdminInfo.isAdmin == true) - { - txtRecordNo.Text = dgvWti.SelectedRows[0].Cells["clWtiNo"].Value.ToString(); - txtRoomNo.Text = dgvWti.SelectedRows[0].Cells["clRoomNo"].Value.ToString(); - txtCustoNo.Text = dgvWti.SelectedRows[0].Cells["clCustoNo"].Value.ToString(); - dtpStartDate.Value = Convert.ToDateTime(dgvWti.SelectedRows[0].Cells["clUseDate"].Value.ToString()); - dtpEndDate.Value = Convert.ToDateTime(dgvWti.SelectedRows[0].Cells["clEndDate"].Value.ToString()); - txtWInfo.Text = dgvWti.SelectedRows[0].Cells["clWaterUse"].Value.ToString(); - txtTInfo.Text = dgvWti.SelectedRows[0].Cells["clPowerUse"].Value.ToString(); - pnlWtiInfo.Visible = true; - btnUpdWti.Enabled = true; - btnClose.Enabled = true; - } - } - - private void btnClose_Click(object sender, EventArgs e) - { - this.pnlWtiInfo.Visible = false; - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.resx deleted file mode 100644 index b370dc8d268e89a0a14eb50620946069f47f8c67..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.resx +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - 17, 17 - - - - - AAABAAEAICAAAAEAGABIAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAC3UlEQVRYR+2XTYhN - YRzGbynZ+FoIzdhZTMrCQtPULJTEwsdExEImE0WEZsQCV9LMRmYx7HyUFE0iX3Wj2MjMgiYSQpMiC5HY - WLkzv+fc50z3eM+5c+81YzW/ejr3ff7P+3/PnI/33slNUS/FYnEJeoVO2fp/sOjykTIYn3Vp8mGx9V50 - EC1ERzwuODJ5sMgOL9ZjK4LxSvs/bU08ND+gReCkrQT408j8UsDWxKFF1Rj6baVCfQ4n8VFBW/8ODbeo - IVRcPIZ8IxrSBFv1Q6Ol0dJVLh5Dvom579EXW7VDE93TD+gNarAdQO1y2gnir9WZc7xnqzaYeFMNoM1W - AJkT6AdKvBUx+IfVgGNtmxUT8p7YbSuA2nZnHqM1tgOoXXJuna3KEJyFhpnzzFYAtVYyv9FBNYcZLgVQ - m01uAD20VRmC+0s9R3bbSkC9Ab1GvWRWKOhSJmSj5wHabWVD+CnBzL+e+n10y5+7kG5BuR5ZjdEEw/gO - GvAwHU0qnWj6bkf9HBpC823pEusqjInaMNrl8hh4HdT1LCy2FUJxm0PBa4fXifTEt9gKoHYbnfEwAf48 - 995rK4TiIYVgga0IxtG9pp5Hx9BxpFcw74jmnkZ3PQxQT/fYZyuE+maHmm1FMNaPj7/vtfTN9a3oHVoU - TUiBWrN7b7IVQr1JIThqKxMy+uJ5gpahP2iVS6moZ9SZNWylQyO9sy89zIRGbeQuohco+7Ia9USV3wJB - KNoFIXUfiCHXi66hPluZqFepZfrblYDQXJq+5Zi5Fwgyeh0feFgR9SI7yHG6rcoQ3kNYZJ4xmQLKfOhi - 6NGvRmQ32KoOJlz3xCu2aoKp+k0Qf6OOf+nTKGugS7ja9riQ7UCfNZHjTtv1QY92mnx3swscWl0KoL4R - FZx9jhL7Sd3QSBvRVTUWfNZ/RHoDetB5pC34q2ufUBcfq3vgaoHGLagble+GN1Af6mRRfRnNdHyKKsjl - RgFVYJ7sdNzyagAAAABJRU5ErkJggg== - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs deleted file mode 100644 index 7740dd54a60509fd3547669457b4a4433bd60a36..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs +++ /dev/null @@ -1,234 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmWorkerCheckInfo - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWorkerCheckInfo)); - this.lblWorkerInfo = new System.Windows.Forms.Label(); - this.DgvCheckInfoList = new Sunny.UI.UIDataGridView(); - this.clWorkerNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckWay = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clCheckState = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.DgvCheckInfoList)).BeginInit(); - this.SuspendLayout(); - // - // lblWorkerInfo - // - this.lblWorkerInfo.AutoSize = true; - this.lblWorkerInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblWorkerInfo.Location = new System.Drawing.Point(12, 50); - this.lblWorkerInfo.Name = "lblWorkerInfo"; - this.lblWorkerInfo.Size = new System.Drawing.Size(60, 24); - this.lblWorkerInfo.TabIndex = 1; - this.lblWorkerInfo.Text = "label1"; - // - // DgvCheckInfoList - // - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.DgvCheckInfoList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.DgvCheckInfoList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.DgvCheckInfoList.BackgroundColor = System.Drawing.Color.White; - this.DgvCheckInfoList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.DgvCheckInfoList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.DgvCheckInfoList.ColumnHeadersHeight = 32; - this.DgvCheckInfoList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.DgvCheckInfoList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clWorkerNo, - this.clCheckTime, - this.clCheckWay, - this.clCheckState, - this.Column1, - this.Column2, - this.Column3, - this.Column4, - this.Column5, - this.Column6}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.DgvCheckInfoList.DefaultCellStyle = dataGridViewCellStyle3; - this.DgvCheckInfoList.EnableHeadersVisualStyles = false; - this.DgvCheckInfoList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.DgvCheckInfoList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.DgvCheckInfoList.Location = new System.Drawing.Point(3, 88); - this.DgvCheckInfoList.Name = "DgvCheckInfoList"; - this.DgvCheckInfoList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.DgvCheckInfoList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.DgvCheckInfoList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.DgvCheckInfoList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.DgvCheckInfoList.RowTemplate.Height = 29; - this.DgvCheckInfoList.SelectedIndex = -1; - this.DgvCheckInfoList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.DgvCheckInfoList.Size = new System.Drawing.Size(550, 154); - this.DgvCheckInfoList.TabIndex = 2; - // - // clWorkerNo - // - this.clWorkerNo.DataPropertyName = "WorkerNo"; - this.clWorkerNo.HeaderText = "员工编号"; - this.clWorkerNo.Name = "clWorkerNo"; - this.clWorkerNo.ReadOnly = true; - // - // clCheckTime - // - this.clCheckTime.DataPropertyName = "CheckTime"; - this.clCheckTime.HeaderText = "打卡时间"; - this.clCheckTime.Name = "clCheckTime"; - this.clCheckTime.ReadOnly = true; - // - // clCheckWay - // - this.clCheckWay.DataPropertyName = "CheckWay"; - this.clCheckWay.HeaderText = "打卡方式"; - this.clCheckWay.Name = "clCheckWay"; - this.clCheckWay.ReadOnly = true; - // - // clCheckState - // - this.clCheckState.DataPropertyName = "CheckStateNm"; - this.clCheckState.HeaderText = "打卡状态"; - this.clCheckState.Name = "clCheckState"; - this.clCheckState.ReadOnly = true; - // - // Column1 - // - this.Column1.DataPropertyName = "delete_mk"; - this.Column1.HeaderText = "Column1"; - this.Column1.Name = "Column1"; - this.Column1.ReadOnly = true; - this.Column1.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "datains_date"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "datains_usr"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "datachg_usr"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "datachg_date"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // Column6 - // - this.Column6.DataPropertyName = "CheckState"; - this.Column6.HeaderText = "Column6"; - this.Column6.Name = "Column6"; - this.Column6.ReadOnly = true; - this.Column6.Visible = false; - // - // FrmWorkerCheckInfo - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(556, 247); - this.Controls.Add(this.DgvCheckInfoList); - this.Controls.Add(this.lblWorkerInfo); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.IsForbidAltF4 = true; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmWorkerCheckInfo"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Text = "员工打卡考勤记录查看页"; - this.Load += new System.EventHandler(this.FrmWorkerCheckInfo_Load); - ((System.ComponentModel.ISupportInitialize)(this.DgvCheckInfoList)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label lblWorkerInfo; - private Sunny.UI.UIDataGridView DgvCheckInfoList; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckTime; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckWay; - private System.Windows.Forms.DataGridViewTextBoxColumn clCheckState; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn Column6; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.cs deleted file mode 100644 index b8cd26eb05319d2f6ae70489d47e0ba74f30a31e..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.cs +++ /dev/null @@ -1,64 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmWorkerCheckInfo : UIForm - { - public FrmWorkerCheckInfo() - { - InitializeComponent(); - - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void FrmWorkerCheckInfo_Load(object sender, EventArgs e) - { - lblWorkerInfo.Text = "以下为员工:" + FrmWorkerPanel.wk_WorkerNo + "-员工姓名:" + FrmWorkerPanel.wk_WorkerName + "的所有打卡考勤记录:"; - dic = new Dictionary() - { - { "wid",FrmWorkerPanel.wk_WorkerNo} - }; - result = HttpHelper.Request("WorkerCheck/SelectCheckInfoByWorkerNo", dic); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("SelectCheckInfoByWorkerNo+接口服务异常,请提交issue"); - return; - } - DgvCheckInfoList.AutoGenerateColumns = false; - DgvCheckInfoList.DataSource = HttpHelper.JsonToList(result.message); - } - - private void btnClose_Click(object sender, EventArgs e) - { - this.Close(); - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.resx deleted file mode 100644 index e27cac3008617319284bf41f9d9a219dea27833d..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.resx +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGAAdAwAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACsklEQVRYR72Wv2sU - YRCGr7MwlYVdIAgWarRLE4jaqAg2FoLpxEIiWChipeA11hERLESCgs0JNv4BQUJQEBTFRnIoRAQLraI2 - wp3PTN79bjfft+4PLz4w3M6878x8d7nbTacJg8FgbjgcdnldJfrEhsKuV6XNyT4+GDpPvGBBLcxrPWr/ - Nxj0VHMbY70a0w4G9DWrAPXfxGviIbFIvJEUgdbXuGbQ+F0zAtRWiFkuJ2QLUJsizqHbd6GAzZKtHvT0 - NltHMOSx5Erw3lNbnp7kv0PzLTUEqJ2SHKB2gviE3FWpAPU93pzDZktOg2Ga+CG/Q74guQD1m9KXVYpA - O+xDhM0mpiXHIN6R1yFfkhSBVnkAA/22DxO2Q1IM4pp8flpepiRFoNc9wCTx07wG12uSiiAckschfykp - CXqtAxh4XvlQYbskjaB4WrpD/kBSEixd+eoc4JF5M2yXpBEUF6Q75BclJcGSHcCeA3b4oxZczxA7ZXPI - r5o3gzz+YlP0jzSDPPrp5cHiByjhgmwOuR0uT/zTtVNJdMhvSEqC5cymM0lhAbMuq+6QX5I0guLW78AT - SaVgs9uvf/T5kBxg1hL1APlZSSMo7pfukKd/Li1gVuFhRX5MUhGE9/I45OcltYYZxzXOIf8qKQZxUT6H - /Iuk1jDjrcY55NclxSCmngWlt+Mq6L2rMQFq+ySnwZB6Gjb+U9Azr/YAtfJ3n4FpBxH9h0NtmZiVrRQ8 - u4n7agtQeyZLNZj3qi9FD/0KEe7nXO8iThLXiI/yBah9IA7IXg8aCs/yFHg+E+EJmgJ9nZjR2GbQeFBz - WkH/N+KIxrWDAZOa1wj6fvES3RVbwaAJn9qM8SzPw7va0PAqxr88g0Osa0kZ27c8g0O807KtbP/yDA7x - XEsz/t/yDJbaTcnuAy2Xdzp/ANB/XdlFHw2iAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.Designer.cs deleted file mode 100644 index bd898f4407a026fb7e86da1aa81c4254e74cfacd..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.Designer.cs +++ /dev/null @@ -1,616 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmWorkerInfo - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWorkerInfo)); - this.label15 = new System.Windows.Forms.Label(); - this.cboSex = new Sunny.UI.UIComboBox(); - this.WorkerNo = new Sunny.UI.UITextBox(); - this.dtpBirthday = new Sunny.UI.UIDatePicker(); - this.label13 = new System.Windows.Forms.Label(); - this.label16 = new System.Windows.Forms.Label(); - this.label17 = new System.Windows.Forms.Label(); - this.label18 = new System.Windows.Forms.Label(); - this.cboWorkerPosition = new Sunny.UI.UIComboBox(); - this.WorkerName = new Sunny.UI.UITextBox(); - this.dtpTime = new Sunny.UI.UIDatePicker(); - this.label19 = new System.Windows.Forms.Label(); - this.label20 = new System.Windows.Forms.Label(); - this.label21 = new System.Windows.Forms.Label(); - this.label22 = new System.Windows.Forms.Label(); - this.cboClub = new Sunny.UI.UIComboBox(); - this.label23 = new System.Windows.Forms.Label(); - this.cboEducation = new Sunny.UI.UIComboBox(); - this.label24 = new System.Windows.Forms.Label(); - this.txtAddress = new Sunny.UI.UITextBox(); - this.label25 = new System.Windows.Forms.Label(); - this.WorkerID = new Sunny.UI.UITextBox(); - this.label26 = new System.Windows.Forms.Label(); - this.WorkerTel = new Sunny.UI.UITextBox(); - this.label27 = new System.Windows.Forms.Label(); - this.cboWorkerFace = new Sunny.UI.UIComboBox(); - this.flpHistory = new System.Windows.Forms.FlowLayoutPanel(); - this.cbWorkerNation = new Sunny.UI.UIComboBox(); - this.picWorkerPic = new System.Windows.Forms.PictureBox(); - this.openPic = new System.Windows.Forms.OpenFileDialog(); - this.pnlBtm.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.picWorkerPic)).BeginInit(); - this.SuspendLayout(); - // - // pnlBtm - // - this.pnlBtm.Location = new System.Drawing.Point(1, 705); - this.pnlBtm.Size = new System.Drawing.Size(783, 52); - // - // btnCancel - // - this.btnCancel.Location = new System.Drawing.Point(655, 12); - // - // btnOK - // - this.btnOK.Location = new System.Drawing.Point(540, 12); - // - // label15 - // - this.label15.AutoSize = true; - this.label15.BackColor = System.Drawing.Color.Transparent; - this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label15.ForeColor = System.Drawing.Color.Black; - this.label15.Location = new System.Drawing.Point(284, 464); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(217, 24); - this.label15.TabIndex = 60; - this.label15.Text = "履 历 栏"; - // - // cboSex - // - this.cboSex.DataSource = null; - this.cboSex.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboSex.FillColor = System.Drawing.Color.White; - this.cboSex.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboSex.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboSex.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboSex.Location = new System.Drawing.Point(120, 151); - this.cboSex.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboSex.MinimumSize = new System.Drawing.Size(63, 0); - this.cboSex.Name = "cboSex"; - this.cboSex.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboSex.Radius = 20; - this.cboSex.Size = new System.Drawing.Size(166, 35); - this.cboSex.SymbolSize = 24; - this.cboSex.TabIndex = 113; - this.cboSex.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboSex.Watermark = ""; - // - // WorkerNo - // - this.WorkerNo.Cursor = System.Windows.Forms.Cursors.IBeam; - this.WorkerNo.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.WorkerNo.Location = new System.Drawing.Point(120, 45); - this.WorkerNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.WorkerNo.MinimumSize = new System.Drawing.Size(1, 1); - this.WorkerNo.Name = "WorkerNo"; - this.WorkerNo.Padding = new System.Windows.Forms.Padding(5); - this.WorkerNo.Radius = 20; - this.WorkerNo.ReadOnly = true; - this.WorkerNo.ShowText = false; - this.WorkerNo.Size = new System.Drawing.Size(166, 35); - this.WorkerNo.Style = Sunny.UI.UIStyle.Custom; - this.WorkerNo.StyleCustomMode = true; - this.WorkerNo.TabIndex = 111; - this.WorkerNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.WorkerNo.Watermark = ""; - // - // dtpBirthday - // - this.dtpBirthday.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpBirthday.FillColor = System.Drawing.Color.White; - this.dtpBirthday.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpBirthday.Location = new System.Drawing.Point(120, 208); - this.dtpBirthday.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpBirthday.MaxLength = 10; - this.dtpBirthday.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpBirthday.Name = "dtpBirthday"; - this.dtpBirthday.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpBirthday.Radius = 20; - this.dtpBirthday.Size = new System.Drawing.Size(166, 31); - this.dtpBirthday.SymbolDropDown = 61555; - this.dtpBirthday.SymbolNormal = 61555; - this.dtpBirthday.SymbolSize = 24; - this.dtpBirthday.TabIndex = 110; - this.dtpBirthday.Text = "2020-11-24"; - this.dtpBirthday.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpBirthday.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); - this.dtpBirthday.Watermark = ""; - // - // label13 - // - this.label13.AutoSize = true; - this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label13.Location = new System.Drawing.Point(13, 210); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(88, 25); - this.label13.TabIndex = 109; - this.label13.Text = "出生日期"; - // - // label16 - // - this.label16.AutoSize = true; - this.label16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label16.Location = new System.Drawing.Point(13, 157); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(80, 25); - this.label16.TabIndex = 108; - this.label16.Text = "性 别"; - // - // label17 - // - this.label17.AutoSize = true; - this.label17.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label17.Location = new System.Drawing.Point(13, 104); - this.label17.Name = "label17"; - this.label17.Size = new System.Drawing.Size(80, 25); - this.label17.TabIndex = 107; - this.label17.Text = "民 族"; - // - // label18 - // - this.label18.AutoSize = true; - this.label18.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label18.Location = new System.Drawing.Point(13, 51); - this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(88, 25); - this.label18.TabIndex = 106; - this.label18.Text = "员工编号"; - // - // cboWorkerPosition - // - this.cboWorkerPosition.DataSource = null; - this.cboWorkerPosition.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboWorkerPosition.FillColor = System.Drawing.Color.White; - this.cboWorkerPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboWorkerPosition.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboWorkerPosition.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboWorkerPosition.Location = new System.Drawing.Point(433, 151); - this.cboWorkerPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboWorkerPosition.MinimumSize = new System.Drawing.Size(63, 0); - this.cboWorkerPosition.Name = "cboWorkerPosition"; - this.cboWorkerPosition.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboWorkerPosition.Radius = 20; - this.cboWorkerPosition.Size = new System.Drawing.Size(178, 35); - this.cboWorkerPosition.SymbolSize = 24; - this.cboWorkerPosition.TabIndex = 121; - this.cboWorkerPosition.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboWorkerPosition.Watermark = ""; - // - // WorkerName - // - this.WorkerName.Cursor = System.Windows.Forms.Cursors.IBeam; - this.WorkerName.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.WorkerName.Location = new System.Drawing.Point(433, 45); - this.WorkerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.WorkerName.MinimumSize = new System.Drawing.Size(1, 1); - this.WorkerName.Name = "WorkerName"; - this.WorkerName.Padding = new System.Windows.Forms.Padding(5); - this.WorkerName.Radius = 20; - this.WorkerName.ShowText = false; - this.WorkerName.Size = new System.Drawing.Size(178, 35); - this.WorkerName.Style = Sunny.UI.UIStyle.Custom; - this.WorkerName.StyleCustomMode = true; - this.WorkerName.TabIndex = 119; - this.WorkerName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.WorkerName.Watermark = ""; - // - // dtpTime - // - this.dtpTime.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpTime.FillColor = System.Drawing.Color.White; - this.dtpTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpTime.Location = new System.Drawing.Point(120, 257); - this.dtpTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpTime.MaxLength = 10; - this.dtpTime.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpTime.Name = "dtpTime"; - this.dtpTime.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.dtpTime.Radius = 20; - this.dtpTime.ReadOnly = true; - this.dtpTime.Size = new System.Drawing.Size(166, 31); - this.dtpTime.SymbolDropDown = 61555; - this.dtpTime.SymbolNormal = 61555; - this.dtpTime.SymbolSize = 24; - this.dtpTime.TabIndex = 118; - this.dtpTime.Text = "2020-11-24"; - this.dtpTime.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpTime.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); - this.dtpTime.Watermark = ""; - // - // label19 - // - this.label19.AutoSize = true; - this.label19.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label19.Location = new System.Drawing.Point(13, 263); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(88, 25); - this.label19.TabIndex = 117; - this.label19.Text = "入职日期"; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label20.Location = new System.Drawing.Point(326, 157); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(88, 25); - this.label20.TabIndex = 116; - this.label20.Text = "员工职位"; - // - // label21 - // - this.label21.AutoSize = true; - this.label21.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label21.Location = new System.Drawing.Point(326, 104); - this.label21.Name = "label21"; - this.label21.Size = new System.Drawing.Size(88, 25); - this.label21.TabIndex = 115; - this.label21.Text = "员工面貌"; - // - // label22 - // - this.label22.AutoSize = true; - this.label22.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label22.Location = new System.Drawing.Point(326, 51); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(88, 25); - this.label22.TabIndex = 114; - this.label22.Text = "员工姓名"; - // - // cboClub - // - this.cboClub.DataSource = null; - this.cboClub.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboClub.FillColor = System.Drawing.Color.White; - this.cboClub.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboClub.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboClub.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboClub.Location = new System.Drawing.Point(433, 204); - this.cboClub.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboClub.MinimumSize = new System.Drawing.Size(63, 0); - this.cboClub.Name = "cboClub"; - this.cboClub.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboClub.Radius = 20; - this.cboClub.Size = new System.Drawing.Size(178, 35); - this.cboClub.SymbolSize = 24; - this.cboClub.TabIndex = 123; - this.cboClub.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboClub.Watermark = ""; - // - // label23 - // - this.label23.AutoSize = true; - this.label23.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label23.Location = new System.Drawing.Point(326, 210); - this.label23.Name = "label23"; - this.label23.Size = new System.Drawing.Size(88, 25); - this.label23.TabIndex = 122; - this.label23.Text = "所属部门"; - // - // cboEducation - // - this.cboEducation.DataSource = null; - this.cboEducation.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboEducation.FillColor = System.Drawing.Color.White; - this.cboEducation.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboEducation.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboEducation.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboEducation.Location = new System.Drawing.Point(433, 257); - this.cboEducation.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboEducation.MinimumSize = new System.Drawing.Size(63, 0); - this.cboEducation.Name = "cboEducation"; - this.cboEducation.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboEducation.Radius = 20; - this.cboEducation.Size = new System.Drawing.Size(338, 35); - this.cboEducation.SymbolSize = 24; - this.cboEducation.TabIndex = 125; - this.cboEducation.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboEducation.Watermark = ""; - // - // label24 - // - this.label24.AutoSize = true; - this.label24.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label24.Location = new System.Drawing.Point(326, 263); - this.label24.Name = "label24"; - this.label24.Size = new System.Drawing.Size(88, 25); - this.label24.TabIndex = 124; - this.label24.Text = "最高学历"; - // - // txtAddress - // - this.txtAddress.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtAddress.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtAddress.Location = new System.Drawing.Point(120, 310); - this.txtAddress.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtAddress.MinimumSize = new System.Drawing.Size(1, 1); - this.txtAddress.Name = "txtAddress"; - this.txtAddress.Padding = new System.Windows.Forms.Padding(5); - this.txtAddress.Radius = 20; - this.txtAddress.ShowText = false; - this.txtAddress.Size = new System.Drawing.Size(651, 35); - this.txtAddress.Style = Sunny.UI.UIStyle.Custom; - this.txtAddress.StyleCustomMode = true; - this.txtAddress.TabIndex = 127; - this.txtAddress.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.txtAddress.Watermark = ""; - // - // label25 - // - this.label25.AutoSize = true; - this.label25.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label25.Location = new System.Drawing.Point(13, 315); - this.label25.Name = "label25"; - this.label25.Size = new System.Drawing.Size(88, 25); - this.label25.TabIndex = 126; - this.label25.Text = "居住地址"; - // - // WorkerID - // - this.WorkerID.Cursor = System.Windows.Forms.Cursors.IBeam; - this.WorkerID.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.WorkerID.Location = new System.Drawing.Point(120, 363); - this.WorkerID.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.WorkerID.MinimumSize = new System.Drawing.Size(1, 1); - this.WorkerID.Name = "WorkerID"; - this.WorkerID.Padding = new System.Windows.Forms.Padding(5); - this.WorkerID.Radius = 20; - this.WorkerID.ShowText = false; - this.WorkerID.Size = new System.Drawing.Size(651, 35); - this.WorkerID.Style = Sunny.UI.UIStyle.Custom; - this.WorkerID.StyleCustomMode = true; - this.WorkerID.TabIndex = 129; - this.WorkerID.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.WorkerID.Watermark = ""; - this.WorkerID.Validated += new System.EventHandler(this.WorkerID_Validated); - // - // label26 - // - this.label26.AutoSize = true; - this.label26.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label26.Location = new System.Drawing.Point(13, 370); - this.label26.Name = "label26"; - this.label26.Size = new System.Drawing.Size(88, 25); - this.label26.TabIndex = 128; - this.label26.Text = "证件号码"; - // - // WorkerTel - // - this.WorkerTel.Cursor = System.Windows.Forms.Cursors.IBeam; - this.WorkerTel.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.WorkerTel.Location = new System.Drawing.Point(120, 416); - this.WorkerTel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.WorkerTel.MinimumSize = new System.Drawing.Size(1, 1); - this.WorkerTel.Name = "WorkerTel"; - this.WorkerTel.Padding = new System.Windows.Forms.Padding(5); - this.WorkerTel.Radius = 20; - this.WorkerTel.ShowText = false; - this.WorkerTel.Size = new System.Drawing.Size(651, 35); - this.WorkerTel.Style = Sunny.UI.UIStyle.Custom; - this.WorkerTel.StyleCustomMode = true; - this.WorkerTel.TabIndex = 131; - this.WorkerTel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.WorkerTel.Watermark = ""; - // - // label27 - // - this.label27.AutoSize = true; - this.label27.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label27.Location = new System.Drawing.Point(13, 426); - this.label27.Name = "label27"; - this.label27.Size = new System.Drawing.Size(88, 25); - this.label27.TabIndex = 130; - this.label27.Text = "手机号码"; - // - // cboWorkerFace - // - this.cboWorkerFace.DataSource = null; - this.cboWorkerFace.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cboWorkerFace.FillColor = System.Drawing.Color.White; - this.cboWorkerFace.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cboWorkerFace.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cboWorkerFace.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cboWorkerFace.Location = new System.Drawing.Point(433, 98); - this.cboWorkerFace.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cboWorkerFace.MinimumSize = new System.Drawing.Size(63, 0); - this.cboWorkerFace.Name = "cboWorkerFace"; - this.cboWorkerFace.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cboWorkerFace.Radius = 20; - this.cboWorkerFace.Size = new System.Drawing.Size(178, 35); - this.cboWorkerFace.SymbolSize = 24; - this.cboWorkerFace.TabIndex = 132; - this.cboWorkerFace.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cboWorkerFace.Watermark = ""; - // - // flpHistory - // - this.flpHistory.AutoScroll = true; - this.flpHistory.Location = new System.Drawing.Point(18, 498); - this.flpHistory.Name = "flpHistory"; - this.flpHistory.Size = new System.Drawing.Size(754, 199); - this.flpHistory.TabIndex = 133; - // - // cbWorkerNation - // - this.cbWorkerNation.DataSource = null; - this.cbWorkerNation.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.cbWorkerNation.FillColor = System.Drawing.Color.White; - this.cbWorkerNation.Font = new System.Drawing.Font("微软雅黑", 15.75F); - this.cbWorkerNation.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - this.cbWorkerNation.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.cbWorkerNation.Location = new System.Drawing.Point(120, 98); - this.cbWorkerNation.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.cbWorkerNation.MinimumSize = new System.Drawing.Size(63, 0); - this.cbWorkerNation.Name = "cbWorkerNation"; - this.cbWorkerNation.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); - this.cbWorkerNation.Radius = 20; - this.cbWorkerNation.Size = new System.Drawing.Size(166, 35); - this.cbWorkerNation.SymbolSize = 24; - this.cbWorkerNation.TabIndex = 135; - this.cbWorkerNation.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.cbWorkerNation.Watermark = ""; - // - // picWorkerPic - // - this.picWorkerPic.BackColor = System.Drawing.Color.Transparent; - this.picWorkerPic.BackgroundImage = global::EOM.TSHotelManagement.FormUI.Properties.Resources.上传照片; - this.picWorkerPic.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.picWorkerPic.Location = new System.Drawing.Point(614, 38); - this.picWorkerPic.Name = "picWorkerPic"; - this.picWorkerPic.Size = new System.Drawing.Size(167, 211); - this.picWorkerPic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.picWorkerPic.TabIndex = 55; - this.picWorkerPic.TabStop = false; - this.picWorkerPic.Click += new System.EventHandler(this.workerPic_Click); - // - // openPic - // - this.openPic.FileName = "openFileDialog1"; - this.openPic.Filter = "PNG文件|*.png|JPG文件|*.jpg|位图文件|*.bmp"; - this.openPic.FileOk += new System.ComponentModel.CancelEventHandler(this.openPic_FileOk); - // - // FrmWorkerInfo - // - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; - this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.ClientSize = new System.Drawing.Size(785, 760); - this.Controls.Add(this.cbWorkerNation); - this.Controls.Add(this.picWorkerPic); - this.Controls.Add(this.flpHistory); - this.Controls.Add(this.label15); - this.Controls.Add(this.cboWorkerFace); - this.Controls.Add(this.WorkerTel); - this.Controls.Add(this.label27); - this.Controls.Add(this.WorkerID); - this.Controls.Add(this.label26); - this.Controls.Add(this.txtAddress); - this.Controls.Add(this.label25); - this.Controls.Add(this.cboEducation); - this.Controls.Add(this.label24); - this.Controls.Add(this.cboClub); - this.Controls.Add(this.label23); - this.Controls.Add(this.cboWorkerPosition); - this.Controls.Add(this.WorkerName); - this.Controls.Add(this.dtpTime); - this.Controls.Add(this.label19); - this.Controls.Add(this.label20); - this.Controls.Add(this.label21); - this.Controls.Add(this.label22); - this.Controls.Add(this.cboSex); - this.Controls.Add(this.WorkerNo); - this.Controls.Add(this.dtpBirthday); - this.Controls.Add(this.label13); - this.Controls.Add(this.label16); - this.Controls.Add(this.label17); - this.Controls.Add(this.label18); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "FrmWorkerInfo"; - this.ShowTitleIcon = true; - this.Text = "添加员工"; - this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 785, 760); - this.ButtonOkClick += new System.EventHandler(this.FrmAddWorker_ButtonOkClick); - this.ButtonCancelClick += new System.EventHandler(this.FrmAddWorker_ButtonCancelClick); - this.Load += new System.EventHandler(this.FrmAddWorker_Load); - this.Controls.SetChildIndex(this.label18, 0); - this.Controls.SetChildIndex(this.label17, 0); - this.Controls.SetChildIndex(this.label16, 0); - this.Controls.SetChildIndex(this.label13, 0); - this.Controls.SetChildIndex(this.dtpBirthday, 0); - this.Controls.SetChildIndex(this.WorkerNo, 0); - this.Controls.SetChildIndex(this.cboSex, 0); - this.Controls.SetChildIndex(this.label22, 0); - this.Controls.SetChildIndex(this.label21, 0); - this.Controls.SetChildIndex(this.label20, 0); - this.Controls.SetChildIndex(this.label19, 0); - this.Controls.SetChildIndex(this.dtpTime, 0); - this.Controls.SetChildIndex(this.WorkerName, 0); - this.Controls.SetChildIndex(this.cboWorkerPosition, 0); - this.Controls.SetChildIndex(this.label23, 0); - this.Controls.SetChildIndex(this.cboClub, 0); - this.Controls.SetChildIndex(this.label24, 0); - this.Controls.SetChildIndex(this.cboEducation, 0); - this.Controls.SetChildIndex(this.label25, 0); - this.Controls.SetChildIndex(this.txtAddress, 0); - this.Controls.SetChildIndex(this.label26, 0); - this.Controls.SetChildIndex(this.WorkerID, 0); - this.Controls.SetChildIndex(this.label27, 0); - this.Controls.SetChildIndex(this.WorkerTel, 0); - this.Controls.SetChildIndex(this.cboWorkerFace, 0); - this.Controls.SetChildIndex(this.label15, 0); - this.Controls.SetChildIndex(this.flpHistory, 0); - this.Controls.SetChildIndex(this.picWorkerPic, 0); - this.Controls.SetChildIndex(this.cbWorkerNation, 0); - this.Controls.SetChildIndex(this.pnlBtm, 0); - this.pnlBtm.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.picWorkerPic)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.PictureBox picWorkerPic; - private System.Windows.Forms.Label label15; - private Sunny.UI.UIComboBox cboSex; - private Sunny.UI.UITextBox WorkerNo; - private Sunny.UI.UIDatePicker dtpBirthday; - private System.Windows.Forms.Label label13; - private System.Windows.Forms.Label label16; - private System.Windows.Forms.Label label17; - private System.Windows.Forms.Label label18; - private Sunny.UI.UIComboBox cboWorkerPosition; - private Sunny.UI.UITextBox WorkerName; - private Sunny.UI.UIDatePicker dtpTime; - private System.Windows.Forms.Label label19; - private System.Windows.Forms.Label label20; - private System.Windows.Forms.Label label21; - private System.Windows.Forms.Label label22; - private Sunny.UI.UIComboBox cboClub; - private System.Windows.Forms.Label label23; - private Sunny.UI.UIComboBox cboEducation; - private System.Windows.Forms.Label label24; - private Sunny.UI.UITextBox txtAddress; - private System.Windows.Forms.Label label25; - private Sunny.UI.UITextBox WorkerID; - private System.Windows.Forms.Label label26; - private Sunny.UI.UITextBox WorkerTel; - private System.Windows.Forms.Label label27; - private Sunny.UI.UIComboBox cboWorkerFace; - private System.Windows.Forms.FlowLayoutPanel flpHistory; - private Sunny.UI.UIComboBox cbWorkerNation; - private System.Windows.Forms.OpenFileDialog openPic; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.cs deleted file mode 100644 index b45a2debab7a03c41bd6ec5713dc6623998d608d..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.cs +++ /dev/null @@ -1,488 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using jvncorelib.EncryptorLib; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmWorkerInfo : UIEditForm - { - public FrmWorkerInfo() - { - InitializeComponent(); - } - - protected override bool CheckData() - { - return CheckEmpty(WorkerName, "请输入姓名") - && CheckEmpty(WorkerNo, "请输入工号") - && CheckEmpty(WorkerID, "请输入证件号码") - && CheckEmpty(WorkerTel, "输入11位手机号码") - && CheckEmpty(txtAddress, "请填写居住地址"); - } - - ucHistory ucHistory = null; - private void FrmAddWorker_Load(object sender, EventArgs e) - { - var result = HttpHelper.Request("Base/SelectDeptAllCanUse"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectDeptAllCanUse+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - //加载部门信息 - cboClub.DataSource = HttpHelper.JsonToList(result.message); - cboClub.DisplayMember = "dept_name"; - cboClub.ValueMember = "dept_no"; - //加载民族信息 - Dictionary dic = new Dictionary(); - dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectNationAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectNationAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cbWorkerNation.DataSource = HttpHelper.JsonToList(result.message); - cbWorkerNation.DisplayMember = "nation_name"; - cbWorkerNation.ValueMember = "nation_no"; - //加载职位信息 - dic = new Dictionary(); - dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectPositionAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectPositionAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboWorkerPosition.DataSource = HttpHelper.JsonToList(result.message); - cboWorkerPosition.DisplayMember = "position_name"; - cboWorkerPosition.ValueMember = "position_no"; - //加载性别信息 - dic = new Dictionary(); - dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectSexTypeAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboSex.DataSource = HttpHelper.JsonToList(result.message); - cboSex.DisplayMember = "sexName"; - cboSex.ValueMember = "sexId"; - //加载学历信息 - dic = new Dictionary(); - dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectEducationAll", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectEducationAll+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - cboEducation.DataSource = HttpHelper.JsonToList(result.message); - cboEducation.DisplayMember = "education_name"; - cboEducation.ValueMember = "education_no"; - //加载面貌信息 - cboWorkerFace.DataSource = new List() { "群众", "团员", "党员" }; - - - if (this.Text == "员工信息查看页") - { - foreach (Control control in this.Controls) - { - switch (control.GetType().ToString()) - { - case "Sunny.UI.UITextBox": - (control as Sunny.UI.UITextBox).ReadOnly = true; - break; - case "Sunny.UI.UIComboBox": - (control as Sunny.UI.UIComboBox).ReadOnly = true; - break; - case "Sunny.UI.UIDatePicker": - (control as Sunny.UI.UIDatePicker).ReadOnly = true; - break; - } - - } - btnOK.Visible = false; - btnCancel.Visible = false; - WorkerNo.Text = FrmWorkerPanel.wk_WorkerNo; - WorkerName.Text = FrmWorkerPanel.wk_WorkerName; - cboSex.Text = FrmWorkerPanel.wk_WorkerSex; - cboWorkerPosition.Text = FrmWorkerPanel.wk_WorkerPosition; - cboWorkerFace.Text = FrmWorkerPanel.wk_WorkerFace; - cbWorkerNation.Text = FrmWorkerPanel.wk_WorkerNation; - dtpBirthday.Value = Convert.ToDateTime(FrmWorkerPanel.wk_WorkerBirthday); - dtpTime.Value = Convert.ToDateTime(FrmWorkerPanel.wk_WorkerTime); - WorkerID.Text = FrmWorkerPanel.wk_WorkerID; - txtAddress.Text = FrmWorkerPanel.wk_WorkerAddress; - WorkerTel.Text = FrmWorkerPanel.wk_WorkerTel; - cboEducation.Text = FrmWorkerPanel.wk_WorkerEducation; - cboClub.Text = FrmWorkerPanel.wk_WorkerClub; - - dic = new Dictionary - { - { "WorkerId", WorkerNo.Text.Trim() } - }; - result = HttpHelper.Request("WorkerPicture/WorkerPic", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("WorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var workerPicSource = HttpHelper.JsonToModel(result.message); - if (workerPicSource != null && !string.IsNullOrEmpty(workerPicSource.Pic)) - { - EncryptLib encryptLib = new EncryptLib(); - picWorkerPic.Enabled = false; - picWorkerPic.BackgroundImage = null; - picWorkerPic.LoadAsync(encryptLib.Decryption(HttpHelper.baseUrl) + workerPicSource.Pic); - } - this.WorkerID.Validated -= new EventHandler(WorkerID_Validated); - dic = new Dictionary(); - dic.Add("wid", WorkerNo.Text.Trim()); - result = HttpHelper.Request("WorkerHistory/SelectHistoryByWorkerId", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectHistoryByWorkerId+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List workerHistories = HttpHelper.JsonToList(result.message); - for (int i = 0; i < workerHistories.Count; i++) - { - ucHistory = new ucHistory(); - ucHistory.dtpStartDate.Value = Convert.ToDateTime(workerHistories[i].StartDate); - ucHistory.dtpEndDate.Value = Convert.ToDateTime(workerHistories[i].EndDate); - ucHistory.txtPosition.Text = workerHistories[i].Position; - ucHistory.txtCompany.Text = workerHistories[i].Company; - ucHistory.dtpStartDate.ReadOnly = true; - ucHistory.dtpEndDate.ReadOnly = true; - ucHistory.txtPosition.ReadOnly = true; - ucHistory.txtCompany.ReadOnly = true; - flpHistory.Controls.Add(ucHistory); - } - } - else if (this.Text == "添加员工") - { - WorkerNo.Text = ApplicationUtil.GetListNewId("WK", 3, 1, "-").FirstOrDefault(); - ucHistory = new ucHistory(); - ucHistory.dtpStartDate.Enabled = true; - ucHistory.dtpEndDate.Enabled = true; - ucHistory.txtCompany.Enabled = true; - ucHistory.txtPosition.Enabled = true; - flpHistory.Controls.Add(ucHistory); - //cboClub.SelectedIndex = 0; - //cboEducation.SelectedIndex = 0; - //cboSex.SelectedIndex = 0; - //cboWorkerFace.SelectedIndex = 0; - //cboWorkerPosition.SelectedIndex = 0; - } - else - { - bool dr = UIMessageBox.Show("修改操作仅能修改姓名、性别、电话号码、联系地址、民族、面貌以及最高学历,以上是否知晓?点击确定继续进行修改!", "修改提醒", UIStyle.Orange, UIMessageBoxButtons.OKCancel); - if (dr) - { - WorkerNo.Text = FrmWorkerPanel.wk_WorkerNo; - WorkerName.Text = FrmWorkerPanel.wk_WorkerName; - cboSex.Text = FrmWorkerPanel.wk_WorkerSex; - cboWorkerPosition.Text = FrmWorkerPanel.wk_WorkerPosition; - cboWorkerFace.Text = FrmWorkerPanel.wk_WorkerFace; - cbWorkerNation.Text = FrmWorkerPanel.wk_WorkerNation; - dtpBirthday.Value = Convert.ToDateTime(FrmWorkerPanel.wk_WorkerBirthday); - dtpTime.Value = Convert.ToDateTime(FrmWorkerPanel.wk_WorkerTime); - WorkerID.Text = FrmWorkerPanel.wk_WorkerID; - txtAddress.Text = FrmWorkerPanel.wk_WorkerAddress; - WorkerTel.Text = FrmWorkerPanel.wk_WorkerTel; - cboEducation.Text = FrmWorkerPanel.wk_WorkerEducation; - cboClub.Text = FrmWorkerPanel.wk_WorkerClub; - - dic = new Dictionary(); - dic.Add("WorkerId", WorkerNo.Text.Trim()); - result = HttpHelper.Request("WorkerPicture/WorkerPic", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("WorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - var workerPicSource = HttpHelper.JsonToModel(result.message); - if (workerPicSource != null && !string.IsNullOrEmpty(workerPicSource.Pic)) - { - picWorkerPic.BackgroundImage = null; - picWorkerPic.LoadAsync(workerPicSource.Pic); - } - //this.WorkerID.Validated -= new EventHandler(WorkerID_Validated); - btnOK.Text = "修改"; - this.ButtonOkClick -= new EventHandler(FrmAddWorker_ButtonOkClick); - this.ButtonOkClick += new EventHandler(btnUpd_Click); - WorkerTel.ReadOnly = false; - txtAddress.ReadOnly = false; - cboWorkerFace.ReadOnly = false; - dic = new Dictionary(); - dic.Add("wid", WorkerNo.Text.Trim()); - result = HttpHelper.Request("WorkerHistory/SelectHistoryByWorkerId", dic); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("SelectHistoryByWorkerId+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - List workerHistories = HttpHelper.JsonToList(result.message); - for (int i = 0; i < workerHistories.Count; i++) - { - ucHistory = new ucHistory(); - ucHistory.dtpStartDate.Value = Convert.ToDateTime(workerHistories[i].StartDate); - ucHistory.dtpEndDate.Value = Convert.ToDateTime(workerHistories[i].EndDate); - ucHistory.txtPosition.Text = workerHistories[i].Position; - ucHistory.txtCompany.Text = workerHistories[i].Company; - flpHistory.Controls.Add(ucHistory); - } - } - else - { - return; - } - } - } - - private void btnUpd_Click(object sender, EventArgs e) - { - bool dr = UIMessageBox.Show("是否确认修改员工信息?", "修改提醒", UIStyle.Green, UIMessageBoxButtons.OKCancel); - if (dr) - { - #region 员工信息代码块 - Worker worker = new Worker - { - WorkerId = WorkerNo.Text.Trim(), - WorkerName = WorkerName.Text.Trim(), - WorkerNation = cbWorkerNation.SelectedValue.ToString(), - WorkerTel = WorkerTel.Text.Trim(), - CardId = WorkerID.Text.Trim(), - WorkerAddress = txtAddress.Text.Trim(), - WorkerFace = cboWorkerFace.SelectedValue.ToString(), - WorkerEducation = cboEducation.SelectedValue.ToString(), - WorkerBirthday = dtpBirthday.Value, - datachg_usr = AdminInfo.Account - }; - var result = HttpHelper.Request("Worker/UpdateWorker", HttpHelper.ModelToJson(worker)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("UpdateWorker+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool i = result.message.ToString().Equals("true") ? true : false; /*new WorkerService().UpdateWorker(worker);*/ - if (i) - { - UIMessageBox.ShowSuccess("信息修改成功!"); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "修改员工操作!修改值为:" + worker.WorkerId, 2); - #endregion - this.Close(); - FrmWorkerManager.Reload(); - return; - } - else - { - UIMessageBox.ShowError("服务器繁忙!"); - return; - } - #endregion - } - else - { - UIMessageBox.ShowWarning("修改操作已取消!"); - return; - } - } - - - private void WorkerID_Validated(object sender, EventArgs e) - { - //获取得到输入的身份证号码 - string identityCard = WorkerID.Text.Trim(); - - if (string.IsNullOrEmpty(identityCard)) - { - //身份证号码不能为空,如果为空返回 - UIMessageBox.ShowError("身份证号码不能为空!"); - if (WorkerID.CanFocus) - { - WorkerID.Focus();//设置当前输入焦点为txtCardID_identityCard - } - return; - } - else - { - //身份证号码只能为15位或18位其它不合法 - if (identityCard.Length != 15 && identityCard.Length != 18) - { - UIMessageBox.ShowWarning("身份证号码为15位或18位,请检查!"); - if (WorkerID.CanFocus) - { - WorkerID.Focus(); - } - return; - } - } - - if (identityCard.Length == 18) - { - var result = ApplicationUtil.searchCode(identityCard); - if (result.message.IsNullOrEmpty()) //如果没有错误消息输出,则代表成功 - { - try - { - cboSex.Text = result.sex; - txtAddress.Text = result.address; - dtpBirthday.Value = Convert.ToDateTime(result.birthday); - } - catch - { - UIMessageBox.ShowError("请正确输入证件号码!"); - return; - } - } - else - { - UIMessageBox.ShowError(result.message); - return; - } - } - return; - } - - private void workerPic_Click(object sender, EventArgs e) - { - openPic.ShowDialog(); - } - - EncryptLib encryptLib = new EncryptLib(); - private void openPic_FileOk(object sender, System.ComponentModel.CancelEventArgs e) - { - var serverPath = encryptLib.Decryption(HttpHelper.postUrl); - var result = HttpHelper.UpLoadFile(openPic.FileName, serverPath); - WorkerPic workerPic = new WorkerPic - { - WorkerId = WorkerNo.Text.Trim(), - Pic = result.Trim(), - }; - - var response = HttpHelper.Request("WorkerPicture/InsertWorkerPic", HttpHelper.ModelToJson(workerPic)); - if (response.statusCode != 200) - { - UIMessageBox.ShowError("InsertWorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - - - picWorkerPic.BackgroundImage = null; - picWorkerPic.LoadAsync(encryptLib.Decryption(HttpHelper.baseUrl) + result.Trim()); - } - - private void FrmAddWorker_ButtonOkClick(object sender, EventArgs e) - { - Worker worker = new Worker - { - WorkerId = WorkerNo.Text.Trim(), - WorkerName = WorkerName.Text.Trim(), - WorkerBirthday = dtpBirthday.Value, - WorkerSex = (int)cboSex.SelectedValue, - WorkerNation = cbWorkerNation.SelectedValue.ToString(), - WorkerTel = WorkerTel.Text, - WorkerClub = cboClub.SelectedValue.ToString(), - WorkerAddress = txtAddress.Text, - WorkerPosition = cboWorkerPosition.SelectedValue.ToString(), - CardId = WorkerID.Text, - WorkerTime = dtpTime.Value, - WorkerFace = cboWorkerFace.Text, - WorkerEducation = cboEducation.SelectedValue.ToString(), - datains_usr = AdminInfo.Account - }; - try - { - #region 员工信息添加代码块 - var response = HttpHelper.Request("Worker/AddWorker", HttpHelper.ModelToJson(worker)); - if (response.statusCode != 200) - { - UIMessageBox.ShowError("AddWorker+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool n = response.message.ToString().Equals("true") ? true : false; - #endregion - - if (ucHistory.txtCompany != null && ucHistory.txtPosition != null && ucHistory.dtpStartDate.Value != null && ucHistory.dtpEndDate.Value != null) - { - #region 履历添加代码块 - WorkerHistory workerHistory = new WorkerHistory - { - StartDate = ucHistory.dtpStartDate.Value, - EndDate = ucHistory.dtpEndDate.Value, - Position = ucHistory.txtPosition.Text, - Company = ucHistory.txtCompany.Text, - WorkerId = WorkerNo.Text.Trim() - }; - - response = HttpHelper.Request("WorkerHistory/AddHistoryByWorkerId", HttpHelper.ModelToJson(workerHistory)); - if (response.statusCode != 200) - { - UIMessageBox.ShowError("AddHistoryByWorkerId+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - bool j = response.message.ToString().Equals("true") ? true : false; - #endregion - - #region 判断履历和信息代码块 - if (n == true && j == true) - { - UIMessageBox.Show("员工信息/履历添加成功!该员工登录密码为:123456,请提醒员工妥善保管并首次登录系统时修改密码!"); - this.Close(); - FrmWorkerManager.Reload(); - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "添加员工操作!新增值为:" + worker.WorkerId, 2); - #endregion - } - else - { - UIMessageBox.Show("员工信息/履历添加失败,请检查数据格式或稍后再试!"); - } - #endregion - } - } - catch (Exception) - { - UIMessageBox.Show("服务器繁忙或数据格式为空!"); - } - finally - { - this.Close(); - } - } - - private void FrmAddWorker_ButtonCancelClick(object sender, EventArgs e) - { - this.Close(); - } - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.resx deleted file mode 100644 index 3eb4428aed1637fe14eac8809f516a1e0add1e78..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.resx +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - - - AAABAAEAICAAAAEAGADqAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACf0lEQVRYR7WWz4tN - YRzG78KCYkVJFMlmNogVmhrZYTMLS0VCqSllaWH+A7KbBdNkN8qCTFlMI5FCpOwoln4u/NpY3OvzvOc5 - 1zHOeed9z7k+9e19z3Oe7/N9XfeeM722DAaD1dSZfr9/g3pHfaIeUtek2/Z/YMgYtcigGM+o0R+EwaeK - /D+gfaOWtFoagjbj1u4Qdsi5Aa7vUft8O6Br6baUjOaTIPi1A8Uxy7XofmELB/1M7fKtdhBwyXli2nKU - ag/7i5bbQcCcg75TmyxHkU9+9z213A4CnjjokaUk5FefYD9mOR+afzjksqUk5A/TC3Zbzoegt0pgvWUp - CfnDaGC/1XI+NN91yBtLScgfpgP7dZbzofmKcxR01HIU+dyintuW20HAOPXLYV8sR5EvTAf2SYeOQshp - 5ynwPUvtw0i67wfYd/vXVyFvuogdMs+AC6wTXueDatAeUzvcPhoInHF+FHx3WDa4rTsEHqBuFvHN4Fmg - ptiucms3CNpO4NWQvgz0JRb9t0youF7jttFA4BHqg4aVcD1HTVLrbfsL9M3UTqrbYQjYQ330XA3+SU35 - diN4Xtl/zlI+NOtN9iJMLrjPddI73X6R9NquhWH6BpdkBblHtDsAw086QB/jS5a1vpVE0RlofYAHDtAB - jltuBFv4BVSqZPjrKMstzWCq/i234qvX1mTIPO/WejAs2Cvzfsu1cH+jrcnQM+v2f+HmFvtkfG45Cta9 - lD7qapUs1+PfCYYexBRgf91yNo4QeV9Chp51ow6w4gOnCUeI7AMMn/fsxy1n4wiRfQC9WDT8K0vWb78K - /eHxzZr3KKbhsBqh3QPE0H+CrFnWbZYa6PV+A7TunigK79nMAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.Designer.cs deleted file mode 100644 index 8e0fd1bc809a2474fdeb5d13e8d5710f37da8d8b..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.Designer.cs +++ /dev/null @@ -1,409 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmWorkerManager - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWorkerManager)); - this.dgvWorkerList = new Sunny.UI.UIDataGridView(); - this.clWorkerNo = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerPwd = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerBirthday = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerSex = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerTel = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerClub = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerNation = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerAddress = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerPosition = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerCardID = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerFace = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.clWorkerEducation = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.btnRefush = new Sunny.UI.UIButton(); - this.btnAddWorker = new Sunny.UI.UIButton(); - ((System.ComponentModel.ISupportInitialize)(this.dgvWorkerList)).BeginInit(); - this.SuspendLayout(); - // - // dgvWorkerList - // - this.dgvWorkerList.AllowUserToAddRows = false; - this.dgvWorkerList.AllowUserToDeleteRows = false; - this.dgvWorkerList.AllowUserToResizeColumns = false; - this.dgvWorkerList.AllowUserToResizeRows = false; - dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.dgvWorkerList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; - this.dgvWorkerList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; - this.dgvWorkerList.BackgroundColor = System.Drawing.Color.White; - this.dgvWorkerList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; - dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White; - dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvWorkerList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; - this.dgvWorkerList.ColumnHeadersHeight = 32; - this.dgvWorkerList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; - this.dgvWorkerList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.clWorkerNo, - this.clWorkerPwd, - this.Column7, - this.Column8, - this.Column9, - this.Column10, - this.Column1, - this.Column2, - this.Column3, - this.Column4, - this.Column5, - this.Column6, - this.clWorkerName, - this.clWorkerBirthday, - this.clWorkerSex, - this.clWorkerTel, - this.clWorkerClub, - this.clWorkerNation, - this.clWorkerAddress, - this.clWorkerPosition, - this.clWorkerCardID, - this.clWorkerTime, - this.clWorkerFace, - this.clWorkerEducation}); - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window; - dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255))))); - dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgvWorkerList.DefaultCellStyle = dataGridViewCellStyle3; - this.dgvWorkerList.EnableHeadersVisualStyles = false; - this.dgvWorkerList.Font = new System.Drawing.Font("微软雅黑", 12F); - this.dgvWorkerList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - this.dgvWorkerList.Location = new System.Drawing.Point(3, 38); - this.dgvWorkerList.Name = "dgvWorkerList"; - this.dgvWorkerList.ReadOnly = true; - dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; - dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F); - dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48))))); - dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); - dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White; - dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; - this.dgvWorkerList.RowHeadersDefaultCellStyle = dataGridViewCellStyle4; - this.dgvWorkerList.RowHeadersVisible = false; - dataGridViewCellStyle5.BackColor = System.Drawing.Color.White; - this.dgvWorkerList.RowsDefaultCellStyle = dataGridViewCellStyle5; - this.dgvWorkerList.RowTemplate.Height = 29; - this.dgvWorkerList.SelectedIndex = -1; - this.dgvWorkerList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgvWorkerList.Size = new System.Drawing.Size(999, 540); - this.dgvWorkerList.Style = Sunny.UI.UIStyle.Custom; - this.dgvWorkerList.TabIndex = 3; - this.dgvWorkerList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvWorkerList_CellClick); - // - // clWorkerNo - // - this.clWorkerNo.DataPropertyName = "WorkerId"; - this.clWorkerNo.HeaderText = "工号"; - this.clWorkerNo.Name = "clWorkerNo"; - this.clWorkerNo.ReadOnly = true; - // - // clWorkerPwd - // - this.clWorkerPwd.DataPropertyName = "WorkerPwd"; - this.clWorkerPwd.HeaderText = "Column11"; - this.clWorkerPwd.Name = "clWorkerPwd"; - this.clWorkerPwd.ReadOnly = true; - this.clWorkerPwd.Visible = false; - // - // Column7 - // - this.Column7.DataPropertyName = "datains_usr"; - this.Column7.HeaderText = "Column7"; - this.Column7.Name = "Column7"; - this.Column7.ReadOnly = true; - this.Column7.Visible = false; - // - // Column8 - // - this.Column8.DataPropertyName = "datains_date"; - this.Column8.HeaderText = "Column8"; - this.Column8.Name = "Column8"; - this.Column8.ReadOnly = true; - this.Column8.Visible = false; - // - // Column9 - // - this.Column9.DataPropertyName = "datachg_usr"; - this.Column9.HeaderText = "Column9"; - this.Column9.Name = "Column9"; - this.Column9.ReadOnly = true; - this.Column9.Visible = false; - // - // Column10 - // - this.Column10.DataPropertyName = "datachg_date"; - this.Column10.HeaderText = "Column10"; - this.Column10.Name = "Column10"; - this.Column10.ReadOnly = true; - this.Column10.Visible = false; - // - // Column1 - // - this.Column1.DataPropertyName = "delete_mk"; - this.Column1.HeaderText = "Column1"; - this.Column1.Name = "Column1"; - this.Column1.ReadOnly = true; - this.Column1.Visible = false; - // - // Column2 - // - this.Column2.DataPropertyName = "WorkerSex"; - this.Column2.HeaderText = "Column2"; - this.Column2.Name = "Column2"; - this.Column2.ReadOnly = true; - this.Column2.Visible = false; - // - // Column3 - // - this.Column3.DataPropertyName = "WorkerNation"; - this.Column3.HeaderText = "Column3"; - this.Column3.Name = "Column3"; - this.Column3.ReadOnly = true; - this.Column3.Visible = false; - // - // Column4 - // - this.Column4.DataPropertyName = "WorkerPosition"; - this.Column4.HeaderText = "Column4"; - this.Column4.Name = "Column4"; - this.Column4.ReadOnly = true; - this.Column4.Visible = false; - // - // Column5 - // - this.Column5.DataPropertyName = "WorkerClub"; - this.Column5.HeaderText = "Column5"; - this.Column5.Name = "Column5"; - this.Column5.ReadOnly = true; - this.Column5.Visible = false; - // - // Column6 - // - this.Column6.DataPropertyName = "WorkerEducation"; - this.Column6.HeaderText = "Column6"; - this.Column6.Name = "Column6"; - this.Column6.ReadOnly = true; - this.Column6.Visible = false; - // - // clWorkerName - // - this.clWorkerName.DataPropertyName = "WorkerName"; - this.clWorkerName.HeaderText = "名字"; - this.clWorkerName.Name = "clWorkerName"; - this.clWorkerName.ReadOnly = true; - // - // clWorkerBirthday - // - this.clWorkerBirthday.DataPropertyName = "WorkerBirthday"; - this.clWorkerBirthday.HeaderText = "出生日期"; - this.clWorkerBirthday.Name = "clWorkerBirthday"; - this.clWorkerBirthday.ReadOnly = true; - // - // clWorkerSex - // - this.clWorkerSex.DataPropertyName = "WorkerSexName"; - this.clWorkerSex.HeaderText = "性别"; - this.clWorkerSex.Name = "clWorkerSex"; - this.clWorkerSex.ReadOnly = true; - // - // clWorkerTel - // - this.clWorkerTel.DataPropertyName = "WorkerTel"; - this.clWorkerTel.HeaderText = "联系方式"; - this.clWorkerTel.Name = "clWorkerTel"; - this.clWorkerTel.ReadOnly = true; - this.clWorkerTel.Visible = false; - // - // clWorkerClub - // - this.clWorkerClub.DataPropertyName = "ClubName"; - this.clWorkerClub.HeaderText = "部门"; - this.clWorkerClub.Name = "clWorkerClub"; - this.clWorkerClub.ReadOnly = true; - // - // clWorkerNation - // - this.clWorkerNation.DataPropertyName = "NationName"; - this.clWorkerNation.HeaderText = "民族"; - this.clWorkerNation.Name = "clWorkerNation"; - this.clWorkerNation.ReadOnly = true; - // - // clWorkerAddress - // - this.clWorkerAddress.DataPropertyName = "WorkerAddress"; - this.clWorkerAddress.HeaderText = "居住地址"; - this.clWorkerAddress.Name = "clWorkerAddress"; - this.clWorkerAddress.ReadOnly = true; - this.clWorkerAddress.Visible = false; - // - // clWorkerPosition - // - this.clWorkerPosition.DataPropertyName = "PositionName"; - this.clWorkerPosition.HeaderText = "职位"; - this.clWorkerPosition.Name = "clWorkerPosition"; - this.clWorkerPosition.ReadOnly = true; - // - // clWorkerCardID - // - this.clWorkerCardID.DataPropertyName = "CardID"; - this.clWorkerCardID.HeaderText = "证件号码"; - this.clWorkerCardID.Name = "clWorkerCardID"; - this.clWorkerCardID.ReadOnly = true; - this.clWorkerCardID.Visible = false; - // - // clWorkerTime - // - this.clWorkerTime.DataPropertyName = "WorkerTime"; - this.clWorkerTime.HeaderText = "入职时间"; - this.clWorkerTime.Name = "clWorkerTime"; - this.clWorkerTime.ReadOnly = true; - // - // clWorkerFace - // - this.clWorkerFace.DataPropertyName = "WorkerFace"; - this.clWorkerFace.HeaderText = "面貌"; - this.clWorkerFace.Name = "clWorkerFace"; - this.clWorkerFace.ReadOnly = true; - // - // clWorkerEducation - // - this.clWorkerEducation.DataPropertyName = "EducationName"; - this.clWorkerEducation.HeaderText = "学历"; - this.clWorkerEducation.Name = "clWorkerEducation"; - this.clWorkerEducation.ReadOnly = true; - // - // btnRefush - // - this.btnRefush.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnRefush.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnRefush.Location = new System.Drawing.Point(818, 584); - this.btnRefush.MinimumSize = new System.Drawing.Size(1, 1); - this.btnRefush.Name = "btnRefush"; - this.btnRefush.Radius = 30; - this.btnRefush.Size = new System.Drawing.Size(88, 30); - this.btnRefush.Style = Sunny.UI.UIStyle.Custom; - this.btnRefush.TabIndex = 99; - this.btnRefush.Text = "刷新列表"; - this.btnRefush.Click += new System.EventHandler(this.btnRefush_Click); - // - // btnAddWorker - // - this.btnAddWorker.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnAddWorker.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnAddWorker.Location = new System.Drawing.Point(912, 584); - this.btnAddWorker.MinimumSize = new System.Drawing.Size(1, 1); - this.btnAddWorker.Name = "btnAddWorker"; - this.btnAddWorker.Radius = 30; - this.btnAddWorker.Size = new System.Drawing.Size(86, 30); - this.btnAddWorker.Style = Sunny.UI.UIStyle.Custom; - this.btnAddWorker.TabIndex = 100; - this.btnAddWorker.Text = "添加员工"; - this.btnAddWorker.Click += new System.EventHandler(this.btnAddWorker_Click); - // - // FrmWorkerManager - // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(1005, 623); - this.ControlBox = false; - this.Controls.Add(this.btnAddWorker); - this.Controls.Add(this.btnRefush); - this.Controls.Add(this.dgvWorkerList); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmWorkerManager"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "员工管理"; - this.Load += new System.EventHandler(this.FrmTopChange_Load); - ((System.ComponentModel.ISupportInitialize)(this.dgvWorkerList)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - private Sunny.UI.UIDataGridView dgvWorkerList; - private Sunny.UI.UIButton btnRefush; - private Sunny.UI.UIButton btnAddWorker; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerNo; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerPwd; - private System.Windows.Forms.DataGridViewTextBoxColumn Column7; - private System.Windows.Forms.DataGridViewTextBoxColumn Column8; - private System.Windows.Forms.DataGridViewTextBoxColumn Column9; - private System.Windows.Forms.DataGridViewTextBoxColumn Column10; - private System.Windows.Forms.DataGridViewTextBoxColumn Column1; - private System.Windows.Forms.DataGridViewTextBoxColumn Column2; - private System.Windows.Forms.DataGridViewTextBoxColumn Column3; - private System.Windows.Forms.DataGridViewTextBoxColumn Column4; - private System.Windows.Forms.DataGridViewTextBoxColumn Column5; - private System.Windows.Forms.DataGridViewTextBoxColumn Column6; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerName; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerBirthday; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerSex; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerTel; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerClub; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerNation; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerAddress; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerPosition; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerCardID; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerTime; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerFace; - private System.Windows.Forms.DataGridViewTextBoxColumn clWorkerEducation; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.cs deleted file mode 100644 index 172e9f61e8340347a43cb05ceb18b45cf4737e54..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.cs +++ /dev/null @@ -1,124 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmWorkerManager : UIForm - { - public static string wk_WorkerNo; - public static string wk_WorkerName; - public static string wk_WorkerBirthday; - public static string wk_WorkerSex; - public static string wk_WorkerTel; - public static string wk_WorkerClub; - public static string wk_WorkerAddress; - public static string wk_WorkerPosition; - public static string wk_WorkerID; - public static string wk_WorkerPwd; - public static string wk_WorkerTime; - public static string wk_WorkerFace; - public static string wk_WorkerNation; - public static string wk_WorkerEducation; - public static string wk_WorkerStatus; - - public delegate void ReLoadWorkerList(); - - - //定义委托类型的变量 - public static ReLoadWorkerList Reload; - - public FrmWorkerManager() - { - InitializeComponent(); - Reload = LoadWorker; - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void LoadWorker() - { - result = HttpHelper.Request("Worker/SelectWorkerAll"); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("SelectWorkerAll+接口服务异常,请提交issue"); - return; - } - dgvWorkerList.AutoGenerateColumns = false; - dgvWorkerList.DataSource = HttpHelper.JsonToList(result.message); - } - - private void FrmTopChange_Load(object sender, EventArgs e) - { - LoadWorker(); - if (AdminInfo.isAdmin == false && AdminInfo.Type != "GeneralManager" && AdminInfo.Type != "HRManager") - { - btnAddWorker.Enabled = false; - btnAddWorker.Text = "权限不足"; - } - } - - private void dgvWorkerList_CellClick(object sender, DataGridViewCellEventArgs e) - { - if (dgvWorkerList.Rows.Count > 1) - { - wk_WorkerNo = dgvWorkerList.SelectedRows[0].Cells["clWorkerNo"].Value.ToString(); - wk_WorkerName = dgvWorkerList.SelectedRows[0].Cells["clWorkerName"].Value.ToString(); - wk_WorkerBirthday = dgvWorkerList.SelectedRows[0].Cells["clWorkerBirthday"].Value.ToString(); - wk_WorkerSex = dgvWorkerList.SelectedRows[0].Cells["clWorkerSex"].Value.ToString(); - wk_WorkerTel = dgvWorkerList.SelectedRows[0].Cells["clWorkerTel"].Value.ToString(); - wk_WorkerClub = dgvWorkerList.SelectedRows[0].Cells["clWorkerClub"].Value.ToString(); - wk_WorkerAddress = dgvWorkerList.SelectedRows[0].Cells["clWorkerAddress"].Value.ToString(); - wk_WorkerPosition = dgvWorkerList.SelectedRows[0].Cells["clWorkerPosition"].Value.ToString(); - wk_WorkerID = dgvWorkerList.SelectedRows[0].Cells["clWorkerCardID"].Value.ToString(); - wk_WorkerPwd = dgvWorkerList.SelectedRows[0].Cells["clWorkerPwd"].Value.ToString(); - wk_WorkerTime = dgvWorkerList.SelectedRows[0].Cells["clWorkerTime"].Value.ToString(); - wk_WorkerFace = dgvWorkerList.SelectedRows[0].Cells["clWorkerFace"].Value.ToString(); - wk_WorkerEducation = dgvWorkerList.SelectedRows[0].Cells["clWorkerEducation"].Value.ToString(); - wk_WorkerNation = dgvWorkerList.SelectedRows[0].Cells["clWorkerNation"].Value.ToString(); - wk_WorkerStatus = dgvWorkerList.SelectedRows[0].Cells["Column1"].Value.ToString(); - FrmWorkerPanel aff = new FrmWorkerPanel(); - aff.ShowDialog(); - - } - } - - - - private void btnAddWorker_Click(object sender, EventArgs e) - { - FrmWorkerInfo frm = new FrmWorkerInfo(); - frm.Show(); - } - - private void btnRefush_Click(object sender, EventArgs e) - { - LoadWorker(); - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.resx deleted file mode 100644 index 78026153533a054e37e32339932c68a6b822e0f3..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.resx +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - - - AAABAAEAICAAAAEAGAC3AgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAACTElEQVRYR92WvUsD - QRDFbUT/ALURRBBEgq19qohiKdikCCiCWqulqS3FUrCyCYiQSrFPFSJCMGUKsRIMCilUSHxP5o5xyWUm - MSn0YMjt7pvfvLv9uIyM/MWr3W4vtFqtLOJMIsu+oT8Lik0jLlGs48UxaoZiBOC9pMJhP7UDNQHgvC6C - 9jXaOcSsRE76YhlzBmYC1EJEBngzCcwxZbQwEAOAbiho3oJCf6TMblh6cxzAUwLx+2aKRUCt5Jx6cxJ1 - gN0LrOaFIacmOffenG4GGgIreWEwUJKchjenm4ErgdW9MBioS86VN6ebgUOBvQOcsoDUIN4l59DSm+OA - ZdSqrloJ0FeVPmPpXeOAFhW0gvZcmMg+REXpii64RwTwWHASNtF3jtiS4H0z0Ix52G4NCkwibsNzP2xT - Q60b3KsQ8F3EHeJDve4P6dvtlde3HsVHUXSRwfu+Qb9JRPGppHyYSqvpSf+mTpyLgsuIE8RNBNdg9K9F - bYzzcx1duahfa3oyhcSzTgtQQzBeRhSg/T4Jg13BPn7Wy70WXgLwNYA9yDbcUU+8be0QNb7tNhEUfkG7 - YzIMHSCelT6PNo/lFPryasc8U+syECReWElaz0Wo3o5ekHmL8z0Ol6vqaVx/rwLD8YdL3kKEcxuIvumP - yJywXHNqUOhJTwHfgoSeAmq6rwEIZgD7JAy/+1ZxjhM6sEWIoutq0cR72zLCLSa7g1vux8WtyTFqLA7n - /1gZMP+EqENmxXEQxZpEI2ruOIfjpuMOAmFEzxHviH5Y/zvnC8vWZZB6XAnDAAAAAElFTkSuQmCC - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.Designer.cs deleted file mode 100644 index bc3aa7bd3936d311e102526688f781362cb8e4ce..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.Designer.cs +++ /dev/null @@ -1,188 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmWorkerPanel - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWorkerPanel)); - this.lblWorker = new System.Windows.Forms.Label(); - this.btnWatchInfo = new Sunny.UI.UIButton(); - this.btnUpWorker = new Sunny.UI.UIButton(); - this.btnGoodBad = new Sunny.UI.UIButton(); - this.btnCheck = new Sunny.UI.UIButton(); - this.btnClose = new Sunny.UI.UIButton(); - this.btnUpdate = new Sunny.UI.UIButton(); - this.btnBlockAccount = new Sunny.UI.UIButton(); - this.SuspendLayout(); - // - // lblWorker - // - this.lblWorker.AutoSize = true; - this.lblWorker.BackColor = System.Drawing.Color.Transparent; - this.lblWorker.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lblWorker.Location = new System.Drawing.Point(86, 48); - this.lblWorker.Name = "lblWorker"; - this.lblWorker.Size = new System.Drawing.Size(239, 25); - this.lblWorker.TabIndex = 108; - this.lblWorker.Text = "XXX部XXX:XXX的操作界面"; - // - // btnWatchInfo - // - this.btnWatchInfo.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnWatchInfo.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnWatchInfo.Location = new System.Drawing.Point(17, 114); - this.btnWatchInfo.MinimumSize = new System.Drawing.Size(1, 1); - this.btnWatchInfo.Name = "btnWatchInfo"; - this.btnWatchInfo.Radius = 15; - this.btnWatchInfo.Size = new System.Drawing.Size(72, 29); - this.btnWatchInfo.TabIndex = 110; - this.btnWatchInfo.Text = "查看信息"; - this.btnWatchInfo.Click += new System.EventHandler(this.btnWatchInfo_Click); - // - // btnUpWorker - // - this.btnUpWorker.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpWorker.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnUpWorker.Location = new System.Drawing.Point(197, 114); - this.btnUpWorker.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpWorker.Name = "btnUpWorker"; - this.btnUpWorker.Radius = 15; - this.btnUpWorker.Size = new System.Drawing.Size(72, 29); - this.btnUpWorker.TabIndex = 111; - this.btnUpWorker.Text = "职位任命"; - this.btnUpWorker.Click += new System.EventHandler(this.btnUpWorker_Click); - // - // btnGoodBad - // - this.btnGoodBad.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnGoodBad.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnGoodBad.Location = new System.Drawing.Point(17, 149); - this.btnGoodBad.MinimumSize = new System.Drawing.Size(1, 1); - this.btnGoodBad.Name = "btnGoodBad"; - this.btnGoodBad.Radius = 15; - this.btnGoodBad.Size = new System.Drawing.Size(72, 29); - this.btnGoodBad.TabIndex = 112; - this.btnGoodBad.Text = "奖罚情况"; - this.btnGoodBad.Click += new System.EventHandler(this.btnGoodBad_Click); - // - // btnCheck - // - this.btnCheck.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnCheck.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnCheck.Location = new System.Drawing.Point(107, 149); - this.btnCheck.MinimumSize = new System.Drawing.Size(1, 1); - this.btnCheck.Name = "btnCheck"; - this.btnCheck.Radius = 15; - this.btnCheck.Size = new System.Drawing.Size(72, 29); - this.btnCheck.TabIndex = 113; - this.btnCheck.Text = "打卡考勤"; - this.btnCheck.Click += new System.EventHandler(this.btnCheck_Click); - // - // btnClose - // - this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnClose.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnClose.Location = new System.Drawing.Point(197, 149); - this.btnClose.MinimumSize = new System.Drawing.Size(1, 1); - this.btnClose.Name = "btnClose"; - this.btnClose.Radius = 15; - this.btnClose.Size = new System.Drawing.Size(72, 29); - this.btnClose.TabIndex = 114; - this.btnClose.Text = "关闭界面"; - this.btnClose.Click += new System.EventHandler(this.btnClose_Click); - // - // btnUpdate - // - this.btnUpdate.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnUpdate.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnUpdate.Location = new System.Drawing.Point(107, 114); - this.btnUpdate.MinimumSize = new System.Drawing.Size(1, 1); - this.btnUpdate.Name = "btnUpdate"; - this.btnUpdate.Radius = 15; - this.btnUpdate.Size = new System.Drawing.Size(72, 29); - this.btnUpdate.TabIndex = 115; - this.btnUpdate.Text = "修改信息"; - this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); - // - // btnBlockAccount - // - this.btnBlockAccount.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnBlockAccount.FillColor = System.Drawing.Color.Red; - this.btnBlockAccount.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.btnBlockAccount.Location = new System.Drawing.Point(287, 114); - this.btnBlockAccount.MinimumSize = new System.Drawing.Size(1, 1); - this.btnBlockAccount.Name = "btnBlockAccount"; - this.btnBlockAccount.Radius = 15; - this.btnBlockAccount.RectColor = System.Drawing.Color.Red; - this.btnBlockAccount.Size = new System.Drawing.Size(72, 29); - this.btnBlockAccount.Style = Sunny.UI.UIStyle.Custom; - this.btnBlockAccount.TabIndex = 116; - this.btnBlockAccount.Text = "禁用账号"; - this.btnBlockAccount.Click += new System.EventHandler(this.btnBlockAccount_Click); - // - // FrmChangeWorker - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.BackgroundImage = global::EOM.TSHotelManagement.FormUI.Properties.Resources.常规部门卡片; - this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.ClientSize = new System.Drawing.Size(375, 239); - this.Controls.Add(this.btnBlockAccount); - this.Controls.Add(this.btnUpdate); - this.Controls.Add(this.btnClose); - this.Controls.Add(this.btnCheck); - this.Controls.Add(this.btnGoodBad); - this.Controls.Add(this.btnUpWorker); - this.Controls.Add(this.btnWatchInfo); - this.Controls.Add(this.lblWorker); - this.DoubleBuffered = true; - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmChangeWorker"; - this.ShowInTaskbar = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "XXX员工操作"; - this.Load += new System.EventHandler(this.FrmChangeWorker_Load); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label lblWorker; - private Sunny.UI.UIButton btnWatchInfo; - private Sunny.UI.UIButton btnUpWorker; - private Sunny.UI.UIButton btnGoodBad; - private Sunny.UI.UIButton btnCheck; - private Sunny.UI.UIButton btnClose; - private Sunny.UI.UIButton btnUpdate; - private Sunny.UI.UIButton btnBlockAccount; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.cs deleted file mode 100644 index ff7409349f2f6ea8ca42f7b23567c7259d36a40d..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.cs +++ /dev/null @@ -1,297 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.FormUI.Properties; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - /// - /// 员工操作界面 - /// - public partial class FrmWorkerPanel : Form - { - public static string wk_WorkerNo; - public static string wk_WorkerName; - public static string wk_WorkerBirthday; - public static string wk_WorkerSex; - public static string wk_WorkerTel; - public static string wk_WorkerClub; - public static string wk_WorkerAddress; - public static string wk_WorkerPosition; - public static string wk_WorkerID; - public static string wk_WorkerPwd; - public static string wk_WorkerTime; - public static string wk_WorkerFace; - public static string wk_WorkerNation; - public static string wk_WorkerEducation; - public static string wk_WorkerStatus; - - public FrmWorkerPanel() - { - InitializeComponent(); - } - - ResponseMsg result = null; - Dictionary dic = null; - - private void FrmChangeWorker_Load(object sender, EventArgs e) - { - if (AdminInfo.isAdmin == false && AdminInfo.Type != "GeneralManager" && AdminInfo.Type != "HRManager") - { - btnUpWorker.Enabled = false; - btnUpWorker.Text = "权限不足"; - btnCheck.Enabled = false; - btnCheck.Text = "权限不足"; - btnGoodBad.Enabled = false; - btnGoodBad.Text = "权限不足"; - } - - wk_WorkerNo = FrmWorkerManager.wk_WorkerNo; - wk_WorkerName = FrmWorkerManager.wk_WorkerName; - wk_WorkerBirthday = FrmWorkerManager.wk_WorkerBirthday; - wk_WorkerSex = FrmWorkerManager.wk_WorkerSex; - wk_WorkerTel = FrmWorkerManager.wk_WorkerTel; - wk_WorkerClub = FrmWorkerManager.wk_WorkerClub; - wk_WorkerAddress = FrmWorkerManager.wk_WorkerAddress; - wk_WorkerPosition = FrmWorkerManager.wk_WorkerPosition; - wk_WorkerID = FrmWorkerManager.wk_WorkerID; - wk_WorkerPwd = FrmWorkerManager.wk_WorkerPwd; - wk_WorkerTime = FrmWorkerManager.wk_WorkerTime; - wk_WorkerFace = FrmWorkerManager.wk_WorkerFace; - wk_WorkerNation = FrmWorkerManager.wk_WorkerNation; - wk_WorkerEducation = FrmWorkerManager.wk_WorkerEducation; - wk_WorkerStatus = FrmWorkerManager.wk_WorkerStatus; - lblWorker.Text = FrmWorkerManager.wk_WorkerClub + FrmWorkerManager.wk_WorkerPosition + ":" + FrmWorkerManager.wk_WorkerName + "的操作界面"; - - switch (wk_WorkerClub) - { - case "经理部": - this.BackgroundImage = Resources.经理部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(255, 105, 105); - this.btnUpdate.FillColor = Color.FromArgb(255, 105, 105); - this.btnUpWorker.FillColor = Color.FromArgb(255, 105, 105); - this.btnGoodBad.FillColor = Color.FromArgb(255, 105, 105); - this.btnClose.FillColor = Color.FromArgb(255, 105, 105); - this.btnCheck.FillColor = Color.FromArgb(255, 105, 105); - break; - case "总经办": - this.BackgroundImage = Resources.总经办卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(67, 123, 232); - this.btnUpdate.FillColor = Color.FromArgb(67, 123, 232); - this.btnUpWorker.FillColor = Color.FromArgb(67, 123, 232); - this.btnGoodBad.FillColor = Color.FromArgb(67, 123, 232); - this.btnClose.FillColor = Color.FromArgb(67, 123, 232); - this.btnCheck.FillColor = Color.FromArgb(67, 123, 232); - break; - case "人力资源部": - this.BackgroundImage = Resources.人力资源部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(101, 165, 72); - this.btnUpdate.FillColor = Color.FromArgb(101, 165, 72); - this.btnUpWorker.FillColor = Color.FromArgb(101, 165, 72); - this.btnGoodBad.FillColor = Color.FromArgb(101, 165, 72); - this.btnClose.FillColor = Color.FromArgb(101, 165, 72); - this.btnCheck.FillColor = Color.FromArgb(101, 165, 72); - break; - case "财务部": - this.BackgroundImage = Resources.财务部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(80, 160, 255); - this.btnUpdate.FillColor = Color.FromArgb(80, 160, 255); - this.btnUpWorker.FillColor = Color.FromArgb(80, 160, 255); - this.btnGoodBad.FillColor = Color.FromArgb(80, 160, 255); - this.btnClose.FillColor = Color.FromArgb(80, 160, 255); - this.btnCheck.FillColor = Color.FromArgb(80, 160, 255); - break; - case "酒店部": - this.BackgroundImage = Resources.酒店部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(255, 185, 38); - this.btnUpdate.FillColor = Color.FromArgb(255, 185, 38); - this.btnUpWorker.FillColor = Color.FromArgb(255, 185, 38); - this.btnGoodBad.FillColor = Color.FromArgb(255, 185, 38); - this.btnClose.FillColor = Color.FromArgb(255, 185, 38); - this.btnCheck.FillColor = Color.FromArgb(255, 185, 38); - break; - case "内控部": - this.BackgroundImage = Resources.内控部卡片; - var btnColor = Color.FromArgb(251, 157, 63); - this.btnWatchInfo.FillColor = btnColor; - this.btnUpdate.FillColor = btnColor; - this.btnUpWorker.FillColor = btnColor; - this.btnGoodBad.FillColor = btnColor; - this.btnClose.FillColor = btnColor; - this.btnCheck.FillColor = btnColor; - break; - case "监管小组": - this.BackgroundImage = Resources.监管小组卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(251, 186, 36); - this.btnUpdate.FillColor = Color.FromArgb(251, 186, 36); - this.btnUpWorker.FillColor = Color.FromArgb(251, 186, 36); - this.btnGoodBad.FillColor = Color.FromArgb(251, 186, 36); - this.btnClose.FillColor = Color.FromArgb(251, 186, 36); - this.btnCheck.FillColor = Color.FromArgb(251, 186, 36); - break; - case "餐饮部": - this.BackgroundImage = Resources.餐饮部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(243, 160, 53); - this.btnUpdate.FillColor = Color.FromArgb(243, 160, 53); - this.btnUpWorker.FillColor = Color.FromArgb(243, 160, 53); - this.btnGoodBad.FillColor = Color.FromArgb(243, 160, 53); - this.btnClose.FillColor = Color.FromArgb(243, 160, 53); - this.btnCheck.FillColor = Color.FromArgb(243, 160, 53); - break; - case "后勤部": - this.BackgroundImage = Resources.后勤部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(106, 229, 162); - this.btnUpdate.FillColor = Color.FromArgb(106, 229, 162); - this.btnUpWorker.FillColor = Color.FromArgb(106, 229, 162); - this.btnGoodBad.FillColor = Color.FromArgb(106, 229, 162); - this.btnClose.FillColor = Color.FromArgb(106, 229, 162); - this.btnCheck.FillColor = Color.FromArgb(106, 229, 162); - break; - case "维修部": - this.BackgroundImage = Resources.维修部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(16, 90, 152); - this.btnUpdate.FillColor = Color.FromArgb(16, 90, 152); - this.btnUpWorker.FillColor = Color.FromArgb(16, 90, 152); - this.btnGoodBad.FillColor = Color.FromArgb(16, 90, 152); - this.btnClose.FillColor = Color.FromArgb(16, 90, 152); - this.btnCheck.FillColor = Color.FromArgb(16, 90, 152); - break; - case "商品部": - this.BackgroundImage = Resources.商品部卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(18, 150, 219); - this.btnUpdate.FillColor = Color.FromArgb(18, 150, 219); - this.btnUpWorker.FillColor = Color.FromArgb(18, 150, 219); - this.btnGoodBad.FillColor = Color.FromArgb(18, 150, 219); - this.btnClose.FillColor = Color.FromArgb(18, 150, 219); - this.btnCheck.FillColor = Color.FromArgb(18, 150, 219); - break; - default: - this.BackgroundImage = Resources.常规部门卡片; - this.btnWatchInfo.FillColor = Color.FromArgb(255, 200, 35); - this.btnUpdate.FillColor = Color.FromArgb(255, 200, 35); - this.btnUpWorker.FillColor = Color.FromArgb(255, 200, 35); - this.btnGoodBad.FillColor = Color.FromArgb(255, 200, 35); - this.btnClose.FillColor = Color.FromArgb(255, 200, 35); - this.btnCheck.FillColor = Color.FromArgb(255, 200, 35); - break; - } - - switch (wk_WorkerStatus) - { - case "0": - btnBlockAccount.Text = "禁用账号"; - btnBlockAccount.FillColor = Color.Red; - break; - case "1": - btnBlockAccount.Text = "启用账号"; - btnBlockAccount.FillColor = Color.Green; - btnBlockAccount.RectColor = Color.Green; - break; - } - } - - private void btnWatchInfo_Click(object sender, EventArgs e) - { - FrmWorkerInfo aff = new FrmWorkerInfo(); - aff.Text = "员工信息查看页"; - aff.ShowDialog(); - } - - private void btnUpWorker_Click(object sender, EventArgs e) - { - FrmChangePosition aff = new FrmChangePosition(); - aff.ShowDialog(); - } - - private void btnClose_Click(object sender, EventArgs e) - { - this.Close(); - } - - private void btnCheck_Click(object sender, EventArgs e) - { - FrmWorkerCheckInfo frm = new FrmWorkerCheckInfo(); - frm.Show(); - } - - private void btnGoodBad_Click(object sender, EventArgs e) - { - FrmGoodOrBad frm = new FrmGoodOrBad(); - frm.Show(); - } - - private void btnUpdate_Click(object sender, EventArgs e) - { - FrmWorkerInfo frmAddWorker = new FrmWorkerInfo(); - frmAddWorker.Text = "员工信息修改页"; - frmAddWorker.Show(); - } - - private void btnBlockAccount_Click(object sender, EventArgs e) - { - //根据员工账号状态确定是否禁用或启用 - if (wk_WorkerStatus.Equals("1")) - { - Worker worker = new Worker - { - WorkerId = wk_WorkerNo, - delete_mk = 0 - }; - result = HttpHelper.Request("Worker​/ManagerWorkerAccount", HttpHelper.ModelToJson(worker)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("ManagerWorkerAccount+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "启用员工账号操作!新增值为:" + worker.WorkerId, 2); - #endregion - this.Close(); - FrmWorkerManager.Reload(); - } - else - { - Worker worker = new Worker - { - WorkerId = wk_WorkerNo, - delete_mk = 1 - }; - result = HttpHelper.Request("Worker​/ManagerWorkerAccount", HttpHelper.ModelToJson(worker)); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("ManagerWorkerAccount+接口服务异常,请提交Issue或尝试更新版本!"); - return; - } - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "执行:" + "禁用员工账号操作!新增值为:" + worker.WorkerId, 2); - #endregion - this.Close(); - FrmWorkerManager.Reload(); - } - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.resx deleted file mode 100644 index fe5c746984f88c207fb8ca0450b10628c063e669..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.resx +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEAAACMuAAAjLgAAAAAAAAAA - AAD6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+Pj5//j4+P/4+Pj/+Pj4//j4 - +P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/4+Pj/+Pj4//j4+P/5+fn/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//7+ - /v////////////////////////////////////////////////////////////////////////////// - /////////v7+//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vn/+fr4//n6+P/6+vj/+vr4//r6+P/6+vn/+/r6//r7+//6+vr/+/r7//r7+v/6+vn/+vr4//r6 - +P/5+vf/+vr4//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+f/e393/1tbW/9TU1f/V1dX/1dTV/9XU1f/V1NX/1dTV/9TU1f/V1NX/1dXV/9XV - 1f/V1NX/1dTV/9XV1f/V1dX/1tbW/+Li4v/7+/v/+fn5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +f/6+vn/+vr4//n69//6+vf/+vr6//v7/v/8/P///Pz///z8///7+///+fn+//n5+f/5+ff/+Pj2//n5 - 9//4+fj/+fn9//v6///8/P///Pz///z7///7+/z/+vr5//r69//6+vj/+/r5//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/4+Pj/JiYm/wkLB/8dHxn/GhsW/xobFv8aGxb/GhwW/xka - Ff8WGBP/FhgT/xkbFf8aHBb/GhsW/xobFv8ZGxb/HiAa/wECAP9HR0f///////f39//6+vr/+vr6//r6 - +v/6+vr/+vr5//r6+P/5+vf/+vv6//z8///8/P//+/v///n49v/z9N//7vLM/+nttP/j6pf/3+aE/9zl - d//a5G7/2uRp/9nkZ//b5Gj/2uRr/9zldf/f54L/4umU/+jttv/v8tD/9fbr//v6/v/8/P///Pv9//r6 - +P/6+vj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+/v7/xYXFv9tcmX/9Pbv/+Hj - 3f/k5uD/5Obg/+Pl3//p6+b/9Pbw//P17//n6eP/4+Xf/+Tm4P/k5t//4ePe//L07P9GSj7/ODg5//// - ///39/f/+vr6//r6+v/5+vj/+vr4//v7/P/8/P///Pv///j59//w8tT/6Oyv/9/mgv/Z4mH/1d9L/9Pe - PP/T3Tj/0t02/9LdNv/S3jf/0944/9LeOf/S3jn/0t45/9TeOf/T3jf/0942/9PeNv/T3jj/0949/9fg - VP/d5Xr/6Ouv//P15f/7+////Pz+//r6+P/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//v7 - +/8XFxf/eX1y///////8/Pz///////7+/v//////4ePc/3t+dv+HioL/7vDr///////+/v7///////39 - /f//////TlJH/zg4Of//////9/f3//n69//6+vn//Pz///v7///29/L/7/DK/+PnlP/b4mL/1N5B/9Pc - NP/S3DX/0904/9TdPP/V3j//1d5B/9XeQv/V3kL/1d5B/9XeQf/V3kH/1d5B/9XdQf/U3kH/1d5B/9Xe - Qf/U3kH/1d5B/9XdQP/U3Tv/0t01/9PdNf/U3kr/4OaH//Hz2P/7+///+/v8//n69//6+vn/+vr5//r6 - +v/6+vr/+vr6//r6+v/7+/v/FhYX/3Z6b///////9fb1//n5+f/19vT//////4OHev8AAAD/AAAA/6es - n///////9vb1//j5+P/29vf//////0tPRP84ODn///////j4+P/8/P//+fn6/+/w0//i55H/2N9X/9Tb - O//U2zH/1Nw2/9TcPP/W3UD/1t1A/9bdP//V3T7/1d09/9XdPf/W3T3/1t09/9bdPf/V3T3/1d09/9Xd - Pf/V3T3/1d09/9XdPf/V3T3/1N09/9XdPf/W3D7/1t0//9XdQP/W3UD/1dw7/9PbMv/V3D//4eWH//T1 - 5//8/P//+vr3//r6+f/6+vr/+vr6//r6+v/6+vr/+/v7/xYWFv93e2////////f39//6+vr/9vb2//// - //+EiHz/AAAA/wEBAP+praL///////b39v/6+vr/+Pj4//////9MUET/OTg5///////29vT/7O2//93g - bf/U2jz/1Nox/9XaNv/W2z3/1txA/9bcQP/W3D//1tw+/9bbPf/W2zz/1ts8/9bbPP/W2z3/1tw+/9fb - P//W2z//1ts+/9bbPP/W2zz/1ts8/9bbPP/W2zz/1ts8/9XbPP/W2zz/1ts8/9bbPP/W2zz/1ds8/9bb - Pf/W2z7/1ts7/9PaL//X3Ev/7e7E//v8///6+vj/+vr5//r6+v/6+vr/+vr6//v7+/8WFhb/d3tv//// - ///39/f/+Pj4//////+9wbb/FBYP/wQEBf8CAgL/JCce/9XYz///////+Pj4//f39v//////TVBI/zY2 - M//5+8D/2Ntd/9TZM//U2TH/1to8/9bbQP/V2j7/1do4/9XZNP/U2DD/09gu/9TYL//T2DP/1Nk3/9XZ - OP/U2Tf/1Nk0/9TYMf/S2C7/1Ngu/9XZMv/V2Tf/1to8/9baPf/V2jz/1do7/9XaO//V2jv/1dk6/9Xa - O//V2jv/1dk6/9XZO//V2Tr/1dk6/9XZO//W2j7/1dk1/9TYNP/m6J//+vv///r6+P/6+vj/+vr5//r6 - +v/7+/v/FhYX/3d7b///////9/f3//b29v//////io6C/wAAAP8MDAz/CgoK/wAAAP+vs6j///////b3 - 9P/6+v7//////0tPRf8vMAr/4uU4/9PWMf/W2T3/1tk7/9XYM//V1yz/1Ncw/9bZP//Z3FX/3+F2/+Pl - jv/o6af/6+u4/+3uw//t78P/7e/E/+3twP/q6rD/5uec/+Hjhf/b3WT/19pG/9TXMv/U1yz/1Ngz/9bZ - Ov/W2Tv/1dk5/9XZOP/V2Tn/1tk5/9XZOf/V2Tn/1dk5/9XZOf/V2Tj/1dk4/9XZO//W2Tn/09Yr/+bo - n//8/P//+vn3//r6+f/6+vr/+/v7/xYWFv93e2////////f39//39/f//////5aajv8AAAD/AwMD/wEA - Af8AAAD/ubyv///////5+f//7+/V/+rrcP9DRxb/MDAP/+TlP//T1TX/1dUs/9XWM//Z2lT/4eKE/+vr - tf/y8tz/+Pj0//r6/f/8+////fz///z8///8/P///Pz///z8///8/P///fz///z8///7+///+fn5//T0 - 5v/s7b7/4uOJ/9jZT//U1S7/1dYv/9bXOf/W1zn/1tc3/9bXN//W1zf/1tc3/9bXN//W1zf/1tc3/9bX - N//W1zf/19c4/9fYOP/U1i3/6uq0//z8///5+vf/+vr6//v7+/8WFhb/dnpu///////19fX/+Pj4//r6 - +v/t7+n/l5uO/0FDO/9LTUT/p6uf//b3+P/39/b/5eWg/9PTN//g4C//REcY/zAwDP/i4S3/1tZE/+Pj - g//u7sb/9/fy//v7///8/f//+/z+//v7+//6+vn/+vr4//n69//5+vb/+vn1//r49P/5+fT/+vn0//n4 - 8//6+PT/+vr2//r6+v/7+/7//Pz///v8///29u//7Ou2/9vbXf/V1Cz/1tYx/9fWOf/W1jX/1tY2/9fW - Nv/W1jb/1tY2/9bWNv/X1jb/19Y2/9bWNv/X1jj/1tUz/9bWOf/w8Nf/+/z///r6+P/8+/z/FhYW/3l9 - cv///////Pz8///////////////////////////////+///////399z/4d9g/9jWJ//Z1zP/6OY5/0VI - Ev8zMhv/8vKg//Ly5v/8+////fz///v7+//6+vf/+fr3//n69//6+vn/+vr6//r6+f/6+fb/+/v7//r+ - ///7////+/////v////6////+v7///r7/P/6+ff/+vn4//n6+P/6+vf/+/v7//z8///4+Pf/6umu/9jW - RP/W0yr/19U3/9fUNP/X1DT/19Q0/9fUNP/X1DX/19Q1/9fUNf/X0zX/19M0/9fUOP/V0yn/3dxq//n6 - /v/6+vn/+/v7/xYWF/9vdGf/9Pfu/97g2f/i5N3/5efg/+Pm3v/h49v/4+Xa/+Pl3v/V1qb/xsU5/8XE - Kv/EwzX/wcAu/9XWTv9BRSD/OTlA///////4+fr/+fr3//n59//6+vn/+vr6//r6+v/6+vn/+vr6//r6 - +f/6+/v/+/////r48f/45Lz/99ON//bKc//2yXP/99GJ//jhtP/69ev/+/////r7+//6+fj/+vv6//r6 - +P/5+fb/+/r6//z8///19ej/391w/9XRJf/X1DX/19Qy/9fUMv/X0zL/1tQx/9bUMf/W0zL/1tMz/9bT - M//X0zP/19Q0/9bSK//q6cX//Pz///j5+P8nKCX/AAAA/wcJA/8SFA7/DxEL/wMFAP8DBQD/BAYB/wYI - C/8FCA3/BAYD/wYHBf8EBgP/EBIH/xITCP8ICQb/AAAA/0hJRv//////9/f1//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+P/6+vv/+vjz//fXmf/0szP/86MH//KgAf/yoAD/8p8A//OgAf/yowf/9K8p//fR - h//69/H/+/3+//n69//6+/n/+vr6//r6+v/5+ff/+/z+//r6+//j4IX/1tAk/9fTM//Y0jH/19Ix/9fT - Mf/X0zH/19Mx/9fSMP/X0jD/19Ix/9fSNf/X0iX/3dl7//n5///7+/v/09bO/4mNgv+BhXn/HB8Y/yAi - HP+Hi3//gYR8/4CDfP90cyz/cnEb/3JyHv9xcBX/dnhL/xMUFP8MDAv/eHtv/5SXjP/e4Nr/+/z7//n6 - +P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+/v/+vbu//W5Rf/znwD/86IG//OkCv/zoQL/86EB//Oi - BP/zoAH/86EB//OiBf/zngD/9LY9//nx4P/6/P//+vr3//r6+f/6+vr/+vr6//r5+P/7+vn/+/v//+Pf - hf/WzyT/2NEz/9nRMP/X0S//2NEv/9jRL//Y0S//2NEv/9jRL//Y0TD/2NEs/9jSP//y8eX/+vr6//z9 - /P//////2t3T/wABAP9LTkX///////7+///y7pH/5t4w/+bdLP/l3C//9vKe//z+9P8mKSL/FRcR//Dz - 7P///////f38//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn4//r8/v/2yXH/8p8A//Oi - Bf/zpAz/9bpI//fPgv/42Jj/99CE//S5Rf/zowf/86UO//OeAP/0uEH/+vn2//v6+v/6+vj/+vr6//r6 - +v/6+vr/+vr4//v7+v/4+fj/3dZa/9fOJP/Z0DD/2M8u/9jPLv/Yzy7/2M8u/9jPLv/Zzy7/2M8u/9nQ - MP/WzST/6eey//r6+v/29/b//v7//9XZz/8FBwH/S01D///////e2YL/08gd/9TKI//Xzj//6+jE//n5 - ///29/T/Jyki/xgaE//o6uP/+vr7//f49//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +P/6+/z/+fr3//W4Qf/1ukb/+enJ//r7+v/6////+/7+//v////7/f//9tCF//OhA//zphD/858A//fZ - n//6////+vn3//r6+v/6+vr/+vr6//r6+v/5+fj//Pz///Hu0f/Xzi7/2M4r/9jOLf/Yziz/2M4s/9jO - Lf/Yziz/2M4t/9jOLf/Zzi//1ssf/+Tegf/6+vr/+vr6//j4+f//////Sk1B/xMWFf/X1Yf/3M8l/9PH - Hf/b0k7/8/Lf//b3/f//////zNDE/wAAAP9scGX///////f39v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/5+vn/+/n4//r8/f/59Of/+vjw//r////6+vn/+/n2//n59v/6+PT/+vv7//r3 - 8f/zsCv/8qMH//KgAP/1wl3/+/3///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r69//7/P//49t4/9fL - Hf/ZzS7/2M0r/9jNK//YzSv/2M0r/9jNK//YzSr/2c0t/9fLIP/f12f/+vr6//r6+v/39/j//////4yQ - gv8AAAD/cW8Z/+nbKv/o3WH/+vnv/////////v///v/7/11hVv8AAAD/sLOm///////39/X/+vr4//r6 - +P/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fj/+vz8//r6+v/6+ff/+vr5//r6 - +P/6+fb/+vn3//r////58Nz/86se//OjCP/yogL/9bdA//r6+f/6+vr/+vr5//r6+v/6+vr/+vr6//r6 - +v/6+ff//P3//+7rxf/Yyib/2cwq/9nMKv/ZzCr/2Mwq/9jMKv/YzCr/2cwq/9nMLP/YyiD/3dRY//r6 - +v/6+vr/+fn4//38///z89//WFki/wAAAP9KShH/wcKq/+fp6f/j5dz/uLyw/z5BOP8AAAD/f4R2//// - ///6+///+vz+//v8///6/P7/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +f/6+vn/+vr6//r59v/6+/z/+v////r9/f/56Mj/9LY8//KhAv/zpxD/858A//bBXP/6/f//+vn4//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr5//v7+//39vD/3M9C/9jKIv/Zyir/2coo/9nKKP/Zyij/2coo/9jK - KP/Zyir/2Mkf/9/SV//6+vr/+vr6//r6+P/7/P//6N6L/+HPGP+DgTL/GBsj/wgJBP8cHRf/GhwX/wUG - A/8hJB3/q6+j///////48OH/+fHf//rx4f/58eD/+vHi//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr5//r6+f/6////+vfu//jeq//2vlH/86UN//OhA//zphD/86IG//Ki - Bf/44rj/+v7///r59//6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+fr7/+DTXf/Zxxz/2skp/9rJ - J//aySb/2skm/9rJJ//ZySf/2skp/9nHHv/e0VT/+vr6//r69//8/P//8u/V/9nGJP/Zxyf//PfT//L0 - 9P/X19b/1tbX/9bW1v/a2tr/9/f1///////4+fn/9LtM//OoE//zqx//86ob//OsHv/56cr/+v3///r5 - +P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r7+v/7+/v/99ib//SxLf/zoQT/86EC//Ol - DP/zpAj/8p8A//OoFf/426L/+v3///r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr3//r7 - ///j2HT/2cUY/9vJKP/ayCX/2sgl/9rIJf/ayCX/28gl/9vIKP/Zxhn/4tVq//r6+f/6+vf/+/v//+TX - df/XwQr/6uOo//r7///8+/r///////////////////////v7+//39vT/+v////bMeP/yngD/86QJ//Ok - Cf/zngD/99aV//r////6+ff/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6/P3/9shu//Kf - AP/zoQX/86YN//OiBf/zoAD/9Kwg//XHbf/57tf/+v7///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r59//7/f//5tt//9nDFv/bxyj/28ck/9rHJP/axyT/2sck/9rGJP/bxyf/2MMV/+bb - iP/6+vj//Pz///Pv1v/ZwhX/4dJk//r7///6+vj/+fn5//j4+P/4+Pj/+Pj4//j4+P/5+fn/+vn2//r+ - ///44LD/86IG//OlDf/zpg7/86EA//bCX//6/f//+vn4//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r5 - 9//7/v//+N+v//OgAP/0pQz/86UN//KhAv/0tDf/99eZ//ny5P/7/v//+v39//r59v/6+vn/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vj/+vv//+PUaP/Zwhf/2sYl/9vFI//bxSP/28Uj/9vF - I//bxSP/28Yl/9rDGf/s5a7/+vn3//z9///n24P/2cEX//Lv2f/7/P//+vn3//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+P/7/P//+fDf//OqG//zowb/8qUO//KhA//0sSz/+vbw//r7/P/6+vn/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+ff/+/////bLef/znwD/86YR//OhAf/2xGT/+vr3//r////6+/3/+vn2//r4 - 9f/6/Pz/+vv7//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+/v6//j5+v/ezE7/2sIX/9rE - I//bxCD/28Qi/9vEIv/bxCL/3MQi/9vDHv/cxi7/9fLi//v7+//4+Pb/3cYx/+XXdf/8/f//+vr2//r6 - +f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//v6+v/1uUP/86AA//KlDv/ypAn/86UN//jn - xv/6/v//+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//v////20IX/8qAA//OlDf/zpAz/+OvN//v+ - ///69/D/+vn2//r6+//7////+vHh//r16f/7+/z/+vn4//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//v8 - /v/18+T/3cYw/9vCG//bwyD/28Mf/9vDH//bwx//28Mf/9zDI//awBP/4tFf//n6///7/f//8uvG/9zC - J//08Nv//Pz///r69//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r59//6////9sx6//Kf - AP/zpQ3/9KUN//OfAP/31ZH/+v////r59v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6/f//+OW///Oj - Bf/zpQ7/8qEB//bNe//7/v//+v79//v+///69/L/99me//SqG//2w2H/+v////r6+v/6+vn/+vr6//r6 - +v/6+vr/+vr6//n59//8/v//7eSw/9q+E//bwiD/28Ee/9vBHv/cwR3/3MEd/9zBHf/bwiD/2r4S/+7l - s//8/f///P7//+vfmf/hzVf/+/z///r69//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+ff/+v7///jgsf/yogb/86QM//SlDv/zoAD/9b9W//r9///6+vf/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vn/+vr5//r7/P/1vlT/8p4A//OmD//zpAr/9bxM//fPgf/2x23/9LIv//OhA//zowf/86ID//fU - jv/6/f//+vn4//r6+v/6+vr/+vr6//r6+v/6+vj/+vz//+TTbf/bvQ//3MEf/9zAHP/cwBz/3MAc/9zA - HP/cwR//278U/+DJRP/49/T/+vr7//z+///o14T/6+Cj//z+///6+fj/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr5//r8/v/58uP/9Kse//OjB//0pQ7/9KIE//SvKf/69en/+vv9//r6 - +P/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6+/3/+vXp//W5Q//zngD/86IF//OhAf/zoAD/86AA//Oi - Bf/zpAv/8qIE//KeAP/1vlT/+vn2//r6+v/6+vn/+vr6//r6+v/6+vj/+/z///Pw2//cwCL/3L8Z/9u/ - HP/bvxv/278b/9u/G//bvxv/3MAe/9u8D//u5K7//P7///r59//7+/7/59eH//Xx3f/7/P//+vr5//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vv9//W8S//zoAD/9KUO//Sk - C//zpAr/+ObD//r+///6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vn/+vn3//v8/f/69+//9s5///Sv - KP/zpAj/86IF//OhAv/yogT/86YP//W2Pv/32Z3/+vn3//v7+//6+vn/+vr6//r6+v/6+vr/+vn3//z9 - ///o2YT/27oL/9y/Hf/cvhr/3L4a/9y+Gv/cvhn/3L4d/9u7Df/iy1L/+fr7//r6+f/6+vr/+fj2//Lu - 2f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn2//v/ - ///2z4D/86AA//SlDv/0pQ7/8qAA//XTjf/7////+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+fj/+vv6//r////59Or/+OS+//jYnP/30ov/+N2o//nqzf/6+ff/+v////r6+//6+vn/+vr6//r6 - +v/6+vr/+vn4//v8///08Nz/3b8j/928Ff/dvRr/3b0Y/92+GP/dvRj/3b0Z/928Fv/cvRz/8+3R//z8 - ///6+ff/+vr6//r6+v/7+/3/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r59//6/v//+OK4//OiBf/0pAz/9KUO//OfAP/1wFj/+/3///r5+P/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vv9//r+///6////+/7///v////6/f//+vr6//r5 - 9//6+vn/+vr6//r6+v/6+vr/+vr6//r59//6/P//5M5h/9y4Cf/evBv/3bwX/928F//dvBf/3bwX/928 - Gv/buAj/6tuW//z9///6+fb/+vr6//r6+v/6+vr/+vr3//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vj/+vz///nx4P/0rCH/9KIG//SlDv/zogT/9K8p//r0 - 6v/6+/3/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vn2//r5 - 9v/7+ff/+vn3//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r59v/8/v//7N+g/9y4Cv/duxj/3boV/926 - Fv/duhb/3boW/967G//ctgX/5c9o//r7///6+vj/+vr4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r6+P/6/P7/9btJ//Og - AP/zpg3/86QK//OkC//458T/+v3///r5+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r59v/8/v//8uvN/927 - G//euRH/3roW/965Ff/euRX/3bkU/966Gf/ctgX/4cVE//j39P/7+/v/+vr5//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//r59//6+ff/+vn3//r5 - 9v/6+PP/+v7///bNfP/znwD/86UN//OlDf/zoAD/9tKL//v+///6+PP/+vn3//r59//6+ff/+vn3//r5 - 9//6+ff/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r4 - 9v/7/f//9fLj/9+/Mf/etgv/3rkV/964Ev/euBL/3rgS/965GP/etgf/4cI6//Xz5//7/P3/+vn4//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r+ - ///6////+v////r////7////+/78//v////56MT/8qQI//OkCv/zpQ3/8qAA//W+VP/7////+v/+//r/ - ///6////+v////r////6////+v7///r6+//6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//n59//8/f//9/Tq/+HCO//etAX/3rgV/923Ef/dtxH/3bcR/964Fv/dtAP/4L81//Xy - 4//8/f//+vn2//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r59//31I//9sx5//fOgP/3zX//981+//fOfP/3zoD/9slx//OoE//zowj/86QL//Oj - B//zqhv/9sx6//fOgP/3zX7/981///fNf//3zn//9sx7//fSjP/6+PT/+vr7//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr5//r59f/7/f//9fLn/+LCQP/dswP/37cU/962EP/ethD/3rYR/963 - FP/dsgH/48NF//Xy5P/7/f//+fn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r5+P/6/P//9bxM//KcAP/yoQP/8qAA//KgAP/yoQD/8qAA//Kh - Af/zpAz/86UN//OlDf/zpQ3/86QK//KgAP/yoAD/8qAA//KgAP/yoAD/8qAB//KfAP/zogj/+erO//r9 - ///6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//n59v/8////8+3S/+G+L//esgP/37YT/9+1 - D//ftQ//37US/9+1EP/dsAD/5clc//j38//7/P7/+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+fb/+v////fVk//ynAD/8qMG//Ki - A//yoQP/8qEE//KhBP/zoQP/8qAA//KhAP/yoQD/8qAA//KgAP/yogL/8qIC//KiAv/yogP/8qID//Ki - A//zowb/8p0A//fUkP/6////+vn3//r6+v/6+vr/+vr6//r6+v/6+vr/+vn3//v7+//6/v//7+Kz/+C3 - Hv/fsgT/37US/9+0Dv/ftA7/37US/9+zB//esgf/6dSB//r6+//7+/v/+vn2//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vn4//r9 - ///46s3/9btJ//W7S//1u0v/9btL//W7TP/1u0z/9btL//a7S//1u0v/9btL//W7S//1u0v/9btL//W7 - S//1u0v/9btL//W7S//1u0v/9rxN//W4Qv/40Yj/+vz///r5+f/6+vr/+vr6//r6+f/6+vf/+vn3//z+ - ///39/H/6dB4/96xBv/fsgj/37QQ/9+zDf/ftBD/4LMP/96vAP/huif/8OO1//v+///6+vj/+fr4//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vn/+vv7//r8/f/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8 - /P/6/Pz/+vz8//r8/P/6/Pz/+vz8//r8/P/6/Pz/+vz8//v7/P/7+/3/+vr7//r6+v/6+vr/+vr6//r6 - 9//6+ff/+/39//r9///w5b//4r00/96tAP/fswz/37MO/9+yDf/gsw//37AE/96vA//myWH/9vLk//z+ - ///7+ff/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vr/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6 - +f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//n6+f/6+vn/+vr4//r6 - +f/6+fn/+vn3//r6+P/7/P3/+/3///Ps1f/myWL/37AJ/9+vAv/gsg7/37EN/+CyDv/gsQj/3q0A/+K8 - Mv/v4bD/+vz///v8/P/6+ff/+vr5//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr5//r7+v/7/P7/+vr3//r59v/6+fj/+vr5//r6 - +v/6+vr/+vr6//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vn/+vr5//r6+f/6+vr/+vr5//r6 - +f/6+vn/+vr4//r59v/6+fb/+vv8//z+///7/P//9O3U/+jNcf/fshL/36wA/+CwCv/gsQ7/4bEN/9+w - Bf/frAD/4LQX/+rTg//49/H/+/7///r6+P/6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r7+//59/L/9fDh//v9 - /f/8////+/z9//r6+P/6+ff/+vn4//r6+f/6+vn/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vn/+vn5//n59//6+vb/+vn3//v7/P/7/f//+/7///f18v/w4rj/58Zd/+CxEf/fqwD/4K8I/+Cx - EP/gsAz/4K4E/9+rAP/hsxn/6M51//Xv3//8/v//+/v7//r59//6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+Pj3/+jRhf/lwlT/7tyh//fz6f/6/f//+/7///z+///7/P7/+vr6//r6+f/6+vj/+vn4//r5 - 9//6+ff/+vn4//r6+f/6+vn/+/v7//v8/v/8/v//+/7///v9///39e//8ea9/+nOd//iuC7/4KwE/9+r - AP/grgj/4bAP/+GvB//grAD/36sA/+GzHf/qz3r/9fDf//v+///7/P3/+vn3//r6+f/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr5//v7+//6+vr/7NiX/+GyG//gsBL/58NQ/+3Zmf/y6Mf/9vLn//n5 - +v/6+/7/+fz///v9///7/v//+/3///r9///6+///+fr9//j39v/17+D/8uW9/+3Ylf/nxlz/47gs/+Ct - Bf/fqgD/4awC/+KwC//hrwn/4KwC/9+qAP/frwz/471H/+vYnv/18eX/+/7///v8/f/6+ff/+vr4//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vj/+vr6//z////49u7/7NWL/+Ky - Gf/epgD/36gC/+KyGP/kujb/5sJR/+fHY//pzHP/6c95/+rOdv/oym3/58VZ/+S+RP/juC//4bId/9+s - Bf/fqgD/4KoA/+GrAf/hrQb/4awD/+CpAP/gqQD/4K0G/+O4MP/ozXv/8ejO//j5/P/8/v//+/z9//r5 - 9//6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+fr5//r6 - +f/5+fb/+/z7//v+///39vH/7d2o/+bEVf/isRb/4KcA/9+kAP/fpAD/36UA/9+lAP/gpgD/4KcA/+Cn - AP/gqAD/4KkA/+GpAP/gqgD/4KkA/+CoAP/gqAD/4KsH/+GzIP/mwEr/7NSJ//Lnxf/49vP/+/7///z9 - ///7+vn/+vn2//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/5+ff/+/v8//v+///6/P//9vHn//Hitf/r04r/58RZ/+S8 - Pf/ktyv/4rEb/+GwGP/isBf/4rAW/+GxGv/itSn/47k2/+bBS//py3D/7dmZ//HlwP/38+n/+vv9//v/ - ///7/f//+/v8//r59//6+fj/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+ff/+vr4//v8 - /f/7/v//+/7///r9///4+fn/+PTs//Xv3v/179z/9u/b//bv2//18N//9/Ps//j49//6/P7//P7///v+ - ///7/v//+/v9//r6+f/6+ff/+vn4//r6+f/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/5+fj/+fn2//r59v/5+vj/+/r6//r7/P/7/f//+/3///v8///7/f//+/3///r8 - /P/6+/r/+vr4//r59//6+fb/+fn3//r6+P/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+f/6+vn/+vr4//r6 - +P/6+fj/+vn4//r5+f/6+vn/+vr5//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6 - +v/6+vr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.Designer.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.Designer.cs deleted file mode 100644 index b62e4d231889247926eab9b2ba4aaec84166c53b..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.Designer.cs +++ /dev/null @@ -1,175 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmAdminEnter - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAdminEnter)); - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - this.txtAccount = new Sunny.UI.UITextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.txtPassword = new Sunny.UI.UITextBox(); - this.label3 = new System.Windows.Forms.Label(); - this.uiToolTip1 = new Sunny.UI.UIToolTip(this.components); - this.btnCheckIn = new Sunny.UI.UIButton(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.SuspendLayout(); - // - // pictureBox1 - // - this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage"))); - this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox1.Location = new System.Drawing.Point(3, 38); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(579, 320); - this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.pictureBox1.TabIndex = 12; - this.pictureBox1.TabStop = false; - // - // txtAccount - // - this.txtAccount.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtAccount.FillColor = System.Drawing.Color.White; - this.txtAccount.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtAccount.Location = new System.Drawing.Point(243, 409); - this.txtAccount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtAccount.Maximum = 100D; - this.txtAccount.MaxLength = 20; - this.txtAccount.Minimum = 0D; - this.txtAccount.MinimumSize = new System.Drawing.Size(1, 1); - this.txtAccount.Name = "txtAccount"; - this.txtAccount.Padding = new System.Windows.Forms.Padding(5); - this.txtAccount.Radius = 20; - this.txtAccount.Size = new System.Drawing.Size(208, 35); - this.txtAccount.Style = Sunny.UI.UIStyle.Custom; - this.txtAccount.StyleCustomMode = true; - this.txtAccount.TabIndex = 106; - this.txtAccount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label1.Location = new System.Drawing.Point(136, 414); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(107, 25); - this.label1.TabIndex = 105; - this.label1.Text = "管理员账号"; - // - // txtPassword - // - this.txtPassword.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtPassword.FillColor = System.Drawing.Color.White; - this.txtPassword.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtPassword.Location = new System.Drawing.Point(243, 463); - this.txtPassword.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtPassword.Maximum = 2147483647D; - this.txtPassword.MaxLength = 20; - this.txtPassword.Minimum = -2147483648D; - this.txtPassword.MinimumSize = new System.Drawing.Size(1, 1); - this.txtPassword.Name = "txtPassword"; - this.txtPassword.Padding = new System.Windows.Forms.Padding(5); - this.txtPassword.PasswordChar = '*'; - this.txtPassword.Radius = 20; - this.txtPassword.Size = new System.Drawing.Size(208, 35); - this.txtPassword.Style = Sunny.UI.UIStyle.Custom; - this.txtPassword.StyleCustomMode = true; - this.txtPassword.TabIndex = 108; - this.txtPassword.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(136, 468); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(107, 25); - this.label3.TabIndex = 107; - this.label3.Text = "管理员密码"; - // - // uiToolTip1 - // - this.uiToolTip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54))))); - this.uiToolTip1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(239)))), ((int)(((byte)(239))))); - this.uiToolTip1.OwnerDraw = true; - this.uiToolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info; - this.uiToolTip1.ToolTipTitle = "安全模式:"; - // - // btnCheckIn - // - this.btnCheckIn.Cursor = System.Windows.Forms.Cursors.Hand; - this.btnCheckIn.Font = new System.Drawing.Font("微软雅黑", 12F); - this.btnCheckIn.Location = new System.Drawing.Point(203, 525); - this.btnCheckIn.MinimumSize = new System.Drawing.Size(1, 1); - this.btnCheckIn.Name = "btnCheckIn"; - this.btnCheckIn.Radius = 20; - this.btnCheckIn.Size = new System.Drawing.Size(180, 35); - this.btnCheckIn.Style = Sunny.UI.UIStyle.Custom; - this.btnCheckIn.TabIndex = 112; - this.btnCheckIn.Text = "登 录"; - this.btnCheckIn.Click += new System.EventHandler(this.btnCheckIn_Click); - // - // FrmAdminEnter - // - this.AcceptButton = this.btnCheckIn; - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(586, 603); - this.Controls.Add(this.btnCheckIn); - this.Controls.Add(this.txtPassword); - this.Controls.Add(this.label3); - this.Controls.Add(this.txtAccount); - this.Controls.Add(this.label1); - this.Controls.Add(this.pictureBox1); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.IsForbidAltF4 = true; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmAdminEnter"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "超级管理员安全系统"; - this.Load += new System.EventHandler(this.FrmAdminEnter_Load); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.PictureBox pictureBox1; - private Sunny.UI.UITextBox txtAccount; - private System.Windows.Forms.Label label1; - private Sunny.UI.UITextBox txtPassword; - private System.Windows.Forms.Label label3; - private Sunny.UI.UIToolTip uiToolTip1; - private Sunny.UI.UIButton btnCheckIn; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.cs deleted file mode 100644 index 43abc7c5efa1484a57cd8c3eb4502cb0df4601f9..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.cs +++ /dev/null @@ -1,130 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using jvncorelib.EncryptorLib; -using Sunny.UI; -using System.Text.RegularExpressions; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmAdminEnter : UIForm - { - private FrmLogin returnForm1 = null; - public FrmAdminEnter(FrmLogin F1) - { - InitializeComponent(); - this.returnForm1 = F1; - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void btnCheckIn_Click(object sender, EventArgs e) - { - string account = txtAccount.Text.Trim();//获取超管账号 - string pass = txtPassword.Text.Trim();//获取超管密码 - if (!CheckInputString(account, pass)) - { - UIMessageDialog.ShowErrorDialog(this, "错误提示", "账号或密码包含除字母数字外的字符,请检查!", UIStyle.Red); - return; - } - - Admin admin = new Admin() { AdminAccount = account, AdminPassword = new EncryptLib().Encryption(pass, EncryptionLevel.Enhanced) }; - result = HttpHelper.Request("Admin/SelectManagerByPass", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("SelectMangerByPass+接口服务异常,请提交issue"); - return; - } - Admin a = HttpHelper.JsonToModel(result.message); - if (a != null)//判断超管是否存在 - { - //判断当前管理员是否被禁用 - if (a.DeleteMk == 1) - { - UIMessageBox.ShowError("当前管理员已被禁用,请联系超级管理员进行解除!"); - return; - } - AdminInfo.Type = a.AdminType; - AdminInfo.Name = a.AdminName; - AdminInfo.Account = a.AdminAccount; - AdminInfo.isAdmin = a.IsAdmin == 0 ? false : true; - AdminInfo.SoftwareVersion = ApplicationUtil.GetApplicationVersion().ToString(); - AdminInfo.UserToken = a.user_token; - #region 获取添加操作日志所需的信息 - RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "版本登入了后台管理系统!", 3); - #endregion - FrmBackgroundSystem fm = new FrmBackgroundSystem(this); - this.Hide();//隐藏登录窗体 - fm.ShowDialog(this);//打开主窗体 - - } - else - { - UIMessageDialog.ShowErrorDialog(this, "错误提示", "账号或密码有误,请检查!", UIStyle.Red); - return; - } - } - - private void FrmAdminEnter_Load(object sender, EventArgs e) - { - this.Owner.Hide(); - txtAccount.Text = "admin"; - txtPassword.Text = "admin"; - } - - /// - /// 检查输入的字符是否包含非法字符 - /// - /// - /// - /// - public bool CheckInputString(string adminaccount, string adminpassword) - { - if (string.IsNullOrWhiteSpace(adminaccount)) - { - return false; - } - - if (string.IsNullOrWhiteSpace(adminpassword)) - { - return false; - } - - if (!string.IsNullOrWhiteSpace(adminaccount) && !string.IsNullOrWhiteSpace(adminpassword)) - { - string pattern = @"^[A-Za-z0-9]+$"; - Regex regex = new Regex(pattern); - if (!regex.IsMatch(adminaccount) || !regex.IsMatch(adminpassword)) - { - return false; - } - } - return true; - } - - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.resx b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.resx deleted file mode 100644 index 50dd6f6d0c0d45f4f4062fcc891dc478bcf4c1fe..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.resx +++ /dev/null @@ -1,1767 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - iVBORw0KGgoAAAANSUhEUgAABLgAAAKmCAYAAABOqSeHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL - DwAACw8BkvkDpQAA/7JJREFUeF7s3Qd8E9ee93/ZphNI74ViSO+9995Dc8fdpqUnN733gA2kkApJIIHQ - Qye5uVueZ/9399ndu7t3+40bxbZkW12WIY3v//zOSERRBhgXaWTzfd3Xe2UmuGhmZEafPeeMo2jVDupl - SlZHfLXTUbxqp34sWr3TUaj+W6H68+SV6lGJ/n3955iPY4xR3lJ/t1WBtiLyuMp4LFB/zloext1L2nHr - Z+248ZMgrl0QxJUfB3Dxh35c9IHyvh9nv+vDaXO9OO0tL043ccbbSuTjU+Z6cMqcCPk41hzPzpPneLed - ONvzj5nVno2jqjxfjZrl2TByludr9fgHte1vx1R7/o8N/q88jq72/GH0LM/vM6s8/3DybE/LqepnFr95 - HvugnqP/pDne/x072/tH9XX/JsLs+9rp72LIz/n3RERERD3oj5Fru/9vzGzPf6rrP/fJs70/n6SuEU9W - 5NEK+btyXTm22tOsrhf/P3WtFr1mlO/xD5FHIko+eQ/1V8o6Zbmy0ox6va5SFmdWu2ePqXY/q9yvFCnX - Zs72nDK62pupHDmm2jdwTLXXoT7nF1XyKNt8DvU1HOp9mvbLNq+xvdodIR//+s+jq7ya8flqW+RrZM5S - /+0N9d/ELEX+bieNVF9n0lL13lu9Ty9YuXfGe/SdjvyV3zsKVqg/r1B/Vo952vfq4w71Pj8c+36e4uyO - INR79EDgOkb9+SH15/8qXr0DJat3Qm1DzrIOjF8Sxp2ft+PWhSEjZs0P4godswI4710/znrbp0PVqcqJ - ciExW19MYORMN459o007zkR0+wlvCvdejZjl0UZVeaB+yeivH6V+idlOfg71Cw8j1HM2+/ktUZ87cpZb - Pz+z70FERES0PxmlyPWf6XWTJW3GtZW6Rkul60Yi2jd5T2Rwqz+7f1TalL8omzJne97LrPZWK88qRWOq - vTeozzlPOVk5ekyVZ5jalsHARWJ3BKHeoxuB6wD1OGnyqh1/XRAZnZWv5C7fgQlfhnHrohCunh/Ahe/5 - dcQ6abYRckZLaIqq9u7+BaR/GaltsY/6472I/h0rOvv3ky7mOXdadz6XiIiIqI/pkes+Xl8R9QW7lJ+U - H5SwElT8ildxKduU/1FkZNhc9bqfPKbae86Yat+B6vdImnpfysC1H9sdQaj36ELgOkA95pWs3rmu7Kud - ockrOzBuSTtuWxTSI7Qu+cCPC97z6WmGMoXw5EjYGlXl1qOU5P8bNkqoP8uoqtjgpX6p7L4g4f+3jIiI - iIiIiJLEo/xJWaO8q96XPq7eo05QzhhT7T2QgWv/86twQr1DJwLXgcWrduSpj/+Qv7xjR9bSDj1SS8LW - lR8bUUvWzBpd5dZTDHXEigztVi9us18gRERERERERKlARnsJ/Wf1HvZH9V62TfliTLW3RDkrs9p7mNo+ - gIFr//CbeEKpz0LgOqJ45Y4y9Xf+tmT1zh0yDfGuz8O48uMgzpXF4GUNrbleWehcr6GlXsi7o5aI/oIg - IiIiIiIi6mXalP9W/q96f7sos9pdpoxQ0nTE0hi4+iLTgEKpbS+BK61k9c5by7/6/tvilTt3ZC0N4/ZF - 7Xoa4sUfBHD62z6oF5mecji6miO1iIiIiIiIqO+S97uZ1e7vlDeUO9SfRytDGLj6JtOAQqltD4GrX9Hq - HSUlq3fWF67aiQlLOnDtgiDOfseHk9SLeuzsmNFaEWa/AIiIiIiIiIj6CJnC+KMiC9XXqffBS5WczGr3 - sUqG+piBqw8xDSiU2kwC1+CyNTufUP+tbdLSdtz0aQgXve/HmW/7MLbai9GzZMF4z+5F4YmIiIiIiIj2 - Qx3KH5XXlGszqz2HMHD1HaYBhVJbbOAqXb3zmJJVOz7KX7Fj5z1ftOPKjwM6bKkXp77bocQt/cjARURE - RERERCTCyu/V++bK0VXekUo6A1fvZxpQKLVFA1fpVzvPK1m98+vcZR24ZaExauuUt3xQLz6MklFbkbgV - 90ImIiIiIiIi2p/9rEjk+u/MKu87o6u8V46udg9l4OrdTAMKpTYdt1bvOL9o1c5/nbg0jBs/CeG8eX6c - ONuDkVVujJwZM2rL/MVMRERERERERNUer7JcvXfOzqzyHKNkMHD1TqYBhVJbyaodJ6mT+2/GLQ7j6vkB - nPWOMSVR7o44SlEvRLMXLRERERERERH91g/KnzKrPM8qZyn9Gbh6H0fR6g7qRUpW7zhYnejL7vy8HVd8 - GMDpb/kwpkpGbhkLyasXkdmLlYiIiIiIiIj2bKeyTXk7s9pzVuYsTzoDV+9iGlEoNRWv7shQB+2lOz8P - /Xzx+36cOsejF5GXkVtcRJ6IiIiIiIio21ozqz3zMmd5zhv9hrc/A1fvYbqRUk/hqh3qpO84984vQvWX - fODHSbPdGKnjFtfZIiIiIiIiIuohP6v32IHMKs+i0W96rhj9hncQA1fv4MhXO41SnzpYA+5ZEn7+kg/9 - /pP0YvKckkhERERERESUIKHMKvfKzFmeSzOrPOnx8cqKUQoDV/KoHbWDUpwErglLOm674sNgzSlzvD+P - nOnWcYtTEomIiIiIiIgSI7Pa/ZN63/25cs7oak/GqCqvw+Dbp+Pe9DpuWRh2FK/+3jRoxTMiDQNXdzhy - lndQisqOPE5c2nHAtfODS0+b48XYSNjitEQiIiIiIiKihNql3n8Hlfmjqz1jOxu4blvEwJVMjpsWtlOK - untx2DFuSdhx02ehcWe97duaOYtTEomIiIiIiIiSzKU8OrrKeyQDV+pyXPZRkFLU7Z+HHTd+Gjrm3Hd8 - 68dWe3bJnRIZuIiIiIiIiIiS6mfl30dXeQtGVXmHmgWteBK4bl0YdpR8ZTlwpTFwdY/j6gUhSjFXzQ9q - N6sXwwXzAlljq70tErc4LZGIiIiIiIjIFjszq7yLR1d5zx5V5UtX788dmVX7ducXHVYXmZfAlcbA1XWO - M9/yUQo5Qzl3nt9x4ft+x1nv+i4+aY5346hZnrB6YZi9wIiIiIiIiIgoCTKrvC1KdWa1Z5SVwDVaOXG2 - 19I0RSPS6BFc6QUrdqZPXrFDYeDqDMfBz7dSCjnouVbH0a+2OUbMah18QlVblYzcMnthEREREREREVHS - tY2Z7S4ZU+0eYha1zFz/SchRso/IJYFGHiMjuNImr9iRMXnFzkF5K3YOzFvxvfozA9e+OA5/sY1SyGEv - tEngGjCyqu26kVXuv+OaW0REREREREQp48cxs93vjql2jx090zxoxRo9y+MY8aZbR66ivUQuCTTyKIFL - Rm4VGlMU++cs/2FIzvIfjyhY3jGmcGX4GPX3+sdGHfqF4/g33JRCjn3V4zjhDfdpY+d4lo6Z7QmYvJiI - iIiIiIiIyB4SuP48pto9ZfRMz0FmUSueRK7j33Q77vqiY48juSTQyGNc4HLkLP/RMWnZzwPzl3ecUbgy - fKf6e1nK5cog+Rz6hWlkIfuMftOTNnqmNz/TuA2p2YuJiIiIiIiIiOwy2/ODevyr0TM9V2RWeTLig5aZ - kTM9jss+Cu5xPS4JNPK4h8CltnekT14VHlawasdV6u9WKddFww4ZHCPUTqbUkTnLc5h6ocxSftr94iEi - IiIiIiKiVOIaU+V5SD3Ke3jHmGrvXo1VRszyOC79MOgoWt2lwOWYvCrsyFv1fb+c5T+dkrv8h7Pyl3+f - oTjIoFf1p5QxJLPak6VeHP+f8rNi9iIiIiIiIiIiInuFldXKFUo/s6hlRga2mI3k6kTgcmQt/9mRtezn - jNzlP6YrDjI4Mme7KRVUayMzqz3L1ItDhjvuUsxeRERERERERERkM/X+fXtmtfcR5bAx1T6HFaNm+Rxn - vO13FKz83lG0qluByzTy7M/MYwslX7U7TblGvUD+0+yFQ0RERERERESpQ71//yGz2rtYOUMHrCqvJbIe - 19nv+B2TV+10FK4yRnIxcHWfeWyh5Kt2H6JMUy+SuvgXDRERERERERGlnB/HVHv/QblL6Z85S6+rbckJ - b7h15MpbsVOHLgau7nOMnukhu83y9Muscp+VWe2er14gnrgXDBERERERERGlHlk7u1l5InOW55j4iLUv - ErkmfLmDgauHOEa/6SH7Dc2schdlVrv/V70wZP0tsxcOEREREREREaUWeQ+/PnOW+8bMmZ4BisMqGfBy - 2hyfo2j19wxcPcCR+YaX7Hf4mFmeuepF8X3Mi4SIiIiIiIiIUppbNGbOdD+WOdN7qOKwarQyZpbXcdcX - HY7Sr4zF5hm4us5sNBElWeZMz8ljqjzLzV8sRERERERERJTCOsZUeednzvKdoDg6Y9SbErp8jrs/DztK - vvqegasbZP0nsteAzCrPLeoF8VdxLxAiIiIiIiIiSn3fj6n2bsys8p1tFrH2ZdRMn45cd36xw1G46gcG - ri4yv6MfJdORmdXuh9UL4n/iXiBERERERERElPpksfl/GlPtvVMZqDg6a3SV15GpHnOWf+8oXMnA1RVm - wYWSpdqdppypLFEvho6YFwcRERERERER9R7bxlR7nxpT5T1ecXTF6Flexw2ftjtKV3/PwNUFelEzskfm - LE8/5ebMas+/m7w4iIiIiIiIiKh3aM+s8ixX7/Evj7zXl/f8nTbiTbfj+gUhR/HKnQxcneQYLQuakT3e - 8A4ePctblDnb4zR5cRARERERERFR7/BzZpXn3zJnefKUgbHRqjMkcJ35ls9RsoqBq7NMRxZRkrzhPXD0 - LO8jmbM9XpMXBxERERERERH1EplVHlfmLM8j6nGw4ugqiVzXzQ86Ktd8r8MNA5c1jjHVPrJJ5izvEcpz - Y2Z7fGYvDiIiIiIiIiLqFXaNqfIElRfHVHsPiF1AvrNGzfI6Lnwv4LhtYdiRu+InBi6LHGNm+8geaerE - HaO8rV4IgbgXBhERERERERH1HruUsDJXvc8/wmyQi1VjldFVPsfxM72Oiz9od+Ss2MXAZYFjzGwP2cI7 - QLlSWR15EZi9QIiIiIiIiIgo9Ung2ql8Nqbae9Loaq9jdLWn246f5XZc/GHIUbRqBwPXPpiEF0qSg5Q8 - 5R/VC+CHyAuCiIiIiIiIiHqfn5WflDWZ1Z5LR1d7MuJjVVeMqHI7Tn3L5yhY0eEoWs3AtTcOtfPJHocr - U5X/VuRFYPYCISIiIiIiIqLUJ4FLRnF9m1ntuUUZqDh6woiZbsc57/ocecvDjvzVDFx74hhT5SF7HK08 - rDSoFwADFxEREREREVHvJXFLHv+fep8/WTlQMWsBnTZWOe51t+OORSFH0RoGrj1xjKl2U/KlKScp7ygy - Rzf+hUFEREREREREvU+tep//gnK8YtYDuiSzyu047S2PI3vFTkc2A5cp0x1HCZeunK4sUsxeEERERERE - RETU+2xX7/OrlEzFrAd02chZbscdi8OOvJW7GLhMmO40SjgZwSWB61PF7AVBRERERERERL3PFvU+/01l - tGLWA7osM/J4y6Lv9Sgus8izP1M7x0PJ10+5UtmkmL0giIiIiIiIiKj3CShrlQsVsx7QLaOq2hxnvhNw - FKyEaeTZn5nuMEq4gco9yp8UsxcEEREREREREfVO9codilkP6Da5s+L1n4QdRat+cuSv+JEiTHcWJdxg - ZYLyL4rZi4GIiIiIiIiIeqcWRd7zm/WAbpO1uC5+P+iYtPQHxz2Lv6cI051FCSeBa5LCEVxERERERERE - fUubkrDAJTKrPI5Rs9yOUVUUZbqjKOEkcE1UGLiIiIiIiIiI+hYZwTVeMesBlCCmGynhGLiIiIiIiIiI - +iYGLhuYbqSEY+AiIiIiIiIi6psYuGxgupESjoGLiIiIiIiIqG9i4LKB6UZKOAYuIiIiIiIior6oytOq - TFAclDxm8YUSj4GLiIiIiIiIqC+q8rQpE2PjCyWeWXyhxGPgIiIiIiIiIuqLqjweJSs2vlDimcUXSjwG - LiIiIiIiIqK+qMrjVjiCK8nM4gslHgMXERERERERUV9U5WlRxsfGF0o8s/hCicfARURERERERNQ38S6K - NjDdSAnHwEVERERERETUNzFw2cB0IyUcAxcRERERERFR38TAZQPTjZRwDFxEREREREREfRMDlw1MN1LC - MXDtzWwiIiIiIiJKeWbv50gwcNnAdCMlHAPXXoxVvyjHziEiIiIiIqJUxsi1RwxcNjDdSAnHwEVERERE - RES9Umb0YwauPWHgsoHpRko4Bq49yJzlwYjX3DjuxYiXiYiIiIiIKJUc+2KbemzDyDfcGFPlwYmcshiP - gcsGphsp4Ri44kSHuI6e6cHhT7Vi8PQWDJnRggPudxEREREREVGKGHqfC4OmOzH8AReOerYNo2d5cNLb - Xr3UjNl7vf0UA5cNTDdSwjFwxYkGrlFvenDgQy1w5DbDkdeMtEIiIiIiIiJKCUXqfdpkJbcJ/Yqbccij - rXqQwinvMnDFYeCygelGSjgGrjgnzlWigeuBFqRlN8EhCtQvTyIiIiIiIrKfxK18JasJ/QqbcfAjLRgV - DVzq/ZzZe739FAOXDUw3UsIxcMWRuLU7cD3YgrScSOCSX6BERERERERkv0IlNnA92oJRsxi4TDBw2cB0 - IyUcA1ecXwWuh1qQltukh73qX6BERERERERkv+gUxRxjiuLBv2Pg2gMGLhuYbqSEY+CKw8BFRERERESU - 4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelGSjgG - rjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcREREREREKY6B - yyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrD - wEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi - 4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44DFxE - REREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsqBi4b - mG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BFRERE - RESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelG - SjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcRERERERE - KY6ByyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj - 4IrDwEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIY - uKxi4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BFRERERESU4hi4rGLgsoHpRko4Bq44 - DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCygelGSjgGrjgMXERERERERCmOgcsq - Bi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcREREREREKY6ByyoGLhuYbqSEY+CKw8BF - RERERESU4hi4rGLgsoHpRko4Bq44DFxEREREREQpjoHLKgYuG5hupIRj4IrDwEVERERERJTiGLisYuCy - gelGSjgGrjgMXERERERERCmOgcsqBi4bmG6khGPgisPARURERERElOIYuKxi4LKB6UZKOAauOAxcRERk - K7lg70vMniMREVF3yb8xDFxWMHDZwHQjJRwDVxwGLiIiShq5MI+3t//Wm+zpeUS3ExERdQcDl1UMXDYw - 3UgJx8AVh4GLiIhMxY5Ksko+Ty6+C0zkR/59iacu1B3ZSlYvJ89Bnkv888tT5Lmb7ZNoADPbl2Zijw8R - Ee1f5N8BBi4rGLhsYLqREo6BKw4DFxHRfkoukvdE4kv+PuTtQ/zfL2hCmnqMl65kKP3V9+3N+ql9lq6e - Y7p6/PVzjAQus/0if86NPMaL/XuxYuNYPLPjTEREfQMDl1UMXDYw3UgJx8AVh4GLiGg/ER0BJBfH0UgS - TwKKjDgSMhopTlqEjFZKm9T4W9mNSFefm6G+V4a6+NaPkY8HljsxdKoLw6cZhqmPh6nHg+914YgHW3D0 - Iy04phc69lHDkQ+34JD7XThoRuT5RZ7jAZVODCpzop/sB7X/d+8T9XFartpnWXH7MH5EWMy+/83IsPjj - F41c6utzxBcRUR8jv9cZuKxg4LKB6UZKOAauOAxcRER9iI5U6ne4HjEUQ36vxwYS2Rb/9+RjdeGcrr5O - urqI7l/UhIElzRhU6txtYMTgMicOKFcqDMMiDpzqxGH3S/hpxXGPteKY3xmOf7wVmc+04eQXPTjzVcPp - LxvOecODS+Z4ccU7Plw1T3m3d7n6PcOlb/lw3kwvznrdgzNeiVDP75QX3fq5H6/2x9GPGvvjWOXoh1t1 - 3Bs25Zf9J2R/DlH7N3a/R/f9AHU8MtRxSS9sQlpBzPGLHksRPdbR4x09vtG/FxvCiIio92DgsoqBywam - GynhGLjiMHAREfUNaXLRGw1ceU1Ii5ApgGl5zUjPUdRjhvp7/UtkRFUzBlc0Y5B6HFimPq5sxrDpLhx6 - fwsOkxFVj7Zg5JNGmIoa/bThlJc8OPsNL85503B2xPmzvLh0jhF+rpnnw9USgJRrP/Dhxo/8uO2TAO5e - FNTu/Mww7osgcpaFkL+qHQVftSN/de8iP7PIWdGO8UtCxnNbGMRdEbd9GtDP/dr3fLjyHWN/XKPIxxfN - Vvtv5i/7T0ggO1Xt37HP/bLfxzzbhlFqv0soPOoR4/gcdK9LHT+nPnaD5DgqA0uN45ueG6HOBTn2eqqk - nvbIwEVE1GsxcFnFwGUD042UcAxccRi4iIh6vzR10Ssjr/oXO9G/JBI9dMByYkiljBJyYfhUFw6c7sJh - D7hwrLooHvFUGzKfNYLVKPXxmGfdOO1lN85V/x5cWOXBZW/5cN0Hftw8349bFhhu+tgwbnEQBavbMXmN - IRp5JiuFQm0rWvtrxVHrDL/6b+vCKFHberewfh7R5xZ9vrEfx+8X2V/RfReVvyqECV8Gcftnv+z7Wz/x - 60gmI9wum2uExDNe9ej4NeIJdQwlPqpjecITrfr4HjzDhYPUsT5gihx/gwRNOTdkumhakRNpcecQERGl - OAYuqxi4bGC6kRKOgSsOAxcRUS+nLnYzSpp1zJC1rE543Bj1c+ILbXok0JmvSRDx4dK5Plwho4fe9+GG - j/y4eUEAt35iuGW+8XjnwgDGLw5i4pdBZC2XEUphFH4VRtHakDb5K0P5xjCm/34HZnxrkI/FNGXq1x2Y - 8nUYlYo8Rj+u3BTWn1cWp3S9EYZiw09vJIFLnkvZhl8/P3nO8tyj+yK6P6Yq0775Zd/9okP//dJ1IbXv - jf1eHNn3OStDyFoWwkQ9UkwdM3UMb/74l+Mo8fEamTI5Tx3rt304900vznjFjdOVk1906xFgB9/XggHl - Th1FTc8nIiJKTQxcVjFw2cB0IyXcEGWSwsAVwcBFRNRLyUWuKGhG/7JmPaXwrDc8emqghA6ZGifT5SYt - CaFgZTvK1scEls1GdKnYGKsD5SISaHR4UkrWxoyukpAjQWeNMRpJj9aKoUd0RT+O3b4X8nXMtvc2+rnu - 5blE90V0f+hHk/0o+1ZGe+3e3+px959lpJs6JnJs5Djp4xZzHOWYyrGd+nv1Z/WYuzKE8YsDGPe5nAsB - Hb5OfL4Nw6ZHAhenKxIR9R4MXFYxcNnAdCMlXLpyu/KPitmLYb/DwEVE1EvFBC65Q6Gs03TDh37krpJo - EsZkPfLKCCOl69uNACJhS5EoIiOLJJJo6mM98kiRvyvk8+JHKUVJiJEpip0VH332B3rqocm+2JPo58VO - Z4x+rKc6quNSEjlG+hjGHEc5rvoYR0aJlW745fOmqP+Wt7IdF1Z7cdgDLfpOjvqumRK5zM4vIiJKLQxc - VjFw2cB0IyXFFcrfKGYvhv0OAxcRUS8VDVz5st6WC6e84MYdnwX06KvKrzv0KB89+keRQGIWU/YmNtJQ - arEUzdTficYtiWH3/VWHDphXvuvDkQ8zcBER9ToMXFYxcNnAdCMlxQXKN4rZi2G/w8BFRNRLRQOXHsHl - wonPuvVaWhKzZBqbnvoWYRZJqO/bfQ6sbcfUb2RUXzsumevFEerfewYuIqJehoHLKgYuG5hupKQ4Q1mv - mL0Y9jsMXEREvVRc4BrztBs3fhjQEUMWbY8NHbSfW9Ou117LX92Oi6JTFOUcyjPOH9Pzi4iIUgsDl1UM - XDYw3UhJcZyyWDF7Mex3GLiIiHqpmMA1qMKFU5736LvqSdBg4KJYMopL1uaSaYuXv+XDUY+0oh9HcBER - 9S4MXFYxcNnAdCMlxcHKAsXsxbDfYeAiIuqlInFLIsUB01y4YKYXE5eEdNCQtZfiIwftv+SmALIYvYSu - Gz/yY8wzbRhU4VTnj/r3Pk+Rc8nsHCMiotTBwGUVA5cNTDdSUjBwxWDgIiLqpaKBK68Zw6e7cNlcH3JX - GIGL625RLDkf5C6L8nj7JwGc8qIbQ6cycBER9SoMXFYxcNnAdCMlBQNXDAYuIqJeKiZwDZvuwqVzfMhZ - zsBFvxUbuGQa60nPuzFkCgMXEVGvwsBlFQOXDUw3UlIwcMVg4CIi6qXiAtdlc/3IWWHEjN4UuGRdqF9Z - naJifkaz55HK5Hwo2xBGkXq847MgTn3Jg2FTXUjLj/ybz8BFRJT6GLisYuCygelGSgoGrhgMXEREvVRM - 4Bo+owVXzwtg8urUC1zxYSj68wkJLsXrYoVRItannl//nL9+HlGxzzd2H9hNfrZSCVxr2zHuiyDOft2D - g6YzcBER9SoMXFYxcNnAdCMlBQNXDAYuIqJeKhq4cptxyL2tuGVBABWRhcRlUXGz0JEoMsLpN9tNtsnP - JRErqnR9GGUbOgwbO1CuHis37UDl5h2Y8nVHSqj8egcq1M+0++dUStZ3oFhHr18UrTX2ffxz/pXIaDDT - /5Zg0Z8za2kIF8zyqnPGhXQJXOqNkj6f5I1T/DlGRESpg4HLKgYuG5hupKRg4IrBwEVE1EvFjOA6/IEW - 3L0oiGnfdOjI0t0RRL+amhcTZWQEkIScKAkmEqkkTFVsUjb/QuLQVPXzTPv9Dm3qNzv03yuWz11jfP7k - r0LIXRlCzvIgclcEkb0siAmLg7j78wDuWuRLCfcsDmDCl0FkqZ8tW/2cWfpnjdytUj2PwgjZD1PUc5z2 - +52YrsjHU9R+qIzZJ7KPZKqg/F0ZqRa7L4Ue/RW/7yPHpLvkvJDvOXl1CJe/7cUR6pxJl/W3shi4iIh6 - BQYuqxi4bGC6kZKCgSsGAxcRUS8VCVxp6uNj1EXuuMU9E7j0CDAlGl0kSGnrjKl5egphhPFnZX2HjjYy - qil2Wl/pepkap/5bZNRT7vIQ7lrox52fGW6a78XV77lxxdttuPKdNlw2txXnvtGC015y4qTnm3FyCjj9 - FSfOf7MFl85pw+VvteFS5Zp5btyqfnZ5Dnd8api4JIjCteq5btyBMiW6T3TM2r0/Ih/LPlsbvy/V/pbH - yP6Wfa/jmfp7+piYHKvOku9fsbEDN3wYwNEPt6AfAxcRUe/BwGUVA5cNTDdSUjBwxWDgIiLqhaKjt9Tj - gDInRj/dhvGLQ3rUlMQQs7hhhXyuBJjyTWFU6il6xugrUbnZiDOybpYolNFXK0I67Ny1MIBbF/hw00de - 3Kjc8KEX18zz4PK323DpXGVOGy5RznvThVNfdOIURR7HPNOEEx5vxHGPNuL43zXi2Ecacdh92zF86hYM - q0wBU7bgoGlbcPh9W3HMw8bPeawyQv3MJz7XZDyXF9RzUc5+zYULq+S5unHZWxLtPLj2PQ9u+MDYJ0L2 - 0d2LApi0NKhHrul9LlYbi8AbI8CUb40Rb5WREV8Sw7obuPJXGYFrmvq6t30awPGPtaKfnEMMXEREvQMD - l1UMXDYw3UhJwcAVg4GLiKgXio7eUhe7w6c7cdrLbkz8MqSDSHcClyjUI4dkFFgI+atCyFsZQvaKEMYv - DuD2T724+SODBJur3nXrqHPGK06c9GwTMp9qwqgnmzDi8SYc89B2HHbvFhwyVZlmOLCyAUPL6ncbXFqP - AcX16F+oHovUo5I+uU49NyUvBeTXIU3JKKjVP6P8fGKg+pmHyHMo/+W5DFfP7aAp6nkKHcW26X0gMUz2 - iTjxOSfOfrUFF89uxdVq313/odeIgurx9s/8mPBlADlqX+eq/S77vmB1SIctHRS7eVyjgWvGtztw9xdB - jHm2FQNL1L/3sgaXnE9m5xkREaUOBi6rGLhsYLqRkoKBKwYDFxFRLyQXuEp6iROHq9/dF6gL3OzlIZTL - IvMmcWNvJJxoq9uRs6Id4xYHcPMCL66RqYNvteHCqlac83oLTnvRibHPNGL0k02aBJvjf7cdRzywDQdO - 24Ih5fUYVGrEH4lV/QrqkJ5dg/RJSlbUd0hTj1GO7Fr1b06MPCU/Ij422SE/Qn6u2J8zpxZpIua5yHNN - k+cafb45NchQ+6C/2h+yTwaW1GNIxRYcMmMrjnxwO457dDtGPmHsx5HK2GecOF3t43PfcOHCWS24bE4r - rnnXjds+8WHil0HkrfolcnVlNJcELpkKOe2bsF5T7MxX3Thgmks9P/Vvfn7knDI714iIKDUwcFnFwGUD - 042UFAxcMRi4iIh6IZlapvQvdWLEk6245j2/Hmkla151Nn7sXuB8dbueanjZXDdOfrEZxz22HUc9tA0H - T9+KYRUNGFJSj8GFdRhY9IsBk2V0k4xykiAVQ0egGjgkYonsCNmWI/8tIld9bl6MyIipNPmaqUR+ptif - U5Gf/VfPRT+3CHmuuUJtl78bs2/S1dfS4UvtuwEx+3JQYT2GFNdjWHkDDp62BYfdtxXHPrJNT4OUkXLj - Fwf12mrRRe3NjuXeyPGVwFW5Kaxj6MWzvThC/bufLueTrMUloSv+PCMiotTBwGUVA5cNTDdSUjBwxWDg - IiLqhSKBa2CZE6e95NZ3UJSwVbzWPG7sjcQtWVtL1oS69n03xjzVhGGVDb+EK4k3E7+DY4Iij5Ni6HgV - +TsScKKjryLSJtchvXAf5O/0RmbPJU40kO3eJ7KPZF9JAJN9F7svZf+OVybKPpU4VoM09fdlWudJzzXr - tbxkzTNZjF4WoTc7lvsid32UNb3yV7fj+g/9eu22gWXqXJJ/9yVymZ1rRESUGhi4rGLgsoHpRkoKBq4Y - DFxERL2QnlbWhMEVTlw4y6vXaJLROV25e6J8nqzNlL0shItmt+LQGVuRLiOPJMBERh0JiV2/USB+CTm/ - YhaF9lO/3T+RfWeyT/X+Vv9NjwCbUIN+ObU44v5tuLi6VS9Or+/GuKGrgcuIoEXr2vU6XKe/2oYDpjiR - Jutwyb/98ubJ7HwjIiL7MXBZxcBlA9ONlBQMXDEYuIiIepHoOkl6zaQmDJ8m09d8mLLZuNuerLNkFjb2 - pnSD+tyNHcj6MoizX3fpdbR03JKpdrL+VDTUmIxQ2i0m5pAFZvswKvJ39IivSYo6FoNKG3D6S06MWxRQ - x0ructmhpxyaHc99kZF+Ffrzw7hotheHTHciTe6kKJGLgYuIKHUxcFnFwGUD042UFAxcMRi4iIh6Ebmw - lemJ+c3IKHXi6EdbcdPHfkz5ukOPwpKpZ2ZRY2/KJHBt6tALmZ/+YjP6yeihrFqOwLKZ7H8dubJrkV5Q - j9FPNOK2BV59I4HKzV0LXDLCTz5vytdhHTWvfT+Aox5sRXr0334GLiKi1MXAZRUDlw1MN1JSMHDFYOAi - IupFImtvyQXusOkunPKSWy8ML9GjZJ0RL8zCxt7IyC8ZFXTP4gBOfrYZGVm1eh2o2NFEZBN1DGQEV7o6 - Hkfftw3Xvu/Rx2rq1x362HX2eOvApVRuDqtzph23LvBj9FOt6K/eKOk1uKIjBImIKPUwcFnFwGUD042U - FAxcMRi4iIh6EYlbec1IUx8f+XALLnvLp9fOknWZirqwwLyQkV9yV76b5/sw+vFGZEyqYeBKFZHAlTbh - OxxcuRXnz2pF1vKgjlyynlahYnZM9yQ6gks+v2xDu74z4zlvuHHQvS71/dS5laswchERpSYGLqsYuGxg - upGSgoErBgMXEVEvUmD8ju5X1ISRT7bhtk8COmzJouFFcTFjX+SOenIHRSGLl186tw1HPbAVabL2lkyL - Y+BKCQ5Z8F8dj8FlWzD2mWbc8KEHBatDeqH5YnXcu3JjAX3nTLkpwep29fV8GP1MKwaWqPNL1uKSiMqp - ikREqYeByyoGLhuYbqSkYOCKwcBFRNSLyN0T1e/oASVNOPUlN/JWhvT6W2YRY18kcsjoLfn4jk99OP1l - F4ZN2WLcMTG31jS2UPJF76wowfHIB7fh4tmtyFoWQvnmjt2RKv7Y7otEMbmbYuWmsPpaQZyjrgGGlqvz - a0KjXt+NgYuIKAUxcFnFwGUD042UFAxcMRi4iIh6Cb24fBMy1MeH3u/EpXO9KFsfxrRvjAXHOxs6itfK - OkzGwvTXve/Bcb/bjn4yJU4CVz4DV6pIm1xrLDafU4thFQ047SWXnlooYVOmpnYlcMndNmWK4/Rvwjp0 - Xf2eH0c+6EJ6biRwcZoiEVHqYeCyioHLBqYbKSkYuGIwcBER9QJyQZvXhLSCZgyb6sKpL7Xh9s8COnDI - ekpmEWNv9Aiedcbd+PJWhXDZ3FYcNH0LHNk1SMuvU9/HPLaQPeR4OCbVYIB6HPlYI277xI8p6tjJDQK6 - EriETG2VwCmPt33mx8kvuTG00qWOv7oGkAXnzc5DIiKyDwOXVQxcNjDdSEnBwBWDgYuIqBeIXNCmFzTj - 8AdbcNU8PyZ/ZazB1JXF5SVwlaxvR8WmDmQtD+H8N1swtKwBjgnfqe9Rx/W3UowOXHI3xbxaHH7/Nlw2 - tw35K4P6GOrjv6Zra3HJ+SORNHdlCFe+68PRj7YiXa4BshqNN1KcqkhElDoYuKxi4LKB6UZKCgauGAxc - REQpTi5mZXqiuqAdWOLEqKdbcdeiEKZs2mEsMt7FETwygkvixl2fB3HGSy4MKapn4EpRaYosNp+WV4eh - lQ04+flm3LrAp+NWhYzg62LgErIOm4wEu1udB7Ku20B5AyWBy+xcJCIi+zBwWcXAZQPTjZQUDFwxGLiI - iFKcxK28ZqSrjw9/0IUL1O/unOUSuIzpZV0JXIVrZPRXWE9PvP4DLzKfasZAiSgTa4yowsCVcvTU0fxa - ZKiPj3pwGy6f26YXmZ/x7U51PLseOqPTXHNWhvS6bkeocyxDn3PqWkAeOYqLiCg1MHBZxcBlA9ONlBQM - XDEYuIiIUlyuktOMoZVOnPaqW4+4it4Bsatho3SDMXpr/JIgLpjVqqe9pRfIQuYMXKlKj+KKLDY/tKIB - Z77iRM6KEKZ9s1MvGD+5y2txqXNhnRFL71gYwFmvu3HAFCcck+R6QJ17DFxERKmBgcsqBi4bmG6kpGDg - isHARUSUoqIXstlNyChowjHqQvbaD/wojoy4MYsV+yIxTKKYrL0lgeu2BT6MfaYZg0rq4cir0QHFLK5Q - apARXBK4+hfVYcTj23HjRx59PGU0no6dJsfcCglkpRuM8+Pm+X4c/1grMuRaQL2JMj03iYgo+Ri4rGLg - soFjrPo/ZAsGrhgMXEREKUguYvW6W41Iy2vEwTOcOE9dxE5cFkLF5rAegdWVkVsSQHTgUl9j8uoQrnzH - jSMf2KZ+99fCkVerRwmZhRVKDXqx+Vwlrw7Dp23Ro7jGLw6g8uudKNvY0eVpioVK6XqDjAq7ZLYXRzzg - Mhacz+aC80REKYGByyoGLhs4Mqs8ZA8duMaavxj2OwxcREQpKhIXDqhsxqkvu3HHooAeqSNxq3ht1wKX - Hu2z1lh3afwXAZz1qgvDK7foO/Sl5dVyamKK04FLR65a9Cuqw5EPbsO189yo2NyhdXWaopBzQ+7KKCME - xy8O4ryZbnVuqPNwUqNeA870HCUiouRh4LKKgcsGjhEz3WSPgzOrPAtONH8x7HcYuIiIUkh0lEwkbg1Q - fx71VCuu+8iP/NXt+m53EiLkrnlmkWJfiiSQbTTi2A0feDD6iSYMLK6HI8u4Qx8DV+r75Y6KxlpcZ7/m - QvbykJ5iqNfiMjnuVun1uNarc0w93vqpH5nPtmCAehPlyIpcG8jH8ecsERElBwOXVQxcNjDdSElxiLJg - zCy32Ythv8PARUSUIuTCtUj9/s1XJsm6W804+pFWXP6OF9krQnpReZlCJtMMu7LWknxO6YYOTNncgYlL - Azj3jVYcNG2LDiU6bhX8NqZQapI7KspURQmSxzyyHVe+04b8VSFUdOPOmlHF64ybEOSqc+7q930Y8UQL - Bsq5ma3OS7mzYvRcjT9/iYgosRi4rGLgsoHjrHf8ZA+Zojh/5Ew3Ms1fEPsVBi4iohRSYPwOTs9vxiEP - tODC2V5MWBrYHbdkrSSzKGFV2YYOlG/qwC0LfBj5RCMyJtcZo7fiAgqlNj1VMRK5BpfWY/RTjbh7oV/H - SwlUZse+M2Qaq4wGy17ejqvm+TDiyVYMKm02rhHUuWl67hIRUWIxcFnFwGUDx4UfBMgeB42d7f34+Dfa - MKbKg/19LS4GLiKiFCGjYyJTwQ6c4cLZr3tw96IgStYZUxMlOpjFCEvWtKNQpieu70DeynZcUt2GQ2ds - RVp2jV5/S09N5PTEXsVYcN4YfXfg9C248m03itVxlimGMhXV9DywaPdaberrZC8L4Zr3fDjhyVYMKFHn - qVwjyLkqb7LMzmMiIkoMBi6rGLhs4LjkwwDZ49Cxs72fHsfApTFwERHZTO6WKMFAXbDKyK3h01w441UP - 7pK4tTaM8o1GsNBrb5nECCtkNI7cObFwbTtu+tiHzKebMaikzghcOQxcvZUjv1Ydv1r0K6nH2GeacOt8 - r15HS0bqmZ0HnWEsOm/c1CB3ZTuufs8YyTW4zBmJXJFz1+ycJiKinsfAZRUDlw0cF73vJ3scN2a2Z+Xx - b7oZuBQGLiIim0ncym1EP3Xhesj9Lpz1qge3fxbUI2gkbsld7fSaW11cV0nWY5JANu2bDr0Y+Tmvt+gR - P7L2liPPGAlkFk8o9elRXHr9tFoMn7IFZ77agqwvgz0SuEQ0cslIrtyVxkiukU+0YXC5U31Pdd7KdMXo - SC6O6CIiSiwGLqsYuGxgFl4oOU4dM9vzLQOXgYGLiMgGcoEqi8kL9TtXLlSPfLgF58/y4p7Pg3qhcBk5 - o9dT6sbILVG4xrgznkxzvE3W3nq8Ef0L6+DIrtGLlfeZkVvqechaYrvXp8pTcmutkYX2o6Gvl41mi0au - NPU8jr5/O66d59HTUGUkV3dG/UXpyKXOQzl/ZCTXte/7MebZVgyb2qz2tzp/JdBGQxcjFxFR4jBwWcXA - ZQOz8ELJcc6Y2Z6/Y+AyMHARESVRNAJEpyXmN2FIhRMjn2zDZXN9mPhlCGUbw5G74YX16Kuu3DExloSy - UvU1xy2WOye6cNDULUjPqTECl0SdPhC45HnoOwtK1NJhS8kRtdZERrPpUCTU19KxLO77pKJo4JKbBQwq - rsfoJ5tw00dePR21uJtrcUXJzQ3kRgdl6zv0OXnLfD9Of8WNwx5woV+J0zifJXLJI0MXEVFiMHBZxcBl - A7PwQsnBwBWDgYuIKIkkAChphU3IKGnCkEonTny+TQeDvFUyHcwgI7gkLHQ3bomKzR0o2RDGFW+34cgH - t6JfYa0e7ZNWUGsaTHqb3YEnu1ZLy6lFP7V9UEk9hpbV44AKpfy3hkUMVQaW1iFD7Y80+RqTjK+jv6aE - M4mAcd8z1eh9ID9/fi0Gqud95isuTFwqIwFl3bWeiVwykrBYfS2ZrijTZ8cvDuICdR1x9KOt+jxOV+f0 - b0KX2WuAiIi6hoHLKgYuG5iFF0oOBq4YDFxERAkS+wZfPo6sWZSmPh4+3YXMZ1pxUbUXdy4MoOirdpRv - 6NCjZHpiWpmQqYl6wfGNHchaFsRpLzl19JFF5WVanlko6S0cInYaYmS0VrraJtFqzKNbcNkr23BL1Xbc - MVeZ81t3qu33vL0dt6uPL391G0Y+vAUDi9TXyZI7S6qvKaPAoiO71NeV75vSI7oK5ec19sNh92/DJXPa - MGlpSJ9TEqTkRgNm54lVEltlJJdMV6yQUYFKzsoQbvjIjzNe8eCwB1vQr1Sd5xK4ZOptJObqcz8q9vVB - RESdw8BlFQOXDczCCyUHA1cMBi4iogSRi9Dom3z15/7qzf8BU1048qFWHQRuWRDQ4aFiU4eOBhK5ZPqX - WVzoCiNuhZGzIogr3nbj6Ie3I11G+uQYI31MI0kvIKOqdNySAKUeh5TW4dj7tuDMp7bi2te3Y9K7jXj4 - y2ZUf9uCT/6+DYv/qQ1f/GMbPo+zWFn6J+O/zf2rFty/2InbZzfighe24sTfbcVRMxowqFh9Dx2NjMdU - n7JojOSqQ0ZhHY5Rx/v69zyYvEpGXnU/cMWS81S+5rTfd6Byk0x/DeLi2V6c8HgrDpzhwgB1rqfJa0DH - LoWBi4io+xi4rGLgsoFZeKHkYOCKwcBFRNTDom/m9YgtJa8Z/UqacYT6HXvmqx7c8KEfE74M6lAgYUtG - 2PRkfBASIGQqWeWmDr0e07GPNGJAUb36WSRu9Y5pd/F2LyAfGaWUllunA9SpT25B0fwmfPL3rfhjvQ// - tt2H/23xo94XwPZgAE3tSiiAxjiyrTlsfLzFH0CNy49/2+rDH/7Hg7l/aMHEeY0Y9fAWZEhMkymL6vvJ - 90/5yKXIzzu4uAGnveTCHZ/5USDTX9X50FOjA4V8Lb0u1wZjSm3eyhBu/zSAC9W1xXGPtWJguXoNRG6i - oF8LDFxERN3DwGUVA5cNzMILJQcDVwwGLiKiLpCLzOjHOmYpOmYp8qi2DSh34uD7XPrN/mkvu3H5217c - HblDoiwiL2FAIkFPrLMVT8KDBA1ZJ0kix4BimZookaYXjtwqjEQbGbGVpeTV4Zj7G3DtG9sxdVEz5nzb - go3/60brDwEA4Yh2/Kz8qPxggfxd+Zzo524J+LH639vw8kYnij5uxBWvbsPBU9X3ln0oI7kkEKbw4vzR - ACg3FDjzZRdu/9QXiVw9P5JL1uaSdeMqNxvn9KRlQVz7ng9nvOrG8TKi614XBlY41Wsl8vqIveti7GuK - iIj2joHLKgYuG5iFF0oOBq4YDFxERJ0UfWOuHmUalshQF52ivzKwzFhj64QnW3F+lRe3fRZA/sqQDgsS - tyRqRZlFg+6SryvTHrOWhXDu6604ZMY2PWVNpvP1xpFbQv/sWbUYmFuH4x9oQOH8Jqz8sxuNgQACO4Lw - /RCE/+df+BSv4ok8WiGfF4g86o9/CMDdEcB3Xh8W/6kNd721DYdNqcMA+XlSfSSXREHZZ5NqcNCUBpzz - ugt3LfSrc8NYj0vW0jI7d7pMzmf1GD3Hi9bJiK523PFpEBeo14C8FobPcGJgaTP6yWtFvWbS5Y2avI6I - iMga+b3JwGUFA5cNzMILJQcDVwwGLiIii+TCUkZqZavfkROUiYr688AyGanVguMeb8MpL3l01LrqXR9u - nh/AuMUhPcqlfKOQUVUmcaAHFa9T32O9rLsVwmVz23DEA0bc0lPrelvckp9bwpxMDxxfg375tTjnma14 - bKUT33znRcv3QQAhPfqqQz1K1Gr98RdtnSSf0xL5OLAriO/11w5hB4LY0h7A5v9x44Elzch8tCEymuyX - aYumP7/d1M/lyK5R/67X4uBpW3BhVSuyl4f0OSij+8zOn+6Q81ziqgQ0WftNFqGfrLaNV6+BmxcEcKV6 - TZzzhrreeLoNR6rrjWFTXchQb9D0m7VoNCYioj1j4LKKgcsGZuGFkoOBKwYDFxGRReqiMqPYiaEVLhyo - HDK9Bcc83Ioxz7bh3De8uPY9P8Z9HtJTDsvUm3sjaPXsukd7I6NnJCoUrA7hqnfcepHxAbJIem5tr4xb - 8ihxK21SLQ4uqcOVr27F61+34F9cPh20ZGph4Kcg3JEoJY89Kfo1ZXRXcFcIP6nv+W8uLx5b5cSZT2/F - MPUz6fXAolMW459DKpBAKNMVlSMf2q5vNjBpaVCH0OJ1iRtFGKWDl/pe8nqQabO5K9p1+L1glhejnmjD - oHKn2n/Ga8v0NUdERL9g4LKKgcsGZuGFkoOBKwYDFxGRBTJyS11QHjjdhTNf8+DqeT59F8Q7Pwvg7s8D - eq2rnGXtyF9lTNGSsCUjZZIWt9T3LF3foT4O4/ZP/Rj7dBMGlNTrqXSO3njHxOI6pOXVwnFnDQ5RH985 - pxGf/r82fOf16+jUjiD8u0Lw/JSYuBVLvoeMDpPIJUHtO48fs//gwuUvb8WwMolwRuSSEVOmz8Vmxh0n - a5Ghfr4jH9iOy99yI3t5UI/0K1HnjUwvNDuneoJMWzQilxG6JMJK5JKpi+e+4cEBU1z6dcXARURkAQOX - VQxcNjALL5QcDFwxGLiIiCyQRbGzm3DYfS5cNc+H7BVBlG4wph6WrTcW7y5em7zRWkIv8K0eJRzI6BgZ - OXbzfB9Ofl5GmTVA7pgoccMseqSsIoOORvfUYFBWLa5+eRve/T+t2BoypiSGFRlVZRajEq1DL0TfjrqA - D7N+78KZT23RI6T0dEWJXJGRZ6lGRpjJaLj0/Ho9kuuyOW3IWh7UI6vKNnao81bOn56fthhPhy71Opn0 - ZTsunePF8Kku/bpi4CIisoCByyoGLhuYhRdKDgauGAxcREQWRNbeOvx+F65UF5JZy2Sal4yakjfsyRup - Fc8YuWVMS5S4deJzTRhYKmtE1erRW2axI6VFpybeU4PBE2tw3pNb8eKGFvzJ6UN4Vwg/IgR/EkZt7YlP - fW8ZPSbrfv1Hmw8PfNmMEx6sRz+JiRK5Unif65FcMl1R/axHPbQVl7/VpkdySeCS0VwSuczOsZ6kF6BX - r5WJX4ZwyWwGLiKiTmHgsoqBywaOiz7wkT0YuGIwcBERWRATuK56z6tHv8ibdYlc8oY9+SO3jMXkyzeF - 9c9xywIfxj7XjMHlkZFbSkrf5c9MYWRa4qQaOCZ8h8wH6vHQl834m3ovPD+GsBMhfZdDj0l4ShY9XVGR - BeiD6vGP272Y/kUTjppaB8c49bNPjOx3GYkW//xSgF4zLLsW/dS+PvqR7fpGBBK55K6bQkZXyfkVHR3Y - k+Q1IueqPE5YEsLFDFxERJ3DwGUVA5cNHJd+6CN7nDpmtucPxzFwaQxcREQWRALXIfe6cPFcL8YtCf7q - DbvZG/pEkO8lI8ZkMfmSDR3IWxXCTR+ri9sXnEbcyqrRo7fSCnrhulsyNVFGQd1dg6Om16H0syZs/osH - nh+COm6FdgXR9pN5eEomGT3m+zmE79GuR3L9Xv2ME9/ZjsPL65A2Qe3/HPVcZGpoCk5X1FMV89U+zq5F - xmQZybUNF1W3YvzigB4JKJHLGM1lrCdndg52VfT1Imt+jWfgIiLqPAYuqxi4bOC49AM/2ePYsdWe5ce+ - 6UYmAxcDFxGRFRK41O/GYeoNuSwyf/unAb3mlR7BJW/a497MJ0rR2g6UbQyjbFNYrwN2zTwPMp9sxAHl - 9er3d6266K1J2cXO98UhJtWiv3oet83ejpX/7oZzZxA/yGipXUF4f7JvamI8+TlCP4f0elwt7QEs+sdW - 3Fq1HcOK1TGYYAQkPYorRdfkcuQqOcbC84feuw1nv+bCnQv9esptxWaJXB06cPXkSC4GLiKibmLgsoqB - ywaOM9/ykT0OHV3l+fSEmepNgfkLYr/CwEVEZIEErrwmDKlw4cTn3Ljx44B+85+MwCXfR9ZHkuhQsWmH - DlyTlgZx+Zw2jHi8EYPlbok5MnJIRm6ZB42UJlMTZVTRuFoMyq7F6U9sweubW1DnD+g1tyRwJeNuiZ0h - P4sEt45dxsL3W/1+vLxenRuPbNGRzjGhBmkpGrei9JpcWbVIz6vDwdO34rSXXLj5Yw/yV4VQubkDlepc - K1LnnQ5dJudlZzFwERF1EwOXVQxcNnCMmuUmexw8usozn3HLwMBFRGRBJHANLnch81k3bvgooN/4Jzpw - 6SmJcpdEudvdhg4UqW13f+7HhTNbcfSD29C/sE6PFtodt1I8qpgqiqy9dVsNji2vx/1fNOP/NngR+jE6 - eiuE1khUMotNdpHpkmKX+hl/+jmMb/7Xi6z3m3BIZT3SJkamKqZqcIycJ/pmBOr8kdF/Q8sbkPlkE654 - uw05KyRy7UD5RmNdLjkPC+POzc5i4CIi6iYGLqsYuGzgGDHLTfaQwLVgf5+aGMXARURkQWSKogSusc+5 - cVOCR3AZo7aMuCVTxio3Gett3fiRF6e97MRh921F/8kycqtWR4pet6B8DPnZ9cL442tw/jNb8cU/tqG5 - I4gOhBCSReV/igSluMCUCiS8yc+5C2FsDQTw1t+24LKXtmFIbo2+E2RarnqOMlUx7jmnCmNNLiOSpmXX - YHBJA455pBEXz27D+CUBVGwMY9rXO/T6XDKKsDtTFhm4iIi6iYHLKgYuGzjUyUj2OFgdgAUnmr8Y9jsM - XEREFkQC19BKF05+0Y2b5ycucBWtDaNkXQfKNhgjt+TrT/wygCvecWP0U7LeVoMx4knHrTr1s9UZI3J6 - 2+it6CgiiSs5dThy+hZULmrGPzd6dTQKw7hjYSqGrSgJXN6fg9ixK4Qf0Y5/3OrDjEVOHDWlHo67aozn - lsKBKyp6d0U5pyScHnr/Vpz1mhN3LfTrmxroc3K9oavnOwMXEVE3MXBZxcBlA8dY9X/IFjpwKWYvhv0O - AxcRkQWRwCVrcEnguikBgSsaACQmyHTE4nUdyFoWxE0fe3HuGy4c/fA2DJDpfFnfwZFd0zvX24oVDVzj - ajEwuw63VzVi8T+7sSXkRweCCCiptvaWmRZFQhwQRmswhHl/24rzntuKfnJHyCxjlNRvnnuK0iPp9JTF - GgyrbMApzzfj2nluHbrkHI0G1/hz1woGLiKibmLgsoqBywZm4YWSg4ErBgMXEZEFckGZ34xBZS5kPuPG - DR/6UbCqHSXr2vUIF7M39J0hb/xlGpjcxa5oTbte3+uuRX5c/lYbxjzVhIOmNKCfLMQuo2xkSqL62CxQ - 9CrRwHVXDYaq5/TQl83491YfvD8G0Q5jYXmzoJRq9CguHbjaEdwZxPr/ciPr/UYcJmtxSeSSYBTzfFOZ - MWVR/cyypps6JoNL6nDsQ9twzusu3PapX5+XMlVRmJ3He8PARUTUTQxcVjFw2cB0IyUFA1cMBi4iIgsi - gatfkRNHPdyKK9813uz3VOCKvvnPXxnE3Yt8uOKtNpzyQjOOemAbBhXXQ0ZsOSZ9Z4QHiRG9bTriXjjG - 1eDQ8jrM+UMLvD8FEIaxsHyqj9yKksAlMU7u+BhWj//q9OKZtS6c8eRW9JdppON71zHTa6JF1uVyTPgO - Gbm1OGT6Fpz8XDOuedeNcV8E9blvdh7vDQMXEVE3MXBZxcBlA9ONlBQMXDEYuIiILJALSpmmqAyf7sLF - c3zIk8C1PqwXgjd7Q98ZsoD83V8EcN37Hpz9eguOfHAbBkyuQ0ZWDdJkBFB+ZKpbb5+WGGP3Aue5dTjl - sS1Y+I9taN8V0utv9abAJT9ndNSZxLnt4QA++mMbrntjO4bKlL+7ItNJe1uUlOMja3Pl1iJdGVRUh+Mf - bcQV77TpNeEmrw7pYCXhyuycjhcNXHI3xglLQrhkjhfDpzFwERFZxsBlFQOXDUw3UlIwcMVg4CIisiAa - uNTjsOkuXCSBa2X3Ape84Y/GgbsX+XXYOuqh7Rhe0YCMglo49BpONToA9cpAsg8yzVICyrCKetxSvR1r - /9Oj75oYksXl1aNZTEplMk1xh/rpO34OYf3/eDBpXiMOlMB1+3e9+vilRRegV+fikNJ6PZLrlvle5K9u - R5E697sWuIK4ZLaHI7iIiDqDgcsqBi4bmG6kpGDgisHARURkQTRwqY8PvNeFS+b2TODSU7bUxzd97NNx - S09FHB+ziLxEkT4WtqL0nSCz6zDioS2YuqgZf13r0WFLFpfvjYFLpiruREivxfUP23wo/0y9+ZBRULf1 - 7sAl5OeXc1JGFZ7wu+245j0PclfJTRY6H7jk47sWBnH2ax59V1J5o8bARURkAQOXVQxcNjDdSEnBwBWD - gYuIyIJo4FKPw2f0bOCSuzHe+KEPRz/cqH7/1hiRK68PLCK/N4WRwJVVi1Of2ILn17bgHxu9RuDaZYyG - MotIqUwHrl1G4PoPpw8PLXPisNJ6OG5XxzPfeM6m+6IX0OtyyTTFknqMerIR13/g0VN05Y6fVgOXnOvR - 8/36DwPIfNqNgWUu45qDgYuIaN8YuKxi4LKB6UZKCgauGAxcREQWyUVlXjMGlTfjfHVBmbMihNINYR25 - zN7Q74uEAVGgPr5pvg/HPtKINJmamCtrbu0HgUsWYJ9Yi4tf3IYP/64N/+3xw7/LGL3VW+6gGEsCV0ck - cNW6A3hpg3rj8VA9ZJF5fUxlFJfZvugFooFrcGkDMp9s2h24ijsZuOSGDLJA/bXv+zHyiTYMKHWq1xQD - FxGRJQxcVjFw2cB0IyUFA1cMBi4iIovkwjKrEen5TTjrNTeyeyhwyQiwuxb6MeLx/TNwXfv6Nqz4Nzca - gn4dt3pz4ApHAtcWbwDV37bgrGe26OOp734po7jM9kUvEA1cQ8oacOIzzbjpIw8KuhC4hASu6z/0I/OZ - NgwsY+AiIrKMgcsqBi4bmG6kpGDgisHARURkkVxYTmpEurqwPPOV7geuqMrNO5Czoh2ZTzcbd67bDwPX - 8n91oz7QdwJXgzeAKglcT/eRwCXnpXoOB1Q0qHPfhTs+8yG/k3dRZOAiIuomBi6rGLhsYLqRkoKBKwYD - FxGRRTGB6+xX3chdGUJZNwKXrEUkj9O/3YHCNWGc+Oz+Gbiuem0blvzJjTp/3wpcs37fgjOe2qLDUF8J - XMOnNODCWa0YvziAgq+6F7jGMHAREXUOA5dVDFw2MN1IScHAFYOBi4jIokjgypDA9Ypbr8FV3gOBa9rv - d6Dgq/03cF392jZ8GQ1cPzFwpSIjcNXgwKlbcHF1GyYuCWKyOn+7Grhu+NCPsc+2YWC507jmYOAiIto3 - Bi6rGLhsYLqRkoKBKwYDFxFRJ2Q36RFcJ6k353cuCqJQvXEvWWd9HaJY8YFrzNPq6+fvf4Hruje2YdWf - 3djSl9bg8gUw+69acM5zWyB3xNSBK8943qb7I8X9KnDNNgKXnL+dDVzF69r13Uevec+HEU+2YkCpOudz - FQYuIqJ9Y+CyioHLBqYbKSkYuGIwcBERdYK6qJTfkyOeaMP1HwaQs9xYJL4nApeM4NIhYX+bovjqNiz5 - Zzdq+9AUxXpPADO/acFpMoIru48Frqo2TFzcvcB12Vs+HKWuOeQNmiNfYeAiIto3Bi6rGLhsYLqRkoKB - KwYDFxFRJ0QC10gJXB/5kbM8hGL1xr1IvcmX0Vxmb+z3pCDyOPWbHXq61ykvutQFax0cBftJ4JLF1yfV - 4rxnt2L2H1rw5xYf/D8H4d8VhLeXBq6OSOD6S4sfz65x4dh7G+C4pwYOiVsFcfugF9kduKZswYUz2zD+ - i84HLnmdlKxrR+6KEC6q8uKgGS6kyWtKAlf864yIiH6LgcsqBi4bmG6kpGDgisHARUTUCer3Y1peE477 - XRuues+PrGWRwNWJN/rxpmzeoR/Pec2FA6bUG/FnfwhcMnUvuw6nPrEVz3zlwt9v98H3cwhB9T8ZxWUW - kVJZi7IjErj+q9mPh7504VAJlrfV6EDUW0dviWjgOmjqFlw+pw3ZX3YvcJ0/y4th05zGG7WCmNcXERHt - GQOXVQxcNjDdSEnBwBWDgYuIqBMigetI9fvy4tlejF9i3EmuO4GrcnMHCr8K4cKZLThkxhb0L6qDI7/W - iCImsaGv0IErpw4jHtqCaZ8346/rPfDv6r2BS0Zw7YARuP5pqw9TPm3GobKm2i3f9Y3AlVWjz88b3vfo - 0YpyvnfmnJfAJVMU5eYMDFxERF3AwGUVA5cNTDdSUjBwxWDgIiLqhDz1+1E59H4XzlMXlfd8EdRxS964 - dzlwbTIC10WzWnDovVvRv6heLzbf5wOXXlC/DgdPqcfdb23Hhv9xI7grBPmfTz22xQWkVOf5KYSd6mcX - 3/zFg9z3GnFQnnqOfWUEV1YNDlPn562f+PSdQzt7vstrpHh9JHBVMXAREXUaA5dVDFw2MN1IScHAFYOB - i4ioE/LV70dF1g8663UP7loU1OtvdTdwTf4qhIurWnD4fftR4JJoop5nhnLGU1vw+T+3IbQrhHaE9Eiu - 3hS4ZFF8+dk71M/etCOA+f/Qhhve3IYhss7YXX0kcE00AtcdC/0olyjbhcBVEglcZ73hxeBypxG3GLiI - iKxh4LKKgcsGphspKRi4YjBwERF1giyIrQyb6sJpL7txx2cB/Ua/KyNaoiokcKnPvXR2K456cBsGlBiB - y9HHA1d00XXHhBocWlGPqm9b0Pp9ADJJMbAr2GsCl/ycsij+j+onD6vHf2724qk1Tpzx5Bb0lztFjq9F - mjzf3hy45HxUx+mwGVtx50K/Pmc7e76XrAujVMleHsIpL7mRUaCuNfLiXl9ERLRnDFxWMXDZwHQjJQUD - VwwGLiKiToiMOJHRJ2Ofa8Otn/j1G/3SDWE9VdHsjf2+lG8M6zWNrn7HgxMea8TgMglctZpZbOgzIsHH - cVcthubW4nfLmvGfbp+ORsFdQbh7yZ0UZXF5CVyy9lZwZwjr/tONie9vx6GV6jhmq+eXE/e8eyEduLJq - cMQD23DnwoA6Z7sQuNaH9etEFpk/5Xk30rPUtUa2Im/YzF5rRET0awxcVjFw2cB0IyUFA1cMBi4iok6Q - wJXfjAx1kXn8E6246eMeCFzyuepr3PihF2OebcLQiob9K3DdU4uBWbW4a852LPkXNxpCAYQjo7hk6p9Z - VEolsrh84GcJXGG4AkG8+9etOO+5LchQz8mRpZ5fHxiJp6coFtTi+McacfeirgeuEnWuZy8L4eRn3ciY - xMBFRNQpDFxWMXDZwHQjJQUDVwwGLiKiTpALSx25mnC4+p153Qd+/ea9rBuBS8exNWHcOt+Hk59vxtDK - /SRwRcgIp7TcOhz/wBY8sNSJf3X5sANBhBHSI6NSdapi9OeSxeXbd4XwE9rxZ6cfD6nnMGJ6PRx318CR - VYu0Xjw1UUjcEgNL6jD26UaM+yKgz/fOT1E07jY6bkkIY59pQ0Z2IwMXEVFnMHBZxcBlA9ONlBQMXDEY - uIiIOkEuLMWkJhw0zYWr3vOjQL3Rl2mGsoi22Rv7fSleb8SxOz7z4/SXmnHAlAak7U+BS+TXIW1SLa5+ - cRtW/bsbbT8E9d0IU3kUlwQuGb3VgXb8hDCaO4zF5a+RxeVlxNM9tUiT6Yl9IHDJ45DyBh1gxy/uXOCS - vyfk9ZG/uh23fhrEqCfakJ7TaFxvMHAREVnDwGUVA5cNTDdSUjBwxWDgIiLqhOjF5fgmDC934oq3fTpw - VWwyAleBegNv9iZ/b4rXSeAKY9ziIM55owXDp26FI69Wiy7E3qcV1SEtrw6O22twQmUDfrfciT9u88L/ - YwAdCMKvSExKxZFcbT8F8TPa8eNPYfz+f70o+LgJR05v0CO3HDm1RhzqI4FLps6e8oKzy4GrSL0+ZIH5 - 697347hHW5Gu3qA58hi4iIgsY+CyioHLBqYbKSkYuGIwcBERdUL04nJcE4aXOnHZHC/yVoZQvtEYodKV - wCWjt4S8+b9kThsOnrHVGMGVs58ELsW4S18tBuTV4cxntmLm71tR6w/ge4SwQ/FITIqLS3aSnyU6NVEW - l2/pCKLq61ac9bst6K+eh2N8Ta+/c6KQ56DXECusxfCpDTjjZZcOXKWduGuojlsRk5aGcNW7PhzzsLre - iAYus9cZERH9FgOXVQxcNjDdSEnBwBWDgYuIqBNiRnAdUOLEeW94MWFxEMUSqdaZv8HfFx0A1OdLHLvq - HTcOvXc/DFxCPVfHxFpkqOd955xGrP4PD1w7gjpyyVRFb1xkspPcOTH0s8StEDw/BLHsX9twW/V2DJfn - IGtvTVLHrkg9t74QuPLrkFFYi8Pv34oLZrVi4tKuBS55vOeLIC6a7cHhD7QgXa41GLiIiKxj4LKKgcsG - phspKRi4YjBwERF1QvTiclITBquPT37eg1sW+FGwOqRHcEmoMnuTvzfyxl9PU1Sufc+Nw+/bivT9LHBp - RUbgctxRg7H31+PBpc346zov3D8E0Y4Qgj+bxyY7yLpgO3aF8OPP7firWi8mzWvEIVPqkSZTE3ONWGf6 - HHsZHR3z6tCvsB7H/W47rnynDVnLgyhR52qhyblsRuKWLDAv5/kdC4M463U3DpzhRJrErXz1WjJ7nRER - 0W8xcFnFwGUD042UFAxcMRi4iIg6SS4us5owUF1cjn22DTd+7EfeKmOKoozkMnuTvy8SuKZ804FbFnhx - 5APbkC5T9qJrOJmEh75Gj+AqVHLV8x5Xi/4TanD6Iw147isX/qnZj+DPIXTAuKuiWXBKFllUXh5/VD9L - h/pZ/mm7Fw8tbcYJD24x1t3KisStXj5yKyo2cI14fDuumdeGnOXGiEWz89hMbOC6/bMgTn/ZjeFTGbiI - iDqNgcsqBi4bmG6kpGDgisHARUTUSZHANUBdaI56ug3Xvu9H7gr1Jl696e9K4JI7y8mImHv/sAN3fx7A - cb9rRL/Jdep38f4RuHREkaAncStHmVQLx63fod/EWlz+0jbM/kMr/tzi03ErgKBejys+PCWN+hl8yve7 - Qvgv9TM9vKwZIx/cgnSJW/cYgUuCkF5/qw/Qx0Ydl35Fdch8qhE3fuRR53oXA5f6+JYFQZz0vBtDK5xI - y2fgIiLqFAYuqxi4bGC6kZKCgSsGAxcRUSdFLi77q4+PebQVl8716cWzS9aGNbM3+Xsja2/JCK4Z3+7A - uC8CGPVkIwaWSCip1Yuv98XIpUdsRclzzK1FuoxYkymK42oxILsWw8rqMPKhemS934iP/74Vf/EG9FRF - /y5jiqBpgEqwwM9BhBHE1mAA8/++DRe+uM0Icnd+h7R7aoznEAmTu0el9eLRXEbgqkX/onqc9oITdy30 - I39VCEVrrJ/ncodQWbNrsjrPb/jQjxMeb0X/Eglc6nVUEPO6IiKivWPgsoqBywamGykpGLhiMHAREXWS - XFyq35Pp6vHge1twzpte3POFrMEVeSNv8iZ/b6KBa+rXO/Qd6k58rglDyut14JKRTX0mcEnsUY96pJaM - eJK7DU6SeFKH4x5owPnPbcFNVduR80ET7lvWjCe+cuLxVU7M+n0L1v2XB7WBAAI/heD72Z7AJXdO9Kvv - HdwVREMogHX/7cGza1zI/7AJ495qxA2ztuP8F7bi6Psa1PNUz218jTGqSwKYOo562mIvi127A1dxPc55 - rQWTlgb1+drVwHXd+34c/TsX0uVNmsQteS2ZvcaIiOi3GLisYuCygelGSgoGrhgMXEREXRAZfTKk0olT - X3bjzoVBFKs38WUbuxi41oYx5esdmLAkiDNecuKgqVv0AvN66l4fCFw6lMhzkWCnDFB/PrC4Hsfd14BL - X96Ksk+bMOfbFvz+Ow8aAgF4doog2pRW9bH7h5BpdLKLxC7PDwEEvg/BFQ7iP1v92Py/Hsz5QwuKPm7E - Oc804MiKOn1XxYGRkXi7n38vOp76uOVI4KrDBTNb9VpzspaWMDuXzci5LYErf3UIV73nwxEPu5Cm3qCl - MXAREXUOA5dVDFw2MN1IScHAFYOBi4iok+TiUgJXfhMGlDbjxOfbcPtnAb3IfNkGI3AVxL3J3xe5+2LF - 5jCylgZxwZstOPL+bcgorIuM4qo1jQ8pLzJiSUeSbOXuGjgm1ODAyjqc//w2lH7SjDl/04ZVf3bjDzVe - /NnlR/OOADpgLOL+g/K9LOau/iyjprxxkcluMl0y+nMG1M/XGA7g31t9+LbWgy//5Mbsb1swbVETLnx+ - K4YUq+N4l3r+d6lHWaOrKLJ/zPZbCtFRLtsYZXfJnDZ1fnfo0YZm5/CeyN+X8Ju3OoRL53oxvNKpvqa6 - zmDcIiLqHAYuqxi4bGC6kZKCgSsGAxcRURfIBWZeE9IKmjDyyVbc9kkApevbUbmp64GrXH1uzoogrnir - Dcc9sl2Pmum1gSs2bMlURPV4zJR6XP7iVpR80oSqb1vwh1ovWn8I6ojlh0z/U48/B/UURG/UT0bYsnVh - +T3Y/TPuMn5mIYvgh5Sd6v+61XP7f41e9Vxbcc9b23Hi/Q0Ymqf2h0xZlCmaub/sq9/svxSwe9Rdbi2G - ljfg6nc9mLJZApf5ObwnErjKN4aRuyqEC2d6MURePxMajdeRvFmLfV0REdGeMXBZxcBlA9ONlBQMXDEY - uIiIukAuMtUFpmNiI45/uAU3zzcC15TNkcC12vzN/p5I4NKjXFaGcO08D0Y+LgvNR9bhUswCRKrTd4Ec - X4v+E2ow4r56zPi8Cav+vQ1/cvpQ4wvoEU8yMissI6AggSikQ9avYpZNi8l3VjR2+dTzkf/J6K529SiR - q8bnx+//4sFrG1tw/RvbMby4Dhlqv6RJ5MpX+ypFA1d0SqUsMH/UA9v0HRTLN3UlcLWjdEM7speHcMGb - DFxERF3GwGUVA5cNTDdSUjBwxWDgIiLqAnVhqQPX+CYcfb8L17znx+Q1IVRsChvrE3UycMnnRBfivmW+ - Dyc+04zBpfU6EgmzAJFyZNSWekzLVz+zjNoa9x0GqY8vfG4Lnv2qGX9d50HLDyE9uklI3JIRW3JXRD1q - q5fErD2Rhe+FHs0loSsS73Yonp9C+LcWHxb8vzZULmzG2U9sxWBZiH5ijZ4CKPstlUJXdPSWPA4ua8AJ - v9uOm+d7UbaxQ8dYs3N4T4rV35fINX5xEGe/6sFgef1MZOAiIuo0Bi6rGLhsYLqRkoKBKwYDFxFRF8hF - pvyunNCEQ6e5cPFsLyYtC6FkfRhFsgi3yRv9vZHAJYtxy+eOWxzA6S87MaS8odcFLj3qJ6sWaRNqcHhZ - Ha5/Yyve/tsW/MXrQ2CXrKdlkP9JCJIwJAu2x8eivsKnnrP8T0KXjOty7QzqEWxvbG7FFS9vw7Aitb8k - Bsq6XGb71CaxgWtoRQNGP9mEWxf49CjDzgQuOa9L1hkjGm/9JICTnm/DQHn9ZDFwERF1GgOXVQxcNjDd - SEnBwBWDgYuIqAvkIjNP/a7MasKBU504+w0P7vk8aIxWUTpzlzkhQSw6iitvVQjnv9mKYZUN6iK2RtOj - e1J0KluUvlOgTLtTjpnRgLwPmrDkX1qxJehH+GcZtRXUkUuvqyWjnUyCUF8jI7rkuUrMk9Al6421qz// - h8uPOX9oxeUvb8MgGfkm+y0nMpIrBcQGruFTt+Dk55tw52edD1wycktkL2/HlfP8OOHxVvST14+Mfox/ - TRER0d4xcFnFwGUD042UFAxcMRi4iIi6IBq4sptwQIUTJ73YpkeoFK5uR+k69aa+k4FLFKjPkcW4JXJd - OteNg6Y1IE0CV3aKBy4JNBJEJhqjkQ6bVo+Cj5uw4T898H8fBNCuR23JnQYlasmIrb48aite9LnKtMXw - rl/uDvnfbX7M/kMrrnh1G4aqfajjYL7J/rVBNHA51ONh923FeW+6MO4LvzFC0WLg0qO31huBa/ySdlxQ - 5cPhD7iQUaBeO7zOICLqPAYuqxi4bGC6kZLiIGW+YvZi2O8wcBERdVG++l2pLjIHlTox4qk2XPuBH3mr - ZEHtsHpTbyw23xkyjatiU4e+E+PV89w44oGtSJf1rHJSeIpiNG7lqsfxtTisrA73vL0Nq/7NDf8OI279 - oLT9vH9Frb2RxehlXS4Z1VbrC2D2t6246MWtGFJi7Ec9XVHtU9P9nSTRwCUfH/doI65R52P28iCK1lo/ - r6MjEovUa0FGN571qrrOmOZCeoF63UgcNntNERHRnjFwWcXAZQPTjZQUo5RlitmLYb/DwEVE1EXyRl39 - vuynLjiPerQVl73t03eKiwauApM3/XsTDVxTNnfg+g89OOaRbciYXKcDl566ZnP0+A0ZUVasfj4ZeXR3 - DYaqbTfO3IaP/9iC7UE/gBB27grB91Novxu1tSe7R3P9bCxAL6O5/qvVjze+bsHpT28x9mW2EZfsnK6o - bxQgd8FU59yoJ5tw50KfPkc7M/VWBy71WpB15e5cGMBJL7oxsMKpXjfqtZMf91oiIqJ9Y+CyioHLBqYb - KeHSlRuVPypmL4b9DgMXEVEXTVa/K2UUl3qzPnyGC+fP8mLiUuNOijJyRYKV2Rv/Pdk9gmtzB26Z79UL - ew8qMe6kaPeIHlMSuGSkzz216DexBpe8sBVz/qoFdT4/fkZQT8OTNahaYgIPGVoV766gDlw/K//b6sdD - Xzbj6HsbjLXMchQ55jYd92jgko9Per4ZOcuDOlaZnbd7IoFL1uySNelu/TSAkU+1Il3enEngEmavKSIi - 2jMGLqsYuGxgupESboiSpfyLYvZi2O8wcBERdZFcZMob9ewmDCxpxukvt2H8kiAqN4d1DOhK4Crd2IGy - TR16Qe/TnndieOUWOCQ2KCkVuWRqovxcE2uRrox8oAFPfuXEn50+/PBTCD8iBPdPHLW1N3rfqH0kgUv2 - 2bf/40beh404anqDMYpLpn3atCaXI08dW6VfcR3OeNmpzk8j3Jqdt2bkXJbAJa8FuYvizQsCOOrhFvW8 - GtXXjbx2zF5TRES0ZwxcVjFw2cB0IyXcYGWi8ifF7MWw32HgIiLqIrnQlMeJ6kIztxknPtOGuz4PoEK9 - qZfF4jsbuIQs4l22IYyJSwK4cGYLDr9vmxEcUmwUV1qR+pkkwtxZgyMq61HySRN+X+9B+88h/ISQejRG - bjFw7Z2M5ArtCuog2L4ziBV/cuO6N7ZhYHG9nppqx3pc8v2MOyjWYkhFA857s1WPwpLRhZ05p2Ux+inq - tVCoHq/7IIDDZ7jgGBcJXNHXDhERWcfAZRUDlw1MN1LCMXDFYeAiIuqimMCVkd2MkY+34ab5gd2RanIX - Apcs4h2d3njtex6c8FgjBkhMknW4bBrNY0amz6Vl1SJjUi2uf307vvyTGy3fG6OR9N0SOXrLMgmBXrW/ - ZEH+7f4gXt7gwhlPb8VA2c+RyGV2DBJFB668WvRX591h927DZXPdek258k4GLoliMkUxe3k7LpvjwyFT - GLiIiLqFgcsqBi4bmG6khGPgisPARUTURdE36VlNyFC/N495pBVXvutH/sp2lK7r3ILcUTLqpWS9MZLr - jk99GPt0MwYX1avvUYO0vFpj3SuTKJE0ke8vUxP7Z9dizIMNeGylE//a5MdOGFMTJW7JyCSzmEO/JYFL - 9pmMfAupx7/b6kXFwmYcOT2y6LyiF5xPwrGPjt4Sg0vrccLvGnHte14jvHZiDS459yVwyefduSiIs15z - Y3i5C45J6vpCpvUycBERdR4Dl1UMXDYw3UgJx8AVh4GLiKiLom/S1e/M9PwmHHqfC+fO9GL84oB+cy9r - D3U2cum1i9TnTvk6jElLgzjtJSeGykLzk1IocEkEuaMGB6rH/A+bsPF/PGjbaSwqH/o5pKMNA1fneX8O - YifaEfqxHQv+rg3nP7sV/Qpq1bGPTE9NcuAaPqUBp77gxK2f+NR5HNbR1eycNVOkzn05//NXhXDDh36M - ea4VQ8rUayWbgYuIqMsYuKxi4LKB6UZKOAauOAxcRETdlKd+Z+Y34YApLpz0ghs3z/frN/nlG8JdC1zq - c6b9foeOA+e+0YrhFTKSJ0UCl5KWVwfHnd8h8756vPM3LWgKB/TorfZdnJbYHS5l564QgA78fa0XxQsa - cYzax2kyTVEWnJfIZXI8epKsu6XXe8uvxcEztuKCWa2YsCSAojVhPU3R7Jw1U6L+rky1zVkewhVve3Hs - Yy3or96MyZsy3kGRiKiLGLisYuCygelGSjgGrjgMXERE3ZRv6F/ixPFPtOLq93w6VMld54rWGNHKLAKY - 2R24vtmh/3zJ7DYcJgvN58laTDKSp9Y0TCSLRDZHdi2GFdXituptWP/fbgT0yKOQfmTg6jpjwXlZpL8d - 29sD+OiP6lx6fRuGFKr9LlMVcxIfOHcHroI6fd5d8VYb8laG9NRZmW4Yf77uicQtMeHLIM6b6cHB97mQ - Jm/K5LVi9hoiIqJ9Y+CyioHLBqYbKeEYuOIwcBERdZOMSFFv3NPU42EPtODSOT7krWxH5ddhHQa6Erim - fN2hH6+e58Hxj21H/+I6Hbgc+fYGLolbsv7Wyb/bgidWO/EPjV4EdwVlYh18DFzd5vkpJBM9dTD8lyYv - yj5twiHl9XCMV/t9UvICl0xRPOrB7bjlYx/KNnToUNuZ0YiyuLy454sgTn3ZjcHl6jUii8tz9BYRUdcx - cFnFwGUD042UcAxccRi4iIi6KToyRV1wHjjdifNneZGzsh1Tv+l64KrY1IHCtWHc+LEXY55pxODySOBS - zMJEUhSqn2FiLdLG1+K617Zj/t+34X+9fgTV/wKK52fzaEPWtf30yx0VnYEgnlzlxHHTG5A2zgiLCQ9c - +er7yEix/Dq9wPyEJUHc+4ednTqP5e+VbwqjTLljURBjn2tD/yJ1XSHTE+W1YvYaIiKifWPgsoqBywam - GynhGLjiMHAREXWTXHDKyJRJTRha7sQZr3gw8cvQL4HLJALsjQSusg3yuWHcsdCPM1514UCJHNH4IDEi - waHDVFEdHOPU91cmf9SMf9jug/uHkB69xbjVM2QEnEeRwBXoCOH9v23FRS9sxWBZ/F3upihTVBO0Fpfc - qdGhvnZabi0Gl9TjxGeakb0siBnf7tTnZGdCbflG406iNy0IYMTjrfouo3K3UdPXDxERWcPAZRUDlw1M - N1LCMXDFYeAiIuqmmMA1SH085pk23P6JX69BpO+kuNY8AuzRmna9oHfx2jCyloX0OlxHPrgdGRK4smwM - XJERXEMKavHESheawsadE9t3GXdO5PTE7ovuw11oR/j7dmz4Tw/y5jfhqPsajKmDEjgTFbgid0/MUB8f - eu9WnPdGi14kvnLzjk4FLom6EmjzV4Zw5Ts+HP1gCzLk7okSuOS1YvYaIiKifWPgsoqBywamGynhGLji - MHAREfUACVzqTXx/9fExj7biSnWxmave4Jes79zd56Ikismd6CQsXPe+F8c/uh39ZIrixBojSCQ7cMnI - nnx5rEXmI/WY9XsXmnYE0CErRu0K6TDDwNV90X34A9rR8WMIf7/Nh0dXOnHKEw3oJ4FzUq1xHHr4+OvR - W3qNtzoMLK3HyCcacfU8t45UsgaXnIdm52m8wsjdFuXcHS8LzKs3XofOcCJdpicKBi4ioq5j4LKKgcsG - phsp4Ri44jBwERH1ALngVL8709XjIfe14Gz1O/WexUbgKlPMYsDeyLRGGQEma3Hd8VlATxcbIBHCpsAl - d9Vz5NZhaFk9rnxtKxb8sRXNOwKStxBk4Oox0f24Q+3Xjl1BvcbZrG9duPjFrRgkx2B8AgNXjvracozL - t+C0l53qvPOh8Cu5G2LnApec87J+3O0L/Tj9ZTeGT3UiPXptwcBFRNR1DFxWMXDZwHQjJRwDVxwGLiKi - HpKvfnfmN2NIpRMnvuDGbZ8GULohjPKNYT29qzNrGMnflcA15ZsOTFwaxNmvtWBoRYO+i6EEDglOZqEi - UfT0taxaHD6tHlnztmPln91w7ZTAFYR/1y9hxizaUOdJNAyrvSv7+LN/bMWNM7fjgMm1eg20tDx1THo6 - cEk804GrFgdO2YILZrUie3mw0yMQZd04mZ4oH9/4kR+Zz7RicJlTnT/y2uC1BRFRtzBwWcXAZQPTjZRw - DFxxGLiIiHqITFPMa0KGugA97rEWXP+hHxWbwpjyddcCl0zzqvy6A9nLQ7ioqg2H3bfVCBF5tcZi4yah - IiEK63RUcUyoxYj7G/DQkmb8odaD1h/k3olB+LjAfI/zqn0qi/fLGmdf/8WN8e9sx0GyyP9dNXqUVY8H - LgmY2eqcyq/V629d9Y6706MP89U5K+vGVW421t+6/G0fDlfXFTKqUd9lVF4fZq8bIiKyhoHLKgYuG5hu - pIRj4IrDwEVE1IPk96e68Dz0Xpd+g1+2MazvptiVwCWxoHxjh44F187zYOTjTRhYUq++h4zisSFwjavF - SY9swWubXPjnZq8esSWJi4Gr57X9FET7LuNuiv+43Yui+Y04tFgdg9sTGLhyatG/qA7H/W47bpnvxZSv - O/RoLKvnrQQuibLTfx/Wi9Ofq64rhk5xGovLM24REXUfA5dVDFw2MN1ICcfAFYeBi4ioh8iFp/z+zG7C - 8KkunDfLh4KvwqjcZIyC6UzgEkWyntG6MArVx7Ie0hkvuzB8ikxTrEGa3E2vhyPHHkUD1z01OO2xLZj7 - 1y34j1YfPD8Z0xNltJFZpKGua1HCu0IAwvi37X5UfNaMI0rr4bgtEriK4o5RN+hRgbKAfW4thlU04KTn - mnHXwgAqv97R+cC1Pozp33ZgwtIQTn/Zg8ElTjgmNjJwERH1BAYuqxi4bGC6kRKOgSsOAxcRUQ/KU78/ - 1YXnkHInTn3Jg3FfhFC6LqzXJrK6UHesorXteppY7ooQLp3jxuH3boVjUg0cWTW2BK7TH9+Cd/+2Bf/l - 9sHNwJUwErjafzYC15+3+1G5sBlHJihwReOWjOI6/L6tOP/NVkxcEkT5pg4dWM3Oyz0pWdeuPi+M2xYG - MfbZNgyUN2IT1WtCHuWNmdlrhoiIrGHgsoqBywamGynhGLjiMHAREfUgWUhb/Q4dUOLECU+24boP/Mhf - 2a5HwkisMosCeyNRTNY0kgXnb/zIi+MeaURaNgNXXxcbuGQEV8IDV3YtBhTVY8TjTbjufQ/yVxl3AC3u - xDkrf1cCl3zuVfN8OFa98eovI7dkiqK8Nhi4iIi6h4HLKgYuG5hupIRj4IrDwEVE1IP0QvPNSFMfH/pg - K85XF56TloZ0pCpe1/l1uOSxcnMHypU7FwYw9plm9JO76eXUJO9OinGB652/acF/tjFwJdJvAtdnCQxc - uep8yqrBEPX1T3vJhfFLjLt/Fq41Amv8ebknEmHlHB+/OIDzZrpx6P0upBeo6wn1Rky/IYt/rRARUecw - cFnFwGUD042UcAxccRi4iIh6kASuSOQaXOHE2OfcuPvzIKZ9E0bZBmOdIrM4YCYauMo2dWjjlwRxzust - OHBqA9Jk1E1eHdKTEbkYuJIu2YFLRgUeNG0LLqpu0yMNZYH52HNwX2SdOLljqASuWxf41XnfisGV8lpQ - 1xMyqpGBi4io+xi4rGLgsoHpRko4Bq44DFxERD1MApdcfKqPj3m0FTerN/xTv+nQo2LyV5kHgr0pWifh - wLgz3VXvuDHise0YUFgHR5axblLCpyoycCVdsgKXQxaYz61FRmEtjn10O679wKPX3pLzVc49K4GrIPI4 - 7esOlKxtxzXzfDjqkRb1NdXrIC/yeoh9fRARUdcwcFnFwGUD042UcAxccRi4iIh6UMzFZ3p+Ew67rwXX - vOdH2UZjHa3OTFGMkhE1Ergmr2nHbZ/4cNqLzRhaXAfHhL/okVwMXH1PMgJXWoExClAMrWjAyS84cdtn - Pn2uSuSyeq5GA9f0bzr0uXrxbC8OmuZCmnoN6JsumL1OiIio8xi4rGLgsoHpRko4Bq44DFxERD0o5uJT - fp8eONWFC6o8yF4R0tO3urLQvChSn1u+May/zsXVLTiwvB6OcX9BWh4DV1+UlMCVr45pVg36qccj7t+K - i2e3YtLSIErWR4KqyXm4J7Jel6wVl708hDNfdeOA8makZTUagUteE2avFSIi6hwGLqsYuGxgupESjoEr - DgMXEVEPk4vPfKWgGYMrnTjxeWOa4uQ1sg5XWK9XZBYJ9kRG0hStDaPy6w49XfHa9z047N4tcEysMQKX - SbzoUQxcSZfwwCXHVKYnTvwOg9SfRz7ehBs/9KBojRG3CtW5anYumilSf1fuuCjnqKy/NeaZVgxSb7zS - stW1hExRZOAiIuoZDFxWMXDZwHQjJRwDVxwGLiKiBNCLzTcho6QZRz7agkvn+vQC81O+NsJBZ6cqSniQ - aWMSEm7/1IfRTzdhQJGEp8g6XPEBoycxcCVdMkZwOWQE18TvMKSkDqe94MSEJQFM/WaHHmlodg6akemJ - JevCelpj1tIQLpntxZEPR9bfyo28DuJfG0RE1DUMXFYxcNnAdCMlHANXHAYuIqIEkAtQuYOceoM/dKoL - p7/iRu7yEKZ+bYzg6mzgKoyMrJEpjuMXB3DhrBYcfv9WpMvdFLMTPIqLgSvpkhK45Jjm1uq7J8r5JOfk - jG+NwNWZ9bdkVGLlpjDuWhjEqS+5ccA0VyTwRl4HZq8PIiLqPAYuqxi4bGC6kRKOgSsOAxcRUYJI4FK/ - TzMKnRjxRCvGfx7ElM1GpDKLBXtjBC5Dzoogrnvfi5GPN6JfQQ0cWd/pCKWZhIxuY+BKukQHLhn5J4Fr - YHEdTnisEVe/60HB6hAqNhsLxVsOXOrvydpwU9Xn3boggJFPtWFAmdNYe4uBi4ioZzFwWcXAZQPTjZRw - DFxxGLiIiBJEApe6CJX1uI540IXrP/TpUCUBQaYcmgWDPZGRMjpyyQLga0O4Z3EAZ77iwoCiWjgmMXD1 - NYkOXDLqLy2nRo/eOuf1Fty9yK/PyZJ1kfOtk4GrfFNY3y30yAdbkR49781eE0RE1HUMXFYxcNnAdCMl - HANXHAYuIqIEkREsssi2uhg98F4Xzp3lxrjFQRSvNdYtkmhlFg32JLreUcVGYx2vy95qw7CKBnWhW6MX - DE8XJjGj2xi4ki6hgUsdT333xJxaHPfwdlz7nkdPmy1b3/kbIEh0Ld2gzuXV7big2ofh01zGdQQDFxFR - z2PgsoqBywamGynhGLjiMHARESWIXIRGpmkNnuLE2OfacPOCgF4ovlSxOkomlqzDFb0To4SJYx/ejn6T - 6+CQxeYZuPqMRAWutAgJXAPU49hnmnH7Z36Ub+zQC8VP7sQ5KXFLzuXCtWHc/XkQp73iwdDKyPREYfaa - ICKirmPgsoqBywamGynhGLjiMHARESWIXIRGZBQ7cdgDLbjibb+OWzKtqyuBq2htWEcu+fiOz/w469UW - DJ+yxZhylqi7KTJwJV3CAleBxFAjiB44fQvOe7MFE78MokICV2QkVvw5Z0ZGE8pU28rNYeSvbFfntRfH - PNaK/iXqfM9X1xAyTdHsNUFERF3HwGUVA5cNTDdSwjFwxWHgIiJKsHzDgDIXzn7do9c6kjWLuha4DBK5 - claEcN37Hhzz0DY4JtUgLadWxyizsNEtDFxJl7DApe+6WYeBJfUY9VSTOn/cyF8VRKk6n4rXGuHUinx1 - 7sp5PP33HZi0NIRTX2zDkClOpPHuiUREicPAZRUDlw1MN1LCMXDFYeAiIkowCVx5zUhXH499vg2TvjTW - 4dKxYM2vw4FVErhkNNc9nwcw9in1tXNq1QVvrZ5+ZhY2uoWBK+kSFbgcueo8Gf8dhlc04OzXnRj3hV8v - LC/R1Ow82xMZwSXn8NRvOnDXogCOf7wVGUWR6wcJXPGvASIi6j4GLqsYuGxgupESjoErDgMXEVGCyRv+ - /GakqwvTYx9rwTXv+ZC7PKTDgqxjZBYQ9kUCl8haFsQ5r7VgqCw2L9PPEjFNkYEr6RIWuPJqkT7pOxx1 - /zZc9Y6M3gqhYpOso2VEK7NzzYy+o6dMl10TxnXv+3DEQ61Im8zARUSUUAxcVjFw2cB0IyUcA1ccBi4i - ogSTi1H1pj9NfTxsuhOnvNSmR15VbpRRWOYBYV+K1xnyVoZw1TseHPdoI/oV1elRXGZho1sYuJIuEYFL - pieKwaV1OOm5Ztz2iU+PApT14GQkYWcCV/F649wdvziI89T1w0H3thhhK3LXUNPXARERdQ8Dl1UMXDYw - 3UgJx8AVh4GLiCjB5GI0Ir3IicMfdOGmj/x65MzuqYqdFF2La/JXIdz9uR/nvtmKwWX1cEz8Duk9fTdF - Bq6k6+nApReXz6pBv/waHPnQNlw6tw1ZS4P6LoiiU4FrdTsqNhufd90HfpzwRCsGVrh2j1Rk4CIiShAG - LqsYuGxgupESjoErDgMXEVGSyEVpXjOGVDhxyRyvjgUy1aur0xT1NLF1xuONH3tw6H1b4Mhi4OoLejRw - yfFTj47xf8Hg/Fqc/LwTt37q0+dNyfrOnX8SwcS0bzpQuq4D56k3VkOnGaMTdeBi3CIiShwGLqsYuGxg - upESjoErDgMXEVGSRALXgBInznjFg3u+COg7Kco0MbOYsG/GOlxlG8L6a2U+3YgBRcZonbSCHpyqyMCV - dD0ZuCRupU2u1aP7hpfX48JZrZgUGb0lgdT83NozCWKVm8PIXRnCyS+6kaHeZEXvFGp63hMRUc9g4LKK - gcsGphsp4Ri44jBwEREliVyU5jeri1Injnm0FVe+49NraJVu6HrgkjhWuj6M7BUhPe3siAe36YXm5W55 - ZrGjSxi4kq5HA5ccO3U+9FMfn/BYI2740KPOHeO86+wacNFRgzKl8ZYFfhz/mCwub5zXDFxERAnGwGUV - A5cNTDdSwjFwxWHgIiJKInVhmqYuUAeWy2LzbuStkNEwHToYmAWFvSmMKFoTRsHqEO5eFMApLziRIest - 5dToMGUWPDqNgSvpeixwqWPnyFbnwsQaHDFjGy6ubsX4xX4dqUrWhvX5Y3Zu7UmxOk/LNoYx/ssgzldv - qg65v2V3uNWPZuc8ERH1DAYuqxi4bGC6kRKOgSsOAxcRURLJhakOAk046ncu3PNFSE8x1AGhC5FLyKga - Pc1xdRiXzWnDsMoGpOVJ4OqhUVwMXEnXU4FLr72Vpc6FSbUY82Qz7vjMr9fQkumJRXHnkRXyeVO+7jBG - bz3ZikEVzl/W3mLgIiJKLAYuqxi4bGC6kRKOgSsOAxcRURLJhakEAXVxOnyGE1fO8yFnZUjHg84s9h0r - Om2sZEMYtyzwYdSTTRhUVq/X4ZL1uMzCR6cwcCVdjwQuWYstX8mtxeCyBpz3ZityVxiRStZuMzuX9kU+ - T6Y2XvaWD8Omu345n83OdSIi6lkMXFYxcNnAdCMlHANXHAYuIqIkk4tT9Xt2cIUxTfG2zwKYvCaE4rXd - jVxhTPwyiEtnt+Gwe7ep71Gr1+PqduQyCVz/0eZD209B+HYF4fk5iLYfqSe5lFA3A5fELZmeOLi4HqMe - b8INH/j0uaJHb3Vy7S1RFDk35Rw742WPvlmC3DSBgYuIKEkYuKxi4LKB6UZKOAauOAxcRERJJhen+U1I - L3bikAdacOlbPuSvbkfJuu4FLlmLS9ZUumthAKOfbNYjeBz5PTCKKyZwnfH4Frz3f1rwvz4fgj8HEUYQ - ISWwi3qSV9mxywhcf97ux9SFnQxc+pjVwjHhOxwydSsum92m75woU1lltF9nzzM5r0o3tOubGVz+tg9H - PdKKDDmXGbiIiJKHgcsqBi4bmG6khGPgisPARURkA7lALWhGv5JmnPqyGxO/DOkRMl0ZWRNL7qiYt7Id - 57/ZigOnNaBfUZ36PrV6LSbTEGKFxJJc9XXursGZT2zB+/+nBTUBP9p3hbADIYQV/q9n/xdQvkc7gA78 - udGPqYuacZQErltr1L/R6phYCVwyei+nFiN+16jX3pJzqytxS8jnyOLy93wRROazbgwodyJNzmPGLSKi - 5GHgsoqBywamGynhGLjiMHAREdkkX37fNuP4x9pww0cB5K4I6QghMaErEUKUrDOmn90y34sTn2vGkPIG - PYpLT1U0CyFW7B7BVYvTH9+Kt//aZazB9UMQ/p+C8P4Y1B9Tz3EpoZ9kBFcH/s3pR8VnzTiiJGYElzom - pscqwpFXq0fwHThtC857o0WP3tJrb3UxoMoILrnr4s0fB3DYgy3qfDI5n4mIKLEYuKxi4LKB6UZKOAau - OAxcREQ2iQSuA6e34Ow3vLh7UXD3KK6uBi6Zgiafn786hKve9eBwWYtL1mLqzlpc0cA1oRajH9qCh5c1 - Yck/t+Hr//Xg2+88+OYvHmxWH1PPWf/fHvxVnRf/5fHjy39z4+63G3Fwcb0eRWcpcGXXYID6+6e9JHdO - 9CF/VTuK5dzownklcUseJZJdVO3F0Knq3FVvrvSbLLPzmoiIEoOByyoGLhuYbqSEY+CKw8BFRGQTmd6V - L9MUXTju8Tbc+FFAh62uTiOLksBVsTmMcV8EMPoJuQhu0HdU7M56XHrB8pw6HDq1Hle/tg35HzXqUUVT - FirqUT6mnlP2aTOmLWrGo8udKPioCWc8tRVDZLppVuQY7iFwyX8TcoOBg2dsxXUfePTNB/SoQJNzZV+i - 52PBVyFc/6EXI59qwYByOW95nUBElHQMXFYxcNnAdCMlHANXHAYuIiKb5TTjgAonLp3jQ97KkA4KMhLL - LDhYIVGicnOH/loXzWrB4fdtQ7/COj1tTSKXWRixQsLJgOI6HDKlHsfOqMfx9zbg+PsacII8Uo+T/Trq - /gYcM6MBw8vq9THcV6CMjtYbXL5FT1G953M/KjZ16Ohpdq7si3xe2QZjROA5b7oxtLIZ6dE3WGbnMhER - JQ4Dl1UMXDYw3UgJx8AVh4GLiMgmcqEqj5PUhWp+E05+rg23fxowppNFRt2YRQcr5PMnq8+/c6Efp73k - wlBZi6ubgUs4ZHRQtvo6E5UJNZRI4yMmKjl1xhpq+5qamG88jni8UY/eyl4R1MFUj+DqwvkkgUvW7Rq/ - OIBRT7Ua1wey/hYDFxFR8jFwWcXAZQPTjZRwDFxxGLiIiGwSDVy5zUgraMYh97fgAnWhOmFJCEXrIpHK - JDpYJWFD4sSVb7lx6L1bkTa5VkcuCSVdXXBeBy4JZblKDiWF7OtIuNpb4IqO7pKYecGsVj2tsKvTXaNB - TEz8Moir3vHisAdajOsD3jmRiMgeDFxWMXDZwHQjJRwDVxwGLiIim8nFakEzMtTjqCdaccdnQRStC6N0 - fddHcRWsljsqtqNyU4dei+vMV1w4cPpWPYLLkbfvqW6WSGyh5DDb/zH0Gmm5dRhU2oAxTzXjtk98KFfH - vnSDMZLP7BzZGznv5PyRQHrzfL8evTWwTJ2nsvYWR28REdmDgcsqBi4bmG6khGPgisPARURkM7lglWlf - E5pw+PQWXDvPj7xV7Shd367veteVxcFF0ZqwDmXizkUBjH3Gqe+sJyOC0vK6N1WRUodeVF6iZW4djrh/ - O657z6PXX5N13LoaSCVsyflX+FUIl8z1YmiFnKO8NiAishUDl1UMXDYw3UgJx8AVh4GLiMhmcsEq074m - NuGAcifOeMWD2z8NYrIehRXu1oLzMnpHFpwvXBPGBW+24uBpW5EemWYod1Y0CybUe0TjlhzToRVb9Hpr - MqWwdH2H+fmwL5GgKmG1YHUI93wewKkvudEv8obK9PwlIqLkYOCyioHLBqYbKeEYuOIwcBERpQC5YM1T - F6zq48MfaMElc33IXR5C+YYwStZ3LXAVRB5lqlqZ+jq3fuzDic82GwvOy7pOioQRs3BCvYO+a6I6jnJ3 - y9FPNeGmj3yYvCaM0g1dC1wy4ktGb4lJS4O4WF0fHP6gujaQAKvOT9Nzl4iIkoOByyoGLhuYbqSEY+CK - w8BFRJQi5KJV/f7try5gZdTMhCVBHabKNkYC1+rfBom9iQauonUdKFnfgYJVIVz9rhtHP7wd/Qpq4ciu - MQKXhTWeKPUYo7eM6aYHTmvAZXNa9Tmip7Uq8eeDFTLST845Wf/tzoUBjHiyBRlF6ppAApecn2bnLRER - JQcDl1UMXDYw3UgJx8AVh4GLiCiFyDSw7CYc/bALV7/nQ86Kdr1QeHQ9pWi06iz5/IpNOzBhSQBnvurC - gVMb1O/7Gk5V7KXkmOm7WebU4IDKBpzyQjPuWeRDxcYOHbjMzgEr9Npb6nwrWNWOq+f5cNB0FxxZjYxb - RESpgIHLKgYuG5hupIRj4IrDwEVElEJkIW914Tq4zIkxz7bpO9gVrm1H+cawjg/dCVwyVVEi2U0feZH5 - tPoeJfXqe0WmKppEFEpdOm7J1MTCeox5sgm3LPCq4xzSI/W6OnqrSJ1fcudEWYfr1k/8OOXFNgwqcTJw - ERGlCgYuqxi4bGC6kRKOgSsOAxcRUYqROyqqi9eDZ7hw8WwvclaEULkpjJK17chf9dswYYVeW2mdTHeU - rxHC5XNbcfh924xRXFk1SDOJKJR65DilybpbOXXIUB8fpo7hpbPbkL+6XU8tlCmGZsffClnrrWx9O7KW - hXDuTHVNMN3JtbeIiFIJA5dVDFw2MN1ICcfAFYeBi4gohUQvXic0YWBhE0563o07PgvouymWbuj62kpR - sp6X3FVx3Bd+nPWKS09vS8up0SO5uOB86tPrbmUbC8sPn7pFTzeVOx2WbejQ62aZHXMrZJSgTE2Uj29e - 4MeIx1qRntfI6wEiolTCwGUVA5cNTDdSwjFwxWHgIiJKIXLxKo9Z6uI1rwlHPNCiR3FNWhpCiSz+HYkQ - BZ1ccD5KRnHJVEUJZrfO92HMs5GpijKKK6+WC86nssii8o7sWgwqqUPmU024Zb5XTyuUuFW8tmuBS6Ym - Fq+Xc6Md93wRxHnqzdLBUyNTE+V6IHpOEhGRvRi4rGLgsoHpRko4Bq44DFxERCkov1n/Pu6vLmBHPdWG - mz4O6ClklZvDOm51NXBFpypWbupA3soQrnjLjSMf3Ib0vBp9V0UuOJ+6ZNSWHCOZmnjMI9tw+VutyFsV - RMXmDh2pzI73vsh5JOdDxSbjvLrqPT+OerQV/QudxrWATFFk4CIiSg0MXFYxcNnAdCMlHANXHAYuIqIU - JBexsvZRdjOGT3XhPPU7OmtZuw4Rsti8LARuFiyskMglo7hk1M+4LwI46zWX+h4NRkCRqYpxYYXsp9fd - yqrRIfLge7fi/JktmLhUpibK2lsd+rh2JXrKuSBrd4m7Pw/i1JfcGCgLy6vzzvS8JCIi+zBwWcXAZQPT - jZRwDFxxGLiIiFKQXMTKHRUnNWFAYRNOeKwV177v13dR1FMM1xsjbsyihRVF6+RrdOhQdvMCL058rhkD - 9VTFWr3Ok1lkIXtI3EqTu13m1GBoRQNOfsGJOz7z7Q5T0XXZOns+yKgviZzyNbKXh3DpXC+OerAF6dmN - xvREjtwiIkotDFxWMXDZwHQjJRwDVxwGLiKiFCUXsXmK+p08tKIZJ7/YhjsXyZS0MMo3di9wCVmzSb5O - 3qoQrp7nwdGPbEdGgbHGE9fjSg16UfnI1MSBxbUY9WQjrvvAq4+fTDOVtdQkesYfWyskcE2JTG+88WM/ - Rj7ZqmOqvHHSowcZuIiIUgsDl1UMXDYw3UgJx8AVh4GLiCiFycWsupCV382H3u/Uo2wKVod+NXKnqwrX - GqN3JHJlLQ3hglmtOHTGFj0VTiKXWXCh5HLkKepYZBQY625d+bYbOSvU8d9oxK2ibpwDJetlNGAYE5YE - cfbrHgytjCwsnx8578zORyIisg8Dl1UMXDYw3UgJx8AVh4GLiCjF5SrZTRhU5sSJz7fh1k/8KFoTRnkk - cnVrquLadh24SteFcdciP055wYmBRcZdFeWOfWbRhZKgsA5p6lGviZZbi0OmbcF5b7Zg0pKAPl7lG43p - pWbH1Ao53nJHThm9d9U8H457vAX95E2TBC4uLE9ElJoYuKxi4LKB6UZKOAauOAxcREQpToJDXjPSCppw - yH0unKt+X2ctC2HqZmPB+W5PVVxnjOKSWHbDB16MfEJdOBcZi5rrqYrx8YUSLzo1MacWwyq24PQXnbjz - Uz9K13egYlOHPmb56rh3dXpixcYOlK0P49YFAZz4bBuGlht37dSjt+ScY+AiIko9DFxWMXDZwHQjJRwD - VxwGLiKiXkAuaNXv5v7qgvb4x1pw08cBPQpHppkVrjWPGJ0hI7lk4frclUFc974XRz+8Del5tep7Gouc - m0YYShgZPSeLyg8srsfoJ5tw40deFKrjJHFLjlVXo6ZETD1qb4M61stDOH+mFwdNdSJNFpZXb5gYtoiI - UhgDl1UMXDYw3UgJx8AVh4GLiKgXkAtaWXA+vxkHTHXhzNe8GPd5SE8zK9sYNo0ZnSHhQ0YFSeSS0WEX - VLXisPu26rjF9biSR6Yl6oXls2r0gv/HPrIdV74r624F9YgrWXdLjldXA1dR5MYCMvLr+g/9OOFJN/rJ - G6YcWXuLgYuIKKUxcFnFwGUD042UcAxccRi4iIh6Abmgleljec1IL3Ti8AdacPFsH/JXGWtomcWMzipc - IwGlA0VrOjBucQDnvdGCYZVb1L8JtTq6mAUZ6lk6buXUIiO/Fkc+uBWXzm1F9vKgER8jcas75OtUbg7j - 7s+DOPVlNw6Y2mKE0wL17/5k/ttPRJTSGLisYuCygelGSjgGrjgMXEREvYiEiDxjquKop9pw2ycBFK4J - oWidMQrLLGp0RuHaDhRrYdz+iQ9jn2nCkPJ6pOVL5OJIroQqjKy7NfE7HH7vVlw2141JS4Mo2WCstdbd - qahyfsgIvSJ1vsjC8kc93IIMWd8tO/JvPkdvERGlNgYuqxi4bGC6kRKOgSsOAxcRUS8iQULuqqh+Tx8w - xYnTXnLj7s8Deppi8fruLzgvita068XMJ6uvdcsCL0Y9tR3pBbIeVw1HciWInpqYYywqf2BlA855rQUT - FhvrrMk0VFl/y+xYWRFdiL5yk/pa6hyRu3COebYNg8qM80ifT3JuMXAREaU2Bi6rGLhsYLqREo6BKw4D - FxFRLyIXttHpiupx+HQnLpnj1TFKT2HrgVFcQkb7lMqaT8rV89w4/L6t6F9YxwXnE6FA7dc8mZpYg+EV - W3DmKy7c8alfHdOQnlIo62aZHSPL1LGU0V9TNncge3kIZ77mxtCpLiOWRu+aSEREqY+ByyoGLhuYbqSE - Y+CKw8BFRNQLSZhQ+pc4kflMG27+OKBjhkxn+03g6KLoovM5y4O48m03jnhgmzFVUU9XNAk11CUyassx - 6TsMq9iCM15y4rZPfMhfLQvCh/QdD7s79VSOY+nGMHJXhHDlOz4c/UgrMoqduyOp6flFRESph4HLKgYu - G5hupIRj4IrDwEVE1AvJ6BslrdCJYdNcOO1lj16vqXJzR4+sxRVLRnLlrgzh0jltOPLB7ehfVA9HHtfj - 6glpaj/KqLhhFQ04/UWXXvdMbhxQsl4W+zc/Hp0l01fLN7Tjxo/8GPFEGwaVO9W540SanEMMXEREvQcD - l1UMXDYw3UgJx8AVh4GLiKiXkotcRULFYfe34IYPAyhZK4uId3/UTywZRSTyVoVwlYzkun8b+hXV6VFc - HMnVdY78yLTEqVtw5qtG3CpQ+zi6v82ORWfIOSBfp2RdO7KXBnHWax4MroiELU5NJCLqfRi4rGLgsoHp - Rko4Bq44DFxERL1UJHA58poxoMyJsc+24dZPAihbH0bZhnCPLDgfJdFMvqaEkktmu3Hovdt0nHFkG1MW - 5Q6AZhGH4sg6ZupR3y0xu0Yv3j/qiUbcusCrjlfIuFtiD8RJGQUmcWvqNx169N1F1V4cdr9LfW91vnBq - IhFR78TAZRUDlw1MN1LCMXDFYeAiIuqlooErMtVsUIVxV8VJXwb1gvM9MQooSqJL8bp2fVe/7GXtOOf1 - Fgyb0mCEmpxapHPxeUtkOqLeZ7k1GFRah2Me3oYr3mpD3kp1zNb33DGTr1O2oR3lG8O4/kM/jnioFely - zkTjlog/n4iIKLUxcFnFwGUD042UcAxccRi4iIh6OQlcBer3tnLIAy5cWCXrcYX02ksSpcwCSFdJOJNF - y+/+3I+zXnNheGWDHokkkUvfYZEjufZIpnNK2ErLqsGQsnpkPtWIq+a5kbUsoO9y2FNxq0Cp2GSM4pMR - fWOeacOgMpcRt+RcMTuHiIgo9TFwWcXAZQPTjZRwDFxxGLiIiPoAueDNb0aGuvg94sEWXDXPj8lfGYGr - cE24x9bkkqmKsui8jDa6a5EPZ7ziwoFTtyBN7gQYO12RocsgUxJlrbI8Y/+k59VgeEU9Tnq2Gdd/4EHe - ypDen/r49MAxkmMtAVJGb01YEtQj+oZUOo2piYxbRES9GwOXVQxcNjDdSAnHwBWHgYuIqI+Qi948iVxO - jHm2Dbcs8Ou1mCR49FTgEvK1SjcY0+nu+iKAs15t0ZErPVcWTa9FOhee/4WOW2q/SNxS++YQtZ/OeLkZ - t8z3oWBlJBbK8THZz10hx1qOzYQlAVyg3vQcNCNm5JacH2bnDRER9Q4MXFYxcNnAdCMlHANXHAYuIqI+ - RGJGXjOGTHXitFfbcM8XAX0XPWMkl3kU6QqJWzKKS4LKnQv9OPNVpzGSK1emK9Zw4fkIh4zcyqrVI9wO - nLIFZ7zixB2f+vRIK7kZgI5bPXRc5JhIMJOPL3/bh8PVv+kyoo9TE4mI+ggGLqsYuGxgupESjoErDgMX - EVEfIiFDR64mHHK/E5fO9SB7uSw6L0GqpyNXWC9iXqy+7p1f+HDmqzJdscGIXJNq9LQ8HXr2t9AVeb5p - MqItS+2HnFocJHHrZRfu+Myn75RYsbFj98gtWTPLbP92hnxNmZaYvyqEm+b7MOLJVmQUqn/L1XmwO25x - BBcRUe/GwGUVA5cNTDdSwjFwxWHgIiLqg9Tv8f5FTTj+MReuec+rw0fp+p4fySVfr2xTGCUb2nHnIolc - Thws0xVl4fksZT8dyaXX3MqpRUZ+HQ6evtWIW5/69Ig3Wfy9SD2a7c+ukOMpAbNoTQi3LvDjxOdaMbjM - OAd07DQ7P4iIqPdh4LKKgcsGphsp4Ri44jBwERH1QQXNSMtrwkB1AZz5bCtunu/H5NXG3fVkaqFMkTOL - JZ2l44r6euWbOnS8uWuhH+e81oJDp29Fhl5YvUb9m1KrF1o3C0F9TVqBes7q+Urc66f+fMT923DO6y24 - 7ROfXqBfRm4Vr1X7vocio7Hov3F3y3s+D+Ks19wYVuk0/h2XO2ty1BYRUd/BwGUVA5cNTDdSwjFwxWHg - IiLqo2R6mroIHlzuxEkvuHHbJwFjBNFGY+0ns2DSFRK5JNpUbOrQa0CNXxLAhbNacNQD23TkkQXWHXl1 - fX/xefX8dNxSz7dfYR2OeXg7LpndigmLAzpElW0wImBPTUuUr6mnnioTl4ZwvnqTc+h9LvUzqGOvjrvp - OUFERL0XA5dVDFw2MN1ICcfAFYeBi4ioj5KL4JjIdcarbtzzeWD3YuQ9OVVRFMnC6Rs7ULE5jJwVIVw2 - x42jH9qmY0+ahJ88GeFkEoZ6uTTFIXErMi1Rnu/RD29Tz78NuctDetSW7O/itR2791V3A5cxLTGsv+6k - ZUFc/rYXhz/kQoaM2pJpiRy5RUTU9zBwWcXAZQPTjZRwDFxxGLiIiPowuRDOlsjVjANnuHDOGx7c80VQ - r50VjVw9MZooSkYoVW7uwJTNO5CzPIQr32rD8Y9ux8CSyOimyHTFvhK65HlIuNPPLa8WQ8oacMLjjbji - 7TZkLQ+iYtMOVCqyX8z2V1fIMZNpibKWV96qsPpePhz9sAvpsqh8TiPjFhFRX8XAZRUDlw1MN1LCMXDF - YeAiIurj9MWwktuMQ+5z4RL1Oz9rWVAHErn7nkyZMwspXbbaiGdyh8WCVSFcO8+N0U9sx5CyemPx9T40 - ksuRbwSujMI6HDhtK05+rhnXv+9B3qp2vS6ZXu/sqx6eDrpOfe0N7Xrf3vChHyc81qr2a6MRMhm3iIj6 - LgYuqxi4bGC6kRKOgSsOAxcR0X5Apq1NasIAdXE88slWXPeBHwWr2lG6Ltyjo4tEwep2FK79ZfF5WVD9 - lo99OPHZRgwpb4hELqUXR67dI7dy6pAxuR6H3bcV57zmwp2f+vQ+kHhoLOZvvo+6SoJk2UYjSt68IIAx - z7ZhYGlkUXmZjmp27ImIqG9g4LKKgcsGphsp4Ri44jBwERH1cdELYvW7PS2nGUPLnTj5+Tbc+oksfh5G - +YaeDzFRpRs6MOXrHXq9qFsWeHHqi04cMn2rEYhyavUIKLOAlMr0mlsyJVH9/ANLG3Dc77bjwuoWjPvC - r4OhXmy/h6OhMNZOMz6+ZUEAJ7/gxuAKp36jI3fNND32RETUdzBwWcXAZQPTjZRwDFxxGLiIiPYj6qI4 - LbsRB01zRtbjCukpb3qqYgIilzGlLrx7RNNdi/w45/UWHHav3GGxXocuCUZmISllyaL5eXUYXFKPUU80 - 4dr33HpR/VK5O2V01FYP70v5mhK3Cr8K4fbPAjjtJTcOmBIZuSWBS97wyBsfs2NORER9AwOXVQxcNjDd - SAnHwBWHgYuIaD8hF8Yy0kddGGfkN+HQ+1w4V/3uv2dx0Lgjn9Lj63FFyOijso1h/Xj35wFc/pYbo59q - xqDSBjjyapBWUGsek1KII19GnNXq9bYOnbENp7/kwo0fepGzQu2/9TJaredHwunpnmuMuyWKCUuCuKDa - i0PvdRn/XkfjVvT4xh9zIiLqOxi4rGLgsoHpRko4Bq44DFxERPuh7Cb9+/7ge104T/3+H/dFEEVr2lGy - zjy09ARjNJexNlfBV2Hc/LEXJz3XjAOnNaB/UR3S8o21rVJtRNfu9bbUzze4rAHHPrQdF1e14Z4vAnqk - ljwf2Xc9PWpLRNcykwA5YUkIF8/x4uhHWtBP3uDIovISLBm2iIj2DwxcVjFw2cB0IyUcA1ccBi4iov2Q - hJG8JqTnS+Ry4qw33Bi/WO6s2I6ide0JiTVCIlfR2jAKlfzVIUxQ3/OCma049N4tyJgsIclYfN4RF5ls - Uxj5mXLrMLBkix51duMHXmQvC+nnIyPSZB2znt5fxsgtY1SYHBO566XErSMebEH/yJsbR0Hk32oGLiKi - /QMDl1UMXDYw3UgJx8AVh4GLiGg/FZmu6MhvwkH3OXGh+jdBwk3l5rCeTpi/2ggtZgGmuyTeyKikso0d - mPhlEJfOacOIJxoxpKJB/RtUC0dWrb7booyekshkGp8SIfK99KgtvZB8DQaW1OOYR7bjzJdduPEjr3H3 - SRm1tdb8ufUEmZZorF3Wgaylav/M9eKoh1uQER25JXfFZNgiItq/MHBZxcBlA9ONlHAMXHEYuIiI9lNy - kSzympGm/nz4Qy5c8bZPT7er2NjzdwE0o0PX+g4UrAnj5vk+nPx8M4ZP2YIMmRKYK5HLiE2/CVEJoqdI - 5qvvHZkuKXFr9JONuP4DN7KXyTROGX1m/Nxmz6en6DW31DHIXtGOS9/yGXFLjllu5JjFHkciIto/MHBZ - xcBlA9ONlHAMXHEYuIiI9nMykiu/Gf1KnDju8VZc9a4Pk1e3Y9rXHXrNrESN4oqSkVzF68PIWxnC7Z/6 - cMlsN054rBEDiuvhmFQDR5aSH1mEPhGjueRrylREGbWVrb6X+p4S1g69bxvOerUFt8z3Imd5UN9pUn5W - HbcSGLgkME79pkNPT7zmPR+OebQV/Yuc6g1N5FiZHUMiIur7GLisYuCygelGSjgGrjgMXEREFI1c/Uud - OFZdMF/zvk/fUbFsQ1jfIbBAfSzMgkxPkO8lMU3W/8pZEcK173v0AvQHT9+K/pMj4Sm7Vv0b1UOhKxK1 - 5GOZCilfW75HRkEthk9pwPGPNeLCWa3G4vuyzlaE2c/eY2Q0m3r+MnpO9sUtn/gx+mmJW+rYSNzK47/N - RET7NQYuqxi4bGC6kRKOgSsOAxcREWly0VwQiVyPterpivkr21G+wZiWV5DgaXkycklHLvleq9txz+cB - XDa3DSMea8Tgojqk7x7NVdcjd1qUr5FWYISttIk1GFBQh2Me2oaLqlpx2yd+ZC0N6dFa8jPJYyKnJUrg - k+ddvjGMsvVh3LzAj9HPtmJQuTom8m+yrLnF0VtERPs3Bi6rGLhsYLqREo6BKw4DFxER7SYRRRkQE7lk - 6uCUzR0oWR9O6HRFiTwSkaKhR6boZS0L4Np5bpz6fDMOm74VGTLaamKNIbfGCF0Sv2LC1R5FRm2lTTYW - j3dM+k5PR5QRYodN24oTn27GlW+3YcISv56OKOtgJTpuGXdLVM9VLyhvLOx/03w/xj7XiiEV6ljkq3+P - ZeSWvKExO15ERLT/YOCyioHLBqYbKeEYuOIwcBER0W6RUVx6Ta5SJ45+tAVXveNF4WpjZJHc2S+RI5mi - ZK0rCVyl69qRvzqEuxb6cWFVC459ZDuGlNQjIycSqWQh+uj6XPsiI7/U3zXu0vgd0tXnD1Vf64TfNaqv - 3Yo7PvMjf1UIJTpuyeL3iX+uEvMkpMn3ylkewtXzfBj1VGTkVoH6t1gClzyaHSsiItq/MHBZxcBlA9ON - lHAMXHEYuIiI6FeikWuyE/1Lm3HcYy24+h0fClaFUbnZWHg+GZGraK0R1CQASQgavySIq9/z4IyXXTj6 - oW0YVFyPNBmFNVHJq/3Vulq/okdtyV0Za4wpjtk1GFBchyMe2IbTX3Ti2nleTFgS0N+vdIN6fupR7paY - yIXkZRF/mZIpo7ZKN7Qja3kQl7/l1ft6UFkz0iRq6WMQYXaciIho/8LAZRUDlw1MN1LCMXDFYeAiIiJT - kZFcErmOebRFT1fMWhbS0/ckzEgISnTokq8fjVxCFrof90VA/SxujHlGXdxPaUB/WUdLRmXl1CJNxKzR - JSO2ZJteRD6nBgML63Dw9C3IfLoZl8xpw52f+VGw2hhBVbbRmIZp9nP0lOgUT/391D6U0WIS7i6d68Gx - j7jQvyjyb7CM3DI7JkREtP9i4LKKgcsGphsp4Ri44jBwERGRqejoofxmZKiL6sMfcuECdSF99xcy2imy - RpV6jI84iSDrc8m0wYpNHSjf0IHcFe24eb4P57/ZiuMe246h5fVI11MPZdpiHRwFdUhTZGSXBK4M9d+G - VTRgxBON6jm04Bb1udnLQyhZp75eJGwlY1SafA/Zd2Vyp0T1ePeiIM6b6cGRD7vQT+JWtsStyH43OyZE - RLT/YuCyioHLBqYbKeEYuOIwcBER0R5FApcjtxkZ+U047F4Xzp3pxu0Lg8hfZYyukvWyZKF0s6DTk2QK - oV6bS0Y/KTKNMOvLEK6Z58FJzzbj8Hu3YqBMW5SF6LNlKmIt0gtqcUBFg57SeNpLTlzznhsTvzSmI8rX - 0JFOfU35s9n37EkSt0rWS9xSf17djts/DeCs1zw49D4XBsi+jo7cYtwiIiIzDFxWMXDZwHQjJRwDVxwG - LiIi2ieJXFlNSM9vwiH3unDKS25c96EP2StCOhJJeJI1pczCTiLI95PRXJUbO5C/sh23fuLHxdWtGP2M - +vlmbMWA4noMKqnH4Q9sxWkvuXD1PA/uXhTQi8jL1ED5XFlvKxmjtoQRt2QapPHnmz/24+QX2nDQdKex - 3pZ6s8JpiUREtFcMXFYxcNnAdCMlHANXHAYuIiLaJ7mgFurfh3R1YS0LoY96uhXXvu9F7gqZ6iejuYyQ - Ex93EkJ9Hx2N1hlrZ5Vt6ECeTFv82Ivz32jBic804cTnmnFRdSvuWuTXf69y0w6U67XDjM9NZtySaYnF - 68M6xt3ycQBjn2vD4HIn0vIi/+ZGF5Q32/dERESCgcsqBi4bmG6khGPgisPARURElsloI1knamIThqiL - 60wduWQ9qyBK18UuPp/4KX9CRy49MkpR31u2ZS8L6YXoxy0J6HW2JGhVbAoba22tUz9b3NdIJGOtMiP+ - yc9y7Xt+nPisG0Mrnerf2kZj5JbsU7N9TUREFIuByyoGLhuYbqSEY+CKw8BFRESdIhfXWerfiUlNGFri - xKgn23DFOz5M/DKoA5Kx+HxyAlcsvXj7hg5M+XoHZny7A9OVKV/LVETjv0fvYJgs8vPImlti4tIgLnvL - ixGPt2JQucv4d1ZGb8nILbN9TEREFI+ByyoGLhuYbqSEY+CKw8BFRERdov6tSMtuxsAiJ455tBUXz/Vi - /JKgHlVVuu6XqYBm8ScRZNSYLBYfXfheGAvIG/89WYFr95RE/b1DmPBlAJe+7dN3oexfoPaZhC29mLww - 2a9ERERmGLisYuCygelGSjgGrjgMXERE1Gnqwlo/yhS7bHWhrT4+/L4WnPGaBzcvCOi7BJZvlMhkBJ9k - hq58scpQEPffEk2ep0xHlGmJsqD9rZ/6cdarbhx5vwvpMhUxq5F3SiQioq5h4LKKgcsGphsp4Ri44jBw - ERFRt0TvApjdpBdOlwXUb5rvR/7qkB7JJJIZuOwSjVvyfHNXBnHjR36c9HwbhpY1I21iZL0ts/1HRERk - BQOXVQxcNjDdSAnHwBWHgYuIiLpFLrYlcsm/HXnNOnKNfLoNV7/nQ86KkLEm1zpZeD7562AlkzxPGbkl - i8lf+Y4XI59oxZBStW9kUX6JW1xvi4iIuoOByyoGLhuYbqSEY+CKw8BFREQ9JtcwoLQZxz3WiovneHHX - 50Hkr25H6YawXnBdYlBfCF3R6Y8yaqtMIt6adtyjnqs852MebcGAQvVv6aRI3JJ9I29M4vcXERGRVQxc - VjFw2cB0IyUcA1ccBi4iIuoxcuEt8pqQof48fIYTp77s1utyyQiuso1hTO4j0xUL1POQ51S6rl0vqH/n - ZwGc8aoHB9/Xop+7XmsrP7I/YvcRERFRVzBwWcXAZQPTjZRwDFxxGLiIiKjHyZRFuVuguhA/YJoTo55p - wxVv+5C1LISKTR16AfreGLpk5JnQsW5DGJWbwnoapkzHHPNsG4ar55o22amnauq7JJrtGyIioq5g4LKK - gcsGphsp4Ri44jBwERFRwsi6U/nNyFAX4keof2MuqvZiwpchPeKpeH1kUfZeFLpkAXn5meXukEVrQsha - GsSlb3lx1KMt+jnqfz/lOXPUFhER9TQGLqsYuGxgupESjoErDgMXEREljMSeSPDJKGnGIfe5cNKLrbj1 - Ez9K1odRsVEWZg/vHhllFpVSifysU74O60B3y4IATn3FjYPudeo3GnrUmkxLlDcfDFxERNTTGLisYuCy - gelGSjgGrjgMXERElHCRkVwSgQZWNCPz2VZc+54f4xcHUbQmjPINYZRuMKb+SUhKhdilf4bIdMTSdUaM - kygno7aufc+Hsc+1YehUpxG1ZEqiPEez505ERNQTGLisYuCygelGSjgGrjgMXERElBRyUR4Z0SXT+Q67 - vwVnvebB7Z8EULAqhNLIlEUJStHQZSv1M8j0SZmOWLLOGLV198IgzlX/Xh71sAuDypy/hDuO2CIiokRj - 4LKKgcsGphsp4Ri44jBwERFRUshFeTRy5TYjo8ip7zgoC9BfoC7Qx30e0Au3V2yS0VxhHZeSPXWxQERH - bamfYcrmMMrXt2PikgCufMeLE59z45D7XehXIiO31PPQo9Iiz8vsORMREfUUBi6rGLhsYLqREo6BKw4D - FxERJZVcnOs45ESa+rOM5jpwhhNnvurBbZ8EkLs8pKcEyrTFsvVhPapLx6cEhq7o146O2JLQptcGW9WO - Oz4L4IKZHhz1SAsGlkR+/tgpiYxbRESUDAxcVjFw2cB0IyUcA1ccBi4iIko6uUAXkdFcaepxaKULI59s - wyXVXoz7PIjStWFUbgrr2FT0VTsKY4JUIhSubddrbOm4pUz8MoQr3vYj81k3Dr7XhYyiyL+P0VFbZs+L - iIgoURi4rGLgsoHpRko4Bq44DFxERGSLaOSSYJSrqAv2gSVOPVLq9FfduOY9P+5ZEtDhSRZ4l6mLxeuM - Oy7m98Bort2jttTXL5Ovv1lGbbUje3kINy8I4NyZHhz9aAsGlTt1gHPkSdxS5Gc2ez5ERESJxMBlFQOX - DUw3UsIxcMVh4CIiIttJQFIX7PLvT4a6gB9S2YyjHm7Bma+5ceP8AHJXGGtiiZ5aiP7/Z+884KSqrj++ - dBR712g05q+mm8RoTDOJ6bGgglRBpQsqKvYC9oq9964oYm9YELuU7b33mdnpZXfp/P7nd988HCcPmIWd - nV32fPh8md23r9x77nn3vfObc++lcMaJ4ylqTX6vDWe82YaTno/gd3cHcfAVPuw8w4O+dtYWUWFLURRF - ySQqcKWKClwZwHGjknZU4EpCBS5FURSlWzBOnj3MkGKmlLy8D5Cfd57uxsFX+vC7u4IY+mzUiFoctmhn - c1Go6ujcXJxInllb1nBEilwxjJwfwz8fDePnN/qxlzwLB0ng0Nd+HrJMLJsKXIqiKEomUYErVVTgygCO - G5W0owJXEipwKYqiKN0KiknM5hrVjD5jm43YtMfMFvz0ej/+8WjYDCE8/U1L4OJE8CarS36n+EXxylHU - es3K+LKP4ZDECW+3YvQrrfjPkxEceXsQB17mw47TPOhrX59w+KRTGRVFURSlq1GBK1VU4MoAjhuVtKMC - VxIqcCmKoijdEr7E83k00hK6tp/qxoGX+4wY9c/HIhj2IoUua8XDCW+1mRUQNzYRvT2kceI77Zj0drvJ - 4Br2fATH3BfCoXM4iXwL+vKao+LCFkUuBhLJZVIURVGUTKECV6qowJUBHDcqaUcFriRU4FIURVG6LQnD - FvuMdWGgvNjvbFZb9OI3dwbx36ciGD2fwpY1QTzhvFoUs2xhy2RtUQSTv/H3Ma/EcNxTURwhz739Znmw - /Zlu9I1Pcv+dieRV4FIURVG6EypwpYoKXBnAcaOSdlTgSkIFLkVRFKVbYwtNfDadKoyUF3vZtse5Hhx6 - lQ+/uzNoBKsxC1ox4S1L4OKE8czosiaR51xbbfHhiGH8Vp55h8z2Yzc5vv/4b8+pwxEVRVGUbo0KXKmi - AlcGcNyopB0VuJJQgUtRFEXpEfClnqstUoga40LfkZyI3oU9z/Hgp9cHcOxDEZz0XBQjX4ph3Gucl6sV - Z7zOn2MYPi+Kvz4UxqHX+LDT2R4MOKMZfcc0xTO24ucmTtdVFEVRlO6AClypogJXBnDcqKQdFbiSUIFL - URRF6RHwxd7O5qIoxfmyRjaj3zgXdpzixj7nteDQOdaKiyc9G8Vpr8Yw6uUo/v5ICD+70Y99Z7VgyOT4 - sRyOSCiY2edOvJaiKIqidDdU4EoVFbgygONGJe2owJWEClyKoihKj4Uv+mOFkU3IGtGI/mc0Y295lh1+ - UwB/vCeEo+8I4gdXeDFoitsStDgUkftrtpaiKIrS01CBK1VU4MoAjhuVtKMCVxIqcCmKoig9Ejvrii/7 - nBiejHOhn2zbfoIbO052YYdJLgySIKBP4j78WQUuRVEUpaehAleqqMCVARw3KmlHBa4kVOBSFEVRtgns - F3+uiDhCnmPDmdUlJA5FVBRFUZSeigpcqaICVwZw3KikHRW4klCBS1EURdnmsLO0bJz2URRFUZSehApc - qaICVwZw3KikHRW4klCBS1EURVEURVEUpZujAleqqMCVARw3KmlHBa4kVOBSFEVRFEVRFEXp5qjAlSoq - cGUAx41K2lGBKwkVuBRFURRFURRFUbo5KnCligpcGcBxo5J2VOBKQgUuRVEURVEURVGUbo4KXKmiAlcG - cNyopB0VuJJQgUtRtmH4IrQp7P34sqQoiqL0PFLp64nd3yuK0nPhvcz7XgWuzaECVwZw3KikHRW4klCB - S1G2IZIDGnn52STcZ5xwmjBGGKsoiqL0CNhns+9m3+/UvyeT/Hwgyc8QRVG6N7xvVeBKBRW4MoDjRiXt - qMCVhApcitLDsAMTO2DhNr7sMNAZJffuCGF4nFOEk4QT4wxN+Jnwb9xvtBxrB0yKoihK9yVR4GJ/Pyze - n9t9vI3dxxM+C9jXc38iwbE5ns+OZBEs+ZmjKEr3QQWuVFGBKwM4blTSjgpcSajApSg9DL7Y2FDUshnt - Qp+Rzeh3qrz0SCBDBkrgM/gUF7Y72WIwOSnOUBe2H+nCzhPd2HemB9+/yIP9L/Dge+criqIo3ZH9Cftp - YZ/zPNhtqhtDTnNv6NNNH5+I9P+DhrkwUJ4HA+TZwOdD3xHN5lmRNUqeGxTKmMVrw+eK03NHUZTugQpc - qaICVwZw3KikHRW4klCBS1G6MXyRIfY363aWFr+xP0E4XuA39RKsDJB99p7hxmEXefDLKzz4zZUe/Pn6 - Fpx8lxej77MYda8XI+TTID+f9pAXk5/xYdYCPy57049LXvPj4lcVRVGU7solcS6UfnvGCz6c/qgPI6U/ - P/Ue6ePj/bxBfh4un8ff7sVfrvfiV1e4ccgsNw44V4Lis1wYMEGeJ6fK8+O4OHyWMLuLohefP/w7nz3J - zyVFUTKHClypogJXBnDcqKQdFbiSUIFLUboZtqhlv8RwGAmHEI6MIy81gyUA2WVcM/ae6MIB57jwo0s9 - OObWFox5zIdZr/hx7bt+3LjQj4e+CuLtkhAWV1l8UhnCx/Jp82l1CEsawshzR1DoiaBAyJefFUVRlO5J - gY3019lNYXxRE8bH0rd/JCySfn0RP4VP5OcPKkJYUBDCo/IsuE6eCzNf8mHi016c8pAXx9zWgp/Ks2O/ - KW7sKs+a7cc2o59ghi/yWTMi/uxhZlfisyn5maUoStdhvxuqwLU5VODKAI4blbSjAlcSKnApSjdGgg0O - JekzrBl9hzdj0Phm7HOuG0df14IRD7Rg5gs+zH7Th9s+DODxr4N4qySML+vDyPeEURQIoyEWRduaGFav - tViVBLetWRfDWrJeflYURVG6NeyrNyB992ohuW+3+3d+RtdE0dgWRkFLGJ/VhvF+eQiv5IfwxDdB3PFx - AJe84se4R334yy0eHHqpG7tNc2GQPHf6niDPHs7dRdGLAbXTM0pRlK5FBa5UUYErAzhuVNKOClxJqMCl - KN0A+5vx+EuLmQyYwxA59FC273WWCz+9xI1jb2vBpGf9mCtByVslIeQ0R1DujaAuEIErGoV/ZRThtVG0 - wmKlsA4xrBfsz0S4ba2wRlitKIqi9CjYfzv17Ymsk+fAqvgzIbQmisCqKLztUbjlmdEQiqDIHcGH5WE8 - 9EXQDHsc8ZAXv7myBftPc2MHPpfGybOIQxlPkZ85hJFD5e3nVvKzTFGU9JLwrqgC1yZRgSsDOG5U0o4K - XEmowKUo3QAOAbEni2fGFieIl/twz7PdOPL6Fox/wosb3/PjhWVBLK4Oo0KCktj6CCDBSyIMdFZIENMW - J7o+Cv/aKHwS1CiKoii9C/b/wXVRRORZwGfCSnlG8AsNCl+Jz46V8vfGaBRLGsN4ozCMexYFcc6LPvz7 - rhYceokbO0kg3X+ktZDJhlV3+bzSzC5F6VpU4EoVFbgygONGJe2owJWEClyKkkHsFxUGDac2m/tvuwku - HHSBG7+7zoPxT3pxmwQaH1eGUR8OI9QuQcrqGNolGGmXYGXF+hja1sXQKsSEiBCSYMYmqOKWoihKr4Yi - V0CwngvWcyIaf2bw2UHawS9H5HON/G1FDC2xKIo9EbyYHcIF8/34750tOPxKD/Y7z22yis0XMYkT0ms2 - l6J0DSpwpYoKXBnAcaOSdlTgSkIFLkXJEMzaYnDASeRHyYvKaZxfy4V/SCBx5Vt+PLskiM+qwqgMRCUY - iW74pp3fvDMQCcs2rwQvLQI/E9kQ2CiKoiiKwGdC8rPCE//klyGt8lzhkMfEzK6WFVEsrw/jzfwQ7v8s - gBnz/PjNdR7sMtWFAePlXZFD6gmfZXymaUaXoqQXFbhSRQWuDOC4UUk7KnAloQKXomQAvpwwIBjtQl/5 - ee+Zbvzueg8mPOnD08uCqIlGzOTv69dbghaztfjtO7+F57fxBglKFEVRFKUzsJ8vJttL4LBGzvPF59A6 - ZnqtbcWS5gjmfhjAyId8OOr6Fuxxlgt9OAn9qPgzTQUuRUkvKnCligpcGcBxo5J2VOBKQgUuRelC+FLC - eUskEOgj9JcXlQMvcmPScz68lBNEXmME3tZvJ4dncMGhI8zWYgBif+uuGVqKoihKZ2I/V2wodMXWx7BK - nkH2YiQR2dYQjGBpbQSPfx3C0HtbsNt064sak43M55tmcilK+lCBK1VU4MoAjhuVtKMCVxIqcClKF8KX - f7m/+svPB1zgxr/uaMHsN/z4tCaE1oRhiFztit+k28MPVcxSFEVRuhr7SxXCyer55Yv9nPKsiGFBbghn - P+fDH25swe5nu9GH4pY9Cb2KXIrS+ajAlSoqcGUAx41K2lGBKwkVuBSli5AXkn7yYrLjFBd+coUbE5/x - 4fX8EHyxGFattYYhxtZHEV4bHyoiAYUKW4qiKEp3gXN18RkVW2ctdNK+OobaQBRPfB3EKQ96sf/5Hgw8 - Xd4hKXDxCx2nZ6GiKFuOClypogJXBnDcqKQdFbiSUIFLUdIMX0Tiy6nvNsON4+724u5FfnxSE0LLyoj5 - JpzDEcPro/DFs7ZU2FIURVG6G8zksp9R/ELGzuZqjkXwfmkIl70WwBHXtGAAn30jBQ5bTH4mKoqy5ajA - lSoqcGUAx41K2lGBKwkVuBQljdgrJconl1cf8ZAX83KC8K6MYDWiWCEwW0sFLUVRFKUnwecWxS7OEQkz - dDGKskAEt38UwO9vaMEOk+TZN0LgkEUG5E7PSEVROoYKXKmiAlcGcNyopB0VuJJQgUtR0oD9AjLGZe6p - Hc9yYfQjXnxaE0ZwRRTR9dbkvWby+LjApSKXoiiK0pPgc4tf0kTkWbZCnmmcS7IhGsGjXwdx7G0tGDRO - 3idPEvhFjwTjjs9LRVFSRwWuVFGBKwM4blTSjgpcSajApSidCF88+MlhGaNcGHimGz++3I2pz3vxXlkI - KyUA4HAOO2tLRS1FURSlp8NMLn5ZwwVSmMnV2BbBs0uDOOW+FuwzzXoeZo2Sd0vN5FKUrUMFrlRRgSsD - OG5U0o4KXEmowKUonQRfOgjn2xrtwiB5AfnV7BZc/bYfxd4w1q2PoW29FQQ4BQiKoiiK0pMJCCF5xnG1 - xbY1MXxUFcIZT/iw9ww3+oyQd8v4kH3HZ6iiKJtHBa5UUYErAzhuVNKOClxJqMClKJ2AnbnFF/eRLgyS - 3391lQfXvh1AkTds5ttag5h58eckvU6BgaIoiqL0ZOys5DZ55nHxlJD8/E5ZGFOe8WG/c+X5OFzeLzkn - l/3MVBSlY6jAlSoqcGUAx41K2lGBKwkVuBSlE+ALB7+ZHi7Iy/uPLvPgijf8yHNbqySuFrhCog5JVBRF - UbZ1mMnFlYEpcgXl54WVYYx+1ItdJ8r75SnynGQ2l/3sTH6eKoqycVTgShUVuDKA40Yl7ajAlYQKXIrS - SYxsRp9hzdhnugeTnvHj8/owVq2nuGVNKq/ilqIoitIb4POOc022y7OPqwW7Vkbw3PIATrjdi534jnl8 - E7I4Ab0E6I7PU0VRnFGBK1VU4MoAjhuVtKMCVxIqcCnKVmB/+3yq3DPCPtPdGPeYD2+XhBBcHcF6xMzq - Uvak8k6BQHeH5U7GaT8ldZxsSpz2VbYcte/Wk2xDG6d9lc6lp9ud5Q3J848Tz7cLFcEIHvwsgP/c7MEu - p8kz82SBk89PSHiWKoqyaVTgShUVuDKA40Yl7ajAlYQKXIqyhfAlg3Nu8QV9WDP2PsuFcU948VZpCJE1 - EaySF/oIJ5WPv+gnv/z3FIJrvwvFOqf9lNShDZPtSpz2VTrGBiHAwb7qu1uG2rFrsZ8XTv0Eh/4l79/d - ocgVk+chKQ2E8chXAfzzlhbsJAF61snx56jTM1ZRlP9FBa5UUYErAzhuVNKOClxJqMClKFsAXzAmCpxH - 5Pgm7DXBhdEP+/BWWQiBVRGskxf51gRxq6cJXHaZA2tjEpTE0Gr+t/5F1sckYImZQKun1SvT0F4MUmlD - hnv2P9qXvzOgtW3vdLyyebiIAwnK/Zfot/wXFrsHxXedjlO+ZYMPij/yXk/0Vf5M/w1K36B+2vnQpl6x - O20fiducfkz4O8WintT3bvAjgVlckXURlAYjuGtREH+5wYshY+Q5eqI8R7n6sA5XVJTNowJXqqjAlQEc - NyppRwWuJFTgUpQOwpcLfvI+OakZO8vn0NtbMC83iODqmJlUni/yFDJ6WgDI8pKwBK+r17dhDdqwQkKr - NlOnmPlcJb+b7RLkMtB1Oo9iYduThMSmbWKvlQJtmGjXdvmZrOS2uHhgH598TsUZ21axdZbvcmEHy7aW - 35LVYl/aPka/7YH3Z7pJ9NV2sdEasRVtZvsq4c+0IWlf32r2TTw2+ZxKB6CoJf5r9bG0cdsGH2b/YNnd - ahsKjz3N5uF1lshFCrwRzP04gF9d5rGyuJgJzaDdfr4qiuKMClypogJXBnDcqKQdFbiSUIFLUToIv2Xm - t80nNmOIvGD8+YYWPPR5AI0xa8VEBiA9Ndizy8wga826NoRXxFAZCqMkEEaZUOoPozYShncVJ863sgr4 - zXxPHDbTFST6AW1qBIFVMdSLr1SEQigLhlEuFPtD8nsYYfnbKtmHtu2JAmmmoc1WrGs1vutti4p9QygP - hMywKPpvfSwE32or0Cbqt9+F/sYsQvrfKrFj+5pWuMWOlWHLV2nHSvFb9gGBlWLr9W1GLLQzitRftw5j - e4pYYvvwyhjqxM7l4sPsd9lH1EYi8Ml2irhso54o0vK+W8laro8i1xPB+S/7sf95bvRjJhdFLhW4FGXT - qMCVKipwZQDHjUraUYErCRW4FCVF+FJhv1iMFE5qxqEXuXHDe34Ue8NYIy/tKxEzL/AcItWTAg87sDXD - kSRw8qyM4MvaAB77xo1bPmzGTQubzefNHzTjxg8a8dDXLixpDphMI4pc4Xg2gdO5ezMM/GlX+gSXyq8N - h7GwzIc7P6FNG3HrR82Gq99pxC3yubDch4ZoxNiTQ8Hs4XRq201DO4fNam0xI8gsqvDj4S/duPmjRvHZ - JuO7Ny5swrUfNODZbI8RDZiJtHJ9qzmW96vTeXsL9C/agJmbzNKiGFvuD+GdEi8e/NIl9hM7in/eLHbk - z3M/bsLrhS2oDIYRWB01cw3Sz4nT+ZXU4D3vWRnFl3V+PL3UjTs+aRKbN+HG95tx3bvSX4jdX8xtQb4n - iMiaGFava0VU2qxFju0pfQRFaP7jHJWBNRG8XxnCGU96setkN7KGx5+vTs9fRVEsVOBKFRW4MoDjRiXt - qMCVhApcipIitsB1qsVeM9yY9JwPXzaG0L7OmneL2UwMNpxe7LszDI4YeFCsYoCb5wlg1rxaHD27BEdc - KVxVgt/MEeT3n19chD9cU4qrXq/H5/UBeCXANSIXA9yk8/Z26A8xCf4pV5WHQnjiGxfGP1aNI8WOv7y8 - GEfSpsJPLy3Gr8XG4x+vxrPLPaiJRcSmtOq383I5nV+xoO9SZKG93y1twfhHq42PHjGnGEeIrWnnX15R - jEPPL8SJt5fh2aUuNIuNOfwuSnFWjnM6b2/B+JfYgAIhh79VhUN48HMXRjxQid9fU4JfX1ls3f8Cf/61 - 2PJU+dt9nzUh3xc0gkVU7M92cDq/snmC6/gFQxRLmwK49JVa/OVG8dvZ4r/S//5KOFz6C/YZQ++qwJ0f - N6HMH8L69W1mWHOL2L2n9BFGBJV68l+b4F8dwfzcII69tQUD+HxlJhczpJ2ewYqiqMCVOipwZQDHjUra - UYErCRW4FKUD8KXi5GZsJ58jH/Th9eIgvPKCvlpe1Clk9GQxgllGlFSYyfFKjgdHXFCI/n9fggGnLMOA - kcsxYIQgn/2PX4aBQ5fhZxcW4fLXG7DMFTAiAYNjBmi9PRvGhn5ghiWKXTgs7s1SL46/twI7npmLAScv - Q3/Btmt/2ljYaWIeTn24Cu+X+80w0DZpEdpUBa6NIPcbRRVOHu9ZFcE3TX6c/2Itdj0jDwNOEJvSZ8ko - sfHwZej7tyXYZ3Q2Tn+oAm+VeOFdyfmAJMxe32rO12vtLDakQMg5ntwrInijuAXH31WBIWIr3usDhn17 - /w84VWx50jIMGZeLP91cimez3WgR/6aMy3ZQX+04zJyl7Wpbw3jiy2YcfXkxBomNB7KPGG7Zvr989j9+ - KXY5LRv/vL0cz+V54Bf/ZZsF5dielj1HQY//1ojfVIeiuGdxEEde40H/0U3IGiXvoJrJpSjOqMCVKipw - ZQDHjUraUYErCRW4FCUF+ELBb5VHu9B/jAu/vLIFD34aRHMrxa24iNGDhQgOhbPmfYqhwB/Eze824vsT - 85D156+RJUFWlgS1WRJgGSTwyjphKfpK4PvH2SV44isX6mJhMzzTnhfG6Rq9DbMCZXw+rdJgEHM/bMRB - M/KR9a+llg1PEWybDpOfh8r2/y7FYRcU4sb3GpHtChjRMSJBIINB+paKB99CW9DGXOiAwizn27rpg0b8 - 9MoSsWc2so4Te9r2tW0s9u1zwnJ8/+x8nPNSHb5qDKBN2mg12nrkfEadAevMIbFc3CAifvZ1kx9XvlmP - H5xfgKz/iA1px2GJdhTYJ/x7KXY/IxeXv1KHAl/QCCwUudgmmsnZMdhH8EuCrxr9uPDlWuOfWcfb/YTY - m/0v7f7fJaaf2OOcfEx5oQafVHkRXs2h8W1GJOtp/ktx2kygvz6KSn8UFy3wY4+p1nPWPG9V5FKU/0UF - rlRRgSsDOG5U0o4KXEmowKUoKSAvEeal+1QX/u9CNy59zY/lzWEjbhEGiD1t3q1EmD3Af64VUbxd6sWU - p2uxz3QJshhUnZ6DrAm5YoM4E4Xxsk0C3L1Pz8WMZ6uxqMaH0BoKDa3GFk7X6G0w4KRFPKuieL/Ci6lP - VmHXsWI3igZnxO2YaNNx8rcTl2FXsffQeyrw3DIXGtvCErpaAg59qzcKMBuDtrDngGOQ/E1jACfcU4m+ - 4+K2pI/a9k1kRDayTl6O315Tgse+csHTHsV6sTKD7d5oX9aZE8UzE6i5LWL87rh7yrHTpBz0oaA1VuyV - eP/bP5+wDDuIHUfcXY7Xijyobw1bWVzi9ypwdQze45w4/pX8Fhwv9/4e5xRY/iv9q+kraHNymmwbKe0x - Jhu/mlOMmxY2oCHIxU3aTbZoT8yepa+sEM9ZLzZYWBHC0Pu82P0sedZyqOI4wel5rCi9GRW4UkUFrgzg - uFFJOypwJaECl6KkyEgX+o9txqhHWvBNUwgReTHniokMLHpq9oddZkuKiaE2GsajEvT/8/YK7Dg5D1mj - JJhikGUHt3aAy20S3O4gQdg/55bjETmmJhKSQK0Vrb18uBfrzaDNkgxjqBa70Kb/vr0M248TezIjww5a - E+1KIXF0NvpK8HrwRUW4+p0GlAaCZo4dwvP2Vps6QVtQRDQZIMJntT4cfU2JEQmNwJVoWxtmJVIgOH4p - fnxBIa4VG5f4wnIftyEi5+iNIhfrS/utExtwEYQ7FzXil3OK0Xd8trwPiK02JhSeuhyDpH/4/XWluGNR - Ewq90ifKeSiW9VaxcIsQW3F4d+vaVjz4RTN+NrsYA9n30u7sJ5LtTsFx6DLsMy0fk5+tQZErBFAiErv3 - 1OHhXCCCc795V0XwSn4Qx9zcIvWUZy7RLC5F+S4qcKWKClwZwHGjknZU4EpCBS5F2QzxF4l+pzXjx5dx - ZSs/gmsiZtVETh7OQK6nBnN2uSlMtQtlwSCuk6D/sEuL0J8i1ljBziKwYZA1XhiZje3l56OvL8VtHzaa - Zezb17dKqKUCF4drUTQwQ+cCIdz+cRN+f0MpBp8Zz8CwRcNEu3Ibg9oxOdh1ej4umF+HgpaQyazhZOg9 - 2c/SAW3xrcDVisU1fvzmymKTWWgyXZLtSygqUrQ9camZcP6SV+uxzBW0MmjkH4eE9jYbUxShwMIstqpg - 2KzuecilYsexOehDO/JeT7Yj4fxc4q+HX1WMOdJnZIsd7eGiKnB1ALEV7/H2Na24/r0G7DY1z/Jf9gXJ - fa+dxXX8Muwq/j320WrkNlLgWtmjBS6D3HsQ32mKRHH2PB92PsuFfuPkXVSHKirKd1GBK1VU4MoAjhuV - tKMCVxIqcCnKZuCLxPBm7DHdjXNe8OOjqpCZWJ4zznACcMeX9R6CHYRSICBFviAunF+HPTgHDAMpDvfa - mMA1IhtD5Oc/3lSGOxdZq3qpwGXVO1HgKg+GcNcnTfiT2Gm7M8SmHCJn2zHRrrQzM4/G5mDvcwpwyat1 - pj0Y/BKeV0WDb6EtEgWuT2t9OOqqEmsI6OYErpOWmbnOLn2tHsubA6adVOBqQ1UojJs/aMShl8UFLg6p - 3ZjANTIbA8XOv5xdgmvfbUSOWwWuLUJstUasRoGL9/yg0WLzkcvF7vK5MYHrhGXYc1IeTn+iGvlN24jA - JXZYR99ZGcET3wTx19u82GmKPHv5PsqhiipyKYqFClypogJXBnDcqKQdFbiSUIFLUTYBXyL4cj2iGb+4 - yoMXs4Nobo+YIRWh+KqJji/rPQQ7CKVAwCyuYl8QF71Shz03CFwOQVaSwPWnm8tw1+Imk6nE86jA9b8C - 192fNOGYVAQu2nxsDvY9rwCXva4C16agLZIFrt+qwNVhEgWu6rjAdZgtcNGOmxG4fjW7BNepwLXlxAWu - FWtacfGrdRhIUZF9hJPd6b/8+4nLsNfkPJzx5LYjcNFfuBJxZF0EFeKH173rx4EXuMXP5Pmr83Epyreo - wJUqKnBlAMeNStpRgSsJFbgUZRPEvzneZYYLE57yIs8TYighIZy1sp3Ti3pPwg5CNwhc/pAJ+vedWWCJ - WwxwVeDqEKz3/whcYp8/i51U4Oo8aIvvCFw1cYHrv6kJXD+aVYhLX6/HcpcKXIkC1y0fNOJHl6cucP16 - Tgmue08Fri0mQeCiPw5mPzBqI3bfhgUum5A8Wznh/IflIfxtbgsGT5BnMAUuDlV0ekYrSm9DBa5UUYEr - AzhuVNKOClxJqMClKBuBLxFyLwyUF4jj7m7B88sDqItFzLfMHJrY07O3iB2EqsDVebDeKnClH9pCBa6t - RwWuDKMC1wboM1zRF2KPcl8UV73pM5nT/c2zWFCRS1GkLxBU4EoFFbgygONGJe2owJWEClyKsglGNWPn - qS7MeduPmnDYrI5nxC35zORS+AwEnHDad1PYx3QHgSuxHsk47d/ZOF3Xxmn/jcH9u5PAZR/nhNP+6cSp - DDZO+28KHtMdBK7EOiTjtH9n4HQtG6f9N0V3E7iS67Ol50kXTuWzcdp/s2RY4HKqRyJOx6QLXo++s0Lq - EpSfF1eHMPYxL7afLM/ikfJeKgG943NaUXoTKnCligpcGcBxo5J2VOBKQgUuRXFAXh76CH2FH1/uxvPL - gxKERNHaDTK3eP2wBPYRIZr0yeDA6ZiNYQcwmRS47P1CUnbWwcbUaW3MbE8+Jh3Y17dtmQhtznKmUifu - 050ELvpEWOyYXLeO+srWQkGYApJ9fRuWKSxl6ahgTFtkUuCy90v0W9Zlg43F5raNt6TdNoYR2ePXTPZV - 9gt2/5TqNTMtcNn7sdzGV6UOdr0s3/i2TpmG5Uu0dyJb3E/JcZkQuGy7J9Yp0X/ZDunw383Btg7Ifbha - nrfhlRHctNCP/WfKs5jiFkUup+e1ovQmVOBKFRW4MoDjRiXtqMCVhApciuLAOBf6jGvGPjPdGPmwFx9W - cO4tCYHXy0v4lgYyWwEDDMLgljOAMSCCBKSQ0N5mnfzO8JLlY6CTSlBi75MpgYv7tAiWINQqQfa39SHr - ZRsFDAY8qZyvo/CcxL5+4rVt1sl2Bu4sZyoB5Lfny4zAxX3s9mc56C+rjK986y/0H27n31M975Zgn5tQ - PFol10y0rUWbubcYTKfqt4T7ZVLg8gi+tRFzLP00uV7GxtJfsE70HadzdBSWjXP/8V6lIJV8zdWynb7a - kWty30wJXNzHtLnsHxRb8Wj6enKdKN7Yvup0nnRjX5c+8r92bzN9REx8cUN94vunhNSrqwUuu5yEYtZa - Y/Pv1mu1/B5b/+3zxOk86cCUzdgkhpVrY3h2SRBHXefB4InyXKbIxcDe6ZmtKL0FFbhSRQWuDOC4UUk7 - KnAloQKXoiTBFwfO9zGyGb++2oN7FvtR5Aub4I0BcFcOTbQDJQZ3DOa5eqNvdRTV4RCW1AfwWZUfX9UF - 8I38XOwLmX0ZrK6QwISBC4+3STyvjb29KwWuDWWSOjEoXCVl5THNK6LI9wTxZa0fn9f48aVQ4A6gqS1s - hIJW2bczg1wGbSEJoNriQXlzexTLm8Sm1WLT2oDgx7KGAEp8QQTF5qvWt6Fd9rWD903Vj+XsSoHL/hth - 5kW72HS1QEGJgkhNJIxcVxBfiE2X1PtNmTwrIybrJCj7p0O0ZVkCYl+WJxa3G/02u9my7RcC/ZarGNa3 - ho3frpL9bDGD7bOx+hL+rasFLv7NiDFy3ZXGvm1oWRlFiTeIpeIr9FmyRH4ul/vBvypq/MsWPzZ17k1h - jpPrcn4i2tPdHkFhi3U9tumXdX7juzWRkOmneE/RV+1jN3Vd2rkrBS67PIR1oR0pYhkhmz4idaCPfC73 - 4dfiH1XiM0HxI56bdt9UXdIBfZh9Kfsfd3tY+tmA1dbiv+wnvhbbF0v7B1ZHzP22Mt5GifV0Ou8GpM5d - JXDZ9xTtyGGA9JOQ/F4h/cGyRqvvo0/x50rxBR5DWY9ZdH6hK2zPa7CctOWada1YVBHG2Ce82O88t9Rd - nsuEi78wyHd6fivKto4KXKmiAlcGcNyopB0VuJJQgUtRkuDL82gX+o5yYejdLfiqISQv3RETtJFMCFwM - Xhg4tqyK4It6P+78uAnjHqvGcXeVY9TDVRj/eBXmvF2PD6u8cLdFJNxp4/fvG8q7sTLb5+9KgcsuD7Oy - GMSsX9+GxnAYC/I8uGh+LU59qBIn3V+Jk4WLXqnDm8UtaG61gsfIZgSIjsAgisIDg2uXnH9BoQdTnqNN - KzDiwSqMlHJMeKoa171Tj2USaK9b1y5laEVEQj7a1emchOXraoGL0Kact6ZVfIVtEF0TQ20khM/qvHj4 - iyacO68WJ91XgbGPVWLuh434XAL0lpURKaEEsMLmzt9RaF8G0rYdSgNBU44pz9aYNh72IMtShWnP1eDJ - pS4jflEIo9+ynVmXjfktYVm7WuAyfitty6CfWS7R9jZ8WOrF1W/V44wnqnFK3G95P97+caMRQlautrKt - KGRsqX15zZDJcGKbRvBGkQeXvVaH4Q9UYqi0Ke05Wez6wOdNyHcHsGJ1DOtkXx7DYzdlR7ZTVwpcxoYC - hVfxUqxZL/fUyhgqg0F8UuvFQ+IjM16owYn3VGD0o9W4e1GTtJH46iqrH9zUvZcOLB+TMq5txceVXsx+ - q84IS8MfrMSIh6ow+hHpe6X9P6n2wrdC+l6pD32Yxzmd73+Q+nSVwMU2oT/Qj5i11boqhq8b/LhN+oOJ - T9fghHsrpO+tkH6vxtidf6MAxj6S9dlS/+0ovE6b+MZqqVO5P4K5HwVw1LUtGMBn8wiBk82rwKX0VlTg - ShUVuDKA40Yl7ajAlYQKXIqSBF+e5UV616kuzJznQ2NbRAJA5xfxdGMHFAyAGMgvaw7gEgmCfiaB/F7n - FGCXGfnY+7wCfG9WAX4+uxjDH67E3Yubke0KmiyeDcNn4sEPh1UlBkH2+dMtcPFn+7rMaLGG+bQhsjqC - T6t8uOm9BgyV4Oqwy4uwh1x7t7MLsPO0fPm9GFOfq5WA3mtEKGalUJRKPn9HsMvBczGDoSEawfPL3Rj5 - SAX2v7AAO8p195Iy7CV23f/CQhxxbSnOfr4WC3I8qAqFTVuw7DyWwWny0EWWqysELtumzChicGsPM2Jw - neMJ4qEvmnHuS7UY82gl/npbGQ4VW+52Tj72ODsfv7ymFFe/24iClqA5bo0cxXMl1mNroQ2YccTsu4pw - CE8tceFfd5Zj33MLsMe5+dhzZj72vaAAB19ShL/OLcdF4ndvlbQYgdYeLsWhizxPst8S1j/dApdtY8Jr - cRiwaXs5ojwQxNNfu3Hm49X4xZwSuQcLxb7WPbmn2PhPt5bhlg+aUCxtQdGD9yAzBhPPvzns6/OeWb2+ - Dc2xCJ5b5sHIR6vxw0uLsLu0565yr/Ce+b746p9uKcOsl2vxSrZH/Dpk7n2Wd6V82r6afH2eP90Cl10P - /twW75dITPb7qs6H+z5pwnlS7lGPiK/OLcP/XVaIncWOe4g9f31dKS5/sx5fNwTQJvajIBZck/pwvK2B - Qhzb3bs6ijxpx0tfq8OPryjCPnJ/7iF+zD6C/e/PZpfg1IerzH2eI30vM2ghVjV1FJvQ7k62N4gN0ilw - cRuh2Mz7nPcV27pS+vpnl7gx+dlaHHF9qfR1ReJL+dhF2Fvq9rsbS3HlG/Uokj6C9aAslnzudEIfamXm - rvy8uCqE4Q95scMEeTafwndU+ZTA3vH5rSjbOipwpYoKXBnAcaOSdlTgSkIFLkVJgC8NY13YbrILR1zj - wX2fBswE2MwecgxO0owVYEWNCNEsgf/jX7vw22tL5SV/uSWUMBgaL4Go0HdcDrablIejJFi5UgLC98q8 - qA2HEV5NgS5mBB1OIGwHnza8TroELhvakMIUh8WwLMGVUdRIMP1KocdknvzsqmIMkYCNdTHnHidIkMcA - ++CLizDz5Tp8URfAynWtJmjn+bc0wOVxFE1M0LaqFe+VenHao1XYfZpcf4zYdAzrHK+3lKf/hHyxR6ER - Z+Z+3GSGhLpiYlMpC+vDoUscwsRzs672+dMlcNmwHWlTtittHpYgvE7ae2GFF7PfrsfvbyjFzlIn+sQg - CYz78Rq073DxnVHZ+Pvt5Xg5142otIWdYZRsq63Bzjp0rYjg9SKPCcZ3mZYvvrtM6smyWOXpK+Vi2Wjj - 0Y9U4ulvXChuDpqsHgozFLloY94HyTZIl8BlQxvznmkXWBYKLM2RMD6v8+O6hfX469xSIzT3jfuKqRP9 - R9p4sNj92NvK8eCXLtRFw3IPtxmhqiN+yzJQGKEAsn59O74R35vyTA32nC52HCHtyHuU90rclgOkzt+f - VYAT7qnAPZ83IdcdRIv0G63r6autxo6so31ufrI86RK4bDgU1r7/Oawzskru/3AIb8m9d85LtfjV1cXY - 82z6ai4GTcxF3zNZL4H3o1znSPn7o2LHlrb4fSvnol0SbdXZmLanwCLwPrz30yb8hn3v6HgfQbuwnzDt - noPBE/PN3ykKfVTmhzcqdl1jzZfYKn1Fct+74VqyrbMFLvsafH5ExWdt/6UP+GIxLG8I4tYPG/G3ueXY - fUYB+tDWtv+yzcXmvCePvLYEj3zZDI/cw7zPeA37/BvKnyZYF97zkOs2hKO4aIEXB8x0oc9weT8dlfTc - VpTehApcqUKBa7jgpAcoacJxo5J2VOBKQgUuRYnDFwZmb411mcnlT3/Ch/fLQibIaUfXvNQnwutxLhcz - 3EWCoMU1fpz9Qg0OYnB7/DJknSqBFoMhBrgmGGRgkoPtJUhkJtR/7irH5W/W4e1SjxFk1ktww8mwOYSN - 52cAYdcpHQIXz08o9jCwp0jHeaFqwmHMy/FIwEKBoBzfm1UkL2lyPgZuY+WT9aEAMkaQOvYdm40/31KG - p5a4EV7JoWFtZvjalraHPacOBYeKYBg3S0D/i0uLLOHlVIoG8TKYclh2ZaC//dQ8/OSqEjMk6c5FTSiU - gJ5zxLA8DNo5T1BindMpcLEezAxhRhGHeLokmH67xIsr3qzHcfdU4CdXFGGHSfFriU9kjRZMECvXGCbb - hi7HobMKzTC3bAo8ci5ii0jJNusI5nipPwNqim8l4lM3vN+Aw68qRj+28SlyfbYzy2LbmGKmlHHPGfn4 - w42lmP5cDZ5b7kaZHMvAH3IuijC8D2hf+zrpELiYrcNr8Pyc886IS0J4TQyf1/pw8/uNGPFQJQ65ohjb - T8mzRCDee/RZ1od1o83Fl3afnodRj1XhgwofVq9tNZlc9rmT7bYxmHljhojJ9Z9a5safbyrFwJHip0Pj - 9dzgq4KUo+/4HOwqfcSvrikxAsh9nzUjr9mPlaute8cIzHE7shz8TIfAZdvRLzalr/L+J43RMN4qajG+ - 9887K3DARcUYyLZiu7BetCXrw/uBYpK05wFy753/ci2WSlvRhvwXELs42aszoF3YR5h7WMr+bqkXpzxQ - gR2nSN/Lfpd9k2133lcsp9xrg8Quh1xSjKH3Vho/4ZBG7wqKNNZiFRT5aJPv+IDYKh0ZXDw/7xf2ufTf - iLT/0iY/7v2kCWc+UYOfzy7FjpOlPiw7sUVnftJ/R4gfTcvDiIcr8WZhC1pXWZmeLG/iddIFr8FhrCy7 - PxbF/Yv9+O31Hgzks3p0/Fmd/AxXlN6AClyp4hWOE5z0ACVNOG5U0o4KXEmowKUocTi/ByewHeXCDy/2 - 4Kb3AhKcR4zARZxewtOFHXhSIGBQWBkKYe5HTfjV7BIMZgDIIIuBDoMeBkTMJLBFrjHZliAz0RK6Tnui - UoKDZiypDcAvwRZFEcJAkQEEr8OAsTMELvs8PCfFB67ExcCZAk1dJIwPy7245cNGnPJQJf7v4iIMPiPP - uoYRCASe19RH4LUkiM4athwHXVCIWfPrkN0cNJlTWzLci1iBK4d7UrCImmwnBol7T5FynLDUCrJZP7sM - zGqgHWhrBp1Szt2m5eP3N5ZJMFqHt4u9KPeGEJXglDalaMZMDQaBRjKRclLgumcrBC6TeRG3KduL7Wa3 - oU/ac0mtHw986sJpUg+295CJeSabz2S/UNjaYFuB12EwOywb28vPx9xajoe/cqE+Zg29ZIYPr+Nku1Qx - bSL1Z/napY2+rPfjjCeqsBODcyMOsCzx+to2ZvloX7H/QPHl751fgH/fVY45bzfgzSIvasX/OQE9fcm2 - sSmnnJ8C8NYKXGwrthjnhQus4cIDdnu2wtMqNm4M4JnlbkyfV4sjry3F7lOZ7SfXGC3no2/Q3t+pkzA8 - G33F/j+5shg3vN+Ecp/cH2IXlp0C6OZ819xDsh/bPyI/fy1lOOflWnxffMNk4cl9Ya7FetnXtH1V6Dsu - F3vPKMCfbxVffa0Or+e1oDIYNn0KRQPakXOdMROKNtxagYvZYhS4aEczEb+0DRdm4HnpW+62KD6r9eHO - Txox9vEq/PhS8dUJYkeW1xZZEvsBXoP1GbocO5yWi79KPR4SX2U/wjq0yX1MO3W0D9gcbBvCelDkqo2G - zRxVB19UaN1PLG9iWyf2vSOXyztUDnaanIfDry7Gmc9Um/sruymAgBG67L63zQiXtL21YuDWC1y0vWdN - xAj4tv/S9uHVMTNs8sUcD86bX4vf31SKvc/ORz8KWbwXeC3b5hv8iH/LkX1ycOCFhebLiApvOC7ki51I - kt06G7Yr70cKg5H2KF4vCGLEw17sPl2e0XxHleDePLd1Li6lt6ECV6r4hH8ITnqAkiYcNyppRwWuJFTg - UpQ4FLg4t8coFw6/yoMXs4Nmgl1mdTCzxeklPF3w5Z4BLud5YlDEFRMnPl2NIQymJOD7n8DHhkE9gy0G - Ladmo48EQ3vMyMMR15TgrOdr8FK+B1XBENrjQ2eYocAVsky2jVDkD+GSLRC47vykCaXxDC4TkEvwxk9e - I7YihjxXAA9+2WyyAX56RRF2lTKxbN8RPBKvQRjM8W/Ds7GLBHPH3V2B53PcZqgmBTOKRx0VY2hXDtcy - gls0gkcl+PzH7eXYiXViBhfLxOsml4UwIGR5GdhLYH7grCJTpqvfa8DHlT74Wq2hftby+tawQWaulW1h - BhcFtMKEDK6ItBMDeyNESftxlbMXcltMux55XQn2OFvajNlDp8o52P5sv+RrmOvIdl5n2HLsMT0f01+o - RXajNc8OhzJt7dAvE5hKAMzzta1uxcJyH/47t9yISmzLjdqXPhAfkkaxg8Mqf3hxEYbeV2lEEa4SGF1p - Za1xpTraI7rOyuyi3y3eQoGLWUHMOuI52G4cTkZ7M+Oqzh+WfsCDGS/W4pibS7HfBYVWthHbkFkuFAKS - r8G/E2mDPiNysOf0Aox7vBrvlHrhXxUx7UfhanPCDH2b9xHt2BwRX/3Chb/cWobBFIUotLCOydcm9CO2 - PcsncP+DLirEv++swM0fNhqhjGKLsSPkGub+jwtc8YzGLc3gYhYR7chyczjiOvlt5Zo2lHnDeHaZGxOk - Dzt8dpH0Sfnoa3yVbc1rONSFNmRdpA/oMybXzAs17YUas/omhVOKj7TT5uzYUei7FJIpenJiew5H5cII - O3DYJIVFJ7+yy3ua1If+RR8el23mu/vt9aU47+U6LJC+l4tprF5r9RHsh9j38tnSGQIX+xqKT/Rf9j3M - LvW3Rkz22YWv1uMfcyvwvfMLMcDcA1IPlnFT7cu/STn6j8/D8fdUYFG134h+fB4akcvBdp2J3Y+slmtG - 5XNpUxgXLfDjkIvd6DdW3lFHCgzyVeBSehsqcKUKBa5/Ck56gJImHDcqaUcFriRU4FKUOLbANdaFP97U - gsW1nKTZGhbFjASnl/B0wZf7RIHrCwkuxj5She0YWHN44pkS5DoFWnZQaItTo7PRRwKZQRJ47Xd+Af51 - bwVmv1OPd4pbzHxNnLCZ5+cQGg6DKvSFcLEEQx0SuG4qw+2LmsxQNOt87eacKyTILZHzPb/Ug/Pn15tM - kj2m5mEAy2TmurIDLIdr2NeJi2BD5Hde575Pm1EdkutIWTl0aEsELk6+z7qWB0K4Q8p99I2l2I7Xo21Z - Hie7EpaRf2eZJOjuK/vvJNt/dmUJzniqGk9+40JRSwjtElhusKlci8IfBcAOCVxi/4tfq0OBN4i163ku - TljdLvZtM+32VrEXc95uxD/vrsS+5+djsATTfSho2MIH287pGonbJEjeSY7jKpyfVQXMNVj2zha43pGy - /kuC/D7/WmLNHTdJfDe5TDb0K2MDsZHYqZ8E2LtMyTMC3tkv1RqRpMATQHiVdX7ahEIHswY/qfbhqA4I - XIfNKjRi7pLmgBFj1xu/5fna0NwexoeVXlz/XgNOuK8CB84qMOIys3NM+/P8m/JbXkfaoo/47m5T8s1q - ewsKW+BdaYkZnJNuc8IMfZtD2limWn8YNy9swE9nl1iiE8uwMWGC2CIm95P7ra/Uecczc0wG6PQXa/Hk - EjeKxLfa1lgCGtt+3fp2VIqv3iTX6ajAde27DSYTzppA3rr/18rPXPHxzUIvLnu9Af+6qwL7npOPgWPE - B76TrSXYdvyfe4L7yKfYcsDEPDOR+8JSL9rFryieMZNoc3bsKPRdik7MRXOtjGCh+MHp0vfuaIaFSt/L - tt3YfcV6mH5T6kcRSXx48Lhc/OCiIpz4QIWZ9+oTOV99NGwWDaCtuOItfbh9TatZQGSzAhdtJvfunnIf - nf5ENXLiAhcFS9p9nZy3MRbGx1Ve3Le4CaMfrcKhlxZhZ3lm9OF5bR9mOWnf5GvY1+HfpfwcOvzPueX4 - QMrNNVe7UuBi+3KlTU5xz8Ve7l4cwG+u9mAQBa5hAp/ZKnApvQ0VuFJFBa4M4LhRSTsqcCWhApeiCHxZ - 4JwewqBJLpx0nw8Fbq7mFhe4kl6+0w2vR6GBw9GYWcEhJhfNr8P+0/PRhyIBgxQGJ06Blg3/xiCFAT3n - lpLP7WTbjy4uwqiHKs2kyUuaAvC1cRJ7K9iql4B09psNJoPICtR4HYfzMviKC0/H3FyGB75oNkGVFdi2 - oVkCuI+rfSa7iRNtHzizEIN5LMvBLAgGuJsrP4MsCh1S3x1lv3/fUYFnlzODS4JDCXuYbdPRduH+DMJN - BpeU97Gvm/H3O8qwI69Hu7K+vG5yWWzs8nI/1uPk5RIAcihYvhlCdeVb9Xiv3GuJh+to01Y0t4bxoNjn - L7fEBS5mrdCmyXXnNp5X6rzv+QWYLefiedguFF9a2mJY0hDEPZ82m/b7kQTN25lgWMpBu5qMDPl9Uzbl - 30g8SN7tzBycKUHyVzUUuNo7XeDivD0LxR4n3FaGPicuNUMjN5TBqZyJ2+njzPgasRz9xBf3P7cA/5hb - hiverMNbxS2oDUawcq3lt/TfJQ0B/G52KbL+sxmBi3YaamVwXfV2A0qCFAisoWOB9iiWNwfx2BIXxj9Z - hZ9eUoidKMjxHmJ7m6yt+Lk35if23+Q6faWt9z+nADNfqsXXjf4NWXicQ87JdolQ4OJwRpatSe5LZkD+ - 4aZSDIoLD0YgTrSXUzn4SbGF/jFsuRkyuf/ZBeKr5ZjzbgM+qvShKRrBmvUUpVaYSdzvWtRo5nCjH25O - 4Bokfz9iTokZdkzBmDakCOsXO37d4MftnzRJX1qJ/7ugENvTJpwYf/iy1O5/+29sL6nvbtMLMPnZanzO - DK411hDLdAhcxM7g4jxiX0m7nfV0DXagD8g9Y8q1uT6CsJ1YdvrwqBwz39XhVxbjTPGr+6Utl4mf+eWe - prjKNl4lvjz7rQYMpr03JXBRnJJy7D05D5OfqkGJm33EKmOPwMoocui/X7lw5tNVOHJOMXY/i/PESRno - A/Qb9hH2uZLPb8Py8zoURifmYtwjVSaDkplhtA0nr3eyWzrg9cw8e3LfvJIfxLG3eDCEUwmcpAKX0ktR - gStVVODKAI4blbSjAlcSKnApihCff6ufvDjsd74b057xo9KbOYGLMMBllhLFmKbWiBF3jrurArswMLFF - Lgk+HAOURCiCEAbEJy03AhmzYo6+odRkxTwlwXyxL4jWta3wxKK44Z2OCVwUbri6o7stYuZ7yXX7cf/n - TThdArnDLitCf57j5PjwNDu4Sj6nE6wng0op74HnFphhYsy2YaDDf5zja0sELg6f4pxD/FxU7cXU56px - gASBWRRgGHizfk7lSYb7sW4UrIYtR/9xHFJXaIZh3r2oEdnNfjPE1dMeNvahAJaqwMVsuxvfbYAraq3W - SPHg8W/cOHteLY6+vgS7cnJz+oC0pyV2xo9PPJ8TtGm8zH3Etj+9othkKVV4LZGnTWzSGQIXhQeTlSLn - +6YxYFbK3JUrKNoZJCxLKnZmnZjhQ5tJXZmJeMglRWLjCtz2URM+q/Ubn6PIldMUxB/npChwnbgMP7mw - ENdK3aujYZMpWREM4YVsN855qQ7HSltxnq0+9FvOdcUy0+dTsTH34dDF4csxeGwOjr6uFI985UJwlbUa - a6rZL7z/GdxTzOUE94vr/DjruVp8n8P72Pb2cLlU7EhYft6DJy0zvsosrfFPVBnBNM8TMCvsBVfE8PBn - zfjplakLXL+ZU4I7Pm4yK7ZyrrBCbwDPLXfhrOer8aurS4yw3edkKSvbkJOzd8RX2QdJWw2R+/JP15ea - slbKdTgMkuWlndLRN1OgpcTFea1q5R68/v1G7MMhwBz+uzF7bAzWlZmVw7LRV9qMfvXHW0px/oJas5AC - 59njlwKr17bj2rcbsB3PvzmB64Rl2HdynjynalDm4XNqpclsnZfnwvnz6/C328qwF/3EfKEgducxHSk3 - 213KPFB+/uXsEty6sNEsVJJOUXFj8FoUuPhlweLKEIbe04KdGNyfqAKX0ktRgStVVODKAI4blbSjAlcS - KnApihBfPXHwBDd+fpUHs9/0mwyRTApchBM1c14bzq+S7wvh6ncbcOjFEnxKgLNhkunNBbn23ykUUMDh - t/ijsrHdadk4YHo+/nJzCa6T8y6q8Zlv6a96owH7UeDi/hSkkoNRcy5Bgr0dz8wzYsDdnzTjs1ovXitu - wcWv1uHoq4uxNyc757WYtWFnnKRaXn4yKJRAfoAc95ebysx8WS3tzAyysggYaDnZbLPIcQxcmRlXH47g - /s+acMRVxSbwN0Icg8HNlZHYfzfBoGXXviMlgJXtv51djIteqTP24Mp794h9jr213AzpNLZIPN6GtuG5 - xmabSdZnv1GPJQ1+fFbnxw0LG3DMjaU44Kx8bCd/NwEwhRoKgGwLniv5fInYf6fwwiwqqedeZ+fjjKer - 8G55i5kbyp47bWsFLkKBgMMGGZhWR8J48EsX/ipB92AKFhzmlYrIlVgntonxpWz0E7/YY2IufnZZESZI - gP9asddMPP5xhRe/m1OCrOOWWsKI07lt0VTK8JMLi8yqk5+Ljb+oFxt/0GiEgf2n5WEHHs/rUSBg29ri - wKbKS/h3tmFc9PzeOQWY9nwNvpLz02/tVRSdbOYE7cg24RxZnKT98a/d+PONZWIDOT+ziWxxM9FWTth/ - ox051E58h3bce3I+fiO+yvnePpb7f1mzH7d/2GgJXFKPVASuI68pwQ3vNWBxtQ/viC/Nfrse/7i51Nhx - EMtJW9BXef93yFfjdjx+KfaTfurcF+rweX0AUekTmYXJFWadbNZZhKWP4KIZnLT91SIvTrqvAjszm4/9 - Luu1uQw0klgX3rMm03I5hkjfesA5+Sb7lSJrriuEhmjEDA/fbAYX20T8dx9pO5N9Kf5bFYrg7k+b8a/b - y3DQWXnY0T4H7cd+1B4Gmkp5jd3ZZy/HnmcXmPnHPpU+jPNgce6wrha4eL/YAtey+jDGP+bFbpPleX1S - k9gi4RmuKL0FFbhSRQWuDOC4UUk7KnAloQKXoghxgWuHKW4ce1sLHvg8gIZY2MzBxYyLTAlcnPvLXkmK - GUvvlHkx/MFKbM9AxA5eKFoweCFOQUsizPiygySKORIk95eg9/Cris0E0Je9UY/hD1WaCZ37cn/73Inn - 4LW5bWQOdpSA76jrSjHxqWqcN68GwyQI/L8LCy1hi3OFnSyfDJh4TZJ4HifsenAC6pOWWVlGlxWb4Xq5 - rqDJtNnayaUZMFE4oMDVvrbViBucqP17EnCawI6ZMSyzXRanciZCe7BuDCIZ/IpNOecR7XDK/RWY+UKN - sQ/txBUOjcBiH5d4Hl5LrttHAud9zivAMGkHrmjJ7Kdfzi5Gf4oZFDaZDcP24/GpZPDZUKyMB707SLud - cG8Fns92o7nVmrQ/JAE9fa2zfJ2rxPEfJ9Lm/EzXvVuPQy8sEBtJHVgOlsfJv5xgXQkDd/o9xZ1TlmOv - GQU49b5KMz8VhZUfXVJkZTeyLZLta5+HQou088EXFGLUo9W4Qnx+Gm18pdiYduVqmlzIgfdWqn5LTPsJ - FJDk3tpJ2vqEeyrxQo4bLW0RrBPf5QTgFBA7YmP2ARS41oi/5nmDpp4/l/vV+APFSiNykYSybAz6C6F9 - mNlzopRV7HnYxUUY/3i1WW2RKxwefLHcw3F/3KjANTobg+Q8v7iqBOMfq8L5cv+P5iISlxVhIO9f21cp - qtn9jlObOMFrs53lftphci6Gyn30cp4H7pURK6OtE/10Y3AYKb9cYCZXRTiMp5e68KcbSo3vGDjsb1P2 - Scb2I/of7TJ0GfpJ2/1C/O6Cl2pN1uvQ+6swYLz0EbQZz5vcprQfryltt8ukfDP8+7r3600W5p+uLxO7 - y98o8NqZnYnX3Ry2/1K8kz5wiLQZFzV4frkbgVURsbr1ZcsWf7GwhbC/ZsYtBa7C5gjOe9mPAy6Q5/XI - JvPMNoG+0zNdUbZVVOBKFRW4MoDjRiXtqMCVhApciiLwRXmMvChMd2HEQ14sKAzBtYKBpSWGOL14dwUM - 4giza0hFOCSBUDP+eUc59jw731qJkIG4HRA5BS6J2AGmHbwy2BqVLcFyrplraN/zC/G9WQXYdUY+BnC1 - tuQAy4bb5ZrbT87DQRIc/58ExPtMz8cQCfoo7pjgamNB2qYwZRJYpxHZOGhWIc5/uc6IUDFphxXSHlu7 - oqUdGFN8YWZAc3sErxe3YMLTNdhvZoER1RjkmQnFWR6ncm4MCg0USeRY2mHIuGzsNS3f2OcHlxRhMDNA - 7GGaToi9OJn2LmL/faUd9pH22FkC/AEUDEwWjJzbzsbg/qkIBmwDlkls2lfahCu7/fPOcjzwuQvVobAZ - dkSBi0JKZ4oGPJdZTU9s7F8TwYeVLTj9iSrsf34BthM70L5m0utURS4buz5yLNuK2VaHiK1+PrsYO4sP - mr85HWfDNhU77C52OPSKIhx2YSH2Fl8fQGGTNubfiX0/bc7G/DvLH2933lPbT8zFMbeU4+7FYuOINWec - mZw7bhcne20MBvjMVuJk5Jx0/psmH65+p8FM7j6IYojxVSm3qbewqfLyb/bf4/cwher+o3Oxo9hgH/H/ - 711YgN3ENoPYRtxnY20jfjzgjDx8/0Kx4WVF5v7fQXyzPwUS3r8sj+2rm7Mh4T5ic9OnEWnb3c/KN4L7 - C9ku1ES4SiuzqiyRpSOZcFuKPVSRC1NwmPhVbzZg/wsKMUhsZbLbjN2T6rE5aA/6F31FbNV/xHLsMyUP - v5xThP0viguLtu85wb/LNQdK+1AI/7H48A+50AT7LQrsLBfPv7F2c4L70ubSbpzvbudpefj9TWXGz0q8 - XGGVU73HunyxFcJ2jq1n5m4MVb4orn8viMOv8aCvCfAFfjmlwxSV3oQKXKmiAlcGcNyopB0VuJJQgUvp - 1dgvxlw9UdjjbDemPOfH53Uh83LN1Zu6ckLdZBgME2ZvcVl5CgYVgSCeW+bG+CercdBFRejDYCgxoEwU - QDaFnVHB40YIzOhgcCpB8qCJeejHlRqdjrORa/SXc1Dk6s9rMuPilGXW0C7+bmeLOB2bCMvK/VkOE9jm - YICU62dXFmPWq3VYXOtDaI01F1lknQQ8nRVkybk4VJH/3O1Rs1raefPrjFAykHZhAMrhgMau8XI6lT8R - O1OF9aEdaA+xS3+x6RAJYvvxb5s5Tz8Jnhm8GrGM7cFskZHyM8vBcqViU8LjGejyODlPX6kDRbZxT1Xh - 2WUeVAVCWCH1t+xqzWfWUfFlU/BcRiCQa1CYcLVH8H65F5e8Xoc/3lyGHackzMllbCyk6rfGxgKDetpY - PvuJjfvQPk7HODBgci4G05a8PoUBClwUK+w23Ny5jN8KFOji4gDtvf8FBTjloUo8/pUb5T5rviiypQKi - OUaO5ZA5ZnJxiF6+J2Dmvfr7HeXY5SyxI/2ko3a060kfoX+x/rSnHE+RdZMCN5G/McuTfj2Q52Hmmn3/ - 85zcloqv8hqEx9COFI3EpgdfXISJz1Tj9UKPWaiBwhaHJjLLcINdugAOh6bdeZ8sbQ5g9rsN+NOtZdhl - ej76sf05r9gGuwtOdUyEfmX7F+tM3xP6ys/9OuC/9HUry1bOwWHgPA99kOe2z590zP/A8rLctDnbbWwu - DrywCMMfrsLDX7iQJ/WNse8V3+Nw+a4QFZNJFLgaIlE88HkQf53bIs8oN/pIgG9ELhW4lN6EClypogJX - BnDcqKQdFbiSUIFL6dXYL8Z8SRb2OceNWfP9yPeGNiwVn0mBy4Yv+RwqyVWs+G16cGXUrE53wYI6HH1D - mRlSOGCCBCoMECnKMPByCmg2hR1kmmAt/rvTfonYGUu87pZck/A4BmYSpFMs+/6sIvzz9grc/lEj8lok - wIoHlxSjOnP+F0uAsQQuDntskyCKk23P/bAR/5Lr/0AC7CEUYUz94uV0Kv+moA15HM9BUrEpsduCpHpM - IjzG+IIEzRLs7nFOPo6+sRQXvlqHhRVe8R9rdT4G7hShOmPeLSfstrLmkWo1mUzF/iDuWdyMUx6owiGX - FmGns/ItkZZ+y/o61WdTsK4Upijw8DybC+z5d5JgI+PHFAWc9t8YpswCM8nG5WK3Gfn49TXFmDmvFu+W - eRFaZa0kSXHLHxcQk+2TKjyWhMVHeS9wyHJDaxgvZrsw/rEa/OjyInN942MUqTqaFUdssaMjfkrM/cFj - Hf6WCsaOcryUu7+0C7OSjryuFJe/Xo8v630IS705VJwCF0WWrbHjlsK+l+L6GilDfSyMR75oxphHqvGb - a8uw6wzOVyh16Og9bkNf5PH2lxSb899EbNvZx3XkWJaT9xvFUbn32Pf+Yk4JznmxFm8Ut8Avzxg+a9hH - ZMLmNnz2RcXv10s5XK1RPLMsiBPubcHOU93oO0oFLqUXogJXqqjAlQEcNyppRwWuJFTgUno19ovxKEFe - lPeb6cZlr/tREQohAuvFujsIXHaAEZIAjysrMiMmIAF0qT+E+fkeTHqm2qzgx8wnBjt97CyOVIMtOzCy - g9xUj7X3t4/pSJAVv4YZBjVCgls512+uK8GcNxvwWbkf7kjUrCDI+VeYvUIxyg70k+2zJZjzSODKoJni - GW3aLkGsS677eaUfV7/ZaMTDHabkoe9pudbQIRun+iSzwaZCoo2S93PCXIf7C/y9o3Zl4DsmxwgGB11U - iAniH/Py3CjxBxEWv6FQyoxAe7hnugJYu73Ydma4otiZ81A1RSP4qj6AOz9pwr/vKsee5xaYLLfvCASp - 2CrZxvzcnJ1sW9rHEHt78r4bQ441ohyFtdE5ZtXR0Y9U4amvXShrCSImNl5jbBwzc5Ft7fBP2470Vyub - 08rmCrXHUOwK4+FPXTjxvkorm4uZOCwX60ecyp+IbQ/+nHj/J++3MWwb8pjEc22OePlMXzU2R+6xHJO1 - NfmZWszL8aAyGDLzt/G+jMXtaNsi2T5dAYVgu+/1xiLIbQziMWnvkx+oxN4z+QWD1MX0vd/WzbHeydBe - 3Ne2Y6r2I/ZxbLdUbW+XzfivHDc62wxJ/8/dFWbYcrEniMhKa/VOrljL4bGZsjnhtfkcpsjpaYvipdwg - hj3Ugt2mudBvpApcSi9EBa5UUYErAzhuVNKOClxJqMCl9GrsFwXzotyMAy/wYO6HAQTjk+raw2G6C/w2 - m1CYYADNDJHwugg+qfbihvcaMUqC7EMuL0a/MyVw4Tf7JNVAq6uwgytTvmxsNzkPP5Iyn/ZYtZlfrKiF - c760Ce2mjgwsWWcne3QGDKCYwcQsDQZ1vC6vX9ASwkNfus0qeEddX2LmxTJlZqaFHdA71S9TsDzMyOCw - Pykn5woaen8lrn27wfhHcC1XBW0zNmXQyjqnK3PLCTtI5uqKLAcn+a+LhvFyrgcXzq/D3+dWmLmfjI3t - 4Xbd0cYs38gc9D0z12T5/f2OCjNR/TulXnhX0saW/3C+LI/Ut7N9l23Gc1J8sK61Au7WCObnt5j56n5/ - Uyl2P7vQyuJiWbc0CzCd2HaUdu5zRg4OuKgQx99bgevfbcSiSj/Cci/Shsz6Y1/H+mZSZLFhOZjxybKR - 5vYw3ihoMYtB/PeeCuwn95wRFznkk3XrbnYnvK/iw9F3lfvtdzeW4YKX6/FaXovJkLLrRjGP9e1s/+0o - bHf6wypIHy0/L6oKY+rzPhww043+p8pze2T8Oe70fFeUbREVuFJFBa4M4LhRSTsqcCWhApfSq7FfFEaI - z49qxiEXe/DMVyF5wY9hRTxAdXrp7g5QkGHwx3/MjAmujmF5UwBXvlmPn88uwq7T80wGjxGTtmTIUjpg - GVgegfN37T4jH7+/vgRzP2hEmT9k5hfipOT8xp51Yx2d6p4uKKYxmIrKtc2qYVIeM7H/F034713l2P98 - a4JpUw8bp3p2NXG7Motku4l5ppxnPV+Lj6t88K6U4FD8g9NEc6JzZgFlMiuR12a70s7tUqY1cp81RsN4 - cbkHwx6oxH4zC81wqQ0TnNNfuoOd4+Vhhs5A+Z2Te898uRYfVfrgXy11kXpwOCIzrFi/dNuYvsrrMDOO - WY5t8uluj+CVPI9ZaZVzgVE8trKy4uVPrlMmiLdp3zM4mXk+fiR2PPelGiyu8Vt25GqT9NV4/ZzqnknY - riEpF+8l9hGr17XC1RbBW8UtmPRMDX5wYREGc/5CDrmN+4yjHboauxzjc8wKnHvPKMBJ91fiBbnvPK0R - rJV6UPxmv0vfIk7172oocNEPOF0A+4viQBhz3vHjx/KsHkiBa3j8Oe70fFeUbREVuFJFBa4M4LhRSTsq - cCWhApfSq0kWuC7x4LlveobAxRd/Dn1iQMJMBwYnDARKvCGzpP4F82vNRO0m4+iU5XJfS8DFACfVoSyd - Ba9lz2/E+V44mfW4HPzm2hJcvKBWyupGedBaIY11YLDOzLlMZG3weiZjQexoglf5n58VkZCZV4kTex93 - d4WZWNusuGfPd8S6dXQOp63Fvh4zdDjBvwStP7y0GKc/UY37Pm3G1w1+eFdFTB04bxOHeW6oXwYxfhv/ - mZNHc/4zDrfj3EaLq/24Y1ETRj5chb3PKxAbc/JsqRt92PajrvZdfjLbiEP/xH+5aiBX3Hz0q2Z8Izb2 - rYkYv+U9GF3fuqF+dh3TBc9v7hHxVYb/bGfSvCJihM3bPmrE0PvEV6fmWxOQmxUipS60YVfakdexr8XM - PJZD7HnwJUWY+Gw1nlziQp4rCN9qK4OSAjfFo66w4Zawwe4ChzZzFdLVUmb3ygiWNQbx4GfN4r+V2Hem - +C/7B9qe9aYNurqPsK/JjFP6r/QTXCHxP3dW4OaFTVhY7kNzW8Tcg+ukHpzEn/6Uib53Y7AcFNsocHFV - 49JgGNe868dP5FmtApfSK1GBK1VU4MoAjhuVtKMCVxIqcCm9mmSBqwdlcCXCIMAOBOwhJjnuAK57pwHH - 3FKOfew5juLDgjaIMumGWQNmnhdBPodMzTPDkf5xRwVu+7AR+S0BMx/UaikvVyuz6+FUx0xg23SFlI8i - hntFBC/lenDaY1X4yZXFJli0JmoWaFtmyjjZobPhdWy7ynV3mpaPI68vwyULOBzRZybEplgQWf9tPZLr - 1h2w25s2ppBIv/WtiuDtEi/OfqEGv5xdjF2lblxhztiX2L6bboGGNo7fL1ytjvMsHXVdCS5+tQ5f1PtN - Fo/JNpR/9uIHmbSzubaUgwIxfZXD517KcWPc41U49Ioi7H5OgZUVZyYVl3p1pa+yzxFfZfbbXtIXccGD - y16vxyLxVUrIHGpJX820DbcEikHf+q/UQ35+r7wF586rMyL+bmeJ/9IGvFdJV/kv25r3jRmynI0dp+Th - kEsLMfbRatOHUZCj8E0fZvlZD+JUx0xCf+CzgVl9K4RCXxhXveXHj+RZPUAFLqU3ogJXqqjAlQEcNypp - RwWuJFTgUno124jAZcNAJSrlbhU43KcuFsYXdX7Mebsev766GIMZ+HBJeRNsSuCTziCL5+Y1mLExfDl2 - nZyH/95djrs/bcKSJr8pm1fKyPJymBXL7lSnTMMhSSwf51QKronBtzqGimAYzy9zmznPmGnURwL4PlJP - TjLtaIvOwm4vBq5yvb6js7Hn2fkY/2QVXs1vQWkgbALC6HrLpt1xiNfGoGBEG7Ps3lVRlAW5gIIbU5+p - kfuyCAPHWRkoRiyhDdKZDWOEWUHuEy4w8KMrinHB/Bq8XdqCmqjYeHXECDLMNOpuNmaZaEdmdja1h1Ec - CODFXDemPFeDH15QhH7MiotnUTnWvbOI+yrvjaxTczBgbC4Ou6wI58yrNcP5qiNhtKy07itzb/UgX3XC - DBdnXSgYye8VoTDeLGrBOS/WSb2Lpf5ic2Yj2nZPt8BlBFpBrrnzlAKcfH8lHvmyGTmeINyrzBIqpo8w - w5aT6tKdUIFLUZJQgStVVODKAI4blbSjAlcSKnApvZptTOAiG4bPSDBgD//KbQng3s+aMPrRSvxUgi1+ - m9+HIglxCo62FgoEEmD1k5/3mpGPP1xXinNfrMVzy91mTisO6VklMChkmXtC1oYp41orO4aZRpx353UJ - YC97ow7/vrMc/3dREbaflGeJesReAbEzYDBsZ2SclouBE3Jx8AWFZl6wK9+qx8LKFpORsVLKZVbYXNsz - bJoIy0vftTOjaOeW1REsqvHhxoWNOPneChwiNt5uIu0g0MZOttoaKArw3NJ2O0zNw48vKzIT9d/yYSMW - 13nFXyNmcnwjYnRjG7NcFIzapA9YRzuuiuCDSp/J6DxefPWHs4oweKL0AawvoW852WNrML6ag+3Ed9lu - J91XiZs+aMDiWq8RgDi0j6IFf+5pvuoE62AWq5DnBjOjOOSPdVtc68MN7zXglPvLpe8twk7seyk82WJ4 - Zwtdpp/IlcA3D/vMLMAxN5bi/JdrMS/Xg+po2Ayl5f0V6iEZc8aXVeBSlG9RgStVVODKAI4blbSjAlcS - KnApvZptUOCyYQBOASksgQxFD/+qKJY2BXG9BFu/vaEUQyjGcMgMA1ynQGlLiQdYhMOROA/Q00vdqA6H - zUT4zHxhcMWgxanc3R2WnTalbUNrYmiMRfBeqRfnzqs1mT4bhoJ2pnjIIJjtNCYH/cSuP5hVhOnP1+LD - ck4ib01uznnLaNOenglDUYB1IBHxW8ognhVRLK7y48IF9WZeuYH0MQ61c7LVlmL77Wm52G5SLo64tgSX - v16HL2p9aGmPSLkiRjRmu7OMTmXvbtAnWF6Tbba2Fa72KD6s8BtfPezyEgzkZOjMVGO9nWyypcTbZ4Dc - A8zamvVKrZlfzSPX52xKtCN9tbtmbW4NrBPrZvpeqSsXrGiKhfFlnQ/XvtuAo68rxfa0D+fEoq06W+CS - foLC5d7se++vMMNUG6MR+KSfCK21vlRgGXuK7VXgUpQkVOBKFRW4MoDjRiXtqMCVhApcSq9mGxa4CDMK - OGnwKnBerhVCO7JdAcx8qRYHX1RkDfcy8/F0khjDYC0+NxSDZwppnOy6MUybWtePcQialKk7zveSCiy3 - ydRYb2WhgDkRq9vwekELTnmoArvPKPjWrk422lLiQ+Z2mlaAf99Vgfm5HqwUH+X114ldA+KztGt3z8hI - BdaB9x6DcdaNdVwvIS4FvXFPVGPPGflyv8aHhFIscLJXR6GAODYX/U63VqGc9Ew1Pir3mowtXp+ZkAy0 - e5Lf0o70VU6GbtuxfU0rXhNfHfZg5be+SqGbNugMsYWZi6YPyMYu0/JxygOVeLu4BWvidlwj5aAdWS6n - Mm8LbOgjpJ5Wxif7vlZ8Xe/HjBdqsM+5hZbA1Vm+a0MflnMOmpiPo68vwS0LG9EcCZvr048pGPN50JP6 - CBW4FCUJFbhSRQWuDOC4UUk7KnAloQKX0qvZBgUuBgSE39BzLq6V61uNEBNZGUOFN4x52R6z0t4PLi6y - hiilQ+CSoHnQxDz8+tpSXPxqPd4tbEGNP4yoBNcM+FauazPz1XSHyblTwS6jb401txVtump9G1ata4Ur - GsVX1QHctagJ/767HHucU2CJURyG5GSjLYGBMM8p7DS9AH++tRxzP2zC0voAXJGI+Ko1Uf8KKRfLx7L2 - NAHRLjMD8LDUgXWhMMt6+VqjyG8K4qHPm3HS/ZXY09g4LqR0psAl9uXQrv3OLzIrOT7+pQv5jUEEV1jD - zlZJmdrXW/NF2T7hVJdMsqFcUkb6wgq511aLr7aubUVTKIovKumrzeKrFdjNtiNFLtqgMwUu8f+dp+fj - n3eWm3tjaX0Q3hgXP5D7RsrTLj7L4Xx2ebujLTsCy2/8V2CmVLvUjfVkf+dvE/8VP3ryKxfGPl6Fvc4r - tGxOn3Oy4ZYSvxcGTc7Hb7ggwoJa6Xu9qA1EjL1N38v5+QQ/5xOMl9epPt0Fli9R4CrwhXGlClxKb0YF - rlRRgSsDOG5U0o4KXEmowKX0arZBgYtwCBWHJXEOLkhQ7olF8FZRC85/uQ5/uKkM37ugENtNzUUfBrQM - ijpLJCAM2gTOv7XL9AL86PIi/OP2Clz6WgMWVfkQWmGt9MhV/uzhXj1nyJf4BW0q5V8jdi30BXDHokaM - eKQSv7q2BHtL4Dpocl7n28XqGxEAAHxOSURBVJTnol3ls/+EPOxxdiF+OacEYx+rlus3IdftxyopG+f9 - oQDTU+zpRJDiQNzGq1a3oswbwmNfu3DGk9U44ppS7DWzAIMn0S45nWtjIufjPbH95HwcMKsIx9xShinP - 1uD5bDdqwmGsXkexWELtbuy3drl4b1l2bEdsZSuWNPhx6wdNOOX+KmNH21fNyoqdKbTwfHEGSDvtfk4+ - DhdfHSO++vhXLlT6Qliztk18dYXJKOIwyp7sr8mYuc/kHmTGFutZHQzhiW/Ef5+oxpHXlmL/WXYfkQb/ - jdNvgtj97Hz89Koi/PvOClzzdj2+aQwguiaGtdJvrZDyheU+6wl2Txa4NINL6fWowJUqKnBlAMeNStpR - gSsJFbiUXk2iwCUvC4de4sHzX/c8gYtBgBmOKAEMJxqnOECxw9UaxaJynxFBRj5Shf+7sAjbSWDVh1lb - DLDSsRJdPLjtIz8zQ6y/MGRCHn50eTEmPlONRyXIXVIfQHAVg0CWtZUhuKmDnQHhVMeuhuWwy9IqASEn - 62Z5GbwWuoN4Ja8Fs16rx5E3lGDX6XkYOD4HfcfFBYNkm3QiPH9fsSmvxwn8f3dTKc5fUIv5OR7kuwOI - iQ9Q1GB5OVcYbdqd7JqMKd9arvzYivVSbpadE2FX+EKYn92CS15rwF/nlmO/cwowkPOaie/2OUPojGyj - jdBnfJ7ltxNzsd8FBfjXXeW4+p1GvFXkRV2I/YPlCxRpGXyzn7DuP+c6phte17Sx2LHVlM0iItvyXUE8 - s8SDmS/X4ajrSrHr1HwMog+N4z2a51j/zoJ9ALO5+ku77TWjAP+YW4E5bzXizUKxYzRisrlsO1Loog1Z - D6c6dkdod7Y9y8yMVGsYaLvJlKoPh/GO+MsVb9TjmFvLsNc5+Rhg+gj6r9glnf4r9JM2HiifO0zKxc9m - F2HS8zV4/Bs3spssoYt2Z2Yv50Rj+TPpv5uCZWI2Mv+tEsqDYVz3nh8/lWf1wGEqcCm9EBW4UkUFrgzg - uFFJOypwJaECl9KrSRK4DpGX5ie/CkmgbQlcfOl3eunuLpiXf4Erz3Gp/bb11lC16MoYynxhPLXUg9Oe - qMYv5pRgt7Py0ZfDYk7NRtZIgcMS0xhkGShIjBJGSGAnge4+5+bjDzeV4Ox5tVhQ0IKacAjR1daKisw8 - Yh1YF7tuyfXtCnhdwkwMlod+wFXHWqWcLa0RfFjtwxVv1eFfd5bj+xcUSSDJ+ok9yRipc2dmwzhBAY0C - JdtQ4IqKB8wqxL/vKMect+vwUbkPvlhUym0JhxTkGHwzM8qum1O9uxK7HAxcLb+lMNtqhnyy7F/V+XHT - wgaTfXLgrCIMYr2NH0mdObk8bZ4u36V9Oek656UaKYitueLgIRcXY9gDlbj382YUuIMmE7GN2WZSdg4F - jjAjRurTlTa2rxWS69OOLAszDClyNkTDeK+8BZe8UYe/3FaGAy8sxABmvdGGrBf7AtbVyQadgd0+Y+R6 - 5prZ2H6C2PGyYpx4f9yOLSFEVsWwOp5VRDuG4xldXWnHjmKXje3Ndm8VvzXDade1wd8axfJmP+79tAmn - PliJgy4oRD/2taMsG1j+m2CfdGD6CMH2Yel7d5+ehz/eWGYyad8r88ElfRn9l+Jim5Sf9ehOfYSNbWfp - xUwGV5E3jNlv+nHYRR4MHK4Cl9ILUYErVVTgygCOG5W0owJXEipwKb0a+8V4pCVwHTjLjTsWBRBdJy// - 6+UFW16snV66uwN2EEJBiIEtJ+Fm5kB5IIRnl7pxyasNOHZuBfY4Ox/9KYgwwKIAQ9GJIkw6g1sbXoPX - MhOkC1KGQRJk7y9BH8WLOW814I3CFjRGwmboDLOOKHYwoDGZPfE6dhWJwV0sPsSTuNoi+KjCh1s/bMSw - hytx2BXFGDIhB31GiC0ZsNK+tGtX2JQYu8r1TLtKOSSQHTIxDz+Tco15tAq3f9SErxoCCK2OYv16K5uP - GVKsF22ayQDWtjHhUD/al+3uWxHFF7V+3Lu4CZOfrcYvryrGjhNy0YeiAO3MgL2rbGz7bXxVRdq4r7Tz - rtPycfSNZZj+Qh0e+8aFZU0+xMTGdtZOtAsz5jbcH3KvMGuLNqQtm9rCWFjhxS0fNOLUh6tw0CWFGHRm - LvpSaDK+KnTV/U94HbZbvA+iHYdMzsNR15figvn1eG6ZG6XeEFavs7KKKHSxT8ukj24Ku1z8/Hby/jaE - VkXEH/x4+AsXznqxFr+9vgS7T81Hn1Ol3sPF5pyXjPdsugVwm0QfZt8/fDkGy++HXlpkFhi44+MmfF7n - Q2il5b/sI2LSR3SV/6YKy8HhtvySgZ+f1IRw1gs+fH+mG/35xdSIhOe4ovQGVOBKFRW4MoDjRiXtqMCV - hApcSq/GfjEeJYx24XvnuTHnHT8aJEhksGpnEzi9eGcCvuybwEMCwKgEV5z4moE1szfqIxF8Xu/DDR82 - 4u93lOOHFxZhyJl5Jjg3WVsMbhnwMHMgndkDydjXMlkxUgaTxZCDIbLtJ5cUYfQjVbj3U5fJ2uFy+sw6 - YqC+cn2bmSSb9U53wMVzm2yMdbyuJRQwoHK3R5HdHMATS9yY9nwNjriyCLtMzEMfih521hYDVwaTXWlT - wusxkykucjFTo9+4HOwxLd+IQ+e8VGey5ArdIQRWfusr7VI/ZvxsEEi6CNt3eW1OIG8LMixbYUsI8/Ja - MO3FWhx5XQn2O7sA/WlX28bMRLFt3NW+y+sy24l+OyobA+X3780oxLG3luGy1+vwdlEL6kMRk33E+tDO - 1gIKlo070295LtNmxleZ+WSJl8zWa45FsKTJj0e+cWHCs9X49exi7M65nlh22pAiB21q1yu5runCbjPa - keJavE0HiK8efH6hWRH0hvebsLjSh7pQGOHVluhpMlGlXqyr7TtONukq7DIEpF15D/Fe4hC/trWtqPKH - jVB/4at1+NPNpdh/ZoEZQmyEWdP3yme6hoRvDtqeAiPLInbvc1o2dqXAeE0xzn2pFvNyW8w8d5HV/JKE - wxbtLxmsDOau7COcoM2t+SSlPCtieLUwhNGPerHXdBf6mbkzE57jitIbUIErVVTgygCOG5W0owJXEipw - Kb0a+8V4tMW+M924eIEfxRKwBOWlmi/W3W0iXms4IieQ5rCuGHwrIvimKYAHP3dh4hPV+OkVxRhIYYuB - 1XAJapj5wuDSKfjJBCwLA76TlqPPiOXYY3o+jrymFFOeqTaTMRd4gohJsMXAncPWIhQZpc5Otugs2MYU - MzkptxGB5Hdmws3L8+CCl2tx7NxyfP/8AvQbuRxZQwUKShTsnOrnBOuc7jawMzWGSflGZuOA8wox9N5K - XPZaHV4rakFNNGRWduOQJM4pZg8F7SrYhmGhTXyWIhAz9lytYbxR3IKr3mzE8XdXYO+Z8dXlmPFCQamj - Nnba3pmwPLyvTs7GoNNz8KNLi3Dqg1WY+3EzFtf64G6LmJUWOeSWw9Y4zLUzs0AZ7POc7Jd4bzBzaOWa - VhS7g3h6qQsz59XizzeXSz9WYGVsnUJflc+uyhpKBbYTBRfTPy3HdpPy8IvZpTj98Src9UkTPq3xm1Uz - KR7xfmQmJX010/0wr89y2F8sUAj3SN+7qNqHmxdyOGIVfnBREfqNl3qdKnYnmRAUNwX9gP4gftFP/OP7 - FBjvqMCct+vxblmLuR/XxcW7mNST88t1pv9uCRTY+GXTOrmnOKfk88tDOOl+L3aZ6kJfk3md8BxXlN6A - ClypogJXBnDcqKQdFbiSUIFL6dXYL8ZjLPY+143zXvYjxxM2kx5z3o90iyupYGcPmKwNigNCcHUUhd4g - XsprwUWv1ePPN5Vi74l5GGBnvFAoYHaPHdymEmRxX7IlYkEq57f3YXaDPWRKGCRl3ndyHv55exmuea8B - C8t9qIuGjRDD+lLM46pfth2cbLSlMFOBq7nxGiYTTq77caUPcz9uxEkPVOCAmfkYMi4X/Zh9wvLSrgzQ - E+uzMfh3O6AnHbVrKjYl9n68BsvHIXUjs7GzXO+gWQUY/og159FntX40tUbMvGK0Kwe30Z7pytKw28te - WY5ZW61i76pwCF/X+/Ho180Y+VgVDr24CLtw4ngG37bvJtp4c3agz9qZdE5/3xipnJvY+/H8vI6xcTYG - iD/sKtt/cVUJJj9Xi6eWulHgCSC0yhJoaGMOY/OvsXzXyUapYLcRRVgKW8xuapM25D3ycZUP18k9wznh - DjhbfPU0DkeU8hk7ij0T/W5zdU28/ztqy1Sw7ci5wGhHllEYKP3UnhNzceTVJSbz8MVsD0r9IYSkzhRb - NmTFbaUdtwjxXQo9fBqwPZl92NQaxtcNzOx04YxnqvHTK4uw+6Q89GV9jA8Lxh+FDXXeCPwbbc12Yr/o - tM+m2Nz5bRKvQ/+Q/qHvyOXYUX7/v4sK5T6sxMNfu5HrDsG/MmLszoyuVqmvV+zuaJsuwBa4OC9mc2sU - Ty4J4b/3erHTFLcKXErvRAWuVFGBKwM4blTSjgpcSajApSjCWGGMC3vMcGHC0z4sqg7Cuzoir/eZFbhs - gcAekiThhhkKVRcJ490yH+a83YD/3FGOQ2dZqyNmDV2GrJM7kDlgB7IMrHgMGZdrVurrwywwp2O+g+zP - Yxk0mQAtvj2VgEsCWnM8g/CTpNxS9h1k+88vK8KoR6pw5ydN+KLRD7cEW8z6iUndgwxyO6k9aFeejxkZ - PL9nZRSf1ftxx+ImjH20EkfOLsYuHOI1XMp2isDAlbbiMKNN1c8OJGkXCoyEduXvtr2djkvEPt4cF/89 - FZtyH/v6zJChXUcsx25T8/D7a0sx+ZkaPC5BeWFL0AgGFEvC8snV99IjHFgTV/MfJz8Prori6wY/7uY8 - W0/V4JjrSrH7jAIjyBkbM2vLrmsqw7lsYYsBO+2cim0TbUSf3dA2Arc7HZMIy0Xf5XEmm8vyje9JPf52 - Sxkuf70Ob5W0oD4WNvNJUTgNyaex8Rb4LtvFZL9JO/FcFArdbVF8WuvDHZ80YuzDVfjFpUXYgeVi9h7v - f9rTtuNm6xSvP+tDGzJLTY5NeYVF2m3D/S+k0gbELhevy4w98dV+cv2DZxXiX3PLMVv6tvcrvGjgZOhS - 91baMT5k0bZLsq3SAW1PkZL/IuLP/FKBwtaM52pw7I1l2HtGviVo0fb8coHDl1mvVPw30QdtUTcVH7T3 - sduNx3XE7iwby3mq+C79V/x41yn5+NP1pbhofh1ezvOgOhwyiz5QTOWwYtq9q2yeCAUu2p6rgtaFIrhn - cQB/usWDQRNc6ENxi89up2e6omyrqMCVKipwZQDHjUraUYErCRW4FEWIC1w7T3Nj6L0teDE7gOb2CLgs - uRlmlPTS3VUwoCAMsBjc+lZFsaQ5gAc+b8YZT9XgsEuKMECC6z4MaikOMOBxCmo2hgmwBAmS+sqxAybk - YNDkPAxiNkKqAhcDLGLEHNmWaqD1HeRYBmkSaPU5ZbkZ/vWrq4tx/su1mC/BVnEgaH2TLzYIiy2cbLUl - UNxiHhMnkX+/3CvXq8PPr+Kqfdnoy+FdwxiwSrkYxHekXtxX7NFH6C923X5KHnaYlo9+DCxtEXBT8Hhe - l0EvA9EtsSmPoT+wXYYvRz+pD+fe+dvcctz8YRO+bgwgKAE75xqjf9G+nR3Amuw4CY5JTSSMN4tbMEsC - 6N9JIL2j+BfLZEQi4zdSTqd6bAwjbuWirxy73YQ87Cj27U/haXP2ZYBPuB9tY2wsdPT6NjyOwsbQZegv - 9+BBswox+tFKPPplM7JdfiOchsXGzALaErHc+L3Yj2IkM5ryWwJ4IduN6S/UmHm2Bp8mvkphm2Ww77+O - +EtcYOkrn/3FLrz3ST/e/6mcxxZZaEtjR4d9Noftq6Pknhm23LLjhYWY8HQ1HvvahWXS57lWRMz9z2xL - 9sldIbawzTixOa9VFQ3jo0ovrnu33sxxuMdU8TcKc6cIRpyK18OpfhuDx8ixnI9sJznfdtJP9LHFq01h - 78O24xcEzC7luZL32xymXxOYeTbU6iMOmFGAk+6rxD2fNUsf4UfLSsvumXoO0v8pblLgqmiJYPZbPvzk - Crf0rfKeyuf2uITnuKL0BlTgShUVuDKA40Yl7ajAlYQKXIoinCaMcWHHKW787bYWPPh5AA0xDtOwBK6u - CKac4HWZ9cGhMRyux2ExFy2owy8vL8R+kyUIZWA1nCKBIIHuhm/nnYKZZExwZAU3/c7IwT4z8/GTq4pw - 6GWF2G2GBG8McDclFkgw10c+B8j1Bgr9GNzZ52Swy4A1+RgnEsvMYC0+f83A0RLkTs/Hf+aW445FTciR - wJ6BDgN92zbJ9koFHsf5dLiCH0XDllUUt1pw9rPVOFTq3Y+ZRCPiNmXgx3qxfKkEnragJPSRn3eYkosD - ZxXi51eV4LDLirDdRLEp7cN9N3I+2rSvQJsOOFP2tc/J42jfVIUYnp+YAFbsSj+RgHwHOcfPLinCJa/W - Y2mT3/gWh7waX4vbqDMwWUfisxQRy0NhPLnUhRPvKMeBU/OwHf2KwhbLxLJ1yMYC7cAsJbELhYHD55Tg - jzeXYc+zmU1DG8k+mzlXP2HghDyxMTMW5RjeP7Qzz819UikLy0x4DAUm8Rmu+rinbPvd7GJcOL8eH1b5 - 4V1lDdGkUNVRG/P+N3OWoQ25voAZjnjM9SXYX3yLQ/tM5hDhvdMRO3JfHj8qG32l/nuem4/DrijCjy4v - wl7nFpj7ug/rtYk+wNz/ci3u24925P4UWxLtmAosL+ExnOeOdpR7cN9Jefjt1SXiq3X4pNZnfIq2oOhE - 4cPJXp2F8V/pHyiolQbCeHaZG2MeqsSPpZ/ciTYeJdB/mdlp93Wp2p37G1sJp+XggPMLzDx/XJ2V9/7m - +l1+buh7pY/oR/+1z8fP+D6bheVlXVge+q/4Ef13N9l2uPjC6U9V4/XiFvHfiBkmaA0TdbZXumA7M8OW - AleRK4LzX/aJveR5PaJJ6iufDPSdnumKsq2iAleqqMCVARw3KmlHBa4kVOBSFIECl7wsbzfRjV9f24Lr - 3wugNhyRl+rMClzWpMYMjltREgjh1g8a8ZPLipB1/BJk/XepFVwxUGGQkkpwRUyAJTAgFrafnIsjri3B - 5Gercc1bDWbI037nFcQFq/j+Tudh5szEXPzwkiL89oZSHHVdKQ64oEgCLvkbRQs74E412CI8ljDgYlaa - 1JFC199vKcNjX7nQ2MqsOivA3dJJp9mWbNPVDF4lYPuqwY9Z82txiASufY4TmxIGjFtq01E5RpxisHrq - w5Xm3NOeq8WfbirDDhS4mGnHY5zOLefg8NCdzsrHr64pxTG3luFHVxZhhylynBF05NiOBLA2dl0okp0g - 9RN+fmWxEQ6ZWbV6PW0hdkmy1dbASaop6jS1RfBMthsn3FuBQQzA/ym+y8wX1sNub6cyO8F68xwUsU7L - wf4XFGDYg5W4Te6Lm99rwM8uLbb8hm3hdF5u43XFp/Y+uwBHXFeGY24rw89mF2PIFPmbaT/Btm+qduZ5 - zZBbgQLNccuQdeJy/J/cD5csaMByV9BMPs8hi6n2JfZ+FAg57xN9/4Evm/Hb60rEfnL+f4sdKRLyXumo - r5Ixgtih7xk5+Kn4woSnqnHVG7WY+GQ1DrmsEP1l3z7MyNqY2HJaLgbI5/dnFeLI60vxW+HgiwsxeJL8 - zZ6vbkuymlgPCrusG/u4E5fh55cW4QZp33xvEO1iD/aJW5IN1xHCFHSkj/CsjuLV/BaMuK/SzGlnysTM - Q9aNdidO9UjGtjszMmlX8cMh0/Jx+NUlmDmvDo996cJI6S+4SqfxcSe70TZsD7HtEOlLDpVnwT/uLMef - bik1fYbxX3NvyD729ZLPsTHovzw/z8GMQGEXKd948YcPKnwIr7a+XNiSYbZbAwUufhFBgSu3IYKJT/mw - 51R5Xp/cJPVMeIYrSm9BBa5UUYErAzhuVNKOClxJqMClKEJc4OonP+8/i8N//Cj3UeCyVpvLhMDFa1Ig - 4GS/nBj86WUu/EeCmSEMQk6SAItCSUcCGGJ/0y/0l2N3PzvfBEe3fdiIfFcA9YEIbnm3EfueV2Dtx0As - +Rp2kDU8G7tPycMJ91RI8NmIOz9uMkOKfnpVCbafnG+GPDKLyQTgvG5Hysp9eQwzJE5Yhv2n5WGKBOBc - YS2yrtV8o2/mjkqyWUpw2JzACc+5suBdi5rwmyuL0M/OhGO9WQbWM7lcybCctAWRoJKCwPaT8kxG0ZVv - 1uPLBh+qIiE8ucSFv95Whu3twJ3HJZ+f2ySwZTbNDy4qxIWv1Mlxblz1Vj2OubkMO0/NM5l2fezrdcSe - iVCAEf/ZSQLkoRK0c6VIl/gX/Yzzu22tr5vj5Z7h+drFzt80BHDmM9XYYbJcm3UfKTagjTtafrEL/Yn1 - H3RmHr5/YSEmynk/rvYh1N6K5XV+HHN1qSVA0G+d2o9ixGgOg12GX19egsvfaMCTS9245p0G/P7GUuxy - lvjtOIqMLJ9A300+x8awr8djKCQOXYaBYuvfXlNsVgeNreV8Rq0pC7MM7OnjXE3U1x7FG0UtGPVIJXaT - e8HOxjN+kFyOTWH8lfWSOsons99+eXUxrn6rATlNAdQFw3jss2b8YnaR2FDstCmBS/qf7eV8x95ahtlv - yf2/qBlnz6vFb64TO07PN1lF5v43fYjgdI5NwbJSJDt+KXaRNjn+9go8LW1FoY+CP6Gd0tI3i/+aObfW - RVEWCmHO6/XYl+L0iWL3DZmU8XKm0k+QuC3YLw6akId9Zhbgb3PLMFf6zepwBBHxYX7BMJj2ppjtZHf6 - L+150jLsI2035tFqvFLowQs5bvz99nLjvwPPzLfszuM31nZO2PVgvXiN+L3KbD4OK24Ox7Ae7UZYTIvN - NwLvAw6jpsD1ZVUYp9zrxc4clniCvKcyyGewn/w8V5RtGRW4UkUFrgzguFFJOypwJaECl6LEGetCH2GQ - vDCccI8Pxe5vBa50D4dJhgEEr8ml6CEBbqk3hKverscBEtQbYcsMwxI2F1wxWLEDMTtglKC735k5EsSW - 4OwXajEv241qX8hcJ7IyhlsWxgUuBjkmOI0fb8NrMnCSIHvXSbk48Z4KPLHEjVxXAF9W+3Df4mac+kg1 - fnBJkRFrzHA/O5sr8TybgtegIGKCueUYIgHbP24rxzNLXWhqC28YstnRdqFdKZC1y/Gh1VEz79b4J6qw - B7N3mLXA6zEDxalMTtAOzLagMCafB11chNGPVePhz10ocofM0D9mMj2T7cJfby3DdpxrbDMCF8tw0EWF - uHFhA4pbQsYP5y1twZSna/FzabMBDLSZZWSGRiWdY3PwmmwTBunDsvEDCV4veKUOuc1Baf92tIttWpJs - 1lFoYwbB9Ke21a1YWObFv24ttTLHOJSO5d+c3ybDdqHfi332Oq8Q/7mnHDe/34DPq/zxe2Qlij1BS+D6 - z2YELp5H2vrXlxXjlo+akN8SRKnY+cVlbpz7Ui2OuLbUypjjvUIb24Jnqv7LazAbRtqZ88ntP7MAV77Z - gKqQNem8nX20OZGAvs0hYWyXhlDETMz/m2tL0Jd1s8uVSvZQYrmZWWUmQs/BwZcU4vQnxVe/ahbbWfc/ - Bcknv2w22X28ZzcpcMl5th9nCVz3fdqMJY0BLKsP4umv3Zj+fA1+Jr46iOXj/b/BV8WuTudygjbk8XJv - 9RX2F1+dKe3zjVynfW0r1kh50zHxOduGk6pzODSHLy+u9WGC3NNc6ZXZZBvK5VTmjcG2og2k791hah6O - vr4MF8l990qOB1VB2r5dWIEb32u0hu9uTuA6YRn2m5pv7FzqCyO4shWv5rTgvHl1+OPN5djhrHgfkSzG - pQLvG9bR9GtyDmljZpZV+8PGR7pS4OJ1OA9aO6JGfF+QG8Jfb27BEL6jnihQ6FKBS+ltqMCVKipwZQDH - jUraUYErCRW4FEXgCwOzuLgq06kuHHWtF1/V8YU+MxlcvB4DXA5rYlCR0xDE9BdrseOUfGt4DL+hTyUr - goENAyUGRcKACXnYUwLFY24pxfXvNhhRar2EcgyumClS7Avhotfqsa8E5SYw4nHJwREDIJ6TAa78/Meb - ynDvZ81wtVoBUOuaGBZWeHHB/Fr8+uoS7DQt3wy7M2XmOZ0CNyd4HV6fmSIS2P1BrsMgv1ICQgpHzG7b - EoGLmR8UyGrCYTNZ/7G3lWFHXosZMbxeKsEr68N9JQjk3EM7StB6OOdcWlBrVrdrlQDcsmkrKqS8d0q5 - /3xzXOBioMxz8JobOec+5xXg8jfqUB2iTVdJG63Acgnsr3+nAX+T8h4wq9AsBrDhGA6XSjzX5mAbDF2G - neVzzCNV+Lw6YMqbDoHrnVIv/nNDKfpwSB19lwKXU5mcYL1YP2G7SXk49PJiTHimGq8UuBFcwWtQGGiT - krfikxofjrqqZPMZXAz8T1qGQ8SGl71Rj2I/xb02oRVlgSDuWtSIE+6qMHOnbU8b2/dPqkIBr0tG5aCv - XGvfmYWY/GwdFlX5zKT+K6VPSWXYM307Fhe46gNhMzz5F3NKrHmubOHC6frJ2OUXv+LKiLufXWh89SLx - 1S/qfOY+suzYjtpQCDd/0IAfiZ3N/jxuY/er3JcD5e+/ml2CG99vQLnYjudYt77N9CucK+wvt5ZhL+lL - BrLNja8KHfFVHsN6ih059PnkB6vwXrEP7eJX6+Ra6RK4mDlHgauxLYI3S7wY+3A1dmT/RYHWya82hrG9 - IHXgXGX7nl+A4++uMNmupX6rH2MfwT64fU0rLnm9HoNZ500JXBSeTlyGvcQ3z3iyGoXNFMhWmz6iXPzk - oS9cOOmBCiOS78xsP7uPMM+MhHNtCtaRx0g5BojPnPpQJfLdQVNeCk5OdksL0hat6znJfBQ1sShu/ziI - X8/2YNBp8o46TAUupZeiAleqqMCVARw3KmlHBa4kVOBSFIEvDHxZpsA10oWfX9mCF3NCCK62BK4ufakX - vhW4JPBe344vagIY/3g1hjCrhFkETkFJMgyGGKgwQOS8RGOyTQbIlRLUM3OpJhgxGSKrJMDlBNac26rQ - F8LFr3Zc4Lrr0ybURsLmPBQL/KuiZjn957PdmPZcDQ651BryZLJneE6eY3NC0oYgK9vMXXXMLcwUaUKV - BOEMtLY0g4vzGXH4HDMn7lnchD/eUmoENCM8sc68rlN5SLzcRrCjTU/NxsESSE59tgbzcz2oEPtFuTKh - lI0ZJpyzpiwQwl2fdFDgEvtf9nqdOXadEcrazQp6NcEwPqnyYe7HjTj29jIzHNIIc2LXPjx3KnYlFBmG - L8ee0/Mw7flqLK+nwJWGDK5VrXinxIt/38jMqm8sgYBldiqTjV0HCrj0F2YKnlWAk+6txIMSvOe6gvCu - jBjb8v4wQyERw+IOClyHXVCIS1+vR15LwJzDnEfajX7MobAUIU68p9ysfmllIco56fc8r9O5k5H9+4zO - wW4zCjD84Sq8nOOBpz1qfDcV0TxR4GqUdr9bfOjIG0qtCcVTEbhYVymnGa5Gu4ufHHppMWa9XIdX8jwo - 8wURXBMxvsr7lsPPquWeuHlhxwUuillFcr+vlvNQKI+tjaE6ZK1Mes3bDebeHcKsOPo+xRv6erx8judO - hPWUfm/wxFwjtCwUf2oXv0qnwGVlcEXNyo0fVnoxQfrenVMVuPh3+x5kO9FOUvYjrysxQ2E/r/WjLsy+ - txUrxfYUGOkTHRW49owLXAVG4Fpl+hvOG1YXjWB5ox/3f9aEk++rwO4zuPCC2J3Ze/SdxPJtCra9+C/n - WfvvXRUmEzMstuGKq12xoqJpV7nOammHqPz8TVMEFy6Q99aLPOjHFRRHCDpEUemNqMCVKipwZQDHjUra - UYErCRW4FCUOXxi4KpPww0vduPqdgAS/EYQkaOBC6U4v4emCL/eJAtdnEnAz02Z7BojHL7OCFKdAy97G - 4IjigAQo20/NMyLMf+6uwD0SJBdLIMqAioEz57LipMGt8X/F/hAu7UAGF+cD+9PNZbhrsZxXjo3Fs6M4 - gTsFjqAEup/X+cE5uv4jQRKH8DHjyZSNQRyFFv5uk3gdBmG8vuy73YQ8K1OMAlcnZHBRzKiJhPDg5y6z - etkOvJYtcDkFfywb7cCAlQLJGTnY/9x8/P3WMlz1Rr2pozURcrs5N4NkzuHD/8vjQlpHBC4OEaXARZGQ - ghzFR57PyjRqQ10sjKeWunD6E1U44upSK4hlAE67sow8l5NNzXXk7/HrHHxpIa56qw6l9hA1Cew7U+Bq - XxPDR5U+DLunHAMpErHuTmUidnkZwJshn9nYbUaeGUo79blazM/zwL3SyhKkIEMRggEwfZhDTj+t8eG3 - HRC4fsQMrtfrscwVMO1EONcPBZr1QoPYmKLljBdrcdQNpWZo5Ib7ijamve0yJ17D3hb3lZ2n5eOkByrN - UGBPuyUCUyjYnDBD3+YcUKyvOxrB09Le/7qr3Moq47lpJ6dr85Ptz2HMco8NmpRnstH+fEsZrn23Acua - AnFflfYRu1n3P+dXajMZg7d80NghgevXcyhwNSLbHUSQgo2czZozyRIf6f9PfN2MM5+qNgsn7GomQ5fz - 0o48/6Z8lXAfqcuOYsdxT1ZhUYXX+BXbiXbanB23BOv+tRajyGsJ4qKX6rArM7E4jHljZbW3sw+hj4nt - B0tbHXJ5EcY8XmWyRWkL2oWwr2QbE/aZK9a0GsG1oxlc+U0850qzYimfVbQL+yGKcy/luM0iF5yfa0Pf - y7LRN+i/ieVOvI5dD2knzhn2F/GdeTm8/7iaIuc/dLZbZ0K7BOQ6zHALtUexIC+M4Q/5pK9zoQ+/iCJO - z3FF2dZRgStVVODKAI4blbSjAlcSKnApShy+MDCL6zQX9jrXjTGPevFmScis2NcmwU46AqmNwWvxBd8e - ori8IYBpz1VjpwkSdDBziMIQA6HEoMSG2xmMnbocO8rvf7ypFDctbMA3TX64V1krg3H1QA7DoUDA6zHQ - ZWC6NQIXs414HmbWMDAkDLqYVdAigdFntX5c/ka9GWY1QM7Z1wRZch6e36kuvA6vL9fZfkIejrmpHPd/ - 1owaCRIZOG+pwMXAkmV0S9D0Yq4HpzxQid0oGgyTwI/Bo5PAxfLR5qOz0V/swkngZ71cg0+qvGhojSBC - EVQIr42Z4JhQRKBwwKCWQyu3ROAq8gWNuEXYVrRpVPyR1+Jk5fz7i8vdGPtYFfaXY/qz/MzW2JgoQbjP - SCsz47c3lODOTxpRHQybYVJtnSRwsaxWVoo1yfyUZ6qx61SxMduc108uUyISgPcdthz7zcgzc/9wgn4O - I/StjhjRwaz2KOfndShy0c5bKnBRUFjuCsjRlA/jK0nKuSlA0W8p0HIVyNcKPEZMOPDCQgww94WcZ2P3 - IK9LRuWgj9h573MLMPFprkTnRUDqwLa0y+9kPxv6NoUECk/+FVG8VdyCsY9XYa+z5d6kHdnOTnVkmdj+ - FIaljBwmzKzNj+irbWEExWb0H2aR0U95HQpSWytw5biDJruHtmS5uSIn+xkjFMnPJb4Qnl7ixvAHK7Gn - 1IH3fx/a0e4Dks/PunG72LDP2Fx874JCnPNSDb6u95m5wuhftNPm7LglWP2EJXi6V0Zx8zuN2H2c+O+m - vlywEZv0EdvsNCkPf7i5FLd+1IA8TxDheGYnnye27c215JP92dYKXBSeeC6em/0Qr+MVf6Motajah/Pn - 1+KnVxRb56f/sG2d7E5YP/5dytFPykGBjCtJck4ytjHPnWyzzoZ+ycxpDh32xqK4++MAjrjWgwEmsLee - 047PcUXZ1lGBK1VU4MoAjhuVtKMCVxIqcClKAnxpkBfnwZNcOHyOB/d/FsBKecleJ4GO00t4umCARaGh - 3WQbSeAZDJshU7+8qhh9mN3yXwm0zFL1EoQwGGHgw4CIwfuw5Waenl9IkHqWBNZPfNNsltdn8M65ihiA - MrjiNWyBqDMFLl7DPrctQKzhNeX3rxoDePRrN86dV4u/yHFcxc0IdlwVklkddl0oBDGQ4/bjlmEXCebG - PlqF98t9CK2yysvgeUuCW5aJ/2jbJc0BXPBKLfY9W8px3FKrLLYAw3Jw1UOzbL5sjw9HHPtoJe5Y1CR1 - 8Rshh2IZ68hsA9aZpEPg2tBecm6KlKsEZi/VtYbxfoUPN33QhLEPV+L/LiqyAmT6Bz8pIvBadruxjv9e - hu3G5+CE+yrwUp4HnhVWFklM6tBZApfJShFbZ4uNOTn4XjPEp062xCUjztjDpQjrTbtI2Shm/uWGUlzx - Wp2Z/6gmGpF6Wvak6MTzJ/tXZwlcRhSIn58iEO3ODBKuYrpQfO++z5ow+ekqs1JoP94ftCXLzbpwYm5e - 057I/QTrbz+9shi3fmgNrW2Xc1IgSGUlRat+lvgRlp85t9vUF2qwN32Vw5RPEOirvCbrZYQRuS6HrMr2 - Q8UPzmTm0GfNWCZt4F/DYZ1WPRPvf9LZApcRzuQ+5Sd/px3pq7XRMN4tazHXGCa+9z3xc2Mr3l8sO+tg - 7juBPzPL619L0Vc+f39TGR74olnOwX7GyhSzfcHJflsDz0mBi/aiL9/xcSP24NBa+hbLxLLSNrQD252+ - QIFc/GGw9Bm/mVOMs5+vMSvfFvmDxgZG8I2LUN8pt/zeWQKX7bu279DmawWKw583+PHIly6c9VwNfsUv - GXg+9hEcdpnoR6wL68i+l/WR+o0TP+Iqm+wzmSWW6kqgW4NdBwpcjZEoLn3VhwPOc6PvqfJ+qtlbSm9G - Ba5UUYErAzhuVNKOClxJqMClKAnEBS5mcu08zY0LX/EjuJLZKF0rcBEGKtZkx8xUiGFxtR8XvFyLX1xc - iB1HZ2MwA2kjaklAwiBxdI7JjNpLAmAOR7r+vQZ8KUENv3W3g3c7MLE/7SCrswUu+9wMcM315JPXpyDB - rJhS2Zertw2/rxIHn1eInc7MQ19ej4EjgyuKSvL7YAm8dpmQh79KcHsP5/mSANkE/HKegJyH5+4w8bLw - PMzOmJfjxtB7K7DHtHwMZn0pvjDDgTaV8vQ/Iwe7SnD7syuLxR9q8XGVF56Vlk0puFDYSjy/Xe90CFx2 - e7EObEPWI8ySSODZ1B418wVdtKDOzLW21/QCDOI540PlDGLTflK/HUdKEH5ZMWa/WY+lroARcxjQ83wb - rrGFmONZfykTVz6rCIVw32fN+Met5dhd7DhQ2rY/y8X2pp1ZLvqz+NQ+5xTihHsr8djXLhQHgghJG7Nc - zAiyfSnxOp0tcPE6ifVn5hFhOSjeMHtuSZMfV7/TgGNvKcUBZxdgIOvCc5p7UDhN6ifX52p4/3dxEc56 - vsZk0HA+LQomFDgS67ExWA5menGuuZi0T4n4wtyPxY/kXthL7DiYqxwyi8we7idQdNtbynT0DaW4XNqW - E+83rwgb8YO2SrYhSYfAZTLUVidcR37nNrYlRRef9ElvFreY+fkOn12CPafmW4IL+zT2Z6YPyMFAqQ/7 - ul+KHS95tc4I5Jw3kNdgfXjurfVXJ3hOZp/yOvx9Xq4bf7+9DDtLOSlAsZ+1hKBvbT9IbLHvjHz8644y - 3PZRI7LFrwJiA9bX9BO0vYP9ua0zBa7Ec9vXpK3YR9CPWa5bP2rCf+4oxw/PL8T2p+dZ16P/si5Sj4Hj - czBEyrH3Wfn429xyPPxFs8ki5PBanjMdNk+G1+H9tlrqtbQpjLGPe7HzZBf6nBIXuHTuLaW3ogJXqqjA - lQEcNyppRwWuJFTgUpQk+OIwxiXBogun3O/F1w1h8w04AzS+dHfFt9c2vBaHaTD4bm4P48NKH254pxEj - 7q/EnyTQ5QptZin345disARcR11XiiveqMN75V4UB0LwSCAZleCKsPzJ57cDlXQJXInX4vUppNgBcEU4 - hA8rvLh3URNGP1KFg2YVoB+zCU5YbrKLDrigEMfIuSc9VY2HPnMZIYICDJeMp122NshisM2AvCYSxpuF - Lbj4lTozz9eu0/PRl0LFcUsxcGSuycCZ+XKtmQNqeXNA2sESt0zAKOVJPi/LRT9Jq8AVh9dh8MzrMMDl - qm/5csy7ZV5c8VoDjhZ/GDJFzjtc7DpiGXaTuv1ydjFOvqcCN73bgE+qfcZHeDzPlXjurcW0twTWwbUR - FHpDeOIbF057tAq/u7ZEylBixALju6cux05T80xG343vNhpRpjoaNrblRN8Mcjfmu+kWuOhntpBIkYnX - onDD+nDS7Zvfb8Tvby7FQAoz/5F7UM79PbknKdpQNL3mrXqzeiIFUbYP7ZFYh1Rg3c09Iz9/1eA3k81P - eqrG2OsHFxaiH+sjvtp/dA5+dgVFWGa+taAkFELTirCZP3Bj9z9Jm8CVdB1uY1uyrbhPg/jq101+vFbo - weWv1eHI60vMohVZJ7F9lpuFJTiB/ZgHKzFXyvRJtReulZRzKXB/99zpgOXlddj2pcEgXsp1Y9qz1fjD - 9aX49TUl2PfcAvQdLvYRf9te+qtjbirFHGlvZqiVh4PmfmIfwzoni+DfQfZLl8BlY54h8X6CmXyV0vcu - qhJf+rjJTCC/M7PT5BnS9+Tl2HtGAX4j9Rt6XwXOfbEGrxS0oL6V97KVfeh0/nTA8nJIZ3Ukgoc+D8pz - pgWD5PncZ4Q8nzlXpgpcSm9FBa5UUYErAzhuVNKOClxJqMClKEnwxSE+2fyR13pw/+d+CRatLAiTSeLw - Mp4u7CCR15ZXfrjamUESxLw8D+79tBnnv1yLkyWQPm5uuREPmOHBDBMG6xSaGJAwQDPCnLCx83eFwEXs - oPHbLAxL6JovQS4zNIbdXYnjbyvHOKnLRa/U4t7PXHi71ItiX8jMJ2PmDpJjNnb+DiFloX34jwLE5/V+ - 3PNZM86SoG74gxU4/tYyjL6v0qx89kmdzwgMLHNkvQTYchznMnI6L8tFW3eFwEV4LQo9zGqj9MZ9mTXy - TVMAt3/ciInPVOPEeyrMimrTn6/FzR80mtUt6SfNK6x5rehfGzv/1sBsPf6jnctDIbyS7zHDO296vxFT - nq3FSeK7FIKmPFtjsrwKWkKm7IRlSpyrKBmWNd0Clw3LQN+lUMBy2SJNobTP3VJuDg09/uZSjLm/0qxS - eOPCRjwrNv6m0W/EcQpIzJ5xzODZBHab2MIRJ9nP8QTwVmmL9EvNcq/WYcQDlfiv+OqIB6tw3bsNZigj - RU+T6cjrSplZ9o31W10lcBmxULYbX5X92J9xXx7D+QFvE18944kqDL2zAicIE56sxs1ixwXSN3Cid06a - znrZfbBTO6UDtjkFqqZ2a1XIu8R/aaPzXqrFKXJf/feWMpzxaLXpj7lgAfe3732WdbNtLn9Pt8CV6L8U - PDl8mD5cHgzjiSUuTJY+4gR5hpwsdj/3xTozpPaZ5W4zbxvn8OLE9bR9V9ic1+AwaQ79XrtO7uuqME5/ - 0ov9L/DI+6nbejZzrkynZ7ei9AZU4EoVFbgygONGJe2owJWEClyKkgRfHE5zSXDnwn4zXTj9cS8W1YRN - EGi+jd9cwJIGKBQwMGTAz4C5UYKt6kjIrLL3TWPAiDOcZ4fDwfh3CgTMHthcWe2ApasELhsGqAzImKET - Xh8xwWORXJtDkOy6UNypjoThkr8x62BTQt2WwqCPohmhgFYlNs1rCRjx5/N6n7FtiZTLu8qaB4plZls4 - ncuG9WYZu0rgSoQ2YtvTV31rwqgIB5HrDph6LBHyPSFUhsJobI2Y+nJ/WwBxOt/WElhj+a0RBOUajW1h - VIXDKJMycOJtCkAsV678zLbmPrQzs0VS8d2uErgSYRkpzvC6vB9Z7mXNfnxW5zd2LmgJmjbnhO5e8dsw - 6yP+tTXCOK9p2onlk3bjsMOaaMjcr7Sf5at+cw9ySLItEqbSrl0lcCXCtmV9uC/L6RM7se+iHTms+suG - AHJcQbONdQ2sFV+VY3jezrz/U8EuK9vRtTIq/hsy5coXn/2q0Sft7jOZnfSDgNSDfmTEWfHNlARN2Sfd - Alci9CHanP7Lyei5ImuO1OUL6Xdpe9arQvygPmZNUM/sP7YTy7m5e6Mz4DUocNEmq9e24rmvQ/j11S0Y - eIZbfM56Njs+txWlt6ACV6qowJUBHDcqaUcFriRU4FIUB/jyIAyQn392hQfPZVNokBd9CSK6OsCy4ZxT - DJoYXPMfgw7mkbTF5zriCnjcxr/bc1SlIhLws6sFLkKhyMrkYIkt25I22c76tLJe8b/xn8mkcDjP1sKg - mfbiNYwwwDIQlkEww4zkH4N3ZuFsbu4v1pt2z4TAZQXj39rVCAjyM+fDal8n9pSfuY3/GIpvKkOqM7Cy - dixRkDb+1m+/tTHLRh+m7dnatuC2ubamLTIhcNFezN77NguJ5ZdP2Wb5bRz5m12frbWxZUepr0A/5Hlp - L3O/2Ncl8o9/4z60eSr3SyYELuLkq6wD69MmvkqsduFfrX3Tcf+nAsvKcib6L/sFzqtmldf6G21PPzci - +Gb6iQ3IubtS4LL8yCpn3Oqmr93gR/KzVZtv62P77+batLNgX2/mq1sRwQ3vBfC9mW704bxbI+TdlM/m - 5Oe1ovQmVOBKFRW4MoDjRiXtqMCVhApcirIR+BIxshk7Tnbhqjf8qI2E4/OQWEFCJoItXtcs8x8PQBjY - c7gJAyR7aJrJ8pJ9UwlG7H0yIXAR7sNgmHalUGHXxVqZkIGW9beuyNywM0p4bdrSZBAIxqbyt47YlGXN - hMBFGORyPytTw7Il60EoZPAf/WdjQyzTBW1CAcSIiALLwjKxbiwjbZWKMGLD/TIhcNlYNuZR3/oLP1ke - 1s8StzrfxhRPQnJu/ku8Z3httrd9zVTrkSmBy8bYUfanzShqsC7f1kfs2EX3/+Zgf8++iPVjuWzbc3VE - ltXUW2yfar03IPVifbtK4CIsI6FNWSPefyyD1UdYdTECuJzT3tfpPJ0Nr0Mb0g+4cuhHVSGMfMSLHSbL - O+koQQJ6x2e1ovQmVOBKFRW4MoDjRiXtqMCVhApcirIJRjRjwGkuHH9nC+ZlB9HURuEiPg9MBgMuXtuG - wZ9NR8tkBy6ZErhs7AyV5LoYkvZNF05l2FCOpH03BevNYzIlcCWy0foITvunG/vaGyuX0zEbg7bIpMBl - k1yXxDqmy3cTr/E/13bYf1NkWuCySa7LltYnndh9hE1yWZ2O2SxyXFcLXIkk18Oui8Fh/3TCoYn0IYgv - VrVEcekCHw69zIO+4/leKs9jnXtLUaQvEFTgSoWA8G/BSQ9Q0oTjRiXtqMCVhApcirIJ5F7gXFx7n+PG - 5Gd9KPCGwaGKnJeEAUBHg7jOhNd2wmnfjWHvn2mBiyTWIRGnfdOF0/WJ074bg/vTN7qDwGUfk4zTvl2B - U1kScTpmY3D/7iBwJZY/Gaf9Owun6xGnfTdFdxG4kuth47RvJnEqo43T/ptFbJVJgcupHsRp33TjE1sw - 83G92OPj8jD+dlsLBkkAb95JKW7p8ERFkb5AUIErFRqF3wtOeoCSJhw3KmlHBa4kVOBSlM3AF+vhLhx+ - lQcv5wbRssqeE8YSMpxe1HsKdiCz1QLXJ1svcG0rsN5bLXCJ/TtD4NqWoS26g8DV0+kuAlevJcMCV3ci - tt768qgmGsaN7/tx0CyP+Jk8fzn/lmZvKYqFClyp8p7gpAUoacRxo5J2VOBKQgUuRdkEfJHgi/WJzdhr - ihvnz/Ph09qwBNYRCUk48bD1Yt5Tgzm73IkC12Wv1WO/jghcN5WZpfPL5FhOGK4Cl4PA9UkTjhE7bVbg - os0lgN3n3AJc+poKXJuCtviOwFUbF7j+k5rAddgFhUbM5Qp4KnBZAldVKIybP2jEYZfFBS6KKZsRuH41 - uwTXvasC1xbTUYGLvn3CMuw1KQ9nPLENCVxih7XiO4GVETy5NIBjb2vBjvLMNeIWV07U7C1FsVCBK1UW - Ck5agJJGHDcqaUcFriRU4FKUTWC/SHAurjEu/PxyN275yI/GtogEhZyeN/NDFbcGu9wbBC5fEBctqMNe - 5+RbYss4Cag2IXBtLz///sYy3P5xE0pV4DKw3okCFzPb7lzUhD+KnYzANXIzAteYHOx5TgEufrUOhd6g - hK4qcDlBWyRncB11ZQmy/p2CwDV0GQ47vxCXvFqPZU0qcG0QuIJh3LSwEYdcWmz8cJMZXGLHgeKvh19V - gqvfaUS2ClxbRlzgal/Tikteq8Mg2pw+Ol4+k/teW+A6fhn2nJCH8Y9VI28bELjYXzIjep34ToU/jClP - e7HrZBf688ulsfFnsNPzWVF6IypwpYoKXBnAcaOSdlTgSkIFLkVJkZHN6Cv3xikPeLG4NmRezDnhPFct - TH5h7ynYQWiiwHXhK3XY4+wUBK7h2RgifzMZXJ0wB9e2AuudnMF1T0eGKI7JwT6dNAfXtgxt8T8CVyoZ - XBQYT1iGw84rxOWv1yPXFTDnsFY97H02ThS4OETxVnuIIgWuVDK45pTg+vc1g2uLiQtczOC65NU6DBK7 - Z41cvmmBS/x3j4nbTgYXV6dskzvQtSKKF7ODOPpaj/lSyYhbOjRRUb6LClypogJXBnDcqKQdFbiSUIFL - UVJAXiIocGWd3IwfX+aRgM6PnJYQWtfLi7nQUwNju8wM8Ln0fYk/KEF/Hb53fgH6mOFyElA5BVkMvoYu - w87yedyd5Xj8GxdqYmEjkvFf4rl7G6w3BS4G+qSmNYQnlrpwwt3l2JF2O1mCV9qUdrRtakRD+dvIbPQb - m41DLyvCDe81GNGQGVyE5+2tNnWCtkgUuD6v8+H315da9qUwk+izNrT5qdnIOn4pfnphgdzH9SgLhrBa - zhERKMw4XWtbhqII7/118n9dJIx7P2vGkdeVYMC4bPRhJhFF7kSxkD+TU5dj8Ohs/PmGEjmmyQxvpkio - AlcHEVutFqtR4Lr8jToMOl1817a7be9Eu1MAO2kZ9pqRj+nP16LETYFrRY8WuJgJ3S7l/7AijLGPebHX - OW6xgTxvdWiiovwvKnCligpcGcBxo5J2VOBKQgUuRUkBvlDw2+QRLuwgL91/vs6Dx78OoHlFRIITilwx - E6g4vbz3BGwxploC3Ps+bcLvbyjFIGYbDZdAixkDFF9sGICNke0nLsPeU/Nw9gs1+KjaC99qThIc2zAv - WW+Hw9047M27OoKPxT4zxE67UmA5bpmVHUc7JtqUoszJy7HzxFwMvbcCzy53ozEWMeJN63pLNFS+S3Ct - 5bcUuTiX1ujHqjBkcp5lS5N9lAR9efhyw59vLMXTS13wyj3M7KWgtJfTNXoDvG9XiQ3dK6OYX+DByIcq - sdsUseMwsRXFFgqytg3pq/x96DIMGZ2N0bLvO2UtaGilRGgN8ww4XEPZOBSwV6xtNYt1HHRRIfqYPlZg - P5Hov9w2Yjn6nZaN31xbgrkfNaE+FAHEf5k919MELn4RwHLzC6LKcBRXveHH9891oy+Dd2ZuqbilKP+L - ClypogJXBnDcqKQdFbiSUIFLUVKELxX8PKEJO45qwsTHvPiwKmSyFTjEh8IOX9idXuS7O2EJMijHcIjI - B1VenPtSHfY7r8ASAySINWIBxQHCIEvoNy4Xv7uxDI997UJt1BqeGF0Xczx/b4VZFcyOqRP73P95Ew6+ - pNgSDWwBxrYpfx6Ta2z9i6tKcesHzch2BRHkOeR4Zio5nb+3E1gbMwEy/1WEwrh7cTP+fFsZhlCc4UTd - yX4r9u07Lgffu6AQ575chyUNAaxc14q10ko+uXd7agbM1kL/MuKU2DLbHcCtCxvxyzkl6Mt7fyTtJ75p - 29H4q/wufcPeMwpw7buNqAiHjLBFf3c6v7JpzBcM0gbvlLZg7GPV2O+C/LidE6D/npqNgeNzzCIA58+v - w8dVPgRXxUwGGNuwJ2XN2fNuse4Ut55eEsSxN3swYGSTNTxRxS1FcUYFrlRRgSsDOG5U0o4KXEmowKUo - KcKXCg5VHCb3xynNOHCmB2e/5MfS5rDJIFkDeWGXl/aeODTHBBsSnLL8dbEQXsr14N93VWAQh8Qwg4PE - hS0GWf1l+19vK8e9nzehyB+UwNYKVHpq/dOBPYSOdqH4+VWDDzNfqsWhFxVZASvngqI9+TNtOj7XzGc0 - 5+0GLGkKwr/Kym4wmUViV6dr9HrELhSYKa54xV4F3iDmftyIo64rwUBmyzHTcLTYl/7Luc9GL8chlxVi - 1oJafFLjQ2BFFCvWtyISFwd6re+KDQPioxxiTL/7ss6P816uwyHiq32ZrUWx0AiEROwovx9wXgHOeLIa - Cyu8CFDckn/0c73/Ow79Nyw+WBUJ4eklLvzn7goMmZpniVy0OX2XwrjY/rBLizFT2mZxpR+BtphZ2MMI - 4D2sj6C4Zcn3MbxXFsbxt7dglzPk2cqhiWMSnruKonwXFbhSRQWuDOC4UUk7KnAloQKXomwBfAEf5pJg - w4O5HwVQ5g/HhypaAbfTC313h+WOSPmj6yMoCwbx4BfNGPFQFY64rhS/uKoEv7y6BD+fI8jPJ95TgSe+ - caGuNWwEHEIhRocmfRcOoWPwaWXHhfFZrQ9Xv12Pv80tx+FzSnG42PRwsenPrizB328vx20fWqvRMfhj - ViAHfVF8VNFg0xjfFZtx0Yf8loCZKH3o/RU44lqxsdj3J1cW40dXFOOPN5XiitfrsKzJb/bl3Ftsn96a - uWVjxD2xYev6mLVIxOooPij34vLX6vGfuyrw66stO/5itvQD8nmU9Annv1SL92WfhraQ+CkFcksodzq/ - shnEbvRh/isLBPHw580Y82iVyZD9hdibk/4fclkR/nRLKS6RNllU7UfrmlYzNLFtfSs8co6e0kfwGcH+ - jZPKs85LmiOYOc+PHfnl0UlN1vPVzpZWFOV/UYErVVTgygCOG5W0owJXEipwKUoH4csFJ789uRk7yMvF - v+704rGvAqiLhrFSAmbOx2UCxoSX+p6CyeSK42mPINcTxOtFXjy33I2nlrjx+NduvJrfYgSCprawEcSY - /dJTRb2ugAEd7cOgjvati4WxtNmPVws8eELs+eQ3bszP82BxjR9V0QiCYk9mbpm5jNSuKWOJXGI7obkt - gm8aA8ZXnxffffQrl/Hdjyt9ZiL1KANsZizKJ49VAdGCvspMIvqff3XEZBR9US92LGjB08vceEJ89cVs - D94r86LIF4J3teXXtm87nVNJHdqR/huWvrfIE8JrYvenxOaPi/8+u9SNhRU+lAZDZugys+3YVrR7T/Ff - u5yU/CkwlwfDuPhVP/aZ6YaZ43J0wjM2+bmrKIqFClypogJXBnDcqKQdFbiSUIFLUTpIwstFnxHN2HOy - C6Me8uL1oqAJENfI6zvFCX4r31MDZwoAnHh7rQRRDKBcKyJobI2gPhY2vzPzxZ53jPurQLBpaB9muDEo - XSfYdqU9G2IRM0E/5+riZNMmGy7uO2rXjkP70XfNypNiV/ouRcWGeLYh/8YhxaG1vXxYogO2PeirFOvp - p3ZGV2ObZUdORM+5trid/myLhErnwAn/mZlFP6X/0m8baHfxY9rdTEhP/10XQ4vs31P81/iV9GsxeWas - QBQVoQge+iKIX83xIOtUeeekwOX0vFUU5buowJUqKnBlAMeNStpRgSsJFbgUZQvhSwZfzE9uxg/OdePc - l/z4oiFs5qNaKS/wFLl6cvCcmHmUDMUZ/t3pOGXT0G7kf+yqNu00jI2TfJf3I/1ZbZwatp869gG0o9oy - bdi2/x+7Cz3V5nwWtsbFLXd7FE8vDeFfd3ixw2Q3skbKs5SrJjo9ZxVF+S4qcKWKClwZwHGjknZU4EpC - BS5F2UL4kjFW7pWR8pIh/OhSD655x49SfwTrEcOK9TEzr01PFblYbgaxVoBrZQwQIxIITscoqfGtcGDb - 1Bpq5LSv0jHot9/67rd+S7jN/jtxOl75Lsl9gO2r6q/pIdE3mUmX7L/J+3R37PntOJx9FeTnlTF8VBXG - GU/4sOcUeX5yxUSKWwzYnZ6ziqJ8FxW4UkUFrgzguFFJOypwJaECl6JsBfaLxvBm9BvbjKOu8eDWDwOo - DEXkZT6GVetjZrifPVyxpwQliqIoirKl2M87zim4Up6Da+V5SIFuYUUIZ7/ox8Hne9CHGdDM3uJz1On5 - qijK/6ICV6qowJUBHDcqaUcFriRU4FKUToCTzo9sRr/xzfjV1R7c+kEAtZEIwEwuWN/Eq7ilKIqi9AaY - ucVnHucWXCe0rY3hk+owpr/gxffOc6PPcL5rynNTM7cUpWOowJUqKnBlAMeNStpRgSsJFbgUpZPgfTPS - hYHy86+v8WD22z58U2et2MZvr7kEP4cs2kM2FEVRFGVbgqKWW+B8YXzuUdyqCUXwYnYQ45/04uCLPBKY - y/PyFHleMkjX7C1F6RgqcKWKClwZwHGjknZU4EpCBS5F6UQ4l8hIF/qc5sJBs9yY8aIfn9SEEZUXfs7L - FYsPV3QKDBRFURSlp2IPS+RQRM63hfUx1AaiePCzAP51Rwt2nibvlhS3CLOeGairwKUoHUMFrlRRgSsD - OG5U0o4KXEmowKUonQhfPLjc+QgX+shL/IGzPJj0rB8fVgbRLi/9/Da7XbCDgeQAQVEURVF6Ih6Bw/GZ - ubXeiFsR3L84iL/e5sXOk9zWqsOJKyaquKUoHUcFrlRRgSsDOG5U0o4KXEmowKUonYj94kGR61RhlAsH - XuDG1Oe8eL88iODKqJmXi0IXhy7a33ir2KUoiqL0NPjsMsPu5XnWtt76EgeIoiYQMZlbf5/rxQ4T489D - wswt+1mZ/PxUFGXzqMCVKipwZQDHjUraUYErCRW4FCUN8OXDTDzvQr+xLhww043xT3jxZlEIrrYoVkgw - 0C5BQHittQR/ICFgUBRFUZSeQkieYbH1zNySz9UxlPjCuGdxAP+4vQU7TGbmljwLRwl25paiKFuOClyp - ogJXBnDcqKQdFbiSUIFLUdKEncklL/Z95UXkoPPdGP2YD3M/DuDjiiCCq61srjVCZF3MfAuuE9AriqIo - 3RlmbbUIfF61rWfGlkVTaxQL8oKY9aoPv7vJg93OcsvzT94nOSzRnnPL6VmpKErqqMCVKipwZQDHjUra - UYErCRW4FCXNmEyuZvSV+2pPeeH/5VUeTHjKizdKgiabK7YmhlUSHKxYZw1bZEaXHUQkBxaKoiiK0tVs - GEovz6eQPKtahRXrrS9oWuUZVhOK4vFvgjj5vhYceJ4b/ZmtNSYOf2ZQrgKXomw9KnCligpcGcBxo5J2 - VOBKQgUuRekCzMuIcGoz+o5sxh7nuDDiYS8e/DyAL+rC8K+ws7miiKy3VqFyCjIURVEUJVPwC5hWeVZx - ri3ibo3gw8owbvoggL/f2oJdJshzbpi8QxJmMPP5p8KWonQeKnCligpcGcBxo5J2VOBKQgUuRekC+ELC - b7E5XIMrScmLyR6TXPjDtR6cP9+HBfkhVAWsObmYzbVaWCFQ7LIn8dWMLkVRFKUrsDO2+OwJrIvK0ygq - z6Wo+RImtj4Gd3sUee4wnlwWxIRnfPj1FR7syGfdcHm+EXnGaeaWoqQBFbhSRQWuDOC4UUk7KnAloQKX - onQh9os+h22c1Ix+o1045CI3ht3fghvf92NhZQi10YgZ/kGRixPRRyS4CAucyFczuxRFUZR0wkVPmKnF - L1z47OG/tri4FV4VQ447jKeXBXHxAj/+MdeL/c5xoT+/uDmZwlb8GSeB93eefYqidA4qcKWKClwZwHGj - knZU4EpCBS5F6UJsgYsvJxS5RjajnzBkbBMOvNBaafGhLwP4rDaEqnAE/tVRtK+PYSViEmDETLDBAMT+ - dj05MFEURVGUjpL4TLFXRVwBK6M4uiaG+lgURd4I3iuN4Jp3/Dj2Fg/2neLGYHl+9RFMdrI931bis05R - lM5FBa5UUYErAzhuVNKOClxJqMClKBmC33CfJvcav/ke2mQ+9z3LhT9c3YLxj3nNaouLasJobIui1QQb - MbRKwMGhIlH5nZjMLsFMTK/ZXYqiKMpmsIWsDZlazNKKP1MobPEZw3m2mLXFLK6CljCeWRrCrPkBDL3L - h19c6sGQ0+W5dZJwokCBiwG3Zm0pSvpRgStVVODKAI4blbSjAlcSKnApSjeBQzs4xEOChsHyAvOba1ow - c54fTy0JYXF1GIXeCJraIghLAMKhi8QWu2yhiwGLTXJQoyiKovRuEp8RtrjF5wifJ8zY4s8tq6IoC0bx - VUMEbxWGcMv7fgy9x4s9z/Yga3j8OTVCsCeRVxSl61CBK1VU4MoAjhuVtKMCVxIqcClKBuGLis1pAr8J - Z0aXfA46rRnfm+rGzy/14Pi7W3DVW368XRJERShivoGPSHBiRC2KWwxU1lsrMPKT2+2/BRVFUZRejf1M - 4PNhw7Niw9+t4e+ksS2CrxrCuGdxCOMe8+Hoqzz4vxkSRHN1RA5B5ATyFLfs90T7+ZX8bFMUJT3wflOB - KxVU4MoAjhuVtKMCVxIqcClKN4JDPAjnMWEgcYJwYjP6yd9+crkHox/04opX/LjrowCeWxbE++UhLHWF - URmOmNWu2sHJ6a1v4jm8hMNMrO/kLfSf/tN/+k//9Z5/dr/P5wFZJayV3zmvo3d1FMX+CD6uDmNebgj3 - fx7A9W/7Mf1pH/50vRe7TnFbQxD/04SsU+RzbPzdkM8oFbUUJTOowJUqKnBlAMeNStpRgSsJFbgUpZtC - kYtZXRwGIvQd7cLAUc3YXl5q9pjqxhHXeDDuSR9uXBjAi9lBfFEfQlUoiqZWaygjaW6PwrUiCvdKRVEU - pTfikudAszwPGmIRNAqetihqwlF8VhfGI18GMf15P/54ixd7n+vGkHHNGCzPmX72pPHx5495HjGodnpW - KYrSdajAlSoqcGUAx41K2lGBKwkVuBSlm8KXGBsGFyMFzn0yVBjejL6yfe+ZHvz8Sg+OubEFx9/hxagH - fCZYufbtAO74OIjHvgzhpZwQFuTHyVMURVF6C68XWM+ABz4N4pq3/Dh3nh+TnvZh9EM+HCfPjN9e04ID - Z3kweLIbWSPkGcOJ4wkziCls8fmjGVuK0n3gvagCVyqowJUBHDcqaUcFriRU4FKUHgRfbOxAg6IXJ6bn - vF0MRuIT1A883Y0fXOjBr+a04NhbvRj2gA+jHo4jQY2iKIrSOzjtUR+G3e/FH25swYEXurDdJHlmMDuL - Qw4Jnx18jjBbOPEZYz9nFEXpXvDeVIErFVTgygCOG5W0owJXEipwKUoPIjHw4AuOGcIYv2cZtFDsGutC - P9ln4EQXtp/qxk7T3dhFURRF6XXsOsN6Bgye7EIfPjv4zJDA2Dwv+MlnB7fZww/tZ4z9nFEUpXvBe1MF - rlRQgSsDOG5U0o4KXEmowKUoPZzEgIRDSbjNnr+Lc6jYwYwd0CiKoii9A9Pvy3OAww2dsrRsEp8piqJ0 - X3i/qsCVCipwZQDHjUraUYErCRW4FGUbhS9AFLoURVGU3o3TM0JRlJ6HClypogJXBnDcqKQdFbiSUIFL - UbZR+AKkKIqiKE7PCEVReh4qcKWKClwZwHGjknZU4EpCBS5FURRFURRFUZRujgpcqaICVwZw3KikHRW4 - klCBS1EURVEURVEUpZujAleqqMCVARw3KmlHBa4kVOBSFEVRFEVRFEXp5qjAlSoqcGUAx41K2lGBKwkV - uBRFURRFURRFUbo5KnCligpcGSDroLmBrcCf9YPbnU+sbBIVuJJQgUtRFEVRFEVRFKWbowJXqqjA1QF+ - KDhrTh0j69Tno1vM6BdjWcc+HpYT+bMOiRfs4Nu/JbnQygZU4EpCBS5FURRFURRFUZRujgpcqaIClwM/ - TNCLKGpRR+LPh98Xyhr1orPu1BGypixo3XJebc2a+Epr1ukvx7LOnN+aNeLFWNZP7w5m/fxe4Z6gEb6o - oh0osPBOFeylqMCVhApciqIoiqIoiqIo3RwVuFJFBa44dnbVgbf5s358VzDrF/eGsn58d8AkS01aQD2p - 1ehJ1JccdacOYASqrWWSjZxw8mty4tfasya92p71x4fDWb9/KJT1h4dDWT+8w5/1famQU4V7ISpwJaEC - l6IoiqIoiqIoSjdHBa5U6fUC18G3+7P2v82fddQDoazfPxwynyNfbM2a9vqKrMmvtWVNeu27elKyzrQl - OG7cYha0Zk1gVteCdsNZrwpS8Omvt2ad9Exr1l8ebc064DafDl9Uget/UIFLURRFURRFURSlm6MCV6r0 - aoHrgNv8Wb+6L5z136fajXh11mutWdNfa8+a/KqlFU14tc3SjpI1pa3EceMWkyRwTXqlLa7ExbLOWrAq - a8ora7PGPL8y6+gHw1k/uN1vjbvsnWKXClxJqMClKIqiKIqiKIrSzVGBK1V6ncBlz6v1o7uCWac+2551 - +rw1WTNeXbtBE6I+ZGtFPV7gmjR/Zdbk+WuzznplTdakl1dkjZ/XlvWre0Om8hy62Mvm6FKBKwkVuBRF - URRFURRFUbo5KnClSq8RuDi/FhOXfnJ3MGvo061Zk+a3Z02bvzpr6vy18vPquF60DQpck6SCk19ebSo8 - ef4Ko+aNfG5F1m8fDBrD9KKhiypwJaECl6IoiqIoiqIoSjdHBa5U6RUCFxcUPOKBYNY/nogZfWfyK0xs - as+a/PIqoRcJXJPmr5CKr8ma8sqqrBmvt2ad8HQ4S24MR6Ntg6jAlYQKXIqiKIqiKIqiKN0cFbhSZZsX - uA6c68/63YOhrCmvRrOmvWrpO5bu04sFrknzV5m/n/VqLOvEZ6Imi+sQMdY2PjeXClxJqMClKIqiKIqi - KIrSzVGBK1W2SYHL1mk4p/rRD4Wypi5ozZq8IJo18RWO0lOBSz4tgWvS/FjWFDl+vOw/QT5/+2DIpLsl - G3QbQQWuJFTgUhRFURRFURRF6eaowJUq25zAxRF3h90ZzBo9L5Z1+oKY0W2mvBLLmviKClzC/wpcZl85 - fpIwWc51VFzkYkaXk4F7MCpwJaECl6IoiqIoiqIoSjdHBa5U2aYELmZsHXZnIGvMvFjW1Ncs3Yb6D3Uc - Fbg2IXCZ44VJVAMXtJlMLq6y6GTkHowKXEmowKUoiqIoiqIoitLNUYErVbYZgYvTSFHcGv1iLGvaqxSp - bN1HBa6UBS6ej1lcHLZ41AOhrINu929L83KpwJWEClyKoiiKoiiKoijdHBW4UqXHC1w/jGOGJb7YmjXV - FqRU4NoygYtQ5Joo5xn/Uizr5/cEzUz9VBCdGqAHoQJXEipwKYqiKIqiKIqidHNU4EqVHi1wGd1FGPps - 1Og6HF33v7qPClwdFrgIz0Oha/zLrVm/fzic9eO7g2YMqFND9BBU4EpCBS5FURRFURRFUZRujgpcqdJj - Ba4f3B4w86Gf8Ew066zX2rImG11HBS5Tgc4SuKzP1qxz3mjPGvViLOuQO62xoE4N0gNQgSsJFbgURVEU - RVEURVG6OSpwpUqPFLi4yN/fH49kzXi9PWvqa21ZE+J6jApcaRC4zM8L2rKmiaFHvxAzqyv2UJFLBa4k - VOBSFEVRFEVRFEXp5qjAlSo9SuDiXFsH3ubP+sfjEStra0Gb0V5sPUYFrjQKXNxvmuxjZ3Ixhc6pkbox - KnAloQKXoiiKoiiKoihKN0cFrpT44e2BhVwkrydw8NxA1vdv9Wf97fFwfEhiXHdRgavrBC7CWfwpch16 - B0WuHjUnlwpcSajApSiKoiiKoiiK0s1RgWuT/PB2i4PmBhYKWT2B793izzr2sYhJIrK1FhW4SBcLXPyd - wxV74JxcKnAloQKXoiiKoiiKoihKN0cFrk1y8O0WB80NfJgsJHU3pN2y9r81kHXsY+Gsaa/Z2kscFbiE - DAhchJlcPWxOLhW4klCBS1EURVEURVEUpZujAtcmsQWuH94e+NgeAtgdoW7CYYmcUJ7ilq2v2FqLClwk - QwIXYTrd6J4zJ5cKXEmowKUoiqIoiqIoitLNUYFrk8TFLf68SHDSAjKOmVB+LsWtcNb012zNJq632KjA - JWRQ4OLvG0QuabBuPieXClxJqMClKIqiKIqiKIrSzVGBa5P0BIHLErciWWe96qyrGFTgEjIscBHO+m9n - cjHtzqlBuwEqcCWhApeiKIqiKIqiKEo3RwWuTUJxy4hcdwQWMVOqOyHlyzpwbsBkbp0VH5a4MV1FBS7S - DQQuYjK5uvecXCpwJaECl6IoiqIoiqIoSjdHBa5N0l0FroOF798Wz9x6rTVrcoJ+4qirqMAldBOBi1Dk - sldXPFAako0qDtddUIErCRW4FEVRFEVRFEVRujkqcG2S7ihwcUji94W/mcyttu+IW8RRV1GBS+hGAheh - yHXqC9Gsox4MGWGpG2VzqcCVhApciqIoiqIoiqIo3RwVuDZJdxO4KGz9+oFQ1t+4WuKrzrqJo66iApfQ - zQQubp8s55r+5oqsE55tzTpIBa5uiwpciqIoiqIoiqIo3RwVuDZJdxK4OCTx6IcjWVNeX5E19fX2Teom - /6OrqMAldEOByypTe9ZZr6/MGvpsLOsHt1uNLc6XSVTgSkIFLkVRFEVRFEVRlG6OClybpLsIXEbceiiS - NfX1lVmTX7MEpU3qJnE2bFeBS+jGAtekV1f8f3t3HuVGdSd6XLaBxBAICQlwAnjB2AazmCV4YV/CZjKs - Nma1oavkBbIymZm883Iyk3Mmize8YmOMbYz3rqo25GQjk3nJJO8lYWY4SV728yZzSDIMBLfUalWV1F7g - vt+vJDVyddluW3a3Wvr+8bHU1VJJ6r426HvuvUo9oZFrk58asbC9v5crErhiCFwAAAAAUOcIXAdUD4Fr - 2IJMatIzudScHV2pWTuKKauNwHV46jxwpTVyvdSVumNjkBrZv5GLwBVD4AIAAACAOkfgOqD+DlxnLdSZ - Wxq3Sv1DOwiB63ANgMCll4+/pDO5+nVPLgJXDIELAAAAAOocgeuA+jNw6bLEyas7U3NeLM3cInDVagAE - rooocvXfnlwErhgCFwAAAADUOQLXAfVX4KpsKK9xa3Y5bhG4ajWAApfqxz25CFwxBC4AAAAAqHMErgPq - j8BVvedWddxSBK5aDLDApfppTy4CVwyBCwAAAADqHIHrgPo6cMX33IojcNViAAYuPd4Pe3IRuGIIXAAA - AABQ5whcB1QVuL4Xj1FHWtKeW0m9g8B1uAZg4Kro4z25CFwxBC4AAAAAqHMErgOqClwvV8eoI21/e27F - EbhqMYADl+rDPbkIXDEELgAAAACocwSuA9K4peT6d0VSC6jZ8AWZ1OT97LkVR+CqxQAPXKqP9uQicMUQ - uAAAAACgzhG4DiiavVXyPZE6ks4RZ81vT01etf89t+IIXLVogMClSssVj+qeXASuGAIXAAAAANQ5AtcB - jRJni2EL2l/WZYRHzML21Olf25masKrjgHtuxRG4atEggUsd5T25CFwxBC4AAAAAqHMEroPSyDVsYfvL - GqWOlNPn7UxdHsWt4kGXJVYjcNWigQKXivbk0plcMqCO8HJFAlcMgQsAAAAA6hyBq1dGLcq8HF9ieLiG - zc+kJkbLEg++51YcgasWDRa4lO7JpTO5jnDkInDFELgAAAAAoM4RuHrrZZHUAnpttBi+sL28oXxyrzgY - AlctGjBwqcqeXLpcMWngHQYCVwyBCwAAAADqHIGrt2oOXMMXtKeuWN15SHtuxRG4atGggUsd4T25CFwx - BC4AAAAAqHMErt6qKXBp3NKZW3NfPPRlidUIXLVo4MClHj9ye3IRuGIIXAAAAABQ5whcvXXYgasUtzoP - a8+tOAJXLRo8cKkjtCcXgSuGwAUAAAAAdY7A1VuHFbj0ExMnrz78PbfiCFy1aILApY7AnlwErhgCFwAA - AADUOQJXbx1y4Orec2vH4e+5FUfgqkWTBC5V455cBK4YAhcAAAAA1DkCV28dUuA6UntuxRG4atFEgUvV - sCcXgSuGwAUAAAAAdY7A1Vu9DlxHcs+tOAJXLZoscKnD3JOLwBVD4AIAAACAOkfg6q1eBa4jvedWHIGr - Fk0YuNRh7MlF4IohcAEAAABAnSNw9dZBA9fR2HMrjsBViyYNXKqyJ9eI3u3JReCKIXABAAAAQJ0jcPXW - AQNXZc+tOUd4z604AlctmjhwKd2T647e7clF4IohcAEAAABAnSNw9dZ+A5fGrUlHac+tOAJXLZo8cCnd - k+sO/XTFA0cuAlcMgQsAAAAA6hyBq7cSA9fwhRq3jt6eW3EErloQuCLVe3LtZ7kigSuGwAUAAAAAdY7A - 1Vs9Alf3ssSjuOdWHIGrFgSubhq57toYpM6WgTxajFn8rtGLM0PlGIGrCoELAAAAAOocgau39glcfbXn - VhyBqxYErn3onlwauXQa4shF7dFsrrKhgsBVhcAFAAAAAHWOwNVb3YGrFLf6Zs+tOAJXLQhcPeieXFM2 - +KkPfuWt1Cniw1/dmTr1azuHnjG/fdqoRZlXxyb/ZWg6BC4AAAAAqHMErt6KAtewaEP5vttzK47AVQsC - Vw/6uBq5bnvej+LWaV9rT31kfvvQkYsyU89elHl11KLSXwC9bGajF5eMmJcxJ332L2aQ/IOp/2hG/3gC - AAAAAPqfRq6Hxf2vmyGP/rc5+W/+YkYsyJhzV2TNOfJ+Lum9XjM5W97bRxZlXj5jfiVu9d2eW3EErloQ - uPZLI9c9m4PUJStyqQmrckMvX5mbKn8BXj1zXrs5e2H0F6Cp6T+GargGrs/8xQySfzD1H83UI/KPJwAA - AACg/2nkekhMf90Mmfnf5uTPlQLX2BVZM0rezyW912smOptthPjIvJ0vX76yIzW3j/fciiNw1YLAdUCP - v1hMzZbnMnVrMOTqNZ33yl+AV0//2s7oL0FUe5vYu4Gr3Zz4mTdLcYvABQAAAAD15UEx/XUzSAPXX1cF - rtLMpaamcWu4/DzOnLfzu7etz6c+8VJXYhvoKwSuWtRv4Bosv9hj5Rfcr+bsKA5+4sVCaoYTnnzz+vzj - Fy7L/nb0U+3mwqUZc9GyjLmwiY1fkTEXiwsWyz8G//Mtc8KsN80Js980738cAAAAAFAvTpor79VmvWFO - /sSbZtgXd5oL5P3spauz5qLlye/1msn58rM4V97TXrsm971Pfz0KTIltoK/o41tthcEErsPRN4FrsNxu - qDhFvj5TjBWXyNeTxGQxUUwo069vlPPdabeF08R9ZXq9L90nz3v6LC+88/EdhVtsL0hP3RK4t67vfOtj - a3Pm1nWdRq43tdueL7l1bae5dnnOTJyXNRPnZ83kBQAAAACAejJxXsZMXpQ11z+dM7fIe7jbN5bfzyW8 - 12smt8h7e3X/Fv9nc3eEV9tevzUIFT221Rbc09IW3Gq7wZUi3ksmWW7wUTFOjJCvTxMnyvM+VgySY+Wu - Q+Aq/yD0e4cVuPSHOVgcK+c5Xi4/LEbJD3m83E5/OXPk6y+JVWKLfP2i+LrYIdrK9Ot/lu+/Ipevin8v - 0+t9qfKY/5r2gh/La/jlY07w1szWYM+M1sDM3C70EpEZWwPz8FbfPAIAAAAAqFPy3m273/0+7tGq93TN - Tt7z5+S9//+O9YC+FvUPq3T5Q/FNUWkl6iUl328Va8V8+fpJca88/0lCJxOdYbvhieI4uT5EDCJwHXrg - eq+cb4QYL26U8zws3/sbsUA8K74jfidyYk/Z3v14R5i64gVmtpjbFpo56GHui6F54usAAAAAgHr1uHpJ - 3r/tKL+Pi72va0b6M1CJHaB/aRd5WyQ1k0pTKYg/ix+JzWKJ+KLthmlxu+UGE8RYyws+QOA6eOAaIrc9 - Se4/Ss5zl5xvgWgTP5Tz/EK+95p4U2TFLpH0SxsYvMDMiiJXiARz9B/IFwEAAAAAdU3eu81u6/mertkl - doCBQ6NXXrwl/my74W/ETyw3+JZYY3lBuqUtuFQuP2Q7/nsIXO8GrkG2s0t+IP5Z8oO53naCubYXLJZz - /Uh0CqPkHGgyld89AAAAAKD+JL2PQ0NIXAVX/r3vFr+WrzeKv7Ud/y7LzZ9nuYWT0s6eIU0auIqD5UW/ - z3Z2jZTLm+X7X7ad4BWxU27vC5061+MHCgAAAAAAgH5VFB22E/zecv0Nlhs+aDtd422n+EHbKRzTTIHr - JNsJJ1qO/xnLCVeI78p935AfjIkk//AAAAAAAABQL5xoVldBvGI54QuWE/y9uD3duuuMRg9cQ+TFnZV2 - uqbJD8GznM6c5eblh+En/6AAAAAAAABQ96K+43Tuthz/lbRT/Nu0s/tC29l1fKkXNUzgkhfhBh8Wd1lu - uEle+P8VXXYUtohbAAAAAAAAA1t349E9vP7LdsOXLTf4tBgtBjdC4DpBXCrfe9Jy/R+XZmsRtQAAAAAA - ABpTqf1Yrv9Hyw2WipttNzx9IAeuk+QFPCh+IC+ws+cLBgAAAAAAQAPbLX5nu+E/Wl5h5AAMXMFw8VV5 - Ab8QSS8QAAAAAAAATSF8w/KCreK6gRC4BskTPV6e5EjL8+dbrr8n+UUBAAAAAACgmei2VZbnf6+lLbhW - vN9yg2NjXakmiQcP03DxeXnS3xdB9YsAAAAAAABA09PJUL8TKy03uEYMLjelmiUePAzDxOfFX6qeNAAA - aFJpLzCzhF5WrqvZbWhGld9/tXR5rMj/P0biYwgAADS0t+W//5vFBHFEZnKlWnTfrENkuWHKdsLKSU4X - fy9P7g+xJwsAAJpAdcCKyDGlAaP6enTb8iWaj/7uq0XjQsbL7Kqxw/gAAKCpdFhusE1o5BqsnUkldaje - SDx4MFWB6xhxnzyp/xd7kgAAoEnMaQvMEzsC84kXA/PJl0IzxwvNY62BmbEtiC5L133zwJa8mbY5b+5F - U5kqv/cHtvjReHhUxsJMudTrlhOYuW2h+ZSMmU++GJrHZQzNkrFkez3HGAAAaFhFscByg9P6M3AdJ0/g - WvHN2JMDAAANSmfY6JKzuWX69WOtvnlEA9ZW30wXd2/MmynPd5pb13dGl+qWtTlz45oOc82zHeZqNJVr - 5Pd+45pcNB5uK4+LW8TH5fo9m/LmfhkzD8n4mbHdjzafnd0WRtFUx5nO8EoahwAAoKH8wXKDObYTftB2 - awpceudDEQWuQfLAE+VJfEe8U/WkAABAg6osK9P4oLNt9HLGtry544Wcuf65DjNpVYe5ZEXWXLQ8ay5M - cP7SjBm3BE1Hfu/6u08aEzpWLn06ayY/02FuWpcz07bkTUt5jGlAZdkiAABN4zXbCR+z3XDou9EqqUnt - Xyrt7OmlvSnb3ZVqaQtSVpt/keUEW+UJ7Io9IQAA0GB0Fo3GBo1aOqtmZqtvpm3pNLc/32mue7bDTHi6 - w1y0LGvGLM6akYsyZoQ4ez9GoSkljYXqsTJ2ccZcvDxrriiHrjtf6DQPbskb25Fxp7FLxh6zuQAAaGyW - E/zM8oJ7W9r891peMepQyX0qWeLBZHtTtqOByz/T8vILLNcnbgEA0MAqM7Yqm4Bbju6j5Zvb1ndGM24u - WJY1oxdnzOinRDlYVMRjhkoKH2geSWOierzoGNLxpDO+LluRjZa0Tt2UN49t12WLpbga7dFVNUYBAEDD - eEe3KrA8/3stbfmrLbd4zNEOXKfIA37Kdv3/SHgyAACggcwpz9yaJf+z8cC2vJmyPmeueqbDjF+WNWMX - Z82IRVkzbGEpUIx6KmPOFnq5P+egqSWNiQodOyPFCB1PQmPXhcsyZtIzWXPzupyZvsU3ad2fS8YkSxYB - AGhoOcvNr7Pc4gVpZ8+gnm1q/+SP3QdRvnHrnuPSrV23W07wE1v+ByPhSQAAgAagAUFDgsYtXSI2fXPe - 3PBczlyyPGvGaIxYWJpxozFC6fVKqEgKG8DBVCKXji0NXEq/HrMkY8Yv7zDXrukw927qNC0yHue0hUQu - AAAamZPfaTuFz6dbd3/o3YCV1Kv2lbK9wkHousddx6Rbi+PTreFa2/E7E58AAABoCBq3dL8tS67fuykf - xYULlmbNqIUZM3xBKT7okrOkUAEcCd2zunSsCd2sfvKqrJm2qVPGZxgtnWVPLgAAGpTjv2M74U/SrYW7 - 007XCWm3K6FV9ZR4MC7thWfKg3zZdv1MjwcGAAANQ2fG6CfY6X5H+ol21zybiz4BTzcDrywfY6YW+kIU - uWTc6ZjTsTdWvr722Q7zwFa/+9M8k8YwAABoCLvF19NeODntFQYntaq4xIMxQ9NtwX226/+KpYkAADQu - nRGj0WCW55uHtvvmhrUdUdzSwDBcaGxIChHA0aSzBSvLYXU86nLZBzVyyTjVDz9guSIAAI3Kz6Xbgi+n - 28IzbK8wKNaqekg8WGWIuNT2wk1y8nzPBwMAAI1CA5fuuzWzNW9uez5nLlmR7d5ri7iF/qYzujS2Xrg8 - a25anzMPby/N5IqWK1aNYwAA0DB22V74b+J+2yucVOpUxXi36qafjJhgd+nSCz9se8HfWW7454QHAgAA - DULjli5L1Ot3b8yZy5/uMKOfenfmFssS0d+iwKVjUYxfnjW3rc+Zx1p1xmFJfEwDAICBz3LDLrHJ9oLL - bLeYsp09Ve1qX4kHy4HrGMsNPma5/vflcm/SAwEAgMYwZ0cYRYLpmzvNNc9mzbmLS7NldKPvpNgA9JeR - C0qzCi9fmTV3b+w0j5Yjl/yPb+LYBgAAA5d+6JH4o+X6T9pO8eTDCVyDbadrlJzka3ISNpYHAKDBzW0L - TYvrm5vWdpgLl5ZmybAsEfXo7IWlmYVjl2TMlauzZuqmfDSGmckFAEDD2mO5/rdtp3it7ew+LrljRYFL - p3jFdZ0glw9bbvBvcpKkkwMAgAagexdVTN+SNxNXZs05i95dCpYUGID+VPl0xbMWZMy5i7Pm1vU582ir - Hy2zJXABANCYLNd/y3YKX7GdXcN6NqySlOXme7CdcKTccbXlBlkCFwAAjasSBR7Z5pvb1uXMRcuzUdwi - cKGe6f5wZy4ozeS6cnWHuW9z3lhOaSyz4TwAAI3Hcv09thP+0HYKN1luMDipZaVsL9iHHDxO7nyr+LHY - UzkZAABoPBoEdHP5aZvy5qpnOsy4paV9t3SWDBvLo57pHnG6F9eFyzLmY2tz5qGt+ShuzY6NcQAA0DBe - F5+zXP9U0aNnyR/hPiw3OFt8Wbwhd3yn6kQAAKDBaNyasyMwd2zIR59MN+YpwhYGjtInK7abCauy5r7N - nWaWjmcxK2GsAwCAgc1yg6LwxA3iuHjPSqXbitWOsb3C7XLDHwriFgAADU5ncM3yfHPzuk4zdnE2mhXD - 0kQMFNFeXPPbozh7z6bO6JMUNXCxTBEAgMZjlbxme+H/sL3Ch2I9S2dwFSOlA10nyI0+LXf4k94x6YQA - AKBx6L5FD23Jm2tW58w5i0vLvghcGCgqgWvc0qy5ZX3OPLytvNm8jG0iFwAAjaUcuALbC1+wveKYdFtX - d9NSuiQxYnsFjVzD5HKp3LEjfiIAANBYdPbWo62BufuFTjNpVWl5ogYDlihioNAYO2xBJpp9eO2zHdFe - ci0ytmdHMxOTxz0AABjQirYX/ku6rXC97RUHV5qW6r5iueF75PImufG3xdtVdwYAAA1IA8DMVt/81Yac - uXxlNvpkOgIXBhIdq8MXZKI4e8WqDnP3xrx5zPHLS2+Txz0AABjwXhOfsNzg1HebVpBKtXhBxHL9s8Q/ - yI3+s+pOAACgAUWfNucF5pHteXPTug5z8fJMKXCVo0FSTADqjY5V/SRFvX7piqyZ8nzOzNhO4AIAoMEV - xVbL9a9q8YLBla6VammTK8Ly/Anim3KjoOpOAACgAWngmtMWmge35s3Vz2TNeUszZvRi4hYGnpGLSjMP - x8kYvnFtaR+uOV5ps/mksQ8AAAY8/VDE31ieb7W0BcdVulZV4ApuFb+UG+2uuhMAAGhAlcD1wJa8ufKZ - rDl3SSkWsME8Bhodsxq4zpMxfEM5cOnsRAIXAAANLWN5wd+3tAXHdwcuOaBXjpHLB4WuY9wTuxMAAGgw - 3YFra95cubocuBYRuDDwELgAAGhKoeUFy1raglO0a6noD/EB+eaT4k3BBvMAADS46iWKV63ORnGAwIWB - SOOWLlMcJ2OYJYoAADQNXX24yfKCc6sD1yAxTr6xXBTKNwQAAA2MwIVGQeACAKBpfd/yginivaXA5fjH - iSnyjZeEbtSVdCcAANBA4oGLJYoYqCqBSyMtgQsAgKbya8vxPyVOFamU7fjvE7Z846exGwIAgAZVHbiu - Ls/gGk3gwgDEDC4AAJrWn2zHXyhGiShwnWI7wZfkG7rBfNIdAABAg6kEroe25c11a7Lm/KUZZnBhQNLA - pS5YljE3rc2ZR9hkHgCAZpGzncAVl5YDV+EjthOulW/kYzcEAAANSgOXRoBHtvvmpnU5M3551owux4JR - sYAA1Csdqzp7S69fvCJrpqzPmRkauMrjO2nsAwCAhtFlO+Er4gbbKaRSaWf3CNstfEO+wf5bAAA0kVle - YGZu983Hn8+Zy1dmzTmLCVwYWHTG4fAFGTNmcdZMXJU1d27Mm0ed0tgmcAEA0PDett3wNdvtujPt7NbA - tfcc2y38IOGGAACggWkEaHECM3VTp7lidYcZvbjdjFzUTuDCgKFB9swFGXPukqy5bk3OTNviG6s8ttME - LgAAGt07thu+Zbu7p6edtzVw7Rlnu4X/k3BDAADQwCoBQDflvmZNzowhcGGAKQWudnP+soy5dX2neWR7 - KW7N0vFdNdYBAEBD0sCVtd1dM9LO3sGptFucJAdeTbghAABoZBoCdKaLW9qHa8wSAhcGlkrgGr88Y+7e - 2BnN3tLN5YlbAAA0jbztFj6R9opDU2kvvEEO/CJ2AwAA0AQqnzb38Q15c8Gyju5oEA8JQL2JNph/ql3G - a7uZtDJrpm/pNLNlLBO4AABoKr74XNoL359Ke4VrbTf8eewGAACgCUSbcbcFZupm31zxTM6MW5yNNu7W - eMBMLtQz/fREjbEXLMuaG5/LmYe25UvLE0XSWAcAAA1HlyjmxV+nvcJJqbRXvIbABQBAc9J9uDQIzNge - mNvX580ly7NRNNB4oKErKSwA9WD4wtIYvXJ1h5m6KW8ea/XZewsAgOZSDlyFJ9Ne8UQCFwAATawSAzRy - PbjZN5NXlZYpErhQ7zRwnbcka6Y832laHJ/ZWwAANB8CFwAA2NfjOwLT4gTmxjUdZtwSliiifml4Hbkw - Y8bK9UnPZM3UzeWliW0iYWwDAICGReACAAD7mrujtOH81I2d5spnOsy5SzJmhIYEZnGhzmjcGiE+uiJr - 7tjQaWZu96Oltko/GTRpfAMAgIZE4AIAAPvSpYql5V2huWND3lyyIlv6lDpdqhgLDEB/qcws1ACrG8vP - 3FZamsi+WwAANKUeges6OfCLhBsCAIAmojNg5u4IzYztvrllbYe5aFk2mimjex3pxvNJwQHoC9GyRDF8 - QcactzRrrnuuw9y/Nd/9IQkELgAAmpIGLt92C59Le8XoUxSvlgM/S7ghAABoIhoJdJmi7mP00Na8uWFN - zoxbmjUjFmQiRC70h2jWloy9s+VSZ25dtbrDTC/HLZYkAgDQ1CozuD6T9orvS1le8TI58K8JNwQAAE1I - I5eGg/u3+OaG5zrNBeXIxUwu9DWNWzrmRsvl+BVZc+PaDnPflnz0gQi6qXzS+AUAAE1DA1fOdguzLa94 - nAau8+TAjxJuCAAAmpAu+Yoil1zXyHXTczlzyfJSZNDIpcsWNTqwNxeOFh1f+iEHw8pj7bKnO8yt63Pm - oW35KL7qbMNoBlfVuAUAAE1HA9dO2y08YnnFwRq4RsmB/5VwQwAA0KS6N513AvPwtryZsr7DTFiZNWMW - lfZB0vigS8Z06VhSoAAOR2XGVnfcEhcuy5qb1+XNzFY/Cq/stwUAAMrett3wTdstTLO8YiplecHZluv/ - U+kbiXcAAABNpjJDZnZb6VI/re6uDXlzzepctPm8hq1hCzLmrPntfNIiaqIzA/VSx5TODhymY0ouz1uc - MRNX6sytvHloa2lW4Zy2kMAFAAAq9lqu/7rlBvdaXpBKWW5+mBxolW90xW4IAACanO5zFIUFLzQtrYG5 - b3Pe3LQ2Zz76dIc5b0nWjHqqPZpxM3JRuxmxUMilXtdjwMHoWBmu4yZSilznLs6YS5ZnzbXPdpg7N+TN - DBl3OgZVNKswYZwCAICmtNty/d+IKZabT6Vs1z9VLJRvvBm7IQAAQETDwpxyXHhom2/ufCFvPvZczkxc - lTXnL9NY0W7Omifmt5thCzRalGbjAPujY0THyplCL3UW18UrsuaaNTlz+4ZOc99m3zy6vTJzi6WJAACg - h8B2/e+ISSKVsr3gfcKSb7wSuyEAAEBElylq5NIZXcpyfPOwLlt8odPcsDZnJqzsMOOXdZgLlmbMeUva - zdjFGTMG2I/RQseIjpXzl2ajsDX5mQ5zy/pOc/9W3zwm4ysab15YvkwelwAAoKn9yfaChWKU0MAVHiOu - kW9sEXurbggAANCD7ss1V8yR6y3bQ/PgVt/cs8k3H9+QN7esy0VLyzRWTFwFJJsgrpAxcp2MlVvWdpq/ - krEzdXPePLLdN7NkXM3dURpjhC0AAHAAr9pe+Kg4WegSxUCdI+YJX7wjku4IAADQPZtrtlyPtKlQjodm - 5nbf3L85b+5+IW/u2CD0EqiiMUvdI9cfkLHyWLTHVhiNId1EvrLXlmJZIgAA2A9tV98R14vjhAauMGU7 - hffL5WfkwE7BpykCAIBe0cCls22eeDE0T+wIo3260q5vWhzfPNZaWmoG7EPHhdAxomNln/FT9SmJVvkS - AAAgwR7bDTfbTjjWdgrR5C2NW6l0a/FYuXzYdoLXSjdKvDMAAMBBRZ+8qEsYgQPQMcISRAAAcJhC2wmX - p1uLp9pOMSXXU6l0a5calHa6bk87hV/KjXbH7gQAALBfOtOmQmffdG9IDxyEjpX4GIqPLwAAgASZtFP8 - Urq168Ry19LAVSxxipPSTuFbtusHCXcEAAAAAAAA+pkvwt+mnWI63Vp8T6VrRUsUy4bbTvhVueGfkk8A - AAAAAAAA9Cd/l1x6tlO4TgypdK2U5YYlTvheMUVu+F254d597wwAAAAAAAD0q3ds19f94z9rOeHp3U1L - vBu4SobbbrhUbthZdWcAAAAAAACgv+m+8f9iu+H1lhsOqW5aKdvVj1Psdnza6fqs3PCPpTWNiScDAAAA - AAAA+lDUqfJpp7hJjIn1LN2DSz9OsduQtLPrZvnGd+SOb/c8GQAAAAAAANDXosD1u7TT9aT4YKxnaeDq - itk1zHLDL1iu/2bPkwEAAAAAAAB9y3L9PZYbbLWd4pW203VsvGft84VqcYtDLE/XMvr/LCcoxE8IAAAA - AAAA9KG9luv/h+UGn2zxCh+wYi1LpSwv3EdLWyCXwXCxXE6Qj50QAAAAAAAA6EvvWF7wA3F9S1swuCXW - slQUtOLkDu8Xj8sJ9KMXk04MAAAAAAAA9IWi5QXPinOSOpZKPFiuX+fYXjBPvC4neid2YgAAAAAAAOBo - C20v+IblhTeKY5M6lpI/dFnivkqBqzBYXCHXvyEn2x07OQAAAAAAAHC0/d7yCrPFidqrkjqW0pC1f27h - VMsN/8F22IsLAAAAAAAAfciJfN1yCxMSu1WVxIPd3MJgyw0vk5O5Yk904qQHBAAAAAAAAI6UUtz6lXjY - cgsnJXarKokHu7kqPE5Odpf4aXTypAcFAAAAAAAAjhQneF18QZwW9amkblVF/nj3IxV7cEtsLzhNPCn+ - Ux7k7R4PCgAAAAAAABwZvu0F68TFYlDUp5K6VRX5Qz818aAGt3jBGPGU5fpvJTwwAAAAAAAAUBPL9d8W - 327xgpstL3hPrE/tV+LBJHJijVxX6oMkPQEAAAAAAACgFpbr/0mkW7zgxKQ+tT+JB5PIidVQeZBp8oC/ - ij8BAAAAAAAAoAZ5y/W/Is7QDpXUp/Yn8WCScuBKWW5wijzgFwVLFQEAAAAAAHAkFIVnucHFYlBfBC41 - VjwlD7yz6okAAAAAAAAAh2qP5QbfFjeL94pSgzoElWB1qAaLC+QJLBJvVD0hAAAAAAAAoLe6xLcsN5gi - hpa70yFLPNhLQ8SFYp48kT9WPTEAAAAAAADgYEKhyxLvECeIpP7UK4kHD4HO5DpLnsynBRvPAwAAAAAA - oDeyYqX4qFXDzK2KxIOHyvbC0+QJPSp+KnaJpCcOAAAAAAAAvCa+YnvhOKGTpxJ706FIPHio5MnopW4C - dqc8wX+vesIAAAAAAABARV580XKD07QnlZtSzRIPHqqqJzNUnuRd4pXykwYAAAAAAADUTvFFcUalJ9Vr - 4FLvkSd6h/gn8aZIekEAAAAAAABoDrqZ/M/F31lu8JFKQ6r3wJWyvIIabjvhF8QbVS8IAAAAAAAAzWOX - 7YSO5RYmWV7hmOp+NEACV1cq7ew6Le0U07Yb6myu3bEXCAAAAAAAgMb1O9stfDnt7LrMdnelLK+4Tz8a - QIFrd2qWs/d42yl8XI63Wq6vHwH5duzFAgAAAAAAoGH4geX6P7Wd8NNpZ/dHZjl7U7bbNeADV8p2ikPl - +Fh5cU/IC/1hzxcOAAAAAACABvBftuvPt1z/KtspnJx29pTaUIMELjke3eYk2wmvt53gS2KbvOgfi9+L - 3wIAAAAAAAxwfxB58euqY41Ou87PbSf4hlhmO+GDcnmW5QaDbKeQ6pvAFaT+P6xdm4ykRy59AAAAAElF - TkSuQmCC - - - - 17, 17 - - - - AAABAAEAICAAAAEAGABcAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB8UlEQVRYR+2XPUgD - QRCFUwUkhX+IIAhBFMTCQlC00lKxUfuAhaCglUXAzsIIIgFRUEQshHRi6V8hCmKlEDCdTcogKAgRBAN3 - fhMnkCLJ7V4EEe/gMRN23pu3e7d3m1AouOpYAdd1x8BqHRL+qDRtdhwnBrLkLnEL9PlTs2DRKwxmafao - jXPkacn1d4rYayFZuRSRKYTnQRwkwA44Bs/aKEOeJO8SBfIFcAXedTyt9dvEFTAnxkHUyByFN6VZlUeE - zsFENRHGeoA0fa3El2fGyAAC1zqTafJR0A/ajcjfKxKRW0EcAZOyGmrIzoBpQ6862SmBgb+1AqVd4HVv - Tcetn4HAQLACv74CvDovdN+GTZ/0WnXoreurfdhID8KREozf/x4G9nRCxa+n54WBTTUw6FlsUIDeqepF - DMqLX7OYEuJGhBpFaHXIOQJcGmtR3K1L9mBMqlKI1r5OZtxKC5KcivKyI4gtVmQthreszQ/88OVWHKpA - ylZATk7K/SRGbfnFeohNCO2q0Bn5gJcQNa1gTTn3vpuXN0IwoYJ58sVqJhgbAjmtzZK3eRk2GpcznuwM - kFHxWzECOkWAOANOwAvjb8SNH2te7hDxRoTliF5QIwXyD90x8gflrmTKaGZ+i2goJ94lICvxBJJATs8N - fjX/L+8LhmH/b8WhH/UAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.Designer.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.Designer.cs index 7819869217f59e7e82d4a3d0703340afb72991ee..6c377c052cffba0b6e25f7bd112700f16d5546f7 100644 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.Designer.cs @@ -28,87 +28,115 @@ /// private void InitializeComponent() { - lblTips = new Sunny.UI.UILabel(); - uiTitlePanel1 = new Sunny.UI.UITitlePanel(); - lblSoftwareVersion = new Sunny.UI.UILabel(); - uiLabel2 = new Sunny.UI.UILabel(); - uiTitlePanel1.SuspendLayout(); + lblTips = new AntdUI.Label(); + lbInternetSoftwareVersion = new AntdUI.Label(); + lblLocalSoftwareVersion = new AntdUI.Label(); + label2 = new AntdUI.Label(); + label1 = new AntdUI.Label(); + label3 = new AntdUI.Label(); + lblReleaseLog = new AntdUI.Input(); + fbdSavePath = new FolderBrowserDialog(); SuspendLayout(); // // lblTips // - lblTips.Font = new Font("微软雅黑", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - lblTips.ForeColor = Color.FromArgb(48, 48, 48); - lblTips.Location = new Point(44, 51); + lblTips.Location = new Point(12, 48); lblTips.Name = "lblTips"; - lblTips.Size = new Size(247, 23); - lblTips.TabIndex = 1; + lblTips.Size = new Size(311, 23); + lblTips.TabIndex = 3; lblTips.Text = "检测新版本中,请让计算机保持联网状态....."; lblTips.TextAlign = ContentAlignment.MiddleCenter; // - // uiTitlePanel1 - // - uiTitlePanel1.Controls.Add(lblSoftwareVersion); - uiTitlePanel1.Controls.Add(uiLabel2); - uiTitlePanel1.Font = new Font("微软雅黑", 12F); - uiTitlePanel1.ForeColor = Color.White; - uiTitlePanel1.Location = new Point(44, 91); - uiTitlePanel1.Margin = new Padding(4, 5, 4, 5); - uiTitlePanel1.MinimumSize = new Size(1, 1); - uiTitlePanel1.Name = "uiTitlePanel1"; - uiTitlePanel1.Padding = new Padding(0, 25, 0, 0); - uiTitlePanel1.ShowCollapse = true; - uiTitlePanel1.ShowText = false; - uiTitlePanel1.Size = new Size(247, 66); - uiTitlePanel1.TabIndex = 2; - uiTitlePanel1.Text = "软件版本信息"; - uiTitlePanel1.TextAlignment = ContentAlignment.MiddleCenter; - uiTitlePanel1.TitleHeight = 25; - // - // lblSoftwareVersion - // - lblSoftwareVersion.Font = new Font("微软雅黑", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - lblSoftwareVersion.ForeColor = Color.FromArgb(48, 48, 48); - lblSoftwareVersion.Location = new Point(123, 33); - lblSoftwareVersion.Name = "lblSoftwareVersion"; - lblSoftwareVersion.Size = new Size(110, 23); - lblSoftwareVersion.TabIndex = 6; - lblSoftwareVersion.TextAlign = ContentAlignment.MiddleLeft; - // - // uiLabel2 - // - uiLabel2.Font = new Font("微软雅黑", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - uiLabel2.ForeColor = Color.FromArgb(48, 48, 48); - uiLabel2.Location = new Point(15, 33); - uiLabel2.Name = "uiLabel2"; - uiLabel2.Size = new Size(110, 23); - uiLabel2.TabIndex = 3; - uiLabel2.Text = "本地程序版本号:"; - uiLabel2.TextAlign = ContentAlignment.MiddleCenter; + // lbInternetSoftwareVersion + // + lbInternetSoftwareVersion.BackColor = Color.Transparent; + lbInternetSoftwareVersion.Location = new Point(152, 106); + lbInternetSoftwareVersion.Name = "lbInternetSoftwareVersion"; + lbInternetSoftwareVersion.Size = new Size(140, 23); + lbInternetSoftwareVersion.TabIndex = 7; + lbInternetSoftwareVersion.Text = ""; + lbInternetSoftwareVersion.TextAlign = ContentAlignment.MiddleCenter; + // + // lblLocalSoftwareVersion + // + lblLocalSoftwareVersion.BackColor = Color.Transparent; + lblLocalSoftwareVersion.Location = new Point(152, 77); + lblLocalSoftwareVersion.Name = "lblLocalSoftwareVersion"; + lblLocalSoftwareVersion.Size = new Size(140, 23); + lblLocalSoftwareVersion.TabIndex = 6; + lblLocalSoftwareVersion.Text = ""; + lblLocalSoftwareVersion.TextAlign = ContentAlignment.MiddleCenter; + // + // label2 + // + label2.BackColor = Color.Transparent; + label2.Location = new Point(43, 106); + label2.Name = "label2"; + label2.Size = new Size(103, 23); + label2.TabIndex = 5; + label2.Text = "最新程序版本:"; + label2.TextAlign = ContentAlignment.MiddleCenter; + // + // label1 + // + label1.BackColor = Color.Transparent; + label1.Location = new Point(43, 77); + label1.Name = "label1"; + label1.Size = new Size(103, 23); + label1.TabIndex = 4; + label1.Text = "本地程序版本:"; + label1.TextAlign = ContentAlignment.MiddleCenter; + // + // label3 + // + label3.BackColor = Color.Transparent; + label3.Location = new Point(43, 135); + label3.Name = "label3"; + label3.Size = new Size(103, 23); + label3.TabIndex = 8; + label3.Text = "程序更新日志:"; + label3.TextAlign = ContentAlignment.MiddleCenter; + // + // lblReleaseLog + // + lblReleaseLog.Location = new Point(12, 164); + lblReleaseLog.Multiline = true; + lblReleaseLog.Name = "lblReleaseLog"; + lblReleaseLog.Size = new Size(311, 179); + lblReleaseLog.TabIndex = 9; // // FrmLoading // - AllowShowTitle = false; AutoScaleMode = AutoScaleMode.None; - ClientSize = new Size(335, 180); - Controls.Add(uiTitlePanel1); + BackColor = Color.FromArgb(243, 249, 255); + ClientSize = new Size(335, 355); + Controls.Add(lblReleaseLog); + Controls.Add(label3); + Controls.Add(lbInternetSoftwareVersion); + Controls.Add(lblLocalSoftwareVersion); + Controls.Add(label2); + Controls.Add(label1); Controls.Add(lblTips); + FormBorderStyle = FormBorderStyle.FixedSingle; + MaximizeBox = false; + MinimizeBox = false; Name = "FrmLoading"; - Padding = new Padding(0); - ShowTitle = false; + StartPosition = FormStartPosition.CenterScreen; Text = "FrmLoading"; - ZoomScaleRect = new Rectangle(15, 15, 580, 256); Load += FrmLoading_Load; - uiTitlePanel1.ResumeLayout(false); ResumeLayout(false); } #endregion - private Sunny.UI.UILabel lblTips; - private Sunny.UI.UITitlePanel uiTitlePanel1; private Sunny.UI.UILabel lblDllVersion; - private Sunny.UI.UILabel lblSoftwareVersion; private Sunny.UI.UILabel uiLabel3; - private Sunny.UI.UILabel uiLabel2; + private AntdUI.Label lblTips; + private AntdUI.Label lbInternetSoftwareVersion; + private AntdUI.Label lblLocalSoftwareVersion; + private AntdUI.Label label2; + private AntdUI.Label label1; + private AntdUI.Label label3; + private AntdUI.Input lblReleaseLog; + private FolderBrowserDialog fbdSavePath; } } \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.cs index 83caedfb7c1ce3340cba0ea53b8c5bab24c2e727..2152b22c72fd2ac6c637578bec57eee7d5ed00bc 100644 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.cs @@ -23,22 +23,20 @@ */ using AntdUI; using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Util; using Newtonsoft.Json; -using Sunny.UI; using System.Diagnostics; -using System.Reflection; namespace EOM.TSHotelManagement.FormUI { - public partial class FrmLoading : UIForm + public partial class FrmLoading : Window { private string CurrentVersion => ApplicationUtil.GetApplicationVersion().ToString(); - private string GithubRepoUrl = "https://api.github.com/repos/easy-open-meta/TopskyHotelManagerSystem/releases/latest"; - private string FileName { get; set; } - private string CurrentExecutablePath => Application.ExecutablePath; - private string CurrentExecutableName => Path.GetFileName(CurrentExecutablePath); - private string FallbackUrl = "https://pan.gkhive.com/%E6%9C%AC%E5%9C%B0%E7%A3%81%E7%9B%98/blog_files/TS%E9%85%92%E5%BA%97%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E7%89%88%E6%9C%AC%E5%BA%93"; + private string GithubRepoUrl => "https://api.github.com/repos/easy-open-meta/TopskyHotelManagerSystem/releases/latest"; + private string GiteeRepoUrl => "https://gitee.com/api/v5/repos/java-and-net/TopskyHotelManagerSystem/releases/latest"; + private string GithubProxyUrl => "https://ghproxy.oscode.top"; + private string FolderName => "TSHotelUpgradePackages"; + private string FallbackUrl => "https://pan.gkhive.com/%E6%9C%AC%E5%9C%B0%E7%A3%81%E7%9B%98/blog_files/TS%E9%85%92%E5%BA%97%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E7%89%88%E6%9C%AC%E5%BA%93"; private ProgressBar progressBar; @@ -56,68 +54,80 @@ namespace EOM.TSHotelManagement.FormUI private async void CheckForUpdate() { + using var client = new HttpClient { Timeout = TimeSpan.FromSeconds(10) }; + client.DefaultRequestHeaders.Add("User-Agent", await GetDefaultUserAgentAsync()); try { - using var client = new HttpClient { Timeout = TimeSpan.FromSeconds(10) }; - client.DefaultRequestHeaders.Add("User-Agent", await GetDefaultUserAgentAsync()); - var response = await client.GetAsync(GithubRepoUrl); - - if (response.IsSuccessStatusCode) + var giteeResponse = await client.GetAsync(GiteeRepoUrl); + if (giteeResponse.IsSuccessStatusCode) { - var result = await response.Content.ReadAsStringAsync(); - var release = JsonConvert.DeserializeObject(result); - - var latestVersion = release!.TagName.Replace("v", "", StringComparison.OrdinalIgnoreCase); - var currentVersion = CurrentVersion.Replace("v", "", StringComparison.OrdinalIgnoreCase); - - var versionCompareResult = string.Compare(latestVersion, currentVersion, StringComparison.OrdinalIgnoreCase); - - if (versionCompareResult > 0) - { - var updateAsset = release.Assets.FirstOrDefault(a => a.Name.EndsWith(".exe", StringComparison.OrdinalIgnoreCase)); - if (updateAsset != null) - { - FileName = $"{updateAsset.Name}_{DateTime.Now.ToString("yyyyMMddHHmmsss")}"; - var isUpdated = await DownloadAndInstallUpdate(updateAsset.BrowserDownloadUrl, updateAsset.Name, new Progress(ReportProgress)); - if (isUpdated) - { - AntdUI.Modal.open(this, "系统提示", "旧版已停止使用,稍后将自动下载最新发行版!", TType.Warn); - ExitApplication(); - } - else - { - AntdUI.Modal.open(this, "系统提示", "更新失败,请手动下载最新版本。", TType.Warn); - } - } - else - { - AntdUI.Modal.open(this, "系统提示", "最新版本中未找到可更新的 .exe 文件。", TType.Warn); - } - } - else - { - AntdUI.Modal.open(this, "系统提示", "当前已为最新版本,无需更新!", TType.Success); - await Task.Run(() => threadPro()); - } + var giteeResult = await giteeResponse.Content.ReadAsStringAsync(); + var giteeRelease = JsonConvert.DeserializeObject(giteeResult); + HandleReleaseInfo(giteeRelease.TagName, giteeRelease.Body, giteeRelease.Assets, isGitee: true); + return; } - else + + var githubResponse = await client.GetAsync(GithubRepoUrl); + if (githubResponse.IsSuccessStatusCode) { - AntdUI.Modal.open(this, "系统提示", "无法获取最新版本信息,请检查网络连接。", TType.Info); - ExitApplication(); + var githubResult = await githubResponse.Content.ReadAsStringAsync(); + var githubRelease = JsonConvert.DeserializeObject(githubResult); + HandleReleaseInfo(githubRelease.TagName, githubRelease.Body, githubRelease.Assets, isGitee: false); + return; } } - catch (OperationCanceledException) - { - AntdUI.Modal.open(this, "系统提示", "网络连接超时,无法检查更新。即将跳转到网盘版本库", TType.Info); - OpenFallbackUrl(); - ExitApplication(); - } catch (Exception ex) { AntdUI.Modal.open(this, "系统提示", $"检查更新时发生错误: {ex.Message}", TType.Info); OpenFallbackUrl(); - ExitApplication(); } + finally + { + progressBar.Visible = true; + } + } + + private void HandleReleaseInfo( + string tagName, + string releaseBody, + List assets, + bool isGitee) where TAsset : class + { + var version = tagName.Replace("v", string.Empty); + lblReleaseLog.Text = $"{releaseBody}"; + lblReleaseLog.Refresh(); + lbInternetSoftwareVersion.Text = version; + lbInternetSoftwareVersion.Refresh(); + if (version.Equals(lblLocalSoftwareVersion.Text.Trim())) + { + LoginInfo.SoftwareReleaseLog = $"{releaseBody}"; + AntdUI.Modal.open(this, "系统提示", "当前已是最新版本,无需更新!", TType.Info); + Task.Run(() => threadPro()); + return; + } + + string downloadUrl = string.Empty; + if (isGitee) + { + dynamic executableAsset = assets.SingleOrDefault(a => ((dynamic)a).FileName?.EndsWith(".exe") == true); + + if (executableAsset == null) return; + + downloadUrl = executableAsset.DownloadUrl; + } + else + { + dynamic executableAsset = assets.SingleOrDefault(a => ((dynamic)a).Name?.EndsWith(".exe") == true); + + if (executableAsset == null) return; + + downloadUrl = $"{GithubProxyUrl}/{executableAsset.BrowserDownloadUrl}"; + } + + + + DownloadAndInstallUpdate(downloadUrl, "TS酒店管理系统.exe", new Progress(ReportProgress), version); + lblTips.Text = "安装包正在下载中,请稍等..."; } private async Task GetDefaultUserAgentAsync() @@ -135,13 +145,34 @@ namespace EOM.TSHotelManagement.FormUI return userAgent ?? string.Empty; } - private async Task DownloadAndInstallUpdate(string downloadUrl, string fileName, IProgress progress) + private async Task DownloadAndInstallUpdate(string downloadUrl, string fileName, IProgress progress, string tagName) { try { - using var client = new HttpClient { Timeout = TimeSpan.FromSeconds(10) }; - var tempFilePath = Path.Combine(Path.GetTempPath(), fileName); + lblTips.Text = "正在选择保存路径..."; + fbdSavePath.UseDescriptionForTitle = true; + fbdSavePath.Description = "请选择保存安装包的位置"; + fbdSavePath.RootFolder = Environment.SpecialFolder.Desktop; + fbdSavePath.ShowNewFolderButton = true; + + if (fbdSavePath.ShowDialog() != DialogResult.OK) + { + lblTips.Text = "下载已取消,将自动退出程序"; + Thread.Sleep(2000); + ExitApplication(); + return false; + } + + string selectedPath = fbdSavePath.SelectedPath; + + string targetDirectory = Path.Combine(selectedPath, FolderName, tagName); + + if(!Path.Exists(targetDirectory)) + Directory.CreateDirectory(targetDirectory); + + var tempFilePath = Path.Combine(targetDirectory, fileName); + using var client = new HttpClient { Timeout = TimeSpan.FromSeconds(10) }; var response = await client.GetAsync(downloadUrl, HttpCompletionOption.ResponseHeadersRead); var contentLength = response.Content.Headers.ContentLength; @@ -152,6 +183,9 @@ namespace EOM.TSHotelManagement.FormUI var buffer = new byte[8192]; int bytesRead; + lblTips.Text = "正在下载..."; + this.Refresh(); + while ((bytesRead = await stream.ReadAsync(buffer, 0, buffer.Length)) > 0) { await fileStream.WriteAsync(buffer, 0, bytesRead); @@ -161,6 +195,9 @@ namespace EOM.TSHotelManagement.FormUI { var progressPercentage = (double)totalBytesRead / contentLength.Value * 100; progress.Report(progressPercentage); + + lblTips.Text = $"下载中... {progressPercentage:F1}%"; + this.Refresh(); } } @@ -173,7 +210,6 @@ namespace EOM.TSHotelManagement.FormUI }); ExitApplication(); - return true; } catch (OperationCanceledException) @@ -213,13 +249,13 @@ namespace EOM.TSHotelManagement.FormUI } catch (Exception ex) { - UIMessageBox.Show($"打开浏览器时发生错误: {ex.Message}"); + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString($"An error occurred while opening the browser: {ex.Message}", $"打开浏览器时发生错误: {ex.Message}"), TType.Error); } } private void FrmLoading_Load(object sender, EventArgs e) { - lblSoftwareVersion.Text = ApplicationUtil.GetApplicationVersion().ToString(); + lblLocalSoftwareVersion.Text = CurrentVersion; CheckForUpdate(); } @@ -250,6 +286,9 @@ namespace EOM.TSHotelManagement.FormUI [JsonProperty("tag_name")] public string TagName { get; set; } + [JsonProperty("body")] + public string Body { get; set; } + [JsonProperty("assets")] public List Assets { get; set; } } @@ -262,5 +301,44 @@ namespace EOM.TSHotelManagement.FormUI [JsonProperty("browser_download_url")] public string BrowserDownloadUrl { get; set; } } + + public class GiteeRelease + { + [JsonProperty("tag_name")] + public string TagName { get; set; } + + [JsonProperty("name")] + public string FileName { get; set; } + + [JsonProperty("body")] + public string Body { get; set; } + + [JsonProperty("assets")] + public List Assets { get; set; } + + [JsonProperty("author")] + public GiteeAuthor Author { get; set; } + + [JsonProperty("created_at")] + public DateTime CreatedAt { get; set; } + } + + public class GiteeAsset + { + [JsonProperty("browser_download_url")] + public string DownloadUrl { get; set; } + + [JsonProperty("name")] + public string FileName { get; set; } + } + + public class GiteeAuthor + { + [JsonProperty("login")] + public string Login { get; set; } + + [JsonProperty("avatar_url")] + public string AvatarUrl { get; set; } + } } } diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.resx b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.resx index 8b2ff64a11300290ddac7e7d9bc26e5e0a766508..14fe195ef576fb4cdd892bfae2d2c70f38ac5a83 100644 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.resx +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.resx @@ -117,4 +117,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 17 +
\ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.Designer.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.Designer.cs index ea5b085c9ca2ff9411492a644c0ec089859b1391..0f1d14a92da6d4b0178bbdb19517f70ea6e7a72b 100644 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.Designer.cs @@ -29,11 +29,10 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLogin)); - label2 = new System.Windows.Forms.Label(); - txtWorkerId = new AntdUI.Input(); + label2 = new Label(); + txtAccount = new AntdUI.Input(); txtWorkerPwd = new AntdUI.Input(); picLogin = new AntdUI.Button(); - btnLoginBackSystem = new AntdUI.Button(); picFormSize = new AntdUI.Button(); picClose = new AntdUI.Button(); avatar1 = new AntdUI.Avatar(); @@ -44,142 +43,128 @@ // label2 // label2.AutoSize = true; - label2.BackColor = System.Drawing.Color.Transparent; - label2.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134); - label2.Location = new System.Drawing.Point(368, 199); - label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label2.BackColor = Color.Transparent; + label2.Font = new Font("宋体", 15F, FontStyle.Regular, GraphicsUnit.Point, 134); + label2.Location = new Point(368, 199); + label2.Margin = new Padding(4, 0, 4, 0); label2.Name = "label2"; - label2.Size = new System.Drawing.Size(29, 20); + label2.Size = new Size(29, 20); label2.TabIndex = 5; label2.Text = " "; // - // txtWorkerId + // txtAccount // - txtWorkerId.BackColor = System.Drawing.Color.White; - txtWorkerId.Font = new System.Drawing.Font("Microsoft YaHei UI", 14F); - txtWorkerId.Location = new System.Drawing.Point(648, 190); - txtWorkerId.Name = "txtWorkerId"; - txtWorkerId.Size = new System.Drawing.Size(238, 52); - txtWorkerId.TabIndex = 32; - txtWorkerId.Text = "WK010"; + txtAccount.BackColor = Color.White; + txtAccount.Font = new Font("Microsoft YaHei UI", 14F); + txtAccount.Location = new Point(648, 190); + txtAccount.Name = "txtAccount"; + txtAccount.PlaceholderText = ""; + txtAccount.Size = new Size(238, 52); + txtAccount.TabIndex = 32; // // txtWorkerPwd // - txtWorkerPwd.BackColor = System.Drawing.Color.White; - txtWorkerPwd.Font = new System.Drawing.Font("Microsoft YaHei UI", 14F); - txtWorkerPwd.Location = new System.Drawing.Point(648, 264); + txtWorkerPwd.BackColor = Color.White; + txtWorkerPwd.Font = new Font("Microsoft YaHei UI", 14F); + txtWorkerPwd.Location = new Point(648, 264); txtWorkerPwd.Name = "txtWorkerPwd"; txtWorkerPwd.PasswordChar = '*'; txtWorkerPwd.PasswordCopy = true; - txtWorkerPwd.Size = new System.Drawing.Size(238, 52); + txtWorkerPwd.PlaceholderColorExtend = ""; + txtWorkerPwd.PlaceholderText = ""; + txtWorkerPwd.Size = new Size(238, 52); txtWorkerPwd.TabIndex = 33; - txtWorkerPwd.Text = "admin"; // // picLogin // - picLogin.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F); - picLogin.Location = new System.Drawing.Point(658, 423); + picLogin.Font = new Font("Microsoft YaHei UI", 12F); + picLogin.Location = new Point(658, 342); picLogin.Name = "picLogin"; picLogin.Radius = 8; picLogin.Shape = AntdUI.TShape.Round; - picLogin.Size = new System.Drawing.Size(191, 57); + picLogin.Size = new Size(191, 57); picLogin.TabIndex = 34; picLogin.Text = "登 录"; picLogin.Type = AntdUI.TTypeMini.Primary; picLogin.Click += picLogin_Click; // - // btnLoginBackSystem - // - btnLoginBackSystem.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F); - btnLoginBackSystem.Location = new System.Drawing.Point(658, 342); - btnLoginBackSystem.Name = "btnLoginBackSystem"; - btnLoginBackSystem.Radius = 8; - btnLoginBackSystem.Shape = AntdUI.TShape.Round; - btnLoginBackSystem.Size = new System.Drawing.Size(191, 57); - btnLoginBackSystem.TabIndex = 35; - btnLoginBackSystem.Text = "后台管理系统"; - btnLoginBackSystem.Type = AntdUI.TTypeMini.Primary; - btnLoginBackSystem.Click += btnLoginBackSystem_Click; - // // picFormSize // - picFormSize.BackColor = System.Drawing.Color.Transparent; - picFormSize.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F); - picFormSize.Ghost = true; + picFormSize.BackColor = Color.Transparent; picFormSize.BackgroundImage = Properties.Resources.arrow_down_b; - picFormSize.Location = new System.Drawing.Point(822, 1); + picFormSize.Font = new Font("Microsoft YaHei UI", 9F); + picFormSize.Ghost = true; + picFormSize.Location = new Point(822, 1); picFormSize.Name = "picFormSize"; - picFormSize.Size = new System.Drawing.Size(41, 38); + picFormSize.Size = new Size(41, 38); picFormSize.TabIndex = 36; picFormSize.Click += picMin_Click; // // picClose // - picClose.BackColor = System.Drawing.Color.Transparent; - picClose.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F); - picClose.Ghost = true; + picClose.BackColor = Color.Transparent; picClose.BackgroundImage = Properties.Resources.close; - picClose.Location = new System.Drawing.Point(875, 1); + picClose.Font = new Font("Microsoft YaHei UI", 9F); + picClose.Ghost = true; + picClose.Location = new Point(875, 1); picClose.Name = "picClose"; - picClose.Size = new System.Drawing.Size(41, 38); + picClose.Size = new Size(41, 38); picClose.TabIndex = 37; picClose.Click += picClose_Click; // // avatar1 // - avatar1.Image = (System.Drawing.Image)resources.GetObject("avatar1.Image"); + avatar1.Image = (Image)resources.GetObject("avatar1.Image"); avatar1.ImageFit = AntdUI.TFit.None; - avatar1.Location = new System.Drawing.Point(605, 195); + avatar1.Location = new Point(605, 195); avatar1.Name = "avatar1"; - avatar1.Size = new System.Drawing.Size(45, 43); + avatar1.Size = new Size(45, 43); avatar1.TabIndex = 38; avatar1.Text = "a"; // // avatar2 // - avatar2.Image = (System.Drawing.Image)resources.GetObject("avatar2.Image"); + avatar2.Image = (Image)resources.GetObject("avatar2.Image"); avatar2.ImageFit = AntdUI.TFit.None; - avatar2.Location = new System.Drawing.Point(605, 268); + avatar2.Location = new Point(605, 268); avatar2.Name = "avatar2"; - avatar2.Size = new System.Drawing.Size(45, 43); + avatar2.Size = new Size(45, 43); avatar2.TabIndex = 39; avatar2.Text = "a"; // // label1 // - label1.Font = new System.Drawing.Font("Microsoft YaHei UI", 14F); - label1.Location = new System.Drawing.Point(648, 72); + label1.Font = new Font("Microsoft YaHei UI", 14F); + label1.Location = new Point(648, 72); label1.Name = "label1"; - label1.Size = new System.Drawing.Size(222, 83); + label1.Size = new Size(222, 83); label1.TabIndex = 40; label1.Text = "欢迎登录"; - label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + label1.TextAlign = ContentAlignment.MiddleCenter; // // FrmLogin // - AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); - AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - BackColor = System.Drawing.Color.FromArgb(235, 243, 255); - BackgroundImage = (System.Drawing.Image)resources.GetObject("$this.BackgroundImage"); - BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - ClientSize = new System.Drawing.Size(916, 510); + AutoScaleDimensions = new SizeF(7F, 17F); + AutoScaleMode = AutoScaleMode.Font; + BackColor = Color.FromArgb(235, 243, 255); + BackgroundImage = (Image)resources.GetObject("$this.BackgroundImage"); + BackgroundImageLayout = ImageLayout.Zoom; + ClientSize = new Size(916, 510); Controls.Add(label1); Controls.Add(avatar2); Controls.Add(avatar1); Controls.Add(picClose); Controls.Add(picFormSize); - Controls.Add(btnLoginBackSystem); Controls.Add(picLogin); Controls.Add(txtWorkerPwd); - Controls.Add(txtWorkerId); + Controls.Add(txtAccount); Controls.Add(label2); - FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; - Icon = (System.Drawing.Icon)resources.GetObject("$this.Icon"); - Margin = new System.Windows.Forms.Padding(4); + FormBorderStyle = FormBorderStyle.None; + Icon = (Icon)resources.GetObject("$this.Icon"); + Margin = new Padding(4); Name = "FrmLogin"; - StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + StartPosition = FormStartPosition.CenterScreen; Text = "TS酒店管理系统"; - FormClosing += FrmLogin_FormClosing; Load += FrmLogin_Load; MouseDown += FrmLogin_MouseDown; MouseMove += FrmLogin_MouseMove; @@ -189,10 +174,9 @@ #endregion private System.Windows.Forms.Label label2; - private AntdUI.Input txtWorkerId; + private AntdUI.Input txtAccount; private AntdUI.Input txtWorkerPwd; private AntdUI.Button picLogin; - private AntdUI.Button btnLoginBackSystem; private AntdUI.Button picFormSize; private AntdUI.Button picClose; private AntdUI.Avatar avatar1; diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.cs index 0ea179698b98f4e8650f0df648d8b3e3446c8323..44c1ec91af657fe24ee85e4d867fab25a5859ebe 100644 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.cs @@ -24,11 +24,9 @@ using AntdUI; using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.FormUI.Properties; +using EOM.TSHotelManagement.Common.Contract; +using EOM.TSHotelManagement.Common.Util; using jvncorelib.EntityLib; -using Sunny.UI; -using System.Windows.Forms; namespace EOM.TSHotelManagement.FormUI { @@ -54,31 +52,6 @@ namespace EOM.TSHotelManagement.FormUI private Point formOld;//窗体旧坐标 #endregion - #region 调用淡出淡入效果函数 - //[System.Runtime.InteropServices.DllImport("user32.dll")] - #endregion - - #region 窗体淡出淡入方法 - //protected static extern bool AnimateWindow(IntPtr hWnd, int dwTime, int dwFlags); - - ///**********************************************************************************************/ - ////dwflag的取值如下 - //public const Int32 AW_HOR_POSITIVE = 0x00000001; //从左到右显示 - //public const Int32 AW_HOR_NEGATIVE = 0x00000002; //从右到左显示 - //public const Int32 AW_VER_POSITIVE = 0x00000004; //从上到下显示 - //public const Int32 AW_VER_NEGATIVE = 0x00000008; //从下到上显示 - - ////若使用了AW_HIDE标志,则使窗口向内重叠,即收缩窗口;否则使窗口向外扩展,即展开窗口 - //public const Int32 AW_CENTER = 0x00000010; - //public const Int32 AW_HIDE = 0x00010000; //隐藏窗口,缺省则显示窗口 - //public const Int32 AW_ACTIVATE = 0x00020000; //激活窗口。在使用了AW_HIDE标志后不能使用这个标志 - - ////使用滑动类型。缺省则为滚动动画类型。当使用AW_CENTER标志时,这个标志就被忽略 - //public const Int32 AW_SLIDE = 0x00040000; - //public const Int32 AW_BLEND = 0x00080000; //透明度从高到低 - - #endregion - #region 记录移动的窗体坐标 private void FrmLogin_MouseDown(object sender, MouseEventArgs e) { @@ -115,20 +88,12 @@ namespace EOM.TSHotelManagement.FormUI } #endregion - #region 窗体打开时淡入效果 private void FrmLogin_Load(object sender, EventArgs e) { this.Owner.Hide(); - txtWorkerId.Text = "WK010"; - txtWorkerPwd.Text = "admin"; + txtAccount.PlaceholderText = LocalizationHelper.GetLocalizedString("Please input employee number or email", "请输入员工编号或邮箱"); + txtWorkerPwd.PlaceholderText = LocalizationHelper.GetLocalizedString("Please input employee password", "请输入员工密码"); } - #endregion - - #region 窗体关闭时淡出效果 - private void FrmLogin_FormClosing(object sender, FormClosingEventArgs e) - { - } - #endregion #region 检验输入完整性 /// @@ -137,15 +102,15 @@ namespace EOM.TSHotelManagement.FormUI /// private bool CheckInput() { - if (txtWorkerId.Text == "") + if (txtAccount.Text == "") { - UIMessageBox.Show("请输入员工编号!", "输入提示", UIStyle.Red); - txtWorkerId.Focus(); + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("Please input employee number or email", "请输入员工编号或邮箱地址"), TType.Error); + txtAccount.Focus(); return false; } if (txtWorkerPwd.Text == "") { - UIMessageBox.Show("请输入员工密码!", "输入提示", UIStyle.Red); + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("Please input password", "请输入员工密码"), TType.Error); txtWorkerPwd.Focus(); return false; } @@ -156,61 +121,64 @@ namespace EOM.TSHotelManagement.FormUI #region 登录图片点击事件 private void picLogin_Click(object sender, EventArgs e) { - _loadingProgress.Show(); try { if (CheckInput()) { - Worker worker = new Worker() { WorkerId = txtWorkerId.Text.Trim(), WorkerPwd = txtWorkerPwd.Text.Trim() }; + var worker = new ReadEmployeeInputDto() { EmployeeId = txtAccount.Text.Trim(), EmailAddress = txtAccount.Text.Trim(), Password = txtWorkerPwd.Text.Trim() }; + + result = HttpHelper.Request(ApiConstants.Employee_SelectEmployeeInfoByEmployeeIdAndEmployeePwd, HttpHelper.ModelToJson(worker)); - result = HttpHelper.Request("Worker/SelectWorkerInfoByWorkerIdAndWorkerPwd", HttpHelper.ModelToJson(worker)); + var response = HttpHelper.JsonToModel>(result.message); - if (result.statusCode != 200) + if (response.StatusCode != StatusCodeConstants.Success) { - AntdUI.Modal.open(this, "系统提示", "账号或密码错误!",TType.Error); - txtWorkerPwd.Focus(); + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString($"{ApiConstants.Employee_SelectEmployeeInfoByEmployeeIdAndEmployeePwd} is abnormal. Please submit an issue", $"{ApiConstants.Employee_SelectEmployeeInfoByEmployeeIdAndEmployeePwd}+接口服务异常,请提交issue"), TType.Error); return; } - Worker w = HttpHelper.JsonToModel(result.message); + ReadEmployeeOutputDto w = response.Source; if (!w.IsNullOrEmpty()) { - if (w.delete_mk == 1) + if (w.IsEnable == 0) { - AntdUI.Modal.open(this, "系统提示", "账号已禁用,请联系上级解封!", TType.Error); + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("The account has been disabled, please contact your superiors to unblock it!", "账号已禁用,请联系上级解封!"), TType.Error); return; } - LoginInfo.WorkerNo = w.WorkerId; - LoginInfo.WorkerName = w.WorkerName; - LoginInfo.WorkerClub = w.ClubName; + LoginInfo.WorkerNo = w.EmployeeId; + LoginInfo.WorkerName = w.EmployeeName; + LoginInfo.WorkerClub = w.DepartmentName; LoginInfo.WorkerPosition = w.PositionName; LoginInfo.SoftwareVersion = ApplicationUtil.GetApplicationVersion().ToString(); - LoginInfo.UserToken = w.user_token; - FrmMain frm = new FrmMain(this, _loadingProgress); + LoginInfo.UserToken = w.UserToken; + + if (w.IsInitialize == 0) + { + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("The initial password for the current account has not been changed, and it will be directed to the change page later", "当前账号未修改初始密码,稍后将引导至修改页面"), TType.Error); + FrmMySpace frmMySpace = new FrmMySpace(); + frmMySpace.ShowDialog(); + } + + FrmMain frm = new FrmMain(this); this.Hide(); - frm.TopMost = true; frm.ShowDialog(this); } else { - AntdUI.Modal.open(this, "系统提示", "密码错误!", TType.Error); + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("Employee number/email or password incorrect", "员工编号/邮箱地址或密码错误!"), TType.Error); txtWorkerPwd.Focus(); } } } catch (Exception ex) { - AntdUI.Modal.open(this, "系统提示", "服务器维护中,请稍后再试!", TType.Error); + RecordHelper.Record(LocalizationHelper.GetLocalizedString($"Login error:{ex.Message}", $"登录异常:{ex.Message}"), Common.Core.LogLevel.Critical); + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("System prompt", "系统提示"), LocalizationHelper.GetLocalizedString("The server is under maintenance, please try again later", "服务器维护中,请稍后再试!"), TType.Error); } } #endregion - private void btnLoginBackSystem_Click(object sender, EventArgs e) - { - FrmAdminEnter frmAdminEnter = new FrmAdminEnter(this); - frmAdminEnter.ShowDialog(this); - } } } diff --git a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.resx b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.resx index ca1b9c0697b2f6f2a869f6e689cf4a0c8a34069d..73223a50cba8877dc2e8417fbdd9ecdd75fe12f8 100644 --- a/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.resx +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.resx @@ -1,7 +1,7 @@  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.Designer.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.Designer.cs deleted file mode 100644 index dcc05b23bd776a818d30c9718ea494045067029d..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.Designer.cs +++ /dev/null @@ -1,322 +0,0 @@ - -namespace EOM.TSHotelManagement.FormUI -{ - partial class FrmBackgroundSystem - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - components = new System.ComponentModel.Container(); - TreeNode treeNode1 = new TreeNode("职位类型维护"); - TreeNode treeNode2 = new TreeNode("民族类型维护"); - TreeNode treeNode3 = new TreeNode("学历类型维护"); - TreeNode treeNode4 = new TreeNode("部门信息维护"); - TreeNode treeNode5 = new TreeNode("基础信息", new TreeNode[] { treeNode1, treeNode2, treeNode3, treeNode4 }); - TreeNode treeNode6 = new TreeNode("内部财务账单"); - TreeNode treeNode7 = new TreeNode("财务信息", new TreeNode[] { treeNode6 }); - TreeNode treeNode8 = new TreeNode("水电信息"); - TreeNode treeNode9 = new TreeNode("水电管理", new TreeNode[] { treeNode8 }); - TreeNode treeNode10 = new TreeNode("监管部门情况"); - TreeNode treeNode11 = new TreeNode("监管统计", new TreeNode[] { treeNode10 }); - TreeNode treeNode12 = new TreeNode("房态图一览"); - TreeNode treeNode13 = new TreeNode("新增客房"); - TreeNode treeNode14 = new TreeNode("客房配置"); - TreeNode treeNode15 = new TreeNode("客房管理", new TreeNode[] { treeNode12, treeNode13, treeNode14 }); - TreeNode treeNode16 = new TreeNode("会员等级规则"); - TreeNode treeNode17 = new TreeNode("客户信息管理"); - TreeNode treeNode18 = new TreeNode("顾客消费账单"); - TreeNode treeNode19 = new TreeNode("客户管理", new TreeNode[] { treeNode16, treeNode17, treeNode18 }); - TreeNode treeNode20 = new TreeNode("员工管理"); - TreeNode treeNode21 = new TreeNode("人事管理", new TreeNode[] { treeNode20 }); - TreeNode treeNode22 = new TreeNode("商品管理"); - TreeNode treeNode23 = new TreeNode("物资管理", new TreeNode[] { treeNode22 }); - TreeNode treeNode24 = new TreeNode("员工操作日志"); - TreeNode treeNode25 = new TreeNode("添加管理员"); - TreeNode treeNode26 = new TreeNode("权限分配"); - TreeNode treeNode27 = new TreeNode("启/禁用管理员"); - TreeNode treeNode28 = new TreeNode("系统模块管理"); - TreeNode treeNode29 = new TreeNode("系统管理", new TreeNode[] { treeNode25, treeNode26, treeNode27, treeNode28 }); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBackgroundSystem)); - Aside = new Sunny.UI.UINavMenu(); - pnlForm = new Sunny.UI.UIPanel(); - uiLabel1 = new Sunny.UI.UILabel(); - lblScroll = new Sunny.UI.UIScrollingText(); - lbTime = new Sunny.UI.UILabel(); - timer1 = new System.Windows.Forms.Timer(components); - cmsMenu = new Sunny.UI.UIContextMenuStrip(); - tsmiUpdatePwd = new ToolStripMenuItem(); - toolStripSeparator1 = new ToolStripSeparator(); - btnSetting = new Sunny.UI.UIButton(); - btnLocked = new Sunny.UI.UIButton(); - cmsMenu.SuspendLayout(); - SuspendLayout(); - // - // Aside - // - Aside.BorderStyle = BorderStyle.None; - Aside.DrawMode = TreeViewDrawMode.OwnerDrawText; - Aside.Font = new Font("微软雅黑", 12F); - Aside.FullRowSelect = true; - Aside.ItemHeight = 50; - Aside.Location = new Point(6, 87); - Aside.MenuStyle = Sunny.UI.UIMenuStyle.Custom; - Aside.Name = "Aside"; - treeNode1.Name = "节点1"; - treeNode1.Text = "职位类型维护"; - treeNode2.Name = "节点2"; - treeNode2.Text = "民族类型维护"; - treeNode3.Name = "节点4"; - treeNode3.Text = "学历类型维护"; - treeNode4.Name = "节点5"; - treeNode4.Text = "部门信息维护"; - treeNode5.Name = "BaseInfo"; - treeNode5.Text = "基础信息"; - treeNode6.Name = "节点1"; - treeNode6.Text = "内部财务账单"; - treeNode7.Name = "CashInfo"; - treeNode7.Text = "财务信息"; - treeNode8.Name = "节点0"; - treeNode8.Text = "水电信息"; - treeNode9.Name = "WtiInfo"; - treeNode9.Text = "水电管理"; - treeNode10.Name = "节点3"; - treeNode10.Text = "监管部门情况"; - treeNode11.Name = "CheckInfo"; - treeNode11.Text = "监管统计"; - treeNode12.Name = "节点6"; - treeNode12.Text = "房态图一览"; - treeNode13.Name = "节点7"; - treeNode13.Text = "新增客房"; - treeNode14.Name = "节点0"; - treeNode14.Text = "客房配置"; - treeNode15.Name = "RoomManager"; - treeNode15.Text = "客房管理"; - treeNode16.Name = "节点0"; - treeNode16.Text = "会员等级规则"; - treeNode17.Name = "节点8"; - treeNode17.Text = "客户信息管理"; - treeNode18.Name = "节点9"; - treeNode18.Text = "顾客消费账单"; - treeNode19.Name = "CustomerManager"; - treeNode19.Text = "客户管理"; - treeNode20.Name = "节点6"; - treeNode20.Text = "员工管理"; - treeNode21.Name = "HumanResourcesManager"; - treeNode21.Text = "人事管理"; - treeNode22.Name = "节点11"; - treeNode22.Text = "商品管理"; - treeNode23.Name = "MaterialManager"; - treeNode23.Text = "物资管理"; - treeNode24.Name = "OperationLogManager"; - treeNode24.Text = "员工操作日志"; - treeNode25.Name = "节点2"; - treeNode25.Text = "添加管理员"; - treeNode26.Name = "节点1"; - treeNode26.Text = "权限分配"; - treeNode27.Name = "节点3"; - treeNode27.Text = "启/禁用管理员"; - treeNode28.Name = "节点2"; - treeNode28.Text = "系统模块管理"; - treeNode29.Name = "AdminManager"; - treeNode29.Text = "系统管理"; - Aside.Nodes.AddRange(new TreeNode[] { treeNode5, treeNode7, treeNode9, treeNode11, treeNode15, treeNode19, treeNode21, treeNode23, treeNode24, treeNode29 }); - Aside.ShowLines = false; - Aside.Size = new Size(234, 624); - Aside.Style = Sunny.UI.UIStyle.Custom; - Aside.TabIndex = 0; - Aside.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - Aside.MenuItemClick += Aside_MenuItemClick; - Aside.Enter += Aside_Enter; - // - // pnlForm - // - pnlForm.Font = new Font("微软雅黑", 12F); - pnlForm.Location = new Point(247, 88); - pnlForm.Margin = new Padding(4, 5, 4, 5); - pnlForm.MinimumSize = new Size(1, 1); - pnlForm.Name = "pnlForm"; - pnlForm.Size = new Size(1001, 623); - pnlForm.Style = Sunny.UI.UIStyle.Custom; - pnlForm.TabIndex = 1; - pnlForm.Text = "点击左侧导航栏"; - pnlForm.TextAlignment = ContentAlignment.MiddleCenter; - // - // uiLabel1 - // - uiLabel1.Font = new Font("微软雅黑", 12F); - uiLabel1.ForeColor = Color.FromArgb(48, 48, 48); - uiLabel1.Location = new Point(250, 44); - uiLabel1.Name = "uiLabel1"; - uiLabel1.Size = new Size(217, 35); - uiLabel1.Style = Sunny.UI.UIStyle.Custom; - uiLabel1.TabIndex = 32; - uiLabel1.Text = "早上好,Admin"; - uiLabel1.TextAlign = ContentAlignment.MiddleLeft; - // - // lblScroll - // - lblScroll.Active = true; - lblScroll.FillColor = Color.FromArgb(235, 243, 255); - lblScroll.Font = new Font("微软雅黑", 12F); - lblScroll.Interval = 800; - lblScroll.Location = new Point(473, 41); - lblScroll.MinimumSize = new Size(1, 1); - lblScroll.Name = "lblScroll"; - lblScroll.Offset = 20; - lblScroll.Size = new Size(693, 42); - lblScroll.Style = Sunny.UI.UIStyle.Custom; - lblScroll.TabIndex = 33; - lblScroll.Text = "欢迎使用TS酒店管理后台安全系统,为了您的账号安全,离开座位请点击右侧锁定键锁定系统确保安全!"; - // - // lbTime - // - lbTime.Font = new Font("微软雅黑", 12F); - lbTime.ForeColor = Color.FromArgb(48, 48, 48); - lbTime.Location = new Point(11, 44); - lbTime.Name = "lbTime"; - lbTime.Size = new Size(229, 35); - lbTime.Style = Sunny.UI.UIStyle.Custom; - lbTime.TabIndex = 34; - lbTime.Text = "早上好,Admin"; - lbTime.TextAlign = ContentAlignment.MiddleLeft; - // - // timer1 - // - timer1.Enabled = true; - timer1.Interval = 1000; - timer1.Tick += timer1_Tick; - // - // cmsMenu - // - cmsMenu.BackColor = Color.FromArgb(243, 249, 255); - cmsMenu.Font = new Font("微软雅黑", 12F); - cmsMenu.Items.AddRange(new ToolStripItem[] { tsmiUpdatePwd, toolStripSeparator1 }); - cmsMenu.Name = "cmsMenu"; - cmsMenu.Size = new Size(145, 36); - cmsMenu.MouseDown += cmsMenu_MouseDown; - // - // tsmiUpdatePwd - // - tsmiUpdatePwd.Image = Properties.Resources.修改; - tsmiUpdatePwd.Name = "tsmiUpdatePwd"; - tsmiUpdatePwd.Size = new Size(144, 26); - tsmiUpdatePwd.Text = "修改密码"; - tsmiUpdatePwd.Click += tsmiUpdatePwd_Click; - // - // toolStripSeparator1 - // - toolStripSeparator1.Name = "toolStripSeparator1"; - toolStripSeparator1.Size = new Size(141, 6); - // - // btnSetting - // - btnSetting.BackColor = Color.Transparent; - btnSetting.BackgroundImage = Properties.Resources.settings2; - btnSetting.BackgroundImageLayout = ImageLayout.Stretch; - btnSetting.FillColor = Color.Transparent; - btnSetting.Font = new Font("微软雅黑", 12F); - btnSetting.ForeColor = Color.FromArgb(111, 168, 255); - btnSetting.ForeHoverColor = Color.FromArgb(111, 168, 255); - btnSetting.ForePressColor = Color.FromArgb(111, 168, 255); - btnSetting.ForeSelectedColor = Color.FromArgb(111, 168, 255); - btnSetting.Location = new Point(1172, 45); - btnSetting.MinimumSize = new Size(1, 1); - btnSetting.Name = "btnSetting"; - btnSetting.Radius = 20; - btnSetting.Size = new Size(35, 35); - btnSetting.Style = Sunny.UI.UIStyle.Custom; - btnSetting.StyleCustomMode = true; - btnSetting.TabIndex = 31; - btnSetting.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - btnSetting.Click += btnSetting_Click; - btnSetting.MouseDown += btnSetting_MouseDown; - btnSetting.MouseLeave += btnSetting_MouseLeave; - btnSetting.MouseHover += btnSetting_MouseHover; - // - // btnLocked - // - btnLocked.BackColor = Color.Transparent; - btnLocked.BackgroundImage = (Image)resources.GetObject("btnLocked.BackgroundImage"); - btnLocked.BackgroundImageLayout = ImageLayout.Zoom; - btnLocked.FillColor = Color.Transparent; - btnLocked.Font = new Font("微软雅黑", 12F); - btnLocked.ForeHoverColor = Color.FromArgb(111, 168, 255); - btnLocked.ForePressColor = Color.FromArgb(111, 168, 255); - btnLocked.ForeSelectedColor = Color.FromArgb(111, 168, 255); - btnLocked.Location = new Point(1213, 45); - btnLocked.MinimumSize = new Size(1, 1); - btnLocked.Name = "btnLocked"; - btnLocked.Radius = 20; - btnLocked.Size = new Size(35, 35); - btnLocked.Style = Sunny.UI.UIStyle.Custom; - btnLocked.StyleCustomMode = true; - btnLocked.TabIndex = 30; - btnLocked.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); - btnLocked.Click += btnLocked_Click; - btnLocked.MouseLeave += btnLocked_MouseLeave; - btnLocked.MouseHover += btnLocked_MouseHover; - // - // FrmBackgroundSystem - // - AutoScaleMode = AutoScaleMode.None; - ClientSize = new Size(1255, 718); - Controls.Add(lbTime); - Controls.Add(lblScroll); - Controls.Add(uiLabel1); - Controls.Add(btnSetting); - Controls.Add(btnLocked); - Controls.Add(pnlForm); - Controls.Add(Aside); - Icon = (Icon)resources.GetObject("$this.Icon"); - IsForbidAltF4 = true; - MaximizeBox = false; - Name = "FrmBackgroundSystem"; - Style = Sunny.UI.UIStyle.Custom; - Text = "TS酒店管理后台安全系统"; - TextAlignment = StringAlignment.Center; - ZoomScaleRect = new Rectangle(15, 15, 1255, 718); - FormClosing += FrmBackgroundSystem_FormClosing; - FormClosed += FrmBackgroundSystem_FormClosed; - Load += FrmBackgroundSystem_Load; - cmsMenu.ResumeLayout(false); - ResumeLayout(false); - } - - #endregion - - private Sunny.UI.UINavMenu Aside; - private Sunny.UI.UIPanel pnlForm; - private Sunny.UI.UIButton btnLocked; - private Sunny.UI.UIButton btnSetting; - private Sunny.UI.UILabel uiLabel1; - private Sunny.UI.UIScrollingText lblScroll; - private Sunny.UI.UILabel lbTime; - private System.Windows.Forms.Timer timer1; - private Sunny.UI.UIContextMenuStrip cmsMenu; - private System.Windows.Forms.ToolStripMenuItem tsmiUpdatePwd; - private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; - } -} \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.cs deleted file mode 100644 index f36161f33273c6c6f97f057fc59b89d88ce4023e..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.cs +++ /dev/null @@ -1,404 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - - -using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.FormUI.AppFunction; -using Sunny.UI; - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class FrmBackgroundSystem : UIForm - { - private FrmAdminEnter returnForm1 = null; - - private LoadingProgress _loadingProgress; - - public delegate void UpdPwd(); - - public static UpdPwd closeform; - - public static UpdPwd hideform; - - public FrmBackgroundSystem(FrmAdminEnter F1) - { - InitializeComponent(); - - this.returnForm1 = F1; - - closeform = Closeform; - hideform = HideWinform; - } - - public void HideWinform() - { - this.Text = string.Empty; - } - - Dictionary dic = null; - ResponseMsg result = null; - - private void FrmBackgroundSystem_Load(object sender, EventArgs e) - { - this.Owner.Hide(); - - //清除前台Token使其无效 - LoginInfo.UserToken = null; - - LoadModule(); - - DateTime tmCur = Convert.ToDateTime(DateTime.Now); - - if (tmCur.Hour < 8 || tmCur.Hour > 18) - {//晚上 - uiLabel1.Text = "(*´▽`)ノノ晚上好," + AdminInfo.Name; - } - else if (tmCur.Hour > 8 && tmCur.Hour < 12) - {//上午 - uiLabel1.Text = "上午好," + AdminInfo.Name; - } - else - {//下午 - uiLabel1.Text = "下午好," + AdminInfo.Name; - } - } - - /// - /// 关闭当前窗体 - /// - public void Closeform() - { - this.Close(); - } - - private void Aside_MenuItemClick(TreeNode node, NavMenuItem item, int pageIndex) - { - if (!node.Text.IsNullOrEmpty()) - { - switch (node.Text) - { - case "基础信息": - break; - case "职位类型维护": - pnlForm.Controls.Clear(); - FrmPosition frmPosition = new FrmPosition(); - frmPosition.TopLevel = false; - pnlForm.Controls.Add(frmPosition); - frmPosition.Show(); - break; - case "民族类型维护": - pnlForm.Controls.Clear(); - FrmNation frmNation = new FrmNation(); - frmNation.TopLevel = false; - pnlForm.Controls.Add(frmNation); - frmNation.Show(); - break; - case "学历类型维护": - pnlForm.Controls.Clear(); - FrmEducation frmEducation = new FrmEducation(); - frmEducation.TopLevel = false; - pnlForm.Controls.Add(frmEducation); - frmEducation.Show(); - break; - case "部门信息维护": - pnlForm.Controls.Clear(); - FrmDepartment frmDepartment = new FrmDepartment(); - frmDepartment.TopLevel = false; - pnlForm.Controls.Add(frmDepartment); - frmDepartment.Show(); - break; - case "员工工资账单": - break; - case "内部财务账单": - pnlForm.Controls.Clear(); - FrmCash frmCash = new FrmCash(); - frmCash.TopLevel = false; - pnlForm.Controls.Add(frmCash); - frmCash.Show(); - break; - case "酒店盈利情况": - pnlForm.Controls.Clear(); - //FrmChart frmChart = new FrmChart(); - //frmChart.TopLevel = false; - //pnlForm.Controls.Add(frmChart); - //frmChart.Show(); - break; - case "水电管理": - break; - case "水电信息": - pnlForm.Controls.Clear(); - FrmWoEInfo frmWoEInfo = new FrmWoEInfo(); - frmWoEInfo.TopLevel = false; - pnlForm.Controls.Add(frmWoEInfo); - frmWoEInfo.Show(); - break; - case "监管统计": - break; - case "监管部门情况": - if (AdminInfo.isAdmin == true || AdminInfo.Type.Equals(AdminConstant.GeneralManager.Code) || AdminInfo.Type.Equals(AdminConstant.CheckGroup.Code)) - { - pnlForm.Controls.Clear(); - FrmCheckList frmCheckList = new FrmCheckList(); - frmCheckList.TopLevel = false; - pnlForm.Controls.Add(frmCheckList); - frmCheckList.Show(); - return; - } - else - { - UIMessageTip.ShowWarning("此模块只开放特定权限人员查看!"); - return; - } - break; - case "客房管理": - break; - case "房态图一览": - pnlForm.Controls.Clear(); - FrmRoomMap frmRoomMap = new FrmRoomMap(); - frmRoomMap.TopLevel = false; - pnlForm.Controls.Add(frmRoomMap); - frmRoomMap.Show(); - break; - case "新增客房": - pnlForm.Controls.Clear(); - FrmAddRoom frmAddRoom = new FrmAddRoom(); - frmAddRoom.TopLevel = false; - pnlForm.Controls.Add(frmAddRoom); - frmAddRoom.Show(); - break; - case "客房配置": - pnlForm.Controls.Clear(); - FrmRoomConfig frmRoomConfig = new FrmRoomConfig(); - frmRoomConfig.TopLevel = false; - pnlForm.Controls.Add(frmRoomConfig); - frmRoomConfig.Show(); - break; - case "客户管理": - break; - case "会员等级规则": - pnlForm.Controls.Clear(); - FrmVipRule frmVipRule = new FrmVipRule(); - frmVipRule.TopLevel = false; - pnlForm.Controls.Add(frmVipRule); - frmVipRule.Show(); - break; - case "客户信息管理": - pnlForm.Controls.Clear(); - FrmCustoManager frmCustoManager = new FrmCustoManager(); - frmCustoManager.TopLevel = false; - pnlForm.Controls.Add(frmCustoManager); - frmCustoManager.Show(); - break; - case "顾客消费账单": - pnlForm.Controls.Clear(); - FrmCustoSpend frmCustoSpend = new FrmCustoSpend(); - frmCustoSpend.TopLevel = false; - pnlForm.Controls.Add(frmCustoSpend); - frmCustoSpend.Show(); - break; - case "人事管理": - break; - case "员工管理": - pnlForm.Controls.Clear(); - FrmWorkerManager frmWorkerManager = new FrmWorkerManager(); - frmWorkerManager.TopLevel = false; - pnlForm.Controls.Add(frmWorkerManager); - frmWorkerManager.Show(); - break; - case "公告日志": - pnlForm.Controls.Clear(); - //FrmNotice frmNotice = new FrmNotice(); - //frmNotice.TopLevel = false; - //pnlForm.Controls.Add(frmNotice); - //frmNotice.Show(); - break; - case "上传公告日志": - pnlForm.Controls.Clear(); - //FrmUpLoadNotice frmUpLoadNotice = new FrmUpLoadNotice(); - //frmUpLoadNotice.TopLevel = false; - //pnlForm.Controls.Add(frmUpLoadNotice); - //frmUpLoadNotice.Show(); - break; - case "物资管理": - break; - case "商品管理": - pnlForm.Controls.Clear(); - FrmSellThingManager frmSellThingManager = new FrmSellThingManager(); - frmSellThingManager.TopLevel = false; - pnlForm.Controls.Add(frmSellThingManager); - frmSellThingManager.Show(); - break; - case "仓库物资": - break; - case "员工操作日志": - pnlForm.Controls.Clear(); - FrmOperation frmOperation = new FrmOperation(); - frmOperation.TopLevel = false; - pnlForm.Controls.Add(frmOperation); - frmOperation.Show(); - break; - case "系统管理": - break; - case "添加管理员": - pnlForm.Controls.Clear(); - FrmAddAdmin frmAddAdmin = new FrmAddAdmin(); - frmAddAdmin.TopLevel = false; - pnlForm.Controls.Add(frmAddAdmin); - frmAddAdmin.Show(); - break; - case "权限分配": - pnlForm.Controls.Clear(); - FrmAuthority frmAuthority = new FrmAuthority(); - frmAuthority.TopLevel = false; - pnlForm.Controls.Add(frmAuthority); - frmAuthority.Show(); - break; - case "启/禁用管理员": - pnlForm.Controls.Clear(); - FrmAdminManager frmAdminManager = new FrmAdminManager(); - frmAdminManager.TopLevel = false; - pnlForm.Controls.Add(frmAdminManager); - frmAdminManager.Show(); - break; - - } - } - } - - private void btnSetting_MouseHover(object sender, EventArgs e) - { - this.btnSetting.RectHoverColor = Color.Black; - this.btnSetting.Radius = 20; - this.btnSetting.RadiusSides = UICornerRadiusSides.All; - - } - - /// - /// 初始化当前管理员账户所拥有权限模块 - /// - public void LoadModule() - { - Admin admin = new Admin() { AdminAccount = AdminInfo.Account }; - result = HttpHelper.Request("Module/GetAllModuleByAdmin", HttpHelper.ModelToJson(admin)); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("GetAllModuleByAdmin+接口服务异常,请提交issue"); - return; - } - List moduleZeros = HttpHelper.JsonToList(result.message); - for (int i = 0; i <= Aside.Nodes.Count; i++) - { - var moduleZero = moduleZeros.FirstOrDefault(a => a.module_name.Split('|', '|').FirstOrDefault().Equals(Aside.Nodes[i].Name.ToString())); - if (moduleZero == null) - { - Aside.Nodes[i].Remove(); - --i; - } - if (moduleZeros.Count == Aside.Nodes.Count) - { - break; - } - } - } - - private void btnLocked_MouseHover(object sender, EventArgs e) - { - this.btnLocked.RectHoverColor = Color.Black; - this.btnLocked.Radius = 20; - this.btnLocked.RadiusSides = UICornerRadiusSides.All; - } - - private void btnSetting_MouseLeave(object sender, EventArgs e) - { - this.btnSetting.RectColor = System.Drawing.Color.FromArgb(111, 168, 255); - this.btnLocked.Radius = 20; - } - - private void btnLocked_MouseLeave(object sender, EventArgs e) - { - this.btnLocked.RectColor = System.Drawing.Color.FromArgb(111, 168, 255); - this.btnLocked.Radius = 20; - } - - private void btnLocked_Click(object sender, EventArgs e) - { - bool tf = UIMessageBox.Show("确定要锁定屏幕吗?锁定后不能做任何操作!", "锁屏", UIStyle.Orange, UIMessageBoxButtons.OKCancel); - if (tf) - new FrmUnLockSystem().ShowDialog(); - //this.Hide(); - } - - private void timer1_Tick(object sender, EventArgs e) - { - lbTime.Text = Convert.ToDateTime(DateTime.Now).ToString("yyyy年MM月dd日 HH:mm:ss"); - } - - private void FrmBackgroundSystem_FormClosed(object sender, FormClosedEventArgs e) - { - System.Windows.Forms.Application.Exit(); - } - - private void btnSetting_Click(object sender, EventArgs e) - { - this.btnSetting.ContextMenuStrip = cmsMenu; - } - - private void cmsMenu_MouseDown(object sender, MouseEventArgs e) - { - } - - private void btnSetting_MouseDown(object sender, MouseEventArgs e) - { - if (e.Button == MouseButtons.Left) - { - cmsMenu.Show(MousePosition); - } - - } - - private void tsmiUpdatePwd_Click(object sender, EventArgs e) - { - FrmChangeAdminPwd frmChangeAdminPwd = new FrmChangeAdminPwd(); - frmChangeAdminPwd.ShowDialog(); - } - - private void Aside_Enter(object sender, EventArgs e) - { - - } - - private void tsmiMySpace_Click(object sender, EventArgs e) - { - FrmMySpace frmMySpace = new FrmMySpace(); - frmMySpace.Text = AdminInfo.Name + "的个人中心"; - frmMySpace.ShowDialog(); - } - - private void FrmBackgroundSystem_FormClosing(object sender, FormClosingEventArgs e) - { - - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.resx b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.resx deleted file mode 100644 index ea0ada331b4b9ee1e298a3fa871f00db3629bfb8..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.resx +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 143, 17 - - - 239, 17 - - - - - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAWVJREFUWEft - lj1OAzEQhXMECopgb5GKgpaShobUERIVDRVCiDKiSEVNQ0E8y1Y5Qc6Qu+QE3OChKXY1zHp/7PUWUfJJ - T4o8zzNPiXedyeREBKbAuclxYwnPLP7Ma9o3CpZQWAIaVGh/UjwDvdL7kmAJKznEOHxkDveGsDAO75bw - K+orvX8QxmEuh09/cKU9F4RrS9iLgHPticY4LKsADk+6XmIc3kSApa5HY3NsqgBrXOp6CdcqX46Nrkdj - Cbuysa5pxE+107VojjPANMeMHzWWDFCuNUkGKNe4l+7fCp900SiNWp6eGpawrTUYrq2e04j8yhOq/5k4 - lAB8yF5Zff16TiM9Gtau3Y5rOm2A7Bu3eg+vad9oASzhRe/JCJ8e32gB9maNO+F/8Hi0kgb41zDU30lo - w1B/J6ENQ/2d9G3ou6xalDxAqA4oQJbj0dNgkPiVree0wm82/WcjWoTF7AtnesYJ5g/h6YaoeYfIjwAA - AABJRU5ErkJggg== - - - - - AAABAAEAICAAAAEAGABcAgAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAAgAAAAIAgGAAAAc3p69AAAAAFz - UkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAB8UlEQVRYR+2XPUgD - QRCFUwUkhX+IIAhBFMTCQlC00lKxUfuAhaCglUXAzsIIIgFRUEQshHRi6V8hCmKlEDCdTcogKAgRBAN3 - fhMnkCLJ7V4EEe/gMRN23pu3e7d3m1AouOpYAdd1x8BqHRL+qDRtdhwnBrLkLnEL9PlTs2DRKwxmafao - jXPkacn1d4rYayFZuRSRKYTnQRwkwA44Bs/aKEOeJO8SBfIFcAXedTyt9dvEFTAnxkHUyByFN6VZlUeE - zsFENRHGeoA0fa3El2fGyAAC1zqTafJR0A/ajcjfKxKRW0EcAZOyGmrIzoBpQ6862SmBgb+1AqVd4HVv - Tcetn4HAQLACv74CvDovdN+GTZ/0WnXoreurfdhID8KREozf/x4G9nRCxa+n54WBTTUw6FlsUIDeqepF - DMqLX7OYEuJGhBpFaHXIOQJcGmtR3K1L9mBMqlKI1r5OZtxKC5KcivKyI4gtVmQthreszQ/88OVWHKpA - ylZATk7K/SRGbfnFeohNCO2q0Bn5gJcQNa1gTTn3vpuXN0IwoYJ58sVqJhgbAjmtzZK3eRk2GpcznuwM - kFHxWzECOkWAOANOwAvjb8SNH2te7hDxRoTliF5QIwXyD90x8gflrmTKaGZ+i2goJ94lICvxBJJATs8N - fjX/L+8LhmH/b8WhH/UAAAAASUVORK5CYII= - - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.Designer.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.Designer.cs index 485920d7bf6c248f285d9222f1f4327379b20e6a..85a8d620891ac724636e083c075e8c6d7bdfb345 100644 --- a/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.Designer.cs @@ -44,7 +44,7 @@ toolStripSeparator4 = new ToolStripSeparator(); tsmiLoginBackSystem = new ToolStripMenuItem(); toolStripSeparator2 = new ToolStripSeparator(); - tsmiCheckUpdate = new ToolStripMenuItem(); + tsmiUpdateLog = new ToolStripMenuItem(); tsmiAboutUs = new ToolStripMenuItem(); tsmiExitSystem = new ToolStripMenuItem(); linkLabel1 = new LinkLabel(); @@ -123,17 +123,17 @@ // cmsMain // cmsMain.Font = new Font("Microsoft YaHei UI Light", 12F, FontStyle.Italic, GraphicsUnit.Point, 134); - cmsMain.Items.AddRange(new ToolStripItem[] { tsmiChangeUser, tsmiMySpace, tsmiExChange, toolStripSeparator3, tsmiLockScreen, toolStripSeparator4, tsmiLoginBackSystem, toolStripSeparator2, tsmiCheckUpdate, tsmiAboutUs, tsmiExitSystem }); + cmsMain.Items.AddRange(new ToolStripItem[] { tsmiChangeUser, tsmiMySpace, tsmiExChange, toolStripSeparator3, tsmiLockScreen, toolStripSeparator4, tsmiLoginBackSystem, toolStripSeparator2, tsmiUpdateLog, tsmiAboutUs, tsmiExitSystem }); cmsMain.Name = "cmsMain"; cmsMain.RenderMode = ToolStripRenderMode.Professional; - cmsMain.Size = new Size(208, 214); + cmsMain.Size = new Size(314, 214); // // tsmiChangeUser // tsmiChangeUser.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); tsmiChangeUser.Image = Properties.Resources.切换账号; tsmiChangeUser.Name = "tsmiChangeUser"; - tsmiChangeUser.Size = new Size(207, 24); + tsmiChangeUser.Size = new Size(313, 24); tsmiChangeUser.Text = "切换用户"; tsmiChangeUser.Click += tsmiChangeUser_Click; // @@ -142,7 +142,7 @@ tsmiMySpace.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); tsmiMySpace.Image = Properties.Resources.个人中心; tsmiMySpace.Name = "tsmiMySpace"; - tsmiMySpace.Size = new Size(207, 24); + tsmiMySpace.Size = new Size(313, 24); tsmiMySpace.Text = "个人中心"; tsmiMySpace.Click += tsmiMySpace_Click; // @@ -150,27 +150,28 @@ // tsmiExChange.Font = new Font("Microsoft Sans Serif", 12F); tsmiExChange.Name = "tsmiExChange"; - tsmiExChange.Size = new Size(207, 24); + tsmiExChange.Size = new Size(313, 24); tsmiExChange.Text = "换班"; // // toolStripSeparator3 // toolStripSeparator3.Name = "toolStripSeparator3"; - toolStripSeparator3.Size = new Size(204, 6); + toolStripSeparator3.Size = new Size(310, 6); // // tsmiLockScreen // + tsmiLockScreen.Enabled = false; tsmiLockScreen.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); tsmiLockScreen.Image = Properties.Resources.锁屏; tsmiLockScreen.Name = "tsmiLockScreen"; - tsmiLockScreen.Size = new Size(207, 24); - tsmiLockScreen.Text = "快速锁屏"; + tsmiLockScreen.Size = new Size(313, 24); + tsmiLockScreen.Text = "快速锁屏(功能重构中,暂不开放)"; tsmiLockScreen.Click += tsmiLockScreen_Click; // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; - toolStripSeparator4.Size = new Size(204, 6); + toolStripSeparator4.Size = new Size(310, 6); // // tsmiLoginBackSystem // @@ -178,30 +179,29 @@ tsmiLoginBackSystem.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); tsmiLoginBackSystem.Image = Properties.Resources.系统管理员; tsmiLoginBackSystem.Name = "tsmiLoginBackSystem"; - tsmiLoginBackSystem.Size = new Size(207, 24); + tsmiLoginBackSystem.Size = new Size(313, 24); tsmiLoginBackSystem.Text = "进入后台管理系统"; tsmiLoginBackSystem.Click += tsmiLoginBackSystem_Click; // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; - toolStripSeparator2.Size = new Size(204, 6); + toolStripSeparator2.Size = new Size(310, 6); // - // tsmiCheckUpdate + // tsmiUpdateLog // - tsmiCheckUpdate.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - tsmiCheckUpdate.Image = Properties.Resources.检查更新__1_; - tsmiCheckUpdate.Name = "tsmiCheckUpdate"; - tsmiCheckUpdate.Size = new Size(207, 24); - tsmiCheckUpdate.Text = "检查更新"; - tsmiCheckUpdate.Click += tsmiCheckUpdate_Click; + tsmiUpdateLog.Font = new Font("Microsoft Sans Serif", 12F); + tsmiUpdateLog.Name = "tsmiUpdateLog"; + tsmiUpdateLog.Size = new Size(313, 24); + tsmiUpdateLog.Text = "查看更新日志"; + tsmiUpdateLog.Click += tsmiUpdateLog_Click; // // tsmiAboutUs // tsmiAboutUs.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); tsmiAboutUs.Image = Properties.Resources.关于我们; tsmiAboutUs.Name = "tsmiAboutUs"; - tsmiAboutUs.Size = new Size(207, 24); + tsmiAboutUs.Size = new Size(313, 24); tsmiAboutUs.Text = "关于我们"; tsmiAboutUs.Click += tsmiAboutUs_Click; // @@ -210,7 +210,7 @@ tsmiExitSystem.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); tsmiExitSystem.Image = Properties.Resources.注销; tsmiExitSystem.Name = "tsmiExitSystem"; - tsmiExitSystem.Size = new Size(207, 24); + tsmiExitSystem.Size = new Size(313, 24); tsmiExitSystem.Text = "退出系统"; tsmiExitSystem.Click += tsmiExitSystem_Click; // @@ -243,7 +243,7 @@ lblScroll.Radius = 0; lblScroll.RectSides = ToolStripStatusLabelBorderSides.None; lblScroll.ScrollingType = Sunny.UI.UIScrollingText.UIScrollingType.LeftToRight; - lblScroll.Size = new Size(597, 33); + lblScroll.Size = new Size(739, 33); lblScroll.TabIndex = 0; // // tmrFont @@ -443,8 +443,10 @@ // AutoScaleDimensions = new SizeF(7F, 17F); AutoScaleMode = AutoScaleMode.Font; + AutoValidate = AutoValidate.Disable; BackColor = Color.FromArgb(235, 243, 255); BackgroundImageLayout = ImageLayout.Stretch; + CausesValidation = false; ClientSize = new Size(1080, 721); Controls.Add(cpUITheme); Controls.Add(lblScroll); @@ -516,5 +518,6 @@ private AntdUI.Button btnFormSize; private AntdUI.Button btnSetting; private AntdUI.ColorPicker cpUITheme; + private ToolStripMenuItem tsmiUpdateLog; } } \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.cs index c0f1d0921defcfd6ede1cef5cd4cba7470d8930d..86e1a9dbefc92309f0cacfa25643127b0d91dbf4 100644 --- a/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.cs +++ b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.cs @@ -24,15 +24,12 @@ using AntdUI; using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; -using EOM.TSHotelManagement.FormUI.AppUserControls; +using EOM.TSHotelManagement.Common.Contract; +using EOM.TSHotelManagement.Common.Util; using EOM.TSHotelManagement.FormUI.Properties; +using jvncorelib.CodeLib; using Sunny.UI; -using System.Diagnostics; -using System.Reflection; -using System.Resources; using System.Runtime.InteropServices; -using System.Windows.Forms; namespace EOM.TSHotelManagement.FormUI { @@ -41,10 +38,10 @@ namespace EOM.TSHotelManagement.FormUI private FrmLogin returnForm1 = null; private LoadingProgress _loadingProgress; - public FrmMain(FrmLogin F1, LoadingProgress loadingProgress) + public FrmMain(FrmLogin F1) { InitializeComponent(); - _loadingProgress = loadingProgress; + _loadingProgress = new LoadingProgress(); #region 防止背景闪屏方法 this.DoubleBuffered = true;//设置本窗体 @@ -58,7 +55,7 @@ namespace EOM.TSHotelManagement.FormUI // 接受Form1对象 this.returnForm1 = F1; #region 获取添加操作日志所需的信息 - RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "版本登入了系统!", 3); + RecordHelper.Record(LoginInfo.WorkerNo + "-" + LoginInfo.WorkerName + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + LoginInfo.SoftwareVersion + "版本登入了系统!", Common.Core.LogLevel.Critical); #endregion Stop = StopUseExit; Start = StartUseExit; @@ -152,35 +149,35 @@ namespace EOM.TSHotelManagement.FormUI } #endregion - List fonts = null; + ListOutputDto fonts = null; int fontn = 0; private void LoadFonts() { #region 从数据库读取文字滚动的内容 - result = HttpHelper.Request("Fonts/SelectFontAll"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.PromotionContent_SelectPromotionContents); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { fonts = null; } - fonts = HttpHelper.JsonToList(result.message); + fonts = response; #endregion } #region 定时器:文字滚动间隔 private void tmrFont_Tick(object sender, EventArgs e) { - if (fonts.IsNullOrEmpty()) + if (fonts.listSource == null || fonts.listSource.Count == 0) { - lblScroll.Text = "接口服务异常"; return; } fontn++; - if (fontn == fonts.Count) + if (fontn >= fonts.listSource.Count) { fontn = 0; } - lblScroll.Text = fonts[fontn].FontsMess; + lblScroll.Text = fonts.listSource[fontn].PromotionContentMessage; } #endregion @@ -217,31 +214,33 @@ namespace EOM.TSHotelManagement.FormUI /// private void LoadNavBar() { - var listSource = new List(); + var listSource = new List(); #region 菜单导航代码块 - result = HttpHelper.Request("NavBar/NavBarList"); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.NavBar_NavBarList); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { + AntdUI.Message.error(this, "服务器维护中,请过会再试"); listSource = null; return; } - muNavBar.Controls.Clear(); - listSource = HttpHelper.JsonToList(result.message); + listSource = response.listSource; MenuItem menuItem = null; + muNavBar.Controls.Clear(); if (!listSource.IsNullOrEmpty()) { foreach (var item in listSource) { menuItem = new MenuItem { - Text = item.nav_name + Text = item.NavigationBarName }; - switch (item.nav_name) + switch (item.NavigationBarName) { case "客房管理": menuItem.Icon = Resources.picRoom_Image; break; - case "用户管理": + case "客户管理": menuItem.Icon = Resources.picCustomer_Image; break; case "商品消费": @@ -263,7 +262,7 @@ namespace EOM.TSHotelManagement.FormUI private void FrmMain_Load(object sender, EventArgs e) { this.Owner.Hide(); - + lblSoftName.Text = System.Windows.Forms.Application.ProductName.ToString() + "_V" + ApplicationUtil.GetApplicationVersion(); tmrDate.Enabled = true; @@ -292,16 +291,18 @@ namespace EOM.TSHotelManagement.FormUI btnHello.BackgroundImage = Resources.咖啡; } - Dictionary user = new Dictionary(); - user.Add("wkn", LoginInfo.WorkerNo); - result = HttpHelper.Request("WorkerCheck/SelectToDayCheckInfoByWorkerNo"); - if (result.statusCode != 200) + Dictionary user = new Dictionary() { - UIMessageTip.ShowError("打卡接口异常,请提交issue"); + { nameof(ReadEmployeeCheckInputDto.EmployeeId), LoginInfo.WorkerNo} + }; + result = HttpHelper.Request(ApiConstants.EmployeeCheck_SelectToDayCheckInfoByWorkerNo, user); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) + { + UIMessageTip.ShowError($"{ApiConstants.EmployeeCheck_SelectToDayCheckInfoByWorkerNo}打卡接口异常:{response.Message}"); return; } - int n = Convert.ToInt32(result.message); - if (n > 0) + if (response.Source.IsChecked) { linkLabel1.Text = "已打卡"; linkLabel1.ForeColor = Color.Green; @@ -310,18 +311,16 @@ namespace EOM.TSHotelManagement.FormUI notifyIcon1.Text = "TS酒店管理系统-" + LoginInfo.WorkerName + "-版本号:" + ApplicationUtil.GetApplicationVersion(); wk_WorkerName = LoginInfo.WorkerName; - if (_loadingProgress != null) + FrmRoomManager frmRoomManager = new FrmRoomManager { - _loadingProgress.Close(); - } + TopLevel = false + }; + pnlMID.Controls.Add(frmRoomManager); + frmRoomManager.Show(); } #endregion - #region 计算后台系统的入口点击事件方法 - int i = 0; - #endregion - #region 调用系统锁屏方法 private void tsmiLockScreen_Click(object sender, EventArgs e) { @@ -332,31 +331,6 @@ namespace EOM.TSHotelManagement.FormUI #region 检查软件更新版本事件方法 private void tsmiCheckUpdate_Click(object sender, EventArgs e) { - result = HttpHelper.Request("Base/GetBase"); - if (result.statusCode != 200) - { - UIMessageBox.ShowError("接口服务异常,请重试"); - return; - } - - Base _base = HttpHelper.JsonToModel(result.message); - //调用系统默认的浏览器 - if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) - { - Process.Start(new ProcessStartInfo(_base.url_addr) { UseShellExecute = true }); - } - else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) - { - Process.Start("xdg-open", _base.url_addr); - } - else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) - { - Process.Start("open", _base.url_addr); - } - else - { - throw new PlatformNotSupportedException("This OS is not supported"); - } } #endregion @@ -398,30 +372,31 @@ namespace EOM.TSHotelManagement.FormUI private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - Dictionary user = new() + Dictionary user = new Dictionary() { - { "wkn", LoginInfo.WorkerNo } + { nameof(ReadEmployeeCheckInputDto.EmployeeId), LoginInfo.WorkerNo} }; - result = HttpHelper.Request("WorkerCheck/SelectToDayCheckInfoByWorkerNo", user); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.EmployeeCheck_SelectToDayCheckInfoByWorkerNo, user); + var response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageTip.ShowError("打卡接口异常,请提交issue"); + UIMessageTip.ShowError($"打卡接口:{ApiConstants.EmployeeCheck_SelectToDayCheckInfoByWorkerNo}异常:{response.Message}"); return; } - int n = Convert.ToInt32(result.message); - if (n > 0) + if (response.Source.IsChecked) { linkLabel1.Text = "已打卡"; linkLabel1.ForeColor = Color.Green; linkLabel1.LinkColor = Color.Green; pnlCheckInfo.Visible = true; - result = HttpHelper.Request("WorkerCheck/SelectWorkerCheckDaySumByWorkerNo", user); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.EmployeeCheck_SelectWorkerCheckDaySumByEmployeeId, user); + response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageTip.ShowError("打卡接口异常,请提交issue"); + UIMessageTip.ShowError($"打卡天数接口{ApiConstants.EmployeeCheck_SelectWorkerCheckDaySumByEmployeeId}异常:{response.Message}"); return; } - lblCheckDay.Text = Convert.ToString(result.message); + lblCheckDay.Text = Convert.ToString(response.Source.CheckDay); } else { @@ -431,42 +406,38 @@ namespace EOM.TSHotelManagement.FormUI bool dr = UIMessageBox.Show("你今天还未打卡哦,请先打卡吧!", "打卡提醒", UIStyle.Blue, UIMessageBoxButtons.OK); if (dr == true) { - WorkerCheck workerCheck = new() + CreateEmployeeCheckInputDto workerCheck = new() { - WorkerNo = LoginInfo.WorkerNo, - CheckWay = "系统界面", + CheckNumber = new UniqueCode().GetNewId("CK"), + DataInsDate = DateTime.Now, + IsDelete = 0, + CheckStatus = btnHello.BackgroundImage == Resources.早上 ? 0 : 1, + EmployeeId = LoginInfo.WorkerNo, + CheckMethod = "系统界面", CheckTime = DateTime.Now, - datains_usr = LoginInfo.WorkerNo + DataInsUsr = LoginInfo.WorkerNo }; - result = HttpHelper.Request("WorkerCheck/AddCheckInfo", workerCheck.ModelToJson()); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.EmployeeCheck_AddCheckInfo, workerCheck.ModelToJson()); + var checkResult = HttpHelper.JsonToModel(result.message); + if (checkResult.StatusCode != StatusCodeConstants.Success) { - UIMessageTip.ShowError("打卡接口异常,请提交issue"); + UIMessageTip.ShowError($"打卡接口{ApiConstants.EmployeeCheck_AddCheckInfo}异常:{checkResult.Message}"); return; } - bool j = result.statusCode == 200 ? true : false; - if (j) + result = HttpHelper.Request(ApiConstants.EmployeeCheck_SelectWorkerCheckDaySumByEmployeeId, user); + response = HttpHelper.JsonToModel>(result.message); + if (response.StatusCode != StatusCodeConstants.Success) { - result = HttpHelper.Request("WorkerCheck/SelectWorkerCheckDaySumByWorkerNo", user); - if (result.statusCode != 200) - { - UIMessageTip.ShowError("打卡接口异常,请提交issue"); - return; - } - lblCheckDay.Text = Convert.ToString(result.message); - UIMessageBox.Show("打卡成功!你已共打卡" + lblCheckDay.Text + "天,再接再厉吧!", "打卡提醒", UIStyle.Green, UIMessageBoxButtons.OK); - linkLabel1.Text = "已打卡"; - linkLabel1.ForeColor = Color.Green; - linkLabel1.LinkColor = Color.Green; - pnlCheckInfo.Visible = true; - return; - - } - else - { - UIMessageBox.Show("服务器错误,请稍后再试!", "系统提示", UIStyle.Red, UIMessageBoxButtons.OK); + UIMessageTip.ShowError($"打卡天数接口{ApiConstants.EmployeeCheck_SelectWorkerCheckDaySumByEmployeeId}异常:{response.Message}"); return; } + lblCheckDay.Text = Convert.ToString(response.Source.CheckDay); + UIMessageBox.Show("打卡成功!你已共打卡" + lblCheckDay.Text + "天,再接再厉吧!", "打卡提醒", UIStyle.Green, UIMessageBoxButtons.OK); + linkLabel1.Text = "已打卡"; + linkLabel1.ForeColor = Color.Green; + linkLabel1.LinkColor = Color.Green; + pnlCheckInfo.Visible = true; + return; } } } @@ -485,7 +456,7 @@ namespace EOM.TSHotelManagement.FormUI { FrmMySpace frmMySpace = new FrmMySpace(); frmMySpace.Text = LoginInfo.WorkerName + "的个人中心"; - frmMySpace.ShowDialog(); + frmMySpace.Show(); } public void CloseMine() @@ -524,7 +495,6 @@ namespace EOM.TSHotelManagement.FormUI private void muNavBar_SelectChanged(object sender, MenuSelectEventArgs e) { - _loadingProgress.Show(); switch (e.Value.Text) { case "客房管理": @@ -536,7 +506,7 @@ namespace EOM.TSHotelManagement.FormUI pnlMID.Controls.Add(frmRoomManager); frmRoomManager.Show(); break; - case "用户管理": + case "客户管理": pnlMID.Controls.Clear(); FrmCustomerManager frmCustomerManager = new() { @@ -555,8 +525,12 @@ namespace EOM.TSHotelManagement.FormUI frmSellThing.Show(); break; } - _loadingProgress.Close(); } + + private void tsmiUpdateLog_Click(object sender, EventArgs e) + { + AntdUI.Modal.open(this, LocalizationHelper.GetLocalizedString("Update log", "更新日志"), LoginInfo.SoftwareReleaseLog, TType.Info); + } } } diff --git a/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.Designer.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.Designer.cs deleted file mode 100644 index bd1c728b0749346788d21678715392b3ddad0e87..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.Designer.cs +++ /dev/null @@ -1,189 +0,0 @@ -namespace EOM.TSHotelManagement.FormUI -{ - partial class ucHistory - { - /// - /// 必需的设计器变量。 - /// - private System.ComponentModel.IContainer components = null; - - /// - /// 清理所有正在使用的资源。 - /// - /// 如果应释放托管资源,为 true;否则为 false。 - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region 组件设计器生成的代码 - - /// - /// 设计器支持所需的方法 - 不要修改 - /// 使用代码编辑器修改此方法的内容。 - /// - private void InitializeComponent() - { - this.dtpStartDate = new Sunny.UI.UIDatePicker(); - this.label19 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.dtpEndDate = new Sunny.UI.UIDatePicker(); - this.txtPosition = new Sunny.UI.UITextBox(); - this.label22 = new System.Windows.Forms.Label(); - this.txtCompany = new Sunny.UI.UITextBox(); - this.label6 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // dtpStartDate - // - this.dtpStartDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpStartDate.FillColor = System.Drawing.Color.White; - this.dtpStartDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpStartDate.Location = new System.Drawing.Point(95, 7); - this.dtpStartDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpStartDate.MaxLength = 10; - this.dtpStartDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpStartDate.Name = "dtpStartDate"; - this.dtpStartDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); - this.dtpStartDate.Radius = 20; - this.dtpStartDate.Size = new System.Drawing.Size(166, 31); - this.dtpStartDate.SymbolDropDown = 61555; - this.dtpStartDate.SymbolNormal = 61555; - this.dtpStartDate.TabIndex = 120; - this.dtpStartDate.Text = "2020-11-24"; - this.dtpStartDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpStartDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); - // - // label19 - // - this.label19.AutoSize = true; - this.label19.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label19.Location = new System.Drawing.Point(3, 10); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(88, 25); - this.label19.TabIndex = 119; - this.label19.Text = "工作时间"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label5.Location = new System.Drawing.Point(299, 10); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(31, 25); - this.label5.TabIndex = 121; - this.label5.Text = "到"; - // - // dtpEndDate - // - this.dtpEndDate.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList; - this.dtpEndDate.FillColor = System.Drawing.Color.White; - this.dtpEndDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F); - this.dtpEndDate.Location = new System.Drawing.Point(371, 7); - this.dtpEndDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.dtpEndDate.MaxLength = 10; - this.dtpEndDate.MinimumSize = new System.Drawing.Size(63, 0); - this.dtpEndDate.Name = "dtpEndDate"; - this.dtpEndDate.Padding = new System.Windows.Forms.Padding(0, 0, 30, 0); - this.dtpEndDate.Radius = 20; - this.dtpEndDate.Size = new System.Drawing.Size(203, 31); - this.dtpEndDate.SymbolDropDown = 61555; - this.dtpEndDate.SymbolNormal = 61555; - this.dtpEndDate.TabIndex = 122; - this.dtpEndDate.Text = "2020-11-24"; - this.dtpEndDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; - this.dtpEndDate.Value = new System.DateTime(2020, 11, 24, 22, 50, 36, 791); - // - // txtPosition - // - this.txtPosition.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtPosition.FillColor = System.Drawing.Color.White; - this.txtPosition.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtPosition.Location = new System.Drawing.Point(98, 55); - this.txtPosition.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtPosition.Maximum = 2147483647D; - this.txtPosition.Minimum = -2147483648D; - this.txtPosition.MinimumSize = new System.Drawing.Size(1, 1); - this.txtPosition.Name = "txtPosition"; - this.txtPosition.Padding = new System.Windows.Forms.Padding(5); - this.txtPosition.Radius = 20; - this.txtPosition.Size = new System.Drawing.Size(166, 35); - this.txtPosition.Style = Sunny.UI.UIStyle.Custom; - this.txtPosition.StyleCustomMode = true; - this.txtPosition.TabIndex = 124; - // - // label22 - // - this.label22.AutoSize = true; - this.label22.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label22.Location = new System.Drawing.Point(3, 59); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(88, 25); - this.label22.TabIndex = 123; - this.label22.Text = "所任职位"; - // - // txtCompany - // - this.txtCompany.Cursor = System.Windows.Forms.Cursors.IBeam; - this.txtCompany.FillColor = System.Drawing.Color.White; - this.txtCompany.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.txtCompany.Location = new System.Drawing.Point(365, 55); - this.txtCompany.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.txtCompany.Maximum = 2147483647D; - this.txtCompany.Minimum = -2147483648D; - this.txtCompany.MinimumSize = new System.Drawing.Size(1, 1); - this.txtCompany.Name = "txtCompany"; - this.txtCompany.Padding = new System.Windows.Forms.Padding(5); - this.txtCompany.Radius = 20; - this.txtCompany.Size = new System.Drawing.Size(209, 35); - this.txtCompany.Style = Sunny.UI.UIStyle.Custom; - this.txtCompany.StyleCustomMode = true; - this.txtCompany.TabIndex = 126; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label6.Location = new System.Drawing.Point(270, 59); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(88, 25); - this.label6.TabIndex = 125; - this.label6.Text = "企业名称"; - // - // ucHistory - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.Controls.Add(this.txtCompany); - this.Controls.Add(this.label6); - this.Controls.Add(this.txtPosition); - this.Controls.Add(this.label22); - this.Controls.Add(this.dtpEndDate); - this.Controls.Add(this.label5); - this.Controls.Add(this.dtpStartDate); - this.Controls.Add(this.label19); - this.Name = "ucHistory"; - this.Size = new System.Drawing.Size(581, 100); - this.Load += new System.EventHandler(this.ucHistory_Load); - this.SizeChanged += new System.EventHandler(this.ucHistory_SizeChanged); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label label19; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.Label label22; - private System.Windows.Forms.Label label6; - public Sunny.UI.UIDatePicker dtpStartDate; - public Sunny.UI.UIDatePicker dtpEndDate; - public Sunny.UI.UITextBox txtPosition; - public Sunny.UI.UITextBox txtCompany; - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.cs deleted file mode 100644 index 45a42ac2c76a6d390a7d756bb517e467f96a3256..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.cs +++ /dev/null @@ -1,42 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(EOM) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - */ - -namespace EOM.TSHotelManagement.FormUI -{ - public partial class ucHistory : UserControl - { - public ucHistory() - { - InitializeComponent(); - } - - private void ucHistory_Load(object sender, System.EventArgs e) - { - } - - private void ucHistory_SizeChanged(object sender, System.EventArgs e) - { - } - } -} diff --git a/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.resx b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.resx deleted file mode 100644 index 1af7de150c99c12dd67a509fe57c10d63e4eeb04..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.Designer.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.Designer.cs index b56267c860a663cb0ab3a3e4e3b5361a089de8cc..8899f24b5f12f49cdc32cec4ced1ad13166f2a0a 100644 --- a/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.Designer.cs @@ -30,93 +30,93 @@ { components = new System.ComponentModel.Container(); btnRoom = new AntdUI.Button(); - cmsMain = new System.Windows.Forms.ContextMenuStrip(components); - tsmiReserRoom = new System.Windows.Forms.ToolStripMenuItem(); - tsmiCheckIn = new System.Windows.Forms.ToolStripMenuItem(); - tsmiCheckOut = new System.Windows.Forms.ToolStripMenuItem(); - tsmiChangeRoom = new System.Windows.Forms.ToolStripMenuItem(); - tsmiSelectUserInfo = new System.Windows.Forms.ToolStripMenuItem(); - tsmiChangeState = new System.Windows.Forms.ToolStripMenuItem(); + cmsMain = new ContextMenuStrip(components); + tsmiReserRoom = new ToolStripMenuItem(); + tsmiCheckIn = new ToolStripMenuItem(); + tsmiCheckOut = new ToolStripMenuItem(); + tsmiChangeRoom = new ToolStripMenuItem(); + tsmiSelectUserInfo = new ToolStripMenuItem(); + tsmiChangeState = new ToolStripMenuItem(); cmsMain.SuspendLayout(); SuspendLayout(); // // btnRoom // btnRoom.AutoEllipsis = true; - btnRoom.BackColor = System.Drawing.Color.Transparent; + btnRoom.BackColor = Color.Transparent; btnRoom.BackgroundImage = Properties.Resources.可住状态; btnRoom.BackgroundImageLayout = AntdUI.TFit.Cover; btnRoom.ContextMenuStrip = cmsMain; - btnRoom.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134); + btnRoom.Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134); btnRoom.Ghost = true; btnRoom.IconRatio = 0.5F; btnRoom.JoinLeft = true; btnRoom.JoinRight = true; - btnRoom.Location = new System.Drawing.Point(0, 0); + btnRoom.Location = new Point(0, 0); btnRoom.Name = "btnRoom"; btnRoom.Radius = 12; - btnRoom.Size = new System.Drawing.Size(122, 102); + btnRoom.Size = new Size(122, 102); btnRoom.TabIndex = 0; - btnRoom.Text = "总统套房\r\n\r\nBS001\r\n\r\n梁静茹"; + btnRoom.Text = "总统套房\r\n\r\nBS001\r\n\r\n小T呀"; btnRoom.Click += btnRoom_Click; // // cmsMain // - cmsMain.ImageScalingSize = new System.Drawing.Size(28, 28); - cmsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { tsmiReserRoom, tsmiCheckIn, tsmiCheckOut, tsmiChangeRoom, tsmiSelectUserInfo, tsmiChangeState }); + cmsMain.ImageScalingSize = new Size(28, 28); + cmsMain.Items.AddRange(new ToolStripItem[] { tsmiReserRoom, tsmiCheckIn, tsmiCheckOut, tsmiChangeRoom, tsmiSelectUserInfo, tsmiChangeState }); cmsMain.Name = "cmsMain"; - cmsMain.Size = new System.Drawing.Size(149, 136); + cmsMain.Size = new Size(149, 136); cmsMain.Opening += cmsMain_Opening; // // tsmiReserRoom // tsmiReserRoom.Name = "tsmiReserRoom"; - tsmiReserRoom.Size = new System.Drawing.Size(148, 22); + tsmiReserRoom.Size = new Size(148, 22); tsmiReserRoom.Text = "预约房间"; tsmiReserRoom.Click += tsmiReserRoom_Click; // // tsmiCheckIn // tsmiCheckIn.Name = "tsmiCheckIn"; - tsmiCheckIn.Size = new System.Drawing.Size(148, 22); + tsmiCheckIn.Size = new Size(148, 22); tsmiCheckIn.Text = "入住房间"; tsmiCheckIn.Click += tsmiCheckIn_Click; // // tsmiCheckOut // tsmiCheckOut.Name = "tsmiCheckOut"; - tsmiCheckOut.Size = new System.Drawing.Size(148, 22); + tsmiCheckOut.Size = new Size(148, 22); tsmiCheckOut.Text = "结算退房"; tsmiCheckOut.Click += tsmiCheckOut_Click; // // tsmiChangeRoom // tsmiChangeRoom.Name = "tsmiChangeRoom"; - tsmiChangeRoom.Size = new System.Drawing.Size(148, 22); + tsmiChangeRoom.Size = new Size(148, 22); tsmiChangeRoom.Text = "转换房间"; tsmiChangeRoom.Click += tsmiChangeRoom_Click; // // tsmiSelectUserInfo // tsmiSelectUserInfo.Name = "tsmiSelectUserInfo"; - tsmiSelectUserInfo.Size = new System.Drawing.Size(148, 22); + tsmiSelectUserInfo.Size = new Size(148, 22); tsmiSelectUserInfo.Text = "查看用户信息"; tsmiSelectUserInfo.Click += tsmiSelectUserInfo_Click; // // tsmiChangeState // tsmiChangeState.Name = "tsmiChangeState"; - tsmiChangeState.Size = new System.Drawing.Size(148, 22); + tsmiChangeState.Size = new Size(148, 22); tsmiChangeState.Text = "修改房间状态"; tsmiChangeState.Click += tsmiChangeState_Click; // // ucRoom // - AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); - AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + AutoScaleDimensions = new SizeF(7F, 17F); + AutoScaleMode = AutoScaleMode.Font; Controls.Add(btnRoom); Name = "ucRoom"; - Size = new System.Drawing.Size(122, 102); + Size = new Size(122, 102); Load += ucRoom_Load; cmsMain.ResumeLayout(false); ResumeLayout(false); diff --git a/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.cs index 069290971226e786a0f53201f647db93ae756697..b03ad1429edb09ae294e7dad695b0bca14b9bba6 100644 --- a/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.cs @@ -1,7 +1,7 @@ using EOM.TSHotelManagement.Common; -using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Contract; using EOM.TSHotelManagement.FormUI.Properties; -using jvncorelib.EntityLib; +using EOM.TSHotelManagement.Shared; using Sunny.UI; using System.ComponentModel; using System.Drawing.Drawing2D; @@ -56,8 +56,8 @@ namespace EOM.TSHotelManagement.FormUI #region 实例化房态图的房间信息 public string romTypeName; - public Room romRoomInfo { get; set; } - public Custo romCustoInfo { get; set; } + public ReadRoomOutputDto romRoomInfo { get; set; } + public ReadCustomerOutputDto romCustoInfo { get; set; } #endregion public string lblMark { get; set; } @@ -154,12 +154,12 @@ namespace EOM.TSHotelManagement.FormUI public void LoadRoomInfo() { - co_RoomNo = romRoomInfo.RoomNo; - co_CustoNo = romCustoInfo.CustoNo; - co_CustoName = romCustoInfo.CustoName; + co_RoomNo = romRoomInfo.RoomNumber; + co_CustoNo = romCustoInfo.CustomerNumber; + co_CustoName = romCustoInfo.CustomerName; romTypeName = romRoomInfo.RoomName; - co_CheckTime = romRoomInfo.CheckTime; - co_RoomPosition = romRoomInfo.RoomPosition; + co_CheckTime = romRoomInfo.LastCheckInTime; + co_RoomPosition = romRoomInfo.RoomLocation; co_RoomState = romRoomInfo.RoomState; } @@ -172,38 +172,38 @@ namespace EOM.TSHotelManagement.FormUI this.Region = new Region(GetRoundRectPath(new RectangleF(0, 0, this.Width, this.Height), 6f)); if (romCustoInfo != null) { - us_CustoNo = romCustoInfo.CustoNo; - us_CustoName = romCustoInfo.CustoName; - us_CustoSex = romCustoInfo.CustoSex == 1 ? "男" : "女"; - us_CustoTel = romCustoInfo.CustoTel; - us_CustoID = romCustoInfo.CustoID; - us_CustoBirthday = romCustoInfo.CustoBirth == default ? "" : Convert.ToDateTime(romCustoInfo.CustoBirth).ToString(); - us_CustoPassportType = romCustoInfo.PassportType; - us_CustoType = romCustoInfo.CustoType; - us_CustoAddress = romCustoInfo.CustoAdress; + us_CustoNo = romCustoInfo.CustomerNumber; + us_CustoName = romCustoInfo.CustomerName; + us_CustoSex = romCustoInfo.CustomerGender == 1 ? "男" : "女"; + us_CustoTel = romCustoInfo.CustomerPhoneNumber; + us_CustoID = romCustoInfo.IdCardNumber; + us_CustoBirthday = romCustoInfo.DateOfBirth == default ? "" : Convert.ToDateTime(romCustoInfo.DateOfBirth).ToString(); + us_CustoPassportType = Convert.ToInt32(romCustoInfo.PassportId); + us_CustoType = romCustoInfo.CustomerType; + us_CustoAddress = romCustoInfo.CustomerAddress; } switch (romRoomInfo.RoomStateId) { - case 0: + case (int)Common.Core.RoomState.Vacant: btnRoom.BackgroundImage = Resources.可住状态; break; - case 1: + case (int)Common.Core.RoomState.Occupied: btnRoom.BackgroundImage = Resources.已住状态; break; - case 2: + case (int)Common.Core.RoomState.Maintenance: btnRoom.BackgroundImage = Resources.维修状态; break; - case 3: + case (int)Common.Core.RoomState.Dirty: btnRoom.BackgroundImage = Resources.脏房状态; break; - case 4: + case (int)Common.Core.RoomState.Reserved: btnRoom.BackgroundImage = Resources.预约状态; break; } btnRoom.BackgroundImageLayout = AntdUI.TFit.Cover; } - Room r; + ReadRoomOutputDto r; private void tsmiReserRoom_Click(object sender, EventArgs e) { FrmReserManager frm = new FrmReserManager(); @@ -224,17 +224,27 @@ namespace EOM.TSHotelManagement.FormUI } getParam = new Dictionary { - { "no", roomText[1] } + { nameof(ReadRoomInputDto.RoomNumber), roomText[1] } }; - result = HttpHelper.Request("Room/SelectRoomByRoomNo", getParam); + result = HttpHelper.Request(ApiConstants.Room_SelectRoomByRoomNo, getParam); + var response = HttpHelper.JsonToModel>(result.message); - if (result.statusCode != 200) + if (response.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.Show("接口服务异常!", "来自小T提示", UIStyle.Red); + UIMessageBox.Show($"{ApiConstants.Room_SelectRoomByRoomNo}+接口服务异常!", "来自小T提示", UIStyle.Red); return; } - r = HttpHelper.JsonToModel(result.message!)!; - if (r.RoomStateId == 1) + r = response.Source; + if (r.RoomStateId == (int)Common.Core.RoomState.Vacant) + { + tsmiCheckIn.Enabled = true; + tsmiCheckOut.Enabled = false; + tsmiSelectUserInfo.Enabled = false; + tsmiChangeState.Enabled = true; + tsmiChangeRoom.Enabled = false; + tsmiReserRoom.Enabled = true; + } + else if (r.RoomStateId == (int)Common.Core.RoomState.Occupied) { tsmiCheckIn.Enabled = false; tsmiCheckOut.Enabled = true; @@ -243,7 +253,7 @@ namespace EOM.TSHotelManagement.FormUI tsmiChangeRoom.Enabled = true; tsmiReserRoom.Enabled = false; } - else if (r.RoomStateId == 2 || r.RoomStateId == 3) + else if (r.RoomStateId == (int)Common.Core.RoomState.Dirty || r.RoomStateId == (int)Common.Core.RoomState.Maintenance) { tsmiCheckIn.Enabled = false; tsmiCheckOut.Enabled = false; @@ -252,15 +262,6 @@ namespace EOM.TSHotelManagement.FormUI tsmiChangeRoom.Enabled = false; tsmiReserRoom.Enabled = false; } - else if (r.RoomStateId == 4) - { - tsmiCheckIn.Enabled = true; - tsmiCheckOut.Enabled = false; - tsmiSelectUserInfo.Enabled = false; - tsmiChangeState.Enabled = true; - tsmiChangeRoom.Enabled = false; - tsmiReserRoom.Enabled = false; - } else { tsmiCheckIn.Enabled = true; @@ -268,7 +269,7 @@ namespace EOM.TSHotelManagement.FormUI tsmiSelectUserInfo.Enabled = false; tsmiChangeState.Enabled = true; tsmiChangeRoom.Enabled = false; - tsmiReserRoom.Enabled = true; + tsmiReserRoom.Enabled = false; } } @@ -276,13 +277,13 @@ namespace EOM.TSHotelManagement.FormUI { if (romCustoInfo != null && romRoomInfo != null) { - if (r.RoomStateId == 4) + if (r.RoomStateId == new EnumHelper().GetEnumValue(Common.Core.RoomState.Reserved)) { - rm_CustoNo = romCustoInfo.CustoNo; - rm_RoomNo = romRoomInfo.RoomNo; + rm_CustoNo = romCustoInfo.CustomerNumber; + rm_RoomNo = romRoomInfo.RoomNumber; rm_RoomType = romRoomInfo.RoomName; - rm_RoomMoney = Convert.ToDecimal(romRoomInfo.RoomMoney).ToString(); - rm_RoomStateId = 4; + rm_RoomMoney = Convert.ToDecimal(romRoomInfo.RoomRent).ToString(); + rm_RoomStateId = (int)Common.Core.RoomState.Reserved; UIMessageBox.ShowInfo("欢迎入住,请先注册客户信息!"); FrmReserList frm = new FrmReserList(); frm.ShowDialog(); @@ -290,10 +291,10 @@ namespace EOM.TSHotelManagement.FormUI } else { - rm_CustoNo = romCustoInfo.CustoNo; - rm_RoomNo = romRoomInfo.RoomNo; + rm_CustoNo = romCustoInfo.CustomerNumber; + rm_RoomNo = romRoomInfo.RoomNumber; rm_RoomType = romRoomInfo.RoomName; - rm_RoomMoney = Convert.ToDecimal(romRoomInfo.RoomMoney).ToString(); + rm_RoomMoney = Convert.ToDecimal(romRoomInfo.RoomRent).ToString(); FrmCheckIn frm = new FrmCheckIn(); frm.ShowDialog(); } @@ -306,9 +307,8 @@ namespace EOM.TSHotelManagement.FormUI private void tsmiCheckOut_Click(object sender, EventArgs e) { - _loadingProgress.Show(); - rm_CustoNo = romRoomInfo.CustoNo; - rm_RoomNo = romRoomInfo.RoomNo; + rm_CustoNo = romRoomInfo.CustomerNumber; + rm_RoomNo = romRoomInfo.RoomNumber; rm_RoomType = romRoomInfo.RoomName; FrmCheckOutForm frm = new FrmCheckOutForm(_loadingProgress); frm.ShowDialog(this); @@ -324,8 +324,8 @@ namespace EOM.TSHotelManagement.FormUI bool tf = UIMessageBox.Show("确定要进行转房吗?", "来自小T的提醒", UIStyle.Orange, UIMessageBoxButtons.OKCancel); if (tf) { - RoomNo = romRoomInfo.RoomNo; - CustoNo = romCustoInfo.CustoNo; + RoomNo = romRoomInfo.RoomNumber; + CustoNo = romCustoInfo.CustomerNumber; RoomState = romRoomInfo.RoomState; FrmChangeRoom frm = new FrmChangeRoom(); frm.ShowDialog(); @@ -339,38 +339,40 @@ namespace EOM.TSHotelManagement.FormUI private void tsmiSelectUserInfo_Click(object sender, EventArgs e) { - rm_CustoNo = romCustoInfo.CustoNo; + rm_CustoNo = romCustoInfo.CustomerNumber; FrmSelectCustoInfo frm = new FrmSelectCustoInfo(); frm.ShowDialog(); } private void tsmiChangeState_Click(object sender, EventArgs e) { - if (r.RoomStateId == 4) + if (r.RoomStateId == (int)Common.Core.RoomState.Reserved) { bool tf = UIMessageBox.Show("当前房间已被预约,确认更改状态后将会删除原本预约状态及信息,你确定吗?", "来自小T的提醒", UIStyle.Red, UIMessageBoxButtons.OKCancel); if (tf) { getParam = new Dictionary() { - {"no",r.RoomNo } + { nameof(ReadReserInputDto.ReservationRoomNumber) , r.RoomNumber } }; - result = HttpHelper.Request("Reser/SelectReserInfoByRoomNo", getParam); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Reser_SelectReserInfoByRoomNo, getParam); + var reserResponse = HttpHelper.JsonToModel>(result.message); + if (reserResponse.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.Show("SelectReserInfoByRoomNo+接口服务异常!", "来自小T提示", UIStyle.Red); + UIMessageBox.Show($"{ApiConstants.Reser_SelectReserInfoByRoomNo}+接口服务异常!", "来自小T提示", UIStyle.Red); return; } else { - var reser = new Reser + var reser = new DeleteReserInputDto { - ReserId = HttpHelper.JsonToModel(result.message!)!.ReserId + ReservationId = reserResponse.Source!.ReservationId }; - result = HttpHelper.Request("Reser/DeleteReserInfo", HttpHelper.ModelToJson(reser)); - if (result.statusCode != 200) + result = HttpHelper.Request(ApiConstants.Reser_DeleteReserInfo, HttpHelper.ModelToJson(reser)); + var reserResult = HttpHelper.JsonToModel(result.message); + if (reserResult.StatusCode != StatusCodeConstants.Success) { - UIMessageBox.Show("DeleteReserInfo+接口服务异常!", "来自小T提示", UIStyle.Red); + UIMessageBox.Show($"{ApiConstants.Reser_DeleteReserInfo}+接口服务异常!", "来自小T提示", UIStyle.Red); return; } } @@ -379,7 +381,7 @@ namespace EOM.TSHotelManagement.FormUI if (romCustoInfo != null && romRoomInfo != null) { rm_RoomStateId = romRoomInfo.RoomStateId; - rm_RoomNo = romRoomInfo.RoomNo; + rm_RoomNo = romRoomInfo.RoomNumber; FrmRoomStateManager frsm = new FrmRoomStateManager(); frsm.ShowDialog(); } diff --git a/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.resx b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.resx index 59c23696ba32faf27970b976a2fe3ce74b18c0a8..98b3243196168d3e1232b6dab2d7bda1900d3d0a 100644 --- a/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.resx +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.resx @@ -1,7 +1,7 @@  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj b/EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj index bd8a84776e15ca6c4abadeca794ded49710488ae..bd1925ecda337baf2aae0d451679612cce42a512 100644 --- a/EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj +++ b/EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj @@ -1,13 +1,17 @@  + true + true + true + win-x64 WinExe net8.0-windows enable true enable true - 2.8.1.0 + 2.8.5.2 EOM.TSHotelManagement.FormUI.Program x64 TS酒店管理系统 @@ -20,39 +24,18 @@ Form - - Form - - - Form - Form - - Form - Form - - Form - - - Form - - - Form - Form Form - - Form - Form @@ -60,51 +43,21 @@ Form - - Form - - - Form - Form - - Form - - - Form - Form - - Form - - - Form - - - Form - - - Form - Form Form - - Form - Form - - Form - Form @@ -117,48 +70,18 @@ Form - - Form - - - Form - - - Form - - - Form - - - Form - - - Form - Form - - Form - - - Form - Form Form - - Form - Form - - UserControl - UserControl @@ -168,9 +91,6 @@ UserControl - - UserControl - True True @@ -190,11 +110,7 @@ True True - - True - True - True - + True True @@ -206,8 +122,8 @@ - - + + @@ -230,6 +146,7 @@ + @@ -239,6 +156,11 @@ Always + + + PreserveNewest + + Always diff --git a/EOM.TSHotelManagement.FormUI/InitConfig/Initialize.cs b/EOM.TSHotelManagement.FormUI/InitConfig/Initialize.cs index 1edd0a11bd66c787a9e7db8edbd395d44ac74fae..8ed3030558f98e57a466b993d1adbb30ecc4f8fd 100644 --- a/EOM.TSHotelManagement.FormUI/InitConfig/Initialize.cs +++ b/EOM.TSHotelManagement.FormUI/InitConfig/Initialize.cs @@ -1,4 +1,4 @@ -using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Shared; using System.Reflection; namespace EOM.TSHotelManagement.FormUI diff --git a/EOM.TSHotelManagement.FormUI/Properties/Resources.Designer.cs b/EOM.TSHotelManagement.FormUI/Properties/Resources.Designer.cs index 7ea610ec3933cadacbba48ab5965b5a56e187767..b6267e6683f5a096764e7eec1ceed9b510f329b2 100644 --- a/EOM.TSHotelManagement.FormUI/Properties/Resources.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/Properties/Resources.Designer.cs @@ -100,16 +100,6 @@ namespace EOM.TSHotelManagement.FormUI.Properties { } } - /// - /// 查找 System.Byte[] 类型的本地化资源。 - /// - internal static byte[] EOM_TSHotelManagement_Common_Core { - get { - object obj = ResourceManager.GetObject("EOM.TSHotelManagement.Common.Core", resourceCulture); - return ((byte[])(obj)); - } - } - /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// @@ -220,16 +210,6 @@ namespace EOM.TSHotelManagement.FormUI.Properties { } } - /// - /// 查找 System.Byte[] 类型的本地化资源。 - /// - internal static byte[] TableColumns { - get { - object obj = ResourceManager.GetObject("TableColumns", resourceCulture); - return ((byte[])(obj)); - } - } - /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// diff --git a/EOM.TSHotelManagement.FormUI/Properties/Resources.resx b/EOM.TSHotelManagement.FormUI/Properties/Resources.resx index ff6a31f956c5266f5bba5cbb2892cf424a8ee3b7..28a3c94e45fad7d32b8c1c76a4a316411474e612 100644 --- a/EOM.TSHotelManagement.FormUI/Properties/Resources.resx +++ b/EOM.TSHotelManagement.FormUI/Properties/Resources.resx @@ -127,9 +127,6 @@ ..\Resources\close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\EOM.TSHotelManagement.Common.Core.xml;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ..\Resources\jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -166,9 +163,6 @@ ..\Resources\settings2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\EOM.TSHotelManagement.Common.Core.xml;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ..\Resources\上传照片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a diff --git a/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Contract.xml b/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Contract.xml new file mode 100644 index 0000000000000000000000000000000000000000..c501ed307e9ed40afd329cf0c8b9769985ddc00c --- /dev/null +++ b/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Contract.xml @@ -0,0 +1,348 @@ + + + + EOM.TSHotelManagement.Common.Contract + + + + + Token + + + + + 删除标识 + + + + + 资料创建人 + + + + + 资料创建时间 + + + + + 资料更新人 + + + + + 资料更新时间 + + + + + 状态码,例如 200 表示成功,500 表示服务器错误,400 表示客户端错误等 + + + + + 返回消息,用于描述请求结果 + + + + + + + + + + 带状态码和消息的构造函数 + + 状态码 + 消息 + + + + 页数 + + + + + 总数 + + + + + 忽略分页 + + + + + 带总数的列表输出Dto + + + + + 数据源 + + + + + 总数 + + + + + 数据源 + + + + + 客户类型 (Customer Type) + + + + + 客户类型名称 (Customer Type Name) + + + + + 打卡编号 (Check-in/Check-out Number) + + + + + 员工工号 (Employee ID) + + + + + 打卡时间 (Check-in/Check-out Time) + + + + + 打卡方式 (Check-in/Check-out Method) + + + + + 打卡状态 (Check-in/Check-out Status) + + + + + 是否为超级管理员描述 (Is Super Administrator Description) + + + + + 管理员类型名称 (Administrator Type Name) + + + + + 菜单视图模型 (Menu View Model) + + + + + 菜单主键 (Menu Key) + + + + + 菜单标题 (Menu Title) + + + + + 菜单路径 (Menu Path) + + + + + 子菜单 (Child Menus) + + + + + 系统模块常量类 + + + + + 基础信息 + + + + + 财务信息 + + + + + 水电管理 + + + + + 监管统计 + + + + + 客房管理 + + + + + 客户管理 + + + + + 人事管理 + + + + + 物资管理 + + + + + 员工操作日志 + + + + + 系统管理 + + + + + 模块ID (Module ID) + + + + + 管理员账号 (Administrator Account) + + + + + 模块名称 (Module Name) + + + + + 是否开启 (Is Enabled) + + + + + 备 注:角色编码 + 默认值: + + + + + 备 注:角色名字 + 默认值: + + + + + 备 注:角色描述 + 默认值: + + + + + 备 注:角色编码 + 默认值: + + + + + 备 注:角色编码 + 默认值: + + + + + 备 注:角色名字 + 默认值: + + + + + 备 注:角色描述 + 默认值: + + + + + 备 注:角色编码 + 默认值: + + + + + 备 注:角色名字 + 默认值: + + + + + 备 注:角色描述 + 默认值: + + + + + 备 注:角色编码 + 默认值: + + + + + 备 注:角色名字 + 默认值: + + + + + 备 注:角色描述 + 默认值: + + + + + 请求路径 (Request Path) + + + + + 响应时间 (Elapsed Time) + + + + + 请求方法 (Http Method) + + + + + 状态码 (Status Code) + + + + + 异常消息 (Exception Message) + + + + + 异常堆栈 (Exception Stack Trace) + + + + diff --git a/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Core.xml b/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Core.xml deleted file mode 100644 index 2dcd4f7798d21f255a478a415d888c4bd8160e2e..0000000000000000000000000000000000000000 --- a/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Core.xml +++ /dev/null @@ -1,1555 +0,0 @@ - - - - EOM.TSHotelManagement.Common.Core - - - - - 资料创建人 - - - - - 资料创建时间 - - - - - 资料更新人 - - - - - 资料更新时间 - - - - - Token - - - - - 资产管理 - - - - - 资产编号 - - - - - 资产名称 - - - - - 资产总值 - - - - - 资产总值描述 - - - - - 所属部门 - - - - - 所属部门描述 - - - - - 入库时间 - - - - - 资产来源 - - - - - 资产经办人 - - - - - 资产经办人 - - - - - 删除标记 - - - - - 客户信息 - - - - - 客户编号 - - - - - 客户名称 - - - - - 客户性别 - - - - - 证件类型 - - - - - 性别 - - - - - 客户电话 - - - - - 出生日期 - - - - - 客户类型 - - - - - 证件类型 - - - - - 证件号码 - - - - - 居住地址 - - - - - 客户类型 - - - - - 删除标记 - - - - - 酒店盈利情况 - - - - - 年 - - - - - 总金额 - - - - - 客户类型 - - - - - 客户类型 - - - - - 类型名字 - - - - - 删除标记 - - - - - 证件类型 - - - - - 证件类型 - - - - - 证件名称 - - - - - 删除标记 - - - - - 性别 - - - - - 性别ID - - - - - 性别名称 - - - - - 删除标记 - - - - - 酒店宣传联动内容 - - - - - 宣传内容编号 - - - - - 宣传内容 - - - - - 水电信息 - - - - - 信息编号 - - - - - 房间编号 - - - - - 开始使用时间 - - - - - 结束使用时间 - - - - - 水费 - - - - - 电费 - - - - - 记录员 - - - - - 客户编号 - - - - - 删除标记 - - - - - 预约列表 - - - - - 预约编号 - - - - - 客户名称 - - - - - 预约电话 - - - - - 预约渠道 - - - - - 预约房号 - - - - - 预约起始 - - - - - 预约止日 - - - - - 删除标记 - - - - - 房间实体类 - - - - - 房间编号 - - - - - 房间类型 - - - - - 客户编号 - - - - - 客户姓名 - - - - - 最后一次入住时间 - - - - - 最后一次退房时间 - - - - - 房间状态ID - - - - - 房间状态 - - - - - 房间单价 - - - - - 房间押金 - - - - - 房间位置 - - - - - 客户类型名称 - - - - - 房间名称 - - - - - 最后一次入住时间 - - - - - 删除标记 - - - - - 房间状态 - - - - - 房间状态编号 - - - - - 房间状态 - - - - - 删除标记 - - - - - 房间类型 - - - - - 类型编号 - - - - - 房间类型 - - - - - 房间租金 - - - - - 房间押金 - - - - - 删除标记 - - - - - 删除标记描述 - - - - - 商品信息 - - - - - 商品编号 - - - - - 商品名称 - - - - - 商品价格 - - - - - 商品价格描述 - - - - - 规格型号 - - - - - 库存 - - - - - 删除标记 - - - - - 消费信息 - - - - - 房间编号 - - - - - 客户编号 - - - - - 商品名称 - - - - - 消费数量 - - - - - 商品单价 - - - - - 商品单价描述 - - - - - 消费金额 - - - - - 消费金额描述 - - - - - 消费时间 - - - - - 结算状态 - - - - - 删除标记 - - - - - 结算状态描述 - - - - - 查询所有客户信息 - 输出DTO - - - - - 数据源 - - - - - 总数 - - - - - 导航控件实体类 - - - - - 导航控件ID - - - - - 导航控件名称 - - - - - 导航控件排序 - - - - - 导航控件图片 - - - - - 导航控件事件 - - - - - 导航控件事件 - - - - - 删除标记 - - - - - 应用版本 - - - - - 流水号 - - - - - 版本号 - - - - - 卡片代码 - - - - - 卡片代码 - - - - - 编号 - - - - - 省份 - - - - - 城市 - - - - - 地区 - - - - - 地区识别码 - - - - - 日志等级 - - - - - 普通警告 - - - - - 严重警告 - - - - - 危险警告 - - - - - 操作日志 - - - - - 日志ID - - - - - 操作时间 - - - - - 操作信息 - - - - - 操作账号 - - - - - 日志等级 - - - - - 删除标记 - - - - - 软件版本 - - - - - 登录IP - - - - - 日志等级 - - - - - 奖惩类型实体类 - - - - - 奖惩编号 - - - - - 奖惩名称 - - - - - 删除标记 - - - - - 员工信息 - - - - - 员工账号/工号 - - - - - 员工姓名 - - - - - 出生日期 - - - - - 员工性别 - - - - - 员工性别(名称描述) - - - - - 民族类型 - - - - - 民族名称 - - - - - 员工电话 - - - - - 所属部门 - - - - - 部门名称 - - - - - 居住地址 - - - - - 员工职位 - - - - - 职位名称 - - - - - 证件号码 - - - - - 员工密码 - - - - - 员工入职时间 - - - - - 员工面貌 - - - - - 群众面貌描述 - - - - - 教育程度 - - - - - 教育程度名称 - - - - - 删除标记 - - - - - 员工打卡考勤 - - - - - 编号 - - - - - 工号 - - - - - 打卡时间 - - - - - 打卡方式 - - - - - 打卡状态 - - - - - 打卡状态 - - - - - 删除标记 - - - - - 员工奖罚 - - - - - 编号 - - - - - 工号 - - - - - 奖惩信息 - - - - - 奖惩类型 - - - - - 奖惩操作人 - - - - - 奖惩操作人 - - - - - 奖惩时间 - - - - - 类型名称 - - - - - 删除标记 - - - - - 员工履历 - - - - - 编号 - - - - - 工号 - - - - - 开始时间 - - - - - 结束时间 - - - - - 职位 - - - - - 公司 - - - - - 删除标记 - - - - - 员工照片 - - - - - 自增长流水号 - - - - - 工号 - - - - - 照片路径 - - - - - 管理员实体类 - - - - - 构造函数 - - - - - 编号 - - - - - 管理员账号 - - - - - 管理员密码 - - - - - 管理员类型 - - - - - 管理员名称 - - - - - 是否为超级管理员 - - - - - 删除标记 - - - - - 管理员类型描述 - - - - - 管理员类型 - - - - - 删除标记描述 - - - - - 管理员类型 - - - - - 编号 - - - - - 管理员类型 - - - - - 类型名称 - - - - - 删除标记 - - - - - 系统信息 - - - - - 地址编号 - - - - - 地址 - - - - - 监管统计 - - - - - 监管统计编号 - - - - - 监管部门 - - - - - 监管进度 - - - - - - - - - - - - - - - - - - - - - - - - - 删除标记 - - - - - 部门表 - - - - - 部门编号 - - - - - 部门名称 - - - - - 部门描述 - - - - - 创建时间(部门) - - - - - 部门主管 - - - - - 部门主管 - - - - - 上级部门 - - - - - 上级部门 - - - - - 删除标记 - - - - - 学历 - - - - - 学历编号 - - - - - 学历名称 - - - - - 删除标记 - - - - - 菜单表 - - - - - 备 注:自增长ID - 默认值: - - - - - 备 注:菜单键 - 默认值: - - - - - 备 注:菜单标题 - 默认值: - - - - - 备 注:菜单路径 - 默认值: - - - - - 备 注:父级ID - 默认值: - - - - - 备 注:删除标记 - 默认值: - - - - - 菜单视图模型 - - - - - 菜单主键 - - - - - 菜单标题 - - - - - 菜单路径 - - - - - 子菜单 - - - - - 模块实体 - - - - - 模块ID - - - - - 模块名称 - - - - - 模块描述 - - - - - 删除标记 - - - - - 系统模块常量类 - - - - - 基础信息 - - - - - 财务信息 - - - - - 水电管理 - - - - - 监管统计 - - - - - 客房管理 - - - - - 客户管理 - - - - - 人事管理 - - - - - 物资管理 - - - - - 员工操作日志 - - - - - 系统管理 - - - - - 模块权限表 - - - - - 模块ID - - - - - 管理员账号 - - - - - 模块名称 - - - - - 是否开启 - - - - - 民族 - - - - - 民族编号 - - - - - 民族名称 - - - - - 删除标记 - - - - - 任命公告 - - - - - 公告编号 - - - - - 公告主题 - - - - - 公告类型 - - - - - 公告类型(描述) - - - - - 公告时间 - - - - - 公告正文 - - - - - 发文部门 - - - - - 删除标记 - - - - - 职位 - - - - - 职位编号 - - - - - 职位名称 - - - - - 删除标记 - - - - - 会员等级规则类 - - - - - 索引ID - - - - - 会员规则流水号 - - - - - 会员规则名称 - - - - - 预设数值(历史消费总额) - - - - - 会员等级 - - - - - 删除标识 - - - - - 会员等级描述 - - - - diff --git a/EOM.TSHotelManagement.FormUI/TableComponent/LoadingProgress.cs b/EOM.TSHotelManagement.FormUI/TableComponent/LoadingProgress.cs index a551c83c2cb3c91b48b3a7b18905447a1f7f0dd9..320f33d8a5d566e4cab9a609b57340492ad4f4da 100644 --- a/EOM.TSHotelManagement.FormUI/TableComponent/LoadingProgress.cs +++ b/EOM.TSHotelManagement.FormUI/TableComponent/LoadingProgress.cs @@ -11,9 +11,14 @@ _frmProgress = new FrmProgress(); } - Task.Run(() => _frmProgress.ShowDialog()); + if (!_frmProgress.Visible) + { + _frmProgress.Visible = false; + Task.Run(() => _frmProgress.ShowDialog()); + } } + public void Close() { if (_frmProgress != null && !_frmProgress.IsDisposed) diff --git a/EOM.TSHotelManagement.FormUI/TableComponent/TableComHelper.cs b/EOM.TSHotelManagement.FormUI/TableComponent/TableComHelper.cs index c978fd92338c34e65cb85ad45e941f3063be7bd7..7ab3858853bd43271ae6a3eef512433f18c8d8ad 100644 --- a/EOM.TSHotelManagement.FormUI/TableComponent/TableComHelper.cs +++ b/EOM.TSHotelManagement.FormUI/TableComponent/TableComHelper.cs @@ -1,6 +1,7 @@ using AntdUI; using EOM.TSHotelManagement.Common.Util; using System.Reflection; +using System.Text; using System.Xml.Linq; namespace EOM.TSHotelManagement.FormUI @@ -13,11 +14,23 @@ namespace EOM.TSHotelManagement.FormUI { try { - var xmlContent = Properties.Resources.TableColumns; - using (var memoryStream = new MemoryStream(xmlContent)) - using (var stringReader = new StreamReader(memoryStream)) + var assembly = Assembly.GetExecutingAssembly(); + + var resourceName = assembly.GetManifestResourceNames() + .FirstOrDefault(name => name.EndsWith("EOM.TSHotelManagement.Common.Contract.xml")); + + if (string.IsNullOrEmpty(resourceName)) + throw new FileNotFoundException("未找到嵌入的XML资源"); + + using (var stream = assembly.GetManifestResourceStream(resourceName)) { - _xmlDoc = XDocument.Load(stringReader); + if (stream == null) + throw new FileNotFoundException("无法加载资源流"); + + using (var reader = new StreamReader(stream, Encoding.UTF8)) + { + _xmlDoc = XDocument.Load(reader); + } } } catch (Exception ex) @@ -44,7 +57,7 @@ namespace EOM.TSHotelManagement.FormUI ColumnAlign.Center // 对齐方式 ) { - Visible = true, + Visible = tableColumn.Visible, SortOrder = true, Align = ColumnAlign.Center, ColAlign = ColumnAlign.Center, @@ -66,7 +79,7 @@ namespace EOM.TSHotelManagement.FormUI public List ConvertToAntdItems(List datas) { var listTableSource = new List(); - var properties = typeof(T).GetProperties(); // 获取泛型实体T的所有属性 + var properties = typeof(T).GetProperties(); foreach (var data in datas) { @@ -115,18 +128,32 @@ namespace EOM.TSHotelManagement.FormUI antItems.Add(new AntdUI.AntItem(propName, dateValue.ToString("yyyy-MM-dd HH:mm:ss"))); } } + else if (propType == typeof(decimal)) + { + var decimalValue = Convert.ToDecimal(propValue); + antItems.Add(new AntdUI.AntItem(propName, Math.Round(decimalValue, 2))); + } else { - // 对于其他类型,默认显示字段名和字段值 antItems.Add(new AntdUI.AntItem(propName, propValue?.ToString())); } } - listTableSource.Add(antItems.ToArray()); // 添加处理后的AntdItem数组到结果集中 + listTableSource.Add(antItems.ToArray()); } return listTableSource; } + public string GetValue(IList items, string key) + { + var item = items.SingleOrDefault(x => x.key == key); + if (item == null || item.value == null) + { + return string.Empty; + } + return item.value?.ToString() ?? string.Empty; + } + /// /// 获取实体字段名 /// @@ -159,7 +186,7 @@ namespace EOM.TSHotelManagement.FormUI comment = $"注释获取失败: {ex.Message}"; } - tableColumns.Add(new TableColumn(propertyName, displayAttribute.DisplayName ?? comment)); + tableColumns.Add(new TableColumn(propertyName, displayAttribute.DisplayName ?? comment, displayAttribute.IsVisible)); } return tableColumns; @@ -189,14 +216,16 @@ namespace EOM.TSHotelManagement.FormUI /// public class TableColumn { - public TableColumn(string field, string description) + public TableColumn(string field, string description, bool visible = true) { Field = field; Description = description; + Visible = visible; } public string Field { get; set; } public string Description { get; set; } + public bool Visible { get; set; } = true; } } } diff --git a/EOM.TSHotelManagement.FormUI/icon/add to card.ico b/EOM.TSHotelManagement.FormUI/icon/add to card.ico deleted file mode 100644 index cd832409747ac48859d45ffa55d8d7db4ec1946d..0000000000000000000000000000000000000000 Binary files a/EOM.TSHotelManagement.FormUI/icon/add to card.ico and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" "b/EOM.TSHotelManagement.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" deleted file mode 100644 index 8a551f397ddce9921ac63e5735386a4a0437940d..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" deleted file mode 100644 index d27aa6d3b611a36f080f62ff7ed80d82e85ff0db..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" deleted file mode 100644 index 392db81d96bbb208ff2e8f345644883f2a9a6a9e..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" deleted file mode 100644 index 9c7fc45a5cae458329a95526954f16c43f1daedc..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" deleted file mode 100644 index 8c636b80eaf05d3ec6b8ed146cc56d5161f14fa3..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\345\245\226\346\203\251.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\245\226\346\203\251.ico" deleted file mode 100644 index f5858ae1cc4b70c3e875ddb112e183c5528882ac..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\345\245\226\346\203\251.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\345\255\246\345\216\206.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\255\246\345\216\206.ico" deleted file mode 100644 index 79790860c9ac64fb99f0a68c4b6ebd9e159f413d..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\345\255\246\345\216\206.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\200\247 \345\210\253.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\200\247 \345\210\253.ico" deleted file mode 100644 index 6cead91eb551a4105666f55f16665aefbe796454..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\200\247 \345\210\253.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" deleted file mode 100644 index 5aca2b14bff072aecbba25e7be9e853ff2cbde39..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\212\245\350\241\250.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\212\245\350\241\250.ico" deleted file mode 100644 index c40001cfb337305bd87826b00921317c5e58c141..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\212\245\350\241\250.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" deleted file mode 100644 index 5e0b7cf8953d5ce291dc87e4d952fb03f7422dc1..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\226\260\345\242\236.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\226\260\345\242\236.ico" deleted file mode 100644 index df164eb0e56e0c987ec33945b22241d53549b5dd..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\226\260\345\242\236.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\235\203\351\231\220.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\235\203\351\231\220.ico" deleted file mode 100644 index a3c186198eac5386bf819e63c9e8d024098c846c..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\235\203\351\231\220.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\260\221\346\227\217.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\260\221\346\227\217.ico" deleted file mode 100644 index d3fa8a5a1a5186cec868ca33ee872631fce69705..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\260\221\346\227\217.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\260\264\347\224\265.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\260\264\347\224\265.ico" deleted file mode 100644 index 86d082f55c46742b0570ace305cdb3dfab416305..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\260\264\347\224\265.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" deleted file mode 100644 index 36c789d419343b81d8ab403b26037269f76ca3d7..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" deleted file mode 100644 index cec09b69d056cec1c72c5a3e9081b3a8ea2726cc..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" deleted file mode 100644 index 15bb5809293ace4928be5aa09aa1a7c499b401f7..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" "b/EOM.TSHotelManagement.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" deleted file mode 100644 index 923abbad8290d9c3b5976f8ca6aa02b179fdbfb3..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\347\233\276\347\211\214.ico" "b/EOM.TSHotelManagement.FormUI/icon/\347\233\276\347\211\214.ico" deleted file mode 100644 index f834d7f8c6cac98cb18c3b40eab5377f23f2b40b..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\347\233\276\347\211\214.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\347\255\211\347\272\247.ico" "b/EOM.TSHotelManagement.FormUI/icon/\347\255\211\347\272\247.ico" deleted file mode 100644 index d8ebacc183abdf166d0d3d66f489f884acf4b4c0..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\347\255\211\347\272\247.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\350\201\214\344\275\215.ico" "b/EOM.TSHotelManagement.FormUI/icon/\350\201\214\344\275\215.ico" deleted file mode 100644 index a903317367bc8b9ba0a478f1b61240aed480f5c3..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\350\201\214\344\275\215.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\350\247\204\345\210\231.ico" "b/EOM.TSHotelManagement.FormUI/icon/\350\247\204\345\210\231.ico" deleted file mode 100644 index a77a816c3a4c80085b6b8c16e4426529962ae049..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\350\247\204\345\210\231.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" "b/EOM.TSHotelManagement.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" deleted file mode 100644 index 25628e71b3c1381e7c673deef24ecea7047fea5e..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" and /dev/null differ diff --git "a/EOM.TSHotelManagement.FormUI/icon/\351\203\250\351\227\250.ico" "b/EOM.TSHotelManagement.FormUI/icon/\351\203\250\351\227\250.ico" deleted file mode 100644 index bd1325fdb1582ecf90b71b3de19f92ffbb05b787..0000000000000000000000000000000000000000 Binary files "a/EOM.TSHotelManagement.FormUI/icon/\351\203\250\351\227\250.ico" and /dev/null differ diff --git a/README.en.md b/README.en.md index ca7e9a00cb9eebd8eb72219a47f57dd87d8a5684..6b839b6b92d685cd71efb16cccc1927b83d2745e 100644 --- a/README.en.md +++ b/README.en.md @@ -10,14 +10,14 @@

中文文档 | English Document

- - # :exclamation: Important Notice: **Note: The master branch changes with the v2.x version, which significantly differs from the v1.x version. Those interested in the v1.x version can move to the v1.x branch address**: https://gitee.com/java-and-net/TopskyHotelManagerSystem/tree/v1.x/ **Effective immediately, version numbers will follow the format x.x.x.x. First digit: program version, second: framework version, third: major updates, fourth: bug fixes. For example, version 2.0 on .NET 8 is 2.8.0.0. On .NET 9, it will be 2.9.0.0, and so on.** +**Effective immediately, this project officially enters the maintenance phase and will no longer incorporate any new features. Simultaneously, we are pleased to announce the commencement of mobile development for the TopSkyHotelManagementSystem. The repository address is: [TopSkyHotelManagementSystem-MAUI](https://gitee.com/java-and-net/topsky-hotel-management-system-maui). This project is being developed using .NET 8's MAUI framework, with initial development focused exclusively on the Android platform. Expansion to other platforms is not currently feasible.** + # :pray: Open Source Projects Referenced: 1. ##### Fody—Packs all dlls into an exe application. [Fody, MIT License](https://github.com/Fody/Fody) @@ -26,7 +26,7 @@ 3. ##### SunnyUI—SunnyUI.Net, based on C# .Net WinForm open-source control library, tool library, extension library, and multi-page development framework. [SunnyUI.Net, GPL3.0 License](https://gitee.com/yhuse/SunnyUI) -4. ##### RestSharp——Simple REST and HTTP API Client for .NET。[RestSharp,Apache-2.0 License](https://github.com/restsharp/RestSharp) +4. ##### **RestSharp——Simple REST and HTTP API Client for .NET。[RestSharp,Apache-2.0 License](https://github.com/restsharp/RestSharp)** 5. ##### AntdUI——基于 Ant Design 设计语言的 Winform 界面库. AntdUI。[AntdUI,Apache-2.0 License](https://gitee.com/antdui/AntdUI) @@ -40,11 +40,15 @@ 4. Regarding the database script issue, please first go to the database script folder, choose either the MySQL version or PostgreSQL version folder to download the Data and Table files. In the database, execute the Table.sql first, then the Data.sql! -5. For MySQL and PostgreSQL databases: +5. This project has implemented multi-database support (mainstream) based on the SQL Sugar framework. Below is the list of currently tested and verified database compatibility tables: - 5.1 If your local database is MySQL, please pull the [MySQL special branch](https://gitee.com/java-and-net/topsky-hotel-manager-system-web-api/tree/MySQL_Version/). - - 5.2 If the local database is PostgreSQL, no changes are needed, just configure the pgsqlString constant database connection string in the Common layer’s HttpHelper. + | Database | Version | Support Create Table(Y/N) | Pass(Y/N) | + | ---------- | ---------------- | -------------------------- | ------------------------------------------------------------ | + | MariaDB | 10.11.10-MariaDB | Y | Y | + | PostgreSQL | 130020 | Y | Y | + | MySQL | 5.7+ | Y | Y | + | SQL Server | 2022 | Y | Y | + | Oracle | Unknown | N | Reference SQLSugar Document([SQLSugar](https://www.donet5.com)) | # :thought_balloon: Development Purpose: @@ -56,7 +60,7 @@ Operating System: Windows 11(x64) Development Tools: Microsoft Visual Studio 2022 (latest version of the system) -Database: PostgreSQL16 (highly recommended!) +Database: MariaDB (highly recommended!) Database Management Tools: DbGate @@ -79,7 +83,6 @@ EOM.Client.TopSkyHotelManagerSystem ├─ LICENSE ├─ README.md ├─ EOM.TSHotelManager.Common -├─ EOM.TSHotelManager.Common.Core ├─ EOM.TSHotelManager.FormUI │ ├─ .gitignore │ ├─ App.config @@ -105,23 +108,19 @@ EOM.Client.TopSkyHotelManagerSystem # :books: Summary of System Function Modules: -| Function Summary | | | | | | | -| ---------------------------------------- | -------------------------------- | -------------------------- | ---------------------------- | ---------------------------------- | ------------------ | ------------------ | -| (Front Desk) Room Management | Reserve Room | Check-in Room | Checkout Room | Switch Room | View Customer Info | Modify Room Status | -| (Front Desk) Customer Management | Display Customer Info | Search Customer Info | Add Customer | | | | -| (Front Desk) Product Consumption | Product List | Search Product Info | Product Consumption | Consumption Info | | | -| (Front Desk) Additional Features | None | | | | | | -| (Back Office) Basic Information | Position Type Maintenance | Ethnicity Type Maintenance | Education Type Maintenance | Department Information Maintenance | | | -| (Back Office) Financial Information | Employee Salary Bills | Internal Financial Bills | Hotel Profit Situation | | | | -| (Back Office) Utilities Management | Utilities Info | | | | | | -| (Back Office) Supervision and Statistics | Supervision Department Situation | | | | | | -| (Back Office) Room Management | Room Status Overview | Add New Room | | | | | -| (Back Office) Customer Management | Customer Information Management | Customer Consumption Bills | | | | | -| Function Summary (Continued) | | | | | | | -| (Back Office) HR Management | Employee Management | Announcement Logs | Upload Announcement Logs | | | | -| (Back Office) Material Management | Product Management | Warehouse Supplies | | | | | -| Employee Operation Logs | | | | | | | -| System Management | Add Administrator | Permission Assignment | Enable/Disable Administrator | | | | +| Function Summary | | | | | | | +| -------------------------------- | --------------------- | -------------------- | ------------------- | ---------------- | ------------------ | ------------------ | +| (Front Desk) Room Management | Reserve Room | Check-in Room | Checkout Room | Switch Room | View Customer Info | Modify Room Status | +| (Front Desk) Customer Management | Display Customer Info | Search Customer Info | Add Customer | | | | +| (Front Desk) Product Consumption | Product List | Search Product Info | Product Consumption | Consumption Info | | | + +# :books: Summary of Multi-Platform Code Repositories: +| Platform | Repository URL | Repository Description | License | Dependency | +|----------|-----------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|-------------|------------| +| PC | https://gitee.com/java-and-net/TopskyHotelManagementSystem | .NET 8 WinForm-based solution (UI layer without business logic) designed for small/medium-sized hotel management systems | [MIT License](https://gitee.com/java-and-net/TopskyHotelManagementSystem/blob/master/LICENSE) | [WebApi](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api) | +| Web | https://gitee.com/java-and-net/topsky-hotel-management-system-vue3 | Vue 3-based frontend designed for small/medium-sized hotel management systems | [MIT License](https://gitee.com/java-and-net/topsky-hotel-management-system-vue3/blob/Main/LICENSE) | [WebApi](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api) | +| Android | https://gitee.com/java-and-net/topsky-hotel-management-system-maui | .NET 8 MAUI-based mobile application project | [MIT License](https://gitee.com/java-and-net/topsky-hotel-management-system-maui/blob/Main/LICENSE) | [WebApi](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api) | +| Backend | https://gitee.com/java-and-net/topsky-hotel-management-system-web-api | .NET 8 backend API project for TS Hotel Management System built with SQLSugar ORM, serving PC/Web/Android clients | [MIT License](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api/blob/master/LICENSE) | | # :family: Project Authors: @@ -136,8 +135,6 @@ EOM.Client.TopSkyHotelManagerSystem # :inbox_tray: Database Setup and Deployment (Local): -**The author and development team strongly recommend using the PostgreSQL database. Install the PostgreSQL database and start the service, establish the database through a visualization management tool, and quickly create data tables and import data by opening the .sql format files within the database script folder. Steps (using PostgreSQL database as an example):** - -**1. Link to the PostgreSQL database through a visualization management tool, then create a new database named ‘tshoteldb’.** +**Omitted. This project does not include backend business logic. For details, please refer to: [Business Logic Project](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api/blob/master/README.en.md)** -**2. Open the db_file.sql in the database script\PostgreSQL version folder through the visualization management tool for data table creation and data import.** +[![java-and-net/TopskyHotelManagementSystem](https://gitee.com/java-and-net/TopskyHotelManagementSystem/widgets/widget_card.svg?colors=4183c4,ffffff,ffffff,e3e9ed,666666,9b9b9b)](https://gitee.com/java-and-net/TopskyHotelManagerSystem) diff --git a/README.md b/README.md index 4f64f6f70859fb4732c68bdba9564a5dd688bd3e..021feb17bf62eb221f3b027ad04d7ee8ca0653d7 100644 --- a/README.md +++ b/README.md @@ -10,15 +10,14 @@

中文文档 | English Document

- - - # :exclamation: 重要说明: **注意:目前master分支随v2.x版本变动而变动,v2.x版本与v1.x版本变动极大,因此想要v1.x版本的可移步至v1.x分支地址** : https://gitee.com/java-and-net/TopskyHotelManagerSystem/tree/v1.x/ **即日起,程序版本号规范将固定为x.x.x.x,第一位为当前程序版本,第二位为当前程序框架版本,第三位为功能大变更版本,第四位为日常修复版本,例如:基于.NET 8框架的2.0版本,对应的版本号是2.8.0.0,往后的.NET 9将会是2.9.0.0,并以此类推** +**即日起,该项目正式进入维护阶段,不再新增任何功能。同时,我们很高兴地宣布,TopSkyHotelManagementSystem的移动端开发工作正式启动,具体仓库地址为:[TopSkyHotelManagementSystem-MAUI](https://gitee.com/java-and-net/topsky-hotel-management-system-maui),该项目基于.NET 8的MAUI进行开发,目前仅考虑安卓端,其他暂不具备条件。** + # :pray: 引用的开源项目: 1. ##### Fody——将所有dll打包成exe应用程序。[Fody,MIT开源协议](https://github.com/Fody/Fody) @@ -27,7 +26,7 @@ 3. ##### SunnyUI——SunnyUI.Net, 基于 C# .Net WinForm 开源控件库、工具类库、扩展类库、多页面开发框架。[SunnyUI.Net,GPL3.0开源协议](https://gitee.com/yhuse/SunnyUI) -4. ##### RestSharp——Simple REST and HTTP API Client for .NET。[RestSharp,Apache-2.0开源协议](https://github.com/restsharp/RestSharp) +4. ##### **RestSharp——Simple REST and HTTP API Client for .NET。[RestSharp,Apache-2.0开源协议](https://github.com/restsharp/RestSharp)** 5. ##### AntdUI——👚 基于 Ant Design 设计语言的 Winform 界面库。[AntdUI,Apache-2.0开源协议](https://gitee.com/antdui/AntdUI) @@ -41,11 +40,15 @@ 4、关于数据库脚本问题,请先移步至数据库脚本文件夹下,选择Mysql版本或PostgreSQL版本任意文件夹下载Data和Table两个文件,再数据库中先执行Table.sql,再执行Data.sql! -5、针对MySQL和PostgreSQL数据库的说明: +5、本项目已基于SQL Sugar框架支持多数据库(主流),以下是目前已通过测试的数据库表格: - 5.1、本地数据库若为MySQL,请拉取[MySQL专用分支](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api/tree/MySQL_Version/)。 - - 5.2、本地数据库若为PostgreSQL,则无需进行任何改动,只需要在Common层对HttpHelper里的pgsqlString常量数据库连接字符串进行配置。 +| 数据库 | 版本 | 支持建库建表(Y/N) | 通过(Y/N) | +| ---------- | ---------------- | ----------------- | ---------------------------------------------------- | +| MariaDB | 10.11.10-MariaDB | Y | Y | +| PostgreSQL | 130020 | Y | Y | +| MySQL | 5.7+ | Y | Y | +| SQL Server | 2022 | Y | Y | +| Oracle | Unknown | N | 请参照SQLSugar文档([果糖网](https://www.donet5.com)) | # :thought_balloon: 开发目的: @@ -57,7 +60,7 @@ 开发工具:Microsoft Visual Studio 2022(系统最新版本) -数据库:PostgreSql16(强烈推荐!) +数据库:MariaDB(强烈推荐!) 数据库管理工具:Dbgate @@ -79,7 +82,6 @@ EOM.Client.TopskyHotelManagementSystem ├─ LICENSE ├─ README.md ├─ EOM.TopskyHotelManagementSystem.Common -├─ EOM.TopskyHotelManagementSystem.Common.Core ├─ EOM.TopskyHotelManagementSystem.FormUI │ ├─ .gitignore │ ├─ App.config @@ -104,24 +106,20 @@ EOM.Client.TopskyHotelManagementSystem # :books: 系统功能模块汇总: -| 功能汇总 | | | | | | | -| -------------- | ------------ | ------------ | ------------- | ------------ | ------------ | ------------ | -| (前台)客房管理 | 预约房间 | 入住房间 | 结算退房 | 转换房间 | 查看用户信息 | 修改房间状态 | -| (前台)用户管理 | 用户信息展示 | 搜索用户信息 | 添加客户 | | | | -| (前台)商品消费 | 商品列表 | 搜索商品信息 | 商品消费 | 消费信息 | | | -| (前台)扩展功能 | 无 | | | | | | -| (后台)基础信息 | 职位类型维护 | 民族类型维护 | 学历类型维护 | 部门信息维护 | | | -| (后台)财务信息 | 员工工资账单 | 内部财务账单 | 酒店盈利情况 | | | | -| (后台)水电管理 | 水电信息 | | | | | | -| (后台)监管统计 | 监管部门情况 | | | | | | -| (后台)客房管理 | 房态图一览 | 新增客房 | | | | | -| (后台)客户管理 | 客户信息管理 | 顾客消费账单 | | | | | -| 功能汇总(续) | | | | | | | -| (后台)人事管理 | 员工管理 | 公告日志 | 上传公告日志 | | | | -| (后台)物资管理 | 商品管理 | 仓库物资 | | | | | -| 员工操作日志 | | | | | | | -| 系统管理 | 添加管理员 | 权限分配 | 启/禁用管理员 | | | | +| 功能汇总 | | | | | | | +| -------------- | ------------ | ------------ | -------- | -------- | ------------ | ------------ | +| (前台)客房管理 | 预约房间 | 入住房间 | 结算退房 | 转换房间 | 查看用户信息 | 修改房间状态 | +| (前台)用户管理 | 用户信息展示 | 搜索用户信息 | 添加客户 | | | | +| (前台)商品消费 | 商品列表 | 搜索商品信息 | 商品消费 | 消费信息 | | | +# :books: 多平台代码仓库汇总: + +| 平台 | 仓库地址 | 仓库简介 | 开源协议 | 依赖项目 | +|-----|--------------------------------------------------------------------|------------------------------------------|-------------|-------------| +| PC端 | https://gitee.com/java-and-net/TopskyHotelManagementSystem | 基于Net8 WinForm平台开发(无业务逻辑),针对中小型酒店设计的管理系统 | [MIT License](https://gitee.com/java-and-net/TopskyHotelManagementSystem/blob/master/LICENSE) | [WebApi](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api)| +| 网页端 | https://gitee.com/java-and-net/topsky-hotel-management-system-vue3 | 基于Vue3开发的针对中小型酒店设计的管理系统 | [MIT License](https://gitee.com/java-and-net/topsky-hotel-management-system-vue3/blob/Main/LICENSE) | [WebApi](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api) | +| 安卓端 | https://gitee.com/java-and-net/topsky-hotel-management-system-maui | 基于Net8 MAUI平台开发的移动端项目 | [MIT License](https://gitee.com/java-and-net/topsky-hotel-management-system-maui/blob/Main/LICENSE) | [WebApi](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api) | +| 服务端 | https://gitee.com/java-and-net/topsky-hotel-management-system-web-api | 基于.Net8搭配SQLSugar框架构建的TS酒店管理系统后端API项目,主要服务于Client、Web、Android端 | [MIT License](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api/blob/master/LICENSE) | # :family: 项目作者: @@ -136,10 +134,6 @@ EOM.Client.TopskyHotelManagementSystem # :inbox_tray: 数据库运行部署(本地): -**作者及开发团队强烈建议使用PostgreSQL数据库,安装PostgreSQL数据库并开启服务,通过可视化管理工具对数据库进行建立,可通过打开执行数据库脚本文件夹内的.sql后缀格式文件进行快速建立数据表和导入数据,执行步骤(以PostgreSQL数据库为例):** - -**1、通过可视化管理工具链接PostgreSQL数据库,随后新建名为‘tshoteldb’数据库。** - -**2、通过可视化管理工具打开:数据库脚本\PostgreSQL版本文件\db_file.sql进行数据表建立和数据导入。** +**略,本项目不包含后台业务逻辑。详情请查看:[业务逻辑项目](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api/blob/master/README.md#%E6%95%B0%E6%8D%AE%E5%BA%93%E8%BF%90%E8%A1%8C%E9%83%A8%E7%BD%B2%E6%9C%AC%E5%9C%B0)** [![java-and-net/TopskyHotelManagementSystem](https://gitee.com/java-and-net/TopskyHotelManagementSystem/widgets/widget_card.svg?colors=4183c4,ffffff,ffffff,e3e9ed,666666,9b9b9b)](https://gitee.com/java-and-net/TopskyHotelManagerSystem) \ No newline at end of file diff --git a/topsky-hotel-management-system-web-api b/topsky-hotel-management-system-web-api index e78c03458636c0c681395e61b8a0ef042c3c0836..0cb2d1a9f09d594f2829f73bd05c92c2c9eff075 160000 --- a/topsky-hotel-management-system-web-api +++ b/topsky-hotel-management-system-web-api @@ -1 +1 @@ -Subproject commit e78c03458636c0c681395e61b8a0ef042c3c0836 +Subproject commit 0cb2d1a9f09d594f2829f73bd05c92c2c9eff075 diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MariaDB\347\211\210\346\234\254/MDB_tshotel_script_data.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MariaDB\347\211\210\346\234\254/MDB_tshotel_script_data.sql" new file mode 100644 index 0000000000000000000000000000000000000000..1c1b51f660c6b7232a45a56097cf059029db2706 --- /dev/null +++ "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MariaDB\347\211\210\346\234\254/MDB_tshotel_script_data.sql" @@ -0,0 +1,4533 @@ +INSERT INTO `administrator` (`id`, `admin_number`, `admin_account`, `admin_password`, `admin_type`, `admin_name`, `is_admin`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '1263785187301658678', 'admin', 'clUKFMeIUWp6YflZweR0Cw==·#c0fbb?;*$>#;^b%$?>#%%#;^b%$?>#%% 

', 'D-001', 0, 'admin', '2022-04-29', NULL, '0001-01-01'); - --- ---------------------------- --- Table structure for user_log --- ---------------------------- -DROP TABLE IF EXISTS "public"."user_log"; -CREATE TABLE "public"."user_log" ( - "id" int4 NOT NULL, - "user_key" varchar(100) COLLATE "pg_catalog"."default", - "user_token" varchar(255) COLLATE "pg_catalog"."default", - "datains_time" timestamp(6) -) -; -COMMENT ON TABLE "public"."user_log" IS '用户登录信息表'; - --- ---------------------------- --- Records of user_log --- ---------------------------- - --- ---------------------------- --- Table structure for userinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."userinfo"; -CREATE TABLE "public"."userinfo" ( - "CustoNo" varchar COLLATE "pg_catalog"."default" NOT NULL, - "CustoName" varchar COLLATE "pg_catalog"."default" NOT NULL, - "CustoSex" int4 NOT NULL, - "CustoTel" varchar COLLATE "pg_catalog"."default" NOT NULL, - "PassportType" int4 NOT NULL, - "CustoID" varchar COLLATE "pg_catalog"."default" NOT NULL, - "CustoAdress" varchar COLLATE "pg_catalog"."default", - "CustoBirth" date NOT NULL, - "CustoType" int4 NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."userinfo"."CustoNo" IS '用户编号'; -COMMENT ON COLUMN "public"."userinfo"."CustoName" IS '用户名称'; -COMMENT ON COLUMN "public"."userinfo"."CustoSex" IS '用户性别'; -COMMENT ON COLUMN "public"."userinfo"."CustoTel" IS '用户电话'; -COMMENT ON COLUMN "public"."userinfo"."PassportType" IS '证照类型'; -COMMENT ON COLUMN "public"."userinfo"."CustoID" IS '证件号码'; -COMMENT ON COLUMN "public"."userinfo"."CustoAdress" IS '居住地址'; -COMMENT ON COLUMN "public"."userinfo"."CustoBirth" IS '出生日期'; -COMMENT ON COLUMN "public"."userinfo"."CustoType" IS '客户类型'; -COMMENT ON COLUMN "public"."userinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."userinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."userinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."userinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."userinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."userinfo" IS '用户信息表'; - --- ---------------------------- --- Records of userinfo --- ---------------------------- -INSERT INTO "public"."userinfo" VALUES ('TS585256153553', '森田結翔', 1, '+86 755-265-8399', 2, '976966744592142540', 'No.43 building, 92 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1991-10-21', 0, 0, 'yuimori00', '2001-09-05', 'ymorit', '2017-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS811038643761', '韩杰宏', 1, '+1 213-444-8145', 0, '160464972549229670', '526 Grape Street Apt 43, Los Angeles, CA 90002, United States', '1992-01-15', 0, 0, 'jiehh5', '2002-04-26', 'hajiehong15', '2005-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS596787251494', '姚榮發', 0, '+44 (161) 807 0258', 1, '203039270910490117', 'No.13 Main building, 24 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-11-15', 0, 0, 'yewingfat', '2009-01-26', 'wfyeow', '2017-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS015253323658', '谷心穎', 1, '+1 718-042-3912', 3, '022088717186769918', '23 Nostrand Ave Apt 11, Brooklyn, NY 11216, United States', '1985-08-20', 0, 0, 'koo9', '2019-10-14', 'koosumwing', '2013-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS426905526052', '彭云熙', 1, '+81 3-2792-5250', 1, '537393932597402120', '46-kai, 3-15-19 Ginza, Chuo-ku, Tokyo, Japan', '1986-07-18', 0, 0, 'peyunxi', '2016-11-27', 'pengyu1212', '2009-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS702776546498', '劉頴璇', 0, '+86 142-6168-4176', 0, '209765272174610823', '中国深圳龙岗区布吉镇西环路684号44栋', '1991-05-30', 0, 0, 'wslau7', '2008-12-14', 'wingsuenla', '2018-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS-20220089', '古河早苗', 0, '', 4, '', '团子商店街', '1980-07-08', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS-20220090', '古河秋生', 1, '', 4, '', '团子商店街', '1980-02-05', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS-20210078', '阿洛', 1, '', 0, '', '广东省茂名市信宜县', '1988-07-20', 3, 0, '', '2021-10-20', 'WK010', '2022-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS267401616162', '吴岚', 1, '+86 166-5702-2951', 3, '730614680470425584', 'No.24 building, 273 Shanhu Rd, Dongguan, China', '1988-12-29', 0, 0, 'lan6', '2010-08-10', 'lanwu', '2006-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS070900382318', '姚明', 0, '+86 20-194-9902', 0, '577863450914082902', '中国广州市越秀区中山二路296号30栋', '1991-03-30', 0, 0, 'yeowming1019', '2001-12-28', 'mingye1', '2004-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS732618060709', 'Katherine Smith', 1, '+81 66-519-7434', 2, '492308242519003040', '日本おおさかし西成区出城一丁目1番19号33階', '1991-03-12', 0, 0, 'ksmith', '2016-04-27', 'smithkath10', '2016-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS350564805154', '郭永權', 0, '+86 193-8111-1879', 4, '431156855617068334', '中国深圳福田区景田东一街219号10栋', '1987-06-26', 0, 0, 'kwokwingkuen1021', '2007-09-27', 'wingkw', '2000-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS791977570647', '福田架純', 0, '+86 181-4110-0426', 0, '499013912291471526', 'Room 42, CR Building, 282 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-06-10', 0, 0, 'kasumifuku', '2018-08-23', 'kasufukuda48', '2000-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS213386138456', '斉藤明菜', 0, '+44 7299 312402', 4, '026825493441475727', 'No.14 Main building, 891 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-02-24', 0, 0, 'as40', '2019-09-30', 'saito2017', '2012-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS348874362328', 'Emma Reyes', 1, '+1 213-604-4828', 1, '498580421107011953', '287 Sky Way Apt 24, Los Angeles, CA 90043, United States', '1989-05-11', 0, 0, 'ereye', '2016-11-15', 'remma', '2015-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS586862078217', 'Benjamin Medina', 1, '+86 28-220-7977', 3, '917833406864635370', '中国成都市成华区双庆路315号19室', '1991-06-08', 0, 0, 'benjaminmedina', '2003-06-07', 'mebenja', '2010-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS198098249721', '湯霆鋒', 1, '+81 11-727-4845', 4, '237084184908952086', 'Rm. 36, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-05-30', 0, 0, 'tongtingfung5', '2018-01-15', 'tingfungtong', '2000-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS801073356899', '刘致远', 0, '+86 755-748-5973', 3, '451712735700182022', '中国深圳罗湖区清水河一路142号23栋', '1997-11-06', 0, 0, 'liu1', '2015-06-16', 'zli', '2001-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS410358513022', 'Leslie Black', 0, '+1 614-478-0048', 2, '719774077695033017', '831 Wicklow Road Suite 9, Columbus, GA 43204, United States', '1991-06-01', 0, 0, 'blesl', '2013-09-22', 'blacklesli1', '2012-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS382146557353', 'Clarence Davis', 0, '+86 755-5881-4902', 1, '418406042100915828', '中国深圳福田区景田东一街10号34栋', '1990-08-23', 0, 0, 'daviscla10', '2014-02-16', 'clardavis', '2005-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS729114864467', 'Joshua Hernandez', 0, '+44 (161) 208 7184', 2, '823847333229076678', 'Flat 14, 521 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-09-06', 0, 0, 'hernandezj', '2021-05-14', 'hernajos', '2003-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS399000956927', 'Randy Spencer', 1, '+86 760-464-0608', 3, '643509211305250389', 'No.25 building, 318 Lefeng 6th Rd, Zhongshan, China', '1992-04-12', 0, 0, 'sran831', '2019-01-02', 'spencer1130', '2019-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS299480184061', '車德華', 1, '+86 760-157-5629', 3, '023110169950729640', 'Room 45, CR Building, 146 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-07-31', 0, 0, 'chtw5', '2002-03-14', 'twc', '2000-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS623951355526', '何致远', 1, '+44 5414 471350', 3, '214168478174743105', 'No.22 Main building, 461 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1990-02-03', 0, 0, 'zhiyuanhe6', '2001-03-24', 'hezhiy', '2014-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS257740627541', 'Charlotte Sullivan', 0, '+44 (116) 514 0070', 1, '289087105319936856', 'No.27 Main building, 658 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-02-07', 0, 0, 'charlotte61', '2001-05-18', 'sullivancha66', '2020-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS521404137184', '竹内美咲', 1, '+44 5875 123541', 4, '722565115806775287', 'No.24 Main building, 290 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-08-15', 0, 0, 'misaki1', '2021-12-09', 'misakitakeuchi4', '2001-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS195514131202', '太田凛', 0, '+44 (116) 477 4928', 4, '638999800552912158', 'Unit 6, Oxford Eco Centre, 553 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1992-09-21', 0, 0, 'rinot2', '2004-03-04', 'rinota', '2021-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS150034729320', 'Tiffany Gonzales', 1, '+1 718-409-7733', 2, '617260751165253886', '455 Flatbush Ave Apt 29, Brooklyn, NY 11225, United States', '1986-10-05', 0, 0, 'gonzales2', '2007-08-15', 'gonzalestiffa', '2004-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS334888848057', '汪晓明', 0, '+86 171-8557-2988', 0, '311648618289305268', '48F, 494 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-02-28', 0, 0, 'xiaomingw', '2015-11-02', 'xiaomingwang', '2008-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS639091325995', '中川光', 0, '+86 174-8790-7873', 2, '763994145787248545', 'Room 27, CR Building, 70 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-05-18', 0, 0, 'nakagawahikar', '2010-02-24', 'hikaru8', '2001-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS597829422113', 'Rosa Hicks', 1, '+1 838-853-3504', 3, '993068281917893235', '312 Broadway Suite 50, Albany, NY 12207, United States', '1988-06-03', 0, 0, 'hicks63', '2005-07-17', 'rosa10', '2003-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS694176429778', '曹朝偉', 0, '+81 80-0411-9796', 2, '303478487543215159', '日本札幌白石区菊水三条五丁目2番14号9階', '1997-05-11', 0, 0, 'cwcho5', '2022-01-12', 'chochi', '2012-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS768890329079', '宣慧嫻', 0, '+81 70-6681-0773', 4, '061259543905519100', '日本おおさかし平野区加美東四丁目9番11号22号室', '1991-03-19', 0, 0, 'waihanhsuan4', '2013-10-21', 'hwh1218', '2017-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS216604156001', '宋詩涵', 1, '+86 153-0408-8370', 3, '452060955977661189', '中国成都市成华区玉双路6号481号36室', '1992-07-17', 0, 0, 'shihanso3', '2011-09-21', 'shihanson5', '2005-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS963197354824', '市川美咲', 0, '+81 11-615-4337', 3, '557861955162741045', '39-kai, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-08-05', 0, 0, 'ichikawam821', '2007-03-07', 'misakiichikawa1987', '2014-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS520159957916', '大野涼太', 1, '+86 169-7295-8221', 2, '848312202355930703', '中国北京市朝阳区三里屯路532号45号楼', '1987-01-09', 0, 0, 'ono1223', '2018-02-16', 'ryotono1', '2003-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS518383668917', '谷安娜', 0, '+86 21-6174-6887', 2, '024123930820471402', '中国上海市浦东新区橄榄路754号7楼', '1993-01-25', 0, 0, 'kooon', '2001-10-20', 'koon', '2011-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS040643678095', 'Anne Bell', 0, '+86 10-7897-4605', 4, '852045692747035773', '中国北京市海淀区清河中街68号869号50号楼', '1994-06-25', 0, 0, 'bella', '2016-07-04', 'annebell', '2008-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS434172036062', 'Harold Stephens', 1, '+81 70-4872-1312', 2, '440666652928425721', 'Rm. 7, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1999-02-04', 0, 0, 'harstep', '2012-07-11', 'stephens60', '2005-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS204975787272', '吴宇宁', 1, '+81 52-821-7446', 2, '937531407738285556', '21F, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-08-20', 0, 0, 'wuy', '2005-04-28', 'wu809', '2011-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS179116962854', '麥青雲', 0, '+86 20-3989-3259', 4, '511776403463790069', 'Room 4, 919 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-04-06', 0, 0, 'chingwanmak9', '2011-04-03', 'chingwan1963', '2021-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS168589854570', '柴田樹', 1, '+86 20-470-7235', 2, '062760012655964210', '中国广州市白云区机场路棠苑街五巷236号18号楼', '1996-08-14', 0, 0, 'shiits', '2020-11-08', 'itsukishibata', '2011-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS205491479117', '钱致远', 0, '+86 755-1620-5744', 2, '502066216949730821', '中国深圳罗湖区田贝一路340号华润大厦14室', '1991-07-23', 0, 0, 'qianzhiyuan', '2020-12-13', 'zhqian907', '2019-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS890216047341', '謝秀文', 0, '+44 7888 802664', 3, '573126497309468063', 'Unit 2, Oxford Eco Centre, 204 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-01-30', 0, 0, 'tse9', '2018-09-07', 'saumants4', '2017-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS562790158552', '鈴木蒼士', 0, '+44 7364 514534', 2, '127527748660346544', 'No.7 Main building, 166 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-11', 0, 0, 'suzuki7', '2006-11-29', 'aoshisuzuki', '2021-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS064310800840', 'Francis Powell', 1, '+81 80-1124-8416', 0, '596811850795407648', '13F, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-03-03', 0, 0, 'francispowell', '2015-08-10', 'frapowe', '2010-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS538113731906', '姜宇宁', 1, '+81 70-6297-2658', 2, '130488298755592137', '35-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1995-12-17', 0, 0, 'yjiang630', '2008-03-06', 'jiangyun', '2006-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS076240347180', 'Carrie Payne', 0, '+81 90-6108-3229', 3, '926959564712766005', '37-kai, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-11-27', 0, 0, 'cap321', '2000-10-16', 'paynec1984', '2014-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS637654339503', '程杰宏', 1, '+81 90-4975-7752', 3, '720302781725394694', '日本なごやし瑞穂区河岸町四丁目20番6号27階', '1991-11-06', 0, 0, 'chengjiehong1025', '2003-12-16', 'chengj', '2018-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS034766436621', '中森詩乃', 1, '+81 11-782-2145', 1, '219712155114897024', '日本札幌白石区菊水三条五丁目4番3号6階', '1993-07-08', 0, 0, 'nakamorishino', '2011-06-05', 'nashino', '2002-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS911014385228', '宣浩然', 0, '+86 135-2002-0840', 3, '726619123520776245', '中国中山乐丰六路949号19栋', '1997-05-17', 0, 0, 'hyh', '2018-11-18', 'hyhsuan3', '2011-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS104482791384', '谷詠詩', 1, '+86 20-631-1902', 0, '183738680875878287', '中国广州市海珠区江南西路713号华润大厦33室', '1985-03-11', 0, 0, 'wingszekoo', '2007-12-15', 'koo6', '2010-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS572994382798', '森田桜', 1, '+1 614-871-2425', 2, '489607435637156148', '28 East Alley Suite 32, Columbus, GA 43201, United States', '1998-06-09', 0, 0, 'sakumorita8', '2020-07-15', 'msaku416', '2016-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS515340058576', 'Frances Peterson', 0, '+1 838-954-9019', 1, '995119807195334660', '485 Central Avenue Suite 29, Albany, NY 12205, United States', '1986-02-06', 0, 0, 'francpe', '2018-06-20', 'peterson1129', '2004-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS921279455132', '戴曉彤', 1, '+86 167-7759-0017', 4, '037392790187627482', 'Room 39, CR Building, 912 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1990-10-15', 0, 0, 'dai8', '2006-03-04', 'dai616', '2004-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS904360457177', '方岚', 1, '+86 177-5858-1077', 2, '456054350220593626', '中国中山乐丰六路807号14号楼', '1990-06-01', 0, 0, 'lan827', '2005-03-12', 'fanla', '2004-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS298298285859', 'Marcus Johnson', 0, '+44 (161) 542 7634', 1, '553251824238043565', 'Unit 7, Oxford Eco Centre, 706 Portland St, Manchester, M1 3LA, United Kingdom', '1994-07-09', 0, 0, 'marcusjohn', '2004-05-15', 'johnsonmarcus', '2013-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS445311353071', '雷慧敏', 1, '+86 143-8201-8875', 0, '615820042799552981', '中国上海市浦东新区橄榄路977号华润大厦32室', '1985-12-15', 0, 0, 'wmloui', '2007-11-17', 'wailoui14', '2004-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS103813792923', '高詩涵', 1, '+81 66-498-8306', 1, '480731819281868386', '日本おおさかし東住吉区東田辺三丁目27番7号13階', '1989-04-28', 0, 0, 'gaoshihan', '2008-11-21', 'shihanga', '2001-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS916764747417', 'Cheryl Evans', 0, '+86 180-3570-7853', 2, '914585671418247503', '中国中山乐丰六路753号7楼', '1994-05-12', 0, 0, 'ce64', '2003-06-10', 'evacheryl10', '2003-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS747661741614', 'Harold Schmidt', 1, '+1 718-921-7172', 0, '777433863958280514', '432 Nostrand Ave Apartment 21, Brooklyn, NY 11216, United States', '1989-03-12', 0, 0, 'sh1104', '2011-04-11', 'haroldschmidt', '2001-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS232434067577', '吉田美咲', 0, '+86 132-5434-4674', 0, '023957756508755875', 'Room 8, No. 531, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-11-30', 0, 0, 'misakiy', '2020-06-01', 'misaki8', '2016-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS595321297808', '後藤凛', 1, '+81 80-6509-0929', 1, '601109962880588872', '日本ならし大和郡山市本庄町一丁目1番13号10階', '1995-08-23', 0, 0, 'gori', '2001-08-31', 'rin64', '2015-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS600205469055', '上田葵', 0, '+81 3-2461-3214', 2, '658884722663748458', 'Rm. 17, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-03-13', 0, 0, 'uea17', '2007-01-08', 'uedaaoi', '2013-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS384440674855', 'Jamie Walker', 0, '+81 74-361-0969', 2, '152143063613807886', '2F, 3-9-1 Gakuenminami, Nara, Japan', '1986-07-10', 0, 0, 'jamiewalk9', '2011-07-14', 'jamiwalker', '2001-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS059733215470', '罗震南', 1, '+81 70-7104-6991', 1, '577508698421944837', '日本なごやし熱田区千年二丁目5番11号4号室', '1998-10-29', 0, 0, 'zhennanluo', '2009-05-14', 'luo1127', '2013-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS276056206010', '杉山紗良', 0, '+81 3-0575-3838', 2, '302751997046032508', '12-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-10-16', 0, 0, 'sasugiyama1217', '2013-11-20', 'sugiyama1', '2008-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS505738486294', '萬詠詩', 0, '+86 133-3085-4867', 0, '229386360939394764', 'Room 10, CR Building, 46 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-06-01', 0, 0, 'wsmeng1968', '2015-03-11', 'wsmeng', '2013-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS750509021701', '黎安琪', 1, '+81 3-5596-7872', 2, '858119541039199175', '日本東京渋谷区代々木二丁目3番20号32階', '1992-12-10', 0, 0, 'anqi1216', '2014-06-19', 'lianqi', '2008-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS788544112881', 'Miguel Hernandez', 1, '+86 10-554-7717', 0, '447353024327289852', '中国北京市海淀区清河中街68号55号23室', '1988-06-01', 0, 0, 'mhernandez', '2005-08-15', 'hmig105', '2011-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS279740689516', '林榮發', 0, '+86 760-4650-6404', 4, '908195472283974504', 'No.16 building, 852 Lefeng 6th Rd, Zhongshan, China', '1986-08-11', 0, 0, 'wingfat7', '2021-01-21', 'wflam', '2009-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS130590264918', '杉山光', 1, '+86 20-8179-9515', 0, '533037636167932665', '中国广州市白云区小坪东路202号7楼', '1992-12-19', 0, 0, 'sugiyamahikaru', '2000-05-23', 'hsugiyama', '2009-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS662070015429', 'Marvin Stewart', 1, '+86 10-1276-0893', 2, '692366137563635465', 'Room 50, 689 Yueliu Rd, Fangshan District, Beijing, China', '1993-03-16', 0, 0, 'stewm10', '2019-10-16', 'stewartma', '2015-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS404764704984', 'Martha King', 1, '+81 80-2802-7776', 1, '617538582267310658', '日本ならし西大寺赤田町一丁目7番3号18階', '1986-12-24', 0, 0, 'kingmartha3', '2005-02-10', 'king802', '2000-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS611433463877', '上野明菜', 0, '+86 145-5557-0420', 2, '404595761740135816', '中国中山天河区大信商圈大信南路682号5楼', '1985-07-02', 0, 0, 'uenoa', '2017-06-21', 'ueakina', '2002-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS316998304522', 'Jacob Hill', 1, '+86 196-3134-7495', 1, '199077549997049650', 'Room 15, 100 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-02-02', 0, 0, 'jhil324', '2008-08-11', 'jhill', '2018-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS435849444973', 'Tracy Stephens', 1, '+44 (1865) 95 3052', 2, '328669405602482900', 'Unit 12, Oxford Eco Centre, 562 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-08-28', 0, 0, 'stetracy1123', '2009-06-05', 'stephenstracy8', '2019-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS798408476526', '山崎蓮', 0, '+44 5066 777978', 2, '739102982421880463', 'Block 20, 641 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-02-10', 0, 0, 'yre', '2002-05-04', 'renyamaz3', '2000-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS086926116276', 'Carl Nguyen', 0, '+81 70-0072-8439', 4, '818438384792469994', '日本おおさかし東住吉区東田辺三丁目27番7号35号室', '1986-01-15', 0, 0, 'carlng', '2008-08-12', 'ngucarl', '2015-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS946057137788', '酒井一輝', 0, '+86 10-903-5091', 0, '089598801185999381', 'Room 39, 371 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-11-04', 0, 0, 'ikkisa1', '2000-05-27', 'ikki52', '2005-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS257149254963', '高木美月', 0, '+81 90-7094-3037', 1, '882744916289491246', '日本東京千代田区丸の内一丁目6番19号18階', '1989-06-30', 0, 0, 'mtaka', '2008-09-03', 'mitst', '2018-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS482197799731', '容慧珊', 1, '+81 74-447-9090', 1, '179039572397258985', '日本ならし西大寺赤田町一丁目7番10号42階', '1995-11-12', 0, 0, 'waisanyung2011', '2017-12-15', 'waiyung10', '2008-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS763905825346', '菅原瑛太', 1, '+81 80-4302-6901', 2, '566621964623274283', '37F, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-01-19', 0, 0, 'eitasugawara', '2011-08-17', 'eitasug10', '2014-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS567605229847', '郭詠詩', 1, '+44 5751 044242', 2, '061823422468811434', 'No.15 Main building, 86 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-01-05', 0, 0, 'wskw6', '2008-10-01', 'wskw70', '2012-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS855576315904', '小野結翔', 0, '+1 312-149-4810', 0, '980253162213439686', '246 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1995-05-26', 0, 0, 'onoy2', '2016-03-27', 'oyuito', '2000-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS097040704068', '黄璐', 1, '+81 3-0866-2570', 4, '289112339328461192', '日本東京千代田区丸の内一丁目6番17号45号室', '1993-05-08', 0, 0, 'huanglu', '2001-03-27', 'huanglu407', '2004-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS568028039881', 'Douglas Roberts', 0, '+86 158-2113-1464', 4, '245394241325178265', 'Room 46, 8 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-06-25', 0, 0, 'dour617', '2001-06-25', 'roberts731', '2018-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS399448768543', '戴心穎', 0, '+86 186-4698-6509', 2, '346321645071453323', 'No.9 building, 327 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-04-27', 0, 0, 'swdai1', '2019-08-10', 'swdai', '2020-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS321708736698', '村田光', 1, '+44 7869 689677', 3, '079467946578626231', 'No.33 Main building, 544 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-09-25', 0, 0, 'hikarmurata2', '2020-10-24', 'muratahik', '2005-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS737472918635', '有村葉月', 1, '+81 66-400-1055', 4, '757138908508356555', '38-kai, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-04', 0, 0, 'arimura3', '2015-10-16', 'hazuki9', '2004-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS410955089884', 'Kathleen Smith', 1, '+81 52-892-4957', 3, '067998454837901849', '日本なごやし守山区瀬古東二丁目171番16号8階', '1985-06-18', 0, 0, 'smk6', '2018-01-20', 'ksm', '2005-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS471764007107', '萬曉彤', 1, '+86 769-582-8896', 0, '028783796087282874', '中国东莞环区南街二巷208号11号楼', '1990-06-05', 0, 0, 'hiutung608', '2021-12-08', 'mehiutung', '2010-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS836122626542', 'Nicole Campbell', 1, '+86 138-3705-5294', 2, '689928214140692964', '中国上海市闵行区宾川路551号华润大厦9室', '1997-05-21', 0, 0, 'campbellnicole', '2006-11-28', 'campbellnic', '2004-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS538349111937', 'Kelly Reed', 1, '+86 168-4485-6316', 3, '694374091726463126', '中国深圳罗湖区蔡屋围深南东路901号32栋', '1992-11-23', 0, 0, 'kereed', '2002-04-17', 'rekelly', '2016-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS381402104101', '盧家文', 1, '+86 164-2294-6557', 2, '601805256473648563', '中国深圳福田区深南大道21号2栋', '1988-08-15', 0, 0, 'kaman8', '2010-01-08', 'lkm109', '2016-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS441628336906', '上野愛梨', 1, '+1 212-418-5228', 3, '255689154576449633', '131 West Houston Street Apartment 45, New York, NY 10014, United States', '1997-02-20', 0, 0, 'ueairi', '2001-08-20', 'uenoairi', '2005-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS809772145131', '向岚', 0, '+86 10-963-1606', 4, '662771471391297154', 'No.30 building, 715 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-07-07', 0, 0, 'xiangl', '2009-12-30', 'lanxiang', '2003-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS056455239845', '宣朝偉', 0, '+44 (20) 7838 3727', 3, '576785014436104043', 'Block 19, 531 Maddox Street, London, W1S 1PU, United Kingdom', '1988-11-14', 0, 0, 'cwhs1985', '2000-11-15', 'chiuwaihsuan623', '2022-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS283282239438', '太田一輝', 0, '+86 164-5703-0973', 3, '030352037206645326', 'No.12 building, 229 Lefeng 6th Rd, Zhongshan, China', '1989-07-21', 0, 0, 'ota70', '2012-01-02', 'ikkio', '2006-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS005824713459', '翁學友', 0, '+81 80-6108-3874', 2, '860751817588120696', 'Rm. 38, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-10-31', 0, 0, 'yung3', '2020-08-02', 'hokyauyun', '2004-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS840728115615', '平野結翔', 1, '+1 212-269-0832', 2, '029568844608113885', '16 Fifth Avenue Apt 7, New York, NY 10017, United States', '1994-09-30', 0, 0, 'yuitohirano', '2001-04-28', 'hyuit4', '2015-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS980898077130', '伊藤葉月', 0, '+1 212-735-0381', 3, '138173182696870878', '301 Fifth Avenue Apartment 19, New York, NY 10017, United States', '1997-05-12', 0, 0, 'ithazu58', '2000-07-14', 'ith7', '2014-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS007986140486', '菅原明菜', 0, '+81 3-0839-1063', 2, '980960110305278913', '日本東京品川区東五反田五丁目2番19号50号室', '1998-02-22', 0, 0, 'sugawara1230', '2017-09-06', 'akinasu7', '2014-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS271732202710', 'Ray Gordon', 0, '+1 213-439-7641', 4, '839459117042703008', '370 Alameda Street Apartment 22, Los Angeles, CA 90002, United States', '1991-06-18', 0, 0, 'rgo19', '2010-05-10', 'ray714', '2000-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS592057545233', '容安娜', 1, '+1 213-885-6195', 3, '996556178964206853', '998 Grape Street Suite 19, Los Angeles, CA 90002, United States', '1990-04-20', 0, 0, 'yonna10', '2009-08-13', 'onyung909', '2015-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS034951144003', '宣明詩', 0, '+1 330-248-3753', 3, '114383963522194494', '135 Collier Road Apartment 3, Akron, OH 44320, United States', '1992-04-07', 0, 0, 'hsuanms10', '2014-05-24', 'hmingsze97', '2015-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS156174610296', 'Bruce Hernandez', 0, '+81 11-180-5400', 1, '224441400451981683', '27-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-08-08', 0, 0, 'hernandez7', '2016-08-02', 'bruceh', '2007-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS839633507172', '向岚', 1, '+81 90-5341-4458', 2, '306347477523797323', '日本なごやし熱田区千年二丁目5番12号5階', '1991-09-27', 0, 0, 'lanxiang', '2013-05-29', 'xianglan1988', '2008-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS648376490689', '方詩涵', 1, '+44 5864 525471', 1, '503061907422241567', 'Unit 30, Oxford Eco Centre, 374 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-08-31', 0, 0, 'fang117', '2012-05-06', 'fang915', '2010-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS742398020641', '藤田七海', 0, '+86 199-0193-6016', 1, '839029236144646680', 'No.29 building, 739 028 County Rd, Yanqing District, Beijing, China', '1992-11-01', 0, 0, 'nanami42', '2007-05-01', 'nanafujit1953', '2013-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS678547249661', '任永權', 0, '+86 20-5323-9910', 1, '302837481024869903', 'Room 9, 262 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-10-20', 0, 0, 'yam10', '2015-07-03', 'yam83', '2008-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS717957333501', 'Walter Gutierrez', 1, '+1 614-689-0399', 3, '904564829792508109', '423 East Alley Apartment 20, Columbus, GA 43201, United States', '1993-05-05', 0, 0, 'gutierrezwalter87', '2015-04-09', 'walterg', '2016-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS244100526864', 'Joan Alexander', 0, '+81 74-103-2367', 0, '380824290774873052', '日本ならし学園南三丁目9番13号21号室', '1994-06-22', 0, 0, 'alexanderjoan1993', '2006-01-27', 'joanalexander', '2016-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS468263806389', '蔡杰宏', 0, '+44 (116) 305 9340', 3, '039895123969450711', 'Unit 4, Oxford Eco Centre, 321 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-11-03', 0, 0, 'caijiehong1002', '2013-07-02', 'jiehong1955', '2002-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS837641054892', '白發', 1, '+86 20-310-1952', 3, '899961704304706875', '中国广州市白云区机场路棠苑街五巷306号23楼', '1996-09-02', 0, 0, 'fatpa', '2010-08-03', 'pakfa5', '2014-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS147608127721', '劉詠詩', 1, '+86 166-3181-3522', 2, '773811536918299578', '中国深圳福田区景田东一街223号6室', '1986-09-21', 0, 0, 'lwin', '2011-05-22', 'lauws2001', '2001-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS891833788814', '許志明', 0, '+81 80-1787-1660', 1, '572417863086583692', '45-kai, 2-5-19 Chitose, Atsuta Ward, Nagoya, Japan', '1987-05-31', 0, 0, 'huicm1101', '2003-12-09', 'chhui03', '2018-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS071013740463', '高田明菜', 1, '+86 158-5467-3681', 3, '064474965941788962', '中国广州市天河区天河路922号3楼', '1996-04-18', 0, 0, 'takadaakina', '2000-09-01', 'atakada803', '2017-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS893392793966', '野村大地', 1, '+44 7338 003086', 0, '040561157856886786', 'Flat 5, 725 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-06-12', 0, 0, 'daichi60', '2020-07-28', 'nomurad', '2017-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS975249379792', '原田彩乃', 1, '+1 614-716-4584', 0, '237445031717012297', '722 Diplomacy Drive Suite 21, Columbus, GA 43228, United States', '1985-03-06', 0, 0, 'ayanharada914', '2004-11-12', 'ayanharada8', '2001-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS243331965553', '杨云熙', 0, '+86 186-7759-1062', 2, '966895980460891637', 'Room 49, CR Building, 127 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-09-11', 0, 0, 'yayunxi', '2011-05-15', 'yanyunx5', '2001-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS714562165240', 'Lawrence Hernandez', 0, '+81 66-290-6052', 1, '794322631975259984', '日本おおさかし東住吉区東田辺三丁目27番12号49階', '1985-04-19', 0, 0, 'lawrence20', '2009-02-12', 'lawrencehern', '2013-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS121379183683', '董宇宁', 1, '+86 155-6492-4619', 1, '089983226116219517', '中国上海市徐汇区虹桥路219号31号楼', '1985-04-03', 0, 0, 'yuning321', '2009-05-28', 'yuning8', '2011-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS267609422445', '石田陽菜', 1, '+86 10-358-8100', 0, '532837579302887068', '中国北京市延庆区028县道719号42号楼', '1997-09-21', 0, 0, 'ihina1', '2021-02-16', 'hinishida00', '2015-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS305204879048', '洪慧儀', 0, '+1 213-703-6727', 2, '005456132717552565', '378 Wall Street Apt 27, Los Angeles, CA 90003, United States', '1987-03-30', 0, 0, 'waiyeh', '2019-02-14', 'hung1', '2004-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS588749037071', '小林蓮', 0, '+44 5818 513788', 4, '719031544806711995', 'No.1 Main building, 396 Hanover St, Liverpool, L1 4AF, United Kingdom', '1985-12-10', 0, 0, 'kobayre', '2008-07-15', 'kobayren', '2020-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS331913576490', '林致远', 0, '+86 141-7310-3096', 3, '771153999709845495', '中国上海市闵行区宾川路152号29室', '1986-06-29', 0, 0, 'lizhiyuan', '2013-06-13', 'zhiyuanlin', '2011-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS434774771788', '史晓明', 0, '+81 70-2475-4667', 0, '909305931096345904', '36-kai, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-05-05', 0, 0, 'shi107', '2004-04-17', 'sxia10', '2010-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS261139882662', '吉田結翔', 0, '+86 28-741-2227', 4, '124224909768350570', 'Room 29, 869 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1989-06-03', 0, 0, 'yuitoyoshida', '2005-01-24', 'yoshiday', '2004-02-29'); -INSERT INTO "public"."userinfo" VALUES ('TS150527825047', '三浦桜', 1, '+81 74-063-8709', 2, '103845031302111964', '23-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1986-11-02', 0, 0, 'miurasakura', '2001-01-09', 'sakuramiu', '2005-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS485142110230', '高橋蒼士', 1, '+1 718-042-5943', 0, '598244011650256756', '972 Columbia St Apt 20, Brooklyn, NY 11231, United States', '1990-10-24', 0, 0, 'aostakahashi40', '2019-01-04', 'aoshi1212', '2010-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS388152841035', '蒋致远', 1, '+81 80-9705-7050', 3, '286587974886243202', '48-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1997-06-12', 0, 0, 'zhiyuan1949', '2021-03-01', 'zhiyj6', '2021-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS202771476313', '渡部大和', 0, '+86 187-8848-8011', 0, '636911685705616000', '中国成都市锦江区红星路三段472号37栋', '1993-04-02', 0, 0, 'watanabeyamato', '2012-02-17', 'yamato53', '2018-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS312265616100', '何秀英', 1, '+44 (151) 771 0596', 2, '048393084401420306', 'Block 19, 954 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-09-15', 0, 0, 'hxiuy7', '2009-07-08', 'hexiuy1120', '2007-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS446433754194', '胡裕玲', 1, '+44 (151) 220 7454', 4, '448230399478067929', 'Unit 28, Oxford Eco Centre, 780 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1989-01-10', 0, 0, 'yuling65', '2008-02-23', 'ylwu13', '2001-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS105077838764', '黎岚', 0, '+81 66-814-8658', 3, '062070988704908352', '日本おおさかし西成区出城一丁目1番3号3階', '1988-09-04', 0, 0, 'lanli', '2021-03-18', 'll46', '2003-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS315125766789', '小川架純', 0, '+44 5168 613845', 1, '935003797601231803', 'Block 34, 90 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-10-12', 0, 0, 'ogakasumi', '2006-10-02', 'kao', '2021-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS732436183687', 'Anthony Freeman', 1, '+86 769-199-9888', 3, '448121524462686999', 'No.17 building, 447 Shanhu Rd, Dongguan, China', '1990-11-01', 0, 0, 'anthf', '2002-04-11', 'anthonyfreeman', '2004-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS459087841982', 'Aaron Medina', 0, '+1 213-065-9735', 4, '202740750726947617', '907 Grape Street Suite 32, Los Angeles, CA 90002, United States', '1996-11-28', 0, 0, 'aamedina', '2018-02-17', 'aaronmedina', '2003-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS609994130228', '中野七海', 0, '+1 614-202-2115', 1, '723239122878014472', '46 Wicklow Road Apartment 17, Columbus, GA 43204, United States', '1995-09-24', 0, 0, 'nakann', '2019-03-01', 'nakano1005', '2009-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS531951089060', 'Bradley Wilson', 0, '+81 52-037-6073', 4, '437878155147609182', '35F, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-02-27', 0, 0, 'bwilson', '2013-07-20', 'wilsbr', '2004-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS560906788338', '秦云熙', 0, '+44 7090 553452', 1, '349180455194591807', 'Unit 40, Oxford Eco Centre, 511 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1988-12-19', 0, 0, 'qinyu', '2004-03-27', 'qinyunxi', '2005-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS727595944491', '劉發', 0, '+81 90-8971-0746', 3, '937417599940269034', 'Rm. 14, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1995-03-17', 0, 0, 'lfat', '2001-03-21', 'fatlau', '2008-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS654930897824', '阎致远', 0, '+81 52-216-3821', 0, '516598107410408864', '16-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-10-22', 0, 0, 'zhiyuanyan10', '2001-08-13', 'zya', '2007-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS129687338880', '翁安娜', 0, '+86 10-1688-7364', 1, '413131846779106565', 'Room 42, 345 028 County Rd, Yanqing District, Beijing, China', '1987-05-11', 0, 0, 'yon', '2015-11-28', 'yungon70', '2020-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS710612084476', '河野凛', 1, '+44 5328 108044', 1, '654360951131520394', 'Block 34, 783 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-09-30', 0, 0, 'rko131', '2012-10-29', 'konorin', '2016-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS569908904951', 'Josephine Reyes', 0, '+44 (116) 712 0430', 1, '303700192909930836', 'Block 35, 756 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1989-07-07', 0, 0, 'josephinereyes', '2003-11-13', 'jor', '2000-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS771412126800', '中野美羽', 1, '+81 66-703-9253', 2, '792544728463575052', '15-kai, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-02-02', 0, 0, 'miunaka513', '2012-12-29', 'miunakano902', '2013-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS987449161250', '小林蓮', 1, '+86 28-268-3420', 3, '613428901782745111', '29F, No.310, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-07-20', 0, 0, 'kobayashi10', '2012-10-18', 'renkobayashi', '2013-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS384186731329', '内田彩乃', 0, '+1 330-228-3308', 1, '800133975363055867', '548 Collier Road 3rd Floor, Akron, OH 44320, United States', '1990-02-17', 0, 0, 'uchiaya', '2012-08-20', 'uchaya', '2022-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS367223437985', 'Shawn Green', 0, '+44 7728 316964', 3, '815150078474353359', 'Flat 1, 622 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-05', 0, 0, 'shag', '2019-08-04', 'green5', '2020-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS153566546881', '朱俊宇', 1, '+86 769-3782-8585', 1, '069723381910281555', 'No.11 building, 925 Kengmei 15th Alley, Dongguan, China', '1994-07-05', 0, 0, 'cychu623', '2020-06-14', 'cychu', '2011-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS355586655735', '武睿', 1, '+44 (161) 816 6467', 4, '237684090237446506', 'No.3 Main building, 525 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-05-30', 0, 0, 'wrui', '2015-06-13', 'rui52', '2003-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS012819872170', 'Esther Wallace', 1, '+86 196-9808-5883', 2, '374887850796865931', '中国深圳罗湖区清水河一路995号华润大厦43室', '1986-07-12', 0, 0, 'esther319', '2020-08-10', 'esther81', '2009-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS575175617654', 'Kimberly Stewart', 0, '+86 21-230-6972', 2, '554784437767939602', '中国上海市闵行区宾川路987号1号楼', '1992-03-28', 0, 0, 'stewartkim1990', '2021-01-19', 'stewart63', '2015-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS004121649776', '杜云熙', 0, '+81 11-979-1749', 1, '558743976744925921', '4F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-10-05', 0, 0, 'yunxi428', '2013-08-17', 'duyunxi10', '2004-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS765698227195', '李永權', 0, '+44 (151) 640 6614', 0, '043143309493104620', 'Block 30, 719 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-12-29', 0, 0, 'lewk1118', '2000-03-01', 'leewk', '2019-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS417143264539', '蘇明', 1, '+81 70-8149-0003', 3, '711364597742916524', '日本おおさかし東住吉区東田辺三丁目27番1号1階', '1991-02-12', 0, 0, 'ming3', '2004-04-22', 'ming62', '2005-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS436764845322', '藤詠詩', 0, '+81 80-7650-2693', 3, '461382911606802777', '日本おおさかし近江堂一丁目7番18号13階', '1997-07-31', 0, 0, 'tangws', '2000-11-29', 'wingszetang', '2001-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS607502496825', '段子韬', 1, '+86 135-3628-7812', 2, '433127110518091452', 'No.36 building, 603 Huanqu South Street 2nd Alley, Dongguan, China', '1996-01-24', 0, 0, 'duanzitao', '2009-08-05', 'dz78', '2021-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS467575376437', '向安琪', 0, '+81 52-656-0144', 2, '891975414539165647', '17-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-05-22', 0, 0, 'xanqi1974', '2001-10-24', 'ax10', '2001-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS943026708047', 'Helen Bennett', 0, '+86 28-601-3800', 4, '110684954768188778', '44F, No. 54, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-08-18', 0, 0, 'hb1', '2002-12-21', 'bennett5', '2004-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS359385279916', '周秀英', 1, '+86 158-2726-6530', 1, '238347986982115687', '中国北京市海淀区清河中街68号959号24楼', '1994-12-14', 0, 0, 'xzhou', '2010-11-06', 'xzho', '2021-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS709579032830', 'Nathan Burns', 1, '+81 70-2574-8801', 2, '081122551947413716', '日本東京港区東新橋一丁目5番15号37階', '1987-01-03', 0, 0, 'burnsnathan', '2011-11-27', 'burn', '2019-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS659763854358', '黎岚', 1, '+1 718-654-1972', 1, '084710430971889355', '377 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1989-09-24', 0, 0, 'lanli', '2021-01-24', 'lanli4', '2012-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS724294731244', '石田架純', 0, '+86 160-4230-0059', 1, '421036624653139410', '中国上海市徐汇区虹桥路454号30号楼', '1988-01-17', 0, 0, 'kasumi1', '2014-10-08', 'kasumi8', '2005-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS057101473663', '中村凛', 0, '+81 3-6346-1871', 1, '531309722933586640', '日本東京渋谷区代々木二丁目3番9号17階', '1988-10-22', 0, 0, 'nakamurarin3', '2018-03-11', 'nakamurarin', '2001-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS896294358042', '王岚', 1, '+81 80-9875-6870', 2, '417144636190044565', '32F, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1993-11-15', 0, 0, 'lw44', '2008-05-14', 'wla', '2007-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS418460840660', '高橋聖子', 1, '+1 838-167-6316', 1, '955811598239507891', '211 State Street Suite 10, Albany, NY 12203, United States', '1986-09-29', 0, 0, 'takahashise', '2002-12-15', 'seikotakahashi8', '2018-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS480050995638', '井上舞', 1, '+44 5507 270444', 1, '294232680958979600', 'No.11 Main building, 636 Regent Street, London, W1B 2LX, United Kingdom', '1993-02-24', 0, 0, 'mainoue', '2007-09-28', 'inouemai9', '2014-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS959795498462', '贺杰宏', 1, '+81 90-4885-1457', 0, '133061732219037791', '日本札幌白石区菊水三条五丁目4番12号38号室', '1996-07-04', 0, 0, 'jiehohe1943', '2016-06-28', 'he2', '2010-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS461141410626', 'Jerry Johnson', 0, '+86 148-2562-6468', 3, '725921946763166966', 'Room 30, 399 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-03-05', 0, 0, 'jerrjohns', '2014-09-29', 'johnsonj02', '2014-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS532459056624', '中山大輔', 1, '+1 838-452-7925', 3, '583892282810330950', '673 State Street Apt 21, Albany, NY 12203, United States', '1986-02-21', 0, 0, 'daisuke6', '2012-07-02', 'nakayamadaisuke', '2012-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS336370533668', '范嘉伦', 1, '+86 156-9187-4325', 2, '417665917235233768', '中国上海市黄浦区淮海中路248号32室', '1985-12-30', 0, 0, 'fan9', '2009-11-07', 'jialunfa', '2021-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS206599849240', '邹震南', 0, '+44 7084 782492', 2, '698148558173563458', 'No.28 Main building, 601 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-06-03', 0, 0, 'zhennanzou', '2010-12-20', 'zozhennan', '2020-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS018055062594', '斉藤陸', 0, '+44 (116) 263 2288', 1, '627321863476237715', 'Flat 17, 255 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-07-17', 0, 0, 'saito13', '2013-03-06', 'sariku', '2002-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS661948771574', '高睿', 1, '+86 151-2512-0625', 1, '717595999078660510', 'No.24 building, 165 Sanlitun Road, Chaoyang District, Beijing, China', '1993-10-08', 0, 0, 'ruga', '2001-08-05', 'gaoru', '2007-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS812607155342', 'Anna Simpson', 0, '+86 755-668-8090', 2, '965084741179106045', '中国深圳福田区深南大道770号20栋', '1998-11-10', 0, 0, 'annas1026', '2012-03-31', 'annasimpson', '2016-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS068690935951', '孙嘉伦', 0, '+44 (20) 7250 6157', 1, '719486338595498866', 'Flat 35, 702 Hanover Street, London, W1S 1YD, United Kingdom', '1996-09-07', 0, 0, 'sunjial6', '2003-08-19', 'jiasu', '2015-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS169020077118', 'Ethel Roberts', 0, '+81 90-6131-6765', 3, '033981726181719505', '日本東京港区東新橋一丁目5番9号29階', '1993-12-13', 0, 0, 'er4', '2010-01-04', 'roberethel', '2003-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS841111124685', '唐杰宏', 0, '+81 11-069-7496', 0, '012135791506782007', 'Rm. 37, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-03-03', 0, 0, 'jit', '2019-09-15', 'jiehtang53', '2004-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS908094315250', '松本聖子', 0, '+86 760-1237-3679', 2, '449434323172068740', '中国中山乐丰六路671号26室', '1989-09-19', 0, 0, 'matsumoto69', '2012-02-01', 'seiko1966', '2021-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS784798121325', '高安琪', 1, '+86 175-0247-2534', 2, '509791631761296327', 'Room 47, CR Building, 433 East Wangfujing Street, Dongcheng District , Beijing, China', '1994-08-07', 0, 0, 'anqiga229', '2017-09-14', 'aga', '2012-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS708168128425', '梁麗欣', 0, '+81 66-582-4552', 1, '871784338364380957', 'Rm. 5, 1-7-17 Omido, Higashiosaka, Osaka, Japan', '1988-09-26', 0, 0, 'lyl', '2021-04-09', 'lly', '2004-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS696886144338', '蔡璐', 1, '+44 (121) 474 7034', 4, '378501295654499180', 'Flat 16, 785 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-10-05', 0, 0, 'cai10', '2001-06-07', 'lu93', '2011-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS400747713421', '森百恵', 0, '+86 194-0253-1487', 1, '453152651543429899', '中国中山乐丰六路569号17楼', '1986-04-10', 0, 0, 'momoemori1977', '2000-10-26', 'momoe1', '2011-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS015670696153', '溫浩然', 1, '+86 198-6451-3723', 3, '795578908287932400', 'No.21 building, 454 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-06-07', 0, 0, 'wanhy', '2019-08-16', 'hyw914', '2008-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS866965894308', '太田健太', 1, '+86 150-9520-8310', 2, '666403676116669216', '中国深圳罗湖区蔡屋围深南东路597号9楼', '1993-07-18', 0, 0, 'kentaota', '2001-10-31', 'ota3', '2009-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS259481408650', '中島桜', 1, '+1 213-588-8537', 3, '298970849061029596', '680 Grape Street Apt 13, Los Angeles, CA 90002, United States', '1995-12-20', 0, 0, 'nakajimasakura', '2005-05-12', 'nsakura206', '2016-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS144381943803', '伊藤玲奈', 1, '+86 769-3374-0873', 2, '154716365920670098', '14F, 462 Shanhu Rd, Dongguan, China', '1988-08-20', 0, 0, 'renai825', '2011-07-02', 'itorena', '2013-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS734925962911', '岩崎悠人', 1, '+81 74-186-1627', 1, '793441791344518862', '日本ならし学園南三丁目9番4号14号室', '1998-08-06', 0, 0, 'iwasayuto49', '2008-12-07', 'yutoi', '2005-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS465444710970', 'Nicholas Adams', 0, '+86 28-818-1166', 2, '133766054532178238', '中国成都市成华区双庆路577号22号楼', '1985-06-08', 0, 0, 'nicholasadams', '2015-02-23', 'anicho7', '2008-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS372672530350', '余岚', 1, '+86 145-2751-5045', 3, '306465843807943025', 'Room 49, CR Building, 369 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-04-27', 0, 0, 'lan5', '2005-10-25', 'yulan', '2014-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS496378219946', '伍明詩', 1, '+81 90-5816-1433', 2, '723230048230021656', '46F, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-08-27', 0, 0, 'ngmingsze', '2010-04-14', 'ming3', '2020-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS781163419726', '丸山樹', 1, '+44 5468 348966', 3, '706977969256451973', 'Block 4, 800 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1995-03-30', 0, 0, 'itsukim', '2018-09-16', 'itsukimaruyama6', '2012-02-29'); -INSERT INTO "public"."userinfo" VALUES ('TS428795115006', 'Curtis Hayes', 1, '+81 3-4865-6884', 4, '121988353048917110', 'Rm. 32, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-11-16', 0, 0, 'curtishayes707', '2018-08-08', 'hayescurtis', '2006-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS285528047094', '野口絢斗', 0, '+44 5403 472788', 2, '886180673341159214', 'Block 27, 238 Maddox Street, London, W1S 1PU, United Kingdom', '1996-06-03', 0, 0, 'ayato10', '2000-04-29', 'noayato910', '2000-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS673138299276', '侯嘉伦', 1, '+44 7099 033945', 2, '352799268289950643', 'Block 32, 322 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-03-07', 0, 0, 'jialunhou721', '2001-03-28', 'houjialun', '2010-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS845366163067', '胡嘉欣', 0, '+1 330-477-0760', 3, '163517111564686533', '830 Collier Road Apartment 45, Akron, OH 44320, United States', '1988-06-05', 0, 0, 'karyanwu6', '2010-05-27', 'wukaryan', '2004-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS704226303246', '田中樹', 0, '+81 11-222-7191', 1, '568133907221076175', '23F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-01-17', 0, 0, 'tanitsuki1', '2000-02-02', 'tit', '2008-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS897135198516', '中島愛梨', 1, '+81 11-291-7527', 2, '140970846722696097', '日本札幌豊平区豊平三条十三丁目3番13号37階', '1998-07-07', 0, 0, 'airnakajima44', '2003-10-21', 'nakajimaairi', '2001-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS775239959324', '元天榮', 1, '+86 10-7331-0908', 3, '947039977929531448', 'Room 37, 972 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-10-08', 0, 0, 'yutinw', '2022-02-09', 'tiy', '2011-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS730237627061', '斉藤樹', 1, '+86 10-8480-4758', 2, '321225974707987879', '中国北京市房山区岳琉路640号华润大厦18室', '1990-04-07', 0, 0, 'saitsuki', '2005-12-08', 'itss', '2007-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS453374638007', '工藤百恵', 0, '+81 80-3390-2355', 3, '213503241895753649', '29F, 3-27-14 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-05-31', 0, 0, 'momoekudo', '2020-07-30', 'momoe3', '2006-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS888073865769', 'Paul Cox', 0, '+86 10-9192-9640', 1, '205339663530973605', 'Room 7, CR Building, 601 Sanlitun Road, Chaoyang District, Beijing, China', '1989-11-24', 0, 0, 'paulcox', '2016-08-27', 'copaul1', '2004-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS853085867596', '鄭志遠', 0, '+81 90-2503-8556', 1, '975617269103353194', '日本札幌白石区菊水三条五丁目2番5号48階', '1989-05-22', 0, 0, 'chency5', '2011-02-01', 'chcheng1218', '2015-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS666485480580', '斎藤百花', 0, '+1 213-031-5606', 4, '851361521772109314', '726 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1994-05-22', 0, 0, 'momokasait', '2016-12-25', 'saitomomok', '2017-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS248066291942', 'Alice Ruiz', 1, '+1 330-950-7628', 2, '783205591515206323', '60 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1995-03-20', 0, 0, 'ruizalice', '2001-06-26', 'alicruiz1214', '2018-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS338529536798', '村田瑛太', 0, '+1 213-009-4744', 0, '256771144835568564', '113 Alameda Street Apartment 17, Los Angeles, CA 90002, United States', '1995-10-15', 0, 0, 'emurata98', '2018-01-27', 'meita', '2009-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS763450808167', '郭頴璇', 1, '+86 198-9878-1319', 1, '332313976933636171', '中国成都市成华区玉双路6号606号40号楼', '1990-07-19', 0, 0, 'wingkwok', '2008-03-29', 'kws', '2017-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS643004540310', '薛淑怡', 1, '+44 (121) 258 6023', 2, '521936519305394696', 'Unit 34, Oxford Eco Centre, 170 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-11-22', 0, 0, 'sysi', '2013-01-17', 'sysi', '2013-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS790334758030', '曾晓明', 1, '+86 10-824-4267', 2, '692698495192407951', '中国北京市東城区東直門內大街156号48楼', '1987-05-18', 0, 0, 'zenxiaoming', '2012-07-28', 'zenxiaoming', '2003-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS622386891898', '王云熙', 1, '+1 213-673-5052', 1, '855726740159006720', '929 Sky Way Apt 18, Los Angeles, CA 90043, United States', '1998-02-15', 0, 0, 'wanyunxi', '2014-10-12', 'yunxi7', '2000-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS309471735717', '向詩君', 0, '+81 80-8729-0132', 1, '668586034622817405', 'Rm. 44, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-02-18', 0, 0, 'szekwan96', '2008-09-15', 'heungsk1', '2012-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS885647145532', '石川結翔', 0, '+86 153-8627-5587', 2, '050782808855831254', '中国东莞珊瑚路755号华润大厦47室', '1995-04-27', 0, 0, 'yuiishikawa', '2001-09-11', 'yuiishikawa828', '2020-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS000690261493', '史安琪', 1, '+44 5774 640481', 2, '921423242826391013', 'Unit 24, Oxford Eco Centre, 979 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-05-04', 0, 0, 'sha', '2004-01-26', 'shianqi713', '2015-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS870093199860', 'Juan Romero', 1, '+81 90-6127-1255', 3, '808118914013771818', '日本東京港区東新橋一丁目5番16号44階', '1988-05-29', 0, 0, 'romero96', '2021-01-11', 'romju10', '2018-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS896313301542', '池田海斗', 0, '+44 7588 909897', 4, '449604837266238553', 'Flat 1, 568 Maddox Street, London, W1S 1PU, United Kingdom', '1992-03-02', 0, 0, 'ikeka1', '2017-03-14', 'kaitoike727', '2004-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS271699829837', '顧頴思', 0, '+81 66-864-2418', 0, '633856951299902427', '12F, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-12-24', 0, 0, 'wingszek', '2006-05-14', 'wsku44', '2008-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS269047383395', '汤晓明', 1, '+86 189-7424-9888', 2, '780415571746305907', '中国成都市成华区双庆路866号华润大厦17室', '1993-02-03', 0, 0, 'xitan1027', '2009-09-10', 'tangxiaoming528', '2011-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS112760540456', '内田絢斗', 1, '+1 330-378-0512', 4, '696182999840102208', '800 Ridgewood Road Apartment 36, Akron, OH 44321, United States', '1990-03-22', 0, 0, 'ayatouc8', '2020-01-21', 'ayato6', '2003-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS777669183773', '徐榮發', 1, '+86 769-973-1697', 2, '710368530672347424', '中国东莞珊瑚路498号华润大厦29室', '1986-10-16', 0, 0, 'wingfattsu', '2005-10-08', 'tswf', '2005-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS761260105553', '莫惠敏', 0, '+86 28-7696-2252', 3, '270865655786209545', '中国成都市成华区二仙桥东三路951号华润大厦50室', '1993-03-10', 0, 0, 'mokwaiman', '2003-05-22', 'wmmok', '2011-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS291991794150', '卢云熙', 1, '+81 11-449-2926', 2, '908537304798154609', '日本札幌白石区菊水三条五丁目2番13号49階', '1990-05-10', 0, 0, 'yunxilu2', '2021-04-23', 'ylu', '2012-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS328668256601', 'Victoria Griffin', 0, '+1 213-705-4863', 3, '737529555744503478', '528 Alameda Street Suite 41, Los Angeles, CA 90002, United States', '1997-07-15', 0, 0, 'victogriffin3', '2021-03-03', 'victoriagrif4', '2009-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS417459539138', '汤云熙', 0, '+44 7505 862469', 4, '822774966954905037', 'Flat 10, 237 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-11-03', 0, 0, 'yunxi20', '2006-08-08', 'tangy', '2014-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS269377095151', '有村瑛太', 1, '+1 614-974-7508', 3, '720291534470326631', '252 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-07-07', 0, 0, 'eitaar', '2004-02-09', 'eita20', '2006-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS412179446512', '向家玲', 1, '+1 212-872-6531', 1, '709689894082942125', '543 Fifth Avenue Suite 45, New York, NY 10017, United States', '1991-02-22', 0, 0, 'kalingheung10', '2006-07-11', 'hkl', '2003-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS023935753171', 'Carmen Barnes', 0, '+81 52-549-5953', 2, '432931890012264085', '8-kai, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-02-20', 0, 0, 'carmenbar', '2018-05-06', 'carmbarnes1', '2003-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS016870904397', 'Carl Jimenez', 0, '+44 (1865) 02 1090', 3, '748106875880017749', 'No.37 Main building, 864 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-01-20', 0, 0, 'carjimenez', '2016-10-03', 'cjimenez', '2015-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS272857277373', '餘志明', 0, '+81 11-670-0906', 2, '305133376506124594', 'Rm. 39, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-13', 0, 0, 'yuchimi1219', '2011-08-13', 'chimingy', '2021-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS667928901034', '田梓軒', 0, '+1 312-003-5203', 3, '432557617342074626', '994 Pedway Apt 4, Chicago, IL 60601, United States', '1998-09-21', 0, 0, 'tin1955', '2014-06-10', 'tith4', '2017-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS795543842955', 'Lisa Hicks', 0, '+86 760-373-9249', 3, '416646113425147394', '中国中山京华商圈华夏街657号华润大厦3室', '1986-04-10', 0, 0, 'hicks1214', '2014-08-03', 'lhi', '2020-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS879455647344', '雷家玲', 1, '+1 718-570-7106', 1, '806343915617498102', '858 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-11-21', 0, 0, 'kaling828', '2003-09-07', 'loka627', '2020-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS688097575327', '駱國賢', 0, '+86 192-4324-3151', 2, '169521267799158332', '中国北京市房山区岳琉路226号10室', '1990-05-17', 0, 0, 'lky', '2014-08-08', 'lokky10', '2020-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS110443597744', 'Norma Myers', 1, '+81 90-6876-9436', 1, '040464803900317771', '34-kai, 13-3-6 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-05-27', 0, 0, 'myernorm', '2019-04-18', 'normamyers', '2002-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS857902517904', '石川蓮', 0, '+86 21-467-7884', 1, '136714140821558270', 'No.4 building, 682 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-03-26', 0, 0, 'ishikr', '2008-01-17', 'iren', '2002-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS479227162267', '田中優奈', 0, '+81 70-7772-2813', 0, '937053969141736471', '日本札幌白石区菊水三条五丁目4番15号48階', '1989-04-09', 0, 0, 'tanakayuna', '2005-04-27', 'yuna54', '2000-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS607308652422', '應志明', 1, '+44 (151) 628 5146', 2, '556026756179645328', 'Block 19, 304 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1988-11-13', 0, 0, 'ychiming49', '2016-01-01', 'ycm4', '2003-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS872919412497', 'Sylvia Parker', 1, '+81 74-922-0116', 2, '025822874898156109', '日本ならし学園南三丁目9番12号26階', '1988-01-09', 0, 0, 'sparker52', '2013-07-18', 'sylvp', '2007-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS529364305468', '彭詩涵', 0, '+81 52-599-5815', 4, '426639231146562752', '日本なごやし瑞穂区河岸町四丁目20番13号15号室', '1995-05-15', 0, 0, 'shihanpen', '2011-11-24', 'spen', '2020-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS629432377496', 'Andrea Long', 0, '+86 130-2001-7228', 1, '963663978078869365', '10F, 371 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-03', 0, 0, 'andrealong', '2018-05-26', 'andreal', '2020-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS267205227730', '廖宇宁', 0, '+1 212-554-8047', 3, '323695032460242912', '377 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-05-29', 0, 0, 'yunl', '2007-08-24', 'yuningl428', '2018-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS677700086689', '容仲賢', 1, '+1 312-644-6786', 3, '688165245557236270', '482 Pedway Apt 22, Chicago, IL 60601, United States', '1989-05-16', 0, 0, 'yungchungyin', '2014-09-20', 'chungyinyung907', '2018-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS354667530840', 'Louis Grant', 1, '+44 5513 844360', 4, '656481964190517348', 'Flat 44, 735 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-06-19', 0, 0, 'glouis614', '2005-07-14', 'louisgrant', '2020-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS245711734610', '菅原蓮', 0, '+86 20-349-6989', 0, '663121149082167356', 'No.19 building, 40 Tianhe Road, Tianhe District, Guangzhou, China', '1986-09-15', 0, 0, 'sugawara8', '2001-01-26', 'sren', '2021-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS137503831617', '廖杰宏', 0, '+81 90-6137-1789', 0, '409101575796913743', '日本ならし学園南三丁目9番11号41階', '1993-08-16', 0, 0, 'liao3', '2010-07-17', 'ljie', '2012-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS533852615711', '麥青雲', 1, '+81 80-5462-5423', 3, '918358859099111586', '24-kai, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1996-02-15', 0, 0, 'cwm', '2017-07-03', 'chingwan00', '2012-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS257752272951', 'Charlotte Brown', 1, '+86 177-3139-8252', 2, '696657261219106531', 'Room 34, 276 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-03-17', 0, 0, 'browncharlotte', '2015-11-27', 'bcharlotte', '2011-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS226516433860', '石井樹', 1, '+44 (151) 889 9408', 2, '690230426522227825', 'Unit 13, Oxford Eco Centre, 349 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-01-04', 0, 0, 'itsuki213', '2019-09-21', 'iishii', '2016-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS778002618662', '竹内健太', 1, '+86 20-625-0677', 1, '044841455785257345', '中国广州市天河区天河路511号41号楼', '1986-04-07', 0, 0, 'kentake', '2020-12-18', 'tkenta128', '2019-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS436086943369', '曾璐', 1, '+81 80-7684-8271', 2, '176884406213431026', '13F, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-05-11', 0, 0, 'zeng5', '2003-04-06', 'zenlu', '2013-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS079693135560', '余安琪', 0, '+44 (1865) 85 3598', 3, '078213388995195874', 'Block 11, 967 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-07-06', 0, 0, 'anqyu', '2017-12-04', 'anqi9', '2012-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS430149102619', '江志明', 0, '+1 212-654-7363', 1, '606259844752821738', '411 West Houston Street Suite 27, New York, NY 10014, United States', '1991-12-19', 0, 0, 'chimingkong', '2010-07-26', 'cmk', '2008-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS976327271119', '長谷川大輔', 0, '+86 760-1671-1388', 2, '296019239699368945', 'No.13 building, 98 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-06-08', 0, 0, 'hasegawadaisuke', '2012-09-28', 'dahase', '2019-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS567172971281', 'Edward Grant', 1, '+81 90-8699-4628', 4, '470352336848132484', 'Rm. 33, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-08-30', 0, 0, 'edward309', '2019-03-05', 'grantedward3', '2004-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS428851491499', '曾曉彤', 1, '+86 28-528-4920', 2, '333824210926447639', '中国成都市锦江区红星路三段657号华润大厦46室', '1998-04-04', 0, 0, 'tsanght1989', '2001-06-05', 'hiutungtsang', '2013-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS535739195618', '梁富城', 1, '+81 3-0023-0561', 4, '640054523900674091', '12-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1996-03-31', 0, 0, 'fushingleu1105', '2014-10-30', 'fushingleung', '2008-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS553908872323', '朱岚', 1, '+81 52-962-6054', 2, '247269055336021886', '44-kai, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1991-07-12', 0, 0, 'zhlan', '2001-08-06', 'zhulan', '2016-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS609969254610', '尹岚', 0, '+86 10-100-1637', 3, '991075664497595557', 'Room 47, CR Building, 540 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-05-19', 0, 0, 'lyin', '2004-11-27', 'lan520', '2004-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS968126477755', 'Jack Warren', 1, '+86 152-7785-3300', 4, '872715682183922607', 'No.6 building, 62 Binchuan Rd, Minhang District, Shanghai, China', '1990-11-28', 0, 0, 'warren9', '2020-09-27', 'warrenjack', '2014-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS462117680930', '阎杰宏', 1, '+81 3-2651-6235', 0, '780347842602288636', 'Rm. 44, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-03-20', 0, 0, 'yan2', '2007-12-13', 'jy207', '2005-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS281114780991', '許梓晴', 0, '+44 7916 701285', 0, '994593919485129754', 'Block 38, 524 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-07-21', 0, 0, 'tshui', '2016-10-31', 'hui429', '2002-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS944260528724', '藤井玲奈', 0, '+44 7043 184779', 2, '119799617323562205', 'No.29 Main building, 304 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-01-10', 0, 0, 'renafujii', '2013-03-16', 'fujiir', '2006-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS613797503420', '官詠詩', 0, '+86 161-6831-6050', 3, '535963035767779746', 'No.13 building, 362 Huanqu South Street 2nd Alley, Dongguan, China', '1989-10-20', 0, 0, 'koowingsze', '2017-04-02', 'wingszek', '2005-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS162765600274', '吕秀英', 1, '+1 312-959-8815', 1, '715545312662241612', '919 North Michigan Ave Suite 39, Chicago, IL 60611, United States', '1996-04-03', 0, 0, 'xiuyinglu825', '2018-11-13', 'lxiuying906', '2019-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS497935506298', '金子七海', 0, '+86 145-5454-4887', 2, '248092744215740980', '中国深圳罗湖区田贝一路832号45楼', '1991-04-03', 0, 0, 'kaneko330', '2017-06-27', 'nanami314', '2001-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS928255301993', 'Mark Hughes', 1, '+86 20-2104-6190', 1, '025893030427281128', 'No.45 building, 139 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-07-24', 0, 0, 'hm1', '2002-07-15', 'hughes1101', '2021-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS309956730020', '上野七海', 1, '+86 28-155-6509', 2, '020108017869654656', 'Room 42, No. 534, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-07-04', 0, 0, 'uenonanami', '2014-09-04', 'nueno', '2015-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS454686537694', '崔志明', 1, '+44 (1223) 40 4280', 2, '958635970563729715', 'Unit 3, Oxford Eco Centre, 799 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-05-18', 0, 0, 'choicm', '2021-09-26', 'choicm', '2014-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS576187008196', '伍國榮', 1, '+44 (20) 8921 7921', 3, '350317888208970063', 'No.11 Main building, 714 Maddox Street, London, W1S 1PU, United Kingdom', '1989-12-17', 0, 0, 'kwokwingn', '2002-02-06', 'kwng', '2000-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS137794661439', 'Heather Chen', 0, '+81 66-532-0146', 1, '961740886846167346', '日本おおさかし近江堂一丁目7番6号28階', '1995-12-04', 0, 0, 'hche', '2005-06-20', 'cheheather91', '2020-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS301165788746', '武田大地', 1, '+44 (1223) 58 4810', 4, '901097825764287713', 'Unit 9, Oxford Eco Centre, 629 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-10-29', 0, 0, 'takedada', '2005-06-26', 'daichit16', '2014-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS610214002400', '段震南', 0, '+81 80-3771-2455', 1, '677739293479767268', '9F, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1997-12-30', 0, 0, 'duan09', '2016-01-14', 'dzhennan', '2015-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS813857600696', 'Joan Owens', 0, '+1 312-362-5987', 2, '882348563755580161', '74 Pedway Suite 6, Chicago, IL 60601, United States', '1992-11-02', 0, 0, 'ojoan412', '2015-07-02', 'owens11', '2007-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS915986554708', '樂德華', 1, '+1 718-367-3828', 2, '043582440326621375', '378 Flatbush Ave Apt 33, Brooklyn, NY 11225, United States', '1995-07-07', 0, 0, 'twlok', '2019-03-26', 'ltakw04', '2019-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS553238352529', '藍玲玲', 0, '+86 760-8285-7846', 3, '437294228169101771', 'No.6 building, 656 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-07-23', 0, 0, 'lll', '2018-08-09', 'lall6', '2000-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS087849824004', 'Henry Roberts', 1, '+81 70-9421-3582', 1, '201291885655931094', '日本札幌厚別区上野幌一条二丁目1番17号36号室', '1990-01-27', 0, 0, 'henry9', '2001-02-24', 'henryroberts5', '2000-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS632682708406', 'Deborah Morgan', 1, '+81 80-2547-9295', 1, '901858441712671757', '日本ならし学園南三丁目9番10号47階', '1990-06-08', 0, 0, 'morgan9', '2003-01-08', 'deborahm', '2020-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS946794677068', '福田海斗', 0, '+1 838-938-5604', 2, '299355474212436685', '613 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1995-11-27', 0, 0, 'fukai8', '2013-09-21', 'fukudaka6', '2019-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS477856195011', '許頴璇', 0, '+81 3-8332-5067', 3, '343659940482214404', '26-kai, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-06-10', 0, 0, 'wingsuen219', '2006-11-18', 'huiwing', '2000-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS022731865048', '贺震南', 0, '+81 90-7073-4386', 0, '003618000080591232', '日本おおさかし西成区出城一丁目1番20号43号室', '1993-09-09', 0, 0, 'zhenhe6', '2002-10-16', 'zhe87', '2009-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS299849562097', '傅嘉伦', 0, '+86 21-2238-0024', 1, '982131542950471046', '中国上海市闵行区宾川路82号26室', '1995-12-06', 0, 0, 'fu00', '2016-12-07', 'fuji', '2019-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS125728307846', 'Josephine Davis', 0, '+86 164-7180-5880', 3, '513906456582374600', 'Room 36, CR Building, 553 Huanqu South Street 2nd Alley, Dongguan, China', '1996-06-04', 0, 0, 'jd801', '2015-12-29', 'jodavis89', '2019-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS654702249405', '清水七海', 0, '+86 755-6743-1777', 0, '196638388102221079', '中国深圳罗湖区清水河一路165号25楼', '1990-11-16', 0, 0, 'nshimizu11', '2007-11-10', 'nanami6', '2005-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS126796008024', 'Randall Murray', 0, '+86 141-8358-3557', 0, '195224615560226921', '中国广州市白云区小坪东路122号华润大厦36室', '1990-05-07', 0, 0, 'randallmurr1112', '2002-06-09', 'randamurr1104', '2007-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS177041663218', '梅曉彤', 0, '+81 66-868-6595', 4, '802791452372990391', '46-kai, 4-9-11 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-05-23', 0, 0, 'mht', '2008-01-21', 'hiutungmu', '2018-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS746020279270', '戴岚', 1, '+1 213-137-6206', 2, '787748825789357514', '582 Wall Street Apartment 27, Los Angeles, CA 90003, United States', '1985-07-22', 0, 0, 'lan1984', '2003-03-10', 'dail704', '2001-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS796399055389', '石井舞', 0, '+81 90-6346-8080', 4, '904257951651038367', '7F, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-07-25', 0, 0, 'maiishii9', '2010-03-30', 'maiishii', '2007-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS216052331587', '戴嘉伦', 1, '+86 28-756-0930', 2, '646596024748187160', 'No.31 building, 855 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-03-17', 0, 0, 'jialdai1941', '2011-01-06', 'jdai', '2016-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS494591471811', '吳頴璇', 1, '+81 80-8238-9160', 2, '748688376590571963', '22F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-09-12', 0, 0, 'wingsuen2', '2013-01-22', 'wingsuenng2016', '2019-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS155357259765', 'Rita Evans', 0, '+81 70-8725-3489', 2, '718928941739111656', '日本なごやし北区楠味鋺三丁目80番15号39号室', '1996-12-05', 0, 0, 'rievans', '2001-05-12', 'ritaev329', '2005-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS723974951578', '呂祖兒', 1, '+44 (121) 411 7412', 3, '858856974709881646', 'Unit 22, Oxford Eco Centre, 991 New Street, Birmingham, B2 4DB, United Kingdom', '1994-08-08', 0, 0, 'choyeelui', '2007-05-09', 'cylui', '2008-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS509693896592', '安藤凛', 0, '+44 (116) 006 7718', 2, '769521685193749586', 'Block 21, 306 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-17', 0, 0, 'rinan5', '2012-04-14', 'anrin123', '2006-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS176971342846', 'Tracy Jenkins', 1, '+81 90-6214-6452', 3, '853131874405071269', 'Rm. 11, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-09-05', 0, 0, 'trajenk', '2017-03-06', 'jentracy', '2004-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS139467379400', '曾子异', 1, '+1 330-716-4964', 3, '848677730461316676', '264 Riverview Road Apartment 49, Akron, OH 44313, United States', '1991-08-07', 0, 0, 'ziyizen', '2021-02-25', 'ziyizeng4', '2017-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS890359171178', '邱德華', 1, '+81 11-042-6763', 3, '254633939546181787', '45-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-03-09', 0, 0, 'takwah45', '2000-12-17', 'twyau', '2019-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS222239906787', '安藤蒼士', 1, '+86 10-6086-8761', 2, '857886651221209506', '中国北京市西城区西長安街780号18楼', '1992-12-07', 0, 0, 'aoshiando', '2013-01-05', 'anaoshi', '2002-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS730225503133', '武田玲奈', 1, '+81 74-122-5624', 3, '333134404457569950', '3-kai, 3-9-2 Gakuenminami, Nara, Japan', '1992-08-18', 0, 0, 'takedrena7', '2004-09-08', 'renatakeda10', '2017-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS117813738561', 'Francisco Hicks', 0, '+81 70-0870-3537', 0, '720612211538932469', '34-kai, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-02-16', 0, 0, 'francisco4', '2016-02-01', 'fh69', '2019-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS604306269026', '房浩然', 1, '+1 330-181-8832', 1, '311081978214066819', '687 West Market Street Suite 36, Akron, OH 44333, United States', '1987-07-21', 0, 0, 'fonhoyin', '2019-11-21', 'fonghy', '2000-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS561552888521', '河野百恵', 0, '+86 755-730-4115', 1, '555324348901261424', '中国深圳龙岗区学园一巷538号31室', '1997-08-30', 0, 0, 'komomoe216', '2002-02-21', 'kono08', '2011-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS355825415930', '小山花', 0, '+86 10-2289-9555', 1, '623462941279063373', '中国北京市海淀区清河中街68号89号44号楼', '1986-09-27', 0, 0, 'koyamahana', '2009-08-12', 'koyama1214', '2009-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS407482384513', 'Marcus Henderson', 1, '+86 191-4273-2849', 0, '915212999257342372', '中国深圳罗湖区田贝一路165号17栋', '1993-09-24', 0, 0, 'henderson9', '2000-01-24', 'marcus69', '2020-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS722780688116', '餘慧儀', 0, '+81 52-368-0716', 4, '024070080756753264', '23F, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-05', 0, 0, 'yuewaiyee3', '2006-07-31', 'waiyeeyu', '2018-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS470105538695', '樊惠敏', 0, '+86 159-8708-6252', 3, '538801729836955649', '中国成都市成华区双庆路409号华润大厦28室', '1988-05-20', 0, 0, 'fan2', '2000-03-14', 'waiman1948', '2008-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS186611139465', '江秀英', 1, '+86 760-931-9367', 0, '968606308999635997', '中国中山紫马岭商圈中山五路744号38栋', '1991-09-06', 0, 0, 'jx1963', '2019-07-01', 'xjiang5', '2019-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS812719142361', '方惠敏', 0, '+81 11-411-7629', 2, '842790097847625122', '24F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-05', 0, 0, 'wmfong', '2004-10-09', 'fong87', '2009-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS154847140905', 'Louis Hicks', 1, '+81 70-5400-4582', 0, '465972358364627711', '日本東京中央区銀座三丁目12番11号22階', '1992-07-03', 0, 0, 'hiclouis', '2000-04-16', 'hickslouis', '2011-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS175149587223', '野村桜', 0, '+81 52-975-5305', 4, '321013143331679658', '日本なごやし瑞穂区河岸町四丁目20番1号19階', '1998-05-18', 0, 0, 'snom5', '2003-04-23', 'sakurnomura', '2014-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS139625314728', 'Carolyn Shaw', 1, '+86 137-2734-8734', 1, '006099379750489458', '中国深圳罗湖区蔡屋围深南东路219号23栋', '1987-05-31', 0, 0, 'shaw3', '2003-02-01', 'shaw9', '2014-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS895311028555', '新井愛梨', 0, '+81 80-5874-3723', 1, '753581129645239762', '1-kai, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-07-25', 0, 0, 'airiarai921', '2021-04-30', 'airiarai19', '2000-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS857357915453', '湯慧珊', 0, '+86 769-9514-1553', 0, '861853636411308047', '中国东莞东泰五街107号49号楼', '1990-04-09', 0, 0, 'waisant', '2020-11-13', 'tong209', '2017-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS006445560647', 'Hazel Mitchell', 0, '+86 760-7215-3216', 1, '824573276942681481', '中国中山乐丰六路130号13楼', '1997-08-10', 0, 0, 'mitchellhazel709', '2007-12-25', 'ham47', '2012-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS877988947756', 'Jerry Hamilton', 1, '+81 3-9677-8057', 3, '654759672735588964', '1F, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-04-25', 0, 0, 'hamiltonjerry', '2000-01-12', 'jerry5', '2000-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS468549144227', '贾宇宁', 1, '+81 80-3794-4143', 1, '335703132754343679', '43F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1991-11-07', 0, 0, 'jiyuning1221', '2007-05-09', 'yuning7', '2000-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS351297743976', '陳潤發', 0, '+81 70-0687-5794', 1, '992373842218868464', '日本おおさかし東住吉区東田辺三丁目27番6号29階', '1994-11-16', 0, 0, 'yunfat53', '2010-07-27', 'yfchan58', '2015-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS600370254322', '餘明', 0, '+44 (1865) 14 6019', 3, '603723181598307956', 'Unit 11, Oxford Eco Centre, 524 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-10-09', 0, 0, 'miyue', '2020-02-16', 'mingyue', '2003-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS392250140683', '赵睿', 1, '+86 198-9314-8575', 0, '258693365210661238', 'Room 47, 986 Ganlan Rd, Pudong, Shanghai, China', '1996-06-14', 0, 0, 'ruiz', '2003-10-04', 'ruzhao', '2000-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS671699050333', '羅國榮', 1, '+44 5085 989561', 0, '837400274782390289', 'Block 16, 592 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-01-21', 0, 0, 'kwl', '2019-12-11', 'kwokwinglo6', '2016-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS002910558928', 'Marvin Vargas', 1, '+44 5076 776726', 1, '163619852519108029', 'Unit 38, Oxford Eco Centre, 420 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-06-15', 0, 0, 'marvinvarga7', '2016-11-28', 'vargas202', '2001-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS096136142987', 'Amber Black', 1, '+81 70-7532-4686', 3, '477021086462924336', '12F, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1991-07-21', 0, 0, 'blaamb', '2000-11-16', 'blamber1123', '2008-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS184207139817', '叶震南', 0, '+81 90-4608-9988', 2, '300156192019264922', '日本札幌白石区菊水三条五丁目2番12号3階', '1986-09-12', 0, 0, 'zhye', '2020-07-06', 'yezhe618', '2017-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS243867631895', '野口一輝', 1, '+1 213-715-2470', 3, '844154035117652747', '306 Sky Way Suite 7, Los Angeles, CA 90043, United States', '1990-04-14', 0, 0, 'ikkin74', '2021-07-29', 'noguchi07', '2003-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS346331483802', '森田美咲', 1, '+44 (161) 124 7251', 0, '385506294571377562', 'Unit 29, Oxford Eco Centre, 656 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-05-11', 0, 0, 'moritami', '2020-02-22', 'misaki69', '2014-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS875419934893', '邵力申', 1, '+86 10-4780-0397', 3, '355029922773167902', 'No.28 building, 605 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-03-06', 0, 0, 'liksun2', '2009-08-03', 'sliksun', '2000-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS955419575452', '松田拓哉', 1, '+81 11-485-2293', 0, '977623278255441471', '日本札幌白石区菊水三条五丁目4番10号44階', '1995-11-29', 0, 0, 'matsutakuya2003', '2006-02-17', 'tma', '2020-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS847135740092', '前田美咲', 1, '+1 330-838-3340', 0, '677323999470908705', '46 Collier Road Apartment 48, Akron, OH 44320, United States', '1999-02-06', 0, 0, 'misamaeda2', '2008-05-29', 'maedam5', '2020-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS793989419790', 'Justin Spencer', 0, '+81 90-3651-3218', 3, '727372360424467630', '30-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-08-18', 0, 0, 'justinsp', '2021-06-11', 'spenj', '2008-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS326837250116', 'Amanda Hamilton', 0, '+81 66-033-5922', 1, '928917031479805477', '5-kai, 1-1-4 Deshiro, Nishinari Ward, Osaka, Japan', '1993-01-10', 0, 0, 'ha10', '2019-01-22', 'amanda322', '2009-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS989868700712', '贺宇宁', 0, '+81 11-468-4175', 1, '945940582822020579', 'Rm. 42, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-05-21', 0, 0, 'heyuni', '2019-10-07', 'heyunin825', '2014-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS250563277286', '長谷川樹', 1, '+81 52-338-9025', 2, '831515664173690570', 'Rm. 17, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-02-18', 0, 0, 'hasegawa408', '2012-07-22', 'hasegawaitsu5', '2006-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS840469075446', '彭德華', 0, '+81 70-5973-1630', 1, '310045891698838322', '日本札幌白石区菊水三条五丁目2番14号19号室', '1985-02-20', 0, 0, 'twpang82', '2013-06-21', 'ptw', '2017-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS567086945337', '中野陽菜', 0, '+81 80-6020-0705', 4, '663113639492415744', '日本ならし学園南三丁目9番13号31号室', '1992-05-19', 0, 0, 'nakahina', '2002-01-06', 'nakanhina', '2016-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS617997494232', '孙致远', 0, '+44 (151) 774 0873', 3, '124840350704425044', 'Unit 3, Oxford Eco Centre, 75 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-03-19', 0, 0, 'zhiyuansun', '2020-03-05', 'szhiy203', '2006-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS528365008414', '朱璐', 0, '+81 70-7543-1946', 2, '200949603247949072', '日本なごやし北区楠味鋺三丁目80番8号41号室', '1995-12-21', 0, 0, 'luzhu6', '2004-10-11', 'luz5', '2002-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS295821900836', '郭嘉伦', 0, '+44 (121) 227 2737', 1, '677801606290198863', 'Block 37, 193 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-05-05', 0, 0, 'jialung', '2009-04-16', 'jialg', '2006-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS524896396894', '范安琪', 1, '+86 134-7199-0956', 1, '033264884010989046', '中国上海市浦东新区健祥路456号25栋', '1988-12-20', 0, 0, 'fananqi', '2016-03-20', 'anqif90', '2010-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS289306875735', 'Fred Jackson', 0, '+86 177-6602-6880', 3, '067952491080268954', 'No.26 building, 106 Ganlan Rd, Pudong, Shanghai, China', '1992-06-03', 0, 0, 'jackfred4', '2001-03-14', 'fredjackson', '2021-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS976088752391', '麥明', 0, '+44 (1223) 54 7511', 1, '319750895549456232', 'Block 2, 915 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-09-23', 0, 0, 'makm718', '2014-05-09', 'maming', '2016-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS726235965508', '馬浩然', 0, '+1 838-443-1783', 0, '757938483448274189', '195 Central Avenue Apt 35, Albany, NY 12205, United States', '1987-12-21', 0, 0, 'hoyin6', '2016-06-05', 'hyma5', '2005-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS582975784011', 'Justin James', 1, '+86 159-9908-4602', 3, '383244167048074063', '中国东莞东泰五街336号26栋', '1986-08-31', 0, 0, 'justinj', '2006-03-09', 'jamesjustin', '2011-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS910373906493', '田震南', 0, '+1 213-953-9898', 1, '988360493833471669', '71 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1986-01-12', 0, 0, 'tianz', '2021-06-04', 'tian112', '2010-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS813221282650', '曹詠詩', 0, '+1 213-337-6788', 1, '138477164205461563', '395 Figueroa Street Apt 18, Los Angeles, CA 90037, United States', '1994-11-28', 0, 0, 'chwingsze', '2004-06-18', 'cwingsze', '2015-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS664675301510', '呂俊宇', 0, '+44 7937 636325', 3, '490731524998138876', 'No.22 Main building, 800 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-09-13', 0, 0, 'lui204', '2006-06-27', 'lui7', '2014-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS525639154460', '山下健太', 1, '+1 212-160-5033', 3, '388982687875114288', '896 Wooster Street 3rd Floor, New York, NY 10012, United States', '1995-12-23', 0, 0, 'yamashitak', '2011-11-05', 'keyam', '2005-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS586406107636', '楊安娜', 1, '+1 213-048-5676', 2, '614431117631785858', '995 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1991-10-10', 0, 0, 'yeung2014', '2005-07-22', 'onyeun', '2018-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS134967750672', '鄺心穎', 0, '+81 80-4978-4724', 0, '302428292239434868', '日本東京中央区銀座三丁目12番7号34号室', '1997-10-29', 0, 0, 'sumwing213', '2014-11-17', 'sumwingkw44', '2002-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS765845489619', '大塚結翔', 1, '+1 213-787-0955', 0, '627616902704383385', '278 Wall Street Apt 48, Los Angeles, CA 90003, United States', '1985-06-11', 0, 0, 'otyuito45', '2008-01-22', 'yuio', '2010-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS331869103667', '呂家玲', 1, '+81 66-300-7397', 0, '954049694381876397', '日本おおさかし近江堂一丁目7番3号9階', '1985-05-24', 0, 0, 'luika6', '2014-01-25', 'kaling9', '2002-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS791150271132', '蔡祖兒', 1, '+81 90-1229-9268', 2, '304182601395157140', '43F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-10-17', 0, 0, 'choyeechoi80', '2021-09-16', 'choyeechoi10', '2001-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS059620743902', '胡國賢', 0, '+81 3-4154-1348', 2, '724421839014404082', '30F, 3-15-7 Ginza, Chuo-ku, Tokyo, Japan', '1992-03-13', 0, 0, 'wukwokyin329', '2013-06-30', 'kywu', '2008-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS879229711518', '藤發', 1, '+86 769-9414-7299', 1, '283141716369727735', 'No.7 building, 285 Dongtai 5th St, Dongguan, China', '1990-08-22', 0, 0, 'fatt', '2022-03-03', 'tang1225', '2014-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS723830654290', '關惠敏', 1, '+86 769-074-6656', 1, '595961467745769458', 'No.9 building, 746 Kengmei 15th Alley, Dongguan, China', '1985-09-11', 0, 0, 'kwan313', '2013-03-09', 'kwm', '2007-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS191967172397', '顧小慧', 0, '+86 156-3020-9108', 4, '756992353392030604', '中国中山乐丰六路314号40栋', '1996-12-01', 0, 0, 'siuwai809', '2005-12-11', 'ksiuwai', '2009-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS302305677885', 'Joshua Chavez', 0, '+44 7234 214305', 0, '435851251148573998', 'Unit 23, Oxford Eco Centre, 690 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-04-11', 0, 0, 'chavezjoshua', '2017-12-01', 'chjoshu', '2011-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS094070147834', 'Scott Hawkins', 0, '+44 (20) 5092 5771', 2, '868477132651667059', 'No.35 Main building, 464 Maddox Street, London, W1S 1PU, United Kingdom', '1990-07-09', 0, 0, 'hawkinssco', '2005-04-28', 'hawkscot', '2016-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS924069058475', '高田美羽', 1, '+44 (121) 598 6371', 3, '666875175976965243', 'Block 21, 426 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-01-23', 0, 0, 'takamiu', '2014-04-22', 'takadamiu', '2018-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS240368941424', 'Christopher Williams', 1, '+44 (121) 076 5303', 3, '405226387283462925', 'Block 35, 939 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-01-08', 0, 0, 'christopherwill', '2017-04-05', 'willchristopher', '2001-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS865709005599', '潘詩涵', 0, '+81 70-8679-5679', 1, '705449811390571591', '日本札幌清田区真栄四条五丁目19番4号26階', '1995-08-31', 0, 0, 'shihan214', '2010-09-12', 'pan69', '2007-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS666045218313', 'Julie Clark', 0, '+81 3-5476-7862', 1, '740432235073736101', '22-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-04-27', 0, 0, 'juclark86', '2016-05-30', 'juclar1217', '2017-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS553065441856', '史秀英', 0, '+44 7294 984003', 3, '310570582144085144', 'No.4 Main building, 995 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-07-19', 0, 0, 'shix', '2004-09-08', 'xiuyshi10', '2009-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS096589243962', 'Amanda Kennedy', 0, '+44 7095 696448', 2, '401445567692453255', 'No.20 Main building, 805 Maddox Street, London, W1S 1PU, United Kingdom', '1994-03-17', 0, 0, 'kennamanda', '2011-03-02', 'amandaken', '2014-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS014411968798', '大塚海斗', 1, '+86 137-5145-4501', 1, '625493836526953970', 'No.23 building, 862 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1999-02-06', 0, 0, 'kaitootsu8', '2009-03-20', 'kotsuka402', '2018-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS712473002117', 'Jacqueline Miller', 0, '+1 838-288-1072', 1, '583109042360777380', '260 Broadway Suite 11, Albany, NY 12207, United States', '1990-12-08', 0, 0, 'mjacqueline515', '2002-03-19', 'jm2015', '2021-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS111057956253', '古志明', 1, '+1 330-174-5319', 3, '367171240289626913', '178 Ridgewood Road Suite 32, Akron, OH 44321, United States', '1994-07-17', 0, 0, 'cmku', '2008-04-20', 'ku6', '2006-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS720625014784', 'Debbie Russell', 1, '+44 7046 445478', 1, '400416784174575508', 'Unit 25, Oxford Eco Centre, 775 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-10-09', 0, 0, 'rud', '2012-11-17', 'debbier', '2011-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS426761174132', '佐藤美羽', 0, '+86 150-5907-7602', 1, '566774282789062085', 'No.50 building, 384 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1995-12-15', 0, 0, 'satomiu', '2002-03-28', 'miusa127', '2021-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS951036201455', '叶睿', 0, '+1 718-668-4339', 0, '847731692304792183', '382 Flatbush Ave Apartment 36, Brooklyn, NY 11225, United States', '1998-04-28', 0, 0, 'yrui6', '2002-12-28', 'yrui2001', '2018-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS426761838342', '朱璐', 1, '+44 (151) 341 3059', 0, '382856163700687260', 'No.42 Main building, 248 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1989-05-18', 0, 0, 'zhulu', '2001-01-23', 'lu121', '2011-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS571424830233', '高木海斗', 1, '+44 (1223) 35 2236', 3, '589317441614294238', 'Block 10, 653 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-06-04', 0, 0, 'kaito1945', '2009-02-13', 'kaitot', '2009-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS056294282800', '内田花', 1, '+44 5714 858825', 2, '440144668004538748', 'Unit 40, Oxford Eco Centre, 462 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-05-25', 0, 0, 'hauchida', '2006-03-16', 'uchida4', '2016-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS925539671963', '村田桜', 1, '+86 184-6999-1417', 0, '418617916604624656', '中国中山京华商圈华夏街768号华润大厦5室', '1990-11-12', 0, 0, 'sakuram1968', '2000-08-13', 'mursaku', '2021-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS998456559604', '李致远', 1, '+1 718-300-8614', 1, '559604624052927650', '621 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-10-28', 0, 0, 'lizhiyuan7', '2008-04-19', 'lzh', '2001-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS225280649039', '伊藤拓哉', 1, '+81 3-0161-4540', 3, '483335899949903412', '日本東京品川区東五反田五丁目2番12号41号室', '1995-09-27', 0, 0, 'takuyit', '2006-11-10', 'itot', '2018-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS816395186445', '木下美咲', 1, '+81 70-5594-6316', 3, '785819750723136902', '45-kai, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-05-22', 0, 0, 'misakikin9', '2000-12-18', 'misakkinoshita5', '2006-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS815455762213', '陳嘉欣', 1, '+86 28-8023-4102', 0, '296674511495196350', 'Room 29, 943 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-09-05', 0, 0, 'ckaryan', '2001-01-05', 'karyanchan', '2016-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS615094687632', '阎云熙', 0, '+1 718-337-8270', 3, '392966019951562520', '1 Columbia St Apartment 9, Brooklyn, NY 11231, United States', '1985-12-07', 0, 0, 'yay627', '2021-05-29', 'yyun1970', '2014-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS977628447448', '田中舞', 1, '+81 70-7242-3216', 0, '932777930456859974', '日本なごやし北区清水三丁目19番11号7階', '1996-12-30', 0, 0, 'matanaka', '2004-05-04', 'tanakama', '2002-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS611328410509', '邓致远', 1, '+81 80-3517-4898', 3, '755465927373393588', 'Rm. 49, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-10-24', 0, 0, 'zhiyuanden219', '2002-02-08', 'zdeng', '2000-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS850654962986', '村上美羽', 0, '+81 52-612-9954', 3, '988873100538249574', '日本なごやし守山区瀬古東二丁目171番13号25階', '1993-02-17', 0, 0, 'miumura401', '2008-12-20', 'miu520', '2004-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS348869516990', 'Todd Moreno', 1, '+81 52-301-5668', 2, '370512092653518600', '日本なごやし北区清水三丁目19番17号16号室', '1990-03-18', 0, 0, 'mtodd56', '2007-01-19', 'toddm1', '2020-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS941357257883', '谭晓明', 0, '+81 80-0142-6237', 2, '954886352539630849', 'Rm. 8, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-01-22', 0, 0, 'tanxiaoming', '2015-03-24', 'xiaomingt67', '2016-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS301982458650', '萬浩然', 1, '+44 5231 752491', 2, '538690075487573565', 'Unit 33, Oxford Eco Centre, 177 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-07-10', 0, 0, 'hym', '2015-08-15', 'mhoyin1', '2020-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS853445831385', '野口拓哉', 1, '+1 212-931-8590', 4, '985523983992704909', '490 Canal Street Apt 28, New York, NY 10013, United States', '1985-10-28', 0, 0, 'taknoguchi', '2007-01-03', 'nt705', '2014-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS872940812656', '遠藤七海', 0, '+81 11-297-3164', 2, '286356616716779865', '日本札幌白石区菊水三条五丁目4番13号38階', '1990-11-02', 0, 0, 'enanam', '2021-06-02', 'nanamiendo51', '2018-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS273282714163', 'Robert Soto', 1, '+44 5917 570850', 0, '994886929690273112', 'Unit 16, Oxford Eco Centre, 579 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-07-31', 0, 0, 'sotor', '2011-05-08', 'soto8', '2018-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS571430920449', '成慧敏', 0, '+81 52-307-9357', 0, '647480818117394363', '14F, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1996-12-05', 0, 0, 'shingwm8', '2017-11-18', 'waimashing9', '2021-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS963527501500', '周頴璇', 1, '+44 5059 099215', 4, '619760875300191855', 'Flat 27, 708 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-09-21', 0, 0, 'wschow', '2007-08-10', 'chow6', '2014-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS134645974378', 'Walter Thomas', 1, '+86 148-3279-2888', 3, '406144284944646702', 'Room 1, CR Building, 764 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1999-02-26', 0, 0, 'thomawalter8', '2008-01-23', 'walt', '2000-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS475757596123', '朱家玲', 1, '+86 755-3449-4020', 2, '086392658852854870', 'Room 15, CR Building, 341 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-10-17', 0, 0, 'ckl1109', '2020-10-10', 'ckaling', '2021-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS131980986478', '野口光莉', 0, '+81 11-724-6457', 1, '098971093556525428', '日本札幌中央区宮の森四条六丁目1番6号16階', '1985-10-31', 0, 0, 'noghi5', '2006-09-08', 'hikarnoguchi521', '2000-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS622968279699', '小川蒼士', 0, '+81 90-5783-7371', 2, '643804819157949792', 'Rm. 16, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-01-01', 0, 0, 'aoshi5', '2003-01-19', 'oaoshi', '2004-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS756416454798', '葉玲玲', 1, '+86 21-590-8230', 1, '395640365891617050', '中国上海市徐汇区虹桥路269号17室', '1989-04-02', 0, 0, 'yiplin60', '2008-04-14', 'llyi', '2020-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS967862506876', '石井拓哉', 0, '+81 80-0656-2198', 3, '259958089580474013', '日本札幌中央区宮の森四条六丁目1番12号47号室', '1990-11-29', 0, 0, 'takuya2', '2015-05-14', 'takuyishi517', '2005-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS887312931465', '林慧敏', 1, '+86 21-793-0282', 3, '369674892360491089', '中国上海市浦东新区橄榄路367号23楼', '1988-01-11', 0, 0, 'wmlam', '2019-07-25', 'waiman417', '2019-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS747228634305', 'Susan Perez', 0, '+86 755-6861-0633', 0, '774505372273574877', 'Room 44, CR Building, 221 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-02-14', 0, 0, 'perezsusan', '2009-07-16', 'susanperez3', '2006-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS477975531500', '關朝偉', 0, '+86 148-0127-5005', 1, '783405336915369542', 'No.25 building, 759 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-11-02', 0, 0, 'cwkwan', '2008-12-20', 'cwk6', '2017-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS243338562632', '曹朝偉', 0, '+44 7194 092172', 2, '796850674976208397', 'Flat 1, 394 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-10-18', 0, 0, 'chiuwaich', '2021-05-16', 'chocw829', '2020-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS107302041756', '薛慧敏', 1, '+81 80-1039-0746', 2, '255478600200379854', '日本東京渋谷区代々木二丁目3番3号46階', '1993-05-23', 0, 0, 'waiman1022', '2008-10-19', 'wmsit', '2000-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS276779754118', '钟岚', 0, '+86 152-6986-8529', 2, '457511654797342146', 'Room 20, CR Building, 573 Ganlan Rd, Pudong, Shanghai, China', '1986-01-16', 0, 0, 'lanzh', '2000-08-25', 'zhong1', '2020-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS969545127995', '丸山明菜', 0, '+1 330-916-1459', 0, '764309952290872740', '704 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1994-10-10', 0, 0, 'amaruyama126', '2008-12-30', 'maruyamaa', '2020-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS388650071007', '吳永權', 1, '+86 160-3291-5852', 2, '003499612880780346', 'No.30 building, 603 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-10-16', 0, 0, 'wingkuenng', '2010-07-24', 'ngwk09', '2016-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS106307102239', 'Ray Parker', 0, '+86 142-6214-2372', 3, '988005047488122779', 'Room 17, CR Building, 943 Jianxiang Rd, Pudong, Shanghai, China', '1996-05-30', 0, 0, 'parkerray', '2017-01-05', 'rapar', '2008-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS171503741287', '和田陸', 0, '+44 7874 042461', 1, '543589995161637312', 'Unit 14, Oxford Eco Centre, 15 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-12-28', 0, 0, 'riku822', '2009-10-13', 'rwada', '2017-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS230436646589', '梁青雲', 1, '+81 3-5802-9934', 0, '928399081688389590', '日本東京千代田区丸の内一丁目6番17号50階', '1992-07-04', 0, 0, 'chingwanleung', '2002-07-12', 'leung5', '2014-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS464001366371', '常嘉伦', 0, '+44 7957 904174', 1, '841140853016387868', 'Block 13, 716 New Street, Birmingham, B2 4DB, United Kingdom', '1997-09-03', 0, 0, 'changjialun', '2020-04-26', 'changjialun526', '2000-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS178478635873', 'Amanda Hunt', 0, '+44 7762 599872', 3, '489680054781774953', 'Flat 1, 646 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-07-31', 0, 0, 'hunt406', '2021-05-03', 'amandahunt1940', '2004-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS133841979991', '冯云熙', 0, '+1 838-532-6755', 3, '449803660673698735', '886 Lark Street Apartment 12, Albany, NY 12210, United States', '1996-09-18', 0, 0, 'fengyunxi2006', '2012-05-26', 'fengy7', '2007-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS643837368595', '小川和真', 0, '+44 (116) 346 0076', 0, '216701785556997816', 'Block 35, 625 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-04-21', 0, 0, 'kazumaogawa58', '2000-05-27', 'kazog3', '2018-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS063737389233', '許朝偉', 0, '+81 70-7619-0728', 3, '188452089675544067', '日本札幌豊平区豊平三条十三丁目3番8号50号室', '1998-08-06', 0, 0, 'cwhui910', '2001-07-15', 'cwhui', '2016-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS725636581949', '邵頴思', 0, '+86 175-8866-0192', 2, '114497305394136485', 'Room 21, 511 Tianhe Road, Tianhe District, Guangzhou, China', '1998-06-22', 0, 0, 'wss415', '2007-09-29', 'siuwingsze', '2001-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS266890599767', '岡本瑛太', 0, '+81 3-4917-3872', 2, '990623728558756981', '日本東京千代田区丸の内一丁目6番11号19階', '1990-03-10', 0, 0, 'eo1960', '2017-05-31', 'eiokamoto', '2009-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS026676944830', '崔永權', 0, '+81 3-0098-7815', 2, '215659168984396135', 'Rm. 27, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1997-06-07', 0, 0, 'wingkuen61', '2004-07-21', 'wkchoi6', '2018-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS288946724843', '今井愛梨', 0, '+1 614-743-4530', 0, '577381112596653642', '40 Tremont Road Suite 11, Columbus, GA 43212, United States', '1997-08-17', 0, 0, 'aiim', '2021-06-04', 'imaairi', '2003-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS457770523874', '范岚', 0, '+81 52-645-0952', 3, '174609222025341265', '日本なごやし北区清水三丁目19番10号43階', '1995-02-17', 0, 0, 'fan75', '2005-09-24', 'fan206', '2005-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS786441400670', '木下一輝', 1, '+44 (161) 106 8700', 3, '766388270500474117', 'Unit 44, Oxford Eco Centre, 667 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-07-30', 0, 0, 'ikki10', '2013-06-02', 'kinoi', '2022-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS441079855844', 'William Garcia', 1, '+86 158-7736-6467', 2, '675167361185988949', '中国深圳龙岗区学园一巷235号32号楼', '1993-07-02', 0, 0, 'willig', '2003-11-14', 'gawilli', '2015-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS252050086093', '梁睿', 0, '+81 52-614-6388', 0, '218638729588089994', '日本なごやし瑞穂区河岸町四丁目20番7号42号室', '1990-02-04', 0, 0, 'liangr', '2018-08-29', 'ruiliang', '2010-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS946639086134', '安藤絢斗', 1, '+1 213-450-5280', 4, '012877690341012014', '960 S Broadway Apartment 29, Los Angeles, CA 90015, United States', '1998-06-27', 0, 0, 'andoayato', '2002-10-12', 'aaya', '2003-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS247876005744', '高國權', 0, '+44 5964 307532', 2, '898054664759989828', 'Flat 18, 431 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-08-04', 0, 0, 'kao1998', '2010-04-23', 'kkkao426', '2017-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS343394583169', 'Anne Thompson', 0, '+86 152-4686-7635', 1, '726509247265977424', '中国北京市海淀区清河中街68号686号1楼', '1998-02-13', 0, 0, 'thompson5', '2000-11-06', 'thompsonanne2', '2002-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS248851658985', '西村湊', 1, '+86 10-4338-4200', 1, '989858785260768981', 'No.41 building, 580 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-08-26', 0, 0, 'minaton', '2005-01-28', 'nishimuram2014', '2009-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS946892614986', '吳惠敏', 0, '+86 185-6775-3919', 3, '902026728392965485', 'Room 20, CR Building, 83 Dong Zhi Men, Dongcheng District, Beijing, China', '1998-11-28', 0, 0, 'waiman7', '2019-10-03', 'ngwm', '2018-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS630047753886', '橋本陸', 1, '+1 213-144-4589', 1, '438428245825834572', '263 Sky Way Apt 32, Los Angeles, CA 90043, United States', '1995-09-09', 0, 0, 'rikuhashimoto', '2007-05-28', 'rikuha', '2001-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS959939477573', '張頴璇', 1, '+81 11-744-3532', 2, '162554550844909925', '31F, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-10-30', 0, 0, 'wingsuen54', '2002-06-08', 'cheungws7', '2018-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS690921405768', '宋震南', 1, '+1 312-138-9370', 2, '480655522047981959', '466 North Michigan Ave Apartment 10, Chicago, IL 60611, United States', '1990-07-24', 0, 0, 'zhenson', '2017-03-17', 'sozh', '2010-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS172700141048', '武晓明', 0, '+81 66-897-4329', 1, '711561656993871364', 'Rm. 49, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-02', 0, 0, 'wuxiaoming1008', '2003-10-15', 'wux8', '2011-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS081816023206', '夏晓明', 0, '+44 5431 611539', 3, '391953759400059047', 'Unit 25, Oxford Eco Centre, 721 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-11-11', 0, 0, 'xiaoxia', '2019-10-06', 'xiaxi', '2022-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS379180094104', 'Jane Sanchez', 0, '+44 7154 461865', 2, '912164795167250392', 'Unit 42, Oxford Eco Centre, 557 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-12-02', 0, 0, 'sanchezj', '2021-02-14', 'jane86', '2005-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS039727022627', '常璐', 0, '+86 760-0425-1310', 2, '304675386122103015', 'No.20 building, 255 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-08-15', 0, 0, 'cl2016', '2004-08-13', 'lch722', '2018-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS943313980155', '金子愛梨', 1, '+86 755-891-8456', 3, '645755440632274537', 'Room 49, 543 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-05-13', 0, 0, 'kaneko102', '2015-07-09', 'akaneko', '2000-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS141453230896', '邱慧珊', 1, '+81 80-8983-9280', 2, '651954825416188376', '28-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-08-12', 0, 0, 'yau13', '2011-11-04', 'yaws6', '2012-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS013973545359', 'Russell Scott', 1, '+44 7879 631755', 1, '119470492643667316', 'Flat 20, 166 New Street, Birmingham, B2 4DB, United Kingdom', '1989-11-07', 0, 0, 'scottr1230', '2016-01-14', 'rs1944', '2007-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS803971301924', '石川桜', 0, '+81 80-0537-9707', 4, '724231795686914309', '日本なごやし北区楠味鋺三丁目80番13号1階', '1994-01-09', 0, 0, 'ishikawa617', '2011-03-20', 'sakura06', '2015-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS040379060037', '馬詠詩', 1, '+86 135-6456-5150', 1, '151731835167169546', '中国成都市成华区二仙桥东三路972号华润大厦21室', '1985-12-09', 0, 0, 'mawingsze7', '2013-03-28', 'wingsze5', '2016-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS585026325896', '石璐', 1, '+81 11-797-5343', 1, '796192779008385475', '33F, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-12-18', 0, 0, 'shi10', '2017-05-16', 'slu', '2021-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS558985692858', '田中聖子', 0, '+86 10-138-8403', 1, '524124578026680320', '中国北京市房山区岳琉路711号47号楼', '1990-04-23', 0, 0, 'tanakas', '2002-01-29', 'seiko1117', '2020-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS959326175754', '胡晓明', 0, '+81 52-371-2493', 4, '841243957939852861', 'Rm. 32, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-03-04', 0, 0, 'huxiaoming', '2006-01-09', 'hxi1954', '2003-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS118037684878', '鄺國賢', 1, '+1 838-324-7998', 3, '096241284416227074', '83 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1988-09-20', 0, 0, 'kwokyin823', '2017-06-16', 'kwongkwokyin', '2006-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS540512419595', '陆詩涵', 1, '+81 11-819-9950', 3, '230803497284599215', '日本札幌清田区真栄四条五丁目19番3号33号室', '1994-07-08', 0, 0, 'shihan8', '2019-10-20', 'lushihan2005', '2015-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS596888763601', 'Linda Brown', 1, '+86 10-885-0563', 3, '520946246998167381', '中国北京市西城区西長安街247号21室', '1994-07-16', 0, 0, 'lbrow1', '2007-05-01', 'lbrow', '2016-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS256302059618', 'Frederick Payne', 1, '+86 20-756-6056', 3, '158863684576497463', '中国广州市天河区天河路451号18室', '1985-02-18', 0, 0, 'frederick1978', '2006-09-11', 'paynef', '2001-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS737415919065', '高田大和', 1, '+81 80-2650-5944', 4, '156696792889178832', '日本札幌厚別区上野幌一条二丁目1番9号42号室', '1997-11-25', 0, 0, 'yamato8', '2015-05-12', 'yamato98', '2006-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS803641860825', '韦子异', 1, '+86 769-591-8590', 4, '347586375907413863', '中国东莞环区南街二巷199号40室', '1985-05-18', 0, 0, 'ziyiwei96', '2015-03-13', 'zwe81', '2006-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS396718889569', '谢宇宁', 1, '+81 80-0354-0870', 0, '984656107160840112', '日本東京品川区東五反田五丁目2番5号12階', '1995-08-20', 0, 0, 'xy56', '2002-02-20', 'xiyuni2000', '2010-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS521484127212', 'John Perez', 1, '+86 194-2803-6384', 3, '891257067551963240', 'Room 36, 745 Sanlitun Road, Chaoyang District, Beijing, China', '1994-01-12', 0, 0, 'pj9', '2007-08-30', 'jop', '2019-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS385927735092', '松井美咲', 0, '+86 769-698-3026', 0, '019733435816989329', '中国东莞珊瑚路870号34栋', '1987-08-26', 0, 0, 'mimatsui', '2018-07-31', 'matsm90', '2002-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS493009996637', '渡部紗良', 1, '+1 718-824-9033', 4, '980726927529857299', '258 Flatbush Ave Suite 45, Brooklyn, NY 11225, United States', '1992-07-05', 0, 0, 'sarawa1', '2000-07-19', 'sara504', '2008-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS726044870909', '小野絢斗', 1, '+86 755-219-4355', 3, '472235733600921711', 'Room 22, 66 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-09-29', 0, 0, 'ayatoono', '2012-04-18', 'onoayato4', '2014-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS954286061689', '王詠詩', 0, '+1 838-752-7428', 3, '899719954122947475', '594 Central Avenue Apartment 5, Albany, NY 12206, United States', '1985-11-01', 0, 0, 'wingszewong131', '2015-04-19', 'wingsze93', '2002-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS299503378942', 'Eva Hunt', 0, '+44 (1223) 59 7886', 2, '413207438370615573', 'Flat 17, 807 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-01-20', 0, 0, 'evahunt', '2021-11-02', 'eh102', '2003-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS688927970781', '高木美月', 0, '+44 7626 514960', 3, '407596257947694470', 'Flat 30, 751 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-03-30', 0, 0, 'tami', '2013-06-21', 'mtakagi5', '2000-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS282307632648', '錢家強', 0, '+86 769-404-9282', 2, '047725975763982692', '32F, 878 Huanqu South Street 2nd Alley, Dongguan, China', '1985-09-27', 0, 0, 'chinkakeung', '2008-03-22', 'chkakeung', '2017-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS825084287447', 'Sharon Clark', 0, '+1 213-725-7817', 3, '546829791064421055', '490 Grape Street Apt 47, Los Angeles, CA 90002, United States', '1993-09-19', 0, 0, 'clarkshar', '2014-07-03', 'sharoncl824', '2001-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS230994195841', 'Thomas Salazar', 1, '+81 70-6615-5137', 2, '167135303586754038', '28F, 1-6-18, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-12-07', 0, 0, 'thomsal', '2017-04-26', 'salazthomas112', '2003-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS731773331326', '贾晓明', 1, '+81 66-251-3761', 3, '931094082644467624', '28F, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-08-15', 0, 0, 'jixia61', '2008-02-29', 'xij508', '2000-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS326499418559', '邱惠妹', 1, '+81 90-5802-0799', 2, '801314221688297461', 'Rm. 28, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-16', 0, 0, 'huimei923', '2019-11-07', 'hmyau', '2019-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS609198721360', 'Jack Vasquez', 1, '+81 90-7624-6467', 2, '869545542009510807', 'Rm. 36, 12 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-07-01', 0, 0, 'jackvasquez10', '2014-12-21', 'jack1', '2017-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS052286427260', '戚慧琳', 1, '+86 159-8028-5657', 1, '297195321501542605', '中国北京市朝阳区三里屯路939号38室', '1990-02-17', 0, 0, 'wailam9', '2010-08-10', 'wailamchic1114', '2004-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS246659042802', '王詠詩', 1, '+81 52-496-2321', 2, '725438219646394030', '16-kai, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1996-11-16', 0, 0, 'wong623', '2017-04-05', 'wingsze908', '2019-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS333151527682', '梁晓明', 1, '+44 (151) 408 5006', 3, '769411138477557755', 'Flat 9, 890 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-11-12', 0, 0, 'lx99', '2008-07-13', 'liang716', '2000-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS959163852301', '吳力申', 1, '+86 28-9748-3772', 1, '649184731237032864', '中国成都市成华区玉双路6号536号15室', '1992-07-06', 0, 0, 'ng702', '2005-06-10', 'likng5', '2018-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS277726585257', '斎藤涼太', 0, '+86 20-806-8613', 0, '352223637598280340', 'No.7 building, 540 Tianhe Road, Tianhe District, Guangzhou, China', '1994-10-21', 0, 0, 'sryot', '2015-08-02', 'rsaito703', '2006-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS606985018502', 'Charlotte Watson', 1, '+86 769-3653-2530', 0, '069879279177859939', '41F, 535 Shanhu Rd, Dongguan, China', '1994-03-04', 0, 0, 'watsonc', '2004-01-15', 'charlotte7', '2008-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS324098480889', '韦致远', 1, '+1 330-176-6219', 3, '108098648512531040', '66 Riverview Road Suite 48, Akron, OH 44313, United States', '1991-03-05', 0, 0, 'zwei67', '2019-09-19', 'zw7', '2018-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS381070046625', '叶晓明', 0, '+86 167-2131-8825', 1, '669924216878670383', '中国广州市白云区小坪东路112号27室', '1988-01-03', 0, 0, 'yexiaoming', '2010-08-16', 'xiay', '2018-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS566856928297', '丸山陽太', 1, '+86 168-2794-4468', 0, '936243718426096611', '中国北京市海淀区清河中街68号964号16号楼', '1986-04-22', 0, 0, 'yotamaruyama1122', '2022-03-01', 'mayota93', '2012-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS563434730391', '石井涼太', 0, '+86 178-5264-9615', 0, '394979765086586003', 'No.40 building, 561 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-03-13', 0, 0, 'ishryota', '2018-03-13', 'iryota224', '2013-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS263816910873', '戴宇宁', 0, '+81 90-9153-6550', 4, '881444859448615904', '日本なごやし北区清水三丁目19番17号8階', '1986-06-05', 0, 0, 'daiyu', '2003-01-20', 'yunidai', '2014-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS255991253474', 'Eddie Ross', 0, '+86 10-500-6725', 3, '902187740384015819', '中国北京市西城区复兴门内大街983号华润大厦33室', '1996-05-13', 0, 0, 'eddie77', '2012-05-11', 'edro', '2001-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS244598312802', '近藤蒼士', 0, '+44 7327 700844', 4, '333119789462734306', 'Unit 29, Oxford Eco Centre, 928 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-05-22', 0, 0, 'kondoaoshi', '2003-08-26', 'akondo', '2019-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS853384743098', '邱子异', 0, '+86 769-5017-7620', 3, '797032921948022066', 'No.45 building, 796 Kengmei 15th Alley, Dongguan, China', '1998-02-20', 0, 0, 'qziyi1128', '2019-07-04', 'ziq', '2008-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS162119161292', '村田葉月', 0, '+86 141-7922-6130', 3, '897377502587790152', '中国中山京华商圈华夏街598号29室', '1990-05-27', 0, 0, 'murata107', '2017-11-18', 'hmurata05', '2010-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS900687557059', '黄子韬', 0, '+1 614-272-9072', 4, '609366241031976465', '24 East Cooke Road Apt 24, Columbus, GA 43214, United States', '1985-07-31', 0, 0, 'huangzitao', '2000-07-27', 'zhuang1', '2010-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS582215773999', '桜井聖子', 0, '+44 (1865) 23 9139', 1, '848113572078990404', 'Flat 12, 671 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-08-30', 0, 0, 'sakurseiko', '2008-01-28', 'sakurais', '2009-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS312014555010', '小野蓮', 1, '+86 769-9123-8673', 3, '470821344861155560', 'Room 28, CR Building, 575 Kengmei 15th Alley, Dongguan, China', '1995-01-02', 0, 0, 'renon', '2014-08-06', 'onore1013', '2015-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS58525615', '森田結翔', 0, '+86 172-0862-6583', 4, '989769667445921425', 'No.43 building, 92 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-08-23', 0, 0, 'moritayuito', '2010-02-15', 'moritayuito', '2001-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS28708110', '斎藤詩乃', 0, '+86 21-376-1814', 3, '481456160464972549', '11F, 147 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-11-22', 0, 0, 'shinos', '2007-08-22', 'shins5', '2002-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS31374205', '王慧珊', 1, '+86 137-2514-9400', 1, '807025892030392709', '中国深圳罗湖区田贝一路198号21室', '1990-08-30', 0, 0, 'wws', '2008-08-15', 'wows', '2006-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS07102101', '韩安琪', 1, '+81 90-3236-5837', 4, '423912402208871718', 'Rm. 1, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-17', 0, 0, 'anqi10', '2020-09-28', 'haa', '2019-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS46749744', 'Anthony Hughes', 1, '+81 90-5526-0522', 3, '827925250053739393', 'Rm. 33, 2-1-6 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-08-02', 0, 0, 'anthonyhughes1', '2001-03-29', 'anthony1118', '2004-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS35847952', '阮志明', 1, '+44 (151) 702 7765', 2, '649891922616841764', 'Block 11, 812 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-06-06', 0, 0, 'chiming1983', '2008-06-04', 'chimingyue', '2020-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS35866068', '梁國賢', 1, '+81 70-8654-7682', 1, '267401616162851465', '日本おおさかし西成区出城一丁目1番7号47号室', '1993-05-29', 0, 0, 'lky621', '2006-10-04', 'kyleun8', '2007-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS27046109', '盧慧敏', 1, '+1 212-394-7578', 4, '237958070900382318', '798 Canal Street 3rd Floor, New York, NY 10013, United States', '1996-04-21', 0, 0, 'lowa', '2005-12-06', 'wmlo', '2017-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS68471469', '龚岚', 0, '+81 90-4389-0100', 1, '001581274433920073', 'Rm. 30, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-15', 0, 0, 'gonglan10', '2007-06-04', 'golan99', '2019-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS97147709', 'Brian Reed', 1, '+86 10-999-7437', 3, '953906369768826350', '中国北京市海淀区清河中街68号62号35号楼', '1990-05-29', 0, 0, 'brianreed', '2010-10-23', 'reedbrian', '2002-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS56170683', '周致远', 1, '+1 718-118-3791', 3, '063119666160942417', '931 Bergen St Suite 25, Brooklyn, NY 11217, United States', '1991-11-28', 0, 0, 'zhouzhiyuan1981', '2002-09-19', 'zhou1203', '2009-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS63499013', '秦詩涵', 1, '+81 3-2914-7152', 3, '853817321130864703', 'Rm. 35, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-05-24', 0, 0, 'qs1', '2006-11-18', 'shihan1960', '2007-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS29931240', '錢力申', 0, '+1 718-026-8254', 2, '344147572753346543', '519 Bergen St Suite 24, Brooklyn, NY 11217, United States', '1992-07-07', 0, 0, 'chin2017', '2012-01-22', 'chils', '2019-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS62328886', 'Denise Jackson', 1, '+81 52-828-4498', 1, '804211070119538836', '34-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-09-23', 0, 0, 'jacksonden6', '2004-06-30', 'jadenise57', '2008-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS17318422', 'Earl Payne', 1, '+86 197-1917-8334', 2, '686463537033339984', '46F, 759 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-05-21', 0, 0, 'payneea', '2008-06-16', 'pearl64', '2011-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS11647274', '谢安琪', 1, '+86 132-3708-4184', 2, '089520862214764634', 'No.2 building, 620 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1995-10-31', 0, 0, 'anqxie815', '2000-01-11', 'axie10', '2018-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS89925687', 'Stephen Lee', 0, '+1 330-597-3445', 1, '712735700182022995', '760 West Market Street Apartment 39, Akron, OH 44333, United States', '1987-12-12', 0, 0, 'lstephen', '2012-02-29', 'ls3', '2016-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS35851302', '青木凛', 1, '+1 312-147-8004', 2, '171977407769503301', '656 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1992-10-04', 0, 0, 'aorin213', '2017-08-03', 'riao', '2008-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS20382146', '岡本百花', 0, '+1 838-735-3852', 2, '588149021418406042', '325 Broadway Apartment 50, Albany, NY 12207, United States', '1986-04-01', 0, 0, 'moo', '2018-03-19', 'momokaokamo', '2017-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS24653250', '任青雲', 0, '+1 838-729-6162', 2, '291148644673002087', '63 State Street Suite 36, Albany, NY 12203, United States', '1985-01-18', 0, 0, 'yam4', '2008-04-30', 'yamchingwan', '2019-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS96392788', '馬浩然', 1, '+86 186-8410-7223', 3, '399000956927662646', '18F, 137 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-05-25', 0, 0, 'mahoyin209', '2019-02-22', 'ma4', '2005-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS18378069', '莫安琪', 0, '+81 11-657-5541', 1, '371873341299480184', 'Rm. 39, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-09-17', 0, 0, 'amo', '2002-06-12', 'moanqi', '2011-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS62512566', '朱麗欣', 1, '+86 145-2073-6408', 2, '810865585262395135', '中国北京市东城区东单王府井东街5号华润大厦2室', '1989-11-30', 0, 0, 'laiyach', '2012-12-21', 'chu4', '2000-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS59392765', '關頴思', 1, '+81 90-3243-1894', 1, '204615058967298925', '日本札幌白石区菊水三条五丁目4番2号19階', '1989-07-10', 0, 0, 'wskwan', '2011-08-05', 'wingszekwan', '2001-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS93685640', '何璐', 0, '+81 66-682-2462', 4, '186677636404310290', '日本おおさかし西成区出城一丁目1番11号13号室', '1998-12-14', 0, 0, 'hl89', '2018-01-16', 'he5', '2005-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS15806775', 'Robin Allen', 1, '+86 193-9188-0671', 1, '173137143055863057', '中国成都市成华区玉双路6号775号13楼', '1992-12-16', 0, 0, 'allenrob', '2011-11-20', 'alrobin801', '2001-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS52912158', '彭嘉伦', 0, '+81 90-9341-9616', 2, '659656903096836770', '日本おおさかし平野区加美東四丁目9番19号47階', '1985-05-29', 0, 0, 'jialunpeng', '2002-07-07', 'pjialun', '2014-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS11652538', '曹霆鋒', 0, '+86 769-765-7136', 2, '798793874817869184', 'No.24 building, 536 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-04', 0, 0, 'cting18', '2015-03-26', 'tingfungcho', '2011-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS86182893', '周子异', 1, '+44 (161) 688 0154', 0, '849379671334474064', 'Unit 33, Oxford Eco Centre, 617 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-07-13', 0, 0, 'zhziyi', '2004-12-05', 'zhoziyi2008', '2019-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS39941457', '遠藤彩乃', 1, '+81 66-485-4584', 2, '255130626870419533', '日本おおさかし近江堂一丁目7番2号15号室', '1996-01-05', 0, 0, 'ayanoe', '2006-02-24', 'endayano5', '2006-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS28191789', 'April Lopez', 0, '+86 183-5018-5802', 2, '929068418348391598', '中国北京市东城区东单王府井东街561号26栋', '1987-07-26', 0, 0, 'aprillopez', '2001-04-16', 'alopez8', '2019-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS34784875', '劉杰倫', 1, '+1 212-215-1591', 1, '020513924629050543', '818 Fifth Avenue Apt 32, New York, NY 10017, United States', '1986-06-18', 0, 0, 'lachie214', '2007-04-26', 'chiehlunlau124', '2005-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS60612595', '原田百花', 1, '+44 5551 910035', 3, '241781395255290995', 'Unit 10, Oxford Eco Centre, 653 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-04-01', 0, 0, 'momoka915', '2013-12-20', 'hamomoka', '2008-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS40883705', '严璐', 1, '+86 28-609-5597', 2, '661189996663906825', 'Room 5, CR Building, No. 634, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-11-01', 0, 0, 'yan1124', '2011-10-30', 'luy106', '2003-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS48615433', '阮國賢', 0, '+86 197-8619-5516', 3, '741045282398218594', 'No.30 building, 175 Yueliu Rd, Fangshan District, Beijing, China', '1992-10-27', 0, 0, 'kwokyiny723', '2016-12-24', 'kwokyin5', '2014-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS91687139', '山下花', 0, '+86 178-2211-8483', 2, '220235593070330666', 'Room 1, 89 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-12-24', 0, 0, 'hanayamashita', '2022-01-03', 'yamashitaha6', '2000-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS40643678', '麥德華', 0, '+81 70-9237-8974', 0, '057852045692747035', '日本なごやし熱田区千年二丁目5番10号14号室', '1990-01-06', 0, 0, 'twmak', '2014-03-14', 'maktakwah', '2022-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS40862434', '雷慧嫻', 1, '+1 718-203-6062', 2, '490487213121440666', '401 Flatbush Ave Apartment 8, Brooklyn, NY 11225, United States', '1989-05-04', 0, 0, 'louiwaihan', '2004-07-09', 'louiwaihan', '2009-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS65061793', '毛思妤', 1, '+44 7212 049757', 4, '727205082174464937', 'Unit 8, Oxford Eco Centre, 517 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-07-13', 0, 0, 'szeyumo9', '2004-09-29', 'szeyumo3', '2012-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS33930036', '傅致远', 1, '+81 74-958-6179', 4, '169628545847398932', '日本ならし大和郡山市本庄町一丁目1番2号4階', '1996-05-31', 0, 0, 'fuz5', '2000-11-04', 'fuzhi', '2010-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS25156841', 'Carmen Miller', 0, '+81 74-066-8409', 1, '316858985457035264', '日本ならし西大寺赤田町一丁目7番3号35階', '1996-05-02', 0, 0, 'carmenmi1981', '2010-10-15', 'carmenmiller44', '2003-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS20091414', '何志明', 1, '+44 5763 915397', 3, '220549147911774251', 'Flat 43, 290 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-08-29', 0, 0, 'hochiming817', '2008-02-04', 'chiming326', '2003-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS71661863', '武璐', 1, '+81 52-204-3103', 3, '592622703890216047', '日本なごやし守山区瀬古東二丁目171番11号3階', '1987-02-27', 0, 0, 'luwu', '2013-05-07', 'luwu915', '2003-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS04651836', '小野凛', 0, '+81 52-653-7359', 0, '584696278652562790', '日本なごやし熱田区千年二丁目5番17号20階', '1987-04-11', 0, 0, 'onorin627', '2005-03-25', 'riono', '2020-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS44491284', '武田結翔', 0, '+1 312-331-7926', 4, '765726940386291406', '788 Rush Street Apartment 35, Chicago, IL 60611, United States', '1990-08-04', 0, 0, 'yuito721', '2015-05-20', 'yuito423', '2005-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS40764860', '木村絢斗', 0, '+44 (151) 918 6283', 1, '451197963146189125', 'No.2 Main building, 428 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-07-29', 0, 0, 'ayatokimura', '2002-08-29', 'akimura', '2018-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS82987555', '傅梓軒', 1, '+86 147-2242-9966', 2, '393476330684534166', '中国东莞环区南街二巷64号43楼', '1989-08-04', 0, 0, 'tszhinf9', '2013-01-25', 'futh', '2006-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS59269595', '桜井彩乃', 0, '+86 172-7660-0580', 1, '521556341560469418', '中国成都市锦江区人民南路四段196号43栋', '1993-05-16', 0, 0, 'aysaku', '2015-12-23', 'sayano', '2005-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS57752172', 'Kenneth Sanders', 0, '+86 20-781-7253', 0, '469475458831716627', 'Room 14, 799 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-03-22', 0, 0, 'kennsanders', '2007-05-20', 'kennethsan', '2005-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS47822145', 'Shawn Castro', 0, '+44 7712 155114', 1, '970249698166516990', 'No.34 Main building, 875 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1999-02-17', 0, 0, 'cassha', '2000-01-09', 'castrshawn', '2007-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS69552002', '吴杰宏', 0, '+86 21-172-6619', 3, '235207762459922977', '中国上海市浦东新区橄榄路107号32室', '1997-04-13', 0, 0, 'wuj', '2014-05-08', 'jiehowu', '2003-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS04482791', '尹國權', 1, '+44 (1223) 65 6663', 1, '190231837386808758', 'Unit 17, Oxford Eco Centre, 311 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1991-12-23', 0, 0, 'kky623', '2002-03-30', 'kwokkuenyin', '2009-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS78457299', '贺岚', 0, '+81 52-279-8728', 0, '124259489607435637', '日本なごやし瑞穂区河岸町四丁目20番16号8階', '1988-03-22', 0, 0, 'lan1014', '2012-11-07', 'lanhe8', '2020-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS50591116', '宋嘉伦', 1, '+81 80-4005-8576', 1, '395490199995119807', '日本なごやし瑞穂区河岸町四丁目20番19号46階', '1995-07-31', 0, 0, 'jialsong48', '2021-03-09', 'songjialun4', '2013-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS36235192', '小島瑛太', 1, '+1 718-794-5513', 3, '787077759001710373', '776 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1998-02-04', 0, 0, 'kojima9', '2000-07-05', 'kojimaeit', '2017-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS67323751', '方慧敏', 0, '+86 769-2192-0904', 2, '604571773516758581', 'No.28 building, 288 Kengmei 15th Alley, Dongguan, China', '1993-03-10', 0, 0, 'wmf5', '2011-07-06', 'fongwm', '2016-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS13645120', '清水彩乃', 0, '+44 (151) 263 7689', 1, '529829828585989454', 'Unit 5, Oxford Eco Centre, 70 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-05-17', 0, 0, 'ayanoshimizu331', '2007-01-04', 'shimizuayan', '2000-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS72688563', 'Elizabeth Russell', 1, '+86 755-5633-7783', 3, '244531135307152323', 'No.16 building, 93 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1997-03-10', 0, 0, 'russellelizabeth47', '2020-09-20', 'elizabeth1', '2001-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS92330408', 'Earl Roberts', 0, '+86 769-561-2480', 0, '726731038137929238', '中国东莞环区南街二巷285号40号楼', '1988-07-20', 0, 0, 'earlro82', '2004-05-20', 'robere', '2006-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS56984826', 'Ruth Lopez', 0, '+86 10-738-3425', 2, '046091676474741756', '中国北京市海淀区清河中街68号888号19栋', '1991-09-02', 0, 0, 'ruthlop11', '2012-09-03', 'loruth', '2022-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS15977265', '原田七海', 1, '+81 66-034-7785', 0, '363972147476617416', '日本おおさかし西成区天神ノ森二丁目1番5号46階', '1990-12-22', 0, 0, 'haradananami', '2018-02-11', 'haradnanami110', '2021-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS83406738', 'Annie Simmons', 1, '+86 760-0647-5533', 2, '429232723243406757', '中国中山乐丰六路453号39号楼', '1995-05-22', 0, 0, 'ansimm', '2010-04-28', 'annies', '2005-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS80748526', '佘秀文', 1, '+86 176-1223-5259', 3, '553698818559532129', '中国北京市朝阳区三里屯路387号华润大厦47室', '1997-01-13', 0, 0, 'shehsauman', '2002-05-01', 'sheh78', '2008-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS87270118', '林光', 1, '+81 11-079-5581', 1, '758118896809223512', '10-kai, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-05-15', 0, 0, 'hh831', '2017-05-02', 'hikaruhaya', '2021-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS37484580', '鄧發', 0, '+86 28-703-4894', 1, '503784506509177635', '中国成都市成华区二仙桥东三路388号7栋', '1986-03-20', 0, 0, 'fattang', '2022-01-17', 'fat918', '2008-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS14306361', '翁玲玲', 1, '+44 (121) 788 6611', 1, '936443831379239592', 'Unit 7, Oxford Eco Centre, 928 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-22', 0, 0, 'ylingling', '2002-05-06', 'yunglingl10', '2011-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS15577508', '田村健太', 1, '+86 28-219-4483', 1, '143458433406926475', 'No.21 building, 284 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-02-27', 0, 0, 'kentat5', '2018-12-23', 'kentat', '2007-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS38386302', '區志遠', 0, '+86 179-7046-0325', 4, '804802128289066370', '中国东莞坑美十五巷282号1号楼', '1988-12-25', 0, 0, 'auchiyuen', '2017-10-03', 'aucy', '2011-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS50783308', '山口一輝', 0, '+81 66-671-2293', 1, '636093939476406552', '6-kai, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1986-07-21', 0, 0, 'yamaikki', '2015-11-13', 'yamaguchiikki', '2011-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS90217011', '石川聖子', 0, '+44 7967 872285', 3, '119541039199175771', 'Block 19, 162 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-04-16', 0, 0, 'ishisei', '2021-08-06', 'seiko60', '2004-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS11288144', 'Amber Hall', 1, '+86 164-7717-1447', 2, '530243272898525640', 'No.45 building, 918 Kengmei 15th Alley, Dongguan, China', '1998-04-13', 0, 0, 'amberha2', '2013-06-30', 'amberhall', '2001-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS74068951', '野村聖子', 1, '+81 90-7465-0640', 3, '090819547228397450', '13F, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-11-22', 0, 0, 'nomura4', '2005-07-28', 'nomuraseiko9', '2016-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS30130590', '樂國賢', 0, '+81 11-918-4221', 2, '179951575330376361', '22F, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-10-08', 0, 0, 'kwokyinlok4', '2008-04-02', 'lokkw13', '2006-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS66207001', 'Diane Reed', 1, '+44 (151) 967 6112', 1, '608930692366137563', 'No.29 Main building, 5 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-06-28', 0, 0, 'dreed713', '2013-01-27', 'reediane', '2019-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS94346404', '石秀英', 0, '+86 10-0498-4311', 2, '280277766617538582', 'Room 38, 484 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-10-18', 0, 0, 'xiuyingshi80', '2018-02-22', 'xiuyshi3', '2005-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS07039461', '吳慧珊', 1, '+86 154-6387-7309', 1, '555570420140459576', '中国北京市东城区东单王府井东街551号华润大厦36室', '1993-05-12', 0, 0, 'ngws1130', '2018-05-14', 'ngws3', '2017-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS11081295', 'Margaret Morris', 0, '+44 5998 304522', 3, '813631347495919907', 'Block 22, 132 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-11-13', 0, 0, 'margaretm', '2000-06-26', 'margmorris65', '2017-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS11377099', '郭青雲', 1, '+86 10-874-3584', 3, '444973604953052332', '36F, 225 West Chang''an Avenue, Xicheng District, Beijing, China', '1997-04-10', 0, 0, 'kwok707', '2005-02-10', 'kchingwan1', '2020-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS70731851', '陳頴思', 0, '+44 (116) 699 0042', 1, '798408476526877206', 'Block 38, 210 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1992-02-02', 0, 0, 'chwingsze4', '2016-05-12', 'chanwingsze', '2017-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS64216029', 'Virginia Mcdonald', 1, '+81 90-5604-4949', 3, '413825086926116276', 'Rm. 35, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1985-02-02', 0, 0, 'mvirginia328', '2011-10-31', 'mcdonald701', '2019-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS06151249', 'Barbara Spencer', 1, '+44 7915 988275', 0, '238125946057137788', 'No.25 Main building, 557 Maddox Street, London, W1S 1PU, United Kingdom', '1990-02-24', 0, 0, 'sb43', '2008-02-10', 'spencerbarba9', '2014-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS66240609', 'Carolyn Johnson', 0, '+44 7181 308075', 2, '274259402571492549', 'Unit 30, Oxford Eco Centre, 519 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-16', 0, 0, 'cajohnson', '2004-09-13', 'carolyn4', '2019-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS61712636', '平野光莉', 1, '+86 154-7164-2088', 1, '951090972231284821', '中国深圳福田区景田东一街975号40室', '1986-08-07', 0, 0, 'hikarih', '2019-05-19', 'hiranohikari401', '2019-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS11525445', '葉嘉欣', 0, '+86 159-3757-4997', 2, '218606609640214276', '中国北京市西城区西長安街849号30栋', '1986-05-20', 0, 0, 'kyyip', '2020-05-10', 'yipkarya', '2020-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS46232742', '中川葉月', 1, '+44 (1223) 60 2045', 1, '142837793247659044', 'Unit 23, Oxford Eco Centre, 650 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-09-14', 0, 0, 'nakagawahazuki6', '2014-05-05', 'hnak10', '2005-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS18234224', 'Arthur Crawford', 1, '+81 3-1143-4915', 0, '590865762589861152', '日本東京港区東新橋一丁目5番19号36階', '1989-06-09', 0, 0, 'crawfa', '2008-11-17', 'craarth6', '2007-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS25316221', 'Victor Griffin', 1, '+86 146-8699-5864', 0, '916917321487269455', 'Room 14, 101 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-12-23', 0, 0, 'victor14', '2014-02-13', 'griffinvictor', '2014-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS22891123', '原悠人', 1, '+81 70-8461-1927', 3, '474404864216963449', '日本ならし西大寺赤田町一丁目7番9号27号室', '1994-09-07', 0, 0, 'hyuto', '2010-06-07', 'hara2001', '2006-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS21131464', '田村花', 1, '+44 (116) 539 4241', 3, '251782654128546078', 'No.34 Main building, 590 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-02-25', 0, 0, 'tamura731', '2018-08-13', 'tamuhan703', '2016-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS54323936', '潘璐', 1, '+81 70-6509-3346', 1, '216450714533232748', '日本札幌中央区宮の森四条六丁目1番14号44階', '1988-12-24', 0, 0, 'plu', '2017-04-13', 'lupa98', '2010-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS36698719', '廖嘉伦', 1, '+81 3-9689-6770', 2, '794679465786262312', '日本東京渋谷区代々木二丁目3番19号10階', '1996-05-13', 0, 0, 'ljial828', '2010-07-11', 'jialiao46', '2018-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS18635256', '横山蒼士', 0, '+81 66-105-5175', 0, '138908508356555455', '日本おおさかし東住吉区東田辺三丁目27番16号38階', '1990-05-02', 0, 0, 'yaoshi', '2018-10-26', 'yokoyamaaos', '2001-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS10955089', '龚詩涵', 1, '+1 838-487-8892', 2, '957906799845483790', '755 State Street Suite 3, Albany, NY 12203, United States', '1987-02-02', 0, 0, 'shihangong', '2007-12-06', 'gongs6', '2018-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS05567083', 'Dawn Cook', 0, '+44 7764 007107', 2, '044582889660287837', 'No.48 Main building, 460 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-10-04', 0, 0, 'dawn9', '2020-07-06', 'dawnc', '2018-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS21085370', '郑子韬', 1, '+86 21-4616-8361', 2, '262654224988370552', '中国上海市黄浦区淮海中路75号27号楼', '1999-02-21', 0, 0, 'zhengz', '2017-10-06', 'zzit', '2001-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS36625728', 'Jeff Morales', 1, '+86 28-3067-3082', 2, '383491119374377844', '36F, 22 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-05-31', 0, 0, 'jeffm811', '2000-06-22', 'moraj', '2001-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS61409188', 'Carl Aguilar', 0, '+1 213-678-1484', 2, '562778381402104101', '51 S Broadway Suite 41, Los Angeles, CA 90015, United States', '1999-02-02', 0, 0, 'agca', '2015-05-26', 'aguilarcar79', '2012-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS57432093', '山崎詩乃', 0, '+86 21-1259-6141', 3, '813976441628336906', 'No.7 building, 478 Binchuan Rd, Minhang District, Shanghai, China', '1991-10-26', 0, 0, 'yamazakishin', '2004-02-14', 'sy1019', '2015-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS08413533', '黎秀文', 0, '+81 52-895-4300', 3, '428818097721451319', 'Rm. 7, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1986-10-02', 0, 0, 'saumanla2', '2021-09-28', 'saumanlai', '2021-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS90771455', '何仲賢', 0, '+1 614-842-0380', 2, '065340261805645523', '554 Wicklow Road Apt 30, Columbus, GA 43204, United States', '1998-02-15', 0, 0, 'chungyinho9', '2015-09-09', 'hocy', '2012-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS43658395', '洪思妤', 0, '+81 66-986-2801', 1, '132574593431558907', '日本おおさかし西成区出城一丁目1番19号41号室', '1988-12-08', 0, 0, 'hung726', '2007-10-18', 'hungsy5', '2003-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS20372066', 'Shannon Marshall', 1, '+86 146-0556-0964', 0, '779198455042976895', 'Room 28, CR Building, 742 028 County Rd, Yanqing District, Beijing, China', '1986-11-05', 0, 0, 'smarsh103', '2021-05-29', 'marshallsha', '2005-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS75881206', '郝岚', 1, '+86 10-8008-1297', 1, '691512058286692949', 'No.9 building, 429 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-03-06', 0, 0, 'haolan', '2002-05-31', 'lhao', '2003-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS81138850', 'Ricky Flores', 1, '+86 28-7074-4042', 4, '735155563180302093', 'No.44 building, No. 573, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-12-18', 0, 0, 'florer', '2001-08-15', 'fricky', '2022-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS96870878', '毛詩涵', 0, '+81 11-600-8107', 2, '959798636415267889', '日本札幌清田区真栄四条五丁目19番12号32階', '1987-04-15', 0, 0, 'mao921', '2010-08-08', 'mshi', '2004-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS31980960', '中村美緒', 1, '+44 (1865) 30 5278', 2, '137095703395090861', 'Block 2, 762 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-09-02', 0, 0, 'nakammio210', '2013-04-07', 'mio97', '2019-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS19839459', '餘祖兒', 1, '+86 144-2703-0080', 0, '291725055956005545', 'No.41 building, 249 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-02-14', 0, 0, 'yuchoyee', '2013-08-26', 'cyyue10', '2003-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS69965561', '麥國權', 1, '+81 90-4206-8532', 4, '547303950055668880', '24-kai, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-11', 0, 0, 'makkk', '2020-04-12', 'kwokkuen45', '2020-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS75391143', '秦睿', 0, '+81 90-3522-1944', 2, '409495367856304071', '5F, 3-9-12 Gakuenminami, Nara, Japan', '1993-03-13', 0, 0, 'rui4', '2005-05-05', 'ruiqi', '2022-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS21805400', '容朝偉', 0, '+86 769-441-4004', 4, '198168361029006916', '46F, 990 Huanqu South Street 2nd Alley, Dongguan, China', '1987-10-28', 0, 0, 'yung902', '2019-01-15', 'yung222', '2007-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS85341445', '馮慧珊', 1, '+81 80-6347-4775', 2, '379732376766905007', '日本おおさかし西成区天神ノ森二丁目1番4号27階', '1999-02-24', 0, 0, 'waisan1', '2018-07-03', 'fung1973', '2006-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS90689959', '菊地樹', 0, '+81 3-4525-4710', 4, '030619074222415672', '46F, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-01-14', 0, 0, 'itki', '2006-02-23', 'itsukikikuchi', '2000-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS97423980', 'Joan Jordan', 0, '+1 718-641-8473', 2, '019360168839029236', '586 Columbia St Suite 3, Brooklyn, NY 11231, United States', '1988-05-22', 0, 0, 'joan1994', '2011-12-10', 'jordanjoan801', '2013-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS16851805', '山崎蓮', 1, '+86 755-8547-2496', 3, '170875323991063028', '中国深圳龙岗区学园一巷250号35室', '1987-04-09', 0, 0, 'ren5', '2013-01-27', 'yamazakiren', '2009-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS59699780', '戚淑怡', 1, '+44 7171 795733', 4, '501196890399490456', 'Block 10, 986 Regent Street, London, W1B 2LX, United Kingdom', '1998-07-23', 0, 0, 'chicsukyee', '2017-02-23', 'chisukyee', '2018-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS32006178', '黎詩涵', 0, '+81 3-0936-2441', 4, '052686409410323672', '日本東京品川区東五反田五丁目2番11号41号室', '1997-11-13', 0, 0, 'shihanli', '2010-10-11', 'lis03', '2016-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS57574445', 'Eleanor Green', 1, '+81 70-2728-4001', 1, '468263806389402305', '日本なごやし北区清水三丁目19番16号20号室', '1991-05-20', 0, 0, 'greene', '2022-01-05', 'eleang', '2014-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS48979988', '黃家強', 0, '+86 769-412-6152', 1, '379694283764105489', '42F, 489 Dongtai 5th St, Dongguan, China', '1991-12-09', 0, 0, 'kakeungwong', '2017-05-01', 'wkk1026', '2017-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS02462119', '甘安娜', 1, '+81 3-9147-6067', 0, '645265839488201476', '15-kai, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-06-05', 0, 0, 'kamon', '2014-03-10', 'onkam9', '2016-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS95787576', '龚詩涵', 0, '+81 52-968-6647', 0, '168682348747651814', '日本なごやし北区清水三丁目19番8号14号室', '1998-08-19', 0, 0, 'shihangong', '2012-01-01', 'gong50', '2015-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS17863086', '冯杰宏', 0, '+1 330-369-2416', 0, '285878035133965610', '742 Riverview Road Suite 22, Akron, OH 44313, United States', '1989-11-12', 0, 0, 'fengjie2', '2011-07-27', 'feng110', '2019-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS54673681', '朱震南', 1, '+81 3-4474-9659', 3, '178896237130817431', '8-kai, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-02-13', 0, 0, 'zz210', '2009-08-29', 'zhuzhennan', '2011-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS95333800', '孟云熙', 0, '+81 3-6104-0561', 1, '578568867860525411', '日本東京中央区銀座三丁目12番12号50階', '1995-03-19', 0, 0, 'yunxim', '2015-10-23', 'mengyunx603', '2007-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS71645847', '宋云熙', 1, '+86 164-5031-7170', 3, '229770057530423551', 'No.6 building, 783 Yueliu Rd, Fangshan District, Beijing, China', '1994-01-02', 0, 0, 'yunxisong', '2016-03-21', 'yunxi2004', '2002-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS65553305', 'Mark Russell', 1, '+44 7591 062896', 1, '895980460891637602', 'Block 12, 443 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-03-24', 0, 0, 'russell1006', '2021-10-20', 'russellmar', '2005-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS73777145', '伍慧琳', 0, '+81 90-5240-0842', 2, '060527794322631975', '32-kai, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-05-03', 0, 0, 'ngwl', '2006-05-12', 'wailamn', '2011-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS75664684', '加藤凛', 1, '+1 213-511-2137', 2, '183683231656492461', '605 S Broadway Suite 2, Los Angeles, CA 90015, United States', '1988-12-15', 0, 0, 'katori1112', '2006-06-11', 'rk1227', '2008-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS21140222', '盧思妤', 1, '+44 7267 609422', 3, '451284358810025328', 'No.4 Main building, 822 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-04-15', 0, 0, 'losy', '2000-01-29', 'lszeyu75', '2007-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS26779726', 'Timothy Anderson', 1, '+81 70-9858-3052', 3, '487904831703672700', 'Rm. 11, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-12-12', 0, 0, 'tande', '2007-06-05', 'timothy3', '2007-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS15602791', 'Henry Gutierrez', 0, '+86 177-8425-8874', 2, '037071379081851378', '18F, 555 Shennan Ave, Futian District, Shenzhen, China', '1998-05-15', 0, 0, 'henrygutie', '2008-04-15', 'henrygutierrez1201', '2019-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS36913568', '高田百花', 1, '+81 70-1157-2598', 2, '633191357649065191', '日本ならし学園南三丁目9番20号48号室', '1998-12-31', 0, 0, 'takadamomoka', '2008-01-21', 'momoka60', '2005-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS00225931', '李宇宁', 0, '+86 140-9453-8638', 1, '251543477477178837', '中国北京市海淀区清河中街68号300号35栋', '1993-09-09', 0, 0, 'yuli', '2017-06-17', 'yuningli1', '2017-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS62684725', '罗子韬', 1, '+44 (1865) 12 8116', 0, '853434216106626113', 'Unit 5, Oxford Eco Centre, 649 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-10-02', 0, 0, 'zitl', '2005-07-26', 'luo2017', '2002-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS35057060', '麥安琪', 1, '+1 213-116-6192', 4, '225549042293119169', '687 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1989-02-20', 0, 0, 'onkay6', '2019-02-26', 'mak6', '2013-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS31302111', 'Nathan Phillips', 1, '+86 21-376-4147', 2, '974852575011289564', '中国上海市浦东新区橄榄路895号14楼', '1994-11-23', 0, 0, 'nathanphill', '2003-11-01', 'nathaphil2', '2009-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS02567562', '鄭慧敏', 0, '+81 3-3071-9081', 3, '465331124513738775', '24-kai, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-10-23', 0, 0, 'chewm', '2005-06-10', 'cwaim1008', '2015-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS74886243', '遠藤美緒', 0, '+44 (161) 652 9493', 1, '159699475659611936', 'No.26 Main building, 575 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-06-26', 0, 0, 'mioendo', '2013-07-01', 'enmi', '2003-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS18636911', '韩宇宁', 1, '+81 80-0561-6000', 2, '414778055349303688', '22-kai, 3-9-2 Gakuenminami, Nara, Japan', '1997-10-22', 0, 0, 'yh4', '2015-04-01', 'han1007', '2014-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS04839308', 'Henry Dixon', 1, '+81 3-1420-3063', 4, '723982164849809291', '11-kai, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1985-07-11', 0, 0, 'henrdix', '2003-02-19', 'henryd', '2008-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS07454744', 'Tammy Wright', 1, '+81 70-3994-7806', 1, '929850642707666157', '日本東京千代田区丸の内一丁目6番14号38階', '1995-09-08', 0, 0, 'wright3', '2004-05-09', 'wtam211', '2003-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS14865840', '容明詩', 0, '+86 20-0988-7049', 3, '835277364182906915', 'Room 8, CR Building, 969 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1989-04-25', 0, 0, 'yms', '2021-08-21', 'miyun228', '2014-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS01686138', '鄧志遠', 1, '+81 90-3500-3797', 1, '012318034169334907', '日本なごやし守山区瀬古東二丁目171番12号26号室', '1992-04-10', 0, 0, 'tcy', '2007-12-17', 'tachiyuen', '2012-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS87348419', '姚慧敏', 1, '+86 10-864-4812', 3, '524462686999241584', '中国北京市延庆区028县道357号49楼', '1985-07-20', 0, 0, 'waimanyeow', '2004-04-19', 'waiman6', '2013-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS41982600', 'Catherine Brooks', 0, '+81 90-3582-0274', 3, '750726947617662086', '日本東京品川区東五反田五丁目2番5号38階', '1989-05-30', 0, 0, 'cbrook10', '2005-08-15', 'cbrooks213', '2012-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS89720221', '翁世榮', 0, '+1 614-872-3239', 1, '228780144726656067', '754 Tremont Road Apt 20, Columbus, GA 43212, United States', '1993-04-24', 0, 0, 'yungsa', '2019-05-05', 'yungsw1101', '2014-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS19803760', '钱宇宁', 0, '+81 90-3787-8155', 3, '476091820904029385', '日本東京港区東新橋一丁目5番6号16階', '1986-11-23', 0, 0, 'yuniqian424', '2010-01-05', 'qiyuning12', '2013-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS90553452', 'Timothy Peterson', 0, '+86 769-1804-5519', 1, '591807284065608668', '中国东莞东泰五街462号11室', '1998-06-06', 0, 0, 'petersontimothy', '2020-02-22', 'petersonti', '2012-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS58971074', '胡子韬', 1, '+86 167-4175-9994', 3, '269034651770967249', '中国成都市成华区玉双路6号992号28号楼', '1996-11-19', 0, 0, 'huzitao89', '2019-12-13', 'hu68', '2004-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS16216382', '苏詩涵', 0, '+44 7659 810741', 3, '408864870811041921', 'Block 20, 830 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-03-06', 0, 0, 'shihansu', '2012-02-12', 'sushi10', '2007-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS38880070', '董秀英', 1, '+1 312-688-7364', 1, '413131846779106565', '915 Pedway Apartment 22, Chicago, IL 60601, United States', '1991-12-01', 0, 0, 'dxiu', '2015-11-28', 'dongx70', '2020-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS71061208', '河野凛', 0, '+44 5829 032810', 0, '044165436095113152', 'Block 34, 783 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-11-11', 0, 0, 'konorin', '2001-02-14', 'rik', '2000-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS79317272', '韦詩涵', 0, '+86 760-9089-0495', 2, '944712043043037001', '中国中山乐丰六路752号华润大厦23室', '1986-04-21', 0, 0, 'shihanw', '2001-03-26', 'weishihan', '2000-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS47619767', 'Jeremy Lopez', 0, '+86 141-4121-2680', 4, '312703925317925447', '2F, 893 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-12-14', 0, 0, 'lopezjeremy1205', '2001-03-07', 'jeremylopez', '2012-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS57326800', '中山凛', 0, '+81 74-896-4098', 1, '449161250292426834', 'Rm. 31, 3-9-17 Gakuenminami, Nara, Japan', '1992-03-21', 0, 0, 'rin1', '2003-02-06', 'nakayamarin', '2004-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS57978342', '孙秀英', 1, '+86 28-5238-4186', 0, '313295822833087800', '中国成都市成华区双庆路44号41室', '1998-10-21', 0, 0, 'sunxiuying', '2014-08-31', 'sux', '2008-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS02541074', 'Barbara Martin', 1, '+86 755-503-3672', 4, '343798516517283169', 'Room 43, CR Building, 870 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1999-01-14', 0, 0, 'barbaramartin108', '2003-07-09', 'barbara4', '2009-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS72252804', '赵子韬', 0, '+81 70-4038-1153', 1, '665468814987378285', '28F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-05-27', 0, 0, 'zitao86', '2003-05-28', 'zhao1997', '2000-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS16799180', 'John Rogers', 0, '+86 755-8668-5641', 0, '555866557357048166', 'Room 16, 884 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-10-28', 0, 0, 'johnrogers', '2010-07-16', 'johnrogers8', '2020-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS60122520', '盧天樂', 1, '+81 80-0528-1020', 2, '012819872170893169', 'Rm. 38, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1993-12-22', 0, 0, 'tinlolo', '2003-02-21', 'tinloklo84', '2001-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS23376304', '藤田大輔', 0, '+44 (1865) 07 5060', 1, '596047575175617654', 'Unit 22, Oxford Eco Centre, 188 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-03-10', 0, 0, 'daisuke1975', '2009-07-19', 'fujita1030', '2015-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS90571532', '廖岚', 1, '+81 11-392-7963', 0, '484322115253500412', '日本札幌厚別区上野幌一条二丁目1番18号37号室', '1993-12-06', 0, 0, 'laliao', '2007-05-06', 'liaolan', '2017-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS14255711', '村田結翔', 1, '+81 74-535-8397', 1, '378912980091147076', '日本ならし西大寺赤田町一丁目7番8号24階', '1993-11-21', 0, 0, 'ymurata6', '2016-03-07', 'muratayuit', '2007-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS10462039', '杜淑怡', 0, '+1 838-471-4347', 2, '736882598700011251', '328 Lark Street Apartment 22, Albany, NY 12210, United States', '1992-10-26', 0, 0, 'tosukyee71', '2006-01-12', 'syto620', '2021-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS97742916', 'Steve Salazar', 0, '+86 10-6079-1523', 1, '367298651375204400', 'Room 1, 996 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-05-02', 0, 0, 'steves5', '2008-02-24', 'ssteve4', '2001-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS60680277', '石田光', 0, '+44 (151) 681 9842', 2, '265818309385341926', 'No.27 Main building, 723 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-10-24', 0, 0, 'hikaru1', '2015-04-18', 'ishi3', '2008-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS11051809', '戚祖兒', 1, '+86 132-2056-1339', 0, '549605799798528693', '33F, 246 Lefeng 6th Rd, Zhongshan, China', '1987-07-10', 0, 0, 'chcy', '2000-11-23', 'choyeechic', '2002-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS89197541', '唐子异', 1, '+44 7165 647208', 3, '783705612404493645', 'Unit 9, Oxford Eco Centre, 404 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-10-16', 0, 0, 'ziyitang3', '2009-11-09', 'tanziyi1', '2008-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS13800511', '苑頴思', 1, '+81 11-495-4768', 3, '887784635536700208', '39F, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-08-15', 0, 0, 'yuews', '2011-09-08', 'ywing1024', '2020-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS98827266', '杜杰宏', 0, '+1 212-022-3834', 0, '986982115687130239', '944 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-11-23', 0, 0, 'jiehongdu', '2016-04-28', 'dujieh', '2009-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS57903283', '車力申', 0, '+1 718-114-2574', 4, '801008112255194741', '406 Flatbush Ave Apartment 33, Brooklyn, NY 11225, United States', '1987-02-09', 0, 0, 'liksun303', '2001-10-08', 'lsche', '2011-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS67765976', 'Jeremy Hernandez', 0, '+81 80-3580-5654', 1, '972008471043097188', '日本東京港区東新橋一丁目5番14号39階', '1988-09-07', 0, 0, 'jhernandez', '2020-01-17', 'hernandezjerem', '2005-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS42417872', 'Christine Myers', 0, '+44 5731 244005', 4, '042300059142103662', 'Unit 5, Oxford Eco Centre, 886 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1990-04-18', 0, 0, 'cmyers1', '2004-04-08', 'christinemyers10', '2000-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS23050571', 'Jason Bennett', 1, '+44 (121) 736 6315', 3, '634618715531309722', 'Unit 23, Oxford Eco Centre, 628 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-07-12', 0, 0, 'bennett7', '2016-07-23', 'bennej', '2019-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS31597184', 'Clifford Fisher', 1, '+81 74-318-9629', 2, '358042121398756870', '日本ならし学園南三丁目9番13号25階', '1986-12-26', 0, 0, 'fishcl', '2001-11-01', 'fisher07', '2020-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS23665995', 'Jennifer Freeman', 1, '+86 138-7134-4184', 0, '084066099167631679', '中国广州市白云区小坪东路27号1室', '1985-12-10', 0, 0, 'fj51', '2009-04-18', 'jefre', '2010-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS61808586', 'Joe Meyer', 0, '+81 3-7278-6480', 1, '509956388894507270', '50-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1987-06-24', 0, 0, 'mejo', '2006-03-07', 'mjoe', '2006-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS99580305', '小林詩乃', 1, '+81 90-7430-2493', 0, '776959795498462887', '27F, 1-6-11, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-05-31', 0, 0, 'kobayashishino', '2013-09-05', 'kobayashi1', '2005-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS73914424', '余子异', 1, '+44 5817 739948', 2, '098222404611414106', 'Unit 21, Oxford Eco Centre, 968 Hanover Street, London, W1S 1YD, United Kingdom', '1997-04-16', 0, 0, 'ziyu', '2010-04-28', 'ziyu', '2011-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS67336443', '中山優奈', 1, '+86 28-333-3639', 3, '667790004117579532', '10F, 321 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-09-15', 0, 0, 'yunan', '2012-07-24', 'yunaka1216', '2009-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS23254685', '雷家輝', 0, '+86 135-2699-1956', 1, '010441623363705336', 'No.33 building, 647 Ganlan Rd, Pudong, Shanghai, China', '1988-08-18', 0, 0, 'louikafai', '2000-10-28', 'louikf', '2014-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS70056480', 'Jonathan Fernandez', 1, '+86 191-0506-2012', 4, '570511685330206599', 'Room 50, CR Building, No. 276, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-04-10', 0, 0, 'fernandezjonathan', '2001-02-06', 'fernandez2007', '2014-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS63458729', 'Andrew Martinez', 1, '+81 90-4539-3807', 0, '900136667384422018', '49-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-01-09', 0, 0, 'mandre427', '2010-03-06', 'andrm', '2010-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS39528651', '姚云熙', 0, '+81 70-6881-4261', 2, '330357371500456619', '29-kai, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-08-20', 0, 0, 'yyunx', '2014-06-12', 'yunxiya3', '2004-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS10070489', 'Mario Rogers', 1, '+44 (1223) 42 2394', 0, '682740289602318845', 'Unit 16, Oxford Eco Centre, 894 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-12-19', 0, 0, 'mario8', '2001-04-14', 'rogersmario', '2002-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS41179106', '鄭朝偉', 0, '+81 70-2042-2056', 2, '935214877522714830', '19-kai, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-01-20', 0, 0, 'cheng601', '2018-04-24', 'cchiuwai', '2003-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS79719486', '潘子韬', 1, '+1 213-859-5498', 0, '663360798095709484', '849 Wall Street Suite 34, Los Angeles, CA 90003, United States', '1993-05-03', 0, 0, 'zitaopan1974', '2021-06-27', 'pz3', '2004-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS61316765', '木村拓哉', 1, '+86 159-8172-6181', 2, '195057813122143936', 'Room 33, CR Building, 318 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-10-11', 0, 0, 'takuyki', '2012-12-18', 'kimura10', '2019-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS06974962', '林蒼士', 0, '+86 769-3579-1506', 0, '820070922227647500', 'Room 2, 316 Dongtai 5th St, Dongguan, China', '1986-04-24', 0, 0, 'hayaoshi', '2020-08-06', 'ah4', '2013-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS50620512', 'Douglas Shaw', 1, '+86 197-9544-9434', 3, '231720687409746170', '中国深圳罗湖区蔡屋围深南东路754号41栋', '1999-01-22', 0, 0, 'ds1983', '2012-06-11', 'dougs', '2016-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS81213257', '山田百花', 0, '+1 718-150-2472', 1, '342509791631761296', '675 1st Ave Suite 7, Brooklyn, NY 11220, United States', '1989-02-15', 0, 0, 'momoka430', '2000-11-28', 'yamadamomoka', '2013-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS78940777', '馬小慧', 1, '+1 213-081-6812', 1, '425072582455298717', '373 Figueroa Street Suite 44, Los Angeles, CA 90037, United States', '1998-06-13', 0, 0, 'masi', '2009-06-30', 'masiuwai3', '2009-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS15130255', '薛詩涵', 1, '+81 3-6366-9688', 2, '144338668474703493', '日本東京千代田区丸の内一丁目6番14号9号室', '1985-03-18', 0, 0, 'xus709', '2006-09-03', 'shxue', '2021-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS54373078', '鄧國明', 0, '+44 5007 477134', 3, '164714025314876453', 'Unit 45, Oxford Eco Centre, 247 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-01-09', 0, 0, 'tangkm', '2007-01-29', 'kmtang', '2004-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS06464028', '林璐', 0, '+44 (161) 536 7043', 2, '143015670696153145', 'Flat 46, 277 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-07-07', 0, 0, 'llin', '2020-08-29', 'linlu8', '2002-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS94884290', '张震南', 0, '+86 10-8955-0689', 3, '985863601786696589', 'Room 34, 902 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-12-27', 0, 0, 'zzhen', '2014-04-05', 'zhangzh', '2021-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS51547783', 'Ernest Campbell', 0, '+44 7283 089010', 3, '816436872594814086', 'Block 44, 370 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1991-05-28', 0, 0, 'erc', '2006-08-17', 'ernestcamp10', '2002-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS99716929', 'Travis Washington', 1, '+1 330-987-3333', 3, '663558226934656144', '828 Fern Street Suite 1, Akron, OH 44307, United States', '1990-08-01', 0, 0, 'traviswashington', '2003-05-28', 'wastravis4', '2007-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS70098458', '容杰倫', 0, '+81 90-7253-9846', 2, '530965383577001940', 'Rm. 26, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-09-22', 0, 0, 'chiehlunyung7', '2007-06-07', 'ychiehlun', '2001-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS44518862', 'Crystal Marshall', 1, '+81 52-846-2053', 4, '320200243156221438', '日本なごやし守山区瀬古東二丁目171番17号48階', '1988-09-05', 0, 0, 'crmarshall', '2000-02-06', 'cmarshall', '2001-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS61337660', '島田美咲', 0, '+81 80-2178-2389', 2, '863890816273969385', '日本おおさかし近江堂一丁目7番1号20号室', '1998-08-18', 0, 0, 'misaki1118', '2000-11-19', 'shimadamis1998', '2009-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS15045630', 'Francis Mitchell', 1, '+44 (20) 5843 8079', 1, '302568397074155439', 'Block 24, 519 Maddox Street, London, W1S 1PU, United Kingdom', '1989-04-19', 0, 0, 'fmitchell', '2008-06-19', 'francmitchell60', '2003-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS33581614', '萬家強', 1, '+81 11-723-2300', 3, '823002165602480895', '日本札幌中央区宮の森四条六丁目1番7号18階', '1988-06-18', 0, 0, 'meng3', '2020-06-27', 'kakeungme1959', '2000-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS60312468', '關家玲', 1, '+86 760-6677-0697', 2, '969256451973177853', '中国中山乐丰六路248号48楼', '1986-12-06', 0, 0, 'klk1984', '2016-03-15', 'kaling51', '2010-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS00658248', '韦子韬', 0, '+81 66-884-9121', 0, '883530489171100049', '12-kai, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-10-02', 0, 0, 'wez9', '2017-02-17', 'zitaow113', '2000-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS55280470', 'Timothy Lee', 0, '+1 718-363-0403', 3, '727881886180673341', '905 Nostrand Ave Apt 12, Brooklyn, NY 11216, United States', '1988-12-20', 0, 0, 'leet', '2003-10-20', 'leet9', '2000-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS12110655', '呂明詩', 0, '+1 213-850-6731', 1, '829927630190990339', '421 S Broadway Apt 10, Los Angeles, CA 90015, United States', '1997-05-14', 0, 0, 'luimingsze49', '2015-12-13', 'mslui', '2009-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS20995194', '狄國明', 0, '+86 28-7522-8453', 3, '616306757477076011', 'Room 6, No. 683, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-10-30', 0, 0, 'kmti', '2005-01-27', 'tikwokming', '2015-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS09705221', '邵晓明', 1, '+86 155-9467-0422', 1, '303246598222719105', 'No.46 building, 575 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-12-02', 0, 0, 'xiaomings', '2019-05-24', 'shao52', '2021-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS89891087', '汪震南', 0, '+81 52-761-6976', 3, '489713519851664829', '日本なごやし熱田区千年二丁目5番6号2階', '1986-07-25', 0, 0, 'wangzhennan', '2000-10-29', 'wangzhennan', '2000-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS48448911', '許祖兒', 0, '+81 74-480-0046', 4, '561034893417752399', '日本ならし西大寺赤田町一丁目7番10号21号室', '1989-08-01', 0, 0, 'choyee2016', '2015-08-05', 'chhu', '2018-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS49694589', 'Thomas Patel', 0, '+86 10-618-9151', 3, '045752779778379730', 'Room 30, 46 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-05-29', 0, 0, 'thomasp', '2017-08-04', 'pathoma', '2002-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS79878799', '麥永發', 1, '+81 52-345-2202', 1, '861312705358310399', '23-kai, 2-5-5 Chitose, Atsuta Ward, Nagoya, Japan', '1993-05-18', 0, 0, 'mak404', '2020-05-29', 'wingfat318', '2003-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS03241895', '後藤陽太', 1, '+81 80-4985-0901', 3, '093027320427995565', '40F, 1-5-14, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-12', 0, 0, 'yota3', '2003-03-31', 'yotg', '2012-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS03205339', '河野玲奈', 0, '+81 80-3097-3605', 0, '948810455923010725', '44-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-10-30', 0, 0, 'konre', '2009-04-27', 'konor419', '2009-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS85566975', '邹詩涵', 1, '+86 196-9103-3531', 1, '492339400024884288', '中国广州市天河区天河路541号6号楼', '1993-08-25', 0, 0, 'zoushihan312', '2021-09-04', 'shihzou722', '2003-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS60851361', 'Tammy Carter', 1, '+86 147-2109-3146', 0, '463662696731440839', 'Room 26, CR Building, 114 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-10-26', 0, 0, 'tammy6', '2010-05-23', 'cartert1', '2011-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS37832055', 'Robert Hawkins', 1, '+1 718-515-2063', 3, '361785415888814179', '931 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1996-05-13', 0, 0, 'robert10', '2016-11-02', 'robert1963', '2010-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS47443256', '唐惠妹', 1, '+86 164-4835-5685', 0, '403453043860561182', '中国成都市锦江区红星路三段484号华润大厦43室', '1987-10-25', 0, 0, 'tong83', '2003-12-04', 'huimeitong', '2020-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS48987813', '酒井美月', 0, '+81 66-332-3139', 2, '693363617171557789', '21-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1993-10-19', 0, 0, 'sakai726', '2015-12-07', 'smitsu', '2001-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS04702586', '洪曉彤', 1, '+86 155-2193-6519', 4, '053946960670278052', 'Room 5, 637 Jianxiang Rd, Pudong, Shanghai, China', '1995-12-15', 0, 0, 'hht329', '2016-12-29', 'huhiutung515', '2003-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS82282442', 'Carol Cruz', 1, '+1 312-669-2698', 1, '951924079517801884', '246 Pedway Suite 34, Chicago, IL 60601, United States', '1985-12-24', 0, 0, 'crucarol', '2003-03-24', 'cc04', '2006-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS89815673', 'Shawn Ferguson', 0, '+81 80-0855-7267', 2, '015900672084951830', '23F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1992-04-25', 0, 0, 'shawnf813', '2009-02-01', 'shawferguson10', '2017-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS72901329', '林結翔', 0, '+86 769-8603-4622', 1, '174054532350023935', '中国东莞东泰五街222号8室', '1992-10-02', 0, 0, 'yuitohayas', '2022-01-31', 'yuitoh', '2019-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS53228133', '高田美咲', 1, '+44 (121) 755 8740', 2, '078280885583125415', 'Flat 27, 569 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1985-03-13', 0, 0, 'misakitak01', '2015-05-23', 'takmis803', '2012-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS90261493', '郭詩涵', 1, '+1 614-787-7464', 2, '481092142324282639', '470 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-06-14', 0, 0, 'gshi', '2009-05-07', 'guoshihan', '2020-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS36025338', '高木拓哉', 1, '+86 20-3199-8607', 1, '336127125578081189', '中国广州市白云区机场路棠苑街五巷976号11室', '1988-10-22', 0, 0, 'ttak', '2017-01-19', 'takagitakuya8', '2003-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS08467926', '新井樹', 0, '+86 169-6313-3015', 3, '270575889098970449', 'No.4 building, 322 Dongtai 5th St, Dongguan, China', '1993-03-01', 0, 0, 'araiitsu1995', '2005-08-02', 'araiitsuki40', '2004-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS93491126', '吳永權', 0, '+81 52-908-2716', 2, '982983765286424186', '38-kai, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1989-06-15', 0, 0, 'wkng', '2005-10-19', 'ngwk', '2002-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS66557331', '呂德華', 1, '+1 614-806-8299', 4, '383389269047383395', '119 Tremont Road Suite 38, Columbus, GA 43212, United States', '1994-03-17', 0, 0, 'takwahlu', '2006-03-07', 'takwahlui', '2013-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS99811438', '柴田拓哉', 0, '+81 90-4786-0127', 2, '529923956646279211', '8F, 3-9-16 Gakuenminami, Nara, Japan', '1997-02-14', 0, 0, 'shibata727', '2016-03-16', 'shibata8', '2017-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS10220880', '王國權', 0, '+81 90-2407-6516', 3, '763122958075953029', '日本おおさかし近江堂一丁目7番7号17号室', '1987-05-11', 0, 0, 'wkwokkuen1216', '2007-09-08', 'wokk318', '2018-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS74245803', '郑云熙', 0, '+86 769-047-7165', 2, '233735092776973422', '中国东莞环区南街二巷710号42号楼', '1998-04-06', 0, 0, 'zhengyunxi', '2002-08-04', 'yunxizheng', '2021-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS65578620', '文國榮', 1, '+81 11-592-8921', 0, '661170096370218524', '日本札幌厚別区上野幌一条二丁目1番7号23号室', '1988-11-13', 0, 0, 'kwman', '2019-11-29', 'kwokwing203', '2011-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS53730479', '彭震南', 1, '+44 5609 572446', 1, '561095366251758709', 'No.5 Main building, 139 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-07-05', 0, 0, 'zhennanp3', '2019-05-19', 'zhennanpeng7', '2005-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS95557445', 'Shawn Patel', 1, '+44 (121) 789 5618', 1, '959210046823951363', 'Flat 5, 658 New Street, Birmingham, B2 4DB, United Kingdom', '1995-05-17', 0, 0, 'shawnpatel', '2007-08-06', 'patelsha508', '2008-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS62469982', 'Ellen Chen', 0, '+81 90-9669-5490', 4, '037512884977009863', '日本なごやし瑞穂区河岸町四丁目20番10号34階', '1985-04-13', 0, 0, 'ellen5', '2019-03-08', 'ellenchen', '2000-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS75087720', '河野陽太', 0, '+81 80-3447-0326', 1, '314080062042288072', 'Rm. 38, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-10-14', 0, 0, 'yotakon105', '2012-07-15', 'konoyota86', '2011-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS68989408', 'Micheal Bennett', 1, '+86 20-125-1011', 1, '602935981020999487', 'No.49 building, 850 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1994-07-16', 0, 0, 'micbennett3', '2003-08-10', 'micheal8', '2002-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS31890012', '武田花', 0, '+81 11-085-4908', 3, '277023515010406921', '日本札幌白石区菊水三条五丁目4番11号6号室', '1997-10-01', 0, 0, 'takedah', '2007-11-06', 'hant', '2015-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS74810687', '和田樹', 1, '+81 3-0017-7496', 2, '747791157670081053', '日本東京千代田区丸の内一丁目6番14号18号室', '1992-10-19', 0, 0, 'itsukwada', '2014-11-24', 'itsukiw3', '2004-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS05133376', '佐藤凛', 1, '+86 10-2459-4489', 4, '773508512498124286', '中国北京市西城区西長安街604号44号楼', '1992-11-20', 0, 0, 'satorin', '2018-01-11', 'sato114', '2018-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS03743255', '河野結翔', 0, '+1 330-173-4207', 3, '626969701647507206', '610 Fern Street Apt 4, Akron, OH 44307, United States', '1991-11-15', 0, 0, 'yuito721', '2000-08-08', 'konoyuit', '2000-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS50246373', '應曉彤', 1, '+44 (1865) 99 4166', 2, '611342514739459118', 'Unit 6, Oxford Eco Centre, 341 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-12-27', 0, 0, 'yinhi9', '2021-10-20', 'yinghiutung', '2018-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS73441157', '周永發', 1, '+86 146-3806-3439', 3, '561749810264349738', 'Room 41, CR Building, 427 Shanhu Rd, Dongguan, China', '1988-05-29', 0, 0, 'chowwingfat1021', '2005-02-22', 'cwingfat', '2016-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS53279634', '中森聖子', 1, '+81 70-4315-1616', 1, '521267799158332719', '13F, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-10-11', 0, 0, 'seiko1972', '2011-03-07', 'seikona', '2006-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS59774426', '唐玲玲', 1, '+86 755-769-4362', 3, '404648039003177718', '中国深圳福田区景田东一街735号华润大厦30室', '1994-11-11', 0, 0, 'tolingling', '2019-04-18', 'linglingtong', '2002-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS85790251', '石川蓮', 0, '+86 21-054-8467', 4, '884913671414082155', 'No.4 building, 682 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-06-27', 0, 0, 'rishik', '2006-11-05', 'ishikawaren', '2016-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS97474792', 'Sandra Lopez', 1, '+86 192-2671-7327', 4, '722813093705396914', '中国深圳罗湖区清水河一路323号47栋', '1985-03-16', 0, 0, 'sandral', '2003-02-20', 'lopezsan', '2017-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS93527512', 'Virginia Black', 0, '+81 80-0865-2422', 4, '766285146155602675', 'Rm. 21, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-07-21', 0, 0, 'blacvirginia', '2014-03-10', 'blackvirginia', '2014-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS73165125', '周學友', 1, '+1 330-946-7872', 2, '194124978189220116', '752 Fern Street Apartment 24, Akron, OH 44307, United States', '1986-12-11', 0, 0, 'chowhy', '2018-09-18', 'hychow1221', '2013-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS40950652', '今井紗良', 0, '+86 769-7903-2629', 1, '529364305468168599', '中国东莞环区南街二巷867号34号楼', '1986-01-26', 0, 0, 'imaisar', '2017-01-03', 'imsa6', '2010-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS40602569', '盧家輝', 1, '+44 5985 298862', 3, '432377496663302001', 'Unit 43, Oxford Eco Centre, 631 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-12-01', 0, 0, 'kaflo7', '2018-12-08', 'kafai09', '2017-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS45465680', '馬家玲', 1, '+81 52-368-5952', 2, '720522773091554804', '日本なごやし北区清水三丁目19番6号23階', '1993-03-28', 0, 0, 'makl4', '2002-11-28', 'klm', '2013-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS93752983', 'Eugene Perez', 0, '+44 (121) 102 8778', 3, '167770008668940644', 'Flat 40, 738 New Street, Birmingham, B2 4DB, United Kingdom', '1988-02-28', 0, 0, 'peu2017', '2017-10-08', 'ep3', '2005-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS36670452', 'Paul Simpson', 0, '+81 70-6654-0048', 3, '546675308402814513', '8-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-03-08', 0, 0, 'pauls', '2003-04-09', 'psimpson1105', '2016-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS74007873', '有村悠人', 0, '+81 11-338-8332', 2, '786195924571173461', 'Rm. 29, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-02-04', 0, 0, 'yarimura629', '2019-01-25', 'arimurayuto3', '2016-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS88674650', '杜宇宁', 0, '+86 168-0583-5690', 1, '113750383161799756', '中国深圳福田区深南大道729号27楼', '1992-01-06', 0, 0, 'duy', '2009-05-01', 'du1', '2004-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS79321868', '今井和真', 1, '+1 212-983-7464', 0, '387279991275533852', '613 West Houston Street Apartment 2, New York, NY 10014, United States', '1997-08-20', 0, 0, 'kazumimai86', '2004-01-18', 'kazuimai', '2018-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS88973480', '何玲玲', 1, '+81 70-5028-9311', 1, '935869713072257752', 'Rm. 49, 13-3-6 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-06-03', 0, 0, 'linh', '2017-10-02', 'lingling4', '2012-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS53105049', '陳慧琳', 1, '+86 760-663-1270', 1, '059520246816892265', '中国中山京华商圈华夏街102号17室', '1986-11-26', 0, 0, 'chanwl', '2019-12-30', 'wailam42', '2020-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS78251404', 'Edward West', 1, '+81 70-1055-5653', 0, '620706548189710117', '日本札幌厚別区上野幌一条二丁目1番1号14階', '1997-12-11', 0, 0, 'west710', '2016-06-20', 'westedward', '2002-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS85257345', 'Janice Smith', 0, '+44 5272 027453', 1, '776467937754279221', 'Unit 11, Oxford Eco Centre, 277 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1994-10-25', 0, 0, 'janice503', '2015-01-09', 'smith10', '2018-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS76884406', '吕岚', 1, '+86 133-1026-2233', 2, '964050067737769620', '中国深圳罗湖区清水河一路413号40室', '1985-09-06', 0, 0, 'lanl', '2013-08-15', 'lanlu', '2016-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS33889951', '邵詩涵', 0, '+86 760-4041-0288', 1, '887582426771366093', 'No.47 building, 663 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-05-08', 0, 0, 'shihanshao2', '2017-11-18', 'shao59', '2010-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS47528217', 'Sandra Robertson', 1, '+1 838-877-1415', 1, '907277111188728056', '997 Broadway Apartment 9, Albany, NY 12207, United States', '1996-12-16', 0, 0, 'robertson77', '2016-01-02', 'sandrarobertson8', '2020-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS01923969', '罗云熙', 0, '+81 66-894-5287', 0, '144311922206685850', 'Rm. 32, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1994-12-11', 0, 0, 'lyunxi', '2000-02-16', 'luoy', '2017-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS28247035', '陆致远', 1, '+86 158-4813-2484', 1, '424664852042938204', '中国东莞坑美十五巷607号13楼', '1990-01-29', 0, 0, 'zhiyuan1977', '2017-03-30', 'lz58', '2005-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS28492053', '元浩然', 0, '+81 74-242-1092', 4, '447639573482580776', '10F, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-05-02', 0, 0, 'hoyinyuen', '2006-01-22', 'yhoyin129', '2002-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS58002305', '岡本紗良', 0, '+81 66-640-0545', 1, '390067409183364739', '日本おおさかし西成区出城一丁目1番19号34階', '1998-02-06', 0, 0, 'okamotosara1209', '2005-12-29', 'sokamoto', '2020-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS23214962', '萧秀英', 0, '+86 199-2472-6905', 0, '336021886824329234', 'Room 45, 317 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-08-16', 0, 0, 'xxiao10', '2003-11-27', 'xiao2', '2008-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS46104504', '鐘浩然', 1, '+44 (151) 163 7799', 2, '075664497595557081', 'Unit 31, Oxford Eco Centre, 88 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-06-22', 0, 0, 'hoyin1987', '2000-09-12', 'hych16', '2012-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS47775533', '大野蒼士', 0, '+86 10-7853-3001', 2, '727156821839226078', '33F, 949 Yueliu Rd, Fangshan District, Beijing, China', '1990-11-24', 0, 0, 'oaoshi', '2004-04-26', 'oaoshi', '2021-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS21176809', '钟詩涵', 1, '+86 138-2651-6235', 0, '780347842602288636', 'No.4 building, 543 Tianhe Road, Tianhe District, Guangzhou, China', '1994-03-20', 0, 0, 'zhong2', '2007-12-13', 'sz207', '2005-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS28111478', '許梓晴', 0, '+44 7305 991670', 3, '285999459391948512', 'Block 38, 524 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-04-13', 0, 0, 'tchui2', '2004-04-28', 'huitc', '2005-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS79994426', '彭杰宏', 1, '+86 28-724-4611', 4, '431847796119799617', '中国成都市成华区玉双路6号667号3号楼', '1992-12-13', 0, 0, 'jiehong1', '2014-08-12', 'jiehongpeng', '2006-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS29070231', '郑安琪', 1, '+1 213-396-1379', 3, '503420743316831605', '834 S Broadway Suite 50, Los Angeles, CA 90015, United States', '1992-06-02', 0, 0, 'azheng96', '2002-05-21', 'anqi8', '2004-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS10774784', '島田絢斗', 1, '+86 28-872-1627', 2, '560027441959881547', '中国成都市成华区双庆路886号11室', '1985-02-08', 0, 0, 'as328', '2002-01-01', 'ayato2', '2012-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS56348608', '石川美月', 1, '+81 80-1367-4072', 1, '497935506298529155', '27F, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-11-04', 0, 0, 'mii', '2010-02-26', 'ishikawamits5', '2005-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS56798397', '森樹', 0, '+44 (116) 497 6348', 1, '578929282553019930', 'Block 21, 166 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-11-12', 0, 0, 'im2', '2017-02-28', 'imor', '2011-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS82426570', '陶子韬', 0, '+1 213-728-0879', 1, '227415380565476263', '357 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-11-15', 0, 0, 'zitao810', '2015-04-09', 'zitaotao', '2007-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS86965465', '宮本樹', 1, '+44 (121) 287 5027', 2, '399340601032774742', 'Flat 7, 469 New Street, Birmingham, B2 4DB, United Kingdom', '1997-11-13', 0, 0, 'itsukm', '2000-02-04', 'itsmiyam10', '2010-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS05637297', '任嘉伦', 1, '+44 5158 981044', 1, '529423880118306630', 'No.9 Main building, 180 Pollen Street, London, W1S 1NG, United Kingdom', '1992-11-09', 0, 0, 'rjialun', '2018-01-02', 'jialunr', '2004-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS88820897', '傅秀英', 0, '+86 760-8830-3842', 3, '813862949597680814', 'Room 43, 136 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1995-08-21', 0, 0, 'xiuyingf', '2003-02-08', 'fu1980', '2013-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS88684616', 'Chad Lee', 1, '+81 74-698-0597', 2, '094335947598143407', '日本ならし大和郡山市本庄町一丁目1番13号2階', '1998-11-12', 0, 0, 'chad15', '2003-01-11', 'chadlee602', '2011-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS10978257', '董安琪', 1, '+86 755-771-3237', 4, '262649557372175751', '中国深圳罗湖区清水河一路240号20楼', '1995-07-21', 0, 0, 'ad8', '2018-03-25', 'donga', '2015-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS53677739', '山下美緒', 0, '+86 197-9767-2680', 4, '337576505973041933', '中国北京市房山区岳琉路682号华润大厦31室', '1993-08-16', 0, 0, 'yamashitamio617', '2003-10-04', 'mioyamas', '2014-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS48563755', 'Rodney Campbell', 0, '+86 10-6190-6804', 3, '211772243340172862', 'Room 44, CR Building, 4 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-01-10', 0, 0, 'camro', '2010-04-19', 'carod', '2010-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS82440326', 'Emily Mendoza', 0, '+1 838-137-5778', 3, '807336922428390165', '774 Broadway Apartment 44, Albany, NY 12207, United States', '1987-05-20', 0, 0, 'emim98', '2011-09-07', 'mendozaemily511', '2017-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS46143729', '橋本紗良', 0, '+1 718-281-6910', 3, '771041295475793644', '84 Bergen St Apartment 23, Brooklyn, NY 11217, United States', '1995-12-28', 0, 0, 'sara1005', '2004-04-21', 'sarahas5', '2007-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS94213582', '胡麗欣', 0, '+86 769-2918-8565', 3, '931094967590483238', 'No.39 building, 908 Shanhu Rd, Dongguan, China', '1985-05-10', 0, 0, 'laiyaw', '2005-09-19', 'wuly5', '2010-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS81225479', '松田凛', 0, '+44 7901 858441', 3, '126717573239743827', 'Block 17, 114 Portland St, Manchester, M1 3LA, United Kingdom', '1985-03-15', 0, 0, 'rinm1119', '2006-12-28', 'rinma409', '2021-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS60442993', '斎藤彩乃', 1, '+86 21-4212-4366', 2, '596268110687320141', '中国上海市浦东新区健祥路171号18楼', '1988-12-18', 0, 0, 'saiayano6', '2013-06-01', 'saitoa519', '2016-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS32506783', 'Danny Cook', 1, '+81 3-5994-0482', 4, '144046698012101013', 'Rm. 27, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-11-21', 0, 0, 'cdanny', '2001-01-03', 'dannycook', '2001-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS83967073', '丸山湊', 0, '+86 10-600-3618', 1, '000805912329396229', '21F, 131 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-10-28', 0, 0, 'minmaruyama87', '2009-12-23', 'maruminato', '2008-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS49562097', '常詩涵', 0, '+81 3-5223-8002', 4, '498213154295047104', '30-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-18', 0, 0, 'shihan9', '2018-03-08', 'chsh', '2010-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS54691257', 'Helen Peterson', 0, '+81 90-7846-5673', 1, '718058801513906456', '日本ならし西大寺赤田町一丁目7番10号11階', '1991-06-09', 0, 0, 'phelen1117', '2010-03-18', 'phelen', '2000-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS37014798', '叶嘉伦', 0, '+81 66-282-9346', 4, '470224940569296743', '日本おおさかし近江堂一丁目7番15号2階', '1985-12-06', 0, 0, 'jialye716', '2007-06-06', 'ye3', '2006-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS91455708', '梅秀文', 0, '+1 213-570-5049', 3, '137540312679600802', '702 Alameda Street Apartment 29, Los Angeles, CA 90002, United States', '1991-12-13', 0, 0, 'msaum9', '2020-05-29', 'muism', '2009-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS16598864', '河野葉月', 1, '+86 171-4400-7463', 3, '430000157364515803', '中国上海市闵行区宾川路535号36楼', '1992-04-26', 0, 0, 'kh828', '2018-06-28', 'konohazuki919', '2001-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS39140890', '工藤七海', 1, '+81 74-277-7887', 3, '319951670959242746', 'Rm. 38, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1998-01-16', 0, 0, 'nanami8', '2003-10-23', 'kudonanami', '2008-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS57514230', 'Billy Soto', 1, '+86 28-6587-7002', 4, '734425196234718991', 'No.8 building, No.400, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-01-23', 0, 0, 'bsoto606', '2011-10-11', 'sotobill', '2009-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS65103836', '中村湊', 1, '+44 (151) 180 8232', 1, '986723885258922078', 'Block 25, 614 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-11-20', 0, 0, 'minnakam1229', '2010-02-21', 'minato93', '2008-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS60247481', '彭明', 0, '+86 190-2381-7941', 3, '419367561840547328', '中国广州市越秀区中山二路18号26号楼', '1997-05-28', 0, 0, 'pangming', '2021-04-28', 'mpang1201', '2021-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS48688376', 'Nicole Fisher', 0, '+44 (1223) 57 1963', 1, '438936198507202903', 'Unit 44, Oxford Eco Centre, 950 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-06-27', 0, 0, 'nicole3', '2014-03-19', 'nifisher', '2003-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS87253489', '劉國權', 1, '+86 139-2894-1739', 0, '116563069415892018', 'No.46 building, 837 Kengmei 15th Alley, Dongguan, China', '1990-02-06', 0, 0, 'kwlau2', '2003-08-17', 'kklau', '2021-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS84184117', '蔡仲賢', 1, '+86 21-8588-5697', 2, '709881646976773303', 'Room 41, CR Building, 510 Ganlan Rd, Pudong, Shanghai, China', '1995-09-22', 0, 0, 'chochu', '2003-08-10', 'choicy', '2009-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS28980067', '姚詩涵', 1, '+44 (161) 976 9521', 4, '851937495868890583', 'No.3 Main building, 46 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-09-23', 0, 0, 'shihya', '2006-02-11', 'shiya821', '2012-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS42846955', '佘玲玲', 0, '+81 66-146-4527', 1, '531318744050712694', '日本おおさかし近江堂一丁目7番16号20階', '1996-10-29', 0, 0, 'shlingling328', '2018-04-19', 'linglings', '2011-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS73794003', '原田美咲', 0, '+81 70-4964-2848', 1, '777304613166767649', '24-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-16', 0, 0, 'misakiharada', '2005-10-03', 'haramis', '2004-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS91711780', '藤井陸', 0, '+86 21-267-6322', 2, '463393954618178703', 'No.33 building, 1 Ganlan Rd, Pudong, Shanghai, China', '1989-07-17', 0, 0, 'friku1985', '2019-10-05', 'rikufuj84', '2002-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS67873269', '丁詩涵', 1, '+81 11-687-6118', 1, '788665122120950616', '日本札幌白石区菊水三条五丁目4番2号9階', '1986-09-07', 0, 0, 'shihdi731', '2001-02-05', 'shihanding221', '2013-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS31339841', '雷詩君', 0, '+1 718-562-4533', 0, '134404457569950410', '680 1st Ave Suite 33, Brooklyn, NY 11220, United States', '1993-02-26', 0, 0, 'louszekwan4', '2009-09-02', 'szekwanlou125', '2003-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS37385616', 'Todd Shaw', 1, '+86 21-870-3537', 0, '720612211538932469', 'Room 20, CR Building, 333 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-02-16', 0, 0, 'todd4', '2016-02-01', 'ts69', '2019-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS60430626', '房浩然', 1, '+1 330-265-4181', 2, '832031108197821406', '687 West Market Street Suite 36, Akron, OH 44333, United States', '1989-05-04', 0, 0, 'hyfong121', '2010-06-04', 'hoyin10', '2020-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS43495615', '有村詩乃', 1, '+1 614-888-5216', 1, '087304115855532434', '977 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1994-12-01', 0, 0, 'arims', '2008-08-08', 'arimura10', '2006-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS15368237', '樂梓晴', 1, '+1 614-784-1544', 3, '558254159308547228', '139 Tremont Road Apartment 17, Columbus, GA 43212, United States', '1987-07-05', 0, 0, 'loktszching4', '2020-07-18', 'tclok', '2013-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS69944588', '官頴璇', 0, '+44 5613 522157', 0, '184074823845136897', 'Flat 18, 938 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-11-26', 0, 0, 'koowingsuen', '2008-03-30', 'koonwingsuen1204', '2016-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS56884241', '林彩乃', 1, '+1 614-241-8832', 1, '319656709717227806', '470 East Alley Apt 33, Columbus, GA 43201, United States', '1993-10-24', 0, 0, 'ayanhayashi7', '2007-07-04', 'ayanoh2006', '2000-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS86029709', '橋本翼', 0, '+86 760-932-6157', 2, '301898678884701055', '中国中山天河区大信商圈大信南路108号华润大厦47室', '1987-05-24', 0, 0, 'tsubasah10', '2010-04-24', 'hatsubasa', '2016-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS56495919', '盧裕玲', 1, '+1 212-415-1203', 3, '011227637406801701', '665 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1991-08-24', 0, 0, 'lyl', '2000-09-13', 'lyl', '2015-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS08999635', '郑秀英', 0, '+86 182-6733-8034', 3, '298548448126713393', '中国北京市延庆区028县道764号30楼', '1989-03-09', 0, 0, 'zhengxi', '2004-12-23', 'xiuyiz61', '2012-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS90097847', '狄潤發', 0, '+81 70-2264-7578', 1, '557881562497407158', '2F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-18', 0, 0, 'yunfat2002', '2005-07-11', 'tyf', '2021-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS59723583', 'Frank Hughes', 1, '+86 20-771-1578', 3, '123697055549030919', 'No.12 building, 772 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-06-04', 0, 0, 'hughfrank', '2001-02-04', 'frankh11', '2021-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS58321013', '黄詩涵', 0, '+1 213-333-1679', 1, '587045949378443134', '459 S Broadway Apartment 44, Los Angeles, CA 90015, United States', '1994-06-29', 0, 0, 'shihanhuang', '2007-03-15', 'shu', '2007-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS39977273', '岡本紗良', 0, '+81 70-4600-6099', 2, '797504894583559842', 'Rm. 22, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-14', 0, 0, 'okamotosara', '2018-05-09', 'saraokamoto', '2006-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS02855539', 'Edith Washington', 1, '+1 213-587-4372', 0, '675358112964523976', '969 Alameda Street Apartment 47, Los Angeles, CA 90002, United States', '1996-03-16', 0, 0, 'washingtonedith309', '2001-04-03', 'washingtonedit1015', '2011-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS88648573', '廖震南', 1, '+44 7545 302099', 3, '141553886185363641', 'No.35 Main building, 275 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-07-26', 0, 0, 'liao16', '2003-05-19', 'zli14', '2022-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS79981006', '杜家強', 1, '+44 7606 476863', 0, '215321678245732769', 'Unit 3, Oxford Eco Centre, 156 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-04-10', 0, 0, 'kakeung312', '2002-04-06', 'tokk', '2000-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS82942027', '山本健太', 1, '+44 (151) 328 7468', 1, '798894775675096778', 'Block 15, 482 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-01-18', 0, 0, 'yamamotokent', '2005-07-23', 'kenta3', '2018-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS44139000', '韩震南', 1, '+81 3-3444-6007', 0, '346854914422741743', '日本東京渋谷区代々木二丁目3番10号5号室', '1988-06-04', 0, 0, 'hanzhennan', '2017-02-15', 'zha', '2018-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS07331059', '池田結翔', 0, '+81 52-159-1598', 0, '902568943035129774', '日本なごやし北区清水三丁目19番14号4階', '1998-12-07', 0, 0, 'ikedayuito7', '2021-12-09', 'ikeda10', '2008-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS64367532', '蔡志遠', 0, '+81 11-606-5993', 0, '527142790207487076', 'Rm. 29, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-02-10', 0, 0, 'chochiyuen', '2012-09-27', 'cchiyuen', '2007-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS98307956', 'Frances Warren', 1, '+1 212-963-7139', 4, '157219534996785914', '351 West Houston Street 3rd Floor, New York, NY 10014, United States', '1986-12-23', 0, 0, 'frances10', '2001-06-17', 'warren1947', '2008-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS92586933', '阮慧儀', 1, '+1 212-210-6612', 3, '883303001475650646', '840 Bank Street Apartment 19, New York, NY 10014, United States', '1987-06-24', 0, 0, 'yuenwy', '2006-11-27', 'yuewaiyee', '2003-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS20859895', '原陸', 0, '+86 755-374-0027', 2, '782390289182278756', 'No.32 building, 755 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-11-17', 0, 0, 'hriku', '2004-12-18', 'hara57', '2021-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS92846700', '顾晓明', 1, '+44 7672 681636', 1, '985251910802938075', 'Flat 35, 542 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-08-05', 0, 0, 'xiaominggu', '2007-04-08', 'xig', '2007-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS61361429', '马詩涵', 1, '+81 80-3075-3246', 4, '684770210864629243', '日本札幌厚別区上野幌一条二丁目1番12号11階', '1987-08-12', 0, 0, 'shim', '2011-02-10', 'shihanma', '2014-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS15085726', '藤田美緒', 0, '+81 90-4207-1398', 4, '793794608998833001', '日本なごやし熱田区千年二丁目5番15号17階', '1995-09-02', 0, 0, 'fujim5', '2012-06-13', 'mio8', '2011-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS39836351', 'Timothy Barnes', 0, '+86 178-2438-6763', 2, '895647152470584415', 'Room 4, No. 646, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-12-12', 0, 0, 'barnestimo', '2007-01-03', 'timothybarnes219', '2015-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS18273942', '横山涼太', 1, '+86 10-331-4838', 3, '223612472517385506', 'No.31 building, 209 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-12-21', 0, 0, 'yokryo', '2012-10-12', 'yokoyama1', '2004-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS29040659', '石井光莉', 0, '+86 755-5419-9348', 3, '335614780039793550', 'Room 4, 361 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-02-12', 0, 0, 'hi45', '2015-10-30', 'ishii3', '2021-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS22848755', '夏睿', 1, '+86 164-1957-5452', 3, '444852293197762327', '20F, 933 Lefeng 6th Rd, Zhongshan, China', '1990-02-27', 0, 0, 'xru', '2018-05-02', 'ruixia56', '2016-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS97920441', '渡部凛', 0, '+44 (116) 471 3574', 1, '092988383340767732', 'No.5 Main building, 335 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-02-03', 0, 0, 'rinwata', '2004-08-07', 'riwatanabe', '2003-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS85843149', '松田明菜', 0, '+44 7656 839793', 2, '894197908556365132', 'Unit 32, Oxford Eco Centre, 505 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-09-01', 0, 0, 'matsudaakina3', '2012-05-26', 'akinama', '2013-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS66604298', 'Martha Clark', 0, '+1 213-384-2310', 0, '094434326837250116', '662 S Broadway Suite 29, Los Angeles, CA 90015, United States', '1991-10-02', 0, 0, 'marthacla331', '2004-08-05', 'clarkmartha', '2003-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS50909530', '樂頴璇', 0, '+86 135-6325-1958', 1, '222090898986870071', 'No.31 building, 147 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-03-31', 0, 0, 'lok84', '2004-06-01', 'wingsuenlo18', '2004-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS92171067', '馮慧珊', 1, '+44 7920 066856', 3, '148769925056327728', 'No.21 Main building, 241 Hanover Street, London, W1S 1YD, United Kingdom', '1995-10-21', 0, 0, 'fungwaisan', '2008-12-06', 'fung1948', '2017-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS25901730', '曹震南', 1, '+81 3-1441-8463', 4, '368859691502468404', 'Rm. 12, 1-6-7, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-06-19', 0, 0, 'caoz', '2014-11-30', 'caozhe', '2015-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS83832237', '唐云熙', 1, '+86 187-1109-3846', 4, '457247240612999651', '中国广州市越秀区中山二路400号42栋', '1987-04-05', 0, 0, 'tangyunxi', '2018-09-01', 'tang831', '2014-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS63949241', '袁宇宁', 1, '+44 (20) 4568 4372', 3, '415124136919820728', 'No.41 Main building, 443 Pollen Street, London, W1S 1NG, United Kingdom', '1994-12-21', 0, 0, 'yuanyuning', '2010-08-15', 'yuanyuning10', '2014-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS81248403', '藤原大和', 1, '+44 5442 504483', 2, '489344673244747197', 'Block 1, 45 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-01-26', 0, 0, 'yfujiwara', '2009-01-19', 'yafu', '2005-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS94682009', '鄧安琪', 1, '+44 (121) 032 4794', 2, '072143341740525517', 'Block 19, 498 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-04-25', 0, 0, 'oktang', '2009-01-18', 'onkay210', '2018-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS00836208', '史杰宏', 0, '+1 212-727-3736', 4, '780160629019886347', '187 Bank Street Apt 33, New York, NY 10014, United States', '1995-03-09', 0, 0, 'jiehongsh', '2019-08-25', 'shi6', '2020-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS25248963', '宮本百花', 1, '+81 66-948-4144', 3, '199095610332648840', '日本おおさかし近江堂一丁目7番15号14階', '1991-05-10', 0, 0, 'mmomoka', '2010-04-08', 'mimomok', '2002-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS29590239', '钱云熙', 1, '+86 760-2893-0687', 3, '735285376602688000', 'No.4 building, 396 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-10-17', 0, 0, 'yunxi49', '2010-07-21', 'qianyunxi508', '2015-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS74424169', 'Gregory Sanders', 0, '+81 80-0410-9097', 2, '088752391074547511', '日本おおさかし西成区出城一丁目1番7号21号室', '1993-02-01', 0, 0, 'gregosa', '2013-12-16', 'sagregory', '2004-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS68009741', '阿部和真', 0, '+81 11-703-4387', 1, '262359655086444317', 'Rm. 20, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-04-24', 0, 0, 'abekazuma43', '2008-06-10', 'abka330', '2013-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS30235352', '木下光', 1, '+81 66-760-5905', 2, '297578401143179990', '9F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1988-11-07', 0, 0, 'hikaru701', '2002-02-05', 'hikakino81', '2019-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS69151994', '田明詩', 0, '+1 838-075-2064', 4, '910373906493199539', '613 Central Avenue Apt 48, Albany, NY 12206, United States', '1989-10-16', 0, 0, 'mingstin1', '2021-07-20', 'mingszetin', '2007-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS24309277', '于秀英', 1, '+44 7267 813221', 2, '826501433767881138', 'Flat 48, 664 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1997-06-30', 0, 0, 'yu308', '2009-06-05', 'xiuying93', '2020-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS72106046', '森百花', 1, '+81 11-166-4675', 3, '015103453937636325', '日本札幌白石区菊水三条五丁目4番15号19号室', '1986-12-26', 0, 0, 'momokamori', '2013-04-10', 'morimomoka', '2003-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS65132142', '魏子韬', 0, '+81 80-6214-8452', 1, '639154460761605033', '30F, 2-1-6 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-01-12', 0, 0, 'wz429', '2010-02-10', 'ziwe', '2015-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS13928908', '苑玲玲', 1, '+44 (161) 661 5864', 2, '610763673048567656', 'Flat 43, 867 Mosley St, Manchester, M2 3AQ, United Kingdom', '1998-09-03', 0, 0, 'lingling2', '2006-01-12', 'yll6', '2015-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS86613013', '张岚', 1, '+44 (1865) 23 4961', 2, '496775067208354978', 'Block 25, 155 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-01-27', 0, 0, 'lanz5', '2006-04-21', 'lzhang4', '2019-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS38079527', '吳志遠', 1, '+44 5700 669838', 3, '658454896192078709', 'Flat 9, 938 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-12-24', 0, 0, 'ngcy7', '2012-10-05', 'chiyuenng', '2009-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS75995662', '山崎光莉', 1, '+81 3-0811-0037', 1, '228633186910366795', '43F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-07-14', 0, 0, 'hikari829', '2006-02-23', 'yamazakihikari7', '2017-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS11526128', '容永權', 0, '+81 90-1044-2748', 3, '759142791150271132', '日本なごやし北区楠味鋺三丁目80番18号34号室', '1987-04-16', 0, 0, 'yungwk3', '2000-10-13', 'wkyung', '2006-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS64578921', '江永發', 0, '+86 167-8893-6659', 2, '304115956105962074', '中国东莞坑美十五巷504号26室', '1986-07-28', 0, 0, 'kowi77', '2003-07-22', 'kwf96', '2009-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS16466634', '蔡玲玲', 0, '+86 177-5180-7670', 1, '172320387922971151', 'Room 41, 388 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-01-19', 0, 0, 'choilingling', '2016-12-14', 'choilingling61', '2004-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS31495880', '岡田七海', 0, '+86 760-122-3278', 2, '228078457723830654', 'No.27 building, 786 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-11-14', 0, 0, 'nanami1950', '2005-04-20', 'nanamiokada', '2013-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS53094674', '藤原架純', 1, '+86 138-6136-1439', 1, '103499122791919671', '中国成都市成华区双庆路563号7室', '1988-04-13', 0, 0, 'kasufuj1942', '2007-06-03', 'fujiwkasumi', '2000-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS49830908', '斉藤陽太', 1, '+1 213-430-5472', 3, '203232917338617554', '1 Grape Street Suite 34, Los Angeles, CA 90002, United States', '1992-04-23', 0, 0, 'yotasa', '2015-02-22', 'syota8', '2008-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS48573998', '佐々木彩乃', 0, '+86 20-8760-3851', 3, '272198384488445270', 'Room 46, CR Building, 951 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-10-30', 0, 0, 'sasakiayan', '2010-04-02', 'ayano5', '2017-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS65166705', 'Jesus Myers', 1, '+86 173-3631-5351', 4, '323514016003661351', '中国北京市东城区东单王府井东街982号华润大厦48室', '1997-03-13', 0, 0, 'jmyers', '2003-12-25', 'jesus2014', '2021-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS59769652', '胡家強', 1, '+81 70-9330-4805', 3, '055402467246260446', '日本なごやし北区清水三丁目19番14号32階', '1996-04-27', 0, 0, 'kkw1964', '2003-10-18', 'kakeungwu', '2008-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS72834629', 'Troy Daniels', 0, '+1 614-644-3794', 1, '439862135344365477', '23 Wicklow Road Suite 6, Columbus, GA 43204, United States', '1988-02-04', 0, 0, 'dtro', '2008-04-12', 'troyd', '2018-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS70544981', '汪慧嫻', 1, '+86 145-7159-1151', 1, '605753317912816076', '36F, 268 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-04-30', 0, 0, 'wongwh', '2013-05-05', 'wawong1', '2016-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS20740432', '有村涼太', 0, '+44 5737 361014', 1, '014781109486309012', 'Flat 30, 133 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-10-17', 0, 0, 'arimura205', '2009-08-12', 'arimura1123', '2012-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS40312949', 'Peter Mendez', 0, '+86 20-313-1057', 4, '582144085144464157', 'Room 36, CR Building, 646 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1989-10-05', 0, 0, 'mendezpet67', '2017-05-12', 'mendepete', '2016-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS62191909', 'Marilyn Reed', 0, '+86 184-4814-0144', 0, '567692453255300192', 'No.23 building, 406 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-01-14', 0, 0, 'reedmarilyn2004', '2011-11-10', 'reed10', '2011-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS79890337', 'Marcus Reynolds', 1, '+81 52-545-0196', 4, '549383652695397008', '日本なごやし北区清水三丁目19番2号32号室', '1995-10-05', 0, 0, 'rmarcus', '2011-06-06', 'marcusreynolds', '2013-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS29171247', '鈴木桜', 0, '+81 11-211-7612', 4, '810722583109042360', '日本札幌白石区菊水三条五丁目4番16号46階', '1997-11-24', 0, 0, 'suzsakura', '2002-06-26', 'sas', '2000-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS10749591', '莫志遠', 1, '+81 3-5795-6253', 3, '717453198367171240', '49F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-01-16', 0, 0, 'mchiyuen', '2018-01-04', 'mocy', '2018-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS35123720', '谢睿', 1, '+81 90-1478-4817', 3, '046445478240041678', '35F, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-12-05', 0, 0, 'xierui', '2018-10-28', 'ruixie', '2015-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS77624539', '陶云熙', 0, '+86 28-761-1741', 4, '245700590776022566', '中国成都市成华区双庆路496号华润大厦26室', '1993-12-25', 0, 0, 'yta324', '2016-06-04', 'yta', '2007-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS98575496', '向天樂', 1, '+81 70-2951-0362', 4, '145558668433938477', '日本なごやし北区清水三丁目19番2号7階', '1998-06-14', 0, 0, 'heungtinlok', '2016-06-15', 'heung99', '2021-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS47224613', '方子韬', 1, '+86 28-2442-8894', 2, '676183834265634130', '中国成都市锦江区人民南路四段579号26室', '1995-01-15', 0, 0, 'zif', '2018-01-13', 'fang312', '2006-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS31513015', 'Ann Medina', 1, '+81 66-591-8215', 2, '407571424830233472', '日本おおさかし平野区加美東四丁目9番19号45階', '1995-03-16', 0, 0, 'annmedin', '2008-01-02', 'medina5', '2007-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS60387369', '溫小慧', 0, '+86 149-1169-5747', 3, '415056294282800475', 'No.14 building, 191 028 County Rd, Yanqing District, Beijing, China', '1988-10-15', 0, 0, 'swwan10', '2002-03-05', 'wasiuwai7', '2007-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS45345532', '邵家玲', 1, '+81 80-3786-5514', 3, '920925539671963893', '日本東京港区東新橋一丁目5番9号15階', '1987-11-25', 0, 0, 'kalings', '2003-08-23', 'klsiu', '2004-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS44412116', '方安琪', 1, '+81 66-748-7316', 0, '329613994719799845', 'Rm. 45, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-04-17', 0, 0, 'fanganq', '2012-04-15', 'fanganqi1964', '2003-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS73063345', '萬朝偉', 0, '+86 28-3137-1606', 4, '691691922225280649', 'Room 46, CR Building, No. 448, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-11-19', 0, 0, 'mengchiuwai', '2007-08-09', 'cwm6', '2005-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS23921622', '梁玲玲', 1, '+1 212-770-5085', 0, '118524409457302655', '515 West Houston Street Suite 20, New York, NY 10014, United States', '1999-02-10', 0, 0, 'lelingling', '2006-05-27', 'lll', '2021-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS75072313', '村田玲奈', 0, '+81 66-282-2662', 3, '389889550164746548', 'Rm. 14, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1994-07-22', 0, 0, 'remura217', '2006-05-25', 'murrena823', '2015-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS67451149', 'Crystal King', 0, '+86 163-5048-9316', 1, '179956096979658308', 'No.29 building, 859 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-04-29', 0, 0, 'kingcrystal10', '2021-11-17', 'crystal313', '2003-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS01995156', '錢心穎', 1, '+1 312-207-2487', 4, '680762475175404541', '358 Pedway 3rd Floor, Chicago, IL 60601, United States', '1996-09-29', 0, 0, 'swchin', '2000-02-11', 'chsw', '2010-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS42321689', '大塚絢斗', 0, '+86 137-9304-5685', 1, '974704782262424441', 'Room 25, 502 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-10-03', 0, 0, 'ayato1204', '2005-11-06', 'otsukaayato', '2009-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS99935174', '青木聖子', 1, '+86 28-755-4659', 4, '737339358845702671', '中国成都市成华区二仙桥东三路441号2楼', '1985-07-18', 0, 0, 'aokiseiko4', '2004-01-27', 'seiko2', '2019-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS54962986', '古詠詩', 0, '+81 66-612-9954', 3, '988873100538249574', '日本おおさかし西成区天神ノ森二丁目1番12号26階', '1993-02-17', 0, 0, 'wingszeku14', '2018-04-01', 'ku9', '2015-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS65434886', '佐藤一輝', 1, '+1 614-169-9053', 4, '301566883705120926', '357 East Alley Apt 17, Columbus, GA 43201, United States', '1997-06-06', 0, 0, 'saikki5', '2007-08-21', 'isato56', '2007-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS52168252', 'Brandon Thomas', 0, '+1 330-941-3572', 3, '788333100142623779', '868 West Market Street Apartment 30, Akron, OH 44333, United States', '1989-03-22', 0, 0, 'brandonthomas', '2010-06-15', 'thomas7', '2001-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS74648127', '杜志明', 0, '+86 134-6837-5547', 3, '019824586505354231', '中国广州市天河区天河路346号30号楼', '1986-03-25', 0, 0, 'tochimi7', '2020-05-06', 'tocm1954', '2020-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS93476387', '贺子韬', 1, '+44 (151) 646 9085', 3, '445831385989318590', 'Flat 13, 735 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-03-22', 0, 0, 'zitaohe', '2014-03-29', 'hezitao', '2019-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS88694310', 'Ethel Reyes', 1, '+81 70-4998-4823', 4, '729408126560642973', '日本おおさかし近江堂一丁目7番12号50階', '1997-11-15', 0, 0, 'etrey', '2000-09-21', 'reyes1015', '2014-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS05382080', '孟睿', 1, '+44 5313 561115', 3, '327328271416375789', 'Unit 7, Oxford Eco Centre, 552 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-05-03', 0, 0, 'meng216', '2014-03-03', 'merui', '2013-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS91017226', '刘子异', 1, '+86 10-8346-2090', 1, '095714309204496383', 'No.28 building, 750 028 County Rd, Yanqing District, Beijing, China', '1989-04-22', 0, 0, 'ziyi81', '2002-12-29', 'liuz', '2004-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS73385455', 'John Mills', 0, '+81 52-172-0936', 0, '859706789635275015', '14F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-09-02', 0, 0, 'johmil10', '2011-09-15', 'johnm', '2000-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS97380215', '黄致远', 0, '+81 74-566-0007', 1, '855408361346459743', '日本ならし学園南三丁目9番6号31階', '1994-04-18', 0, 0, 'huang1004', '2007-07-16', 'zhuang', '2016-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS28035864', '小島七海', 0, '+81 3-7002-4995', 4, '029135410552827818', '33F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-10-05', 0, 0, 'kon128', '2005-11-04', 'nanak1012', '2006-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS48704592', '任慧敏', 0, '+81 66-334-8575', 1, '999382152552323812', '日本おおさかし西成区天神ノ森二丁目1番17号30階', '1990-01-17', 0, 0, 'ywaiman', '2010-05-30', 'waimanya1', '2011-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS65254281', 'Francisco Dunn', 0, '+81 3-9122-5934', 3, '319019673103836155', '11-kai, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-10-02', 0, 0, 'dfrancisco', '2009-06-02', 'franciscod', '2003-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS11643804', 'Hazel Stephens', 1, '+81 80-5794-9792', 2, '394080445307345111', '日本おおさかし西成区出城一丁目1番10号22階', '1991-03-04', 0, 0, 'stephazel5', '2000-09-29', 'hsteph2', '2005-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS33956403', 'Catherine Washington', 0, '+81 11-916-1705', 1, '997271095327170922', '30-kai, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-01-22', 0, 0, 'cathewashington42', '2020-07-07', 'cathewa523', '2005-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS62198325', '中川光', 1, '+81 80-0895-8047', 4, '013103144717730873', '19-kai, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-04-14', 0, 0, 'hikan', '2008-12-01', 'hikaru314', '2017-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS09687930', 'Julie Bryant', 0, '+81 11-736-9674', 1, '923604910891870667', '日本札幌白石区菊水三条五丁目4番17号49号室', '1995-07-04', 0, 0, 'bryant525', '2000-08-06', 'bryantjulie', '2005-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS43059589', '橋本和真', 1, '+86 10-0633-7774', 3, '053722735748774385', 'Room 7, CR Building, 931 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-12-14', 0, 0, 'kazumahashimoto1993', '2012-02-25', 'khash', '2003-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS75531500', '傅岚', 0, '+44 5801 275005', 1, '783405336915369542', 'Block 4, 625 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-02-17', 0, 0, 'fulan', '2004-08-24', 'lfu6', '2011-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS43338562', 'Joyce Stevens', 0, '+81 52-651-7194', 3, '921726796850674976', '28F, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-11-29', 0, 0, 'stjoyce', '2004-09-17', 'sjoyce', '2004-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS22791981', '雷天樂', 0, '+81 80-2041-7561', 3, '191039074662554786', '3F, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-04-12', 0, 0, 'loutl', '2020-10-10', 'louitinlok6', '2020-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS99643915', '木村海斗', 0, '+81 90-7797-5411', 3, '591426986852964575', '日本東京港区東新橋一丁目5番18号2階', '1995-11-19', 0, 0, 'kimurkaito', '2016-12-25', 'kk56', '2001-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS64294403', '吕睿', 1, '+44 7695 451279', 1, '593916145987643099', 'Block 32, 941 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-03-26', 0, 0, 'rui1206', '2018-01-29', 'lu1025', '2005-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS41734200', 'Sarah Sanders', 1, '+44 7388 650071', 1, '078012032915852500', 'No.6 Main building, 174 Regent Street, London, W1B 2LX, United Kingdom', '1986-09-06', 0, 0, 'ssanders9', '2016-02-28', 'sanderssar76', '2015-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS58170670', 'Bonnie Cox', 1, '+1 718-273-6101', 2, '630710223954192621', '640 Columbia St Apt 13, Brooklyn, NY 11231, United States', '1996-09-19', 0, 0, 'cobonni1', '2003-01-27', 'bonniecox68', '2014-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS04383825', '文頴思', 0, '+86 21-995-4179', 0, '715037412872675874', 'Room 1, CR Building, 458 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-01-22', 0, 0, 'man81', '2011-11-15', 'manws', '2015-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS95423263', '坂本愛梨', 1, '+81 66-689-5257', 1, '040642304366465893', '2-kai, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1987-03-28', 0, 0, 'sakamotoair', '2013-09-10', 'sakamotoai10', '2008-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS65341778', '鄺國榮', 1, '+44 (151) 620 0089', 2, '089464001366371535', 'Block 10, 936 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-10-30', 0, 0, 'kwkw', '2009-03-31', 'kwokwong5', '2015-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS60967949', '樊思妤', 0, '+44 (151) 889 8804', 2, '073146933632417847', 'Unit 19, Oxford Eco Centre, 477 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-09-12', 0, 0, 'syfan', '2003-11-04', 'syfan', '2015-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS74953257', '曹璐', 1, '+44 7588 311976', 2, '112965319733946313', 'Unit 5, Oxford Eco Centre, 615 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-04-08', 0, 0, 'caolu', '2014-03-11', 'caolu', '2009-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS36987351', 'Timothy Castro', 1, '+81 66-264-8380', 2, '980563523810640186', '日本おおさかし西成区出城一丁目1番16号5号室', '1994-07-06', 0, 0, 'castro10', '2006-08-03', 'timothyc', '2015-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS42167017', '钱秀英', 1, '+1 330-556-9978', 1, '687910589231698677', '436 Riverview Road Apt 8, Akron, OH 44313, United States', '1996-11-26', 0, 0, 'xiuying93', '2010-04-30', 'qianx', '2016-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS97619072', '王麗欣', 0, '+86 138-4520-8967', 1, '544067348416809291', '34F, 966 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-06-21', 0, 0, 'lywo64', '2021-10-19', 'lywong', '2021-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS94983315', '任詩涵', 1, '+1 330-660-1926', 3, '144973053941364856', '583 Ridgewood Road Suite 8, Akron, OH 44321, United States', '1998-06-22', 0, 0, 'sr415', '2007-09-29', 'renshihan', '2001-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS26689059', '岡本瑛太', 0, '+81 3-7838-4917', 1, '872899062372855875', '19F, 1-6-11, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-03-25', 0, 0, 'eitaokamoto6', '2021-01-05', 'eitaokamoto', '2012-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS83010446', '蒋致远', 0, '+1 614-667-6944', 2, '308380098781582156', '234 Diplomacy Drive Suite 7, Columbus, GA 43228, United States', '1993-03-18', 0, 0, 'zhiyuan9', '2010-07-10', 'zhiyujiang223', '2014-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS10370229', '宣永發', 0, '+1 718-420-2889', 3, '672484366743453035', '857 Bergen St Suite 42, Brooklyn, NY 11217, United States', '1997-03-10', 0, 0, 'wfhsuan10', '2017-06-22', 'wingfat7', '2019-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS92962565', '朱慧敏', 1, '+44 (151) 597 4577', 2, '052387407664509528', 'No.46 Main building, 26 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-04-18', 0, 0, 'wmch', '2016-11-18', 'waichu', '2002-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS91436583', '陳力申', 0, '+81 52-960-9539', 2, '864414006706401068', '日本なごやし北区楠味鋺三丁目80番17号34号室', '1989-04-06', 0, 0, 'chanls9', '2003-06-17', 'chls1205', '2000-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS67714524', '陶嘉伦', 1, '+86 769-878-7441', 3, '798558440934877366', 'No.4 building, 673 Huanqu South Street 2nd Alley, Dongguan, China', '1986-11-25', 0, 0, 'taojialun8', '2009-03-06', 'tjialun69', '2005-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS95911764', '原田一輝', 0, '+86 131-0067-1722', 3, '205008609320661463', 'No.27 building, 303 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-12-21', 0, 0, 'harada4', '2019-04-04', 'hai', '2020-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS93217041', 'Ryan Hunter', 1, '+86 20-7148-2946', 1, '390861344645052803', 'Room 4, 751 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-08-06', 0, 0, 'ryanhun', '2017-08-23', 'ryhun2020', '2000-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS37110434', '藤明', 0, '+81 80-5924-7876', 2, '057440256964307532', '日本ならし学園南三丁目9番6号2階', '1989-04-12', 0, 0, 'ming1946', '2020-12-10', 'ming09', '2017-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS52424491', 'Cindy Herrera', 0, '+81 66-911-8101', 2, '334339458316984132', 'Rm. 41, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-03-10', 0, 0, 'herreracindy', '2010-03-29', 'cindyh', '2000-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS38534229', '谭安琪', 1, '+1 212-341-3149', 3, '193026248985832488', '243 Canal Street Apartment 30, New York, NY 10013, United States', '1997-08-04', 0, 0, 'anqita', '2007-07-21', 'anqitan', '2018-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS76898146', '郑晓明', 1, '+81 80-4465-8125', 3, '930948035971449244', '20F, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-04-29', 0, 0, 'xiaz502', '2002-07-25', 'xiaomingzhe1013', '2005-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS92965485', '西村陽菜', 1, '+86 137-7660-2448', 4, '932194017639348063', 'Room 34, 18 028 County Rd, Yanqing District, Beijing, China', '1992-07-16', 0, 0, 'hini', '2009-03-24', 'hnishimura', '2019-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS34572252', '周子韬', 1, '+81 80-8984-3882', 1, '070472701690616389', '日本なごやし北区清水三丁目19番14号5階', '1989-01-06', 0, 0, 'zitaoz', '2011-05-09', 'zhz503', '2016-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS92584119', '钱晓明', 1, '+86 21-453-7276', 1, '109936995774637469', 'No.16 building, 825 Jianxiang Rd, Pudong, Shanghai, China', '1990-05-19', 0, 0, 'xqian55', '2021-02-04', 'qixiaom', '2005-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS59204908', 'Doris Marshall', 0, '+44 (151) 603 0817', 3, '333346582467548351', 'Unit 46, Oxford Eco Centre, 810 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-08-15', 0, 0, 'marshalld516', '2015-07-03', 'marshall9', '2011-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS71364841', '莫璐', 1, '+81 74-209-3327', 3, '822767850119473504', '32F, 3-9-9 Gakuenminami, Nara, Japan', '1985-02-14', 0, 0, 'molu826', '2000-10-06', 'mlu1', '2006-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS75940005', 'Debra Woods', 1, '+86 755-2162-9334', 0, '845435546502371006', '47F, 295 Shennan Ave, Futian District, Shenzhen, China', '1993-08-21', 0, 0, 'dwoods', '2004-01-20', 'woodebra', '2001-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS21647951', '區裕玲', 1, '+81 66-503-9281', 1, '239285253171446243', '日本おおさかし西成区出城一丁目1番2号15階', '1995-10-05', 0, 0, 'ylau829', '2001-10-05', 'ayl3', '2002-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS04675386', 'Cindy Castillo', 1, '+86 769-0301-5221', 4, '269794317964024837', 'Room 33, CR Building, 466 Shanhu Rd, Dongguan, China', '1988-09-14', 0, 0, 'cindycastillo', '2018-04-16', 'ccindy', '2014-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS89184566', '苏嘉伦', 0, '+81 70-5544-0632', 0, '745378803705405907', '42F, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-07-02', 0, 0, 'jialun78', '2010-11-12', 'jialunsu', '2008-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS65557898', 'Kelly Anderson', 1, '+81 66-809-6519', 3, '482541618837664852', '45-kai, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1997-08-22', 0, 0, 'kellande', '2014-12-03', 'anderk', '2017-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS73545359', '苏子异', 1, '+81 70-8796-3175', 3, '011947049264366731', '8-kai, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-11-07', 0, 0, 'suz1230', '2016-01-14', 'zs1944', '2007-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS80397130', '石川桜', 1, '+81 52-476-9805', 4, '797070724231795686', '日本なごやし北区楠味鋺三丁目80番13号1階', '1990-05-27', 0, 0, 'sakuishikawa8', '2011-08-19', 'sakura1997', '2013-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS83004037', '翁詩君', 1, '+86 760-037-4472', 2, '645651508151731835', '中国中山京华商圈华夏街750号20室', '1988-12-03', 0, 0, 'yungsk', '2002-10-04', 'szekwany', '2009-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS59053579', '佐々木優奈', 1, '+81 70-8502-6325', 2, '968107975343979619', 'Rm. 29, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-05-12', 0, 0, 'sasakiyun', '2011-05-24', 'sasakiyuna724', '2000-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS08368464', '谷口彩乃', 1, '+86 189-8569-2858', 0, '926138840355241245', '中国北京市東城区東直門內大街437号华润大厦6室', '1993-01-16', 0, 0, 'ayanot', '2004-10-06', 'taniguchiayano8', '2000-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS19610729', '彭子异', 1, '+1 614-959-3261', 0, '575484237124930841', '169 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1994-06-21', 0, 0, 'peng10', '2019-03-05', 'pz7', '2010-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS64665848', '薛浩然', 1, '+81 70-0262-4118', 0, '376848782932479986', '29-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-08-31', 0, 0, 'sit79', '2005-06-20', 'sithy8', '2006-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS05402028', '佘梓軒', 0, '+1 213-638-4385', 3, '051241959599881999', '685 Alameda Street Suite 21, Los Angeles, CA 90002, United States', '1996-09-08', 0, 0, 'sheh9', '2018-07-20', 'tszhinsheh', '2010-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS91703122', '傅世榮', 1, '+81 70-9050-5715', 1, '823459688876360112', 'Rm. 46, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-10-06', 0, 0, 'fu124', '2001-04-05', 'saiwing10', '2011-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS08906377', 'Ashley Howard', 0, '+86 755-044-4547', 0, '061854286256302059', 'No.12 building, 491 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-08-23', 0, 0, 'howardash', '2005-07-17', 'ashlh', '2018-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS89520266', '野口拓哉', 1, '+86 20-5927-9801', 4, '295219977374159190', 'No.35 building, 517 Xiaoping E Rd, Baiyun , Guangzhou, China', '1990-08-28', 0, 0, 'nogtakuya', '2020-05-31', 'tnogu', '2011-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS71175447', '毛云熙', 1, '+81 74-700-6571', 1, '559962247760458036', '23-kai, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1989-08-26', 0, 0, 'maoyunxi3', '2019-03-31', 'maoyunxi', '2004-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS31714497', 'Kathleen Shaw', 0, '+86 149-1870-2653', 3, '940194010680680655', '中国上海市浦东新区健祥路177号7栋', '1988-09-01', 0, 0, 'shaw724', '2007-12-20', 'shakath', '2014-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS60840112', '野口悠人', 0, '+44 (20) 6699 6247', 3, '827874275501181395', 'No.41 Main building, 252 Regent Street, London, W1B 2LX, United Kingdom', '1992-11-21', 0, 0, 'yunoguchi69', '2009-08-11', 'ny509', '2001-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS42891257', '侯嘉伦', 1, '+44 7519 632404', 3, '948535482291676913', 'Flat 24, 544 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-01-19', 0, 0, 'jialuh', '2004-10-29', 'jialhou', '2004-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS98302600', '錢浩然', 0, '+81 80-3435-8169', 1, '932939621068026809', '18-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1989-12-27', 0, 0, 'hychin5', '2017-09-14', 'chy721', '2001-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS90333980', '溫惠敏', 0, '+81 74-927-5298', 2, '729957123061030996', '日本ならし学園南三丁目9番1号50階', '1992-05-10', 0, 0, 'wmwan', '2015-09-28', 'waiman10', '2006-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS70909626', '汤杰宏', 1, '+1 614-194-3558', 1, '722357336009217110', '270 Tremont Road Apartment 12, Columbus, GA 43212, United States', '1990-09-29', 0, 0, 'jiehongta', '2012-04-18', 'tangjieho4', '2014-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS95428606', '王詠詩', 0, '+1 838-895-4752', 4, '428189971995412294', '594 Central Avenue Apartment 5, Albany, NY 12206, United States', '1995-04-05', 0, 0, 'wingsze706', '2011-07-27', 'wswo1988', '2018-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS29950337', '孔子韬', 0, '+81 66-261-6597', 2, '861413207438370615', '日本おおさかし東住吉区東田辺三丁目27番9号17階', '1993-05-31', 0, 0, 'kongzitao', '2000-12-18', 'kong1995', '2013-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS23519616', 'Paul Wright', 0, '+44 5797 078121', 4, '762651496094075962', 'Unit 47, Oxford Eco Centre, 546 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-12-17', 0, 0, 'wrpa', '2018-06-15', 'pawright', '2018-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS26198275', '三浦架純', 0, '+81 66-132-8230', 3, '632648636440492828', '43F, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1993-07-15', 0, 0, 'mkasumi', '2001-01-01', 'miura1988', '2013-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS65092677', 'Danielle Vasquez', 1, '+44 7248 250842', 0, '744705725781715468', 'Unit 36, Oxford Eco Centre, 22 Portland St, Manchester, M1 3LA, United Kingdom', '1994-04-30', 0, 0, 'vasquezdanielle', '2005-07-30', 'danielle90', '2001-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS87498447', '廖岚', 1, '+81 66-704-0573', 0, '162309941958412454', '46F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-10-22', 0, 0, 'lanliao7', '2003-11-12', 'liaolan', '2002-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS73897100', '横山悠人', 0, '+81 11-971-8007', 1, '579852089337317733', '日本札幌豊平区豊平三条十三丁目3番6号1階', '1986-01-30', 0, 0, 'yokoyama5', '2019-06-06', 'yutoyokoyama', '2018-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS62426524', '藤井舞', 1, '+1 330-962-0589', 1, '881228314894635787', '964 West Market Street Apt 11, Akron, OH 44333, United States', '1987-03-18', 0, 0, 'mafujii', '2007-11-04', 'mai45', '2013-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS80131422', 'John Marshall', 0, '+86 755-297-4614', 2, '162752285901100221', '中国深圳罗湖区清水河一路692号35楼', '1993-11-03', 0, 0, 'johnmarsh94', '2012-05-26', 'marshalljohn', '2001-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS46467886', '後藤美緒', 1, '+1 212-455-4200', 0, '510807854318487142', '350 Canal Street Suite 47, New York, NY 10013, United States', '1994-03-20', 0, 0, 'gom1220', '2017-06-10', 'gotomio317', '2003-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS79802856', 'Louise Martin', 0, '+86 199-7195-3215', 0, '154260599401508034', 'No.29 building, 224 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-05-24', 0, 0, 'louisem304', '2019-09-17', 'louise72', '2010-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS80255049', '前田詩乃', 0, '+1 212-321-3725', 1, '382196463940302918', '264 Fifth Avenue Apartment 43, New York, NY 10017, United States', '1997-08-05', 0, 0, 'maedshino', '2001-01-09', 'maeda6', '2015-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS33151527', '森悠人', 0, '+86 21-3640-8500', 3, '276941113847755775', '中国上海市徐汇区虹桥路724号12号楼', '1998-11-12', 0, 0, 'my99', '2008-07-13', 'mori716', '2000-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS95916385', '吳力申', 0, '+86 28-1487-9748', 2, '772764918473123703', 'Room 15, 536 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-03-03', 0, 0, 'ngliksun', '2003-07-15', 'ngls', '2005-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS10127352', '宣安娜', 1, '+86 176-5852-5732', 0, '480686132352223637', '中国深圳罗湖区蔡屋围深南东路224号35室', '1989-07-17', 0, 0, 'onnahsua', '2013-03-05', 'onhsu702', '2015-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS08026414', '古安娜', 1, '+1 213-960-6985', 3, '185020707365325300', '341 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1986-08-27', 0, 0, 'kuon', '2013-03-13', 'onnak1954', '2017-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS63971779', '高田美緒', 0, '+44 (116) 365 9324', 1, '984808897917662198', 'Unit 29, Oxford Eco Centre, 580 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-03-01', 0, 0, 'takadamio', '2010-07-28', 'takmio59', '2008-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS98025846', 'Sandra Jones', 1, '+81 52-881-0443', 4, '038107004662516767', '11F, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-28', 0, 0, 'jonsandra94', '2000-06-11', 'sandrajones520', '2016-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS52755910', '谷力申', 0, '+1 718-125-3984', 2, '406889056685692829', '815 1st Ave Suite 22, Brooklyn, NY 11220, United States', '1985-12-28', 0, 0, 'kooliksun', '2000-12-22', 'koo530', '2017-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS17588102', '侯宇宁', 0, '+86 10-8643-7409', 2, '872214779696047282', 'No.8 building, 852 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-04-17', 0, 0, 'hyuning51', '2018-07-23', 'houyuning629', '2017-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS65860032', '龚子异', 0, '+44 7590 106479', 1, '385791606676231705', 'Unit 46, Oxford Eco Centre, 183 Maddox Street, London, W1S 1PU, United Kingdom', '1994-10-17', 0, 0, 'gziyi', '2016-09-16', 'gong306', '2021-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS85944861', 'Kenneth Cox', 1, '+81 52-410-5292', 2, '037513902645776702', '14F, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-11-25', 0, 0, 'kennecox65', '2007-10-17', 'kenncox', '2017-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS02187740', '内田舞', 0, '+81 11-015-8199', 1, '982516156159500158', '9F, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-04-18', 0, 0, 'umai', '2013-06-15', 'uma94', '2002-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS27700844', 'Douglas Murray', 1, '+1 614-331-1978', 0, '462734306105725622', '583 Tremont Road Apartment 13, Columbus, GA 43212, United States', '1986-07-20', 0, 0, 'douglasm6', '2020-12-01', 'murradoug2', '2013-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS89501776', '樂慧敏', 0, '+81 3-7970-3292', 3, '948022066201704889', '14F, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-02-13', 0, 0, 'lok417', '2006-07-15', 'lokwaiman', '2008-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS61292405', '尹頴思', 1, '+86 162-2613-0789', 0, '377502587790152360', '39F, 424 028 County Rd, Yanqing District, Beijing, China', '1994-01-07', 0, 0, 'yinwingsze', '2006-01-28', 'wingsze05', '2010-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS90068755', '黄子韬', 0, '+1 614-593-4272', 2, '072660936624103197', '24 East Cooke Road Apt 24, Columbus, GA 43214, United States', '1997-03-13', 0, 0, 'huazitao4', '2022-02-17', 'huangzitao82', '2004-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS85822157', '松本大地', 1, '+1 312-999-9802', 3, '913968481135720789', '677 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1986-10-17', 0, 0, 'daichim54', '2017-03-28', 'mada', '2010-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS83120145', '任晓明', 0, '+81 3-1022-4591', 2, '386738470821344861', '日本東京港区東新橋一丁目5番20号6階', '1991-09-11', 0, 0, 'ren88', '2020-08-12', 'xiaomingre', '2014-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS85603581', '田安琪', 1, '+81 3-4186-1268', 2, '871771821557089055', '11F, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1985-10-24', 0, 0, 'oktin4', '2009-04-14', 'oktin910', '2008-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS38316595', 'Jose Gonzalez', 0, '+44 (116) 861 7954', 0, '368393462811607245', 'Unit 22, Oxford Eco Centre, 908 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-07-12', 0, 0, 'gonzjose', '2007-10-04', 'jogonzalez', '2003-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS97483247', '姜玲玲', 0, '+86 28-2184-7771', 4, '208666197733012225', '中国成都市成华区二仙桥东三路679号26楼', '1995-01-27', 0, 0, 'chang6', '2021-04-10', 'linchan610', '2018-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS04301718', '中山美月', 0, '+81 52-620-7959', 3, '058954901351802859', 'Rm. 11, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-11-29', 0, 0, 'nakayama03', '2002-05-16', 'nakmitsuki', '2001-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS14591900', '斎藤架純', 0, '+44 (116) 098 2281', 3, '706629408200656772', 'No.22 Main building, 928 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-05-26', 0, 0, 'ksaito', '2016-12-23', 'ksaito4', '2001-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS97728758', '罗睿', 0, '+44 (1865) 87 0508', 3, '136259970198533713', 'Unit 38, Oxford Eco Centre, 183 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-08-05', 0, 0, 'luorui71', '2008-05-18', 'rulu', '2005-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS95334756', '後藤湊', 0, '+81 3-4186-5195', 4, '786382208687027884', '日本東京港区東新橋一丁目5番5号40号室', '1986-09-09', 0, 0, 'gotm309', '2000-10-28', 'mgoto', '2002-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS78452673', 'Stephen Kennedy', 1, '+81 90-1110-5968', 4, '981272814932596104', '日本おおさかし近江堂一丁目7番11号47号室', '1992-07-31', 0, 0, 'skenne', '2020-11-15', 'stephenkenne10', '2013-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS26776919', 'Peter Reyes', 1, '+44 (151) 572 9750', 3, '219897779552990435', 'Flat 46, 669 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-05-09', 0, 0, 'rpeter723', '2008-03-10', 'petrey', '2013-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS32702211', 'Lucille Rose', 1, '+81 11-374-3488', 4, '543780117290422747', '日本札幌白石区菊水三条五丁目2番3号6階', '1994-08-29', 0, 0, 'rol', '2014-06-27', 'roseluc', '2008-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS07651707', 'Alfred Black', 1, '+44 5136 460622', 4, '840227857229454357', 'Block 5, 322 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-05-11', 0, 0, 'blacka', '2009-08-26', 'blackalfred907', '2008-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS60867017', '謝俊宇', 0, '+81 66-757-4252', 3, '252942901153739656', '日本おおさかし西成区天神ノ森二丁目1番8号19階', '1994-06-21', 0, 0, 'chunyuts', '2017-05-24', 'chts69', '2005-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS16990382', 'Jamie Herrera', 0, '+86 10-8297-2741', 3, '389971925084614577', '中国北京市房山区岳琉路202号29栋', '1988-05-22', 0, 0, 'jamieherrera', '2007-12-02', 'jamie1207', '2020-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS87751346', '中村拓哉', 0, '+44 5185 278071', 1, '580184118551682011', 'No.45 Main building, 743 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-03-16', 0, 0, 'takuyanakamura1', '2017-10-17', 'nakamta', '2010-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS87496109', 'Mildred Moreno', 0, '+1 213-044-6254', 0, '972901510962777829', '925 Alameda Street Apt 18, Los Angeles, CA 90002, United States', '1994-01-04', 0, 0, 'morenomildred', '2004-07-07', 'morenomildred51', '2014-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS11592491', 'Don Diaz', 1, '+86 195-3487-8491', 4, '771474174882376286', '中国上海市黄浦区淮海中路728号华润大厦8室', '1990-03-15', 0, 0, 'didon505', '2007-09-26', 'dondiaz90', '2019-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS11447269', '三浦翼', 0, '+86 755-944-9628', 1, '561231406159465458', '中国深圳龙岗区学园一巷325号32楼', '1988-04-22', 0, 0, 'tsubasa1981', '2004-09-25', 'tsubasam', '2007-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS10897073', '姚國賢', 0, '+81 11-498-3797', 2, '232265295978960779', '日本札幌清田区真栄四条五丁目19番3号4階', '1992-06-10', 0, 0, 'kwokyinyeow', '2006-12-27', 'yeky', '2020-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS79276193', '彭震南', 1, '+81 80-2049-2780', 1, '281726204186285479', '34F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-12-03', 0, 0, 'pengzhennan', '2014-10-17', 'pengz', '2007-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS33416697', '郑云熙', 1, '+44 5577 463412', 4, '815094294672478812', 'No.35 Main building, 789 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-09-11', 0, 0, 'yunxiz', '2018-10-10', 'zhey', '2013-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS20457532', '黃家輝', 0, '+81 80-3849-2167', 3, '737275276091828266', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-12-13', 0, 0, 'kafai4', '2011-11-04', 'kafai329', '2018-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS50405751', 'Robin Gardner', 1, '+86 21-2134-0852', 3, '256354063201215819', '中国上海市闵行区宾川路699号15室', '1995-07-14', 0, 0, 'rog817', '2005-08-16', 'gardnerr426', '2008-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS39679177', '太田健太', 0, '+81 70-1833-7918', 1, '173771892045015573', '49F, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-10-07', 0, 0, 'okenta6', '2021-09-01', 'otaken', '2009-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS09268129', '小野美緒', 0, '+81 52-096-0658', 3, '593770299900329785', 'Rm. 26, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1992-12-07', 0, 0, 'onom83', '2001-06-12', 'miono', '2003-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS29444140', '宣心穎', 0, '+81 80-3869-2169', 3, '345392022829178024', '日本なごやし瑞穂区河岸町四丁目20番2号41号室', '1995-03-18', 0, 0, 'hsuan2', '2011-07-24', 'hsuan41', '2013-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS82689057', '湯明詩', 0, '+86 20-8428-6601', 3, '236969186473549107', '中国广州市白云区机场路棠苑街五巷5号18栋', '1986-06-12', 0, 0, 'msto51', '2012-12-31', 'tomingsze', '2011-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS37547431', '周榮發', 0, '+81 3-2695-1771', 1, '411581749510025051', '9-kai, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-10-23', 0, 0, 'wfchow10', '2018-07-22', 'cwingfat8', '2011-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS31970356', '黎小慧', 0, '+1 213-653-8682', 3, '486026428262056630', '290 Alameda Street Apt 36, Los Angeles, CA 90002, United States', '1985-10-27', 0, 0, 'lai1998', '2005-06-20', 'siuwai7', '2008-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS25356528', '宋子韬', 0, '+44 5593 622186', 3, '650309254157163260', 'Block 35, 641 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-12-06', 0, 0, 'zso', '2013-01-13', 'songzitao506', '2000-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS45230524', '伊藤大和', 1, '+1 212-699-3889', 3, '852709308684028038', '720 West Houston Street Apt 45, New York, NY 10014, United States', '1990-09-01', 0, 0, 'yamatoito', '2020-01-07', 'itoyamato65', '2011-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS48421765', 'Linda Simpson', 0, '+44 5905 665250', 3, '689453570192131848', 'Block 5, 733 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-10-06', 0, 0, 'simpsonlin3', '2002-02-23', 'simpsonlinda210', '2001-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS11322111', '钱云熙', 0, '+86 170-0987-9784', 2, '967426734387220232', '中国北京市东城区东单王府井东街9号22栋', '1985-11-25', 0, 0, 'yunxiqian', '2019-08-28', 'yunxiq', '2003-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS35541557', '戚安琪', 1, '+44 (116) 285 0402', 3, '168484823803973509', 'Unit 38, Oxford Eco Centre, 663 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-02-21', 0, 0, 'chic46', '2012-08-21', 'okchic', '2018-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS98572638', '田嘉欣', 1, '+86 21-5701-9367', 3, '129326693685161116', 'Room 41, CR Building, 77 Binchuan Rd, Minhang District, Shanghai, China', '1995-07-10', 0, 0, 'tikaryan1015', '2002-02-28', 'tinkaryan', '2000-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS96678023', '林致远', 0, '+81 70-4172-1879', 3, '778044478335435290', '日本札幌清田区真栄四条五丁目19番8号5階', '1998-04-19', 0, 0, 'linz2006', '2018-05-29', 'zhilin924', '2020-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS80939476', '中村海斗', 1, '+81 80-4729-1977', 3, '383719205417582088', '日本なごやし北区楠味鋺三丁目80番1号19階', '1991-09-12', 0, 0, 'nakaito', '2004-06-09', 'nakamurak', '2010-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS05479216', '斎藤大輔', 1, '+86 179-1717-2113', 3, '599317938340347893', 'No.8 building, 453 Shanhu Rd, Dongguan, China', '1986-10-30', 0, 0, 'saidaisuke', '2003-01-01', 'saito7', '2018-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS92124284', '钟秀英', 0, '+1 213-030-1840', 0, '500797114276381066', '413 Grape Street Apartment 39, Los Angeles, CA 90002, United States', '1996-03-09', 0, 0, 'xz7', '2013-02-04', 'xzho', '2005-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS53094947', 'Richard Owens', 0, '+86 150-4442-4592', 0, '010753291743744653', '中国成都市锦江区红星路三段538号9楼', '1989-10-11', 0, 0, 'richardowens2', '2018-09-23', 'ricowe', '2012-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS90753104', '吕秀英', 1, '+81 70-5426-3010', 2, '238562073813760800', '21-kai, 3-9-20 Gakuenminami, Nara, Japan', '1987-11-13', 0, 0, 'xiuyinglu', '2000-12-06', 'luxiuying313', '2009-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS88118199', '高木陸', 1, '+86 139-6152-0475', 1, '393432428093942499', '28F, 460 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-10-31', 0, 0, 'takagiriku', '2012-12-10', 'rt4', '2012-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS71219377', '小山一輝', 1, '+44 (1865) 38 5575', 0, '235580258742469187', 'Flat 46, 10 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-03-30', 0, 0, 'ikki1985', '2007-12-22', 'kik2', '2010-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS33239309', 'Travis Schmidt', 0, '+86 20-2189-1893', 0, '156726796772072196', 'Room 42, CR Building, 916 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-11-16', 0, 0, 'schmidt1945', '2001-11-26', 'travissc', '2009-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS83492729', 'Jerry Castro', 0, '+81 74-211-0400', 3, '601511303797873609', '45F, 3-9-19 Gakuenminami, Nara, Japan', '1996-09-10', 0, 0, 'jerrycastro', '2016-01-05', 'castjer', '2001-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS47191567', '鄭青雲', 0, '+86 755-180-0660', 2, '029027977565022149', '中国深圳罗湖区清水河一路320号7栋', '1997-11-30', 0, 0, 'cwc14', '2004-01-19', 'checw', '2010-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS57766024', '向晓明', 1, '+86 760-4695-7140', 2, '820007742306620748', 'No.33 building, 408 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-03-23', 0, 0, 'xiaxiang', '2015-03-25', 'xiang113', '2014-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS93031141', '曾國明', 1, '+86 195-6667-1048', 1, '523704666252716419', 'No.33 building, 690 Shanhu Rd, Dongguan, China', '1991-06-16', 0, 0, 'tskwokming2014', '2020-07-31', 'kmt', '2011-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS45994274', '尹睿', 1, '+81 66-145-6114', 3, '380084976957190165', '6F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-03-20', 0, 0, 'ruyin', '2009-04-27', 'yrui', '2005-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS22346190', '崔小慧', 1, '+81 66-148-8807', 1, '448646528761378056', '37F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1986-03-13', 0, 0, 'swchoi830', '2021-12-31', 'choisiuwai5', '2016-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS40375096', 'Jennifer Gibson', 1, '+81 70-8670-8402', 3, '009946668197255193', '日本おおさかし西成区天神ノ森二丁目1番15号10階', '1987-07-25', 0, 0, 'gjennifer', '2010-05-28', 'jennifer3', '2004-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS68443727', '向宇宁', 0, '+81 52-700-3951', 4, '317360064402906939', '50F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-02-02', 0, 0, 'xiangyun5', '2017-03-29', 'yuningxia07', '2007-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS74564013', 'Harold Vasquez', 1, '+81 70-2346-1036', 3, '221780248017524461', '日本なごやし北区楠味鋺三丁目80番19号41号室', '1987-08-15', 0, 0, 'harvasquez', '2006-01-15', 'harold8', '2016-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS32865365', '袁霆鋒', 1, '+81 11-105-9750', 3, '454691624494901361', '日本札幌清田区真栄四条五丁目19番2号20号室', '1985-10-28', 0, 0, 'tingfungyuen', '2018-07-23', 'ytf', '2007-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS19321162', '郑岚', 0, '+81 70-1880-9790', 0, '285191768622556361', '18-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-12-20', 0, 0, 'zhelan', '2016-04-14', 'lan1017', '2010-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS38794914', '蕭祖兒', 0, '+86 20-957-0203', 1, '341865618272370889', '中国广州市海珠区江南西路33号华润大厦8室', '1993-04-29', 0, 0, 'siu2', '2004-07-05', 'choyesi', '2011-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS73258434', '莫安琪', 1, '+44 (161) 965 4128', 3, '078722657555586316', 'No.14 Main building, 750 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-03-22', 0, 0, 'anqim', '2002-04-08', 'anqimo', '2021-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS03589669', '李睿', 1, '+81 52-446-5338', 3, '532296919272410071', '日本なごやし瑞穂区河岸町四丁目20番18号42階', '1997-05-29', 0, 0, 'lir', '2021-06-08', 'ruili9', '2006-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS10465713', '史詩涵', 1, '+86 187-5282-0105', 2, '453575343238320658', '中国北京市東城区東直門內大街692号19栋', '1993-11-27', 0, 0, 'shihash', '2003-03-20', 'shishihan1962', '2008-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS66617413', '宣玲玲', 1, '+1 213-621-6786', 2, '987977650809499961', '768 Wall Street Suite 9, Los Angeles, CA 90003, United States', '1998-12-26', 0, 0, 'lingling1114', '2011-01-20', 'llhsuan', '2013-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS13916266', 'Juan Herrera', 0, '+1 213-942-5956', 0, '751717576383437692', '126 Figueroa Street Apt 28, Los Angeles, CA 90037, United States', '1992-05-07', 0, 0, 'juan827', '2013-10-25', 'juanh', '2005-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS78066839', 'Mary Mason', 1, '+1 838-374-0932', 0, '544293921894291833', '313 State Street Apartment 3, Albany, NY 12203, United States', '1987-08-23', 0, 0, 'mamas', '2012-05-29', 'masonm3', '2005-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS87386770', '廖裕玲', 0, '+81 66-173-7853', 2, '576534641075844805', '日本おおさかし近江堂一丁目7番19号43号室', '1994-09-03', 0, 0, 'ylliao', '2018-01-20', 'yulliao', '2008-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS61363723', '苑世榮', 1, '+81 70-5205-1643', 3, '846475932138901113', '27F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-09-08', 0, 0, 'yuensw7', '2014-04-28', 'ysw1217', '2010-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS36144300', '邓宇宁', 0, '+81 52-736-3100', 0, '720667447105837645', '30-kai, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-09-28', 0, 0, 'yuningd', '2009-12-29', 'yuningdeng1943', '2014-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS92285747', 'Jennifer Reynolds', 1, '+81 66-011-0673', 1, '573191620192807583', '日本おおさかし西成区出城一丁目1番15号8階', '1992-08-02', 0, 0, 'jenniferre', '2001-08-28', 'reynjenni', '2012-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS85454784', 'Judith Peterson', 1, '+1 838-503-6985', 1, '607876563136468813', '28 State Street Apt 25, Albany, NY 12203, United States', '1996-06-23', 0, 0, 'judithpeter', '2016-08-20', 'petersonj', '2010-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS39995840', '赵宇宁', 0, '+1 212-585-0217', 1, '845526805208107096', '753 Canal Street Apartment 45, New York, NY 10013, United States', '1999-01-14', 0, 0, 'yzha1', '2008-04-14', 'yuningzhao', '2010-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS58360488', '三浦大和', 1, '+1 213-253-1441', 2, '835014761951815151', '79 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-08-31', 0, 0, 'myamato', '2001-04-24', 'yamatmiura2', '2016-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS11756479', '姚杰宏', 1, '+86 178-4518-9358', 4, '083434859151524440', '中国东莞坑美十五巷67号16号楼', '1995-09-13', 0, 0, 'jiehongyao', '2012-01-20', 'jiehongy', '2013-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS40756227', 'Rose Reyes', 1, '+86 136-9471-3569', 2, '481660811547357972', '中国深圳龙岗区学园一巷886号华润大厦49室', '1991-08-06', 0, 0, 'reyesr308', '2012-10-02', 'rosere', '2006-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS00005653', '尹志明', 0, '+44 (1865) 18 1864', 2, '837528698431134421', 'No.21 Main building, 144 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-12-12', 0, 0, 'ycm', '2001-10-14', 'cmyin', '2003-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS09617702', '森大地', 1, '+86 20-512-6977', 3, '054618314471173007', 'Room 28, 772 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-01-21', 0, 0, 'daimo', '2020-08-03', 'mordaichi', '2001-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS57791144', '桜井愛梨', 0, '+81 90-2662-8557', 3, '648480815887326675', '33-kai, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-01-04', 0, 0, 'airisakur', '2017-04-21', 'airisakurai', '2012-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS25677317', '鈴木光莉', 0, '+44 7299 101358', 2, '701753300111953924', 'Flat 15, 970 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-07-20', 0, 0, 'hikari123', '2015-10-14', 'hikarisuz330', '2002-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS87345356', 'Paula Diaz', 0, '+86 760-080-7166', 2, '963040616724253706', '中国中山京华商圈华夏街248号49楼', '1985-08-04', 0, 0, 'pauld55', '2021-04-28', 'pauladi5', '2017-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS97817143', '譚安琪', 1, '+81 66-821-6251', 3, '666782007824392785', '日本おおさかし東住吉区東田辺三丁目27番7号2階', '1985-08-17', 0, 0, 'onkatam53', '2000-04-21', 'tonkay', '2011-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS50301534', 'Elizabeth Cole', 0, '+86 10-770-2367', 1, '423779689787878301', '中国北京市西城区复兴门内大街586号华润大厦4室', '1995-03-30', 0, 0, 'elizabethc', '2015-05-07', 'cole821', '2002-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS08172388', 'Thomas Morgan', 1, '+44 5778 394436', 4, '183250413252739000', 'Unit 21, Oxford Eco Centre, 37 Pollen Street, London, W1S 1NG, United Kingdom', '1988-01-04', 0, 0, 'thm1', '2015-11-16', 'thomasmo', '2007-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS82303760', 'Nicole West', 0, '+86 179-4615-4827', 1, '058437217056767965', '中国上海市徐汇区虹桥路450号2楼', '1991-05-29', 0, 0, 'nicolewest913', '2019-03-20', 'west9', '2017-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS27753364', 'Anne Soto', 0, '+81 90-3379-6591', 2, '295755716698795565', '19F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-02-14', 0, 0, 'annesoto', '2006-10-28', 'sotoa319', '2014-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS72032144', 'Jamie Warren', 0, '+86 148-8665-8874', 3, '714406062166186697', '中国深圳罗湖区清水河一路534号44号楼', '1992-12-10', 0, 0, 'jamiwarren43', '2014-03-19', 'wjamie', '2007-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS87759893', '蔡宇宁', 1, '+1 614-112-8240', 3, '176004719232301584', '578 East Cooke Road Apartment 13, Columbus, GA 43214, United States', '1997-03-07', 0, 0, 'yunicai', '2013-06-30', 'yuninc10', '2015-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS41213427', '郑岚', 0, '+86 184-3941-7590', 4, '725708779346832674', '中国深圳福田区景田东一街550号1号楼', '1989-10-02', 0, 0, 'lan2', '2005-01-08', 'zlan', '2021-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS86597727', '钱岚', 1, '+44 (161) 423 7125', 0, '159303711893040741', 'No.46 Main building, 277 Portland St, Manchester, M1 3LA, United Kingdom', '1987-01-13', 0, 0, 'lqian', '2020-08-04', 'qilan1214', '2017-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS03190820', 'Edwin Kelley', 0, '+44 5654 936612', 3, '587144466090663586', 'Unit 46, Oxford Eco Centre, 297 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-04-10', 0, 0, 'edwin83', '2009-08-03', 'edwin613', '2019-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS93139735', '胡子异', 0, '+86 172-1458-6279', 4, '881554165433975721', 'No.39 building, 220 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-05-27', 0, 0, 'huzi', '2011-12-15', 'ziyi9', '2007-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS97497033', 'Jimmy Robertson', 0, '+44 (1865) 69 0470', 2, '827975233586244789', 'Block 41, 814 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1994-07-03', 0, 0, 'robj2011', '2012-11-24', 'roberjim10', '2018-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS49455106', 'Miguel Foster', 0, '+86 21-3216-8426', 1, '626172188355601632', 'Room 49, 565 Hongqiao Rd., Xu Hui District, Shanghai, China', '1998-12-06', 0, 0, 'miguelfos621', '2012-12-23', 'foster96', '2015-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS24039932', 'Francisco Dixon', 1, '+81 80-9092-8795', 3, '278971079663884879', 'Rm. 8, 13-3-15 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-01-30', 0, 0, 'dixonfran93', '2016-08-06', 'fdix', '2008-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS73121211', '松田涼太', 0, '+86 10-231-3656', 1, '876136099221556074', '26F, 183 Yueliu Rd, Fangshan District, Beijing, China', '1994-06-28', 0, 0, 'ryota926', '2011-02-09', 'matsudaryot', '2020-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS95963466', '石田舞', 0, '+81 80-8126-5645', 1, '574520978776014838', '日本なごやし熱田区千年二丁目5番3号14階', '1996-11-19', 0, 0, 'ishidamai', '2011-02-03', 'maish', '2019-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS90298519', '陶安娜', 0, '+86 21-5961-1082', 1, '894218193747816487', '中国上海市浦东新区健祥路749号46号楼', '1986-06-26', 0, 0, 'tao808', '2014-04-24', 'tonna', '2012-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS13902645', '陆致远', 0, '+1 212-564-2676', 4, '397191545975249397', '391 Bank Street Apartment 43, New York, NY 10014, United States', '1987-06-29', 0, 0, 'zhiyuanl', '2006-06-10', 'zhiyl320', '2015-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS89554715', 'Theodore Hunt', 0, '+81 3-5365-8388', 2, '136223625738406558', '日本東京港区東新橋一丁目5番8号33階', '1998-01-22', 0, 0, 'thunt3', '2003-02-26', 'theodore617', '2011-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS42539991', '蔣安娜', 1, '+81 3-9569-5092', 1, '987963308465693976', 'Rm. 17, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-05-29', 0, 0, 'onna14', '2008-09-20', 'chiang5', '2012-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS54120974', '邓安琪', 0, '+1 718-622-0334', 3, '342324404242349121', '349 Columbia St Apartment 20, Brooklyn, NY 11231, United States', '1991-09-18', 0, 0, 'danqi6', '2014-10-02', 'danq', '2008-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS36558491', 'Edwin Graham', 1, '+1 718-436-0887', 1, '567667747773085793', '847 Columbia St Apt 18, Brooklyn, NY 11231, United States', '1989-02-03', 0, 0, 'gedwin', '2003-07-01', 'edwin226', '2017-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS86630997', 'Paul Martinez', 1, '+1 838-440-8054', 1, '867175739486243422', '998 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-12-13', 0, 0, 'paulm', '2010-01-03', 'marpaul1951', '2017-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS81712267', 'Carl Robinson', 0, '+44 (116) 511 8741', 0, '878361517878327256', 'Unit 48, Oxford Eco Centre, 820 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-05-29', 0, 0, 'robinson70', '2010-11-29', 'rcar811', '2021-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS67937739', 'Clara Adams', 0, '+81 3-1735-4506', 3, '320617504543662929', '日本東京中央区銀座三丁目12番9号37階', '1985-08-09', 0, 0, 'cadams18', '2012-07-04', 'clad', '2006-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS63333978', 'Joyce Kennedy', 0, '+81 66-817-7986', 2, '213630881539576491', '22F, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1987-10-02', 0, 0, 'kennedyjoyce1212', '2001-10-30', 'joykenn', '2017-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS18080976', 'Eva Daniels', 1, '+1 312-483-6106', 0, '622844661262470584', '663 North Michigan Ave Suite 4, Chicago, IL 60611, United States', '1990-01-20', 0, 0, 'evad', '2004-02-21', 'eva106', '2003-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS63630671', '郑嘉伦', 0, '+1 718-742-1082', 4, '859661019925665047', '410 1st Ave Suite 12, Brooklyn, NY 11220, United States', '1987-11-17', 0, 0, 'jialunz', '2016-05-25', 'zhengj', '2004-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS64343962', 'Edward Stevens', 1, '+1 614-807-4530', 0, '584411542260627808', '167 East Alley Apartment 50, Columbus, GA 43201, United States', '1988-07-17', 0, 0, 'sedward9', '2015-08-11', 'steveedward', '2015-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS10349519', '江震南', 1, '+1 614-291-7374', 1, '138823584970615094', '957 Diplomacy Drive Apartment 34, Columbus, GA 43228, United States', '1986-07-04', 0, 0, 'jiang525', '2004-03-28', 'zhejiang', '2013-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS25746248', '崔子韬', 1, '+44 (151) 158 4982', 1, '634287229847401388', 'Flat 50, 679 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-12-21', 0, 0, 'cuizita927', '2010-08-08', 'zitao1994', '2016-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS71642447', '毛志遠', 1, '+86 769-4830-6554', 1, '950872482373984570', '中国东莞环区南街二巷13号6栋', '1987-08-09', 0, 0, 'chiyuen9', '2006-12-01', 'chiyuenmo1959', '2015-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS40262595', '譚惠敏', 1, '+86 20-8943-6839', 3, '899247566002776690', 'No.29 building, 855 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-10-05', 0, 0, 'tam1202', '2004-07-13', 'tamwm', '2006-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS51678146', 'Carl Lee', 0, '+44 7977 426892', 3, '812701487574188174', 'Unit 22, Oxford Eco Centre, 874 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1996-08-22', 0, 0, 'lee2', '2003-07-23', 'lcarl', '2011-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS81505670', '伍榮發', 0, '+81 90-2909-2843', 1, '327024693008082355', '30F, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-01-06', 0, 0, 'ngwingfat4', '2006-07-03', 'ngwf', '2005-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS43675874', '廖岚', 1, '+44 (121) 129 3978', 2, '049936322428429004', 'Flat 19, 623 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-07-31', 0, 0, 'liao9', '2011-01-14', 'liaolan', '2001-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS61371954', '任慧嫻', 1, '+81 90-6882-5498', 0, '098321167314538283', '日本東京渋谷区代々木二丁目3番17号8階', '1985-05-25', 0, 0, 'yamwh', '2002-03-20', 'waihan712', '2001-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS56956590', '田梓軒', 1, '+86 135-9953-8785', 3, '995579809736995871', '中国北京市海淀区清河中街68号725号华润大厦28室', '1995-09-10', 0, 0, 'tinth', '2000-03-01', 'tszhint83', '2017-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS50585361', '大野葉月', 1, '+81 52-381-3642', 0, '886140799332924908', '日本なごやし熱田区千年二丁目5番7号40階', '1998-02-25', 0, 0, 'hon', '2010-12-18', 'onha11', '2007-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS90941757', '段子异', 0, '+86 194-0667-5874', 1, '271395278324544202', '22F, 227 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1986-10-11', 0, 0, 'ziyiduan2000', '2001-03-11', 'ziyi328', '2003-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS88355206', '江永發', 0, '+81 3-5433-6213', 3, '987758374064906977', '日本東京中央区銀座三丁目12番17号26号室', '1987-04-01', 0, 0, 'wingfat3', '2005-08-03', 'kong7', '2001-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS85477711', 'Angela Crawford', 0, '+81 80-5446-1767', 1, '487756016997281513', '50F, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1995-04-13', 0, 0, 'crawford45', '2009-07-17', 'cangela', '2020-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS37951025', 'Ralph Ortiz', 0, '+44 5515 550420', 2, '468278232044222824', 'Block 31, 620 New Street, Birmingham, B2 4DB, United Kingdom', '1991-01-03', 0, 0, 'ralphortiz', '2004-01-18', 'rortiz55', '2010-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS35181913', 'Luis Owens', 1, '+44 (161) 920 5264', 1, '810126055140375645', 'Block 20, 522 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-11-02', 0, 0, 'luio', '2002-06-02', 'lowen809', '2013-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS57515665', '斉藤蓮', 0, '+86 149-2008-3727', 3, '703315272322702482', '中国成都市成华区二仙桥东三路524号华润大厦36室', '1989-06-17', 0, 0, 'rsaito', '2017-04-23', 'saitoren1115', '2001-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS39245271', '古家玲', 1, '+44 7974 731753', 4, '522974036078162161', 'Unit 21, Oxford Eco Centre, 962 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-02-12', 0, 0, 'ku6', '2011-09-09', 'kukl', '2013-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS24989316', '田秀英', 1, '+81 3-6010-3455', 2, '922509047278490967', '日本東京千代田区丸の内一丁目6番13号38階', '1992-09-02', 0, 0, 'xiuying7', '2008-10-30', 'tianx', '2017-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS68136536', '贾秀英', 1, '+81 80-4421-8137', 1, '320066967821456638', 'Rm. 15, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1985-06-11', 0, 0, 'xjia', '2011-07-25', 'xiuyingj', '2007-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS90519585', '鐘安琪', 1, '+86 28-676-1741', 1, '813406560123109595', 'Room 26, 114 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-03-14', 0, 0, 'onkaychun130', '2021-03-04', 'okc65', '2022-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS63932148', '野口葵', 0, '+44 (161) 210 8146', 2, '075411439579285176', 'Flat 49, 524 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-11-06', 0, 0, 'noguchi1964', '2014-01-25', 'aonoguc2', '2004-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS85505218', '姜秀英', 0, '+1 213-892-0138', 0, '908963897954204410', '807 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1990-08-29', 0, 0, 'jiangxiuying', '2009-04-07', 'jxiuying5', '2014-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS04264834', '方杰倫', 1, '+81 11-563-8669', 2, '605866047696283892', 'Rm. 20, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-05-29', 0, 0, 'fongch1115', '2002-11-17', 'fongcl', '2003-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS02947082', '石井百花', 1, '+81 3-1970-4369', 2, '740483437736938487', '7F, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-09-19', 0, 0, 'mishii', '2006-11-29', 'ishm1', '2001-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS54359926', 'Marie Morales', 1, '+1 212-283-5219', 1, '171615594927699704', '602 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-02-10', 0, 0, 'morales87', '2000-12-31', 'moma1', '2018-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS16135263', '郝睿', 1, '+86 193-9482-4420', 1, '915226845390382972', 'No.29 building, 800 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-08-01', 0, 0, 'ruihao1213', '2005-05-31', 'ruihao', '2018-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS57517090', 'Willie Hill', 1, '+1 838-762-1590', 2, '081768534303450497', '271 State Street Suite 31, Albany, NY 12203, United States', '1990-09-11', 0, 0, 'wih66', '2004-04-02', 'whill1948', '2021-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS92668917', 'Theresa Butler', 0, '+44 (1223) 15 7115', 3, '579730073480252929', 'No.17 Main building, 173 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-02-10', 0, 0, 'theresabutl', '2019-12-06', 'tbutler', '2017-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS27311475', '錢家玲', 0, '+81 70-6261-8194', 3, '035064184687691761', '48F, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1985-02-05', 0, 0, 'ckl', '2013-07-13', 'kaling1', '2017-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS41684298', 'Alan Young', 0, '+1 614-331-6671', 3, '206469626850466604', '873 Wicklow Road Suite 9, Columbus, GA 43204, United States', '1996-06-05', 0, 0, 'alan1966', '2010-07-16', 'alan2005', '2004-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS79943709', '陳玲玲', 0, '+86 760-6001-6593', 2, '565923175435002919', 'Room 15, CR Building, 958 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-08-13', 0, 0, 'lingling413', '2008-09-11', 'chanll', '2005-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS66246349', '梁云熙', 1, '+86 144-1603-9584', 3, '570802739688923241', 'Room 29, CR Building, 193 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-10-28', 0, 0, 'yunxiliang', '2006-05-31', 'ylian', '2010-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS23885501', '方慧琳', 1, '+44 7126 323283', 3, '896619021387002141', 'Flat 11, 564 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-08-20', 0, 0, 'wlfon', '2010-02-15', 'fwl', '2017-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS40610179', '苑潤發', 1, '+1 614-044-4902', 1, '042572027513936459', '521 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1987-09-24', 0, 0, 'yyf', '2000-09-10', 'yuen48', '2010-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS72622427', 'Patricia Jones', 1, '+44 7074 367665', 0, '340855912657624546', 'Unit 19, Oxford Eco Centre, 913 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-05-03', 0, 0, 'jones5', '2002-07-09', 'jopatri', '2005-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS56131411', '朱頴思', 1, '+44 (151) 412 3822', 1, '633628238501970141', 'Flat 20, 378 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-01-09', 0, 0, 'wschu', '2011-05-12', 'wingsze08', '2017-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS91338786', '阎致远', 0, '+81 11-332-6427', 1, '928427659753372959', '日本札幌中央区宮の森四条六丁目1番6号20号室', '1992-04-22', 0, 0, 'zhiyuan11', '2021-10-01', 'yazhiyuan', '2020-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS70913744', '薛慧琳', 1, '+44 (151) 354 9710', 2, '415028690949874425', 'No.8 Main building, 866 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-12-10', 0, 0, 'sitwailam', '2016-06-16', 'sitwl', '2014-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS80159751', '袁詩君', 1, '+86 10-803-4987', 1, '869331301406186542', '中国北京市海淀区清河中街68号471号华润大厦29室', '1997-09-03', 0, 0, 'yuenszekwan', '2000-06-08', 'yuszek', '2018-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS26168869', 'Jeffery Jordan', 1, '+86 21-2188-1605', 3, '621899314393090251', '中国上海市浦东新区橄榄路174号44楼', '1991-11-20', 0, 0, 'jeffjo', '2004-04-15', 'jej', '2004-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS49639358', '譚家玲', 1, '+44 5095 702809', 0, '906039950582219681', 'Block 49, 513 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-10-31', 0, 0, 'tamkl', '2006-07-01', 'kltam', '2019-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS45901869', '金致远', 1, '+81 52-421-5306', 4, '170345491624615458', '33F, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-12-25', 0, 0, 'jinzhiyuan', '2013-05-17', 'jinzhi', '2013-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS98314708', '清水花', 0, '+86 183-7031-0055', 2, '556753763432923621', '中国成都市成华区玉双路6号537号42栋', '1991-01-12', 0, 0, 'hashimizu', '2001-05-04', 'shimihana4', '2021-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS05609588', '渡辺美月', 1, '+86 10-744-1511', 2, '754460012224638257', 'Room 46, 578 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-04-15', 0, 0, 'mitsukisat508', '2007-04-02', 'sato2007', '2013-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS93012074', '三浦美緒', 1, '+86 164-7855-5613', 3, '756322829646288888', '中国北京市东城区东单王府井东街432号8栋', '1991-11-12', 0, 0, 'miurmio', '2017-03-13', 'mimiura', '2013-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS65526482', '李致远', 0, '+86 195-3222-2677', 2, '960966796718896559', 'Room 23, 207 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-09-22', 0, 0, 'lizhiyuan', '2013-10-25', 'zhiyuan1113', '2019-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS84278072', '贾安琪', 1, '+81 3-2779-6835', 2, '195512504117299349', '日本東京港区東新橋一丁目5番4号39階', '1993-05-14', 0, 0, 'anji', '2003-03-15', 'jia77', '2015-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS78440834', '邵安琪', 1, '+81 90-6773-3668', 3, '976532565003955113', '16F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1992-06-03', 0, 0, 'sha', '2012-09-30', 'ash', '2009-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS26235269', '彭晓明', 0, '+86 10-3395-0822', 0, '099954648842437792', '48F, 517 East Wangfujing Street, Dongcheng District , Beijing, China', '1992-09-15', 0, 0, 'pengxiaoming', '2012-07-02', 'pengxia2017', '2021-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS41808503', 'Stephanie Miller', 1, '+81 66-031-3536', 1, '568183719196902393', '日本おおさかし近江堂一丁目7番7号14階', '1992-09-19', 0, 0, 'millerstephanie', '2001-05-09', 'millerstephanie13', '2020-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS31931128', '唐致远', 0, '+1 213-264-1716', 1, '991598828107158288', '409 S Broadway Apt 17, Los Angeles, CA 90015, United States', '1997-09-05', 0, 0, 'tang63', '2004-07-24', 'tangzh', '2021-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS37990467', '許慧嫻', 0, '+86 10-234-3371', 3, '772711146828390846', 'Room 6, CR Building, 852 Sanlitun Road, Chaoyang District, Beijing, China', '1997-12-22', 0, 0, 'whh', '2014-06-27', 'huiwh619', '2012-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS32205253', 'Hazel Chen', 0, '+81 80-2920-9040', 1, '958684078176658726', 'Rm. 27, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-02-10', 0, 0, 'hazchen', '2015-09-05', 'chenh', '2010-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS63415009', '石川花', 1, '+44 (121) 475 0568', 1, '614040752248659174', 'Unit 13, Oxford Eco Centre, 814 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-02-27', 0, 0, 'hana9', '2012-09-09', 'hanaishi', '2013-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS11423043', '田村蒼士', 1, '+1 614-712-7812', 3, '805415548025457988', '704 Tremont Road Apartment 8, Columbus, GA 43212, United States', '1993-06-04', 0, 0, 'tamuao9', '2006-03-10', 'atamura', '2000-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS44589537', '王學友', 1, '+86 150-7843-5432', 3, '318135377719822828', '中国深圳福田区景田东一街839号29楼', '1998-01-31', 0, 0, 'hywo', '2020-07-30', 'wong1', '2015-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS02999743', 'Anne Ryan', 1, '+81 80-6893-8453', 2, '724130910225152783', '日本なごやし北区楠味鋺三丁目80番1号37号室', '1987-01-21', 0, 0, 'anne4', '2019-12-22', 'anner', '2008-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS12981459', 'Doris Edwards', 1, '+81 3-8182-6996', 4, '433038892291629865', '日本東京渋谷区代々木二丁目3番16号30階', '1994-01-02', 0, 0, 'dorisedwar2', '2008-02-12', 'doris8', '2021-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS61030845', '應頴思', 0, '+86 186-9498-8013', 0, '005802750737404969', '中国成都市成华区二仙桥东三路281号27楼', '1995-10-21', 0, 0, 'wsyi', '2011-01-05', 'wsyin126', '2009-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS43464937', '區祖兒', 0, '+81 70-0396-0341', 0, '310714363019172927', 'Rm. 41, 1-7-3 Omido, Higashiosaka, Osaka, Japan', '1988-12-08', 0, 0, 'auchoyee', '2021-06-11', 'auchoyee', '2003-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS16932826', '钟子韬', 1, '+86 10-9730-3051', 0, '046255381646615007', 'No.37 building, 376 028 County Rd, Yanqing District, Beijing, China', '1994-11-18', 0, 0, 'zhongzitao', '2005-04-25', 'zhongzitao', '2015-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS28396642', '山本和真', 1, '+86 174-1550-7009', 1, '953788763903482283', 'Room 10, 215 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-09-09', 0, 0, 'kyamamoto', '2002-10-01', 'ykazu', '2021-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS61547783', 'Ronald Cook', 1, '+81 52-839-1828', 2, '785005203784024236', 'Rm. 36, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1996-08-15', 0, 0, 'ronaldcook2', '2021-09-01', 'ronald10', '2021-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS16663423', '加藤絢斗', 0, '+81 80-7476-1295', 1, '901146848325529541', '12F, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-15', 0, 0, 'kato2016', '2007-08-08', 'kato5', '2000-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS38411926', '史詩涵', 0, '+44 5917 011626', 4, '273603033427563548', 'Block 27, 714 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-03-16', 0, 0, 'shihansh70', '2020-12-03', 'ssh', '2021-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS13878843', '車惠敏', 0, '+81 11-739-4217', 1, '419633242448705024', '39F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-11-22', 0, 0, 'waimanc00', '2000-10-22', 'che12', '2016-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS33992947', '楊青雲', 0, '+86 755-5135-2194', 2, '526459351062456494', '中国深圳福田区景田东一街654号40楼', '1992-05-12', 0, 0, 'yeucw721', '2013-06-13', 'chingwanye1', '2015-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS27136381', '藍青雲', 1, '+81 3-0083-8694', 4, '612432505385877524', '日本東京中央区銀座三丁目12番4号5号室', '1991-05-29', 0, 0, 'chingwan3', '2009-02-14', 'chingwanla', '2016-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS75380926', '宋杰宏', 1, '+81 11-189-1992', 1, '836857463789268932', '1F, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-17', 0, 0, 'songjiehong9', '2021-02-03', 'songjie93', '2007-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS22240058', 'Don Jackson', 0, '+44 5963 017455', 3, '667943794280524660', 'Block 39, 852 Pollen Street, London, W1S 1NG, United Kingdom', '1992-06-26', 0, 0, 'don1948', '2020-02-27', 'jd4', '2003-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS54623085', '内田彩乃', 1, '+86 10-0041-2160', 3, '307970655230514562', 'No.30 building, 295 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-08-14', 0, 0, 'uayano', '2020-06-05', 'uchidaayano4', '2004-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS81224995', '大塚百恵', 0, '+81 70-1479-5695', 3, '366688012016765784', '日本おおさかし西成区天神ノ森二丁目1番9号5号室', '1997-11-06', 0, 0, 'otsukam', '2011-07-22', 'mot13', '2015-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS44395528', 'Bonnie Gibson', 1, '+81 70-1561-5617', 3, '552008428706027977', '31-kai, 3-27-1 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-03-12', 0, 0, 'gibonnie2', '2001-10-23', 'bogibs', '2004-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS67023704', '松本美羽', 1, '+81 80-6733-5941', 3, '255388638128077090', '日本東京港区東新橋一丁目5番8号14階', '1994-06-28', 0, 0, 'matsumoto9', '2021-06-29', 'mmat', '2020-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS13789808', '顾云熙', 0, '+86 20-952-0325', 1, '536007200555022711', '中国广州市越秀区中山二路445号21楼', '1997-07-11', 0, 0, 'guyunxi71', '2002-04-02', 'yunxigu', '2005-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS19935281', '清水優奈', 1, '+81 66-647-3371', 4, '993699821636793043', '日本おおさかし西成区天神ノ森二丁目1番16号39号室', '1995-04-12', 0, 0, 'yunashimizu', '2007-11-11', 'shimizuyuna7', '2007-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS61826086', '邵安琪', 0, '+44 (121) 268 7618', 2, '740607509975566674', 'Unit 49, Oxford Eco Centre, 613 New Street, Birmingham, B2 4DB, United Kingdom', '1998-09-18', 0, 0, 'anqishao', '2006-03-08', 'shaoan2003', '2009-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS33795333', '内田舞', 0, '+86 159-3893-2864', 3, '671095733692166871', '中国深圳福田区深南大道319号39楼', '1991-02-22', 0, 0, 'maiu', '2006-07-03', 'uchima', '2015-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS86921430', '山下悠人', 1, '+81 66-222-9482', 2, '338619026322129581', '日本おおさかし西成区天神ノ森二丁目1番5号5階', '1998-02-18', 0, 0, 'yamashitayuto1021', '2008-11-23', 'yamashita2', '2015-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS32190585', '蔡安琪', 0, '+1 718-997-9489', 4, '194700097300844726', '117 Columbia St Suite 26, Brooklyn, NY 11231, United States', '1989-07-09', 0, 0, 'aca', '2016-05-06', 'cai9', '2004-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS42124764', '田璐', 0, '+81 3-0529-8095', 1, '778548190658844701', 'Rm. 17, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-06-25', 0, 0, 'ltia', '2012-05-23', 'tilu', '2018-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS61965490', '江云熙', 1, '+81 52-507-9582', 3, '005606659903503447', 'Rm. 34, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-07-10', 0, 0, 'yunxjia', '2006-08-18', 'yunxiji522', '2007-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS09376770', '文梓軒', 0, '+1 213-289-6831', 2, '468033053358659899', '283 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-08-14', 0, 0, 'tszhinman', '2017-01-25', 'math', '2013-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS19057807', '成安娜', 1, '+81 80-2978-5759', 1, '428958266041574709', '23F, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-05-20', 0, 0, 'ons9', '2006-10-03', 'onshing7', '2019-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS95620923', '杉山架純', 1, '+1 330-146-2975', 3, '263738967977221936', '170 Collier Road Apt 8, Akron, OH 44320, United States', '1987-04-29', 0, 0, 'ksugiyama', '2003-12-01', 'kasumsugiyama', '2007-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS73684713', '楊慧嫻', 1, '+81 90-2535-2301', 2, '643630028414048736', '日本なごやし北区楠味鋺三丁目80番7号40号室', '1999-02-23', 0, 0, 'why', '2021-10-03', 'why2', '2000-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS05441304', '曾安琪', 0, '+1 614-101-0395', 3, '719032313122988692', '984 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1986-05-20', 0, 0, 'zanq', '2011-01-11', 'anzen', '2004-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS09034642', '曾永發', 0, '+81 74-252-8568', 1, '629668243244931978', 'Rm. 1, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-08-30', 0, 0, 'tswing', '2020-11-28', 'tsang6', '2006-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS30201544', 'Tiffany Phillips', 0, '+1 312-889-8330', 1, '293102785208894730', '839 Rush Street Apartment 46, Chicago, IL 60611, United States', '1989-12-30', 0, 0, 'phillipsti', '2020-11-08', 'phillips53', '2002-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS28073037', '坂本大和', 0, '+81 80-5436-5869', 1, '881093180143105586', 'Rm. 50, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1986-12-04', 0, 0, 'yamatosakamoto2009', '2011-05-18', 'syamato2010', '2005-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS36023995', '苑嘉欣', 1, '+81 3-5591-6501', 0, '340828285666549598', '14-kai, 3-15-5 Ginza, Chuo-ku, Tokyo, Japan', '1995-12-11', 0, 0, 'karyan73', '2006-04-26', 'yuenkaryan', '2015-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS96444312', 'Frances Powell', 1, '+1 614-755-2455', 2, '172377264122481896', '764 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1985-05-07', 0, 0, 'fpowel15', '2003-04-26', 'francespowe', '2001-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS46817961', '郑震南', 0, '+1 213-771-1888', 0, '627950670375880630', '385 Figueroa Street Suite 14, Los Angeles, CA 90037, United States', '1985-08-27', 0, 0, 'zzheng', '2021-05-29', 'zzheng3', '2012-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS62236174', '姜詩涵', 0, '+86 20-9024-1239', 3, '082047140250827909', 'No.36 building, 436 Tianhe Road, Tianhe District, Guangzhou, China', '1988-03-16', 0, 0, 'shihanjiang', '2011-10-22', 'shihanjiang710', '2018-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS06045474', 'Jack Guzman', 0, '+44 (151) 770 2616', 3, '448385705700262740', 'No.49 Main building, 986 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-09-28', 0, 0, 'jg1213', '2015-10-02', 'gj63', '2015-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS90478595', '佐野絢斗', 1, '+1 330-944-6435', 4, '050503797309276483', '2 Riverview Road Suite 34, Akron, OH 44313, United States', '1986-01-29', 0, 0, 'ayatosa3', '2005-01-07', 'sanoa', '2014-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS39889554', 'Lillian Chavez', 0, '+81 11-340-7428', 0, '989736454290769287', '日本札幌清田区真栄四条五丁目19番19号6階', '1998-02-08', 0, 0, 'lch42', '2008-06-29', 'chavez90', '2017-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS25602107', '山口花', 0, '+86 20-6035-2856', 4, '311506087587849269', '19F, 238 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1989-03-18', 0, 0, 'yamaghana8', '2008-06-15', 'hanayamaguchi', '2005-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS59405769', 'Jeremy Mendez', 1, '+86 769-9523-3641', 2, '999941424238430415', '中国东莞珊瑚路720号华润大厦48室', '1995-02-07', 0, 0, 'jme43', '2009-12-05', 'jermende', '2001-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS00435036', '藤田玲奈', 1, '+86 154-7996-6630', 4, '483769279951744172', 'Room 34, CR Building, 982 Lefeng 6th Rd, Zhongshan, China', '1996-02-15', 0, 0, 'renaf5', '2022-03-04', 'rena612', '2010-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS49167337', '葉國權', 1, '+81 11-177-4412', 1, '964720273726281924', 'Rm. 17, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-12-22', 0, 0, 'yipkk', '2003-03-16', 'yipkwokkuen6', '2007-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS76961897', '秦云熙', 1, '+81 52-893-3916', 3, '021237331830619192', '30F, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-10-17', 0, 0, 'yunxiqi5', '2011-12-19', 'yunxqi', '2012-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS66448699', '金子絢斗', 0, '+86 157-5564-2202', 2, '044616707899804778', '中国北京市房山区岳琉路823号46号楼', '1986-09-19', 0, 0, 'ayato1995', '2000-08-25', 'kaneko94', '2021-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS01048684', 'Ethel Turner', 0, '+81 74-857-9567', 0, '196635996713906927', '6-kai, 3-9-12 Gakuenminami, Nara, Japan', '1992-03-19', 0, 0, 'ethelturner76', '2016-02-09', 'ethetur', '2010-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS80502099', 'Carolyn Johnson', 1, '+81 70-2666-5766', 2, '587738727955062132', '日本おおさかし近江堂一丁目7番9号45階', '1991-11-16', 0, 0, 'johnsoncaro8', '2020-08-31', 'jocarolyn', '2005-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS05734946', '朱世榮', 0, '+81 90-4355-8947', 1, '565033096680127012', '日本東京港区東新橋一丁目5番8号24階', '1987-10-24', 0, 0, 'csaiwi', '2013-09-04', 'saiwingchu06', '2013-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS27588920', '竹内陽菜', 0, '+44 5832 826665', 1, '542865103534616339', 'No.7 Main building, 230 Pollen Street, London, W1S 1NG, United Kingdom', '1985-02-16', 0, 0, 'hinat', '2014-08-01', 'takeuchi731', '2012-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS26062147', '岡田一輝', 1, '+81 90-1446-7106', 2, '741439370890300837', '39-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-03-03', 0, 0, 'okada1948', '2002-04-12', 'okadaikk', '2012-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS02947393', 'Cheryl Rose', 0, '+1 212-803-9224', 1, '889681508232048829', '577 Fifth Avenue Suite 31, New York, NY 10017, United States', '1994-09-09', 0, 0, 'rosech1960', '2005-02-21', 'roscheryl6', '2004-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS26797191', 'Debra Butler', 0, '+81 70-3833-6080', 4, '287004601975492785', '日本なごやし北区楠味鋺三丁目80番5号3階', '1995-03-26', 0, 0, 'butler74', '2006-11-26', 'debra919', '2020-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS87459722', 'Bernard Bryant', 0, '+81 74-464-9381', 0, '967792693372166497', 'Rm. 3, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1998-03-21', 0, 0, 'bernardbry', '2007-12-30', 'brybernard', '2001-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS94370455', 'Jennifer Moore', 0, '+1 213-190-1094', 2, '583292065773132333', '870 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-07-23', 0, 0, 'jennifer05', '2020-03-04', 'moorej15', '2020-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS40506345', '小島大輔', 0, '+81 11-528-6575', 3, '217611141905457972', '日本札幌中央区宮の森四条六丁目1番2号49号室', '1994-05-02', 0, 0, 'kd220', '2018-12-19', 'kojimadai50', '2022-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS41280142', '韦子异', 0, '+1 213-239-2265', 1, '326708223057036796', '952 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1995-04-26', 0, 0, 'ziyi10', '2001-03-07', 'wei1958', '2013-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS24057245', '苑國權', 0, '+44 7363 446166', 4, '450083735041393894', 'Unit 44, Oxford Eco Centre, 33 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-11-17', 0, 0, 'kwokkuen118', '2001-06-14', 'yuen4', '2007-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS79943308', 'Emma Wagner', 1, '+81 80-9699-5056', 1, '101093210860132673', '日本ならし大和郡山市本庄町一丁目1番19号37階', '1986-01-05', 0, 0, 'emmawa209', '2006-01-31', 'wagneemma', '2016-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS27549037', '島田明菜', 1, '+44 (20) 1002 6056', 3, '585827765692110388', 'Block 8, 175 Maddox Street, London, W1S 1PU, United Kingdom', '1989-05-29', 0, 0, 'akina129', '2008-11-12', 'akina8', '2000-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS21791671', '罗致远', 1, '+81 70-8653-1829', 2, '674712868396515303', 'Rm. 24, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-08-20', 0, 0, 'luoz', '2020-02-16', 'zhiyuanl', '2015-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS07806150', '内田光莉', 1, '+1 213-408-0359', 2, '855387677565178974', '443 Grape Street Apartment 29, Los Angeles, CA 90002, United States', '1994-07-04', 0, 0, 'hikuchida', '2007-03-08', 'hu64', '2008-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS12931209', '陈震南', 1, '+86 194-3806-9074', 1, '330604084012786132', '48F, 700 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-12-02', 0, 0, 'chenzhennan', '2017-05-15', 'chzhennan', '2017-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS07702659', 'Philip Romero', 0, '+81 3-3844-9593', 3, '090099272184886149', '42-kai, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-06-28', 0, 0, 'philip106', '2018-10-22', 'phromer', '2006-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS11677691', 'Mildred Evans', 1, '+86 169-0633-0795', 1, '762526802383202682', 'Room 19, 874 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1994-04-02', 0, 0, 'mildredevans', '2015-11-01', 'evamildred', '2011-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS76085278', '邵睿', 0, '+86 28-4312-0294', 0, '811170269922420643', '中国成都市锦江区红星路三段492号12室', '1992-10-28', 0, 0, 'rushao704', '2012-06-24', 'ruishao', '2010-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS27609708', '田睿', 1, '+81 3-8317-5918', 1, '149573343762367369', '日本東京中央区銀座三丁目12番2号29号室', '1994-02-02', 0, 0, 'tianrui55', '2017-09-07', 'rui528', '2011-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS48070043', 'Gloria Moreno', 0, '+1 212-540-8309', 3, '479025112890442068', '533 Fifth Avenue Apartment 38, New York, NY 10017, United States', '1997-09-17', 0, 0, 'gloria9', '2016-11-30', 'glorm', '2009-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS44552381', '張嘉欣', 0, '+86 21-593-8578', 3, '523332756409679566', 'Room 31, CR Building, 946 Ganlan Rd, Pudong, Shanghai, China', '1989-03-26', 0, 0, 'kycheung', '2003-01-01', 'karyan2018', '2011-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS96200289', '和田悠人', 1, '+86 10-0280-7580', 1, '115538826636075708', '中国北京市東城区東直門內大街392号28号楼', '1997-01-17', 0, 0, 'yutow', '2012-10-26', 'yutowada1976', '2019-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS46504603', '洪德華', 0, '+86 28-0298-0506', 0, '414921096902571046', '中国成都市锦江区人民南路四段120号华润大厦24室', '1993-10-23', 0, 0, 'twhung', '2015-10-26', 'hungtw', '2016-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS49806953', '龚詩涵', 1, '+86 20-871-7995', 3, '390171332756797155', 'Room 40, 715 Tianhe Road, Tianhe District, Guangzhou, China', '1985-08-17', 0, 0, 'gong8', '2019-05-20', 'gshi303', '2000-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS49043290', '段岚', 0, '+86 133-2946-7618', 0, '216498727257851072', '中国广州市天河区天河路485号18楼', '1995-10-15', 0, 0, 'lduan131', '2012-07-30', 'duanlan314', '2018-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS49418332', '胡子韬', 0, '+1 330-547-0023', 2, '319703021231720362', '699 Collier Road Suite 15, Akron, OH 44320, United States', '1988-11-29', 0, 0, 'zitaohu', '2013-01-15', 'zitaohu8', '2012-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS17270049', '劉頴璇', 0, '+81 74-968-3441', 4, '491922200493431011', '48-kai, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1987-06-25', 0, 0, 'lawingsuen46', '2014-11-21', 'wsl', '2015-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS02658430', 'Robin Diaz', 1, '+86 769-669-9537', 1, '191669294004465284', 'No.13 building, 926 Kengmei 15th Alley, Dongguan, China', '1991-02-14', 0, 0, 'diaz1980', '2020-12-06', 'rdi', '2006-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS29775209', 'Ryan Morales', 0, '+81 3-3790-5996', 1, '237202754547521356', '17F, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-06-16', 0, 0, 'ryanmorales3', '2005-10-02', 'ryanmorales1959', '2007-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS42469053', 'Crystal Wagner', 0, '+1 330-259-3220', 0, '579382805311073179', '380 Ridgewood Road Suite 9, Akron, OH 44321, United States', '1998-01-04', 0, 0, 'wagcrystal7', '2022-02-09', 'cw623', '2001-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS89959405', 'Barry Holmes', 0, '+44 (116) 083 9926', 3, '254657962873123667', 'Block 35, 287 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-03-08', 0, 0, 'holmes1', '2014-05-15', 'holmesbarry1009', '2006-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS54303809', '高子异', 1, '+86 755-907-1425', 0, '085165171196564100', 'Room 1, CR Building, 764 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-07-01', 0, 0, 'gaoziyi8', '2019-11-24', 'ziyiga', '2017-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS03645342', '遠藤涼太', 0, '+86 150-5301-9136', 2, '002574141573051578', 'No.21 building, 500 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-12-19', 0, 0, 'eryota6', '2022-01-14', 'ryotendo1106', '2008-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS64833928', '金子海斗', 0, '+81 80-2285-7976', 2, '509811480267875748', '日本札幌清田区真栄四条五丁目19番10号9号室', '1992-08-02', 0, 0, 'kaitoka2', '2002-05-28', 'kanekok', '2001-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS58541543', 'Norman Ford', 1, '+1 330-299-0502', 3, '107787678931335932', '227 Collier Road Apt 38, Akron, OH 44320, United States', '1996-01-06', 0, 0, 'norman02', '2005-10-10', 'fordnorman', '2010-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS68901566', '江天榮', 1, '+81 3-6157-2509', 3, '159317738888105595', 'Rm. 42, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1999-03-02', 0, 0, 'twkong', '2001-05-26', 'twkong3', '2014-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS64088202', '彭睿', 1, '+81 3-6064-6856', 2, '731174573181159716', '日本東京品川区東五反田五丁目2番2号38階', '1994-01-21', 0, 0, 'rui1983', '2015-02-18', 'pr4', '2004-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS21953124', '邵德華', 0, '+1 718-789-1662', 0, '809529460945514949', '22 Bergen St Apartment 33, Brooklyn, NY 11217, United States', '1998-06-29', 0, 0, 'stw516', '2009-03-18', 'siutakwah', '2019-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS08709701', 'Michelle Jones', 1, '+81 66-485-0809', 0, '830797084878994137', '日本おおさかし西成区天神ノ森二丁目1番14号35号室', '1986-06-06', 0, 0, 'michelle08', '2006-04-08', 'micjones', '2011-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS45843775', '房志明', 1, '+44 (151) 005 9277', 3, '192247458983991984', 'Block 1, 113 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1995-07-12', 0, 0, 'foncm1972', '2020-04-01', 'chiming1970', '2011-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS13042015', '周杰宏', 0, '+86 163-5708-0833', 2, '321721830468673671', '中国北京市东城区东单王府井东街943号44楼', '1993-02-25', 0, 0, 'zhou62', '2018-07-30', 'jiehong5', '2006-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS83306315', 'Jeffery Miller', 1, '+81 11-403-7524', 3, '953772561673946048', '日本札幌厚別区上野幌一条二丁目1番3号34階', '1998-05-19', 0, 0, 'jeffmiller', '2009-02-20', 'jefferymiller', '2008-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS53289122', '雷國榮', 0, '+44 7975 126509', 0, '628336747229660326', 'Flat 40, 121 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-09-29', 0, 0, 'kwloui', '2017-01-26', 'loui123', '2007-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS79040130', '狄麗欣', 1, '+81 52-631-9763', 3, '402983102680061702', '日本なごやし守山区瀬古東二丁目171番18号4号室', '1990-06-15', 0, 0, 'lyti59', '2012-09-24', 'laiyan74', '2009-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS19996914', '葉國賢', 1, '+81 52-034-0273', 1, '696100613904839136', 'Rm. 37, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-06-24', 0, 0, 'kwoy728', '2017-05-24', 'kyyi', '2019-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS66570133', '丸山海斗', 1, '+86 28-185-0257', 1, '338027562412854637', 'No.21 building, 486 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-06-15', 0, 0, 'maruyama10', '2018-05-13', 'mk530', '2010-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS26446521', '江慧儀', 0, '+44 (151) 843 4156', 4, '435010653930333179', 'Unit 8, Oxford Eco Centre, 462 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-12-08', 0, 0, 'wyk1225', '2001-02-07', 'kongwy10', '2010-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS11447202', '高田玲奈', 0, '+1 838-428-1201', 2, '543410221814914920', '828 Central Avenue Suite 16, Albany, NY 12206, United States', '1993-02-08', 0, 0, 'trena', '2016-03-05', 'renata', '2002-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS07621892', '戴志明', 1, '+81 74-833-4733', 3, '378638370295780470', 'Rm. 44, 3-9-20 Gakuenminami, Nara, Japan', '1998-01-01', 0, 0, 'cmdai1944', '2009-04-14', 'dachiming', '2009-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS60975911', 'Dennis Sanders', 1, '+1 330-307-7885', 3, '459462847436156200', '479 Fern Street 3rd Floor, Akron, OH 44307, United States', '1992-06-19', 0, 0, 'dennisand', '2019-01-01', 'densan', '2011-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS81230042', '邹岚', 0, '+1 718-526-8732', 1, '468869876108004484', '540 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1995-02-07', 0, 0, 'zoulan', '2017-10-17', 'lanzo604', '2020-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS21629662', '盧家輝', 0, '+81 70-7630-9929', 2, '662616148945479559', '20F, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-12-28', 0, 0, 'lkafai', '2004-11-14', 'lkafai95', '2003-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS75280114', 'Robin Bailey', 0, '+44 (20) 4455 0123', 2, '372017320111707926', 'Block 42, 860 Maddox Street, London, W1S 1PU, United Kingdom', '1988-02-07', 0, 0, 'robbailey', '2006-02-14', 'robin611', '2020-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS25739623', '松井光', 1, '+44 (116) 687 3618', 0, '647047354017293266', 'No.15 Main building, 401 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1994-12-11', 0, 0, 'matsuih', '2014-07-28', 'matsuihikaru', '2010-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS83734053', 'Nicole Parker', 1, '+81 90-8190-4711', 3, '093388940163330501', '日本なごやし北区清水三丁目19番5号44号室', '1995-08-10', 0, 0, 'parkernicole', '2008-12-11', 'parker126', '2014-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS10872177', '谷詠詩', 1, '+86 142-1389-3307', 3, '445359231958918485', 'No.47 building, 495 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-12-12', 0, 0, 'wskoo', '2020-03-05', 'kws', '2003-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS08421531', 'Beverly Sanders', 1, '+81 3-3155-0034', 3, '519235865960311466', '9F, 3-15-20 Ginza, Chuo-ku, Tokyo, Japan', '1987-06-09', 0, 0, 'sandersb70', '2010-10-10', 'beversanders3', '2022-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS55498465', '高田美緒', 1, '+81 90-1073-4794', 1, '414613753512714643', '日本ならし学園南三丁目9番18号13階', '1991-03-15', 0, 0, 'takamio', '2007-07-22', 'takmi', '2013-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS06843032', '許小慧', 1, '+81 66-131-5700', 2, '785861345570515441', 'Rm. 26, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1995-09-30', 0, 0, 'husiuwa69', '2006-10-07', 'hsw', '2004-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS11764521', '藤國榮', 1, '+81 74-527-3731', 2, '709699048270203818', 'Rm. 17, 3-9-4 Gakuenminami, Nara, Japan', '1993-09-13', 0, 0, 'kwt', '2003-01-12', 'tkwokwing410', '2003-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS99893504', 'Ethel Castro', 1, '+1 330-443-7423', 3, '594434213024136918', '342 Collier Road 3rd Floor, Akron, OH 44320, United States', '1996-12-22', 0, 0, 'ethel303', '2002-05-03', 'castroe', '2005-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS67163752', '李云熙', 1, '+81 3-4917-3929', 3, '736112317096596114', '日本東京渋谷区代々木二丁目3番16号33号室', '1996-06-06', 0, 0, 'yuli', '2020-01-27', 'liyunxi', '2017-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS14138157', '吴杰宏', 1, '+86 10-050-9804', 4, '690007053667541604', '24F, 142 028 County Rd, Yanqing District, Beijing, China', '1988-03-10', 0, 0, 'jwu', '2007-11-05', 'jiehongwu', '2011-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS97553923', '岡本悠人', 1, '+81 52-802-6130', 1, '769101014623335803', 'Rm. 42, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1992-04-26', 0, 0, 'yutookamoto87', '2003-12-18', 'yuto916', '2016-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS60930673', '郝震南', 1, '+86 131-5195-1658', 2, '215125612553727894', '中国中山乐丰六路283号46栋', '1998-08-22', 0, 0, 'haozhennan', '2015-01-02', 'zhenhao', '2018-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS01839834', '張心穎', 0, '+81 80-0539-0311', 3, '952663528593716438', '45F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-04-05', 0, 0, 'swch', '2013-03-23', 'cheusumwi627', '2008-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS64724093', '何慧珊', 0, '+81 66-377-0929', 3, '074099126895098291', '日本おおさかし西成区天神ノ森二丁目1番11号17階', '1995-03-15', 0, 0, 'howaisan2006', '2001-08-21', 'waih7', '2019-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS62423970', '今井陽太', 0, '+86 10-6231-1122', 4, '080671788564898188', 'Room 45, CR Building, 638 Yueliu Rd, Fangshan District, Beijing, China', '1987-01-17', 0, 0, 'imyota', '2007-06-16', 'yimai', '2012-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS16879783', '林大輔', 0, '+86 195-3057-3191', 0, '194854600904420434', '中国上海市浦东新区橄榄路452号40楼', '1998-12-29', 0, 0, 'hayashi908', '2015-01-08', 'daishayashi407', '2010-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS29680541', '黃梓軒', 1, '+86 769-241-1531', 1, '966206926114700273', '中国东莞坑美十五巷58号1楼', '1993-03-28', 0, 0, 'wongtszhi', '2018-11-17', 'wong313', '2015-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS97351774', 'Florence West', 0, '+86 769-4152-6152', 3, '809669947215681332', 'Room 29, 876 Kengmei 15th Alley, Dongguan, China', '1989-05-16', 0, 0, 'fwest10', '2016-08-04', 'flow', '2017-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS65191296', '陶宇宁', 0, '+86 182-0798-2841', 4, '040291698263027062', '8F, 469 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-09-27', 0, 0, 'tayuning423', '2010-04-25', 'ytao', '2006-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS49289550', '樂詠詩', 0, '+1 838-526-4563', 1, '164789123626403939', '816 Broadway Apartment 6, Albany, NY 12207, United States', '1990-08-02', 0, 0, 'lws', '2003-02-08', 'lok618', '2021-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS43432280', 'Stephanie Thompson', 0, '+44 (121) 516 8218', 1, '884085646900081037', 'No.6 Main building, 660 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-11-14', 0, 0, 'stepthom129', '2013-01-20', 'st7', '2011-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS16657372', '鄺家玲', 0, '+1 718-375-4300', 3, '973490050807355816', '989 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1995-12-17', 0, 0, 'kalingkwong', '2007-07-10', 'klkwong1114', '2005-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS63894740', '張思妤', 1, '+86 130-7063-1599', 1, '559506070602285984', 'No.26 building, 603 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-06-25', 0, 0, 'cheung78', '2006-09-20', 'szeyu49', '2002-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS16301786', 'Timothy Morales', 1, '+81 66-450-7372', 3, '155676401439883574', '日本おおさかし平野区加美東四丁目9番4号43階', '1996-04-06', 0, 0, 'moraltimothy', '2002-03-22', 'tmoral930', '2019-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS11821778', '曹璐', 1, '+86 131-8526-9229', 2, '524394126036975014', '中国深圳罗湖区田贝一路263号20号楼', '1988-10-18', 0, 0, 'caolu', '2001-06-10', 'calu', '2021-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS82843130', '龚晓明', 1, '+81 70-5755-3817', 2, '235913050423799250', '日本おおさかし東住吉区東田辺三丁目27番11号29階', '1985-03-04', 0, 0, 'gongxiaoming', '2018-05-12', 'gongxia', '2010-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS42948556', 'Lawrence Ford', 1, '+44 (161) 866 3597', 3, '261637559263453631', 'No.50 Main building, 16 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-02-10', 0, 0, 'fordlawrence', '2000-01-03', 'lawrence99', '2012-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS93907083', '菅原光', 0, '+81 66-234-5587', 4, '190885607012956677', '日本おおさかし西成区出城一丁目1番14号50階', '1992-06-05', 0, 0, 'hikarusugawara', '2015-10-23', 'hikaru408', '2004-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS21900424', '容嘉欣', 1, '+81 74-805-9933', 0, '112569752835629001', '43F, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1985-11-03', 0, 0, 'yunkaryan', '2020-03-22', 'kyyung', '2016-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS09395248', '杜晓明', 1, '+81 52-355-6463', 0, '760915469222242331', '日本なごやし熱田区千年二丁目5番20号27階', '1994-11-26', 0, 0, 'duxiaoming62', '2001-06-10', 'xdu', '2014-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS61785399', '戴云熙', 0, '+44 7865 467371', 4, '220693474091555359', 'Unit 19, Oxford Eco Centre, 207 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-10-26', 0, 0, 'day', '2014-11-30', 'yunxdai2', '2000-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS21370932', '姚云熙', 0, '+86 760-8238-7109', 3, '111197398109998222', '中国中山乐丰六路668号20楼', '1990-10-11', 0, 0, 'yao4', '2001-01-28', 'yunxiyao', '2017-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS06074567', 'Rachel Graham', 0, '+81 80-3910-9351', 1, '817426728270226309', '日本おおさかし東住吉区東田辺三丁目27番17号28階', '1986-09-23', 0, 0, 'grarac', '2009-01-07', 'rgraham1975', '2003-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS35636344', '韓明詩', 1, '+1 312-845-0760', 1, '529928232096795734', '588 Rush Street Suite 37, Chicago, IL 60611, United States', '1987-09-03', 0, 0, 'mingsze01', '2007-05-17', 'mshan', '2010-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS20693295', '葉天樂', 1, '+86 10-1925-5579', 2, '816213078244426092', '中国北京市朝阳区三里屯路267号37号楼', '1993-10-11', 0, 0, 'yip114', '2008-03-07', 'tlyip', '2020-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS25354243', '長谷川詩乃', 1, '+81 80-2762-1590', 1, '175011196738024884', '47F, 3-9-12 Gakuenminami, Nara, Japan', '1989-06-15', 0, 0, 'hasegawashino', '2019-06-06', 'shinohaseg', '2009-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS31290649', '曹安琪', 0, '+86 769-7949-4048', 3, '355999431486114237', 'Room 30, CR Building, 708 Kengmei 15th Alley, Dongguan, China', '1987-05-26', 0, 0, 'aca', '2000-03-02', 'canqi', '2021-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS73184192', 'Jamie Jimenez', 1, '+1 213-185-7007', 0, '898029776284828382', '516 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1990-10-18', 0, 0, 'jamij915', '2000-05-03', 'jamie95', '2006-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS98623847', '高田蓮', 1, '+86 28-543-1602', 2, '433435257356888366', 'Room 39, No. 788, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-01-26', 0, 0, 'ren2004', '2016-08-08', 'takaren', '2005-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS50282523', 'Virginia Porter', 0, '+86 769-940-5146', 1, '778361520951937450', 'Room 44, CR Building, 975 Shanhu Rd, Dongguan, China', '1993-04-18', 0, 0, 'virporter', '2006-11-06', 'vporter', '2004-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS43575923', '鐘嘉欣', 1, '+81 90-4025-8610', 4, '232611238583898127', '36F, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-24', 0, 0, 'kyc118', '2002-12-17', 'chungky225', '2015-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS26764847', '吴秀英', 0, '+86 20-9180-5374', 3, '580960279715171158', 'No.35 building, 760 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-09-13', 0, 0, 'wu507', '2006-06-23', 'wuxi', '2020-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS67999617', '贾子韬', 1, '+1 838-868-1486', 0, '112724262274721293', '418 Lark Street Apt 42, Albany, NY 12210, United States', '1998-11-14', 0, 0, 'jz20', '2006-07-19', 'jiazitao2', '2001-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS58440666', 'Robert Rivera', 1, '+86 171-1303-1979', 2, '743810699459213245', '中国东莞东泰五街33号3栋', '1995-11-04', 0, 0, 'robert1012', '2020-10-07', 'riverarobert8', '2003-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS38509611', '翁麗欣', 0, '+1 312-414-7989', 2, '205110329852702266', '682 Pedway 3rd Floor, Chicago, IL 60601, United States', '1988-02-03', 0, 0, 'yungly', '2003-07-27', 'laiyanyung1976', '2004-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS13985086', '杨睿', 0, '+44 5956 363894', 3, '074124165709194686', 'Unit 3, Oxford Eco Centre, 83 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-05-08', 0, 0, 'ruiyang2002', '2017-02-16', 'yangrui', '2008-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS15007614', '廖子韬', 1, '+1 838-377-3180', 2, '987935571132782099', '648 Broadway 3rd Floor, Albany, NY 12207, United States', '1998-04-03', 0, 0, 'liaz50', '2007-09-30', 'lizi606', '2002-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS72632687', '長谷川七海', 0, '+1 718-784-5252', 4, '718402497760419109', '833 Flatbush Ave Suite 17, Brooklyn, NY 11225, United States', '1999-01-22', 0, 0, 'nanamihase', '2007-03-31', 'nanhaseg5', '2021-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS12175620', '程安琪', 0, '+81 11-919-3035', 3, '999278887015392545', '日本札幌中央区宮の森四条六丁目1番12号21階', '1986-05-19', 0, 0, 'cheng818', '2006-12-11', 'acheng503', '2007-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS98392762', 'Thomas Baker', 1, '+86 28-6318-5348', 3, '964337791862362966', 'Room 20, CR Building, 356 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-11-19', 0, 0, 'thomasb', '2016-01-14', 'bthomas', '2013-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS17808205', 'Don Shaw', 0, '+81 90-7101-0460', 4, '514159308378036741', '日本札幌中央区宮の森四条六丁目1番9号46階', '1998-07-13', 0, 0, 'don99', '2004-03-23', 'shawdon48', '2001-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS42768736', '宮本聖子', 0, '+1 213-031-0376', 2, '762008249834312044', '797 Figueroa Street Apartment 21, Los Angeles, CA 90037, United States', '1991-10-06', 0, 0, 'seimiyamoto10', '2020-11-22', 'miyamotoseiko', '2012-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS54962113', '市川絢斗', 0, '+1 838-143-1538', 2, '147237274964561633', '146 Central Avenue Apartment 41, Albany, NY 12205, United States', '1995-05-15', 0, 0, 'ichiaya04', '2000-07-31', 'iayato9', '2008-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS34308210', '大野百恵', 0, '+44 5053 449677', 2, '522649019444015297', 'No.42 Main building, 625 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1987-01-25', 0, 0, 'momoon', '2010-08-30', 'momoeono', '2005-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS39931281', 'Jesse Ryan', 0, '+86 769-083-5379', 1, '157839450710444473', 'Room 20, 681 Huanqu South Street 2nd Alley, Dongguan, China', '1988-07-05', 0, 0, 'jerya', '2014-06-19', 'ryan219', '2015-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS41206444', '徐云熙', 0, '+44 (151) 441 2172', 4, '314333805842994927', 'Unit 34, Oxford Eco Centre, 533 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1995-01-09', 0, 0, 'xu9', '2000-02-05', 'yunxix', '2001-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS77781967', '大塚大輔', 0, '+1 213-091-8199', 1, '122926865200769402', '33 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1994-01-31', 0, 0, 'otsukdaisuke', '2015-11-26', 'oda', '2002-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS71554528', 'Virginia Dixon', 0, '+86 20-6180-3386', 2, '542269482945476944', '中国广州市白云区小坪东路191号11号楼', '1992-10-05', 0, 0, 'virdixo10', '2012-07-14', 'virginiadixon7', '2012-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS23986754', '桜井大輔', 0, '+81 3-7993-1267', 2, '191312113363926032', '23-kai, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-12-04', 0, 0, 'ds59', '2011-12-03', 'daisukes8', '2001-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS74700318', '關玲玲', 1, '+81 90-0922-9431', 2, '940701146360931622', '31F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1995-03-28', 0, 0, 'kwanlingling1114', '2013-03-25', 'llkwan', '2010-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS36450662', '尹慧珊', 0, '+44 (161) 339 4308', 1, '596430588311518878', 'No.39 Main building, 719 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-05-02', 0, 0, 'yiwaisan5', '2004-10-10', 'yiwaisan606', '2014-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS79202775', 'Catherine Nguyen', 0, '+81 52-151-5520', 1, '214413746241625627', 'Rm. 15, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1996-06-01', 0, 0, 'nguyenca67', '2003-05-14', 'nguyecatherine', '2009-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS47300854', '卢宇宁', 0, '+86 21-4508-6754', 0, '524203139234806525', '38F, 639 Ganlan Rd, Pudong, Shanghai, China', '1988-03-26', 0, 0, 'luyunin62', '2016-02-16', 'lu1017', '2020-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS08664008', 'Martha Ford', 1, '+81 11-919-1850', 0, '612615772383257130', '日本札幌厚別区上野幌一条二丁目1番16号48号室', '1991-10-15', 0, 0, 'martha6', '2010-12-10', 'marthaford421', '2020-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS46974161', '張國榮', 1, '+1 213-008-9752', 4, '999606544261711108', '98 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1992-03-22', 0, 0, 'cheukw', '2014-10-30', 'kwokwingc', '2010-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS78223486', '莫岚', 1, '+86 150-6519-3883', 2, '987351826116695508', 'Room 45, 336 Dongtai 5th St, Dongguan, China', '1985-06-30', 0, 0, 'mo50', '2001-09-13', 'molan44', '2001-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS23479593', '姚宇宁', 1, '+86 760-169-2697', 2, '076852073066633083', '中国中山天河区大信商圈大信南路375号42室', '1995-08-20', 0, 0, 'yuningya10', '2010-06-15', 'yuny', '2014-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS05962419', '蔡嘉伦', 1, '+86 137-8331-8345', 1, '354291865559393991', '中国广州市海珠区江南西路884号华润大厦23室', '1995-03-13', 0, 0, 'jialcai', '2021-06-13', 'jialun130', '2001-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS36039465', 'Ernest Garcia', 0, '+81 80-5821-8888', 0, '437169863460485302', '日本東京品川区東五反田五丁目2番12号9階', '1988-07-30', 0, 0, 'garcia3', '2016-09-11', 'egarcia', '2013-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS81245947', '張朝偉', 0, '+86 186-4108-0112', 3, '054399201015346001', '中国东莞环区南街二巷117号29楼', '1990-03-08', 0, 0, 'ccw', '2011-01-21', 'cwcheung', '2014-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS07053300', '孔震南', 0, '+86 20-509-6268', 4, '277924499013983604', '中国广州市白云区小坪东路639号26栋', '1996-11-11', 0, 0, 'zhennankong', '2004-12-30', 'kzhennan', '2007-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS38291552', 'Hazel Barnes', 1, '+86 176-0127-5998', 3, '942483508018280937', 'No.36 building, 997 Ganlan Rd, Pudong, Shanghai, China', '1992-12-15', 0, 0, 'hbar10', '2013-01-25', 'bahazel', '2006-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS44842081', '藍家文', 0, '+1 213-839-1467', 4, '025722101554031955', '493 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1995-04-22', 0, 0, 'kamanl430', '2015-07-26', 'lkam', '2017-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS15400506', '山口瑛太', 0, '+86 174-4877-8058', 3, '437611624121451442', '39F, 79 Shanhu Rd, Dongguan, China', '1985-05-04', 0, 0, 'eitaya3', '2008-11-16', 'eiy7', '2004-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS23329750', 'Miguel Rivera', 1, '+44 (20) 6768 1864', 3, '381917668877610084', 'Block 45, 58 Regent Street, London, W1B 2LX, United Kingdom', '1991-10-08', 0, 0, 'migueriver', '2021-06-11', 'riveramiguel1110', '2000-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS23251888', '李秀文', 1, '+81 52-775-9067', 3, '659028682561657690', '日本なごやし瑞穂区河岸町四丁目20番7号17階', '1998-02-21', 0, 0, 'lsauman1987', '2012-03-13', 'sml5', '2021-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS18907104', 'Carl Hall', 0, '+86 21-4921-3989', 0, '600233665564682210', 'Room 8, 472 Binchuan Rd, Minhang District, Shanghai, China', '1994-08-05', 0, 0, 'carhal2', '2012-07-28', 'carl12', '2021-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS20314943', '菅原大輔', 0, '+44 (161) 331 6583', 4, '856906811169295005', 'No.5 Main building, 432 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-08-14', 0, 0, 'daisuke4', '2017-09-23', 'daissugawara78', '2015-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS95063554', '横山聖子', 0, '+86 156-1373-8795', 0, '115864942443938614', 'Room 36, CR Building, 478 Lefeng 6th Rd, Zhongshan, China', '1997-06-22', 0, 0, 'seikoy', '2017-03-30', 'yoksei', '2005-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS12775374', '黄致远', 1, '+81 70-5551-5881', 1, '926646317290449421', 'Rm. 14, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-10-28', 0, 0, 'huangzhiyuan', '2017-12-15', 'hzhiy', '2014-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS28784112', '蕭詩君', 1, '+44 7629 108153', 1, '330444670382497079', 'Flat 28, 762 Regent Street, London, W1B 2LX, United Kingdom', '1986-10-01', 0, 0, 'szekwansi', '2021-05-01', 'siuszekwan618', '2004-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS08315611', '桜井翼', 0, '+1 330-578-3968', 2, '503494976801671790', '45 Riverview Road Suite 1, Akron, OH 44313, United States', '1990-03-10', 0, 0, 'stsu', '2002-05-12', 'tsubasasa', '2007-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS04857138', '黃玲玲', 1, '+86 134-5263-8622', 3, '621483595443186851', '中国东莞珊瑚路964号31栋', '1996-02-09', 0, 0, 'wonll', '2005-07-26', 'wonglingling3', '2008-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS91209100', '沈嘉伦', 0, '+44 7198 590872', 0, '385249863579526332', 'Block 19, 964 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-10-28', 0, 0, 'jials72', '2016-12-28', 'shen10', '2008-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS62647615', '高田蓮', 0, '+81 74-274-3517', 2, '468231068020465565', 'Rm. 8, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-08', 0, 0, 'takada12', '2001-08-24', 'takadaren93', '2009-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS01256354', '松本彩乃', 1, '+86 10-6566-2040', 3, '852939671626386223', 'Room 8, CR Building, 887 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-03-02', 0, 0, 'matsumotoayano1', '2001-06-05', 'matsumoto9', '2015-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS01028448', '苗麗欣', 1, '+81 70-9160-9984', 2, '441113201425178204', '日本ならし西大寺赤田町一丁目7番2号37号室', '1994-08-14', 0, 0, 'laiyanmiu', '2017-07-15', 'lym87', '2015-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS58652871', 'Beverly Gonzalez', 0, '+81 11-533-9836', 3, '608414976453484154', '10F, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-07-16', 0, 0, 'beverlygonzalez1991', '2015-01-17', 'gonbever1', '2017-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS22068869', '许璐', 1, '+44 (116) 636 5628', 2, '661899685939844373', 'Block 31, 150 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-07-02', 0, 0, 'luxu', '2007-05-04', 'lxu1964', '2013-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS12457984', '唐宇宁', 1, '+81 3-7575-6469', 1, '065868199556057051', '36-kai, 3-15-13 Ginza, Chuo-ku, Tokyo, Japan', '1998-07-07', 0, 0, 'tang79', '2020-06-17', 'yuningt121', '2013-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS72903795', '中山陸', 0, '+86 755-742-9922', 3, '850530021553336158', 'No.50 building, 745 Shennan Ave, Futian District, Shenzhen, China', '1985-02-21', 0, 0, 'rikunakayama8', '2012-04-26', 'rikunakayama', '2007-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS47393836', 'Henry Anderson', 0, '+81 66-082-0935', 2, '794351368603547917', 'Rm. 43, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1998-10-06', 0, 0, 'heande213', '2013-12-07', 'henrya', '2017-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS30561981', '佐々木葵', 1, '+86 187-5534-5762', 1, '009736977357639520', '32F, 888 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-08-14', 0, 0, 'aoisasaki', '2011-04-21', 'aosasak60', '2012-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS84710766', 'Jeffrey Ramirez', 1, '+1 718-042-5669', 4, '873017995900897740', '460 Flatbush Ave Apt 41, Brooklyn, NY 11225, United States', '1990-10-12', 0, 0, 'jeffreyrami', '2011-03-24', 'rjeffr', '2006-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS86930928', 'Cindy White', 0, '+86 195-6760-3930', 4, '872363048241000107', '中国深圳罗湖区清水河一路804号32栋', '1985-10-18', 0, 0, 'whicindy', '2012-08-26', 'white1', '2016-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS60437578', 'Ernest Peterson', 0, '+86 10-358-7272', 2, '062432664038543837', 'Room 39, CR Building, 896 028 County Rd, Yanqing District, Beijing, China', '1994-03-04', 0, 0, 'peteernes', '2003-01-11', 'epeterson419', '2002-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS15225248', '井上美咲', 0, '+86 196-1020-2961', 1, '491461001151160930', 'Room 47, CR Building, 511 Ganlan Rd, Pudong, Shanghai, China', '1997-03-10', 0, 0, 'misaki10', '2000-04-07', 'misakiinoue', '2010-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS49937877', '武田百花', 1, '+86 755-5771-1496', 1, '343809761903614254', '25F, 969 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1993-07-04', 0, 0, 'momokatake', '2000-04-17', 'takeda1009', '2003-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS52012323', '長谷川美緒', 1, '+81 80-1487-3863', 4, '712786011281055765', '42F, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-08-08', 0, 0, 'mio1982', '2010-06-10', 'hasegawamio', '2001-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS87097511', '程致远', 0, '+1 718-130-1756', 3, '762643881300396755', '136 Bergen St Apartment 21, Brooklyn, NY 11217, United States', '1989-05-20', 0, 0, 'zcheng7', '2006-02-15', 'cheng7', '2001-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS83915011', '邵國權', 0, '+1 718-359-3494', 2, '667407028161088013', '450 Nostrand Ave Apartment 19, Brooklyn, NY 11216, United States', '1998-02-10', 0, 0, 'siukwo807', '2018-08-29', 'skk', '2009-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS52112400', 'Kyle Wells', 0, '+86 10-565-7679', 2, '857159257946081334', '中国北京市西城区西長安街449号26栋', '1985-04-08', 0, 0, 'welkyle', '2000-11-07', 'wellsky', '2015-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS04745977', '范睿', 0, '+81 74-643-6312', 2, '973835149960790019', '日本ならし西大寺赤田町一丁目7番13号22号室', '1985-04-06', 0, 0, 'fru117', '2015-12-27', 'fanr', '2009-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS90050776', '龙璐', 1, '+1 614-908-6604', 2, '742029584752177892', '586 East Cooke Road Apt 3, Columbus, GA 43214, United States', '1992-06-23', 0, 0, 'lulong1991', '2020-12-02', 'longlu', '2002-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS15474741', '钟致远', 0, '+1 312-058-7307', 4, '870797039961032163', '833 Rush Street Apt 8, Chicago, IL 60611, United States', '1996-04-28', 0, 0, 'zhizhong9', '2004-04-26', 'zhiyuanz', '2012-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS62832473', '孙杰宏', 0, '+86 20-043-9225', 3, '501026641307172404', 'No.24 building, 936 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-08-10', 0, 0, 'jiehongsu', '2010-09-12', 'sun10', '2002-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS11846264', 'Scott Shaw', 1, '+86 20-537-0034', 1, '636946587933788491', '中国广州市海珠区江南西路147号华润大厦48室', '1986-10-08', 0, 0, 'scoshaw', '2007-02-04', 'shawscott', '2000-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS96124815', '佐野拓哉', 1, '+81 11-799-1343', 4, '467631467226204737', '日本札幌白石区菊水三条五丁目2番2号48号室', '1996-05-29', 0, 0, 'sano416', '2018-09-06', 'sanotakuya7', '2010-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS39030700', '加藤七海', 1, '+81 70-7673-8682', 3, '946812597971275767', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1996-10-28', 0, 0, 'nkat1', '2010-09-25', 'nanami7', '2003-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS14091116', '太田大地', 0, '+81 70-0425-5279', 2, '636908499701900937', '44F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-12-13', 0, 0, 'daichio7', '2018-05-03', 'daichiota', '2004-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS58099588', '呂志遠', 1, '+81 52-867-5866', 4, '312353059334700092', '日本なごやし瑞穂区河岸町四丁目20番3号4階', '1998-08-15', 0, 0, 'luichiyuen', '2011-04-03', 'lchiyuen', '2002-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS12934589', '廖心穎', 1, '+81 70-9991-4339', 3, '869010266328771774', '32F, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-07-01', 0, 0, 'liasumwing806', '2013-02-22', 'lisumwing', '2012-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS00894575', 'Leonard Palmer', 1, '+86 10-5289-8836', 2, '920261348824576271', '中国北京市海淀区清河中街68号204号华润大厦27室', '1994-06-17', 0, 0, 'leonardpalm', '2017-12-03', 'palml', '2004-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS76407318', '刘子异', 1, '+81 66-427-0054', 2, '684796266532517252', '日本おおさかし東住吉区東田辺三丁目27番17号32号室', '1989-07-25', 0, 0, 'liu6', '2018-05-02', 'liu60', '2006-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS03797690', '松井美月', 1, '+44 (116) 702 1039', 0, '495551482969814282', 'Unit 18, Oxford Eco Centre, 357 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-01-15', 0, 0, 'mmatsui88', '2011-11-02', 'matsuimi', '2019-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS62857649', '郭致远', 1, '+81 52-392-6781', 1, '760654972418722308', '29F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-03-31', 0, 0, 'zhiyuan510', '2021-02-18', 'zhiyuan2002', '2019-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS47768161', 'Joel Spencer', 1, '+81 74-245-2349', 4, '111926466976686666', '43-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-09-12', 0, 0, 'spejoe', '2014-05-19', 'spencer8', '2003-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS55865449', '伍明', 0, '+86 755-1426-4736', 4, '327513795797497073', '33F, 322 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-01-22', 0, 0, 'ming5', '2010-08-06', 'ming1997', '2000-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS78576168', '劉祖兒', 1, '+86 760-362-5470', 2, '334826737128800424', '中国中山京华商圈华夏街221号18楼', '1991-11-17', 0, 0, 'lchoy', '2013-05-10', 'choyee56', '2009-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS48076765', '中村愛梨', 1, '+44 5633 529646', 0, '602634134215709133', 'Flat 41, 546 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1999-01-18', 0, 0, 'nakama', '2015-10-28', 'nakamuraairi7', '2016-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS61153782', '蕭家輝', 0, '+86 755-4818-2053', 3, '568609853518402606', '中国深圳罗湖区清水河一路752号45栋', '1988-12-24', 0, 0, 'kfsi', '2014-11-14', 'skafai9', '2015-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS80383352', 'Juanita Nelson', 1, '+86 10-3814-8191', 3, '627903046471704384', 'Room 22, 432 Sanlitun Road, Chaoyang District, Beijing, China', '1989-09-05', 0, 0, 'juanitanel2', '2018-01-24', 'nelsonjuanita', '2010-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS34525303', 'Heather Long', 0, '+86 769-8081-3830', 2, '664187353269712262', '中国东莞珊瑚路180号37楼', '1998-03-15', 0, 0, 'hlong', '2008-05-17', 'heatherlon809', '2019-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS29262418', '小山蓮', 0, '+86 151-3592-8055', 1, '079089319450195093', 'Room 39, 331 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-09-25', 0, 0, 'renk1', '2003-12-30', 'rko', '2002-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS75637036', '彭富城', 1, '+86 171-3941-6084', 3, '020878807049447302', 'No.7 building, 133 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-07-22', 0, 0, 'pfs', '2006-06-24', 'pafushing', '2008-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS47700110', '郭志遠', 1, '+86 147-3699-2227', 2, '240487785085257933', '中国上海市浦东新区健祥路629号44栋', '1985-03-06', 0, 0, 'chiyuenkwok1012', '2002-06-07', 'chiyuenkwok1', '2017-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS49027193', '金安琪', 0, '+81 3-9812-7597', 1, '091462022980914650', '日本東京港区東新橋一丁目5番14号36階', '1993-11-05', 0, 0, 'anqijin2005', '2008-04-12', 'jin811', '2012-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS36985174', 'Jerry Webb', 0, '+81 90-7692-5768', 0, '368294616179650936', '日本なごやし瑞穂区河岸町四丁目20番6号11階', '1992-02-16', 0, 0, 'jerrywebb', '2012-02-17', 'jewebb314', '2008-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS21130633', '郭永發', 1, '+81 3-2807-6423', 2, '267195244329703586', '日本東京港区東新橋一丁目5番12号45階', '1995-04-22', 0, 0, 'wingfat68', '2013-02-17', 'wfk', '2003-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS76141344', '渡部絢斗', 1, '+81 3-4257-6508', 2, '451492055868800016', 'Rm. 30, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-02-24', 0, 0, 'ayatowata', '2011-11-21', 'ayw', '2013-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS21367894', '錢永權', 1, '+86 186-0755-2707', 2, '162295620264289919', 'No.20 building, 54 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-06-11', 0, 0, 'wkchin', '2006-05-12', 'wingkuenchin62', '2011-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS32109584', 'Rhonda Williams', 1, '+44 (20) 1580 3985', 2, '192002693615086715', 'No.45 Main building, 327 Maddox Street, London, W1S 1PU, United Kingdom', '1985-09-25', 0, 0, 'rhonda5', '2021-05-26', 'williamsrhonda', '2006-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS01562313', '鄧永發', 1, '+86 20-656-8480', 3, '441052326044122124', 'No.27 building, 998 Tianhe Road, Tianhe District, Guangzhou, China', '1996-05-23', 0, 0, 'wft', '2014-08-10', 'wingfattang', '2020-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS60340818', '韓家強', 0, '+81 70-6274-0839', 3, '710572287982712585', '3F, 1-6-7, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-11', 0, 0, 'hankakeung', '2019-04-25', 'hankk', '2014-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS14570409', 'Rodney Mendoza', 1, '+86 760-5722-4129', 1, '414706726120528697', '19F, 766 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-08-15', 0, 0, 'rodneymendo', '2018-06-28', 'rodmendoza', '2003-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS45220766', '中川葉月', 1, '+81 74-069-5090', 3, '462542150795928154', '6F, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1990-12-28', 0, 0, 'hnakagawa', '2021-09-04', 'hazn', '2006-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS89808302', '青木海斗', 0, '+44 5799 246413', 2, '690989543953873529', 'No.44 Main building, 703 Mosley St, Manchester, M2 3AQ, United Kingdom', '1988-05-30', 0, 0, 'aokkaito', '2010-04-16', 'aokaito', '2012-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS21525103', '何杰宏', 1, '+86 20-1025-6520', 3, '608282943565274746', '中国广州市白云区小坪东路499号5号楼', '1988-02-26', 0, 0, 'hejieh9', '2012-03-25', 'hejiehong14', '2014-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS77099922', '宣國明', 0, '+81 70-2855-2920', 4, '535890506476316694', '15F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1995-05-25', 0, 0, 'kmh', '2016-06-27', 'kwokmingh', '2021-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS99348405', 'Juan Ryan', 0, '+81 80-7700-0318', 2, '953357061726948656', '18-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1998-10-16', 0, 0, 'ryanjuan', '2021-08-27', 'juanry2', '2007-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS30551878', '藤慧琳', 1, '+81 3-5699-2729', 3, '303081227890509523', '日本東京品川区東五反田五丁目2番17号32階', '1993-02-21', 0, 0, 'wailam1222', '2004-05-27', 'tanwailam', '2007-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS89596800', '罗秀英', 1, '+81 80-7284-0256', 1, '511094295016729558', 'Rm. 22, 3-9-14 Gakuenminami, Nara, Japan', '1996-12-02', 0, 0, 'xiuyingluo5', '2010-04-01', 'xiluo', '2012-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS84173422', '曾明詩', 1, '+44 (1865) 08 6050', 0, '702511758434885120', 'Flat 45, 89 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-12-11', 0, 0, 'tsangms', '2003-02-10', 'tsmingsze', '2021-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS47913096', '成青雲', 0, '+81 90-3814-5917', 2, '347814552392020043', '23-kai, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-05-16', 0, 0, 'chingwanshing', '2020-11-12', 'chingwanshing3', '2014-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS86366301', '魏秀英', 0, '+86 769-2265-5885', 1, '605860465382200940', 'No.6 building, 133 Shanhu Rd, Dongguan, China', '1995-04-08', 0, 0, 'xwe', '2013-03-12', 'xwei', '2015-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS67913210', '宋杰宏', 0, '+81 3-1730-4187', 1, '356903329433441357', '日本東京港区東新橋一丁目5番3号20階', '1985-07-21', 0, 0, 'song5', '2003-06-16', 'sjie8', '2000-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS94916947', '罗詩涵', 1, '+81 90-0345-3008', 1, '368629788087003433', '50F, 3-9-16 Gakuenminami, Nara, Japan', '1990-09-24', 0, 0, 'luos', '2019-08-15', 'shihanlu9', '2008-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS45036455', '青木詩乃', 1, '+81 80-2118-0882', 3, '040954838572447958', '日本なごやし北区清水三丁目19番19号46階', '1988-08-01', 0, 0, 'aoks', '2003-12-02', 'aoks6', '2001-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS84407079', '蒋震南', 0, '+86 197-3537-1415', 2, '598856622218810308', '中国成都市成华区二仙桥东三路96号37楼', '1995-11-08', 0, 0, 'zhennanji', '2010-07-08', 'jianzhennan54', '2000-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS78044719', '李云熙', 0, '+81 70-0362-2238', 0, '417148883907373217', '42-kai, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-05-06', 0, 0, 'yunxi910', '2010-06-07', 'yunxil', '2021-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS26969362', '森健太', 1, '+1 212-999-7184', 1, '926337259156487439', '564 Canal Street 3rd Floor, New York, NY 10013, United States', '1987-07-27', 0, 0, 'kentamori', '2018-10-26', 'kmori', '2001-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS73548044', '上野光', 0, '+1 614-989-0404', 3, '596967154035944315', '855 Tremont Road Apt 41, Columbus, GA 43212, United States', '1989-08-15', 0, 0, 'hikaru203', '2007-12-22', 'hikueno', '2008-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS81229000', '莫裕玲', 0, '+81 11-442-3879', 4, '883744373079744771', '日本札幌豊平区豊平三条十三丁目3番9号2階', '1989-02-11', 0, 0, 'moyuling', '2015-07-31', 'yuling53', '2020-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS51391801', '余秀英', 1, '+81 74-792-3020', 1, '856716892655738754', '日本ならし大和郡山市本庄町一丁目1番2号18号室', '1995-07-24', 0, 0, 'yuxi52', '2016-02-14', 'yu41', '2007-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS69760848', 'George Miller', 0, '+81 66-656-9147', 0, '173882992095291187', '日本おおさかし西成区出城一丁目1番12号34号室', '1995-02-03', 0, 0, 'georgmiller', '2016-02-04', 'millergeorge', '2004-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS90576633', '鄧安娜', 1, '+86 10-496-5580', 1, '373657303171792129', 'Room 22, CR Building, 464 028 County Rd, Yanqing District, Beijing, China', '1988-03-09', 0, 0, 'tanonna', '2002-12-20', 'tangonna', '2018-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS90341785', 'Doris Shaw', 0, '+86 160-7912-4402', 1, '729769186555249675', '中国北京市房山区岳琉路772号1号楼', '1997-01-20', 0, 0, 'shaw20', '2020-03-19', 'shaw02', '2016-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS59989470', '西村聖子', 1, '+44 5617 327564', 4, '653190294242652484', 'No.11 Main building, 583 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-03-22', 0, 0, 'niseik', '2015-01-09', 'nishseik1218', '2021-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS68002357', '李梓軒', 1, '+44 7025 079935', 3, '838634887220764216', 'Flat 24, 527 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-04-02', 0, 0, 'thl76', '2010-02-22', 'thlee617', '2014-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS76896356', '伍惠妹', 0, '+81 70-4603-6092', 3, '926442288260495404', '44F, 3-9-8 Gakuenminami, Nara, Japan', '1992-02-23', 0, 0, 'huimein', '2003-10-19', 'hmn1220', '2009-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS08691651', '徐嘉伦', 0, '+86 191-4997-7817', 2, '505899068978840669', 'Room 13, CR Building, 979 Tianhe Road, Tianhe District, Guangzhou, China', '1990-03-09', 0, 0, 'jialxu', '2017-10-30', 'xujialun1201', '2008-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS00461378', 'Stephanie Ferguson', 0, '+81 70-7581-9647', 0, '467463228285698363', '22F, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-05-25', 0, 0, 'fergusons', '2015-05-25', 'stferg2', '2012-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS40357097', '金子海斗', 0, '+81 52-738-5717', 1, '192326584955682184', '14-kai, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-01-12', 0, 0, 'kanekok', '2008-07-02', 'kanekokait', '2000-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS78534604', 'Norma Gonzalez', 1, '+81 80-0337-4953', 4, '464174809783985075', '日本東京中央区銀座三丁目12番6号42階', '1996-08-23', 0, 0, 'gono719', '2021-12-16', 'normgon', '2008-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS42550894', '小川美緒', 1, '+81 3-3421-8463', 3, '249759820560267796', '9-kai, 1-5-19, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-08-13', 0, 0, 'ogawami7', '2008-08-02', 'mo66', '2014-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS96692237', '傅國權', 0, '+44 5757 677888', 2, '337170691976686341', 'Unit 19, Oxford Eco Centre, 146 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1990-02-22', 0, 0, 'fukwokkuen86', '2006-06-25', 'kwokkuenfu4', '2012-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS24859935', '汪安琪', 1, '+86 172-6195-8332', 1, '494511410950995252', '中国成都市成华区二仙桥东三路534号7号楼', '1991-05-07', 0, 0, 'wanganq', '2001-04-20', 'aw1988', '2011-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS96772768', '文小慧', 1, '+1 614-014-3154', 4, '305408599038045230', '797 East Cooke Road Apartment 3, Columbus, GA 43214, United States', '1991-02-11', 0, 0, 'mansw', '2008-03-18', 'mansiuwai', '2002-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS43016955', '阎子韬', 0, '+44 (151) 936 3708', 2, '897090798362515626', 'Unit 35, Oxford Eco Centre, 514 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1995-11-24', 0, 0, 'zitaoyan', '2004-07-14', 'zitaoya', '2021-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS47363509', 'Donna Bryant', 1, '+86 146-3976-8882', 1, '618698665037941116', 'No.31 building, 801 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-08-29', 0, 0, 'bryadonna', '2010-01-29', 'bryantd2', '2003-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS63087591', 'Carmen Hill', 1, '+81 80-0302-0105', 2, '907420657056094570', 'Rm. 16, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-03-06', 0, 0, 'carmenh', '2008-08-04', 'hilc', '2003-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS98169867', '胡震南', 1, '+86 172-2681-2436', 1, '891716288065435006', '中国广州市白云区小坪东路277号3栋', '1988-04-30', 0, 0, 'zhennanhu', '2019-08-14', 'zhenh18', '2018-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS22152307', 'Todd Dixon', 0, '+81 70-6720-2933', 4, '510589247726168808', 'Rm. 50, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1996-11-02', 0, 0, 'dixon3', '2010-09-05', 'dixonto416', '2015-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS65808882', '池田陽菜', 1, '+1 838-957-3996', 1, '356390392956111782', '321 State Street Suite 43, Albany, NY 12203, United States', '1990-01-05', 0, 0, 'hik', '2013-06-12', 'hinaikeda825', '2013-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS46001254', 'Paula Sullivan', 0, '+44 7891 642972', 2, '881815583143348362', 'Flat 41, 503 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1992-10-22', 0, 0, 'psulli', '2006-12-09', 'sullivanpaula', '2002-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS57143132', '高木聖子', 1, '+81 3-6250-3060', 2, '557948464559325816', '31F, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1999-01-04', 0, 0, 'tase8', '2007-05-20', 'seikotak3', '2007-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS15594869', 'Victoria Hamilton', 1, '+1 718-070-0661', 1, '806243902540957073', '449 Nostrand Ave Apartment 11, Brooklyn, NY 11216, United States', '1987-05-04', 0, 0, 'hamilton425', '2014-02-16', 'victohamilton628', '2015-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS12961555', '任德華', 1, '+1 718-756-8812', 2, '294030566095078947', '530 1st Ave Apartment 10, Brooklyn, NY 11220, United States', '1988-02-11', 0, 0, 'takwahyam', '2009-09-30', 'yam7', '2003-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS62240622', '増田海斗', 0, '+81 3-2851-3252', 1, '412438294755757356', '19F, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1994-06-08', 0, 0, 'masudakai', '2013-03-16', 'masudaka', '2006-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS25227903', '曹力申', 1, '+1 212-671-5405', 0, '689298197129618631', '37 Wooster Street Suite 22, New York, NY 10012, United States', '1997-02-02', 0, 0, 'liksun13', '2006-06-03', 'liksuncho', '2012-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS06150892', '太田陽菜', 1, '+86 769-5971-0220', 4, '794687771963776587', 'No.23 building, 229 Kengmei 15th Alley, Dongguan, China', '1993-12-29', 0, 0, 'ota1027', '2002-10-22', 'ohina', '2008-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS93071885', '元天榮', 0, '+81 11-625-3529', 2, '140751925580147420', '日本札幌清田区真栄四条五丁目19番9号10号室', '1998-07-16', 0, 0, 'twyuen1121', '2006-11-07', 'tinwing1947', '2014-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS23772363', '陆詩涵', 1, '+1 213-754-8858', 2, '368051916027884009', '424 Grape Street Apartment 2, Los Angeles, CA 90002, United States', '1994-02-19', 0, 0, 'sl218', '2014-03-08', 'lushiha427', '2020-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS55870607', '有村光', 0, '+1 330-202-5375', 2, '808635661335418981', '995 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1990-03-25', 0, 0, 'harimura', '2016-04-04', 'arimurahikaru912', '2019-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS33300679', 'Jerry Anderson', 1, '+44 (116) 940 8507', 3, '087296606948255522', 'Block 27, 822 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-12-01', 0, 0, 'jerry224', '2005-12-04', 'andejerry', '2008-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS97548840', '方晓明', 0, '+81 74-373-7244', 0, '939349884198202822', 'Rm. 30, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-07-01', 0, 0, 'xiaoming06', '2004-07-04', 'xiaofa', '2018-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS67760797', '姜子异', 0, '+81 11-426-3494', 2, '897222916732995994', '37-kai, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-05-27', 0, 0, 'jziyi', '2014-05-07', 'ziyijiang83', '2017-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS89596110', '苏致远', 1, '+44 5496 619686', 1, '524722195235598978', 'Block 25, 139 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-03-12', 0, 0, 'zhiyuansu1', '2014-01-28', 'suzhiyu', '2014-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS15468416', 'Francis Wood', 1, '+1 213-924-0759', 1, '907691885407244438', '564 Alameda Street Suite 16, Los Angeles, CA 90002, United States', '1990-11-19', 0, 0, 'francis802', '2000-05-25', 'franciswo', '2004-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS48566356', '赵秀英', 0, '+81 11-771-3667', 1, '621159630704729028', '43F, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-01-25', 0, 0, 'xiuyingz', '2009-05-06', 'xiuyingzha', '2020-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS82641435', 'Shannon Moore', 0, '+81 80-7858-5661', 2, '537887650259493043', '日本ならし西大寺赤田町一丁目7番6号17階', '1988-07-02', 0, 0, 'shannonm', '2001-11-10', 'mooreshann', '2009-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS94409739', '石晓明', 1, '+86 130-0351-0421', 3, '332626122519249922', 'Room 11, 819 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-10-09', 0, 0, 'xshi', '2013-01-08', 'shi17', '2004-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS53666170', 'Carl Myers', 1, '+44 7081 895052', 1, '773263144057453194', 'Unit 37, Oxford Eco Centre, 717 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-08-11', 0, 0, 'carlmyers', '2004-01-28', 'cm6', '2019-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS06870265', '周震南', 1, '+1 718-267-8221', 3, '402967202497626381', '57 Columbia St Suite 13, Brooklyn, NY 11231, United States', '1992-05-25', 0, 0, 'zhenzho5', '2006-06-03', 'zhez', '2009-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS86075420', '中森七海', 0, '+86 187-7130-1147', 1, '191399428364314487', '中国成都市成华区双庆路234号华润大厦3室', '1992-07-07', 0, 0, 'nakamorinanam', '2018-12-11', 'nananakamori', '2003-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS79503281', 'Jennifer Robinson', 1, '+81 90-0295-3744', 2, '163053034355525726', '日本東京港区東新橋一丁目5番15号13階', '1990-10-01', 0, 0, 'robinsonjenn1101', '2006-03-05', 'jenniferrobinson4', '2020-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS14679224', '梅慧敏', 1, '+1 838-434-6241', 2, '108413371850212571', '156 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1996-07-04', 0, 0, 'wmmui2000', '2012-08-21', 'waimanmu', '2008-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS98745344', '廖慧儀', 1, '+1 212-338-7136', 2, '035222374308272477', '740 Fifth Avenue Apartment 37, New York, NY 10017, United States', '1985-01-08', 0, 0, 'wyl52', '2016-04-22', 'wyliao', '2011-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS77858030', '洪慧珊', 0, '+81 74-249-8608', 1, '935362762444450934', '35F, 3-9-13 Gakuenminami, Nara, Japan', '1999-02-09', 0, 0, 'hungwaisan228', '2005-11-05', 'hung831', '2002-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS24364134', 'Christina Hamilton', 1, '+1 718-070-4984', 3, '829986873879701418', '150 Nostrand Ave Apt 18, Brooklyn, NY 11216, United States', '1993-04-22', 0, 0, 'ch3', '2018-05-20', 'christina612', '2001-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS27467455', '蔡家輝', 1, '+86 20-910-3931', 0, '201717829996326031', '中国广州市白云区小坪东路507号48室', '1997-03-11', 0, 0, 'kfch4', '2003-12-08', 'chkf9', '2020-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS16081054', '方子韬', 1, '+86 149-6889-8663', 1, '690512917644261279', '中国北京市朝阳区三里屯路901号13号楼', '1993-09-25', 0, 0, 'fzitao1948', '2004-07-26', 'fangzi', '2016-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS69763843', '山口結翔', 1, '+86 20-349-0544', 1, '281833222131631455', '中国广州市天河区天河路938号27楼', '1993-02-16', 0, 0, 'yamyuito7', '2010-06-04', 'yamagyu', '2002-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS21054219', '高橋美緒', 1, '+86 157-3795-9409', 1, '376893037006139345', '中国东莞珊瑚路631号32号楼', '1998-03-05', 0, 0, 'miotakahashi', '2020-12-10', 'mio58', '2014-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS31744461', '太田聖子', 1, '+86 182-0405-9114', 1, '827875842275171814', '中国中山天河区大信商圈大信南路285号31室', '1998-04-24', 0, 0, 'seota1009', '2002-10-22', 'otaseiko', '2020-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS51396537', '蕭天樂', 1, '+81 90-0063-7127', 2, '760222166717379955', '日本札幌白石区菊水三条五丁目4番12号2号室', '1985-02-21', 0, 0, 'siutin', '2021-11-02', 'tinloksiu', '2010-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS41561485', '中森結翔', 0, '+86 141-0889-3296', 4, '468548271008048559', 'No.44 building, 843 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1996-08-06', 0, 0, 'nyui', '2005-06-15', 'yuinakamori', '2002-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS32792112', '方惠妹', 1, '+1 330-977-1349', 3, '462538595049411580', '985 Collier Road Suite 49, Akron, OH 44320, United States', '1985-02-20', 0, 0, 'fonghuimei', '2015-08-01', 'fonhuimei', '2000-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS85562177', 'Mark Ruiz', 1, '+81 90-9696-7153', 2, '161716295787529258', '4F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-07-08', 0, 0, 'ruizm', '2002-10-30', 'markruiz2002', '2019-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS72642672', '上田明菜', 0, '+81 52-782-0839', 3, '094261988899732577', '日本なごやし北区清水三丁目19番18号47階', '1998-09-15', 0, 0, 'uedaakin1207', '2019-07-18', 'akinued04', '2017-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS78755839', '藍慧琳', 1, '+81 70-4068-0733', 0, '607190282336106464', '日本おおさかし東住吉区東田辺三丁目27番14号13号室', '1994-05-27', 0, 0, 'lamwailam', '2011-11-09', 'lamwa', '2006-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS92510297', '龚宇宁', 1, '+1 718-933-6518', 3, '004681271000382120', '118 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1992-07-05', 0, 0, 'yugong', '2011-01-13', 'yuning97', '2006-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS87694404', '中山陽菜', 1, '+44 5625 373898', 4, '696559937566809947', 'Block 39, 139 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-09-06', 0, 0, 'nakayh618', '2008-09-10', 'nakahina65', '2000-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS85191342', 'Grace Richardson', 0, '+86 191-6979-0175', 2, '615540850285889866', '中国深圳龙岗区学园一巷3号华润大厦45室', '1998-05-24', 0, 0, 'gracrichardson04', '2006-07-16', 'gri5', '2008-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS49004609', 'Sylvia Griffin', 0, '+44 7013 371545', 3, '621790059830408258', 'Block 50, 647 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-07-28', 0, 0, 'griffinsylvia', '2007-06-28', 'grifsy', '2008-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS02978147', '冯嘉伦', 1, '+44 5777 425499', 3, '761736068190347535', 'No.42 Main building, 683 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-04-09', 0, 0, 'fej', '2020-12-07', 'fjialun912', '2015-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS84336749', 'Allen Henderson', 1, '+81 11-398-5522', 1, '936079766587904358', '27F, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-03-17', 0, 0, 'alhe', '2017-09-08', 'allen120', '2004-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS82923605', '原舞', 0, '+86 190-7185-7436', 1, '462968751710288603', '中国北京市西城区复兴门内大街606号华润大厦8室', '1998-03-14', 0, 0, 'mah921', '2017-12-26', 'mahara504', '2015-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS57964529', 'John Phillips', 0, '+81 90-7089-7699', 2, '081384999620394551', '日本ならし西大寺赤田町一丁目7番10号29号室', '1998-04-23', 0, 0, 'philljohn', '2003-01-03', 'pjohn', '2020-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS74397537', 'Josephine Hicks', 0, '+44 5798 610557', 3, '734461146735628127', 'Unit 25, Oxford Eco Centre, 939 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-06-23', 0, 0, 'hicksjosephine', '2006-01-29', 'josehicks', '2017-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS41533279', '马子韬', 1, '+86 194-6996-1133', 0, '119652881653218737', '中国北京市海淀区清河中街68号121号19栋', '1998-02-11', 0, 0, 'mazitao', '2007-09-23', 'mazitao', '2021-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS65420596', '黎安琪', 1, '+81 80-7917-4903', 2, '761254921226524939', '日本なごやし熱田区千年二丁目5番1号38階', '1994-06-16', 0, 0, 'ali', '2017-03-01', 'lanq4', '2003-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS44517165', '陳國榮', 1, '+81 11-865-3076', 1, '047001926776748696', '日本札幌豊平区豊平三条十三丁目3番12号22階', '1993-10-31', 0, 0, 'chankw', '2005-01-12', 'ckwokwing', '2005-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS31035355', '謝家輝', 0, '+44 (20) 2568 9483', 4, '607288882753769190', 'Block 17, 99 Regent Street, London, W1B 2LX, United Kingdom', '1998-06-03', 0, 0, 'kafai4', '2017-09-15', 'tse7', '2011-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS65307404', '翁裕玲', 1, '+86 21-445-4607', 2, '275891731056774906', 'Room 4, CR Building, 57 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-09-01', 0, 0, 'yung47', '2007-12-29', 'yyl3', '2009-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS19266590', '赵宇宁', 0, '+86 148-5886-8030', 3, '787368073364756575', 'No.31 building, 737 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-04-01', 0, 0, 'zhyun', '2009-08-20', 'zyun', '2013-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS60894743', '木村美咲', 0, '+86 171-9714-6395', 3, '533013714197752211', '中国东莞珊瑚路980号33栋', '1988-09-17', 0, 0, 'kimuramisaki', '2010-11-20', 'kimura612', '2006-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS19587195', '何晓明', 1, '+86 769-329-7347', 3, '377020753323350069', '中国东莞环区南街二巷937号3楼', '1985-10-22', 0, 0, 'hxiaoming', '2007-12-23', 'hexia1', '2019-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS44915699', 'Dorothy Phillips', 0, '+86 133-1767-0649', 4, '048052963349763593', 'No.39 building, 243 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-04-20', 0, 0, 'phillipsd12', '2003-08-22', 'phillips2', '2004-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS26895206', '王秀英', 1, '+86 20-8902-7160', 1, '046970504416458408', 'Room 39, 642 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-12-06', 0, 0, 'wx77', '2014-12-04', 'xiuying5', '2003-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS97030529', '安藤海斗', 1, '+86 178-5091-7309', 2, '541384418364000815', 'Room 16, CR Building, 789 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-08-02', 0, 0, 'andok8', '2000-11-05', 'kaitoando', '2014-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS39920550', '田中樹', 0, '+44 7010 057685', 2, '362666665082233765', 'Block 7, 648 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-06-04', 0, 0, 'tanaka14', '2018-01-28', 'itsukitanaka', '2017-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS89234026', '朱詩涵', 1, '+81 74-648-8595', 2, '603611164914321660', 'Rm. 48, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-12-23', 0, 0, 'zhushihan', '2012-03-11', 'szhu', '2016-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS51899717', 'Steven Campbell', 1, '+1 330-944-2226', 2, '451386930176558993', '183 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-08-14', 0, 0, 'stevencampbell2', '2015-08-12', 'steven316', '2000-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS95715929', '周麗欣', 1, '+86 21-834-5345', 0, '393554705286587634', 'Room 8, CR Building, 298 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-09-14', 0, 0, 'laiyanchow6', '2012-12-31', 'chow83', '2017-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS45250271', '梁青雲', 0, '+86 154-7214-5511', 4, '005747940988853297', 'No.9 building, 46 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-09-05', 0, 0, 'chingwanleung', '2000-12-11', 'cwl', '2006-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS53280442', '菅原明菜', 0, '+86 134-4641-3049', 0, '550953110316136874', '中国东莞东泰五街530号11栋', '1990-02-01', 0, 0, 'sugawaraakina', '2006-03-06', 'sugawaraa10', '2019-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS192418612686', '苗家玲', 1, '+81 70-7182-1557', 1, '890556630430423297', '23-kai, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-09-18', 0, 0, 'klmiu1963', '2002-07-26', 'mikl409', '2021-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS954836839346', '橋本葵', 0, '+1 312-116-0724', 3, '546781847575234691', '256 Pedway Suite 20, Chicago, IL 60601, United States', '1996-05-04', 0, 0, 'haoi', '2007-12-24', 'aoi1', '2006-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS184777112086', 'Jesse Gordon', 1, '+81 80-7733-0122', 1, '514109695769008903', '日本ならし大和郡山市本庄町一丁目1番8号19号室', '1987-09-29', 0, 0, 'goj', '2017-12-04', 'gordonjesse', '2002-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS620795910589', '村上詩乃', 0, '+1 614-901-3518', 4, '285900986686186269', '644 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-03-10', 0, 0, 'murakamis1958', '2002-10-10', 'murash', '2001-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS815706629408', '黎家明', 0, '+86 10-567-7243', 3, '308909849013019564', '中国北京市东城区东单王府井东街492号华润大厦50室', '1985-11-27', 0, 0, 'lai51', '2018-09-20', 'kaming93', '2008-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS362599701985', '佐野陽菜', 0, '+86 133-6913-9249', 2, '125374204946054292', '中国上海市浦东新区健祥路512号7栋', '1990-04-19', 0, 0, 'hsano1230', '2004-05-31', 'sahina', '2014-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS086870278849', '邵玲玲', 1, '+81 3-0844-5869', 2, '636458357705612753', 'Rm. 46, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-04-16', 0, 0, 'linglings502', '2011-12-02', 'llsiu', '2012-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS493259610493', '胡秀英', 0, '+1 718-595-5262', 0, '715697029823950541', '171 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1991-02-13', 0, 0, 'huxiuying3', '2008-12-24', 'huxiuyi', '2008-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS795529904354', '中山海斗', 0, '+86 21-607-8195', 1, '292522463828555222', 'Room 8, 23 Jianxiang Rd, Pudong, Shanghai, China', '1989-11-01', 0, 0, 'nakaka1112', '2019-11-07', 'kaitonakay', '2010-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS227471386926', '佐々木美緒', 0, '+86 169-0373-3643', 3, '448494862712707651', '中国广州市白云区小坪东路324号4室', '1989-08-23', 0, 0, 'sasakimio', '2013-02-06', 'sasakimio', '2014-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS701190666606', 'Frederick Collins', 0, '+81 52-626-1822', 3, '586806520306086701', '日本なごやし北区楠味鋺三丁目80番3号28階', '1997-06-26', 0, 0, 'collins303', '2001-05-25', 'collifrede', '2002-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS044002870656', '蕭曉彤', 0, '+86 144-8688-2129', 2, '642852116990382240', '中国北京市朝阳区三里屯路247号8栋', '1997-10-30', 0, 0, 'htsiu77', '2001-09-11', 'siu1008', '2019-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS727203844252', '金子悠人', 0, '+86 28-0116-8877', 1, '134622901852780713', '中国成都市成华区双庆路5号36室', '1988-09-05', 0, 0, 'yk01', '2005-03-01', 'kaneko15', '2004-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS335807011191', '酒井蒼士', 0, '+86 755-4961-0977', 0, '446254197290151096', '42F, 1 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-02-14', 0, 0, 'aoshi9', '2010-04-10', 'sakaiaos6', '2008-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS961950051159', 'James Martin', 0, '+81 80-1358-5348', 2, '849197714741748823', '日本なごやし守山区瀬古東二丁目171番10号35階', '1985-01-19', 0, 0, 'martinjames1', '2001-07-14', 'martinjam1211', '2001-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS637294851811', '斉藤悠人', 1, '+1 614-726-9494', 2, '944962885612314061', '350 Wicklow Road Suite 50, Columbus, GA 43204, United States', '1986-08-14', 0, 0, 'yuto6', '2019-10-04', 'yutosaito', '2004-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS338820366111', 'Peggy Cooper', 0, '+86 150-7308-2498', 3, '797323226529597896', 'No.32 building, 380 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-03-05', 0, 0, 'peggyc', '2014-01-20', 'peggcooper209', '2005-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS779276193649', 'Gary Rivera', 1, '+81 52-492-7806', 4, '817262041862854796', '日本なごやし熱田区千年二丁目5番4号23階', '1986-03-13', 0, 0, 'garyrivera', '2000-10-09', 'rivera12', '2008-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS416697717657', 'Anne Perry', 1, '+81 74-341-2681', 1, '094294672478812177', '25F, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1992-10-19', 0, 0, 'perann7', '2010-09-12', 'anp', '2003-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS930384921679', '楊思妤', 1, '+86 177-5276-0918', 4, '826623644043383369', '5F, 867 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-03-06', 0, 0, 'szeyuy', '2019-04-10', 'szeyuyeung', '2015-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS321340852425', 'Kevin Robertson', 1, '+81 70-0632-0121', 0, '819344817494056906', '1F, 3-9-4 Gakuenminami, Nara, Japan', '1987-02-27', 0, 0, 'robertsonkevin604', '2005-06-16', 'roberke1231', '2011-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS918617377189', 'Marie Jimenez', 1, '+86 28-0155-7323', 2, '482251954726306591', '中国成都市成华区玉双路6号666号28楼', '1996-11-05', 0, 0, 'jimenez916', '2000-09-23', 'jmarie', '2000-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS593770299900', '胡慧敏', 0, '+44 7850 167726', 3, '349124763834922517', 'Flat 13, 493 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-12-14', 0, 0, 'wwm', '2001-02-04', 'wmwu', '2006-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS539202282917', '王德華', 0, '+44 (151) 435 5977', 3, '171170130088828713', 'No.36 Main building, 377 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-10-09', 0, 0, 'wtakwah', '2020-09-11', 'takwah307', '2002-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS623696918647', '孙杰宏', 1, '+1 312-491-0756', 1, '857974177539407061', '662 Rush Street Apt 48, Chicago, IL 60611, United States', '1994-11-06', 0, 0, 'sunjiehong721', '2012-05-17', 'sunj10', '2012-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS134115817495', '中山樹', 1, '+81 66-250-5102', 4, '769318935094778477', '日本おおさかし西成区天神ノ森二丁目1番4号43階', '1998-11-17', 0, 0, 'in1011', '2014-11-25', 'nakayama41', '2011-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS026428262056', '江震南', 0, '+1 330-039-6486', 3, '348656558542484476', '18 Collier Road Suite 14, Akron, OH 44320, United States', '1993-06-06', 0, 0, 'zhennanjia88', '2019-12-03', 'jzhennan13', '2014-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS254157163260', '蘇家輝', 1, '+81 70-2825-8191', 1, '506814731244942910', 'Rm. 22, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-12-30', 0, 0, 'sokf123', '2019-06-19', 'kafai1030', '2008-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS383568400219', '柴田花', 0, '+86 155-6227-2912', 0, '861046008484217654', '中国深圳福田区深南大道392号华润大厦40室', '1991-10-07', 0, 0, 'shibahana', '2002-09-27', 'shibata7', '2003-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS861378321961', '石睿', 1, '+81 80-7031-6732', 4, '111713522985111322', '日本東京港区東新橋一丁目5番8号32号室', '1998-08-10', 0, 0, 'shi718', '2016-08-25', 'ruis06', '2020-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS550304765914', 'Nicole Diaz', 0, '+81 52-834-4177', 0, '729610049343554155', '日本なごやし北区清水三丁目19番8号5階', '1995-10-05', 0, 0, 'ndia', '2011-06-07', 'nicole1129', '2015-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS172686026646', 'Marvin Henry', 1, '+81 52-506-1219', 2, '124686985726380301', '日本なごやし守山区瀬古東二丁目171番9号34階', '1998-11-24', 0, 0, 'marvin8', '2009-07-08', 'mahenry7', '2012-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS065652681391', '张秀英', 1, '+86 755-5415-5152', 2, '644496678023243341', '中国深圳福田区景田东一街941号32楼', '1997-07-06', 0, 0, 'xiuyingzhang1', '2001-10-17', 'zhangxiuy129', '2000-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS584333185207', 'Tiffany Powell', 0, '+86 152-0761-9358', 3, '939476785547291977', '中国深圳龙岗区学园一巷690号26楼', '1996-05-29', 0, 0, 'tpowe', '2001-08-08', 'tip', '2004-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS106402752796', 'Travis Porter', 1, '+86 162-6054-7921', 3, '423591717211335993', '中国深圳罗湖区蔡屋围深南东路52号3楼', '1992-03-07', 0, 0, 'porter72', '2003-03-02', 'travporter', '2021-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS898205024921', '谷明詩', 1, '+44 (116) 840 6030', 1, '840950079711427638', 'Flat 18, 262 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-12-19', 0, 0, 'mskoo7', '2002-06-04', 'koo1', '2009-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS285469873530', '小林百恵', 0, '+1 213-947-6573', 2, '444245921010753291', '740 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-05-13', 0, 0, 'km94', '2017-03-11', 'momoekobayashi2010', '2011-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS478851399075', '黄宇宁', 0, '+81 11-476-5354', 2, '630108238562073813', '日本札幌厚別区上野幌一条二丁目1番9号26号室', '1988-12-12', 0, 0, 'yuninghuang4', '2008-09-10', 'yuninghuang58', '2003-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS631896408811', '小山紗良', 0, '+1 838-991-2739', 0, '152047523934324280', '934 Broadway Apartment 2, Albany, NY 12207, United States', '1989-06-28', 0, 0, 'sarakoy1218', '2021-05-30', 'sarakoyama', '2016-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS671219377856', '武田紗良', 0, '+86 197-5823-5580', 1, '587424691873378080', '中国深圳龙岗区学园一巷6号14室', '1987-10-02', 0, 0, 'st210', '2010-02-07', 'saratakeda', '2018-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS184921891893', '菅原聖子', 0, '+81 90-7267-9677', 1, '072196447340946305', '13F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-10-05', 0, 0, 'seikos1119', '2000-04-25', 'sugse', '2018-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS400260151130', 'Mike Murray', 1, '+81 80-8736-0965', 0, '668567021536989239', '50F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1998-12-19', 0, 0, 'mikemurra4', '2018-07-19', 'murmik6', '2014-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS279775650221', '李云熙', 0, '+44 5082 959838', 0, '720591589914323305', 'Block 41, 934 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1996-08-29', 0, 0, 'liyunxi', '2019-10-22', 'yli', '2016-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS007742306620', 'Heather Anderson', 0, '+81 11-466-1030', 2, '594140918250013276', '45F, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-29', 0, 0, 'aheat1', '2016-04-02', 'ah7', '2008-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS662527164194', '區學友', 0, '+81 3-8946-4168', 3, '505449412170528859', '31-kai, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1996-10-08', 0, 0, 'au10', '2006-05-28', 'hyau', '2017-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS769571901652', 'Tina Patel', 1, '+1 213-161-8682', 3, '081849659396129440', '635 S Broadway Suite 25, Los Angeles, CA 90015, United States', '1992-08-23', 0, 0, 'patel5', '2005-08-07', 'ptina', '2006-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS761378056493', 'Kathryn Robertson', 0, '+86 10-589-0935', 0, '074805966479764806', '中国北京市西城区复兴门内大街93号华润大厦18室', '1996-08-04', 0, 0, 'kathryn1027', '2003-01-12', 'rk505', '2019-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS519337012738', '萬天樂', 0, '+86 132-1145-5783', 0, '004165927684437274', 'Room 31, CR Building, 999 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-23', 0, 0, 'tlmeng', '2008-10-14', 'mengtl', '2010-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS211794490647', 'Alexander Ellis', 0, '+81 90-3832-7680', 1, '926878723745640134', '日本東京中央区銀座三丁目12番15号23階', '1992-11-21', 0, 0, 'alexaellis', '2010-03-18', 'ella', '2008-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS696320777382', 'Mario Schmidt', 1, '+86 28-6900-9710', 3, '023286536563410597', '中国成都市成华区双庆路853号16号楼', '1997-01-26', 0, 0, 'scmar76', '2009-08-06', 'schmidt2', '2011-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS572573755322', 'Thelma Kennedy', 1, '+81 90-1932-1162', 0, '730188097905285191', '日本おおさかし平野区加美東四丁目9番10号13号室', '1988-08-16', 0, 0, 'tk1956', '2013-02-03', 'thelken', '2006-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS238538133879', '周子韬', 1, '+86 187-9229-5702', 0, '353418656182723708', 'No.15 building, 238 Yueliu Rd, Fangshan District, Beijing, China', '1992-06-26', 0, 0, 'zzitao7', '2013-04-03', 'zhouz2', '2011-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS325843463096', '木村玲奈', 0, '+81 90-8307-8722', 3, '575555863165566320', '日本なごやし北区楠味鋺三丁目80番14号14号室', '1996-09-02', 0, 0, 'renakim', '2004-12-24', 'renakimura', '2013-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS653380532296', '葉慧嫻', 1, '+44 5724 100719', 4, '942203664665887909', 'Flat 11, 169 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-02-04', 0, 0, 'yipwh', '2016-02-11', 'yiwh', '2004-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS105745357534', '山崎拓哉', 1, '+86 143-2065-8769', 4, '463469278153819852', '中国广州市白云区机场路棠苑街五巷329号华润大厦18室', '1985-12-15', 0, 0, 'tayamazaki', '2003-11-30', 'takuyamazaki802', '2001-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS765080949996', '松本健太', 1, '+81 70-4436-3102', 0, '668185026760510254', '日本おおさかし平野区加美東四丁目9番3号47階', '1988-07-13', 0, 0, 'kentamatsumoto', '2021-10-14', 'matsumoto3', '2005-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS692421355146', '高田樹', 0, '+81 52-890-2057', 2, '112215983207806683', '日本なごやし守山区瀬古東二丁目171番6号38号室', '1986-04-17', 0, 0, 'ittakad', '2011-08-26', 'itstakada', '2006-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS399369492868', '余嘉伦', 1, '+86 182-2380-0409', 4, '587386770420173785', '中国北京市西城区西長安街259号30号楼', '1998-08-29', 0, 0, 'jialunyu729', '2021-09-19', 'jialun722', '2004-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS297868831871', '曾安娜', 1, '+86 769-3637-2360', 1, '052051643284647593', '27F, 294 Shanhu Rd, Dongguan, China', '1987-04-13', 0, 0, 'ontsang', '2017-06-06', 'ton8', '2001-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS055941087457', 'Stephanie Aguilar', 1, '+81 52-361-4430', 4, '662736310077206674', 'Rm. 43, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-08-26', 0, 0, 'aguilarsteph6', '2009-12-19', 'aguistephanie', '2002-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS734717763592', '中山愛梨', 1, '+86 144-7894-0110', 3, '738573191620192807', '中国深圳罗湖区清水河一路537号48栋', '1997-06-25', 0, 0, 'naairi', '2014-07-21', 'airn', '2007-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS854547843450', '柴田凛', 1, '+44 5546 078765', 2, '313646881346278859', 'No.10 Main building, 163 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-12-23', 0, 0, 'rinshi', '2000-01-01', 'shibatari', '2016-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS217284552680', '邱霆鋒', 0, '+86 769-107-0965', 0, '657963207193033445', '中国东莞环区南街二巷245号30栋', '1997-11-07', 0, 0, 'tfy2', '2007-11-11', 'tfyau', '2011-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS476195181515', '韓梓晴', 0, '+81 90-2318-3977', 2, '733139006577566007', '日本東京渋谷区代々木二丁目3番14号36階', '1987-06-02', 0, 0, 'han8', '2000-09-06', 'htszching', '2021-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS591515244401', 'Crystal Woods', 0, '+44 7409 264683', 2, '496675840319230648', 'Flat 29, 993 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-05-26', 0, 0, 'wooc924', '2000-01-28', 'wcrystal4', '2021-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS723957992512', '林榮發', 0, '+86 132-6148-0422', 1, '420798647024587000', '17F, 258 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-01-22', 0, 0, 'wflam723', '2004-02-23', 'wfla', '2014-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS016471217414', '郝嘉伦', 1, '+86 157-6760-0531', 2, '509617702278051269', '中国成都市成华区二仙桥东三路710号34室', '1994-04-15', 0, 0, 'haojia', '2019-11-30', 'jiahao', '2019-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS563311924735', 'Brenda Davis', 0, '+86 21-4755-7791', 1, '440598266285571648', 'No.23 building, 794 Binchuan Rd, Minhang District, Shanghai, China', '1986-09-07', 0, 0, 'davisbren730', '2007-05-15', 'brenda8', '2016-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS488511223025', '邵安琪', 1, '+86 131-7657-7299', 1, '013580701753300111', '中国北京市朝阳区三里屯路286号21号楼', '1987-02-12', 0, 0, 'siu1118', '2017-06-21', 'oks', '2015-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS220263854873', '吉田紗良', 0, '+86 156-9268-0807', 3, '660963040616724253', '中国深圳龙岗区布吉镇西环路852号1室', '1992-03-16', 0, 0, 'sarayoshida57', '2020-10-22', 'yoshidasar1957', '2007-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS849781714322', '袁璐', 0, '+44 (161) 162 5196', 2, '678200782439278559', 'Flat 2, 981 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-05-18', 0, 0, 'yuanl53', '2000-04-21', 'ylu', '2011-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS503015345566', 'Elizabeth Cole', 0, '+86 10-367-0423', 3, '796897878783013518', '中国北京市西城区复兴门内大街586号华润大厦4室', '1989-06-22', 0, 0, 'elizabeth10', '2009-10-07', 'coleeli9', '2000-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS388099277839', '中島翼', 1, '+81 70-9183-2504', 0, '325273900058013376', 'Rm. 9, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-03-29', 0, 0, 'nakajimat5', '2000-04-17', 'tsubanak2007', '2008-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS472946154827', 'Richard Meyer', 0, '+81 80-4372-1705', 1, '767965764656698020', '12-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-01-27', 0, 0, 'mrich', '2004-03-09', 'meyerr', '2009-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS876337965918', '湯天樂', 0, '+1 838-575-5716', 2, '987955654365824311', '143 State Street Apartment 3, Albany, NY 12203, United States', '1989-12-15', 0, 0, 'tongtinlok7', '2005-11-16', 'tongtinlok625', '2012-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS148866588740', '太田優奈', 1, '+44 (20) 4060 6216', 4, '186697794662604897', 'Flat 46, 855 Maddox Street, London, W1S 1PU, United Kingdom', '1989-12-18', 0, 0, 'ota2', '2009-09-18', 'otayun78', '2005-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS128240117600', '市川蒼士', 1, '+1 838-192-3230', 1, '584575401826831931', '13 Broadway Apartment 38, Albany, NY 12207, United States', '1994-04-16', 0, 0, 'ichikawa6', '2013-01-22', 'aoshi1206', '2018-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS143941759057', '严秀英', 0, '+81 80-8779-3468', 3, '267476536611788907', '日本東京渋谷区代々木二丁目3番18号18号室', '1995-09-18', 0, 0, 'xiuyan', '2021-07-08', 'xiuying208', '2017-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS712521593037', '葉詩君', 1, '+44 (161) 930 4074', 1, '803292173218030533', 'Flat 38, 42 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-02-03', 0, 0, 'szekwanyip', '2015-06-23', 'yip209', '2007-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS493661255871', '沈子韬', 1, '+81 66-660-9066', 2, '586580272262293326', '日本おおさかし西成区出城一丁目1番2号21階', '1996-11-24', 0, 0, 'shzita', '2009-05-19', 'zitaosh', '2010-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS145862792881', '汤云熙', 1, '+1 212-416-5433', 3, '757218710588209386', '47 West Houston Street Apartment 20, New York, NY 10014, United States', '1997-07-10', 0, 0, 'tangyun1', '2010-12-13', 'tangyun2', '2002-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS279752335862', '阎璐', 0, '+86 159-2475-0985', 0, '559738925994098214', 'No.4 building, 426 Shanhu Rd, Dongguan, China', '1990-06-01', 0, 0, 'ylu', '2013-11-06', 'ylu', '2004-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS261626172188', 'Jeff Hall', 1, '+86 160-1632-8891', 0, '111345079757524467', '中国上海市浦东新区健祥路958号华润大厦7室', '1989-01-03', 0, 0, 'jeh10', '2007-09-02', 'hajeff4', '2020-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS710796638848', '崔子韬', 0, '+86 21-441-7987', 1, '901591389970709656', 'No.30 building, 84 Jianxiang Rd, Pudong, Shanghai, China', '1987-04-18', 0, 0, 'zcui', '2011-02-03', 'zitao1998', '2003-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS099221556074', '原瑛太', 1, '+86 173-2805-9712', 4, '339491421399623529', 'No.4 building, 326 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-12-27', 0, 0, 'haei', '2017-07-30', 'eitahara603', '2016-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS148389446854', '野口愛梨', 0, '+81 70-6912-8477', 0, '372559301852823290', 'Rm. 5, 1-5-16, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-05-19', 0, 0, 'nairi10', '2014-07-17', 'airinoguc', '2003-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS648716185049', 'Leslie Rodriguez', 0, '+1 330-703-0236', 4, '938522648893513902', '653 Fern Street Suite 19, Akron, OH 44307, United States', '1997-02-27', 0, 0, 'roleslie7', '2017-12-04', 'rodriguez63', '2001-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS432543340401', '韩致远', 0, '+86 755-573-2596', 1, '323881189554715016', '中国深圳龙岗区布吉镇西环路700号46号楼', '1992-03-31', 0, 0, 'hanzh', '2015-10-13', 'zhiyhan', '2017-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS468836009017', '常子韬', 0, '+81 3-6143-8254', 4, '844253999136295695', '36F, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1987-07-23', 0, 0, 'changzitao', '2011-02-14', 'zch801', '2004-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS122135796247', '清水大地', 1, '+86 755-5412-0974', 1, '362203346342324404', 'Room 14, CR Building, 289 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-03-14', 0, 0, 'daichi3', '2004-10-10', 'shimizudaichi220', '2022-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS623303836558', '苗秀文', 1, '+81 80-1436-0887', 1, '567667747773085793', '45-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1986-10-23', 0, 0, 'smm', '2003-12-28', 'saumanmiu', '2007-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS099716440805', 'Mildred Fernandez', 0, '+81 3-6717-5739', 1, '862434227232268565', '6F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-03-04', 0, 0, 'fernandez9', '2005-07-15', 'mildredfern', '2008-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS976511874138', '劉惠敏', 1, '+86 191-5178-7832', 0, '256427633350864952', '中国北京市朝阳区三里屯路120号21号楼', '1994-06-13', 0, 0, 'lawm109', '2007-08-30', 'lauwm', '2021-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS506832061750', 'Anita Baker', 1, '+81 3-3662-9293', 3, '491016520559508812', '48-kai, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-11-18', 0, 0, 'anitab911', '2007-01-23', 'anitaba', '2020-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS621363088153', '陆子韬', 1, '+1 330-764-9140', 2, '151875733771855949', '339 Collier Road 3rd Floor, Akron, OH 44320, United States', '1985-04-17', 0, 0, 'luzit', '2000-07-30', 'lzita9', '2007-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS466126247058', '胡天榮', 0, '+86 145-5045-2083', 4, '295205475155383727', '35F, 354 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-11-10', 0, 0, 'tinwingwu', '2001-10-24', 'tww79', '2001-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS553426012236', '白世榮', 0, '+81 52-493-2794', 3, '236557643439628180', '日本なごやし北区清水三丁目19番17号1階', '1996-01-27', 0, 0, 'swp912', '2017-05-02', 'saiwpa', '2013-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS157754136136', '雷榮發', 1, '+81 90-1561-0349', 3, '195029173748138823', '日本東京千代田区丸の内一丁目6番9号39号室', '1988-09-10', 0, 0, 'wingfat810', '2018-12-05', 'louiwf42', '2007-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS444788972574', '周祖兒', 0, '+44 (121) 893 2158', 1, '982063428722984740', 'Flat 8, 467 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-09-27', 0, 0, 'chowcy', '2007-10-05', 'chowchoyee', '2002-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS507760083490', 'Edith Bryant', 1, '+1 212-164-2447', 2, '323483065542950872', '746 Canal Street Apt 32, New York, NY 10013, United States', '1988-04-09', 0, 0, 'edithb', '2021-09-10', 'edithb', '2017-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS702442830991', '松井葵', 0, '+44 5664 026259', 4, '462789436839589924', 'Block 22, 785 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-05-29', 0, 0, 'matsuaoi', '2003-03-15', 'aoi122', '2020-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS663711273526', '雷云熙', 1, '+1 330-516-7814', 1, '895197742689238127', '90 Ridgewood Road Apt 9, Akron, OH 44321, United States', '1996-12-30', 0, 0, 'yunxilei', '2014-12-11', 'ylei', '2005-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS740932902716', '孫慧珊', 1, '+1 213-888-1505', 3, '700976290928438327', '889 Figueroa Street Apartment 32, Los Angeles, CA 90037, United States', '1986-04-24', 0, 0, 'hsuanwaisan', '2011-12-05', 'hsuanwa', '2006-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS643518882442', '野村大輔', 1, '+86 163-6758-7469', 1, '129397870499363224', 'Room 25, CR Building, 43 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-01-20', 0, 0, 'dan', '2011-04-22', 'nd13', '2019-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS502584561371', 'Earl Vasquez', 0, '+81 66-903-8688', 2, '549880983211673145', '日本おおさかし東住吉区東田辺三丁目27番15号49階', '1988-11-09', 0, 0, 'vasquez328', '2007-10-03', 'vasquezearl', '2005-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS868336025695', '姚子韬', 0, '+81 90-8036-5995', 4, '878579955798097369', '日本なごやし熱田区千年二丁目5番19号17号室', '1985-11-23', 0, 0, 'zitaoyao2', '2020-04-02', 'yaozitao1', '2014-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS882014213193', '杨岚', 0, '+44 (151) 858 2641', 3, '169991598828107158', 'Flat 50, 747 Redfern St, Liverpool, L20 8JB, United Kingdom', '1993-11-30', 0, 0, 'lya63', '2004-07-24', 'yangla', '2021-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS505853610043', '何富城', 0, '+86 144-2188-6140', 3, '993329249085154691', '21F, 208 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-05-08', 0, 0, 'hofs', '2020-07-08', 'hofushing1009', '2005-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS417572133406', '徐俊宇', 0, '+86 137-4527-1395', 2, '783245442028732516', 'Room 18, CR Building, 881 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-07-09', 0, 0, 'chunyu305', '2009-11-17', 'cyts', '2010-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS355206786543', '渡辺陽菜', 0, '+81 3-1329-8775', 3, '374064906977182875', '37-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-12', 0, 0, 'sato99', '2019-02-03', 'satohina', '2008-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS287554461767', '蒋宇宁', 0, '+86 10-7560-1699', 4, '281513601329984385', 'No.34 building, 828 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-11-07', 0, 0, 'jiangyun', '2010-01-14', 'jyun', '2005-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS930515550420', '何梓軒', 1, '+1 312-682-7823', 1, '044222824270199229', '491 North Michigan Ave Apartment 34, Chicago, IL 60611, United States', '1998-10-09', 0, 0, 'ho1972', '2014-07-30', 'hotszhin', '2013-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS949205264381', '藤田一輝', 1, '+81 3-6055-1403', 1, '564556440736991585', '日本東京品川区東五反田五丁目2番1号29階', '1994-12-30', 0, 0, 'fujiikk214', '2009-08-19', 'ikkifu', '2014-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS200837271703', '福田桜', 0, '+44 5723 227024', 3, '210259213619891884', 'Flat 12, 539 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1990-01-28', 0, 0, 'sakurfukud9', '2000-04-10', 'fukusakura', '2000-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS317533522974', '郭晓明', 0, '+44 (161) 078 1621', 0, '145243058820955698', 'No.8 Main building, 740 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-02-28', 0, 0, 'gux', '2002-10-18', 'xiaoming717', '2014-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS922509047278', 'Matthew Roberts', 0, '+86 20-6775-9355', 3, '651862196671124990', '27F, 668 Xiaoping E Rd, Baiyun , Guangzhou, China', '1990-01-15', 0, 0, 'romat', '2010-04-25', 'matthewroberts', '2003-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS678214566384', 'Harry Sanders', 1, '+86 10-757-8778', 4, '030003184518889565', '中国北京市海淀区清河中街68号510号12号楼', '1998-09-26', 0, 0, 'sandharry2', '2010-11-12', 'sanders1984', '2019-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS595231794925', '史宇宁', 1, '+86 760-491-2274', 3, '188248584756960368', '中国中山天河区大信商圈大信南路145号5栋', '1998-12-17', 0, 0, 'shiyunin1950', '2000-06-12', 'shiy', '2010-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS517698629143', '蔣力申', 1, '+1 330-787-6861', 1, '369336461617866085', '239 Collier Road Suite 42, Akron, OH 44320, United States', '1998-10-12', 0, 0, 'chianliksun59', '2014-08-10', 'chiang1201', '2014-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS081530191909', '江惠敏', 1, '+1 330-418-6287', 1, '095313892065604264', '605 West Market Street Apartment 20, Akron, OH 44333, United States', '1986-06-17', 0, 0, 'waimankong', '2019-03-31', 'wmk', '2021-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS892049641082', '房裕玲', 1, '+1 614-243-7738', 1, '495477786136109747', '39 East Cooke Road Apt 31, Columbus, GA 43214, United States', '1987-01-22', 0, 0, 'yulingfong', '2002-05-16', 'ylfon', '2007-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS736938487660', '陈安琪', 1, '+81 11-678-3619', 2, '910863279781881825', '46F, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-05-15', 0, 0, 'anqich52', '2009-12-15', 'anqi1102', '2002-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS168286100747', '石田美羽', 0, '+86 28-0659-8998', 1, '816788641272161352', 'Room 6, CR Building, 431 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-02-14', 0, 0, 'miuishida', '2009-04-29', 'mishi4', '2017-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS433296395727', '姚杰宏', 1, '+86 144-0835-4506', 1, '020831575170909576', 'Room 6, 660 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-03-04', 0, 0, 'yjiehong', '2002-05-27', 'jiyao', '2019-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS833180926417', '曹曉彤', 0, '+81 70-6256-7097', 1, '477692668917290157', '日本おおさかし平野区加美東四丁目9番15号48号室', '1988-07-31', 0, 0, 'chiutung', '2007-07-08', 'choht', '2010-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS422636397708', '尹家文', 0, '+86 194-7827-3114', 2, '519326261819440350', 'No.50 building, 337 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-09-27', 0, 0, 'kamanyin', '2020-04-24', 'kmyin', '2000-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS258953097864', 'Thelma Griffin', 1, '+81 11-429-8643', 2, '166712206469626850', '7-kai, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-11-10', 0, 0, 'thelmagriff8', '2015-02-23', 'thelma2015', '2007-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS830639799437', 'Tiffany Romero', 1, '+81 66-087-6001', 3, '593356592317543500', '6-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-06-21', 0, 0, 'tiffanyrom', '2013-02-21', 'tromero7', '2020-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS084066624634', 'Judith Mills', 0, '+81 90-7416-0395', 3, '475708027396889232', 'Rm. 23, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-12-18', 0, 0, 'juditmills', '2020-09-18', 'milljudith7', '2017-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS238855016197', '湯富城', 1, '+81 52-323-2832', 0, '966190213870021413', '日本なごやし守山区瀬古東二丁目171番10号41号室', '1996-02-01', 0, 0, 'tonfs', '2018-06-01', 'tong1120', '2003-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS793204449028', '山口美咲', 1, '+81 74-572-0275', 2, '393645923239181171', '22F, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-06-29', 0, 0, 'misayamaguchi', '2019-06-14', 'ym7', '2010-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS676653340855', '邱志遠', 0, '+86 20-576-2454', 2, '855786477299888272', 'No.3 building, 731 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-03-13', 0, 0, 'cyyau1945', '2017-12-10', 'chiyuenyau7', '2021-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS628238501970', '陈秀英', 0, '+81 90-2325-6865', 3, '270391349559330367', '日本なごやし瑞穂区河岸町四丁目20番9号41階', '1990-01-23', 0, 0, 'xiuyingc', '2020-08-15', 'chex3', '2009-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS533729599966', '崔安琪', 1, '+81 11-816-0141', 1, '362380607222030512', '日本札幌白石区菊水三条五丁目2番8号40階', '1989-08-09', 0, 0, 'acu', '2003-10-05', 'anqicu216', '2009-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS207220968672', 'Juan Garza', 0, '+81 3-5585-0832', 1, '650697280159751018', 'Rm. 20, 1-6-19, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-09-12', 0, 0, 'garza8', '2018-02-20', 'jug4', '2007-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS786702086475', '彭宇宁', 0, '+81 80-3846-9425', 0, '862616886945052188', '日本おおさかし近江堂一丁目7番19号36階', '1993-04-19', 0, 0, 'pengyuning', '2015-02-27', 'yupeng', '2010-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS054737696806', '钱晓明', 0, '+81 52-881-2055', 4, '388064963935897340', '日本なごやし北区清水三丁目19番3号32階', '1987-03-20', 0, 0, 'qianxiaom', '2009-08-02', 'xqian', '2004-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS619480018711', '上野葉月', 1, '+1 212-755-2016', 1, '956039645901869412', '889 Wooster Street Apt 32, New York, NY 10012, United States', '1985-10-27', 0, 0, 'hazukiueno', '2019-02-20', 'uhazuki625', '2012-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS894138991703', '马秀英', 1, '+86 142-9013-7955', 1, '983147084177370310', 'Room 35, CR Building, 461 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-19', 0, 0, 'maxiuyi8', '2018-02-27', 'mxi4', '2022-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS932338802950', '高小慧', 0, '+81 11-498-6170', 4, '609588432874415114', '日本札幌清田区真栄四条五丁目19番10号28号室', '1986-12-19', 0, 0, 'swkao', '2002-01-28', 'swkao', '2015-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS177447388706', 'Ellen Nguyen', 0, '+44 5056 109301', 4, '074531547855561377', 'Unit 30, Oxford Eco Centre, 970 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-06-05', 0, 0, 'nguyee', '2013-03-03', 'ellennguy', '2021-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS451610129260', 'Clifford Sanders', 1, '+1 838-796-3636', 0, '526482257453222267', '584 State Street Suite 12, Albany, NY 12203, United States', '1994-09-24', 0, 0, 'clifford7', '2015-08-28', 'sacliff10', '2020-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS170433085253', '赵杰宏', 1, '+81 3-2728-4278', 4, '727602779683521955', '日本東京品川区東五反田五丁目2番13号27階', '1996-10-14', 0, 0, 'jiehong423', '2017-10-17', 'jiezhao', '2001-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS835777378873', '杉山蒼士', 1, '+81 70-4408-3449', 3, '867733668397653256', '日本東京千代田区丸の内一丁目6番2号20階', '1995-03-28', 0, 0, 'sugiyamaaoshi', '2015-05-16', 'saoshi1940', '2012-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS717384437124', '杜慧珊', 0, '+1 212-623-5269', 2, '301339508224099954', '76 Bank Street 3rd Floor, New York, NY 10014, United States', '1991-12-15', 0, 0, 'waisan5', '2012-03-02', 'waisan3', '2011-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS647643772073', 'Shawn Turner', 0, '+81 52-554-1808', 0, '036180313536756818', '日本なごやし瑞穂区河岸町四丁目20番12号38号室', '1990-01-22', 0, 0, 'turnershawn', '2011-12-07', 'turnes69', '2008-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS379904670160', '許慧嫻', 0, '+86 10-3715-7727', 1, '114682839084684315', 'Room 6, CR Building, 852 Sanlitun Road, Chaoyang District, Beijing, China', '1988-09-27', 0, 0, 'huiwh619', '2012-03-09', 'whh6', '2006-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS758292090408', '區榮發', 0, '+86 760-840-7817', 3, '658726633457705993', 'Room 16, CR Building, 697 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-08-23', 0, 0, 'wfau10', '2021-01-12', 'auwf', '2009-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS750568961404', '石井大輔', 0, '+44 5248 659174', 3, '717258113801195052', 'Block 34, 517 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-03-22', 0, 0, 'isdai', '2019-02-06', 'ishiida', '2001-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS802545798822', 'Victor Reed', 1, '+86 194-1658-5863', 4, '945171618451155579', 'No.28 building, 53 Sanlitun Road, Chaoyang District, Beijing, China', '1995-10-16', 0, 0, 'victorree', '2009-07-10', 'victor59', '2006-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS982282873292', '孟岚', 0, '+86 755-227-2068', 1, '256026854193136500', 'No.23 building, 696 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-15', 0, 0, 'lanm7', '2003-12-08', 'lan512', '2014-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS319099593811', '小川湊', 1, '+81 52-824-7165', 1, '904955687151298145', '日本なごやし北区楠味鋺三丁目80番2号21階', '1995-02-25', 0, 0, 'ogamina', '2001-06-14', 'ogawa2017', '2004-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS764337491518', '大野光', 1, '+1 330-945-3397', 3, '631679163303661030', '986 Fern Street Suite 2, Akron, OH 44307, United States', '1991-06-29', 0, 0, 'ono809', '2004-11-18', 'ho1203', '2012-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS610529193363', '汪杰倫', 1, '+81 70-0865-6832', 0, '053525055488434649', '日本なごやし北区楠味鋺三丁目80番13号16階', '1991-12-15', 0, 0, 'chwo', '2000-09-18', 'chiehlunwong1026', '2002-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS159957966134', '岡田七海', 0, '+81 70-6246-8590', 2, '391693282614619730', '日本東京品川区東五反田五丁目2番11号30階', '1996-02-23', 0, 0, 'nanami7', '2004-06-30', 'okadananami7', '2012-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS156978733495', '葉梓軒', 1, '+86 28-5670-1252', 1, '396642853141550700', '中国成都市成华区双庆路441号39号楼', '1986-02-16', 0, 0, 'tszhin9', '2009-08-11', 'thy919', '2015-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS044080502369', 'Judy Rice', 0, '+81 52-961-5477', 1, '349883918288785005', '9F, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-10-05', 0, 0, 'juri', '2010-04-07', 'ricejud04', '2019-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS133679116663', '孙震南', 0, '+81 70-7747-4761', 3, '953901146848325529', '日本札幌豊平区豊平三条十三丁目3番12号50階', '1997-12-26', 0, 0, 'zsun', '2012-10-23', 'sunzhennan5', '2000-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS384119260394', '史詩涵', 1, '+44 5116 263273', 4, '030334275635480336', 'Block 27, 714 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-07-20', 0, 0, 'shihanshi14', '2000-11-20', 'shihan701', '2005-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS884398473942', 'Alan King', 1, '+44 5196 332424', 1, '870502402188106773', 'Flat 39, 773 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-03-10', 0, 0, 'king79', '2002-08-09', 'kina', '2019-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS725513521948', 'Paula Green', 1, '+86 760-593-5106', 2, '456494318636427122', '中国中山紫马岭商圈中山五路796号7楼', '1986-03-25', 0, 0, 'pag218', '2000-07-09', 'pgr', '2011-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS192600838694', 'Norma Jenkins', 1, '+1 614-124-3250', 1, '385877524379588329', '961 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1993-09-01', 0, 0, 'normajen', '2005-11-01', 'norma1', '2010-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS891992883685', '廖浩然', 1, '+44 (1865) 37 8926', 2, '932423843477823287', 'Block 15, 765 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-02-01', 0, 0, 'liaohoyin9', '2001-12-23', 'liaohoyin', '2015-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS109630174555', '陳惠妹', 1, '+86 164-3794-2805', 2, '466035851588567442', '中国深圳罗湖区田贝一路613号华润大厦30室', '1993-04-22', 0, 0, 'chhuimei409', '2007-09-27', 'chanhm', '2002-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS609307970655', '藤原美緒', 1, '+86 760-1456-2491', 0, '591648975463777712', 'No.11 building, 63 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-05-28', 0, 0, 'fumi', '2007-07-02', 'mifujiwara', '2019-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS366688012016', '熊睿', 0, '+1 330-578-4574', 4, '416364232391998798', '380 Collier Road Apt 12, Akron, OH 44320, United States', '1994-02-22', 0, 0, 'rx71', '2000-02-04', 'rui5', '2013-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS200842870602', '清水桜', 1, '+44 7894 814684', 3, '117880786162757936', 'No.22 Main building, 69 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-12-12', 0, 0, 'shimizusakura', '2008-01-23', 'sakurashimizu', '2018-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS388638128077', '钟子异', 0, '+44 (161) 900 0582', 1, '262157191586760637', 'Flat 42, 272 Portland St, Manchester, M1 3LA, United Kingdom', '1987-08-12', 0, 0, 'ziyizhon1970', '2007-08-19', 'ziyi9', '2010-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS555022711516', '田德華', 0, '+86 28-788-3640', 1, '123298251899915250', '中国成都市成华区玉双路6号109号华润大厦34室', '1985-08-06', 0, 0, 'takwahtin', '2017-03-18', 'tintw', '2007-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS793043108679', 'Louis Mitchell', 0, '+86 175-4856-6979', 3, '113846453674461826', '1F, 391 Kengmei 15th Alley, Dongguan, China', '1989-08-12', 0, 0, 'louismitchell1978', '2018-10-06', 'mloui', '2000-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS209280774984', 'Martha Rogers', 1, '+86 157-8486-8107', 3, '184972533795333587', '中国北京市东城区东单王府井东街104号6号楼', '1995-12-07', 0, 0, 'maro', '2012-12-13', 'mr59', '2019-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS086626530898', '尹致远', 0, '+81 74-122-9586', 0, '586921430462222948', '49F, 3-9-17 Gakuenminami, Nara, Japan', '1985-04-23', 0, 0, 'yizhiyuan', '2006-05-28', 'yinzhiyuan129', '2016-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS571734156848', 'Kathryn Rice', 1, '+81 90-3219-0585', 1, '099794894194700097', '日本東京港区東新橋一丁目5番3号13階', '1990-07-20', 0, 0, 'ricekathryn', '2020-05-11', 'ricekat', '2017-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS006817942124', '文國明', 1, '+81 52-322-0529', 4, '095877854819065884', 'Rm. 9, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1999-02-20', 0, 0, 'kmman', '2009-10-10', 'mkm114', '2019-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS771619654905', '徐玲玲', 0, '+86 187-9582-4005', 4, '066599035034476365', '中国中山天河区大信商圈大信南路816号9室', '1995-02-02', 0, 0, 'linglingtsui', '2020-07-23', 'tsui49', '2007-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS509376770432', '邓安琪', 0, '+1 614-683-1446', 1, '033053358659899889', '398 Diplomacy Drive Suite 25, Columbus, GA 43228, United States', '1996-08-31', 0, 0, 'anqdeng', '2011-06-27', 'deanqi', '2001-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS807921329785', '西村海斗', 1, '+86 194-2895-8266', 1, '415747092623940988', 'No.15 building, 903 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1985-02-09', 0, 0, 'nka318', '2001-04-21', 'nishimura77', '2000-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS462975326373', 'Kathleen Morales', 0, '+81 74-797-7221', 2, '367292833340637549', '日本ならし大和郡山市本庄町一丁目1番10号26階', '1991-09-16', 0, 0, 'morales92', '2020-01-10', 'kmor', '2010-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS764363002841', '叶云熙', 1, '+81 52-873-6731', 3, '900158028314177964', 'Rm. 4, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-11', 0, 0, 'yy4', '2009-12-22', 'yeyunxi', '2007-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS231312298869', 'Julie Lewis', 1, '+1 213-191-3438', 0, '217744428509220153', '893 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-07-28', 0, 0, 'jl109', '2015-05-09', 'lewis513', '2021-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS244931978402', '苗裕玲', 1, '+81 80-8220-6475', 0, '891785956112643330', '27-kai, 2-1-19 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-05-23', 0, 0, 'miyuli', '2021-02-27', 'miu905', '2001-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS766312138944', '沈子韬', 0, '+86 139-2942-9621', 2, '785172807303732375', 'No.16 building, 673 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-03-12', 0, 0, 'zitaoshen02', '2002-01-30', 'shen707', '2009-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS499830935342', '何發', 0, '+81 66-046-3321', 1, '401080360239956705', '日本おおさかし近江堂一丁目7番6号47号室', '1988-06-07', 0, 0, 'hofat302', '2018-10-28', 'hofat', '2019-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS609033906018', 'Micheal Cruz', 1, '+81 52-197-0936', 1, '964443129575524558', '日本なごやし北区楠味鋺三丁目80番10号50号室', '1997-01-06', 0, 0, 'cruzmi', '2005-11-30', 'cruz9', '2013-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS970058413225', 'Marilyn Rose', 0, '+86 755-246-8179', 0, '120771188856279506', '中国深圳福田区景田东一街752号27栋', '1992-09-02', 0, 0, 'rose1', '2021-10-19', 'marilynrose', '2010-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS552424768643', 'Tracy Henry', 0, '+86 10-547-4562', 3, '702616044838570570', 'Room 23, CR Building, 648 Sanlitun Road, Chaoyang District, Beijing, China', '1994-11-29', 0, 0, 'henrytracy1', '2006-10-16', 'tracy6', '2004-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS186864590478', 'Edward Jordan', 1, '+81 90-6944-6435', 4, '050503797309276483', '22-kai, 1-6-4, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-07-01', 0, 0, 'jordae3', '2005-01-07', 'jordane', '2014-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS398895543963', 'Lillian Chavez', 1, '+81 80-2879-8973', 2, '454290769287904810', '日本札幌清田区真栄四条五丁目19番19号6階', '1996-11-07', 0, 0, 'cli90', '2017-05-07', 'lillchavez', '2009-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS071983603528', '谭晓明', 0, '+86 28-1150-6087', 3, '878492690954143293', '中国成都市成华区二仙桥东三路116号5栋', '1985-01-21', 0, 0, 'tanxiaoming422', '2011-08-25', 'xiaomingt96', '2005-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS952336413999', '高橋瑛太', 1, '+86 192-4238-4304', 2, '573825546339816995', 'Room 21, 747 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-11-18', 0, 0, 'taeit', '2012-10-08', 'eitatakah', '2007-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS799666307483', 'Bernard Hayes', 0, '+81 70-7995-1744', 1, '722892973004081091', '日本札幌白石区菊水三条五丁目2番3号1階', '1995-11-16', 0, 0, 'bernardh', '2018-01-19', 'hayesbe91', '2019-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS259647202737', '斎藤聖子', 1, '+1 614-281-9246', 3, '300785723885750719', '449 Wicklow Road Apartment 17, Columbus, GA 43204, United States', '1995-07-19', 0, 0, 'saitose', '2015-12-18', 'saito4', '2004-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS162021237331', '曹致远', 0, '+44 (1223) 61 9192', 3, '603212275446929862', 'Flat 48, 584 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-11-22', 0, 0, 'caozhiyuan1977', '2012-01-12', 'caozhiyuan309', '2019-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS202404461670', '钟子韬', 0, '+86 168-0477-8177', 1, '610577804817443831', '中国广州市越秀区中山二路970号37栋', '1995-01-23', 0, 0, 'zhonzita', '2015-05-10', 'zhongzit9', '2013-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS967139069276', '韓世榮', 0, '+44 (1223) 12 0673', 4, '421957509011818445', 'Unit 48, Oxford Eco Centre, 590 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-01-23', 0, 0, 'saiwinghan', '2005-01-19', 'han723', '2018-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS877387279550', '成德華', 0, '+86 142-1210-9878', 1, '076198247662337134', 'No.48 building, 423 Sanlitun Road, Chaoyang District, Beijing, China', '1996-04-25', 0, 0, 'twshi408', '2013-09-23', 'takwah7', '2008-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS309668012701', 'Grace Owens', 0, '+81 80-9274-1579', 0, '301256371280862521', '日本札幌豊平区豊平三条十三丁目3番6号49階', '1992-01-12', 0, 0, 'owgrace', '2000-10-09', 'graceowens', '2021-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS865103534616', '房青雲', 0, '+86 168-6480-6264', 1, '485195600889515252', '中国东莞东泰五街325号43栋', '1996-07-15', 0, 0, 'chingwan515', '2007-02-12', 'chingwan10', '2010-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS903008376672', '佐野美羽', 0, '+44 7196 105452', 2, '676470046057540294', 'Flat 11, 821 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-01-27', 0, 0, 'miusano', '2006-04-10', 'sanm', '2011-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS363543579721', '車俊宇', 0, '+81 66-650-4878', 3, '442764885829267971', '日本おおさかし東住吉区東田辺三丁目27番16号19階', '1987-04-14', 0, 0, 'chunyuch', '2001-06-19', 'ccy', '2010-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS790318165568', 'Clifford Vargas', 0, '+44 (1223) 17 8097', 1, '070085096288745972', 'Block 21, 28 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-05-16', 0, 0, 'cliffordv', '2005-12-17', 'vargas2', '2019-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS771839062279', 'Kim Cox', 0, '+81 11-577-2742', 0, '350567494370455471', '日本札幌白石区菊水三条五丁目4番7号14階', '1991-03-19', 0, 0, 'cox222', '2006-09-12', 'kimcox', '2007-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS863188735893', '原田陽菜', 0, '+1 213-391-5832', 2, '133528405063459205', '224 Alameda Street Apt 14, Los Angeles, CA 90002, United States', '1996-01-02', 0, 0, 'hharada', '2000-05-24', 'hinaharad', '2010-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS914992555144', '胡國榮', 0, '+44 7222 040640', 3, '854128014281239226', 'Flat 18, 535 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-01-04', 0, 0, 'kwokwing1947', '2009-09-27', 'wukwokw1001', '2006-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS706973314155', '黄秀英', 0, '+81 52-240-5724', 2, '017136344616674500', '7-kai, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-09', 0, 0, 'huangx', '2017-10-19', 'hux', '2009-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS806170228602', '马安琪', 0, '+86 179-4330-8647', 1, '969950568101093210', '42F, 376 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-05-26', 0, 0, 'maanqi51', '2016-06-02', 'anqma', '2018-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS275138055001', '羅國榮', 1, '+1 614-275-4903', 2, '612100260563585827', '410 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1996-06-11', 0, 0, 'kwokwinglo', '2020-04-22', 'kwokwinglo', '2003-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS324504355421', '長谷川陽太', 1, '+86 187-1015-0865', 2, '182926747128683965', '中国成都市成华区玉双路6号106号21栋', '1985-06-14', 0, 0, 'yotahas', '2004-08-30', 'hasegawa1011', '2021-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS078061506940', 'Ellen Lee', 1, '+81 90-9085-5387', 3, '775651789749687190', '日本なごやし熱田区千年二丁目5番4号13階', '1987-08-05', 0, 0, 'lee64', '2008-01-11', 'leeellen1', '2008-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS946954380690', '中川美緒', 1, '+81 3-3306-0408', 2, '012786132634472200', '日本東京中央区銀座三丁目12番1号4階', '1988-02-16', 0, 0, 'miona', '2020-05-01', 'mio56', '2013-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS394384495930', '田中舞', 0, '+81 3-0992-7218', 2, '886149821693609371', '日本東京品川区東五反田五丁目2番17号35階', '1989-12-18', 0, 0, 'tmai86', '2010-04-28', 'maitanaka1', '2009-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS906330795876', 'Gladys Moreno', 0, '+44 (1223) 68 0238', 0, '202682047999358943', 'Block 8, 549 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1985-11-10', 0, 0, 'morenoglady', '2012-06-10', 'gladys906', '2018-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS895434312029', '姚杰宏', 1, '+1 718-811-1702', 2, '992242064373220530', '232 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1994-10-25', 0, 0, 'jiehongyao8', '2010-12-17', 'yjiehong215', '2006-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS768317591821', 'Christina Nelson', 1, '+44 7334 376236', 2, '369926922754128372', 'No.38 Main building, 717 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1995-02-06', 0, 0, 'chrisnelson86', '2017-01-18', 'nec1212', '2011-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS025112890442', 'Brenda Moore', 1, '+86 10-3319-2802', 0, '440906086000923358', '中国北京市海淀区清河中街68号642号38栋', '1995-03-10', 0, 0, 'mbrend', '2000-09-14', 'brenda10', '2014-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS096795668447', '盧慧儀', 1, '+86 177-2890-8970', 1, '703272631902701696', 'Room 18, CR Building, 599 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-08-20', 0, 0, 'lowy621', '2009-04-16', 'lowy', '2005-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS570819384578', '姜學友', 1, '+1 312-773-3920', 1, '267546535059956419', '374 Pedway Apartment 19, Chicago, IL 60601, United States', '1998-08-03', 0, 0, 'hychan', '2004-01-20', 'hyc127', '2019-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS104639532466', '蔣榮發', 1, '+86 760-183-5638', 2, '493788414538314980', '5F, 81 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1985-12-31', 0, 0, 'wingfatchia', '2003-09-23', 'chiangwingfat815', '2006-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS141887228775', '郭頴思', 1, '+81 90-9831-0567', 1, '731295211304904329', 'Rm. 28, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-12-22', 0, 0, 'kwokws', '2001-03-27', 'wingszekwok', '2013-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS292379462248', 'April Taylor', 1, '+81 74-473-1181', 0, '338731344674094149', '33-kai, 3-9-19 Gakuenminami, Nara, Japan', '1987-12-04', 0, 0, 'tapril', '2016-11-28', 'taylorap', '2022-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS715865743877', '竹内蓮', 0, '+86 20-6160-3735', 3, '380440401727004972', 'No.41 building, 907 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-11-15', 0, 0, 'tren', '2020-01-24', 'takere1', '2020-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS833905226989', '千葉葵', 0, '+1 213-373-2784', 1, '064317026584303188', '228 Sky Way Suite 2, Los Angeles, CA 90043, United States', '1997-07-22', 0, 0, 'aochiba', '2007-05-13', 'chao83', '2011-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS711150682042', '田國明', 1, '+81 66-943-3673', 3, '782977520933437905', '日本おおさかし平野区加美東四丁目9番19号41号室', '1998-01-23', 0, 0, 'kwokming3', '2007-02-04', 'kwokmtin', '2008-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS795866812344', '千葉樹', 0, '+86 755-7587-7342', 3, '690539025932209579', '中国深圳罗湖区清水河一路897号13楼', '1993-05-31', 0, 0, 'chibaitsuk', '2003-03-04', 'chibaitsuki', '2018-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS120490056441', '甘梓晴', 1, '+44 (1223) 53 7918', 4, '959405990083992602', 'No.50 Main building, 522 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-09-30', 0, 0, 'katszching8', '2008-01-20', 'tckam', '2013-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS141742925018', '佐野陸', 1, '+1 212-257-5175', 1, '303809808490714255', '446 Wooster Street 3rd Floor, New York, NY 10012, United States', '1997-04-12', 0, 0, 'rikusano2', '2001-02-09', 'sano7', '2008-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS600177800803', '佐野明菜', 0, '+44 (151) 362 3631', 0, '364534274380530191', 'Flat 42, 855 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-11-21', 0, 0, 'akinas', '2008-09-25', 'akisan', '2002-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS086257918969', '廖俊宇', 0, '+86 143-4093-7290', 2, '483392870792285797', 'No.46 building, 36 028 County Rd, Yanqing District, Beijing, China', '1996-09-22', 0, 0, 'liaochu', '2008-10-31', 'cyliao', '2000-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS396267566750', '小島凛', 0, '+81 80-8358-5415', 4, '374299050261077876', '日本東京港区東新橋一丁目5番10号22階', '1990-10-20', 0, 0, 'rinkoj', '2001-01-14', 'rink', '2006-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS578682062689', 'Pauline Rose', 0, '+44 5643 261572', 2, '097159317738888105', 'Block 7, 638 Park End St, Oxford, OX1 1JD, United Kingdom', '1999-02-20', 0, 0, 'paulinerose3', '2009-08-10', 'pauline10', '2006-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS338964088202', '萬家明', 1, '+44 (151) 606 4685', 3, '873117457318115971', 'Block 33, 46 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-04-12', 0, 0, 'kmmeng', '2019-09-06', 'kaming65', '2004-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS197219531247', 'Rose Gardner', 0, '+81 74-916-6208', 0, '952946094551494988', '44F, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1997-08-29', 0, 0, 'rosegardner', '2001-06-08', 'rosegardner', '2002-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS709701262485', '吳國明', 1, '+44 (151) 988 3079', 0, '084878994137113790', 'Block 46, 543 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-04-15', 0, 0, 'kwokming1956', '2010-05-27', 'ngkwokming3', '2015-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS525400592772', 'Wanda Gomez', 1, '+86 755-474-5898', 1, '991984499217628570', 'No.14 building, 552 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-04-24', 0, 0, 'wgomez', '2004-10-12', 'gwanda', '2021-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS173570808331', '新井悠人', 0, '+86 132-1830-4686', 0, '367135391216068444', '中国广州市白云区机场路棠苑街五巷818号华润大厦28室', '1988-03-02', 0, 0, 'araiyut', '2013-06-03', 'aryuto', '2015-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS695377256167', '斎藤陸', 1, '+86 755-048-9983', 2, '782082777045867159', '中国深圳罗湖区蔡屋围深南东路238号14楼', '1993-12-06', 0, 0, 'riksaito', '2021-10-18', 'srik', '2002-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS674722966032', '田岚', 0, '+86 140-0303-1104', 4, '620407763401970305', '中国中山紫马岭商圈中山五路880号华润大厦42室', '1992-03-13', 0, 0, 'lantian812', '2012-02-14', 'tilan', '2004-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS025240869931', '廖璐', 0, '+81 80-7116-4216', 2, '246954043711221999', '22F, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-10-17', 0, 0, 'liaolu', '2000-12-08', 'lialu', '2013-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS364673295036', '田曉彤', 0, '+1 718-949-2636', 4, '167372039681124159', '402 Flatbush Ave Apt 22, Brooklyn, NY 11225, United States', '1993-03-18', 0, 0, 'hiututin9', '2015-12-04', 'hiutungtin', '2000-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS374900226942', 'Jeremy Munoz', 1, '+86 160-2388-6453', 2, '760932696926446521', 'No.11 building, 143 Huanqu South Street 2nd Alley, Dongguan, China', '1996-08-13', 0, 0, 'munozjeremy', '2017-06-26', 'jeremym', '2017-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS257882940413', '野口葉月', 0, '+1 718-931-3611', 1, '152223133411447202', '695 Nostrand Ave Apartment 41, Brooklyn, NY 11216, United States', '1995-05-21', 0, 0, 'hazun', '2016-06-13', 'hazunoguchi', '2016-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS053246913866', '方麗欣', 0, '+86 143-5514-0773', 0, '380762189249483347', '中国北京市西城区复兴门内大街230号50室', '1993-03-11', 0, 0, 'folai717', '2019-10-04', 'laiyf1976', '2010-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS350047632196', '中島陽太', 1, '+86 20-975-9119', 2, '307788524594628474', '中国广州市海珠区江南西路521号32室', '1996-03-07', 0, 0, 'nakajimayota1222', '2014-05-01', 'nakyot', '2003-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS681230042195', 'Jeffery Kelly', 1, '+86 21-3284-6886', 4, '876108004484903543', 'No.25 building, 323 Ganlan Rd, Pudong, Shanghai, China', '1991-01-13', 0, 0, 'kellyjeffery604', '2020-07-24', 'kellyjeffery', '2014-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS221797630992', '曹秀英', 0, '+81 52-626-1614', 2, '945479559299620569', 'Rm. 22, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1996-03-03', 0, 0, 'xiuying506', '2016-07-27', 'xiuyingcao', '2016-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS468044550123', 'Irene Hall', 0, '+86 170-1732-0111', 1, '079265097285169351', 'Room 15, 166 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-09-06', 0, 0, 'irenhall', '2003-09-25', 'ihal', '2000-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS736188647047', 'Ricky Schmidt', 1, '+44 (1865) 01 7293', 0, '664983887930386275', 'Flat 10, 855 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1994-07-13', 0, 0, 'rischmidt4', '2011-12-24', 'schmidt1994', '2005-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS190933889401', '中島湊', 1, '+1 312-330-5019', 4, '144414338364582053', '597 North Michigan Ave Apt 42, Chicago, IL 60611, United States', '1990-10-16', 0, 0, 'nakajima5', '2008-04-06', 'nakajimam', '2003-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS079445359231', '中野瑛太', 1, '+86 769-1848-5460', 3, '785631987102362948', '中国东莞坑美十五巷305号38楼', '1989-10-11', 0, 0, 'eitanakano318', '2005-06-30', 'nakanoei', '2001-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS659603114668', '尹心穎', 0, '+81 66-937-0491', 1, '330856273989974247', '日本おおさかし西成区出城一丁目1番16号41階', '1989-07-12', 0, 0, 'yin9', '2011-08-20', 'swyin06', '2013-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS351271464354', 'Laura Hayes', 0, '+86 20-459-8519', 2, '291307257185861368', '中国广州市天河区天河路334号35栋', '1995-10-13', 0, 0, 'hayeslaura1031', '2010-06-10', 'hl6', '2001-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS410101129174', 'Katherine Robertson', 0, '+81 3-0448-8269', 3, '093968972712350711', '日本東京中央区銀座三丁目12番16号17階', '1992-10-30', 0, 0, 'robertson5', '2011-01-24', 'robkatherine08', '2019-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS314113775073', '劉安娜', 1, '+81 90-4739-4665', 3, '090945998935047344', '日本ならし大和郡山市本庄町一丁目1番1号39階', '1996-02-28', 0, 0, 'onna405', '2013-08-17', 'lauon', '2000-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS389431126532', '向梓軒', 1, '+86 136-0122-2671', 2, '375276449173929473', '49F, 825 Binchuan Rd, Minhang District, Shanghai, China', '1989-12-26', 0, 0, 'tszhinheung', '2013-07-03', 'heutszhin', '2018-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS082111348544', 'Cynthia Grant', 1, '+44 7651 413815', 1, '628605098042690007', 'Flat 14, 710 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-07-05', 0, 0, 'cynthiagrant2', '2015-11-04', 'grancynt', '2008-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS495161975539', '何祖兒', 0, '+86 146-8026-1303', 1, '691010146233358034', '中国东莞坑美十五巷73号1室', '1996-06-18', 0, 0, 'choyeeho63', '2002-11-11', 'ho221', '2004-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS666093067393', '西村美月', 0, '+86 131-9516-5822', 1, '512561255372789412', '中国深圳福田区深南大道446号2楼', '1986-07-06', 0, 0, 'mitsukinishi408', '2003-10-04', 'nishimura906', '2013-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS834377505390', '陶秀英', 0, '+44 7952 663528', 4, '937164386236758828', 'Block 46, 863 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-08-07', 0, 0, 'taoxiuying2', '2014-04-26', 'tao3', '2000-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS763770929807', '许秀英', 0, '+44 7126 895098', 4, '919018093941185973', 'Unit 47, Oxford Eco Centre, 116 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-08-12', 0, 0, 'xiuyingxu', '2007-09-20', 'xiuying302', '2011-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS496231112250', 'Travis Hamilton', 1, '+86 21-1788-5648', 1, '818883259997127155', 'No.36 building, 284 Middle Huaihai Road, Huangpu District, Shanghai, China', '1992-07-31', 0, 0, 'hamiltontra', '2000-12-22', 'hamiltontravi67', '2001-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS191219485460', '阎致远', 1, '+44 (151) 442 0434', 4, '761884275100165567', 'Flat 48, 530 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-07-26', 0, 0, 'zhiyuan7', '2008-06-14', 'yazhi', '2019-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS241153119662', '野村陽太', 1, '+1 330-926-1147', 1, '027350824403243686', '377 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1997-01-18', 0, 0, 'nomura2', '2010-10-24', 'yota62', '2020-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS141526152680', 'Mike Evans', 0, '+81 11-994-7215', 1, '813326318217192963', '30-kai, 5-19-11 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-08-21', 0, 0, 'mikevan', '2002-10-13', 'mikeevans', '2013-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS207982841304', '田中蒼士', 0, '+81 90-6982-6302', 2, '062634794362772661', '日本東京千代田区丸の内一丁目6番14号47階', '1986-02-17', 0, 0, 'aoshitanaka', '2017-12-13', 'aoshitanaka828', '2010-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS563416478912', '魏璐', 1, '+1 330-264-0393', 3, '445229351011732020', '192 West Market Street Apartment 26, Akron, OH 44333, United States', '1997-05-22', 0, 0, 'luw', '2009-01-14', 'luw', '2009-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS682186884085', '應梓軒', 0, '+44 (1223) 90 0081', 1, '375166140360875410', 'Unit 3, Oxford Eco Centre, 839 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-06-10', 0, 0, 'ytszhin', '2014-08-14', 'tszhin1991', '2008-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS430039734900', '福田光', 0, '+81 11-073-5581', 3, '384093932270121839', 'Rm. 27, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-01', 0, 0, 'fukudahikaru', '2013-06-07', 'fhi', '2000-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS631599155950', 'Eddie Griffin', 1, '+81 70-6022-8598', 2, '012277386201305646', '50-kai, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1995-10-06', 0, 0, 'griffineddie', '2020-07-01', 'eddiegri', '2020-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS372715567640', '徐詩君', 1, '+81 80-8835-7472', 3, '643757676578089439', '日本ならし学園南三丁目9番11号38階', '1997-07-27', 0, 0, 'tsuisk', '2017-02-16', 'szekwantsui', '2020-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS526922935243', '韩岚', 1, '+1 718-126-0369', 3, '501439702737592088', '417 Flatbush Ave Apartment 48, Brooklyn, NY 11225, United States', '1992-11-11', 0, 0, 'halan', '2020-07-04', 'lanhan116', '2003-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS762359130504', '宣麗欣', 1, '+44 7925 091339', 2, '193587151226069297', 'Unit 34, Oxford Eco Centre, 144 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-08-01', 0, 0, 'hsuanlaiyan', '2006-06-22', 'laiyanhsua', '2020-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS163755926345', 'Debra Murray', 1, '+86 188-9849-9538', 1, '421859888337919315', 'No.3 building, No. 372, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-01-12', 0, 0, 'murdebra', '2018-08-30', 'murrd', '2012-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS295667719512', 'Heather Russell', 0, '+86 28-358-5766', 0, '864052017687636972', '中国成都市成华区玉双路6号271号48栋', '1985-08-02', 0, 0, 'russell413', '2002-08-30', 'heather10', '2012-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS290010757052', '夏晓明', 1, '+1 213-426-1333', 1, '334293634076190009', '775 Alameda Street Apartment 27, Los Angeles, CA 90002, United States', '1988-09-06', 0, 0, 'xia19', '2016-08-07', 'xiaxiaoming7', '2014-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS317878940778', '劉頴璇', 1, '+81 70-0917-0317', 2, '340424416178539998', '日本東京品川区東五反田五丁目2番2号5号室', '1991-07-25', 0, 0, 'wsl', '2000-05-30', 'lauws', '2004-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS722312666570', 'Florence Stephens', 0, '+1 330-412-9163', 2, '519462434026121370', '976 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1998-07-10', 0, 0, 'fstephens', '2017-09-05', 'sflorence', '2013-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS275977073679', '田淑怡', 1, '+86 20-2895-7697', 0, '734872367706074567', '中国广州市白云区小坪东路395号40楼', '1996-06-11', 0, 0, 'sukyeeti', '2006-05-07', 'sukyee531', '2012-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS294725972486', 'Lee Gutierrez', 1, '+81 70-4248-3217', 3, '488279253563634496', '18-kai, 2-5-9 Chitose, Atsuta Ward, Nagoya, Japan', '1998-06-30', 0, 0, 'leegutierrez', '2009-09-18', 'gutierrezlee3', '2006-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS391790200187', 'Alexander Martin', 1, '+44 (161) 670 6510', 3, '286220693295538119', 'Flat 28, 336 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1995-08-16', 0, 0, 'alm1996', '2019-09-29', 'martin62', '2022-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS905759319657', 'Andrew Allen', 0, '+44 5663 162535', 1, '243045527621590517', 'Block 32, 466 Portland St, Manchester, M1 3LA, United Kingdom', '1986-11-27', 0, 0, 'aallen4', '2014-05-15', 'allen1994', '2010-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS659602909105', 'Luis Taylor', 0, '+44 5906 494583', 3, '949404853559994314', 'No.43 Main building, 304 Pollen Street, London, W1S 1NG, United Kingdom', '1998-12-29', 0, 0, 'taylol4', '2006-01-04', 'taylor94', '2004-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS863731841923', 'Bryan Harris', 0, '+81 66-570-0738', 3, '802977628482838267', '46-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1993-10-04', 0, 0, 'harbr', '2015-06-15', 'brharris', '2014-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS986238476062', '長谷川詩乃', 0, '+81 90-6021-4334', 2, '525735688836687855', '29F, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-08-07', 0, 0, 'hasegawa5', '2017-09-07', 'shinoha', '2000-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS502825230300', '汪玲玲', 0, '+1 718-051-4677', 1, '836152095193745043', '337 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1988-09-07', 0, 0, 'llwo1123', '2008-11-19', 'linglingwong5', '2002-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS592323944025', 'Ernest Meyer', 0, '+44 5823 261123', 2, '583898127099641187', 'Flat 26, 777 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-06-19', 0, 0, 'meyere225', '2015-02-09', 'meyeernest', '2004-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS847712191805', '鄧世榮', 1, '+81 3-9580-9602', 3, '971517115848117340', '30F, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-04-10', 0, 0, 'tang118', '2020-06-04', 'tang10', '2011-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS868148681127', '中村詩乃', 1, '+86 769-227-4721', 1, '931441259812386807', 'No.30 building, 902 Shanhu Rd, Dongguan, China', '1992-04-09', 0, 0, 'shin518', '2000-09-06', 'nakamura2012', '2010-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS130319794743', '曾志遠', 1, '+1 614-069-9459', 1, '132451036635145031', '142 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1986-06-18', 0, 0, 'tsangchiyuen', '2020-07-22', 'tsang4', '2021-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS147989820511', '潘岚', 1, '+81 52-985-2702', 2, '661744681965095759', '日本なごやし守山区瀬古東二丁目171番11号49階', '1997-12-13', 0, 0, 'panla1967', '2018-02-26', 'pl226', '2014-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS074124165709', '田朝偉', 0, '+81 74-686-2677', 1, '545672908039803316', '日本ならし学園南三丁目9番20号30階', '1985-01-11', 0, 0, 'tcw04', '2006-10-11', 'cwt1207', '2018-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS782099280386', '西村絢斗', 0, '+81 52-564-4384', 2, '237527431875634174', '30F, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1990-07-01', 0, 0, 'an9', '2001-06-03', 'ayatonishimura6', '2009-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS091927992879', '岡田陽菜', 0, '+86 131-4445-2399', 3, '706889430871217562', 'Room 31, 653 028 County Rd, Yanqing District, Beijing, China', '1991-06-19', 0, 0, 'ohi', '2017-03-19', 'ohina', '2018-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS225138167012', '容頴璇', 0, '+81 66-935-8759', 4, '752704411349839276', '22-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-05-11', 0, 0, 'wsyung', '2016-01-31', 'yungwing518', '2009-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS063681315000', '野村陽菜', 0, '+1 718-158-6577', 0, '616544291780820533', '411 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1994-03-02', 0, 0, 'nhina57', '2014-12-17', 'nhin4', '2009-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS595242831151', '文國權', 1, '+86 146-0511-8004', 0, '768736010310376476', '38F, 431 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-04-27', 0, 0, 'mankk', '2015-08-02', 'kwokman', '2019-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS063077822137', '張永權', 1, '+86 142-1132-1143', 3, '538214723727496456', '中国中山乐丰六路38号24栋', '1988-09-05', 0, 0, 'cheungwingkuen', '2001-05-22', 'cheung3', '2002-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS348629904434', '戴榮發', 1, '+86 21-104-9720', 2, '344967705226490194', 'Room 16, 300 Ganlan Rd, Pudong, Shanghai, China', '1993-06-09', 0, 0, 'wingfatdai', '2012-03-15', 'dawingfat', '2019-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS396793451399', '袁惠妹', 0, '+81 11-814-5000', 1, '353792157839450710', '25-kai, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-01-07', 0, 0, 'yuenhuimei1028', '2012-09-16', 'yuenhm', '2014-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS922375441206', '丁嘉伦', 0, '+86 760-4044-1217', 3, '231433380584299492', '中国中山紫马岭商圈中山五路321号17栋', '1995-01-09', 0, 0, 'ding9', '2000-02-05', 'jialund', '2001-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS777819676609', '大塚大輔', 1, '+1 213-199-1122', 1, '268652007694025947', '33 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1989-11-14', 0, 0, 'otda2', '2003-05-02', 'otsdaisu', '2020-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS566761803386', 'Thelma Jones', 1, '+86 760-269-4829', 4, '547694470416080675', '中国中山天河区大信商圈大信南路118号39栋', '1988-05-21', 0, 0, 'thelmj10', '2011-06-01', 'jonesthelma', '2021-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS328799312671', '馮發', 1, '+81 70-1211-3363', 1, '260326687412771959', '日本おおさかし西成区天神ノ森二丁目1番4号24階', '1989-02-04', 0, 0, 'ff10', '2017-02-06', 'fung5', '2007-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS530922943159', '甘梓軒', 0, '+81 90-1146-3609', 4, '162227856689183882', '日本東京品川区東五反田五丁目2番9号34階', '1987-08-10', 0, 0, 'tszhkam', '2006-06-24', 'kamth', '2015-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS394308159643', '尹安娜', 1, '+86 21-311-5188', 3, '867247208845658923', '中国上海市浦东新区橄榄路538号14栋', '1994-07-07', 0, 0, 'yinonna', '2007-02-20', 'ony5', '2021-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS415155200214', '張慧儀', 0, '+1 330-374-6241', 3, '256272838076442918', '991 West Market Street Apartment 40, Akron, OH 44333, United States', '1997-09-20', 0, 0, 'wacheung', '2006-09-11', 'cheunwy', '2009-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS549743450867', '薛惠敏', 0, '+1 718-352-4203', 1, '392348065256866087', '740 Flatbush Ave Suite 7, Brooklyn, NY 11225, United States', '1998-08-10', 0, 0, 'wmsi1017', '2020-06-12', 'sitwaiman', '2000-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS088289191850', '赵安琪', 0, '+44 5615 772383', 3, '571309251869578915', 'No.43 Main building, 970 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-07-08', 0, 0, 'zanqi', '2021-10-06', 'zhaoanqi', '2013-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS975229996065', '長谷川瑛太', 1, '+81 52-617-1110', 2, '494315964945897871', '37F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1996-08-22', 0, 0, 'ehasegawa3', '2013-02-18', 'hasee', '2019-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS339873518261', 'Sara Diaz', 1, '+81 66-955-0805', 0, '846499393651128394', '36F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-05-17', 0, 0, 'saradiaz', '2000-08-17', 'diazsar', '2015-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS407685207306', '蔡子异', 1, '+86 190-8398-3039', 2, '216911243757215545', 'Room 30, CR Building, 20 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-03-23', 0, 0, 'ziyic', '2003-10-04', 'cai503', '2018-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS935429186555', '大野大輔', 1, '+86 149-9199-0903', 3, '502725786305533138', '中国北京市朝阳区三里屯路37号华润大厦26室', '1985-03-10', 0, 0, 'daison4', '2000-11-11', 'daono208', '2000-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS346048530297', 'Ernest Spencer', 0, '+81 70-1247-7192', 2, '208776864351426169', '19-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-11-28', 0, 0, 'ernestspe', '2021-07-05', 'ernestspencer67', '2002-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS001755836241', '崔致远', 1, '+81 3-0555-4814', 2, '532595381299070533', 'Rm. 24, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1993-03-13', 0, 0, 'cui115', '2017-06-18', 'czhiyuan815', '2014-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS971486155479', '伍杰倫', 0, '+86 145-3064-5484', 2, '938291552145060127', '中国中山乐丰六路494号34楼', '1987-06-20', 0, 0, 'chiehlunng', '2001-01-27', 'clng', '2019-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS059791570588', '馮慧嫻', 0, '+44 (151) 010 5431', 3, '060448420816683914', 'Unit 24, Oxford Eco Centre, 796 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-02-25', 0, 0, 'wafung', '2003-04-03', 'whfung99', '2015-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS151102468893', '罗杰宏', 0, '+86 182-7718-1540', 4, '506751844877805804', '中国深圳龙岗区学园一巷78号35号楼', '1989-11-21', 0, 0, 'luo5', '2009-11-10', 'jiehong229', '2013-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS026265895608', '劉天榮', 1, '+44 7293 482380', 3, '233297501466768186', 'Block 41, 550 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-07-22', 0, 0, 'lautinwing', '2012-08-23', 'twla514', '2008-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS922576366625', 'Cheryl Snyder', 0, '+81 70-0974-3232', 3, '188832477590678659', '18-kai, 3-9-13 Gakuenminami, Nara, Japan', '1988-02-24', 0, 0, 'csnyder', '2009-04-28', 'cherysnyder', '2013-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS642414722936', '太田舞', 0, '+86 28-081-8907', 4, '040287492139897600', '3F, 539 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-12-14', 0, 0, 'mao1973', '2000-12-04', 'otmai', '2013-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS246268507042', '宮本愛梨', 1, '+86 159-4308-4331', 1, '583885690681116929', '中国成都市成华区双庆路734号30楼', '1988-04-18', 0, 0, 'mairi', '2005-01-26', 'airi02', '2021-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS394950635543', '袁惠妹', 0, '+44 (161) 613 7387', 3, '531158649424439386', 'No.19 Main building, 577 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1997-08-19', 0, 0, 'yuenhuimei4', '2017-03-30', 'yuehui', '2005-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS127753741154', '黄致远', 1, '+81 70-5881-1926', 1, '463172904494218508', '日本札幌豊平区豊平三条十三丁目3番11号14号室', '1992-08-18', 0, 0, 'huzhi9', '2006-11-22', 'hzhiyuan80', '2008-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS727362910815', '黃朝偉', 0, '+86 190-4446-7038', 1, '497079241286487170', '13F, 713 Dongtai 5th St, Dongguan, China', '1986-09-30', 0, 0, 'wongchiuwai', '2005-03-18', 'wchiuwai901', '2005-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS968750349497', '官朝偉', 0, '+81 11-167-1790', 2, '716219080408960146', '4-kai, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-28', 0, 0, 'kchiuwai', '2017-04-13', 'koocw', '2020-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS386229621483', '柴田紗良', 0, '+44 5431 868519', 3, '627795807782223573', 'Unit 44, Oxford Eco Centre, 222 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-04-06', 0, 0, 'sarashibata', '2016-05-26', 'shibatasara', '2021-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS724385249863', '岩崎大地', 0, '+86 182-6332-1952', 1, '548002758695138651', '中国东莞珊瑚路832号31楼', '1988-07-19', 0, 0, 'daichi41', '2012-07-30', 'idaic', '2009-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS468231068020', '劉永權', 1, '+1 614-556-5815', 0, '354946107554577400', '569 Wicklow Road Apartment 45, Columbus, GA 43204, United States', '1996-07-30', 0, 0, 'lau00', '2015-08-09', 'wingkuenlau', '2005-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS040285293967', '苗淑怡', 0, '+81 66-638-6223', 3, '002789150733186602', '15-kai, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1988-11-20', 0, 0, 'miu201', '2000-05-18', 'sukyeem', '2012-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS998484411132', '顾震南', 0, '+81 11-251-7820', 1, '938964239312266843', '45F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-12-26', 0, 0, 'zhengu', '2012-11-06', 'gzhennan10', '2014-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS060841497645', '佐野美月', 0, '+81 3-4154-0087', 1, '035187757916900554', '日本東京中央区銀座三丁目12番9号42号室', '1985-02-06', 0, 0, 'mitsuki1942', '2001-04-29', 'mitsukisano', '2005-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS562866618996', 'Hazel Alvarez', 0, '+44 7984 437363', 1, '347580951502699826', 'No.39 Main building, 624 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-09-18', 0, 0, 'hazelal5', '2000-03-30', 'alvarez93', '2009-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS586819955605', '向安琪', 0, '+81 70-6606-5003', 1, '524096297530583399', '31-kai, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1988-03-15', 0, 0, 'anqix', '2017-08-08', 'xia', '2019-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS505300215533', '郭睿', 1, '+1 718-158-8442', 1, '088978006938548923', '706 Nostrand Ave Apt 28, Brooklyn, NY 11216, United States', '1988-03-28', 0, 0, 'rgu', '2016-04-09', 'rui4', '2015-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS351368603547', '坂本光', 0, '+86 196-8781-5290', 2, '782605325346916133', '中国北京市海淀区清河中街68号461号41栋', '1985-03-31', 0, 0, 'shi', '2005-05-08', 'sakamotoh43', '2021-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS977357639520', '池田陽菜', 0, '+44 5987 255199', 2, '027748977260083089', 'Flat 4, 896 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-09-11', 0, 0, 'hinikeda1107', '2000-05-02', 'hikeda', '2013-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS897740525270', '蔡志明', 1, '+1 330-167-9347', 0, '238528176881579238', '440 Ridgewood Road Apartment 41, Akron, OH 44321, United States', '1996-11-30', 0, 0, 'chimichoi', '2018-10-03', 'ccm', '2000-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS410001073303', 'Rebecca Barnes', 0, '+1 614-010-5416', 3, '034508590876806192', '645 Tremont Road Apt 28, Columbus, GA 43212, United States', '1996-02-10', 0, 0, 'rebecca207', '2015-12-17', 'rebebarnes', '2006-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS385438376915', '田中美月', 1, '+44 (151) 572 9123', 4, '058591190556840019', 'Unit 31, Oxford Eco Centre, 324 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-10-12', 0, 0, 'mt6', '2000-01-20', 'tmitsuki3', '2005-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS511609300339', '陶詩涵', 1, '+86 21-8693-9095', 1, '945144511753654314', '中国上海市闵行区宾川路924号22楼', '1992-03-13', 0, 0, 'stao42', '2011-07-05', 'shihan2', '2018-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS468654502757', '邵秀英', 1, '+86 186-5971-2141', 0, '802910155201232316', '中国北京市西城区复兴门内大街982号21栋', '1993-02-09', 0, 0, 'shaoxi', '2020-10-05', 'sxiuy', '2010-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS158233150936', '徐德華', 1, '+81 11-130-5713', 3, '658870975115913017', '日本札幌清田区真栄四条五丁目19番9号11号室', '1986-09-12', 0, 0, 'twtsui', '2011-02-07', 'twtsui92', '2018-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS136949471998', 'Troy Grant', 0, '+1 312-168-5338', 3, '915011743593494366', '23 Pedway Apt 49, Chicago, IL 60601, United States', '1994-03-07', 0, 0, 'troy1985', '2009-06-24', 'troy9', '2018-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS561378532999', '原拓哉', 0, '+44 7055 211240', 4, '292456576795857159', 'Flat 41, 653 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-01-09', 0, 0, 'thara', '2002-04-15', 'haratakuya', '2008-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS211935019005', '任青雲', 0, '+86 755-745-9772', 2, '664363121973835149', '中国深圳罗湖区蔡屋围深南东路451号32楼', '1995-10-06', 0, 0, 'yamchingwan9', '2008-11-01', 'cwyam', '2016-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS802943900507', '郭家文', 1, '+81 11-290-8660', 3, '974202958475217789', '16-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-06-23', 0, 0, 'kamankwok1991', '2020-12-02', 'kwokkaman', '2002-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS154747412605', '钟致远', 1, '+1 312-307-0870', 2, '970399610321639457', '833 Rush Street Apt 8, Chicago, IL 60611, United States', '1985-12-09', 0, 0, 'zhong2007', '2016-04-28', 'zhiyuz', '2001-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS324731666043', '叶致远', 1, '+44 (1223) 54 5010', 3, '664130717240407393', 'Flat 7, 769 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-04-03', 0, 0, 'zye10', '2002-04-08', 'ye1971', '2006-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS462649524537', '斎藤涼太', 1, '+81 70-6636-9465', 3, '793378849150250819', '日本おおさかし平野区加美東四丁目9番19号44号室', '1985-04-04', 0, 0, 'ryotasaito1207', '2001-12-22', 'sryota1985', '2006-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS913433467631', '近藤明菜', 1, '+44 5262 047375', 1, '608961556574156914', 'Flat 13, 929 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-07', 0, 0, 'kondoa', '2020-09-02', 'akina63', '2017-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS738682094681', '池田悠人', 1, '+81 70-9712-7576', 1, '967827195805715697', '21F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-04', 0, 0, 'yutoike', '2004-09-23', 'yike', '2002-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS552798636908', '楊慧珊', 1, '+81 70-0190-0937', 1, '964041946226116569', 'Rm. 22, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1997-10-15', 0, 0, 'yeungwaisan', '2006-05-13', 'wsy', '2009-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS312353059334', 'Vincent Henderson', 0, '+86 760-921-3302', 3, '989636951231811019', 'Room 19, CR Building, 489 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-07-03', 0, 0, 'vhen', '2006-09-20', 'hendersonvince6', '2011-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS328771774846', '山田大地', 1, '+86 760-6857-4386', 1, '053261644066581494', '中国中山紫马岭商圈中山五路490号44室', '1993-12-17', 0, 0, 'yamadadaichi', '2004-08-25', 'dyamada', '2009-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS488245762713', '孙宇宁', 0, '+81 11-351-2534', 2, '930977155661230316', '日本札幌白石区菊水三条五丁目4番19号9階', '1996-10-10', 0, 0, 'yuningsu', '2010-01-30', 'yuning1997', '2018-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS325172525778', 'Bobby Stone', 1, '+81 70-2854-8949', 2, '340917538820050886', '3-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1993-10-26', 0, 0, 'bst1', '2019-11-13', 'sbobby', '2001-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS829637591020', '谭睿', 1, '+86 20-016-7173', 0, '688430639408886285', '中国广州市白云区小坪东路26号华润大厦42室', '1985-03-28', 0, 0, 'tan620', '2014-07-05', 'tan2', '2018-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS443082646929', '蒋云熙', 0, '+86 132-8573-7255', 1, '693509294776816159', 'Room 28, 768 Kengmei 15th Alley, Dongguan, China', '1998-05-21', 0, 0, 'yunxijiang2', '2003-10-25', 'yunxijian', '2000-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS498835792341', 'Marilyn Ramirez', 1, '+81 90-3145-2542', 3, '819558654492729142', '37-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-03-16', 0, 0, 'ramirez45', '2020-04-30', 'marilramir1976', '2019-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS960016799504', '増田樹', 0, '+86 130-8378-5761', 3, '832843625470233482', '20F, No. 225, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-03-12', 0, 0, 'itmasuda1103', '2005-06-24', 'itsuki803', '2012-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS553575570704', 'Michelle Olson', 0, '+81 80-7659-8766', 2, '352964636026341342', '日本なごやし熱田区千年二丁目5番20号41号室', '1992-10-07', 0, 0, 'micholson', '2000-04-04', 'olsonmiche', '2015-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS075290332661', 'Maria Mcdonald', 0, '+81 80-8266-8348', 3, '820534568609853518', '27F, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1988-11-14', 0, 0, 'mcdonaldmar13', '2006-12-14', 'mcdonald11', '2018-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS798080383352', 'Betty Spencer', 1, '+81 52-338-1481', 2, '196279030464717043', '34F, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1995-09-24', 0, 0, 'betty1013', '2010-10-14', 'betty1969', '2018-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS445333452530', '西村光莉', 1, '+86 769-980-8138', 0, '046641873532697122', 'Room 49, CR Building, 844 Shanhu Rd, Dongguan, China', '1998-03-04', 0, 0, 'nishimurah', '2005-06-08', 'hikari3', '2019-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS039748292624', 'Sarah Brooks', 1, '+86 143-1135-9280', 4, '550790893194501950', '中国上海市浦东新区健祥路704号38号楼', '1993-02-06', 0, 0, 'sarahbrooks', '2014-07-27', 'brookssarah9', '2015-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS412756370364', 'Lisa Alexander', 1, '+44 (1865) 13 9416', 1, '843020878807049447', 'Unit 17, Oxford Eco Centre, 79 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-12-21', 0, 0, 'lalexander5', '2002-10-23', 'alexanderlis', '2000-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS477001102233', '方世榮', 1, '+86 760-9222-7524', 3, '487785085257933103', '中国中山紫马岭商圈中山五路740号4栋', '1989-06-25', 0, 0, 'fsw49', '2008-06-04', 'fong602', '2018-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS490271938749', 'Chris Gardner', 1, '+81 11-759-7909', 1, '462022980914650764', '32-kai, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-10-24', 0, 0, 'gardnerc708', '2010-09-09', 'garc', '2020-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS698517449527', '呂秀文', 1, '+86 28-7682-3682', 1, '461617965093615300', '中国成都市成华区玉双路6号838号华润大厦21室', '1992-03-21', 0, 0, 'saumanlui', '2008-10-28', 'smlu', '2008-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS211306330982', '郭永發', 1, '+81 90-4230-2671', 2, '524432970358618160', '45F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-10-18', 0, 0, 'kwok1998', '2003-10-06', 'kwwingfat', '2015-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS411642576508', '余宇宁', 0, '+81 80-4920-5586', 1, '800016653277783713', '42-kai, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-04-18', 0, 0, 'yuningyu', '2018-05-09', 'yuyu', '2014-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS405356075527', '高木美月', 1, '+81 70-6229-5620', 2, '642899192583563376', '日本なごやし北区楠味鋺三丁目80番10号22階', '1992-05-12', 0, 0, 'mitsukit503', '2012-04-03', 'takmits', '2017-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS215803985119', '原美月', 1, '+86 21-693-6150', 1, '671528913844556194', 'Room 48, CR Building, 153 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-01-06', 0, 0, 'mh2', '2010-08-28', 'mihara', '2018-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS684807441052', '何子异', 0, '+1 838-604-4122', 4, '240957740473234729', '244 Central Avenue Apt 44, Albany, NY 12206, United States', '1995-03-06', 0, 0, 'hziyi51', '2008-12-18', 'he95', '2003-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS710572287982', 'Rebecca Stevens', 1, '+86 755-8541-4017', 2, '233297372072871856', 'No.10 building, 717 Shennan Ave, Futian District, Shenzhen, China', '1985-02-09', 0, 0, 'rebeccaste6', '2013-01-31', 'stevens03', '2013-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS120528697070', 'Marie Rogers', 0, '+86 195-8202-2875', 1, '589498595463587288', 'Room 2, 201 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-04-22', 0, 0, 'marie7', '2016-02-13', 'rogers7', '2003-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS281548360633', '桜井桜', 1, '+86 21-3595-9666', 1, '923847404015898083', '43F, 365 Binchuan Rd, Minhang District, Shanghai, China', '1988-10-31', 0, 0, 'ssakura', '2011-01-03', 'saks', '2017-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS029576489035', 'Kenneth Richardson', 0, '+81 80-5433-0244', 0, '464774941721525103', '日本ならし大和郡山市本庄町一丁目1番19号46階', '1988-07-03', 0, 0, 'richardson1001', '2014-10-17', 'richardsonkenn53', '2014-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS930277814432', '加藤大和', 0, '+1 213-496-0255', 3, '648627390737709992', '191 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1994-06-15', 0, 0, 'ykato1957', '2019-06-26', 'yk6', '2002-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS094993839012', '程杰宏', 0, '+81 52-571-2113', 0, '126993484052830770', '37F, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1996-12-21', 0, 0, 'chengjieho97', '2001-07-15', 'chejieh', '2006-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS142501621520', 'Shirley Grant', 0, '+44 (151) 646 8305', 1, '187857856992729430', 'Block 15, 740 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-04-28', 0, 0, 'shigrant', '2019-01-31', 'shirleygra', '2008-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS771371281258', '钱震南', 1, '+81 70-9596-8008', 2, '967284025675110942', '日本東京千代田区丸の内一丁目6番5号42階', '1991-07-02', 0, 0, 'qizhennan', '2013-08-31', 'qian101', '2017-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS505034009682', 'Lois Hicks', 0, '+1 212-841-7342', 1, '966086050070251175', '863 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-06-14', 0, 0, 'hicksl1101', '2017-09-16', 'lois5', '2000-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS270350364847', '于云熙', 1, '+1 330-309-6047', 0, '381459174347814552', '474 Collier Road Apartment 37, Akron, OH 44320, United States', '1991-08-07', 0, 0, 'yuyu', '2013-12-04', 'yu1', '2009-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS354610222910', '宋宇宁', 0, '+44 (151) 366 3016', 0, '872265588536058604', 'Block 50, 795 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-04-18', 0, 0, 'songyu102', '2012-06-04', 'songyun', '2001-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS185016791321', '村田葵', 0, '+86 10-173-0418', 3, '735690332943344135', '中国北京市西城区复兴门内大街17号31楼', '1987-10-06', 0, 0, 'ma55', '2004-07-28', 'aoim', '2000-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS949169476079', '罗詩涵', 0, '+81 74-530-0863', 0, '862978808700343388', '50F, 3-9-16 Gakuenminami, Nara, Japan', '1992-01-09', 0, 0, 'lshihan', '2017-03-14', 'luoshihan9', '2008-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS450364553451', '青木詩乃', 1, '+81 80-0882-6040', 0, '548385724479589395', '日本なごやし北区清水三丁目19番19号46階', '1987-10-03', 0, 0, 'shaoki6', '2009-10-01', 'shinoa', '2008-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS407079591673', 'Michael Munoz', 0, '+86 174-1555-9885', 3, '622218810308501676', '中国上海市闵行区宾川路254号38室', '1989-03-03', 0, 0, 'munomichael54', '2000-09-13', 'munozm', '2008-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS741603622238', '今井優奈', 0, '+86 141-4888-3907', 1, '732170360049892159', 'No.14 building, 979 Tianhe Road, Tianhe District, Guangzhou, China', '1986-10-12', 0, 0, 'yuna1212', '2002-07-14', 'imai56', '2013-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS409263372591', 'Stephanie Ryan', 0, '+86 769-743-9539', 3, '078092207053476180', '中国东莞环区南街二巷498号14室', '1989-02-02', 0, 0, 'stephaniery6', '2016-12-27', 'stephanier', '2010-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS594431545577', 'Tiffany Ruiz', 0, '+86 179-1047-3043', 2, '181170562486981229', 'Room 25, CR Building, 339 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-03-18', 0, 0, 'ruiztiffany', '2000-12-22', 'tr9', '2011-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS042679143050', '松田湊', 0, '+1 838-696-5351', 2, '702301436351391801', '43 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1999-01-09', 0, 0, 'minam118', '2001-04-29', 'mmatsu1952', '2012-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS911444523565', '和田紗良', 0, '+81 80-2356-5227', 2, '506976084813065691', '5F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-06-16', 0, 0, 'wadasar', '2003-11-21', 'sarwa', '2019-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS336433854518', '中山愛梨', 1, '+1 312-677-6612', 1, '057663398084965580', '433 North Michigan Ave Apt 41, Chicago, IL 60611, United States', '1990-10-01', 0, 0, 'nakayama1220', '2001-09-08', 'nairi10', '2021-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS437832060588', '武田凛', 1, '+81 66-500-9034', 2, '785649307912440247', '38F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-01-23', 0, 0, 'takedarin6', '2009-03-03', 'takedr', '2005-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS614204074059', '和田翼', 0, '+81 90-5998-9470', 2, '434617327564365319', '40-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-03-12', 0, 0, 'wtsubasa', '2012-09-18', 'tsubasawada', '2016-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS292678851319', '洪天樂', 0, '+81 66-396-2820', 2, '800235739350250799', '日本おおさかし近江堂一丁目7番7号27階', '1993-11-22', 0, 0, 'htl', '2000-10-11', 'huntinlok', '2015-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS580128961264', '野口美羽', 1, '+44 5319 647578', 2, '147689635653794603', 'Block 9, 694 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-08-29', 0, 0, 'miu3', '2016-11-08', 'noguchimi', '2014-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS013004793197', 'Joanne Soto', 1, '+44 (1223) 60 2911', 1, '318844650869165161', 'No.11 Main building, 31 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-12-16', 0, 0, 'josot', '2009-02-11', 'sj521', '2016-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS842878966858', 'Annie Rodriguez', 0, '+81 74-723-1615', 3, '848105304004613782', '45F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-10-19', 0, 0, 'roann5', '2020-09-08', 'annrodriguez', '2012-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS475003061536', 'Edna Silva', 1, '+86 198-3471-7462', 2, '029403570971287385', '中国北京市西城区西長安街562号39室', '1987-12-18', 0, 0, 'ednasilva712', '2017-12-02', 'esilva', '2003-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS684320250191', 'Bryan Hunt', 1, '+81 66-823-0307', 1, '534604365203374953', '14F, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-01-06', 0, 0, 'bryahunt', '2016-07-22', 'huntbryan1118', '2013-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS562799618385', '加藤七海', 1, '+81 3-2597-8534', 4, '550894882342184636', '49F, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-18', 0, 0, 'nanamika', '2020-05-30', 'nkato', '2007-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS086840752585', '常秀英', 1, '+81 74-493-1539', 3, '669223766547576778', '31-kai, 3-9-6 Gakuenminami, Nara, Japan', '1988-10-20', 0, 0, 'chanxiu', '2012-05-25', 'xiuying7', '2004-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS280839520612', 'Ricky King', 0, '+44 (116) 546 9020', 1, '650248599355412261', 'No.29 Main building, 404 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1987-09-18', 0, 0, 'rickyk10', '2003-04-30', 'kingri', '2019-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS302896285718', '孟震南', 0, '+86 21-8119-3149', 2, '772768840143154430', '中国上海市浦东新区健祥路37号36号楼', '1987-08-12', 0, 0, 'zhennm1', '2007-03-02', 'mengzhennan76', '2011-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS784623991064', 'Susan Chavez', 0, '+86 179-5559-0936', 3, '708289709079836251', '中国北京市東城区東直門內大街116号华润大厦8室', '1986-12-12', 0, 0, 'suchavez', '2009-04-07', 'chavezs', '2020-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS631678847363', 'Jack Romero', 0, '+81 80-1936-3976', 3, '882561869866503794', '日本東京港区東新橋一丁目5番17号28階', '1998-01-09', 0, 0, 'jack6', '2007-04-19', 'jackrome', '2012-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS531063087591', '藤井百花', 1, '+86 170-3020-1053', 3, '074206570560945700', '中国东莞坑美十五巷160号华润大厦39室', '1996-02-25', 0, 0, 'momoka711', '2016-10-02', 'fujiimom', '2004-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS698676373226', '戚俊宇', 0, '+44 (20) 4365 8917', 2, '628806543500613717', 'No.47 Main building, 221 Pollen Street, London, W1S 1NG, United Kingdom', '1985-02-13', 0, 0, 'cychic727', '2001-05-24', 'chuch1', '2008-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS072252672029', '叶秀英', 1, '+1 213-051-0589', 2, '477261688086987901', '54 Grape Street Apartment 3, Los Angeles, CA 90002, United States', '1986-09-03', 0, 0, 'yexiuying', '2002-10-20', 'xiuyiye209', '2021-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS269573996935', 'Melissa Mcdonald', 0, '+86 143-9295-6111', 3, '829635048164231894', '中国北京市海淀区清河中街68号939号19栋', '1994-02-20', 0, 0, 'mcm1120', '2020-03-18', 'mcm2000', '2019-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS088181558314', 'Kyle James', 0, '+1 330-483-6231', 4, '863326246161117919', '650 Ridgewood Road Apartment 19, Akron, OH 44321, United States', '1991-02-03', 0, 0, 'kyle8', '2011-07-08', 'kyle68', '2015-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS608557948464', '萧秀英', 1, '+1 330-932-5816', 4, '152819696678468944', '622 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1993-07-17', 0, 0, 'xixiu10', '2011-12-12', 'xxiao13', '2021-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS243902540957', '于璐', 0, '+81 90-5094-9541', 1, '313729794885261904', 'Rm. 43, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-07-05', 0, 0, 'lyu7', '2016-08-16', 'lu2', '2017-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS078947431427', '张杰宏', 0, '+86 188-6796-1621', 3, '840719479916224062', 'No.29 building, 799 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-08-01', 0, 0, 'jiehong49', '2008-07-24', 'zhajiehong5', '2007-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS558326646647', 'Lawrence Hughes', 0, '+81 74-831-6277', 4, '661252279039767154', 'Rm. 28, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-05-30', 0, 0, 'hughes43', '2002-03-17', 'lawrencehu71', '2015-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS548216045519', '邹云熙', 0, '+86 21-150-8923', 3, '495971022057946877', '中国上海市浦东新区橄榄路522号26楼', '1986-11-14', 0, 0, 'zou7', '2009-06-13', 'yunxiz', '2019-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS976093213793', '严宇宁', 1, '+86 148-5028-6253', 0, '294140751925580147', 'Room 44, CR Building, 902 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-05-01', 0, 0, 'yuningyan', '2001-12-04', 'yyuni218', '2014-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS345237723637', '石井凛', 0, '+1 213-548-8585', 1, '680519160278840094', '431 S Broadway Suite 13, Los Angeles, CA 90015, United States', '1995-07-30', 0, 0, 'ishii9', '2000-01-04', 'rinishii', '2018-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS132055870607', 'Helen Phillips', 0, '+81 52-025-3751', 2, '086356613354189811', '日本なごやし北区清水三丁目19番8号32階', '1992-05-11', 0, 0, 'phillips1', '2018-08-06', 'heleph9', '2006-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS006793349408', 'Julia Foster', 1, '+44 5087 296606', 0, '482555224381039597', 'Unit 26, Oxford Eco Centre, 763 Hanover Street, London, W1S 1YD, United Kingdom', '1985-05-10', 0, 0, 'julia8', '2008-10-05', 'juliafo10', '2020-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS737244793934', '胡思妤', 1, '+86 10-198-2028', 1, '281159968012309969', '中国北京市西城区复兴门内大街377号12栋', '1994-08-13', 0, 0, 'szeyu117', '2007-11-03', 'wu306', '2018-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS494489722291', '武田瑛太', 1, '+1 213-329-9599', 1, '452889877066765511', '43 Figueroa Street Suite 40, Los Angeles, CA 90037, United States', '1995-08-01', 0, 0, 'taeit', '2008-02-13', 'teit', '2010-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS968675247221', 'Melissa Garcia', 1, '+81 74-355-9897', 2, '236364480925052826', '日本ならし西大寺赤田町一丁目7番12号41階', '1991-11-17', 0, 0, 'garciam', '2010-10-14', 'garmelis2008', '2004-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS885407244438', '藍曉彤', 1, '+81 90-5750-4655', 4, '651159857230624638', '5-kai, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-03-30', 0, 0, 'htlam81', '2014-12-10', 'hiutungla302', '2008-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS698537174582', '罗秀英', 1, '+1 212-062-7505', 4, '682137169582641435', '429 Wooster Street Apt 28, New York, NY 10012, United States', '1989-04-16', 0, 0, 'luo61', '2021-05-18', 'luo4', '2007-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS171549881308', '邱嘉伦', 1, '+44 7064 006161', 3, '445809440973957510', 'Unit 11, Oxford Eco Centre, 850 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1993-09-06', 0, 0, 'jialun714', '2015-11-23', 'jialunq', '2006-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS255738754065', '苗力申', 1, '+81 74-362-4065', 2, '870536661703551081', '13F, 3-9-2 Gakuenminami, Nara, Japan', '1997-01-30', 0, 0, 'lsmiu4', '2008-05-10', 'lsmiu', '2020-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS854851303159', '陶頴璇', 1, '+86 10-740-2590', 4, '870265292678221040', '10F, 288 Sanlitun Road, Chaoyang District, Beijing, China', '1990-08-05', 0, 0, 'tws', '2019-12-27', 'taows', '2002-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS325467285270', '松本陽太', 1, '+44 (121) 876 3068', 0, '075420407177130114', 'Flat 25, 477 New Street, Birmingham, B2 4DB, United Kingdom', '1990-11-06', 0, 0, 'yotamatsumoto', '2011-10-01', 'matsyo2', '2013-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS059054420127', '麥惠妹', 1, '+81 90-7297-9503', 4, '812774029537444163', 'Rm. 38, 3-9-4 Gakuenminami, Nara, Japan', '1990-12-30', 0, 0, 'makhm6', '2010-04-22', 'makhm', '2004-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS640958400119', '袁梓晴', 0, '+81 3-2146-7922', 0, '464346241610841337', '日本東京品川区東五反田五丁目2番15号5階', '1991-02-26', 0, 0, 'yuetc', '2021-08-17', 'tszchingyu', '2021-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS496679952909', '安藤光', 0, '+44 (116) 534 4513', 4, '871362035222374308', 'Unit 20, Oxford Eco Centre, 242 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1998-10-18', 0, 0, 'hikarando', '2009-06-21', 'hikara10', '2016-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS074977858030', '吳梓晴', 0, '+86 760-498-6086', 2, '353627624444509340', 'Room 38, 504 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1997-03-02', 0, 0, 'tszchingng', '2000-04-29', 'ntc', '2000-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS124364134180', '藤井葵', 0, '+81 3-9843-8299', 3, '687387970141810131', '日本東京品川区東五反田五丁目2番19号24階', '1997-09-06', 0, 0, 'aoif', '2015-11-23', 'aoifuj', '2006-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS540449103931', '文慧儀', 0, '+86 10-7178-2999', 0, '326031997839148234', 'No.22 building, 790 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-12-22', 0, 0, 'waiyee6', '2000-12-19', 'waiyee10', '2006-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS406319688986', '张子异', 0, '+86 169-0512-9176', 1, '426127972303683734', '中国北京市延庆区028县道738号42楼', '1998-08-01', 0, 0, 'zzhang', '2008-10-22', 'ziyizh6', '2005-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS367683490544', '山下拓哉', 0, '+1 718-818-3322', 3, '131631455195476432', '916 Nostrand Ave Suite 4, Brooklyn, NY 11216, United States', '1986-04-23', 0, 0, 'yamastaku', '2007-09-12', 'yamashitatakuya59', '2012-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS193712737959', '叶震南', 1, '+81 70-3768-9303', 1, '006139345317407400', 'Rm. 4, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-03-23', 0, 0, 'zhennanye', '2002-04-10', 'zhennany9', '2018-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS204059114882', 'Linda Cooper', 0, '+86 138-4227-5171', 1, '149633468540336486', '中国成都市成华区玉双路6号968号华润大厦32室', '1993-07-07', 0, 0, 'linda7', '2005-12-25', 'cooperl', '2017-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS063712767602', '金子桜', 1, '+81 80-6717-3799', 1, '538946357458548332', '32-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1998-11-17', 0, 0, 'kansakura94', '2017-01-28', 'kans', '2017-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS946854827100', '毛詩涵', 1, '+86 769-559-2647', 2, '455637803904627369', 'Room 35, CR Building, 9 Dongtai 5th St, Dongguan, China', '1985-04-21', 0, 0, 'mao1', '2002-08-23', 'shihanmao', '2012-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS950494115807', '中村愛梨', 1, '+86 159-6724-0379', 4, '838599731815280188', '中国深圳罗湖区蔡屋围深南东路691号48号楼', '1988-01-10', 0, 0, 'nairi803', '2005-12-03', 'nairi', '2004-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS925847284416', '鈴木光莉', 1, '+81 80-3283-5101', 2, '473673243732789726', '32-kai, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1994-01-21', 0, 0, 'hikarisuzuki', '2018-12-19', 'hikarsuzuki', '2016-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS577709837645', '高嘉欣', 0, '+44 5347 134694', 1, '006293621064762607', 'Unit 10, Oxford Eco Centre, 548 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-12-25', 0, 0, 'kykao', '2015-11-03', 'kaokaryan', '2012-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS361064641282', 'Carlos Bryant', 1, '+1 718-378-4568', 2, '997987826186320768', '992 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1990-11-24', 0, 0, 'cbryant1104', '2018-11-29', 'bryant14', '2014-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS442009803730', '譚家玲', 0, '+81 80-2847-2886', 1, '615025387694404107', 'Rm. 13, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-05-21', 0, 0, 'tam9', '2009-12-16', 'tam10', '2001-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS748650977955', '田中桜', 1, '+81 3-8270-6397', 4, '404660640468285191', '日本東京港区東新橋一丁目5番18号47号室', '1988-05-01', 0, 0, 'tasakura', '2007-01-08', 'sakuratan', '2000-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS665344355601', '王天樂', 1, '+81 90-4266-2482', 0, '101269401915812490', 'Rm. 29, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1990-08-02', 0, 0, 'tlwong', '2005-10-12', 'wongtinlok2003', '2010-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS371673891614', 'Anna Jenkins', 1, '+81 80-7049-7614', 1, '780165302978147633', '36-kai, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-20', 0, 0, 'annjenkins84', '2017-08-08', 'jenkinsanna', '2004-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS219152023218', 'Amber Webb', 1, '+1 614-893-9964', 3, '796692884336749728', '435 Tremont Road Apt 28, Columbus, GA 43212, United States', '1994-01-17', 0, 0, 'webbam4', '2021-06-08', 'webb224', '2004-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS863817210192', '余子韬', 1, '+81 90-7132-0815', 1, '019282923605751507', '日本なごやし北区清水三丁目19番5号36階', '1991-03-15', 0, 0, 'zitaoyu', '2000-01-10', 'yz1209', '2010-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS001497602112', '邱致远', 0, '+44 5928 197120', 3, '642157964529513570', 'No.41 Main building, 596 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-03-13', 0, 0, 'zhiyqi', '2013-11-06', 'zqiu305', '2006-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS635658094881', '江璐', 1, '+1 212-460-7938', 0, '743975374450798610', '109 West Houston Street Apartment 15, New York, NY 10014, United States', '1987-07-06', 0, 0, 'jiangl', '2019-10-04', 'luji60', '2001-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS330086881291', 'Ruth Fernandez', 1, '+86 194-2241-5332', 2, '935394699611339119', '31F, 943 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-08-06', 0, 0, 'ruthf', '2001-04-24', 'fernarut', '2010-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS200788530456', 'Anne Torres', 1, '+81 80-2059-6841', 1, '791749037761254921', '36-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-04-01', 0, 0, 'torresann', '2012-06-10', 'toranne206', '2004-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS156944517165', 'Carlos Moreno', 1, '+86 760-653-0768', 2, '470019267767486967', '中国中山京华商圈华夏街644号49楼', '1992-08-30', 0, 0, 'morenocarlos', '2016-12-12', 'cm419', '2021-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS535564625689', 'Glenn Ford', 0, '+86 166-0728-8882', 0, '537691909345323648', '中国北京市朝阳区三里屯路97号40栋', '1990-01-04', 0, 0, 'fglenn4', '2002-03-03', 'gford5', '2005-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS546078275891', '李家明', 0, '+86 135-6774-9062', 2, '322640368313828749', 'No.1 building, 608 FuXingMenNei Street, XiCheng District, Beijing, China', '1990-08-07', 0, 0, 'leekm', '2018-07-10', 'kmlee', '2015-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS846235340503', '田云熙', 0, '+81 66-556-9949', 1, '588525603864533240', '21F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-05-17', 0, 0, 'yunxi1203', '2014-04-19', 'yunxitia4', '2007-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS868030178736', '陆子异', 0, '+81 70-3647-5657', 2, '875066951529529609', '26-kai, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-06-09', 0, 0, 'ziyilu', '2008-09-26', 'ziyilu1002', '2017-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS353301371419', '成霆鋒', 0, '+86 142-1176-6188', 1, '193967195321306224', 'No.9 building, 554 Huanqu South Street 2nd Alley, Dongguan, China', '1986-01-12', 0, 0, 'shitf', '2008-04-12', 'shing2', '2004-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS533233500695', '渡辺陽菜', 0, '+86 21-4553-8993', 2, '107091203787037071', 'No.40 building, 818 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-03-12', 0, 0, 'satoh910', '2005-08-09', 'satoh2', '2016-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS976359320355', 'Troy Gordon', 0, '+81 70-7003-6919', 2, '661509824954519200', '41-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1992-12-25', 0, 0, 'tgordon522', '2020-02-17', 'troygordon2', '2004-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS408436410528', 'Josephine Holmes', 0, '+81 80-7542-1119', 0, '255260279933497030', '日本札幌清田区真栄四条五丁目19番20号11階', '1994-06-12', 0, 0, 'hojose', '2014-04-21', 'hjo', '2017-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS411594047171', '長谷川架純', 0, '+81 80-5349-5262', 4, '953210399205508779', 'Rm. 42, 5-4-5 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-03-04', 0, 0, 'kasumihase1021', '2015-02-22', 'kasumi1107', '2012-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS006245551159', '鄭惠妹', 0, '+86 755-506-4088', 1, '234026488648859526', 'No.7 building, 231 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-10-12', 0, 0, 'chehuimei5', '2008-05-05', 'hmchen', '2013-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS817182276651', '文力申', 1, '+81 70-1736-9442', 3, '268451386930176558', '日本東京品川区東五反田五丁目2番20号3号室', '1994-03-14', 0, 0, 'liksunman2005', '2012-03-09', 'mals', '2021-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS310957159296', '苗家玲', 0, '+81 3-8345-3452', 3, '935547052865876344', '16F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-06-15', 0, 0, 'klmiu9', '2011-05-25', 'klmiu', '2012-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS250271187047', '莫子韬', 0, '+86 10-5111-0057', 4, '794098885329727231', 'No.6 building, 9 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-01-22', 0, 0, 'zm1202', '2019-09-05', 'mozitao707', '2009-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS124464130499', '刘秀英', 0, '+81 52-953-1103', 3, '613687476180027669', '39-kai, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1986-06-25', 0, 0, 'xiuyingliu', '2006-11-23', 'xiuli1975', '2001-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS574241724678', 'Vincent Burns', 0, '+86 192-7443-1826', 3, '056811355944510736', 'Room 40, 962 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-05-20', 0, 0, 'burns514', '2011-05-04', 'buvince06', '2007-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS208877937685', '遠藤聖子', 1, '+81 74-208-8834', 3, '141017521704875365', 'Rm. 7, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-02-03', 0, 0, 'seikoendo', '2021-10-25', 'seikoendo', '2017-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS187572838369', '野村瑛太', 1, '+1 212-084-5795', 4, '440575371163034617', '3 Fifth Avenue Apt 30, New York, NY 10017, United States', '1986-04-26', 0, 0, 'enomura', '2011-11-02', 'eitanomura', '2010-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS378325643309', '孙子异', 1, '+86 150-8936-4491', 3, '696725824659499519', 'No.48 building, 33 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-04-03', 0, 0, 'zisu', '2012-02-22', 'ziyisun', '2017-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS243065944624', '杨致远', 1, '+81 52-973-3971', 1, '461157735155761923', '34-kai, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-10-20', 0, 0, 'yzhiyuan03', '2016-03-23', 'zyang', '2021-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS534520641814', 'Emma Freeman', 0, '+1 614-739-5373', 1, '134085769106579000', '180 Tremont Road Apt 18, Columbus, GA 43212, United States', '1992-07-29', 0, 0, 'emmafreeman56', '2002-02-10', 'fremma4', '2001-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS003476213067', '藍頴思', 0, '+86 755-9275-5340', 1, '628399222818454383', '中国深圳罗湖区蔡屋围深南东路846号11楼', '1987-09-23', 0, 0, 'wingsze1', '2000-10-09', 'wingszelam', '2012-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS437377840128', '谷家輝', 1, '+86 10-2625-7465', 4, '030418914349269663', '中国北京市西城区复兴门内大街339号36楼', '1990-11-25', 0, 0, 'kfko', '2021-06-27', 'kookf04', '2014-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS264354127927', '林大和', 1, '+81 80-4779-3823', 1, '455757122513017090', '48-kai, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1993-01-02', 0, 0, 'hy19', '2011-04-30', 'hayashiy', '2009-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS221456450585', '原涼太', 0, '+86 28-635-2665', 2, '766950845040743085', '7F, 476 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-04-25', 0, 0, 'ryotahara69', '2021-06-01', 'ryotah', '2006-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS953701349802', '邵浩然', 0, '+86 755-7050-7484', 3, '012603740483339227', 'Room 9, CR Building, 411 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-02-07', 0, 0, 'hoyinsiu10', '2011-08-11', 'sihoyin', '2006-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS958410213535', '許仲賢', 1, '+81 74-686-0627', 1, '512433539203366447', '日本ならし学園南三丁目9番14号6号室', '1990-05-06', 0, 0, 'chungyin702', '2021-03-22', 'chungyinhu', '2004-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS639049436386', '森瑛太', 0, '+86 130-8666-9728', 3, '236162480850191963', '中国广州市白云区小坪东路424号11栋', '1998-12-25', 0, 0, 'eitamor', '2017-07-15', 'eitamori326', '2021-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS439953211009', '田中大地', 1, '+86 132-2475-3876', 3, '318016768222873775', '中国北京市东城区东单王府井东街501号华润大厦5室', '1989-04-26', 0, 0, 'tanakadaich', '2019-05-29', 'tanakdaichi', '2016-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS799909461631', 'Roy Ramirez', 1, '+81 3-3103-6536', 2, '950490470685455401', '38-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-02-21', 0, 0, 'ramirezr', '2003-12-18', 'ramirr82', '2014-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS082062834415', '陈致远', 0, '+81 80-3432-7778', 2, '160008112465949112', '日本おおさかし平野区加美東四丁目9番15号50階', '1989-03-04', 0, 0, 'zhichen', '2011-07-09', 'chen10', '2012-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS367932062693', 'Anna Moreno', 0, '+44 5967 920165', 1, '152268262426720837', 'No.10 Main building, 262 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-08-19', 0, 0, 'morenoanna02', '2006-11-03', 'morenoann', '2014-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS075534551567', '郭安琪', 0, '+86 10-833-9522', 2, '108666867681304647', 'Room 35, 142 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-12-21', 0, 0, 'guoanqi', '2008-03-13', 'guoanq', '2012-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS398169047522', '野村舞', 0, '+86 173-7252-8055', 2, '445524788667944732', 'Room 15, 690 Jiangnan West Road, Haizhu District, Guangzhou, China', '1999-01-17', 0, 0, 'nomuramai', '2007-10-27', 'nomuramai', '2001-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS899981124041', '葉志遠', 1, '+81 80-2522-8888', 2, '726163174017852696', '日本おおさかし西成区出城一丁目1番10号1階', '1994-06-12', 0, 0, 'yichiyu', '2003-06-24', 'cyyip', '2000-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS631587037314', '邹云熙', 0, '+86 28-3462-8415', 1, '644704750469793497', 'Room 1, 367 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1992-12-16', 0, 0, 'zouyunxi', '2013-10-04', 'yunxi2', '2015-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS079979769139', '高明詩', 0, '+86 20-0702-1329', 3, '484732620520805248', '中国广州市白云区小坪东路982号22室', '1990-11-12', 0, 0, 'kms', '2002-05-29', 'mingszekao', '2006-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS389556389787', '中島健太', 0, '+86 20-998-3460', 3, '970368531047936547', 'No.30 building, 569 Jiangnan West Road, Haizhu District, Guangzhou, China', '1997-03-27', 0, 0, 'kentan208', '2000-07-26', 'nakajima1120', '2017-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS369786109025', '蘇裕玲', 0, '+1 838-682-3852', 4, '544058394488839131', '157 Broadway Apt 28, Albany, NY 12207, United States', '1986-08-23', 0, 0, 'so1205', '2002-11-28', 'yulings', '2002-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS120496438057', 'Scott Marshall', 0, '+81 3-6006-2793', 2, '021468190401344214', '日本東京渋谷区代々木二丁目3番13号42階', '1995-04-22', 0, 0, 'msco302', '2011-07-24', 'marshall6', '2002-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS631619209165', 'Ashley Murphy', 1, '+44 7415 239767', 3, '586611124506317483', 'Unit 17, Oxford Eco Centre, 645 Portland St, Manchester, M1 3LA, United Kingdom', '1987-02-19', 0, 0, 'muash', '2005-05-10', 'ashlm', '2019-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS295253734904', '後藤詩乃', 0, '+81 74-120-7501', 4, '560233412483684234', '日本ならし学園南三丁目9番5号35号室', '1998-09-16', 0, 0, 'shinogo', '2001-02-09', 'shinogo', '2021-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS299990783874', '崔秀英', 1, '+86 169-0348-5581', 3, '669992324594698085', 'Room 7, 509 Jianxiang Rd, Pudong, Shanghai, China', '1990-09-03', 0, 0, 'cuixiu', '2002-10-06', 'cuixiuying7', '2015-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS102918810498', 'Patrick Gardner', 1, '+81 80-2256-1215', 0, '479758264297178985', 'Rm. 32, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-09-15', 0, 0, 'gardp', '2021-11-27', 'garpatrick', '2004-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS947177844810', '戚杰倫', 0, '+81 74-843-2086', 0, '953808115163376543', '33F, 3-9-7 Gakuenminami, Nara, Japan', '1994-01-20', 0, 0, 'clchi', '2016-01-08', 'chchi', '2008-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS401909390150', '江秀英', 1, '+86 184-2170-0708', 0, '365184308297152743', '中国上海市黄浦区淮海中路994号华润大厦37室', '1998-12-09', 0, 0, 'xiuying220', '2003-02-17', 'xiuying2', '2018-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS198456532927', 'Janice Robinson', 0, '+86 21-7616-7746', 4, '849653542381894496', '35F, 107 Binchuan Rd, Minhang District, Shanghai, China', '1989-10-18', 0, 0, 'rjan4', '2014-06-16', 'janrob', '2003-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS179526372616', '蕭慧琳', 1, '+44 7359 967479', 1, '979541996319489006', 'Unit 11, Oxford Eco Centre, 485 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1996-01-28', 0, 0, 'siuwailam', '2020-05-23', 'wlsi', '2021-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS488872807127', '渡辺凛', 1, '+86 174-0506-6514', 1, '389992774516958020', 'Room 9, 570 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-11-28', 0, 0, 'sato10', '2007-06-03', 'satorin8', '2008-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS338209554814', '有村蒼士', 0, '+81 70-5777-6388', 1, '335933637988381537', '日本札幌清田区真栄四条五丁目19番18号45階', '1992-11-26', 0, 0, 'arimuraaoshi610', '2013-10-29', 'aosarimu1102', '2017-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS887045548898', '余杰宏', 1, '+86 769-569-3487', 3, '909083638882863139', '中国东莞坑美十五巷62号16室', '1987-04-28', 0, 0, 'yujiehong', '2018-11-05', 'yuj', '2012-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS662613028996', '斉藤百恵', 1, '+44 5956 227064', 3, '354060019763894762', 'Flat 30, 860 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-03-07', 0, 0, 'mosaito1942', '2015-06-22', 'ms5', '2001-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS638353875544', '岡田紗良', 0, '+1 330-949-9385', 0, '731185449599035656', '740 Riverview Road Apt 27, Akron, OH 44313, United States', '1995-02-15', 0, 0, 'okas', '2000-05-15', 'saraokad', '2018-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS642142721141', '姜岚', 0, '+86 154-8480-9886', 1, '158537895578111445', 'No.2 building, No.808, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-28', 0, 0, 'jianglan', '2014-04-27', 'ljia', '2012-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS007881389298', '向志遠', 1, '+81 70-7936-8335', 4, '102273180273918067', '日本東京渋谷区代々木二丁目3番18号3階', '1990-03-05', 0, 0, 'heung226', '2013-05-23', 'hechiy', '2003-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS574958326410', '胡家玲', 1, '+86 160-1801-0415', 3, '003980302834521221', '中国上海市徐汇区虹桥路431号28室', '1987-05-15', 0, 0, 'wukl4', '2004-05-01', 'kaling89', '2013-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS050763987164', '汤致远', 0, '+1 838-719-6676', 4, '512896798362797902', '734 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1994-03-08', 0, 0, 'zhiyuan4', '2014-01-15', 'tangzhiyu', '2018-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS244035781016', '丸山優奈', 1, '+1 212-907-8175', 1, '079172831054648889', '452 Wooster Street Suite 12, New York, NY 10012, United States', '1985-10-27', 0, 0, 'maruyuna7', '2013-08-13', 'yunamar12', '2000-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS257469117608', '鄭小慧', 0, '+81 11-643-3011', 3, '846656745222776682', '日本札幌豊平区豊平三条十三丁目3番5号28階', '1996-05-27', 0, 0, 'chsw', '2015-06-23', 'cheng801', '2005-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS168021233716', '杜慧敏', 0, '+1 213-721-9792', 2, '070740218870670448', '978 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1996-07-14', 0, 0, 'to8', '2017-06-04', 'waimanto6', '2020-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS348374880638', '于宇宁', 1, '+81 66-173-8755', 4, '662345265377138927', '47-kai, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1991-02-28', 0, 0, 'yuy', '2019-09-13', 'yunyu', '2008-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS148544405433', 'Jean Davis', 1, '+81 11-433-7715', 2, '262488909258079456', '日本札幌白石区菊水三条五丁目2番11号47号室', '1985-08-19', 0, 0, 'davisjean214', '2013-03-08', 'jeandavi', '2018-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS624766874065', '洪安琪', 0, '+1 718-503-9817', 3, '168805871359248975', '602 Flatbush Ave Apt 22, Brooklyn, NY 11225, United States', '1994-02-27', 0, 0, 'hung131', '2016-09-16', 'hok8', '2012-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS962124384759', '何榮發', 0, '+81 90-8138-4058', 3, '166363139292660912', '40-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-05-15', 0, 0, 'howf', '2019-08-16', 'hwf919', '2016-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS484108365930', 'Brenda Silva', 0, '+81 80-5286-2346', 2, '200029696915591196', '18F, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-10-04', 0, 0, 'brenda4', '2019-03-08', 'sbrenda', '2013-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS186029838270', '菊地優奈', 0, '+1 838-018-5940', 0, '418326216425567141', '168 Central Avenue Suite 2, Albany, NY 12206, United States', '1995-03-02', 0, 0, 'ykikuchi', '2014-08-15', 'yunakiku8', '2013-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS214065789550', '松田悠人', 0, '+1 213-920-3847', 1, '528308640785427462', '35 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-01-31', 0, 0, 'myuto1014', '2009-03-14', 'matsuda8', '2020-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS263458548640', '田中蒼士', 0, '+86 180-2147-1923', 2, '277295631703873998', 'No.7 building, 988 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-08-30', 0, 0, 'tanaaoshi10', '2004-08-27', 'tanakaao', '2012-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS181022912897', '龚云熙', 1, '+81 80-5993-2246', 2, '163631381153012309', 'Rm. 21, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-11-21', 0, 0, 'gyu', '2015-01-14', 'gony', '2019-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS340064720999', 'Edna Hunt', 0, '+81 70-3725-9049', 0, '602109194960201394', '日本札幌白石区菊水三条五丁目4番17号1階', '1996-07-15', 0, 0, 'ednahunt', '2002-07-30', 'edna9', '2010-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS541610299732', '郭震南', 0, '+81 70-8283-0794', 4, '484967115807465608', '日本なごやし瑞穂区河岸町四丁目20番7号15階', '1996-06-09', 0, 0, 'zhennang', '2007-10-02', 'zhennanguo', '2021-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS762907375094', '邓岚', 0, '+44 5779 709626', 2, '738426884568060861', 'Block 31, 641 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1994-08-22', 0, 0, 'deng6', '2017-08-04', 'denglan', '2003-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS120385512981', 'Laura Silva', 1, '+81 74-856-4559', 2, '023126439050020155', '11F, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1994-06-12', 0, 0, 'silaura', '2010-05-27', 'lsilva', '2006-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS345893105427', '石川紗良', 0, '+81 52-718-1931', 3, '840372098244734960', '19F, 3-19-17 Shimizu, Kita Ward, Nagoya, Japan', '1996-05-26', 0, 0, 'sishi', '2004-09-02', 'ishisara2005', '2000-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS048951114224', '苏子韬', 0, '+1 212-751-9658', 0, '590841303862958964', '586 Wooster Street Apartment 38, New York, NY 10012, United States', '1986-05-20', 0, 0, 'szitao727', '2001-06-23', 'zitao15', '2008-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS847135983662', 'Monica Munoz', 1, '+81 70-1447-4756', 1, '745792965203339599', '日本なごやし瑞穂区河岸町四丁目20番17号29階', '1992-05-18', 0, 0, 'mmun', '2007-06-27', 'monmunoz4', '2001-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS482683658125', '伊藤海斗', 1, '+81 80-9694-2599', 0, '938175009624714706', '5-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-05-25', 0, 0, 'itok', '2001-01-11', 'itkaito', '2018-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS562173687404', '蒋嘉伦', 0, '+81 66-337-2134', 1, '575898337935110485', '日本おおさかし東住吉区東田辺三丁目27番11号16階', '1988-04-22', 0, 0, 'jialun9', '2016-11-12', 'jiajialu', '2010-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS981692934204', '郑致远', 0, '+86 173-2308-4558', 0, '909068443816742575', '中国北京市延庆区028县道761号18号楼', '1996-11-21', 0, 0, 'zhengzhiyuan', '2021-07-22', 'zhzheng', '2016-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS693162058302', '田詩涵', 1, '+44 (116) 617 3681', 4, '640452399663813989', 'Flat 4, 87 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-05', 0, 0, 'tianshih90', '2016-11-08', 'tianshih', '2002-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS799147574710', '増田優奈', 1, '+81 3-4675-4490', 1, '998226828084211467', '44-kai, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-07-08', 0, 0, 'yunamasuda', '2008-10-14', 'yunam', '2008-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS629735480210', '宣世榮', 0, '+44 (1865) 28 5514', 1, '699100520637298291', 'Block 25, 780 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-03-27', 0, 0, 'saiwingh', '2005-10-10', 'hsusaiwing', '2015-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS824741153624', '鄧國賢', 0, '+86 151-4497-5047', 4, '446058727670190495', 'Room 43, CR Building, 934 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-01-07', 0, 0, 'kyta4', '2006-09-05', 'tang404', '2016-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS919837948542', '西村愛梨', 0, '+81 52-713-9434', 2, '033606650611018875', '46F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1998-06-05', 0, 0, 'airinishimura', '2000-06-18', 'nairi', '2014-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS900833005754', '王惠妹', 1, '+86 760-3557-9582', 1, '136224418014897552', 'Room 16, 408 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-06-29', 0, 0, 'wong9', '2007-04-19', 'hmwong56', '2005-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS382590766803', '邓子韬', 0, '+81 66-543-0420', 2, '828964552416366206', '日本おおさかし平野区加美東四丁目9番7号2階', '1989-01-04', 0, 0, 'zitdeng', '2007-10-26', 'dengzitao81', '2014-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS016189568363', '前田美緒', 1, '+81 74-179-7426', 3, '373928588820787970', '37-kai, 3-9-19 Gakuenminami, Nara, Japan', '1993-01-05', 0, 0, 'mioma68', '2003-10-08', 'maedamio1956', '2000-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS206907258691', '朱慧嫻', 0, '+81 70-7741-3422', 2, '574263508021426253', 'Rm. 10, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-09-08', 0, 0, 'cwh1945', '2006-02-20', 'chuwaihan', '2003-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS855100851411', 'Theodore Anderson', 0, '+81 11-815-7419', 2, '728988759839237283', '日本札幌白石区菊水三条五丁目2番10号43号室', '1992-10-30', 0, 0, 'tanderson1946', '2005-06-20', 'atheodore', '2006-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS212329398989', 'Kevin Butler', 1, '+81 66-567-1881', 1, '597188648611031082', '22F, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-03-05', 0, 0, 'butlerkevin1001', '2000-03-30', 'kebutler', '2021-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS637002112788', '郝晓明', 0, '+1 312-442-9535', 2, '340347632046913143', '437 Pedway Apt 26, Chicago, IL 60601, United States', '1993-09-05', 0, 0, 'xih', '2006-05-30', 'xihao', '2001-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS659878188765', '平野玲奈', 1, '+44 5951 018773', 1, '131055638026356424', 'No.25 Main building, 454 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-09-22', 0, 0, 'hirena', '2020-03-24', 'hiranr1957', '2000-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS961175593775', '邱致远', 0, '+86 21-905-9644', 3, '483543842065486509', 'No.35 building, 657 Binchuan Rd, Minhang District, Shanghai, China', '1998-05-09', 0, 0, 'qzhiyuan', '2017-08-19', 'qizhiyu', '2000-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS258600439781', '梁發', 0, '+1 838-058-6987', 3, '175330359888051451', '569 Central Avenue Apartment 41, Albany, NY 12205, United States', '1989-12-03', 0, 0, 'fatleung', '2012-01-03', 'fatleung', '2006-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS706890068014', '洪心穎', 1, '+86 153-7995-0230', 2, '868431626519338364', '中国东莞坑美十五巷524号华润大厦44室', '1989-05-17', 0, 0, 'husumwing3', '2003-11-16', 'swhu10', '2017-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS312481256250', '山本花', 0, '+86 136-2669-1679', 2, '423050008379273688', '中国深圳罗湖区清水河一路935号华润大厦19室', '1986-03-26', 0, 0, 'hana9', '2016-10-31', 'hayamamoto13', '2010-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS225236216274', '梁岚', 0, '+86 28-529-3355', 3, '347978118476153498', '中国成都市成华区双庆路357号45栋', '1995-07-11', 0, 0, 'lan4', '2018-05-04', 'lanliang71', '2014-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS257729496334', '杜睿', 0, '+1 330-830-5033', 0, '322670531390760745', '97 Collier Road Apt 48, Akron, OH 44320, United States', '1992-05-31', 0, 0, 'rui4', '2010-08-28', 'du2', '2015-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS502269363615', '沈子韬', 0, '+86 10-5696-7468', 0, '107797592201075093', '46F, 491 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-05-31', 0, 0, 'shezitao', '2020-12-25', 'zishen', '2003-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS575874212644', 'Alan Bell', 0, '+1 212-481-4777', 2, '363783017537565591', '434 Canal Street 3rd Floor, New York, NY 10013, United States', '1988-12-28', 0, 0, 'alanbel5', '2011-09-27', 'ba97', '2020-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS944665701973', '彭詩涵', 1, '+44 (1223) 75 6638', 2, '922570030352579622', 'Flat 40, 377 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-09-01', 0, 0, 'shihan00', '2008-05-28', 'shipeng', '2010-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS428393791306', '武云熙', 0, '+81 90-1825-2512', 3, '854985429817345184', '47F, 3-9-19 Gakuenminami, Nara, Japan', '1990-06-09', 0, 0, 'wuyun', '2000-12-26', 'yuwu89', '2012-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS506998557445', '高橋和真', 0, '+86 189-9203-3200', 3, '418569947825399068', 'No.33 building, No. 778, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-03-17', 0, 0, 'takahashi70', '2015-11-08', 'kazumat', '2012-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS335879406364', '常安琪', 1, '+81 52-688-4654', 1, '834372081880310705', '37F, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1997-03-12', 0, 0, 'achang', '2020-11-13', 'changa', '2019-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS716753141672', '戴淑怡', 1, '+86 139-2886-8476', 0, '643988423301806121', '中国深圳龙岗区布吉镇西环路950号华润大厦27室', '1991-05-17', 0, 0, 'sydai', '2018-10-22', 'dai531', '2019-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS897136064649', '中森湊', 1, '+86 130-9939-6186', 2, '071614283741892197', '中国东莞珊瑚路945号21楼', '1989-12-07', 0, 0, 'minanakamori', '2008-07-09', 'minaton', '2002-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS071491408659', '段宇宁', 0, '+86 186-7332-1789', 1, '790685574097426071', '中国东莞环区南街二巷555号4楼', '1990-04-16', 0, 0, 'duan9', '2017-02-28', 'dyuni', '2005-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS533340911435', '葉發', 0, '+86 160-5186-6275', 2, '877252173288069966', '中国深圳福田区景田东一街886号17栋', '1990-12-03', 0, 0, 'yipfat1015', '2010-09-02', 'fyip', '2006-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS309335610699', '邵云熙', 0, '+81 11-434-9638', 3, '660961786355043907', '日本札幌白石区菊水三条五丁目2番14号28階', '1987-05-22', 0, 0, 'shao02', '2004-10-05', 'shao44', '2020-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS859262674836', '杉山絢斗', 1, '+86 163-4627-4929', 2, '080088953554301618', '中国广州市白云区机场路棠苑街五巷455号10楼', '1990-06-02', 0, 0, 'sugiyama1947', '2002-07-17', 'say', '2001-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS923704849620', '高詩涵', 0, '+81 90-3042-5214', 2, '126888854746739527', '日本札幌豊平区豊平三条十三丁目3番15号10号室', '1996-12-10', 0, 0, 'gshihan4', '2003-11-05', 'gs816', '2017-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS680330479277', 'Cheryl Palmer', 1, '+81 52-982-4072', 0, '971611160772820980', '日本なごやし熱田区千年二丁目5番15号4階', '1991-12-20', 0, 0, 'palmer1983', '2016-06-01', 'palmerch', '2002-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS505116621592', '成家文', 1, '+81 70-5387-7915', 3, '088217928081790695', '日本東京中央区銀座三丁目12番12号43階', '1993-04-22', 0, 0, 'skm', '2011-10-06', 'shinkaman731', '2020-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS499707812083', 'Jack Ryan', 0, '+81 80-4648-3029', 3, '874645073799941993', '日本ならし西大寺赤田町一丁目7番1号33階', '1992-03-09', 0, 0, 'ryanjac4', '2021-01-18', 'ryanj', '2015-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS999695135717', '刘晓明', 0, '+44 7306 180094', 0, '577550140618502634', 'Block 23, 104 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-09-13', 0, 0, 'xiaomingliu2012', '2000-04-24', 'xiaomingliu', '2006-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS190798849231', 'Cheryl Graham', 0, '+1 838-481-6141', 0, '945087825611880670', '771 State Street 3rd Floor, Albany, NY 12203, United States', '1989-12-17', 0, 0, 'grahamcheryl', '2009-09-15', 'cherylgra20', '2018-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS177562347392', '今井美咲', 1, '+86 191-1937-3139', 4, '638223338931002713', '中国深圳龙岗区学园一巷542号华润大厦45室', '1988-09-17', 0, 0, 'imai412', '2014-04-17', 'imaimis', '2019-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS682349794445', 'Bryan Martinez', 1, '+81 11-789-2235', 1, '147712081306375013', '38F, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-11-28', 0, 0, 'bryanmartinez6', '2013-02-27', 'martinezb', '2018-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS839294060382', 'Jerry Freeman', 0, '+86 20-2561-3470', 4, '731654180328110743', 'No.34 building, 905 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-10-21', 0, 0, 'freemanje', '2016-09-02', 'jerryfree', '2002-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS492523550611', '沈致远', 1, '+81 3-9903-8069', 3, '527214314312125916', '11F, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1995-12-17', 0, 0, 'zhiyuan92', '2010-12-17', 'zhiyuan205', '2010-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS284938072490', '陶子异', 1, '+86 10-6056-9924', 0, '176496639292799779', 'Room 3, CR Building, 711 Yueliu Rd, Fangshan District, Beijing, China', '1990-04-23', 0, 0, 'tziyi', '2008-01-04', 'tao9', '2015-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS883994668450', '董杰宏', 1, '+44 7325 952146', 3, '034674272427639938', 'No.27 Main building, 426 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-02-04', 0, 0, 'dongj', '2000-06-04', 'jiehongdon1001', '2007-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS292796741337', 'Jessica Martinez', 0, '+81 66-144-9180', 1, '764283484388593424', '44-kai, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-07-19', 0, 0, 'martinezjessi', '2007-12-28', 'jessmar', '2015-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS435523132823', 'Pamela Perez', 0, '+81 74-049-4039', 4, '041672269861224817', '31F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-07-22', 0, 0, 'pap02', '2013-10-31', 'perezp', '2018-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS302888572320', '田子韬', 1, '+86 160-6274-7558', 3, '066911035195571165', 'No.41 building, 983 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-12-29', 0, 0, 'tzi801', '2007-04-10', 'ztian', '2003-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS534309173532', '伊藤大地', 1, '+86 755-4196-5166', 3, '568579526069813902', '中国深圳福田区景田东一街939号21栋', '1993-05-12', 0, 0, 'itdai', '2006-06-16', 'ito4', '2008-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS351785221074', 'Melissa Morgan', 0, '+1 718-839-2659', 1, '688356575161109796', '440 Columbia St Apartment 26, Brooklyn, NY 11231, United States', '1992-12-21', 0, 0, 'mmorg', '2010-06-08', 'melissamo67', '2012-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS116549175394', '孟晓明', 1, '+44 (116) 487 4185', 2, '067833810404323684', 'Unit 11, Oxford Eco Centre, 337 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-12-17', 0, 0, 'xm83', '2003-12-31', 'xm131', '2004-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS819539983145', 'Aaron Morris', 1, '+1 212-004-4759', 3, '644056954060148535', '637 Bank Street Apartment 8, New York, NY 10014, United States', '1996-01-11', 0, 0, 'aaron1952', '2002-04-04', 'aaronmorr', '2017-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS731403879293', '大野大和', 1, '+81 3-0204-3436', 2, '571644302198670647', '日本東京中央区銀座三丁目12番15号24階', '1998-04-18', 0, 0, 'oyamato', '2003-05-19', 'yamatoono', '2015-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS688907816467', '青木樹', 1, '+81 3-9791-5088', 0, '041302460711730840', '日本東京品川区東五反田五丁目2番10号7階', '1986-06-16', 0, 0, 'itsao47', '2002-09-18', 'aokiitsuki7', '2005-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS574078647345', 'Sara Mason', 0, '+1 838-912-6754', 3, '932119888093875729', '272 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1985-04-12', 0, 0, 'masonsara', '2005-06-20', 'mason5', '2017-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS108353533426', '刘子韬', 0, '+86 769-2044-6657', 3, '783005854078834663', '中国东莞东泰五街495号华润大厦19室', '1995-09-12', 0, 0, 'zitaliu', '2012-04-29', 'liuz10', '2019-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS451536463516', '車曉彤', 1, '+1 330-792-3685', 2, '452353713552908093', '389 Riverview Road Apt 28, Akron, OH 44313, United States', '1996-02-17', 0, 0, 'hiutungche8', '2008-10-31', 'hiutch', '2012-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS378025532178', '坂本優奈', 0, '+1 838-190-8514', 1, '114719077947821502', '56 Lark Street Apartment 13, Albany, NY 12210, United States', '1985-08-28', 0, 0, 'sayun', '2005-04-17', 'yuna10', '2013-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS540587024557', 'Louise Sullivan', 1, '+44 (151) 426 4103', 4, '898015414302293933', 'Unit 13, Oxford Eco Centre, 580 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-11-10', 0, 0, 'louisesu4', '2019-02-19', 'sullilo', '2021-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS241776371635', '尹璐', 1, '+81 52-122-5161', 4, '917702190463003778', '日本なごやし守山区瀬古東二丁目171番10号15号室', '1993-05-29', 0, 0, 'lu621', '2003-12-21', 'lu904', '2018-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS469120260710', '譚杰倫', 0, '+86 21-809-2267', 2, '826206392630967629', '中国上海市闵行区宾川路14号19室', '1990-02-04', 0, 0, 'chiehlunt2002', '2019-01-12', 'tacl1', '2005-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS703001372580', '馮志明', 1, '+86 755-511-3532', 1, '104028786678406888', '1F, 91 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-07-28', 0, 0, 'fungchiming', '2008-01-16', 'cmfung', '2005-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS852046982124', 'Linda Crawford', 0, '+81 3-2513-9864', 1, '477179015676420016', '日本東京渋谷区代々木二丁目3番5号33号室', '1992-10-06', 0, 0, 'licra10', '2001-12-08', 'lindacrawford', '2020-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS061045098614', '梁致远', 1, '+1 614-424-2538', 0, '494360423488443107', '702 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-06-22', 0, 0, 'liangzh709', '2020-09-30', 'liang1', '2017-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS367968594570', '龚致远', 1, '+44 5627 783292', 1, '252055769301061397', 'No.28 Main building, 211 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-11-18', 0, 0, 'zhiyuan6', '2018-04-17', 'gozhiyuan805', '2008-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS346477014879', '邱潤發', 0, '+1 330-901-7777', 0, '754023443432907430', '864 Ridgewood Road Suite 27, Akron, OH 44321, United States', '1990-05-31', 0, 0, 'yauyf', '2002-07-29', 'yunfatyau', '2012-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS205421657456', '崔安琪', 0, '+86 131-3329-2041', 3, '878123421321042119', '中国北京市朝阳区三里屯路890号25栋', '1987-11-15', 0, 0, 'cuia305', '2002-02-23', 'cuia2', '2006-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS194169216859', '竹内紗良', 1, '+44 (121) 171 6828', 1, '828314342920250807', 'Unit 25, Oxford Eco Centre, 834 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-03-09', 0, 0, 'takeus', '2006-01-03', 'taksara', '2019-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS652572511386', '酒井陽菜', 1, '+81 3-5521-9879', 3, '939155482006934101', '日本東京品川区東五反田五丁目2番7号26階', '1997-06-26', 0, 0, 'hinasa', '2022-02-10', 'sahina', '2005-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS473883376739', '三浦蓮', 1, '+81 74-512-8316', 3, '610750886970860665', '日本ならし大和郡山市本庄町一丁目1番16号30号室', '1996-12-01', 0, 0, 'rem8', '2016-06-19', 'miurren4', '2013-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS967378151860', 'Debbie Hernandez', 0, '+1 212-383-5866', 3, '439389671023630910', '849 Wooster Street Apt 16, New York, NY 10012, United States', '1986-06-29', 0, 0, 'debbie1024', '2018-01-20', 'debbiehernandez411', '2012-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS342536795492', '田睿', 0, '+1 838-234-1825', 1, '961298402933679638', '526 State Street 3rd Floor, Albany, NY 12203, United States', '1997-12-16', 0, 0, 'trui', '2006-06-07', 'ruit', '2007-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS866507069953', 'Carolyn Medina', 0, '+44 (116) 240 0760', 3, '248442862665706491', 'Flat 31, 961 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-07-25', 0, 0, 'medc', '2014-08-09', 'mcarolyn6', '2004-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS099740999193', '余詩涵', 1, '+1 718-983-9776', 2, '029859221074333961', '886 Columbia St Apt 16, Brooklyn, NY 11231, United States', '1985-07-21', 0, 0, 'shihanyu321', '2017-11-16', 'sy3', '2020-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS437245366048', '工藤優奈', 1, '+81 70-5989-2192', 1, '412751475156449900', '15F, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1985-10-26', 0, 0, 'yk1', '2006-06-17', 'yunakudo320', '2002-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS128028097397', '佐藤光莉', 1, '+81 90-2253-0912', 3, '899493643633765169', '日本なごやし北区清水三丁目19番1号2階', '1998-09-20', 0, 0, 'hikaris', '2020-08-17', 'hsato82', '2019-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS136890595273', 'Judith Brown', 0, '+86 10-918-2632', 2, '762801703332308134', '42F, 468 028 County Rd, Yanqing District, Beijing, China', '1987-04-02', 0, 0, 'judibrown5', '2005-04-30', 'judbr74', '2018-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS977100190492', '孫心穎', 0, '+81 11-848-0216', 0, '619217802255763196', '日本札幌中央区宮の森四条六丁目1番4号23階', '1992-01-20', 0, 0, 'hsuansw5', '2020-01-16', 'swhsuan', '2001-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS495543855873', '杜杰宏', 0, '+1 718-863-3678', 1, '086670155463791513', '735 Columbia St Suite 4, Brooklyn, NY 11231, United States', '1993-06-29', 0, 0, 'jiehongdu3', '2001-08-03', 'jiehong126', '2017-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS927536945875', '陶學友', 1, '+44 5871 440098', 0, '232404254902148971', 'Unit 30, Oxford Eco Centre, 792 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-10-22', 0, 0, 'thy8', '2004-01-09', 'hytao1956', '2008-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS335766914821', 'Douglas Jimenez', 0, '+44 (1865) 40 8477', 3, '665292380188275966', 'Block 19, 72 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-10-04', 0, 0, 'douglasj4', '2011-09-01', 'jimenez2008', '2020-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS791407707080', 'Herbert Vargas', 1, '+86 21-7631-9720', 3, '757569197582984322', 'Room 43, CR Building, 886 Ganlan Rd, Pudong, Shanghai, China', '1998-04-07', 0, 0, 'herbertv', '2016-07-15', 'hvargas', '2011-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS483148360399', '村田絢斗', 0, '+44 7927 367764', 2, '626882151825755567', 'Unit 9, Oxford Eco Centre, 506 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-07-07', 0, 0, 'ayamurata80', '2007-03-22', 'muratayato8', '2020-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS159779694250', 'Shawn Crawford', 0, '+86 769-323-8658', 4, '229383890377393110', '中国东莞坑美十五巷353号华润大厦47室', '1991-09-15', 0, 0, 'shawn50', '2006-09-25', 'shc820', '2012-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS158951887305', 'Francisco Long', 1, '+81 70-6465-7174', 2, '670865892366899492', '日本ならし学園南三丁目9番17号26階', '1985-12-16', 0, 0, 'francisco2', '2005-04-01', 'fralong', '2013-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS440243764149', '木下悠人', 0, '+86 755-0410-9940', 3, '236552443589622273', '中国深圳福田区深南大道678号16栋', '1989-01-26', 0, 0, 'kinoshitay618', '2009-08-15', 'yuto87', '2014-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS436231697604', '高田大輔', 0, '+44 7081 387604', 1, '728581668041612205', 'Block 10, 326 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-06-30', 0, 0, 'takdaisuke06', '2001-07-24', 'takadadaisuke10', '2007-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS675413569090', '钱子异', 1, '+1 838-499-7083', 1, '097536972392023787', '483 Broadway Apt 20, Albany, NY 12207, United States', '1991-02-27', 0, 0, 'ziyiqian97', '2005-06-13', 'ziyi10', '2021-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS928331920310', '戴杰宏', 1, '+44 5242 680665', 2, '520989678339097178', 'No.1 Main building, 934 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-01-20', 0, 0, 'daijiehong', '2021-09-30', 'djiehong1947', '2019-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS823330171054', '柴田舞', 1, '+86 755-628-5833', 1, '416045738218745618', '中国深圳福田区深南大道420号20号楼', '1985-09-30', 0, 0, 'smai', '2014-08-25', 'maishib', '2018-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS018100589445', '马嘉伦', 0, '+81 80-0400-7974', 1, '110275691780339596', '日本札幌清田区真栄四条五丁目19番5号26階', '1988-11-15', 0, 0, 'jialunma', '2008-12-25', 'maji1958', '2004-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS893027609205', '薛子异', 0, '+86 137-8729-9423', 1, '590087588716895137', '中国中山天河区大信商圈大信南路980号19室', '1995-03-22', 0, 0, 'ziyi4', '2012-05-09', 'ziyix', '2009-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS479448282572', 'Maria Burns', 1, '+1 718-645-3542', 3, '893390867310777215', '265 Flatbush Ave Suite 30, Brooklyn, NY 11225, United States', '1987-10-10', 0, 0, 'mab', '2013-01-24', 'mariab', '2020-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS014725092659', '梁青雲', 0, '+86 10-8506-6141', 0, '819085697294803573', '中国北京市东城区东单王府井东街421号24室', '1989-06-03', 0, 0, 'leunchingwan', '2016-09-29', 'leungching', '2020-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS967645817438', '上野悠人', 0, '+1 212-432-4457', 4, '489908741183877614', '498 Canal Street Suite 45, New York, NY 10013, United States', '1993-08-13', 0, 0, 'yuueno75', '2007-01-19', 'uenoyuto1', '2000-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS896069781660', '蔣嘉欣', 1, '+81 90-1584-5029', 2, '556326405151098143', '日本東京中央区銀座三丁目12番13号37号室', '1986-02-18', 0, 0, 'kyc4', '2010-08-01', 'karyanchiang718', '2003-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS927658346971', 'Patricia Cole', 0, '+81 52-997-5531', 2, '190216997169820320', '16-kai, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1998-11-18', 0, 0, 'patriciacole5', '2008-07-26', 'patricia6', '2008-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS514123333234', 'Timothy Brooks', 0, '+86 147-4833-3674', 2, '441817607934880779', '中国广州市白云区机场路棠苑街五巷240号华润大厦7室', '1986-04-08', 0, 0, 'broot', '2000-05-03', 'timothybrooks98', '2020-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS371267916949', '菅原彩乃', 0, '+86 186-1557-3238', 1, '254374551007220977', 'Room 5, CR Building, 853 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-02-05', 0, 0, 'sa80', '2005-02-10', 'sugawaraayan6', '2008-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS592200870371', '遠藤凛', 1, '+81 11-457-2995', 3, '793755891870508177', 'Rm. 12, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-10', 0, 0, 'endorin', '2018-11-11', 'endorin319', '2015-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS421806396667', '佐藤陸', 1, '+86 160-5809-6129', 1, '861506143194995117', '中国上海市闵行区宾川路4号2室', '1996-05-04', 0, 0, 'sato15', '2012-11-20', 'satoriku90', '2005-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS110824095485', 'Nicholas Aguilar', 0, '+81 11-294-8917', 0, '579393655510254826', '6F, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-10-04', 0, 0, 'nicholas80', '2008-05-30', 'aguilarnicholas', '2006-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS857602158557', 'Luis Shaw', 1, '+86 755-640-9479', 4, '988724186986290024', '中国深圳龙岗区布吉镇西环路685号华润大厦39室', '1995-05-29', 0, 0, 'luis10', '2019-02-27', 'shaw09', '2022-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS049894457598', '池田光莉', 1, '+1 718-180-8393', 2, '196910638654558348', '995 Nostrand Ave Apartment 2, Brooklyn, NY 11216, United States', '1987-11-01', 0, 0, 'hikariked', '2009-07-18', 'hii06', '2009-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS457535414100', '河野紗良', 1, '+1 838-407-8729', 4, '442767718490881257', '954 State Street Suite 2, Albany, NY 12203, United States', '1995-10-26', 0, 0, 'skono', '2022-01-04', 'ks912', '2017-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS355655550457', '高橋葵', 1, '+81 66-801-8163', 2, '580440483020446891', '日本おおさかし西成区出城一丁目1番7号37階', '1990-05-19', 0, 0, 'takaoi96', '2007-01-26', 'aoita', '2009-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS378413589427', 'Irene Clark', 0, '+1 212-048-1909', 1, '462945437689715067', '324 Wooster Street Suite 28, New York, NY 10012, United States', '1988-12-30', 0, 0, 'clark10', '2000-01-21', 'clir', '2010-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS397720755355', '廖安琪', 0, '+1 614-003-6135', 3, '714386564628877184', '13 Diplomacy Drive Suite 46, Columbus, GA 43228, United States', '1997-12-04', 0, 0, 'liaoan6', '2017-08-05', 'anqi616', '2012-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS194687362429', '蒋宇宁', 1, '+86 177-2330-4413', 2, '634441584072878475', '中国深圳福田区深南大道489号9室', '1988-03-17', 0, 0, 'yuj16', '2016-12-02', 'yjiang', '2001-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS873341822767', '高橋瑛太', 0, '+44 7331 673287', 3, '267717015841262491', 'Unit 18, Oxford Eco Centre, 159 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-06-03', 0, 0, 'takahashiei', '2000-09-28', 'eitatakahashi4', '2010-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS472163916919', '近藤美月', 0, '+81 90-2573-2241', 3, '072666517782405762', '日本札幌豊平区豊平三条十三丁目3番14号15階', '1988-10-09', 0, 0, 'mitskond', '2010-02-28', 'kondo49', '2005-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS357288515439', 'Amanda Reed', 0, '+86 162-4869-8545', 0, '237336468769317251', 'No.1 building, 614 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-09-25', 0, 0, 'reedamanda1944', '2000-08-12', 'reamanda', '2008-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS834005441936', 'Jerry Jordan', 1, '+86 165-8788-0650', 3, '543094015184283856', 'Room 11, 23 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-03-04', 0, 0, 'jjerry1119', '2017-05-28', 'jordanjerry', '2021-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS162558772811', '松本玲奈', 1, '+81 70-0442-7939', 0, '952069644263447884', '日本東京品川区東五反田五丁目2番6号39号室', '1985-12-12', 0, 0, 'mrena', '2001-04-29', 'remat', '2005-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS276211338786', '黄晓明', 1, '+44 7772 077379', 2, '506261010084065989', 'Unit 23, Oxford Eco Centre, 192 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1997-01-14', 0, 0, 'huang58', '2013-06-06', 'xiaominghuang', '2018-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS179505774869', '鄭國榮', 1, '+44 (116) 549 0653', 1, '947788306092771654', 'Unit 30, Oxford Eco Centre, 709 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-08-24', 0, 0, 'kwokwingc2014', '2008-09-21', 'chengkw', '2021-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS127685772657', '鄧麗欣', 1, '+86 755-0192-7671', 3, '887305768531195661', '中国深圳龙岗区布吉镇西环路853号34室', '1994-09-26', 0, 0, 'lyta41', '2012-05-08', 'laiyant217', '2016-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS480016647418', '石川蒼士', 1, '+1 212-460-6851', 1, '636704342404451118', '811 Fifth Avenue Apartment 22, New York, NY 10017, United States', '1996-04-14', 0, 0, 'aoshishikawa', '2020-06-18', 'aishikawa7', '2015-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS466196768053', '山口愛梨', 1, '+86 769-532-3516', 2, '896392198151494319', '中国东莞珊瑚路567号10楼', '1995-03-22', 0, 0, 'airiy', '2006-02-07', 'yamaguchi7', '2009-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS402510303380', 'Lawrence Gonzalez', 0, '+1 614-929-5330', 0, '695146739601169587', '33 Diplomacy Drive Apartment 49, Columbus, GA 43228, United States', '1991-12-10', 0, 0, 'gonzalez3', '2009-08-09', 'lawrgon', '2019-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS075095409930', '橋本陸', 0, '+86 10-5795-6745', 2, '086574957941899163', 'Room 6, CR Building, 778 Sanlitun Road, Chaoyang District, Beijing, China', '1998-01-14', 0, 0, 'hriku', '2018-09-29', 'hriku6', '2017-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS800646848689', '史岚', 1, '+86 10-228-7387', 3, '771326121563841073', 'Room 6, 553 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-18', 0, 0, 'shilan48', '2016-04-07', 'lanshi', '2002-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS511710473424', '郭睿', 0, '+81 52-212-5275', 4, '643566636903200454', '日本なごやし北区清水三丁目19番12号31階', '1998-12-02', 0, 0, 'guo8', '2021-04-21', 'ruiguo', '2000-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS947209866541', '樊淑怡', 1, '+1 212-332-4644', 3, '835582817354306593', '53 Bank Street Apartment 36, New York, NY 10014, United States', '1986-08-07', 0, 0, 'fansy57', '2008-10-01', 'sukyee3', '2009-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS587612938895', '汪岚', 1, '+44 5923 449833', 4, '892633311948488067', 'Unit 33, Oxford Eco Centre, 515 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-01-27', 0, 0, 'wang6', '2005-08-31', 'wanglan303', '2007-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS899821110071', 'Barbara Robinson', 1, '+81 80-6982-5439', 4, '378698729075356885', '日本おおさかし西成区出城一丁目1番4号44号室', '1986-10-25', 0, 0, 'barr', '2017-12-22', 'br5', '2002-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS436161755629', '千葉悠人', 0, '+81 80-0473-8834', 1, '833376930151431548', 'Rm. 29, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-04-26', 0, 0, 'yuch8', '2009-03-15', 'chibay', '2003-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS531884245533', 'Scott Hicks', 1, '+81 90-3507-8945', 1, '615974679577467047', '1-kai, 3-9-4 Gakuenminami, Nara, Japan', '1987-08-11', 0, 0, 'scohicks', '2010-01-26', 'hicksscot82', '2001-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS958590634572', '樊世榮', 1, '+86 10-065-2479', 4, '782787573129754276', '19F, 169 Sanlitun Road, Chaoyang District, Beijing, China', '1993-08-23', 0, 0, 'fasw', '2004-01-05', 'swfan', '2003-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS595105986990', '坂本海斗', 1, '+1 718-344-4085', 0, '232885015677960082', '204 Columbia St Apartment 13, Brooklyn, NY 11231, United States', '1987-12-20', 0, 0, 'kaisa', '2015-06-23', 'kaitos5', '2009-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS246586841059', '徐云熙', 1, '+81 90-7275-4360', 3, '709086111330874052', '日本札幌豊平区豊平三条十三丁目3番10号40階', '1989-01-10', 0, 0, 'yuxu', '2021-02-17', 'yunxi76', '2011-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS474417725032', '阿部七海', 1, '+86 21-4650-2067', 3, '851428914648225223', '中国上海市浦东新区健祥路818号华润大厦42室', '1995-04-10', 0, 0, 'nanami7', '2005-03-15', 'nabe', '2008-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS228794823173', '容國榮', 0, '+81 3-6477-3422', 3, '993123912968197870', '38-kai, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1985-06-30', 0, 0, 'yungkwokwing', '2013-02-04', 'kwokwingy5', '2000-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS453991322155', '阎震南', 1, '+81 80-6238-4554', 2, '046457547722524112', '日本札幌厚別区上野幌一条二丁目1番17号42階', '1994-11-13', 0, 0, 'zhennya14', '2007-11-24', 'zhenny', '2013-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS121878856633', '贺安琪', 0, '+86 151-4682-0189', 0, '017071728350795953', '中国广州市越秀区中山二路778号1楼', '1998-11-06', 0, 0, 'heanqi616', '2010-11-27', 'han', '2006-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS577740391714', '譚德華', 0, '+81 66-313-7978', 3, '936410693823470124', '日本おおさかし西成区出城一丁目1番10号47階', '1986-07-18', 0, 0, 'twtam', '2012-10-14', 'tamtakwah114', '2018-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS882859138620', '市川葵', 1, '+81 3-9034-2907', 0, '620221228083548954', '日本東京品川区東五反田五丁目2番7号33号室', '1995-12-18', 0, 0, 'ichikawaaoi', '2006-01-28', 'ichikawaaoi', '2010-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS845945003273', '田中架純', 1, '+86 760-843-7455', 3, '821086165075411153', 'Room 18, CR Building, 927 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1998-12-29', 0, 0, 'tanak', '2014-07-22', 'tanakakasu', '2002-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS681951148135', '岡本詩乃', 1, '+86 144-4271-4596', 2, '816879532243111000', 'No.26 building, 902 Jingtian East 1st St, Futian District, Shenzhen, China', '1999-01-17', 0, 0, 'okamotoshino99', '2017-08-21', 'oshino', '2017-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS733474929400', '蔡秀英', 0, '+81 70-3531-1157', 1, '713093409998312932', '25-kai, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1986-03-25', 0, 0, 'xiuyca1', '2007-04-04', 'xic', '2016-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS319127140671', 'Virginia Rose', 0, '+86 131-1663-0510', 3, '928023406439928962', 'No.14 building, 22 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-05-16', 0, 0, 'virginiar', '2001-04-07', 'rvirginia', '2005-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS500063895812', '元家文', 0, '+1 838-879-1598', 1, '016329453288760892', '396 State Street Suite 16, Albany, NY 12203, United States', '1991-06-18', 0, 0, 'kmyuen', '2008-05-02', 'kamany', '2011-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS655504722605', 'Tammy Ramos', 1, '+81 80-7230-8946', 1, '832296684550161294', '日本ならし学園南三丁目9番19号33階', '1989-04-07', 0, 0, 'ramostammy', '2011-01-14', 'tammy8', '2011-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS685898037673', '郭詩涵', 0, '+81 90-5575-8340', 3, '691931775299836697', '日本なごやし北区楠味鋺三丁目80番9号34号室', '1985-03-29', 0, 0, 'gushi705', '2011-02-02', 'guoshihan', '2019-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS289979303468', '田杰倫', 1, '+81 52-803-9084', 2, '286655371267425118', '日本なごやし熱田区千年二丁目5番4号10階', '1995-03-10', 0, 0, 'tincl', '2007-01-31', 'chiehlunti', '2005-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS365573434058', '常晓明', 1, '+81 70-5252-8978', 3, '730694013170083680', '43F, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-02-21', 0, 0, 'chxiaoming820', '2013-08-18', 'chang416', '2005-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS460530321948', '何子异', 1, '+44 5810 111263', 2, '251695057593514437', 'Block 6, 551 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-07-14', 0, 0, 'ziyih', '2001-09-05', 'hziy', '2010-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS440340652485', '金子結翔', 1, '+86 20-0892-0956', 4, '401078511789691431', '中国广州市白云区小坪东路350号7室', '1988-12-04', 0, 0, 'kanekoyuit', '2021-04-11', 'yuitok', '2007-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS196877903953', 'Jerry Tucker', 1, '+44 7662 793364', 1, '739888155685081975', 'Block 21, 45 Regent Street, London, W1B 2LX, United Kingdom', '1992-12-20', 0, 0, 'jet201', '2015-01-26', 'jerrytuc', '2009-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS447590054637', '袁子异', 1, '+44 7068 366462', 1, '438596328457410327', 'Block 42, 263 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-01-04', 0, 0, 'ziyyuan', '2014-06-20', 'yuanziyi', '2006-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS038670262336', '邵世榮', 0, '+81 90-9128-2998', 3, '767324938329465318', '6F, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1998-09-19', 0, 0, 'saiwing1991', '2015-10-07', 'saiwingsiu7', '2012-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS936426916389', '萬曉彤', 0, '+81 70-4849-8800', 2, '730290617269748988', '日本札幌中央区宮の森四条六丁目1番6号21階', '1992-03-25', 0, 0, 'htmeng63', '2000-06-25', 'hiumeng', '2011-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS052897381484', '後藤百恵', 1, '+86 190-1072-0524', 0, '037090426232815515', 'No.18 building, 684 Dongtai 5th St, Dongguan, China', '1998-12-25', 0, 0, 'mgo', '2000-10-16', 'gomomo18', '2016-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS513374097783', '許麗欣', 0, '+44 (121) 741 8452', 0, '810736036048081615', 'Unit 12, Oxford Eco Centre, 347 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-11-16', 0, 0, 'huily', '2014-09-23', 'lyhui', '2008-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS291364974909', '許國權', 1, '+44 5053 349148', 1, '943681232312826613', 'Unit 38, Oxford Eco Centre, 61 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-05-16', 0, 0, 'hui3', '2006-06-21', 'kwokkuen71', '2020-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS068803847103', '董云熙', 1, '+81 90-7943-2952', 3, '717401461665703799', 'Rm. 35, 3-27-14 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-11-01', 0, 0, 'dong825', '2002-10-19', 'dong58', '2015-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS386037777154', '邹震南', 1, '+44 (20) 5613 9306', 3, '887344598800046460', 'Block 30, 27 Hanover Street, London, W1S 1YD, United Kingdom', '1988-02-17', 0, 0, 'zzo', '2007-04-05', 'zhenzou1963', '2002-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS398019768093', 'Louis Burns', 1, '+81 11-416-0856', 3, '118890859795259248', '日本札幌厚別区上野幌一条二丁目1番2号38号室', '1988-01-24', 0, 0, 'burnsl', '2003-01-29', 'burnlouis1967', '2017-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS963833882098', '翁朝偉', 0, '+44 7027 521922', 2, '109137968431370719', 'Unit 24, Oxford Eco Centre, 753 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-04-18', 0, 0, 'chiuwai10', '2002-11-14', 'yungcw', '2001-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS541586870528', '崔霆鋒', 1, '+81 11-037-3181', 1, '962837543739230911', '5-kai, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-05-20', 0, 0, 'tingfung3', '2010-12-31', 'choitf', '2004-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS953889002575', '中川大輔', 1, '+86 10-098-3126', 0, '325604149738943469', '中国北京市延庆区028县道310号9楼', '1991-06-27', 0, 0, 'danak416', '2015-02-06', 'nakagawa203', '2021-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS004085750383', '工藤桜', 0, '+86 769-0277-3266', 1, '729342267430214270', 'Room 28, CR Building, 810 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-14', 0, 0, 'kudos', '2006-02-18', 'sakurakudo', '2016-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS797282254596', 'Frederick Cox', 0, '+81 70-0813-3306', 3, '589426074032389715', '36F, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1989-11-15', 0, 0, 'cof', '2019-10-23', 'cfred909', '2008-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS673175817885', '邵浩然', 1, '+86 149-9492-5704', 0, '399856935208648955', 'No.28 building, 55 Ganlan Rd, Pudong, Shanghai, China', '1994-08-26', 0, 0, 'hysiu1984', '2016-01-24', 'hoyins', '2020-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS653988556653', '罗震南', 0, '+81 80-7046-4731', 1, '352693418193740260', '日本なごやし北区清水三丁目19番5号39階', '1987-02-11', 0, 0, 'luozhen1949', '2003-06-29', 'zhennluo1942', '2010-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS963288636323', '石田詩乃', 0, '+86 185-6296-8006', 1, '061487225242281594', 'Room 7, CR Building, 852 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-06-13', 0, 0, 'ishida4', '2007-12-28', 'sishida', '2009-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS802442716273', '藤安琪', 1, '+1 614-284-3260', 0, '801288261017838322', '321 Wicklow Road Apt 33, Columbus, GA 43204, United States', '1990-10-18', 0, 0, 'tang1010', '2004-12-27', 'onkat', '2004-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS405770432665', '鄭朝偉', 1, '+44 5505 547528', 2, '828093008144590640', 'Block 7, 393 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-08-13', 0, 0, 'chengcw2', '2007-05-06', 'chiuwaicheng', '2013-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS922498140440', '李浩然', 0, '+81 3-4508-0240', 3, '704381704290716656', '35F, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-10-08', 0, 0, 'hoyinl', '2008-04-27', 'hoyinlee', '2018-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS011797588440', '任云熙', 0, '+81 90-7487-7026', 0, '396883169005963529', '30-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1986-10-20', 0, 0, 'renyunxi', '2019-01-04', 'reny', '2001-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS862520029200', '高子韬', 1, '+81 70-3962-5197', 2, '335004165569746259', 'Rm. 32, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-02-14', 0, 0, 'zitaoga1029', '2000-10-23', 'zitaogao2011', '2014-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS628687912939', '黎惠敏', 0, '+1 614-688-5519', 3, '223544985856344118', '741 East Cooke Road Suite 47, Columbus, GA 43214, United States', '1991-12-02', 0, 0, 'laiwm6', '2021-12-08', 'wml', '2000-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS154014379534', 'Eva Woods', 1, '+1 330-464-9988', 1, '275599016779566908', '794 West Market Street Apartment 5, Akron, OH 44333, United States', '1997-07-15', 0, 0, 'ew53', '2017-08-12', 'woev', '2015-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS939146002801', '阎睿', 1, '+81 70-8360-7656', 2, '929039063706265052', '日本東京品川区東五反田五丁目2番19号38階', '1992-03-17', 0, 0, 'ruiyan', '2021-06-16', 'yanr', '2007-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS489915763719', '三浦架純', 1, '+44 (1223) 68 7476', 0, '690206925997894447', 'Unit 2, Oxford Eco Centre, 323 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1998-05-14', 0, 0, 'mika', '2018-03-28', 'miurkasumi', '2014-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS647784022341', 'Christina Williams', 1, '+81 90-7417-2319', 1, '463869619998168041', '日本なごやし北区清水三丁目19番3号18号室', '1998-12-04', 0, 0, 'chrwill', '2007-09-22', 'williamsch', '2021-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS423852870540', '白慧儀', 1, '+81 11-120-4873', 3, '628799760056289236', '47F, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-05-04', 0, 0, 'pakwy', '2011-02-24', 'pakwy', '2012-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS037798858671', '劉青雲', 0, '+81 70-0804-1432', 2, '450626360285762038', '14-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-07-01', 0, 0, 'laucw', '2021-02-09', 'lau00', '2004-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS053022286780', '渡部花', 1, '+86 175-1575-1570', 1, '137869319501186232', '3F, 96 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-07-29', 0, 0, 'hanaw2', '2009-02-09', 'hanaw', '2014-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS308505684950', '廖天榮', 0, '+86 28-849-5706', 1, '763926211995916833', 'Room 49, CR Building, No.764, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-07-24', 0, 0, 'liaotw47', '2006-05-21', 'tinwingliao915', '2017-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS698163826980', 'Margaret Miller', 0, '+86 760-629-5248', 4, '393932435528112091', 'Room 14, CR Building, 592 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-04-09', 0, 0, 'marmiller44', '2007-04-15', 'millerm', '2003-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS298371339846', '胡晓明', 1, '+86 769-660-0923', 3, '229802439373664098', '中国东莞坑美十五巷244号华润大厦14室', '1988-03-11', 0, 0, 'huxiaoming5', '2021-04-03', 'hxiaoming', '2021-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS194430280110', 'Paul Aguilar', 1, '+1 718-872-7165', 2, '299136069476925583', '226 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-11-25', 0, 0, 'paul66', '2012-06-18', 'paulaguilar', '2011-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS151674937056', '狄天樂', 0, '+81 3-3292-7534', 3, '764773097973007911', '日本東京港区東新橋一丁目5番15号5号室', '1993-12-07', 0, 0, 'titinlok', '2002-05-14', 'tlt', '2013-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS517466235069', '韓志明', 1, '+1 614-472-6977', 2, '002309177865884491', '791 Wicklow Road Apartment 26, Columbus, GA 43204, United States', '1989-09-19', 0, 0, 'chiming5', '2008-03-03', 'cmhan68', '2007-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS150485546900', '今井一輝', 1, '+1 838-862-7154', 1, '112507087168701370', '663 Central Avenue Suite 30, Albany, NY 12205, United States', '1997-04-02', 0, 0, 'ikkiimai2001', '2003-12-13', 'ikki1', '2010-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS153330040262', '溫淑怡', 1, '+81 74-376-1051', 4, '898760446471333792', '44F, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-02-17', 0, 0, 'sukyeewa', '2012-07-02', 'wansy', '2004-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS177502426912', 'Amy Long', 0, '+1 213-206-0210', 1, '087183762276606422', '214 S Broadway Suite 3, Los Angeles, CA 90015, United States', '1994-07-22', 0, 0, 'amy1', '2011-06-13', 'amyl', '2004-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS114778603969', 'Joseph Smith', 1, '+44 7627 563260', 1, '381680312854303139', 'Block 16, 292 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-11-15', 0, 0, 'smith86', '2012-08-28', 'jsmi', '2016-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS631944331445', '莫睿', 0, '+81 66-179-9100', 4, '440694053198433520', '26F, 3-27-4 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-03-28', 0, 0, 'ruim', '2018-11-15', 'morui', '2001-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS926992165137', '钟致远', 0, '+86 142-2895-0023', 1, '880432559842394162', 'No.16 building, 725 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-07-12', 0, 0, 'zhonzhi', '2020-07-07', 'zhiyuanzhong', '2017-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS662825776285', '姚晓明', 1, '+44 5548 703559', 1, '196172180504481091', 'Unit 23, Oxford Eco Centre, 172 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1989-08-19', 0, 0, 'yaoxiao', '2001-04-06', 'yxi', '2014-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS817157760847', '増田詩乃', 0, '+44 5801 637422', 1, '398029861333842555', 'No.27 Main building, 175 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-11-04', 0, 0, 'masshi', '2007-06-01', 'shinoma1994', '2009-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS349235846501', '傅家明', 0, '+1 718-027-0013', 1, '992983857252141250', '10 Flatbush Ave Suite 27, Brooklyn, NY 11225, United States', '1996-05-11', 0, 0, 'kmfu', '2016-12-21', 'fukm', '2019-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS129931172151', '清水絢斗', 0, '+1 614-029-8496', 2, '206691676777582473', '858 East Alley Apartment 31, Columbus, GA 43201, United States', '1985-10-04', 0, 0, 'ayatos', '2010-07-19', 'shima', '2000-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS642456134502', 'Randall Vasquez', 1, '+44 (116) 522 5020', 1, '770070903686676776', 'Unit 48, Oxford Eco Centre, 620 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-04-23', 0, 0, 'vasquezr12', '2010-01-22', 'vran', '2006-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS931689957680', '田中大地', 0, '+86 10-1563-9825', 1, '832012310233194976', '中国北京市海淀区清河中街68号490号25号楼', '1994-07-17', 0, 0, 'daictana', '2008-02-19', 'daicht', '2020-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS801136987860', '阿部美月', 0, '+86 10-080-0800', 0, '327394362192476751', 'No.30 building, 794 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-10-11', 0, 0, 'ami', '2005-11-15', 'mitsukiabe5', '2005-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS406692644833', '白力申', 0, '+1 330-898-9133', 3, '970794866578239829', '877 Collier Road 3rd Floor, Akron, OH 44320, United States', '1995-05-22', 0, 0, 'liksunp1973', '2001-05-08', 'pakliksun99', '2019-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS962800617812', '翁麗欣', 0, '+86 198-5610-4117', 2, '752740055507265578', 'No.28 building, 931 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-10-20', 0, 0, 'laiyany', '2009-01-21', 'yungly46', '2004-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS876970710724', '區仲賢', 0, '+1 330-085-1075', 1, '644678422188279303', '62 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1989-10-16', 0, 0, 'cyau1221', '2016-08-17', 'auchungyin9', '2013-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS418211260692', 'Rebecca Cox', 1, '+81 90-0616-0260', 2, '857053818290327779', '日本ならし西大寺赤田町一丁目7番18号23階', '1998-10-03', 0, 0, 'rc1981', '2006-02-12', 'rebecc', '2021-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS198555367831', 'Maria Foster', 1, '+44 (1223) 39 4311', 3, '948752672826797006', 'Unit 1, Oxford Eco Centre, 3 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-11-22', 0, 0, 'fostermaria', '2005-07-09', 'mfo6', '2011-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS895013296860', 'Russell Webb', 1, '+86 138-6106-0915', 4, '069773365542552373', 'No.38 building, 490 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-10-02', 0, 0, 'russell4', '2003-06-29', 'webbrussell', '2008-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS308291851450', '徐震南', 1, '+86 10-2451-9889', 1, '139132084297719742', 'No.35 building, 465 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-01-20', 0, 0, 'zhennan6', '2008-08-17', 'zhennanxu10', '2015-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS939963632119', '宣志遠', 0, '+1 718-429-3541', 2, '054686346301970752', '528 Columbia St Apartment 37, Brooklyn, NY 11231, United States', '1998-08-23', 0, 0, 'hsuachiyuen', '2020-07-16', 'chiyuenhs', '2015-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS944063902708', 'Kenneth Webb', 0, '+44 5920 776226', 2, '633228521647446518', 'Flat 30, 886 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-02-08', 0, 0, 'kw10', '2010-05-13', 'kennethwebb99', '2020-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS803772213664', '谷口優奈', 1, '+81 90-3494-1146', 0, '770840420497161399', '6F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-05-08', 0, 0, 'taniguchiyu', '2007-02-26', 'yunta', '2018-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS657032417887', 'Charlotte Black', 1, '+86 10-017-6410', 4, '096255244051723889', '中国北京市西城区西長安街938号17栋', '1995-01-01', 0, 0, 'blaccharlotte', '2003-01-02', 'black723', '2018-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS632773466507', '上野美咲', 1, '+86 144-0180-1708', 2, '378509809337549953', '24F, 710 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-09-04', 0, 0, 'mu802', '2015-04-26', 'miueno15', '2008-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS199576135577', '野村美羽', 0, '+86 157-7377-3630', 4, '917407882719324807', '14F, 5 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-08-01', 0, 0, 'nmiu', '2011-07-24', 'miu86', '2007-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS815281634818', '李頴璇', 0, '+86 20-4415-5261', 1, '985240841166947232', 'Room 20, 63 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-08-30', 0, 0, 'wslee', '2005-05-03', 'wslee85', '2016-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS140539383912', '劉明', 1, '+86 20-3394-2972', 1, '352246788881050224', '中国广州市越秀区中山二路474号23楼', '1996-01-27', 0, 0, 'minglau', '2017-12-21', 'mlau305', '2006-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS958439623706', '前田海斗', 1, '+44 (116) 499 4506', 1, '565778386698957349', 'Unit 12, Oxford Eco Centre, 59 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1989-08-17', 0, 0, 'maeda5', '2006-09-10', 'km60', '2019-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS319520292571', '錢安娜', 0, '+81 90-5700-8515', 4, '129956527668924364', '日本おおさかし平野区加美東四丁目9番4号3階', '1986-07-11', 0, 0, 'onc65', '2008-07-22', 'conna', '2020-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS074925672123', '朱子异', 0, '+44 (151) 421 7846', 3, '528091679186723150', 'No.48 Main building, 609 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-04-07', 0, 0, 'zhuziyi2', '2000-01-14', 'zhz', '2018-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS583079401355', '孫俊宇', 0, '+1 212-421-5367', 1, '007760389894561533', '471 Wooster Street Apt 45, New York, NY 10012, United States', '1991-11-17', 0, 0, 'hcy', '2000-12-13', 'hsuan7', '2016-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS518963411505', 'Denise Rice', 1, '+44 5717 054160', 1, '019101175821859293', 'Unit 46, Oxford Eco Centre, 933 Hanover St, Liverpool, L1 4AF, United Kingdom', '1988-01-29', 0, 0, 'denisrice', '2010-02-23', 'ricden', '2018-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS753825732157', '毛天榮', 0, '+81 52-416-6654', 3, '667424627441777826', '日本なごやし北区清水三丁目19番19号36号室', '1993-07-31', 0, 0, 'mtw', '2013-08-26', 'mo41', '2012-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS990446511705', '尹嘉伦', 1, '+44 (116) 692 4204', 3, '002536481404695155', 'Unit 14, Oxford Eco Centre, 311 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-02-19', 0, 0, 'yinji5', '2019-06-28', 'jialun312', '2016-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS559148233941', '原悠人', 0, '+81 70-8010-6846', 0, '498914822364222200', '30-kai, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1985-01-13', 0, 0, 'hara812', '2011-09-24', 'yutohara905', '2004-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS820462062488', 'Eva Fernandez', 1, '+86 184-6542-3489', 2, '836404750080826157', 'No.18 building, 457 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-06-17', 0, 0, 'eva7', '2021-10-29', 'eva13', '2014-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS165772935665', '向晓明', 1, '+81 66-402-5704', 0, '477240660203578069', '日本おおさかし東住吉区東田辺三丁目27番16号35階', '1993-07-02', 0, 0, 'xiang117', '2008-09-26', 'xx8', '2020-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS702787993929', '斉藤葉月', 0, '+44 7292 583203', 1, '753121020215012777', 'Unit 41, Oxford Eco Centre, 161 Regent Street, London, W1B 2LX, United Kingdom', '1993-12-31', 0, 0, 'saitoh', '2005-02-09', 'saito6', '2012-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS041923397089', '湯安娜', 1, '+1 213-089-9261', 0, '283447485306903014', '779 Wall Street Apartment 19, Los Angeles, CA 90003, United States', '1987-09-28', 0, 0, 'onton', '2021-02-23', 'ontong', '2004-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS093144116955', 'Sean Murphy', 1, '+44 5561 708910', 3, '047840303797332362', 'Unit 17, Oxford Eco Centre, 429 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-09-30', 0, 0, 'murphsean', '2001-08-30', 'ms4', '2019-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS950743549472', '千葉明菜', 0, '+1 838-435-5738', 3, '376199746418427177', '229 Lark Street Suite 12, Albany, NY 12210, United States', '1987-01-22', 0, 0, 'akinchiba', '2004-12-16', 'chiba5', '2001-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS509197892733', '宮本美緒', 0, '+81 3-0179-1989', 2, '763908501291638597', '日本東京品川区東五反田五丁目2番2号34階', '1985-02-18', 0, 0, 'mio1953', '2005-05-26', 'miymio', '2019-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS735410148104', '唐宇宁', 0, '+86 760-966-7571', 3, '023251926599961479', '中国中山京华商圈华夏街76号11号楼', '1986-04-21', 0, 0, 'yunitang', '2008-08-06', 'yunintang3', '2003-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS600279425166', 'Frederick Aguilar', 0, '+86 28-5844-8432', 4, '198846354166586209', '中国成都市成华区玉双路6号206号7室', '1986-06-18', 0, 0, 'aguilarfrederick', '2020-09-28', 'aguilar00', '2011-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS761544582533', '木下美月', 1, '+86 172-9949-6505', 0, '298170067041996189', '中国东莞环区南街二巷367号19号楼', '1994-01-13', 0, 0, 'mitsuki2', '2013-07-26', 'mitsuki708', '2001-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS012337081093', '谷口結翔', 0, '+44 (1865) 04 1728', 1, '134997615598548872', 'Unit 31, Oxford Eco Centre, 449 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-05-12', 0, 0, 'yuitotaniguchi', '2010-11-16', 'yuit', '2010-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS380496840124', '梁心穎', 1, '+81 70-2715-8573', 0, '397836761286786251', '31F, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-12-14', 0, 0, 'sumwing1118', '2005-10-22', 'swleun', '2011-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS187395142918', '薛杰宏', 1, '+86 199-8449-4747', 2, '520437365686256223', 'Room 12, 149 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-11-17', 0, 0, 'jiehongx9', '2002-01-09', 'jxue', '2000-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS659740979440', '中山大地', 1, '+86 164-3782-0151', 2, '754841582940782092', 'Room 29, CR Building, 768 Jianxiang Rd, Pudong, Shanghai, China', '1993-08-26', 0, 0, 'nakayamadaichi', '2016-12-31', 'nakayd', '2006-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS020383268655', '上野紗良', 1, '+86 21-178-2591', 3, '841100813791350037', 'No.13 building, 265 Binchuan Rd, Minhang District, Shanghai, China', '1998-09-09', 0, 0, 'ues2', '2007-06-25', 'sarau', '2002-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS953148403204', '薛天榮', 1, '+81 70-2281-8512', 0, '120982646178563094', '17F, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-07-22', 0, 0, 'sittw7', '2018-10-05', 'tinwings', '2021-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS802813711402', '戴岚', 0, '+86 192-4542-3282', 2, '843388139370609656', '中国中山紫马岭商圈中山五路83号华润大厦5室', '1986-02-16', 0, 0, 'dal', '2002-08-15', 'lan328', '2002-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS632115634471', '邵宇宁', 1, '+44 5355 610788', 1, '761308625706873669', 'Flat 37, 836 Hanover Street, London, W1S 1YD, United Kingdom', '1988-02-16', 0, 0, 'yuningshao630', '2009-08-16', 'yuning1', '2007-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS144161212211', '太田葵', 1, '+1 213-278-5840', 3, '727262458231307414', '409 Figueroa Street Suite 9, Los Angeles, CA 90037, United States', '1997-08-25', 0, 0, 'aoo1957', '2000-02-23', 'otaoi', '2007-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS832690159321', '馬國榮', 1, '+44 5853 539111', 3, '263792778242557849', 'Block 38, 501 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-06-29', 0, 0, 'ma320', '2005-12-24', 'kwma75', '2010-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS164597388166', '柴田玲奈', 1, '+86 10-985-6958', 2, '537684119353328036', '中国北京市東城区東直門內大街160号14楼', '1989-02-06', 0, 0, 'renashibata', '2004-12-28', 'rena79', '2018-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS649281772955', '李安娜', 0, '+81 80-8027-4472', 4, '041972629365954561', '日本東京港区東新橋一丁目5番2号11階', '1992-07-23', 0, 0, 'lee3', '2013-12-10', 'leeon1213', '2013-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS828792150310', '渡辺玲奈', 0, '+1 718-291-3563', 2, '538955344571582999', '333 Nostrand Ave Suite 12, Brooklyn, NY 11216, United States', '1998-11-14', 0, 0, 'satoren', '2011-09-10', 'satr', '2011-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS572564326425', '高永發', 0, '+1 213-058-8845', 3, '517365086095930641', '273 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-12-16', 0, 0, 'kaowingfat', '2015-05-08', 'kao2003', '2011-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS574364407388', '小島美羽', 0, '+86 10-3307-4750', 4, '195955940724152905', '4F, 65 Sanlitun Road, Chaoyang District, Beijing, China', '1994-07-19', 0, 0, 'kojimiu', '2020-02-24', 'kojima16', '2019-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS540901074363', 'Russell Dixon', 1, '+86 28-442-8521', 3, '529482839513382265', 'No.33 building, 633 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-08-09', 0, 0, 'rdixon1230', '2019-02-22', 'rdixon', '2014-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS072384878663', '张震南', 1, '+81 66-705-7627', 4, '314483437849026099', '日本おおさかし東住吉区東田辺三丁目27番1号44階', '1986-03-06', 0, 0, 'zhaz', '2002-08-20', 'zhang404', '2009-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS812939279588', '胡宇宁', 1, '+81 90-3566-4510', 1, '001980532464469116', '日本なごやし北区清水三丁目19番17号21号室', '1989-06-18', 0, 0, 'hu204', '2017-03-20', 'huyun1980', '2020-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS477760248865', 'Ricky Silva', 1, '+81 11-316-2750', 2, '763713817588522896', 'Rm. 35, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-08-13', 0, 0, 'ricky3', '2014-07-31', 'rickys7', '2001-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS196808325782', '吳潤發', 1, '+44 (161) 677 6856', 3, '167226866882108410', 'Flat 39, 211 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-03-03', 0, 0, 'yunfatng', '2001-06-01', 'ngyf1013', '2006-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS874932079054', '石子韬', 1, '+1 312-608-7780', 3, '847977053073201008', '178 Rush Street Apartment 17, Chicago, IL 60611, United States', '1993-08-16', 0, 0, 'zitaos', '2007-06-11', 'shizitao', '2020-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS629970601367', '向致远', 0, '+86 20-2571-8330', 2, '114158662373958521', 'No.23 building, 946 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-10-30', 0, 0, 'zhiyuanx418', '2008-06-26', 'zhiyuan7', '2011-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS118044478294', '黎家玲', 0, '+81 66-895-9641', 3, '911245362758208827', '日本おおさかし西成区天神ノ森二丁目1番5号38階', '1986-10-09', 0, 0, 'kll', '2019-10-27', 'kllai708', '2020-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS579272016563', '叶云熙', 1, '+86 755-674-0247', 4, '389638141864802635', 'Room 6, CR Building, 767 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-04-25', 0, 0, 'yyunxi', '2008-09-17', 'ye305', '2010-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS498679689072', '小林絢斗', 1, '+81 3-0710-6376', 1, '519625967689555178', '日本東京品川区東五反田五丁目2番4号23階', '1986-07-30', 0, 0, 'akobay312', '2012-09-18', 'kobayashiay705', '2012-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS218794249268', '村田桜', 1, '+1 312-535-6899', 3, '435603908617042970', '110 North Michigan Ave Apartment 18, Chicago, IL 60611, United States', '1998-11-28', 0, 0, 'sakurmurata', '2002-02-02', 'muras', '2019-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS305812844583', 'Nicole Payne', 1, '+81 90-5361-9533', 4, '258302234358222776', '日本おおさかし東住吉区東田辺三丁目27番4号22階', '1992-04-04', 0, 0, 'payne6', '2015-09-29', 'payne6', '2011-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS261417627011', '曾慧儀', 0, '+1 614-571-4384', 2, '522749927088349530', '189 East Cooke Road Apartment 23, Columbus, GA 43214, United States', '1992-01-22', 0, 0, 'wytsang', '2007-04-15', 'tsang1953', '2005-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS155957189992', 'Ryan Stephens', 1, '+86 28-0226-7436', 0, '052057616484778856', 'No.22 building, No. 222, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-03-03', 0, 0, 'stephens5', '2016-05-07', 'sr10', '2002-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS067344725146', '藍世榮', 1, '+81 66-897-3334', 1, '659085978243856553', '19-kai, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-10-02', 0, 0, 'saiwingl85', '2009-10-04', 'swlam', '2003-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS653055372609', 'Lois Baker', 0, '+81 3-8603-8524', 2, '657814511826125737', 'Rm. 12, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-09-11', 0, 0, 'baklois', '2013-09-03', 'lbaker', '2021-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS964303201368', '尹詠詩', 0, '+86 191-6347-7176', 4, '026646846413092738', 'No.18 building, 690 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-10-11', 0, 0, 'wingszey1001', '2005-01-13', 'wingszeyi', '2010-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS874957188087', '遠藤美咲', 1, '+44 (1223) 74 8334', 1, '846450142566821444', 'Flat 23, 830 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-10-21', 0, 0, 'endomis', '2010-03-31', 'miend', '2008-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS767632361639', 'Luis Olson', 0, '+81 80-9899-3175', 2, '966251107281369083', '日本なごやし北区清水三丁目19番16号41階', '1995-05-10', 0, 0, 'oluis106', '2012-01-29', 'ol81', '2006-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS914070778635', '陶睿', 0, '+86 21-5967-6767', 0, '984930980316561370', '中国上海市浦东新区橄榄路841号20楼', '1988-07-09', 0, 0, 'taorui', '2011-11-02', 'taor5', '2004-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS382735256966', '菊地明菜', 0, '+81 11-389-4700', 1, '206066119037825981', 'Rm. 12, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-04-09', 0, 0, 'kikuchi8', '2017-07-30', 'akinakiku6', '2011-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS780110135411', '井上光', 1, '+81 74-807-1855', 1, '949658363922276244', '12-kai, 1-7-6 Saidaiji Akodacho, Nara, Japan', '1987-06-06', 0, 0, 'inouhikaru1', '2005-08-17', 'hiinoue3', '2001-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS157691466625', '島田彩乃', 1, '+86 10-7903-4404', 1, '175210473398144796', '中国北京市海淀区清河中街68号678号35栋', '1995-11-12', 0, 0, 'shay', '2021-01-23', 'sa17', '2004-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS461577625633', '薛睿', 1, '+81 66-005-0934', 2, '722317417510902634', '日本おおさかし近江堂一丁目7番8号12階', '1990-03-17', 0, 0, 'ruixue1127', '2006-02-11', 'ruxu', '2008-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS053387211604', 'Nicole Tucker', 1, '+44 (20) 1186 4257', 1, '147260067024224804', 'Flat 19, 448 Maddox Street, London, W1S 1PU, United Kingdom', '1990-03-21', 0, 0, 'nicoletuck9', '2013-10-21', 'nicoletuc7', '2013-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS136313604336', '加藤百花', 1, '+81 11-371-7828', 2, '783385139105275504', '27F, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-27', 0, 0, 'momokakato', '2005-09-08', 'mokato', '2011-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS657541129353', '島田玲奈', 1, '+1 330-041-6988', 2, '354387236819877293', '662 West Market Street Apt 25, Akron, OH 44333, United States', '1989-11-06', 0, 0, 'shimrena', '2013-06-10', 'shimada923', '2003-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS344248606707', 'Paul Harris', 1, '+86 166-7938-6379', 0, '010258919646436195', '中国广州市海珠区江南西路597号19室', '1994-01-28', 0, 0, 'hpaul97', '2004-04-21', 'harrispa907', '2017-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS025073766858', '李璐', 0, '+81 66-341-8812', 2, '881706695391431243', '日本おおさかし西成区出城一丁目1番9号9階', '1994-02-17', 0, 0, 'lilu502', '2001-10-26', 'lilu1', '2021-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS351992472692', 'Diane Kelley', 0, '+86 177-4993-6886', 0, '167999102324036923', '中国成都市锦江区人民南路四段991号28号楼', '1990-09-04', 0, 0, 'kelldiane1103', '2014-01-02', 'diakelle', '2003-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS902399706183', 'Harry Russell', 0, '+1 213-171-3402', 0, '188756704183334475', '394 Wall Street Apt 45, Los Angeles, CA 90003, United States', '1988-07-31', 0, 0, 'hrussell', '2002-02-23', 'rh59', '2005-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS783035221558', 'Willie Holmes', 0, '+86 136-0328-2210', 1, '206589115808444404', '中国深圳罗湖区蔡屋围深南东路390号1号楼', '1996-02-13', 0, 0, 'who', '2016-05-02', 'holmew916', '2001-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS875045062509', '楊家輝', 0, '+86 769-400-2346', 1, '573285244492438035', 'No.26 building, 972 Dongtai 5th St, Dongguan, China', '1987-05-16', 0, 0, 'yeung314', '2016-10-31', 'ykf6', '2000-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS912661308065', '麥志遠', 1, '+1 718-148-2579', 4, '779986138885590612', '146 Nostrand Ave Apartment 7, Brooklyn, NY 11216, United States', '1992-10-13', 0, 0, 'cyma3', '2008-07-14', 'makcy1', '2007-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS526234744576', '島田和真', 0, '+44 5850 018541', 1, '480234070246239172', 'Flat 11, 59 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-06-27', 0, 0, 'ks86', '2002-08-08', 'kazushimada', '2008-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS904146497045', '區仲賢', 1, '+1 213-351-1844', 2, '864899814098918762', '833 Alameda Street Apt 16, Los Angeles, CA 90002, United States', '1994-08-02', 0, 0, 'cyau', '2010-11-04', 'chungyinau2', '2018-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS644496266987', 'Christina Taylor', 0, '+1 330-006-4451', 1, '858045332587184086', '866 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1990-11-20', 0, 0, 'taylorch', '2003-12-02', 'taychri2', '2002-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS752174716823', '袁祖兒', 1, '+44 5652 339047', 0, '656961827553584051', 'Unit 21, Oxford Eco Centre, 352 Portland St, Manchester, M1 3LA, United Kingdom', '1994-07-08', 0, 0, 'cyyuen', '2006-09-07', 'yuency1964', '2002-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS859975600556', '卢杰宏', 1, '+86 199-8598-0236', 0, '340507540170917181', 'No.48 building, 150 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-03-02', 0, 0, 'jieholu', '2012-07-02', 'lujiehong55', '2012-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS231104850639', '河野玲奈', 1, '+86 755-911-5760', 0, '559052801709403864', '中国深圳罗湖区蔡屋围深南东路144号50室', '1991-01-14', 0, 0, 'kono2011', '2014-05-30', 'konorena', '2014-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS657853113200', '丸山悠人', 1, '+1 330-976-4582', 4, '952224751687998292', '141 West Market Street 3rd Floor, Akron, OH 44333, United States', '1993-03-06', 0, 0, 'yutomaruyama623', '2018-12-14', 'yutomaruyama2003', '2017-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS789455852267', '萧晓明', 0, '+44 (1223) 77 2973', 2, '405319600354866987', 'Block 1, 793 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-04-15', 0, 0, 'xixiao212', '2012-04-28', 'xiaox8', '2013-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS046654363773', 'Paul Rodriguez', 0, '+81 80-7010-8375', 3, '745393309986378773', 'Rm. 8, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-04-08', 0, 0, 'paulr', '2009-10-11', 'paurodriguez1', '2006-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS992491267273', '曹杰宏', 1, '+1 213-989-5112', 1, '300821528206237204', '692 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1998-08-12', 0, 0, 'jiehongcao', '2014-11-30', 'cji9', '2020-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS055461106433', 'Emma Ford', 0, '+86 153-6087-7945', 2, '954406257242779614', '中国深圳罗湖区蔡屋围深南东路941号华润大厦32室', '1988-10-19', 0, 0, 'ford07', '2007-02-03', 'eford94', '2009-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS764500079792', '井上愛梨', 0, '+86 10-1529-3788', 1, '191642458914554457', 'Room 2, CR Building, 188 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-07-02', 0, 0, 'inoue53', '2019-08-18', 'airino', '2007-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS345988300459', 'Timothy West', 1, '+86 769-0870-9866', 4, '172704511041647909', 'Room 22, CR Building, 460 Kengmei 15th Alley, Dongguan, China', '1995-05-27', 0, 0, 'westtimothy', '2017-12-29', 'timothy44', '2017-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS293678368869', '曾明', 0, '+86 130-3668-2613', 3, '835793280956693704', 'Room 46, 438 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-03-09', 0, 0, 'mingtsang', '2018-07-03', 'tsangming606', '2008-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS275209098071', '江子韬', 0, '+81 90-8077-9985', 3, '890790023881355158', '24F, 3-9-7 Gakuenminami, Nara, Japan', '1995-01-29', 0, 0, 'jiangzi', '2018-01-18', 'jiang1126', '2003-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS953338779744', '森陸', 1, '+81 80-4061-8444', 3, '458958060381695256', '17F, 1-6-10, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-05-26', 0, 0, 'rikum1', '2020-09-04', 'riku1016', '2022-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS801554924101', '岡田花', 1, '+44 (116) 550 8320', 1, '105719780784043053', 'Unit 30, Oxford Eco Centre, 983 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-06-07', 0, 0, 'okadahana', '2010-04-13', 'okadahana', '2011-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS466302905496', '金宇宁', 0, '+44 7057 856665', 3, '055391596166263670', 'Unit 12, Oxford Eco Centre, 57 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-04-27', 0, 0, 'jinyun', '2019-01-23', 'jinyuning', '2007-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS555449829986', '餘永權', 0, '+1 213-625-6269', 0, '416685593057497239', '227 Alameda Street Suite 38, Los Angeles, CA 90002, United States', '1998-05-07', 0, 0, 'yuewk', '2006-05-07', 'yuewk', '2002-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS823873892082', '池田蓮', 1, '+86 172-4649-8890', 4, '976598048542136144', '中国北京市朝阳区三里屯路575号15号楼', '1998-12-05', 0, 0, 'ren3', '2011-11-08', 'ikedaren', '2019-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS116567075429', '罗安琪', 0, '+44 7396 190931', 1, '209155628239839239', 'No.18 Main building, 511 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-11-14', 0, 0, 'luo620', '2010-10-15', 'luanqi1947', '2003-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS957729401516', '青木紗良', 1, '+81 90-4931-1397', 2, '891132241731250684', '33F, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-09-26', 0, 0, 'aokisara', '2009-09-01', 'aokisara', '2015-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS288847607561', '谢云熙', 1, '+86 193-8969-3186', 1, '760629069187845785', '中国北京市東城区東直門內大街31号25室', '1999-02-09', 0, 0, 'yxie4', '2001-07-20', 'xie722', '2011-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS121520985327', '渡部舞', 0, '+81 90-0737-8338', 2, '252818465610000886', 'Rm. 35, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-10', 0, 0, 'watanabe1999', '2007-06-09', 'wmai', '2013-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS330154253339', '许子异', 1, '+1 330-563-2196', 0, '846765756307538295', '93 Riverview Road Apt 47, Akron, OH 44313, United States', '1989-07-10', 0, 0, 'ziyxu', '2013-02-21', 'ziyixu', '2018-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS003865898789', '何睿', 1, '+86 190-7904-4672', 0, '820855829360350650', 'Room 19, 590 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-07-10', 0, 0, 'rui618', '2007-06-06', 'rui825', '2009-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS597179638585', '謝惠敏', 0, '+81 52-694-0884', 1, '905784501926066485', '25-kai, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-11-04', 0, 0, 'waimantse', '2022-01-14', 'waimantse4', '2015-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS180375948440', 'Johnny Ramirez', 0, '+44 (1865) 00 5786', 2, '129104310586384764', 'Block 46, 262 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-08-30', 0, 0, 'ramirez9', '2006-07-12', 'ramirez825', '2004-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS656002331840', '姚發', 1, '+86 160-6709-9783', 4, '897961517720260279', 'Room 16, 585 Yueliu Rd, Fangshan District, Beijing, China', '1990-12-31', 0, 0, 'yeowfat', '2002-01-07', 'yfa', '2013-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS255745278419', 'Jonathan Kelley', 0, '+1 212-824-2783', 3, '522996930633060222', '976 West Houston Street 3rd Floor, New York, NY 10014, United States', '1999-01-10', 0, 0, 'jonathan2', '2005-02-23', 'kelleyjon', '2012-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS276892397665', 'Jacob Rodriguez', 0, '+86 141-1550-3227', 2, '931710132281297728', 'Room 46, CR Building, 325 Kengmei 15th Alley, Dongguan, China', '1988-11-11', 0, 0, 'rodriguezjac1014', '2022-01-05', 'jacorodriguez88', '2000-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS338061802757', '樊詩君', 0, '+1 838-553-7393', 2, '460743114405073221', '886 State Street Suite 29, Albany, NY 12203, United States', '1994-03-01', 0, 0, 'fan2002', '2003-06-06', 'skfan7', '2015-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS772056526031', '雷家強', 0, '+86 21-568-5269', 3, '422651181006968728', '中国上海市浦东新区橄榄路78号42栋', '1998-09-03', 0, 0, 'kakel802', '2007-10-12', 'loui55', '2009-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS366561883121', 'Pamela Dixon', 0, '+81 66-295-5764', 2, '170991952696962558', '日本おおさかし西成区天神ノ森二丁目1番17号15階', '1994-09-26', 0, 0, 'pameladixon9', '2015-11-19', 'pamela10', '2019-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS616147699394', 'Virginia Robertson', 0, '+86 760-0337-1331', 2, '826053206831766490', 'No.22 building, 669 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-11-06', 0, 0, 'robvirginia19', '2015-10-26', 'virginia402', '2007-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS710276218869', '中野絢斗', 0, '+1 312-613-0586', 4, '500592518166294068', '772 Pedway 3rd Floor, Chicago, IL 60601, United States', '1986-06-15', 0, 0, 'anakano', '2010-05-29', 'ayaton65', '2013-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS609588248538', '邵玲玲', 0, '+44 (1865) 90 2468', 0, '681579145206908925', 'Unit 43, Oxford Eco Centre, 811 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-11-14', 0, 0, 'linglingsiu', '2017-08-16', 'lingling8', '2003-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS740617772376', '松井七海', 1, '+44 7983 788460', 3, '585007495061599467', 'Unit 43, Oxford Eco Centre, 500 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-07-26', 0, 0, 'nanamimatsui3', '2005-10-04', 'nanamatsui921', '2000-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS568294280250', 'Katherine Moreno', 1, '+1 614-510-0090', 4, '279184677450195712', '26 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1990-12-02', 0, 0, 'moreno905', '2006-09-25', 'kam', '2004-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS035949125076', 'Bryan Tran', 1, '+86 769-9799-9969', 2, '250579542164934626', '中国东莞环区南街二巷101号37号楼', '1997-10-21', 0, 0, 'bryantran81', '2007-10-28', 'trbryan', '2013-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS215502049225', '高橋陽菜', 0, '+44 (1865) 57 0016', 0, '068820293800543008', 'No.2 Main building, 418 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-01-17', 0, 0, 'hinatakahashi828', '2013-04-30', 'takahhina', '2008-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS167592282310', '葉嘉欣', 1, '+81 11-067-8736', 4, '903290934049727294', '日本札幌白石区菊水三条五丁目2番11号3階', '1987-01-01', 0, 0, 'yky', '2000-12-21', 'yipky1108', '2007-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS892407288150', '今井愛梨', 1, '+1 330-321-2708', 4, '734624942043261796', '871 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1991-04-08', 0, 0, 'airiimai', '2016-08-20', 'imaairi10', '2015-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS867616834463', '安藤海斗', 1, '+1 213-076-1899', 3, '881086002258393881', '404 Sky Way Apt 12, Los Angeles, CA 90043, United States', '1995-06-26', 0, 0, 'ando1', '2011-08-14', 'kando', '2016-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS188614715209', 'Gerald Meyer', 0, '+44 (121) 265 7592', 0, '094744086517442804', 'No.8 Main building, 369 New Street, Birmingham, B2 4DB, United Kingdom', '1993-12-25', 0, 0, 'geralm', '2017-09-10', 'gmeyer', '2013-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS682832392840', '唐秀英', 1, '+86 156-7891-1922', 3, '304154012669270244', '中国北京市海淀区清河中街68号788号3号楼', '1996-12-23', 0, 0, 'tangxiuying', '2013-05-30', 'xiuyingt', '2006-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS166127386013', 'Aaron Parker', 1, '+44 5534 211782', 4, '641414762051462412', 'Block 27, 272 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-07-30', 0, 0, 'aaparke110', '2011-06-07', 'paraaron', '2018-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS822177994154', '黃天榮', 0, '+81 80-7425-8689', 2, '372441471831189233', '日本札幌厚別区上野幌一条二丁目1番10号23号室', '1989-10-12', 0, 0, 'wtinwing415', '2014-08-16', 'wotw322', '2001-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS823342814897', '馬朝偉', 0, '+86 174-3173-5420', 1, '240010787847039456', 'Room 21, 949 Sanlitun Road, Chaoyang District, Beijing, China', '1994-07-22', 0, 0, 'ma8', '2007-04-08', 'machiuwai', '2017-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS400706630097', '顾子异', 0, '+81 3-7198-1359', 1, '970000270989022558', '日本東京品川区東五反田五丁目2番9号12号室', '1990-01-15', 0, 0, 'ziyigu55', '2021-02-03', 'ziyigu', '2019-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS304776476805', '三浦健太', 0, '+81 80-4976-6513', 0, '848958461106539918', '日本おおさかし近江堂一丁目7番11号14階', '1997-05-22', 0, 0, 'kenta1215', '2013-11-22', 'kentamiu', '2011-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS328638533739', 'Amber Vasquez', 1, '+1 838-801-5279', 2, '523750125555626024', '509 State Street 3rd Floor, Albany, NY 12203, United States', '1989-08-04', 0, 0, 'vasqamber', '2011-05-15', 'ambevasq', '2009-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS662725423282', 'Thelma Ellis', 1, '+1 718-317-4966', 3, '224448763897655819', '680 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-10-08', 0, 0, 'ellist', '2017-04-04', 'ellisthe815', '2011-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS310448098891', '钟詩涵', 0, '+1 330-535-4768', 3, '375390945634398551', '409 Fern Street 3rd Floor, Akron, OH 44307, United States', '1996-12-22', 0, 0, 'zhong06', '2021-11-07', 'sz9', '2002-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS149232324636', 'Todd Hall', 1, '+86 185-4317-3407', 1, '472449867038809137', '中国深圳福田区深南大道887号14楼', '1992-12-28', 0, 0, 'todd42', '2018-07-26', 'haltodd212', '2003-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS281240734263', '森優奈', 1, '+1 614-728-7292', 0, '585233408660104679', '556 Tremont Road Suite 20, Columbus, GA 43212, United States', '1993-10-28', 0, 0, 'myuna', '2000-10-27', 'yunamori1204', '2020-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS120029002737', '余嘉伦', 1, '+86 180-1711-5340', 2, '263425488630654165', '中国北京市朝阳区三里屯路89号10室', '1997-05-16', 0, 0, 'yu18', '2014-10-19', 'yujialun', '2007-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS215861313014', '林慧嫻', 1, '+81 3-0377-0750', 2, '497642456589906160', 'Rm. 16, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-02-17', 0, 0, 'lam2', '2020-08-17', 'waihanlam', '2001-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS751245867858', '蒋子韬', 0, '+81 70-6463-1471', 1, '228038206845540920', '日本札幌清田区真栄四条五丁目19番4号27号室', '1987-11-05', 0, 0, 'jiangzit', '2019-10-28', 'zitaoji3', '2002-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS937670301151', '陈宇宁', 1, '+81 90-9879-8537', 1, '275984928455438434', '15-kai, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-12-11', 0, 0, 'chenyun1107', '2018-05-04', 'chen2', '2005-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS390683535319', 'Craig King', 0, '+81 11-773-7367', 3, '763677099768318819', '49-kai, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-07-12', 0, 0, 'craigking817', '2009-02-19', 'kingc', '2019-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS711153014706', '袁子韬', 1, '+44 (121) 230 5014', 2, '470206011231934041', 'Flat 47, 261 New Street, Birmingham, B2 4DB, United Kingdom', '1993-04-06', 0, 0, 'yuan514', '2019-06-08', 'zitaoyuan', '2017-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS630181892614', '文杰倫', 0, '+86 148-4942-0528', 2, '175016175452329474', 'No.26 building, 376 Ganlan Rd, Pudong, Shanghai, China', '1985-07-24', 0, 0, 'chiehlunman52', '2005-10-26', 'manchiehlun', '2000-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS848416608538', '清水絢斗', 0, '+86 769-193-2119', 3, '722628989855447420', 'Room 42, 661 Kengmei 15th Alley, Dongguan, China', '1986-01-24', 0, 0, 'shimizuayato6', '2006-09-17', 'ayatos9', '2015-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS612609322472', '任榮發', 1, '+86 28-8189-8088', 0, '073325732565700758', 'Room 24, No.631, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1987-12-29', 0, 0, 'wfyam10', '2019-08-19', 'wingfaty', '2015-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS743828823357', '袁仲賢', 0, '+1 212-497-9671', 1, '787673691387608199', '624 Wooster Street Apartment 10, New York, NY 10012, United States', '1988-01-20', 0, 0, 'yuency', '2017-11-13', 'chungyin916', '2003-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS225715636302', '江力申', 1, '+44 7730 354133', 2, '958252586341449120', 'Flat 24, 255 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1995-04-05', 0, 0, 'kongliksun', '2019-02-24', 'kols', '2009-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS405268545690', '清水陸', 0, '+44 (161) 986 8366', 3, '832607591039977469', 'No.2 Main building, 226 Portland St, Manchester, M1 3LA, United Kingdom', '1986-11-12', 0, 0, 'shimizuri7', '2021-10-31', 'rishimizu', '2015-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS603433657117', '鄧慧嫻', 1, '+81 74-118-5597', 2, '246123177011965787', '日本ならし西大寺赤田町一丁目7番18号4階', '1995-09-25', 0, 0, 'whtan3', '2015-02-21', 'tangwh', '2019-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS615263259721', '遠藤彩乃', 1, '+81 90-3067-5764', 1, '560750089402239082', '11-kai, 3-9-2 Gakuenminami, Nara, Japan', '1991-11-19', 0, 0, 'eayano', '2004-06-14', 'ayano4', '2011-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS243945241938', '苏璐', 0, '+81 52-242-5074', 3, '669559843604049819', '16F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-22', 0, 0, 'sulu83', '2006-09-14', 'su91', '2000-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS110573262564', '丁致远', 1, '+86 181-0100-7362', 3, '770415962690009153', '中国北京市朝阳区三里屯路488号华润大厦9室', '1988-06-15', 0, 0, 'zhiyuan7', '2015-04-13', 'diz', '2007-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS472733739253', 'Mario Johnson', 1, '+1 330-036-2435', 3, '726645089252336758', '502 West Market Street 3rd Floor, Akron, OH 44333, United States', '1993-12-17', 0, 0, 'johnson10', '2010-12-21', 'jom', '2004-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS425903929591', '罗睿', 0, '+86 182-4140-4081', 1, '576294883413241462', 'No.31 building, 935 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-07-18', 0, 0, 'luoru10', '2006-09-11', 'luor', '2003-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS163054383820', '斉藤瑛太', 0, '+86 141-7110-7016', 2, '457110087266632151', 'Room 28, 18 Lefeng 6th Rd, Zhongshan, China', '1990-09-05', 0, 0, 'eita4', '2020-08-15', 'eits52', '2019-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS617559916872', 'Rebecca Brown', 0, '+86 190-8084-7916', 0, '913020327526268112', '中国上海市浦东新区健祥路212号29室', '1990-03-26', 0, 0, 'brownrebec5', '2013-06-20', 'brownr1', '2010-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS664038816527', '新井花', 1, '+44 (1223) 19 8149', 2, '204562030215462788', 'No.22 Main building, 723 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-03-10', 0, 0, 'hara', '2003-11-03', 'arai77', '2005-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS493816015983', '薛杰宏', 1, '+44 5307 055107', 3, '096716794664049772', 'Unit 5, Oxford Eco Centre, 672 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-04-07', 0, 0, 'jixue58', '2014-09-21', 'xuej', '2019-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS487131045523', '桜井明菜', 0, '+81 70-0025-6450', 3, '104998481320258365', '47F, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-09-03', 0, 0, 'sakurai723', '2004-06-06', 'sakurai7', '2003-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS432765764405', '蒋云熙', 1, '+81 70-1689-0008', 3, '337936589479551256', '47-kai, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1987-03-31', 0, 0, 'yjiang', '2020-12-19', 'yunxijiang', '2019-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS854732417918', '山本湊', 1, '+81 3-9935-9267', 3, '876131312689430547', '49-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-05-02', 0, 0, 'minayama', '2004-05-11', 'minatoyamamoto', '2013-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS563566924190', '狄裕玲', 0, '+81 90-5056-3247', 3, '997725942434118934', '日本なごやし北区清水三丁目19番10号45号室', '1989-08-19', 0, 0, 'tiyl1014', '2002-08-16', 'ylti', '2013-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS382530426388', 'Frederick Castro', 0, '+1 330-863-1166', 1, '306973922599457397', '750 Ridgewood Road Suite 35, Akron, OH 44321, United States', '1995-04-12', 0, 0, 'fc1948', '2010-08-18', 'cfred', '2014-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS838449059334', '阿部陽菜', 1, '+81 52-141-5695', 3, '449553332478331933', '30-kai, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1996-04-04', 0, 0, 'hinabe', '2015-09-04', 'habe', '2019-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS538382873349', '上田和真', 0, '+1 213-429-0830', 0, '567795801207611447', '885 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-03-19', 0, 0, 'uk89', '2017-05-21', 'kazumue8', '2002-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS686568584313', '雷明', 1, '+44 5623 430170', 2, '687948120261501060', 'Flat 2, 486 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-07-12', 0, 0, 'mingl', '2011-03-05', 'lomin79', '2011-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS030333309127', '程嘉伦', 0, '+81 90-1253-5613', 4, '734029901465771251', '日本なごやし北区楠味鋺三丁目80番9号46号室', '1998-12-30', 0, 0, 'jicheng9', '2003-07-29', 'chengjialun', '2003-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS948543302150', 'Monica Rose', 0, '+1 718-550-0617', 3, '428715194750569474', '500 Nostrand Ave Apt 9, Brooklyn, NY 11216, United States', '1995-10-31', 0, 0, 'monicar', '2008-10-22', 'monica214', '2002-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS313889874183', 'Paul Meyer', 0, '+81 70-5429-4309', 0, '229497371705074217', '日本札幌厚別区上野幌一条二丁目1番17号25階', '1986-06-20', 0, 0, 'meyerpau1224', '2002-08-22', 'meyerpaul4', '2010-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS556917535474', '山下百恵', 1, '+81 66-622-6145', 2, '736518060678731400', '日本おおさかし近江堂一丁目7番12号36階', '1992-11-05', 0, 0, 'yamashitamom', '2000-05-22', 'momoeya', '2020-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS680801924807', 'Larry Taylor', 1, '+86 180-7380-0846', 0, '487545990592593493', 'No.26 building, 990 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-10-03', 0, 0, 'larry312', '2011-07-16', 'tlarry', '2020-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS875428264197', '森田葵', 0, '+81 70-0687-6776', 3, '532424834773660722', 'Rm. 36, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-06-21', 0, 0, 'moritaaoi', '2012-07-31', 'moriao', '2009-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS046741269176', '孟致远', 0, '+81 80-2300-2902', 3, '771340978441439528', '日本おおさかし東住吉区東田辺三丁目27番8号11階', '1993-01-02', 0, 0, 'zhiymeng61', '2021-09-01', 'zhiyuan57', '2015-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS800697096652', '武田葵', 1, '+86 21-6509-5211', 1, '699165589388168879', 'No.48 building, 13 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-07-13', 0, 0, 'takedaaoi', '2014-01-03', 'takedaaoi', '2018-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS403927792824', 'Brian Chavez', 0, '+1 614-260-9954', 2, '052412350167898703', '590 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1994-07-16', 0, 0, 'chavez412', '2003-09-26', 'cbrian', '2010-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS154112042080', '邱嘉伦', 1, '+86 10-226-9809', 1, '613556595174612416', '33F, 617 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-07-12', 0, 0, 'jialun217', '2003-06-02', 'jialunqiu810', '2021-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS407262168475', '山下結翔', 0, '+86 145-2502-9631', 3, '058111225488913379', '中国深圳龙岗区学园一巷382号47栋', '1989-12-09', 0, 0, 'yamashita724', '2001-04-07', 'yuyamas', '2019-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS438686084242', '新井愛梨', 1, '+81 90-2772-6186', 3, '861229827187212921', '32-kai, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-01-01', 0, 0, 'araiairi', '2014-09-04', 'arai6', '2011-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS890061778305', '石川美月', 0, '+44 5987 815270', 4, '199534956187599074', 'No.3 Main building, 642 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-05-31', 0, 0, 'ishikawam1215', '2020-05-07', 'mitsuishikawa', '2004-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS276764701860', '何梓晴', 0, '+81 52-494-8092', 1, '576876149637222466', '日本なごやし熱田区千年二丁目5番20号45階', '1988-08-25', 0, 0, 'tcho422', '2008-07-29', 'hotszching', '2019-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS367225596353', '许宇宁', 1, '+44 (20) 3593 3604', 0, '258843206147836464', 'Unit 13, Oxford Eco Centre, 588 Hanover Street, London, W1S 1YD, United Kingdom', '1995-06-04', 0, 0, 'yuning103', '2010-01-24', 'xu42', '2021-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS213416832602', '何嘉伦', 1, '+44 (20) 3619 3880', 1, '428252811619395561', 'Unit 12, Oxford Eco Centre, 148 Maddox Street, London, W1S 1PU, United Kingdom', '1995-11-17', 0, 0, 'jiahe', '2002-12-24', 'jialun9', '2019-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS638836109250', '橋本百恵', 0, '+86 10-5385-5631', 1, '969717788674099762', '中国北京市西城区西長安街323号华润大厦48室', '1987-12-10', 0, 0, 'momoehas', '2020-01-23', 'momoehash1945', '2013-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS077442737722', 'Sarah Boyd', 0, '+86 10-327-9321', 2, '985276052139980331', '29F, 985 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-06-01', 0, 0, 'sarah6', '2006-06-13', 'boydsarah1', '2012-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS442030404078', '袁慧儀', 0, '+44 (151) 178 3083', 1, '311707930223074148', 'Unit 12, Oxford Eco Centre, 343 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-08-20', 0, 0, 'waiyeeyuen1227', '2011-06-30', 'waiyeeyu41', '2006-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS959473344882', '孫裕玲', 1, '+81 74-727-7573', 3, '172221663903831233', '9F, 3-9-18 Gakuenminami, Nara, Japan', '1990-02-26', 0, 0, 'hsuan1989', '2009-10-25', 'hsuan65', '2002-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS756964854007', '西村健太', 1, '+86 178-3692-6832', 4, '485721164606892510', 'Room 26, CR Building, No.258, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1992-05-07', 0, 0, 'nishimura71', '2001-01-23', 'nishik', '2001-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS855751155083', '成梓軒', 1, '+86 135-6231-2760', 1, '388808078950862773', 'Room 21, 769 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-11-27', 0, 0, 'shingtszhin', '2021-01-15', 'shinth', '2020-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS561890812934', 'Dennis Burns', 1, '+86 21-2794-7588', 2, '104979681653197730', '中国上海市徐汇区虹桥路521号27室', '1985-04-03', 0, 0, 'burd53', '2010-03-12', 'dbu3', '2009-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS346698564555', '戴家明', 1, '+81 74-597-6289', 0, '647746721282125549', 'Rm. 22, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1989-04-27', 0, 0, 'daikm719', '2008-10-31', 'kamingd5', '2015-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS418330932806', '薛志遠', 0, '+81 70-6152-1540', 2, '830660630530291035', '日本なごやし北区楠味鋺三丁目80番12号23号室', '1990-07-11', 0, 0, 'sitcy', '2015-12-17', 'sitchiyu2', '2010-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS784236032791', '陶榮發', 1, '+86 769-6644-0946', 3, '804824866506541054', 'Room 18, 952 Huanqu South Street 2nd Alley, Dongguan, China', '1986-11-04', 0, 0, 'wingfat2', '2005-07-18', 'tao7', '2000-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS163344206753', '邓宇宁', 1, '+86 20-871-2117', 0, '596653406794458616', '33F, 99 Jiangnan West Road, Haizhu District, Guangzhou, China', '1989-07-01', 0, 0, 'dengy', '2004-02-21', 'yuningde', '2019-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS476164597677', 'Gregory Bennett', 1, '+81 66-378-2508', 0, '353029702906973910', '日本おおさかし近江堂一丁目7番11号14号室', '1988-06-27', 0, 0, 'bennegregory1981', '2008-08-14', 'bennettg09', '2010-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS847258528804', '渡辺凛', 0, '+1 718-205-1419', 3, '061537017799221180', '478 Nostrand Ave Suite 28, Brooklyn, NY 11216, United States', '1993-08-23', 0, 0, 'rinsat', '2004-10-22', 'rinsato', '2000-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS191008559339', '市川一輝', 1, '+1 330-892-6030', 0, '768372402316867824', '188 Collier Road Apt 15, Akron, OH 44320, United States', '1986-11-01', 0, 0, 'ichikawaikki', '2020-06-27', 'iich', '2020-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS006957585451', '彭淑怡', 1, '+1 213-653-9327', 0, '402354401814653966', '981 Sky Way Suite 37, Los Angeles, CA 90043, United States', '1986-12-20', 0, 0, 'sypang', '2011-07-29', 'psukyee', '2016-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS863124741250', 'Antonio Myers', 1, '+81 11-899-6674', 3, '217413975632957865', 'Rm. 27, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-11-21', 0, 0, 'antonio1955', '2012-08-24', 'antonio76', '2014-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS472634277462', '邵天榮', 0, '+44 (1865) 53 9788', 2, '630645617799758762', 'Unit 10, Oxford Eco Centre, 240 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-03-27', 0, 0, 'siutw6', '2003-05-15', 'siutw', '2006-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS124205114854', '任國榮', 0, '+44 5500 882113', 1, '829063130505821379', 'No.31 Main building, 370 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-12-17', 0, 0, 'ykwokwing85', '2017-01-03', 'kwokwing94', '2000-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS158880109723', '房霆鋒', 0, '+1 330-024-8973', 2, '266292154210698289', '27 Collier Road Apartment 24, Akron, OH 44320, United States', '1988-05-03', 0, 0, 'tffon', '2011-11-07', 'tingfung10', '2001-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS129848473183', '彭詩涵', 0, '+81 70-6014-5385', 4, '927542013527233714', '2F, 5-2-7 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-04-19', 0, 0, 'pengshihan', '2020-02-27', 'pengshi', '2008-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS901195075297', '遠藤光', 1, '+86 198-5407-3388', 4, '509663996525693264', 'No.45 building, 310 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-06-02', 0, 0, 'hikaruendo1943', '2020-11-27', 'hikaruendo', '2012-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS129907188730', '斉藤一輝', 0, '+81 80-9255-9289', 3, '963102087588253491', '日本ならし学園南三丁目9番5号24階', '1994-04-14', 0, 0, 'ikksaito913', '2009-04-03', 'sikki103', '2016-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS312700675397', 'Margaret Coleman', 0, '+1 312-318-4349', 1, '803931068932762569', '52 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1990-03-11', 0, 0, 'comar', '2006-05-20', 'comargaret85', '2017-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS315851926694', '龙睿', 1, '+86 21-1414-2087', 1, '628970828955217343', 'Room 38, 909 Jianxiang Rd, Pudong, Shanghai, China', '1998-04-19', 0, 0, 'long7', '2001-01-19', 'longrui', '2005-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS495315756770', '方仲賢', 1, '+86 148-3474-6324', 1, '779984245749227189', '3F, 721 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1986-08-13', 0, 0, 'cyfong426', '2009-11-19', 'fong1026', '2001-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS255150883718', '原田光莉', 1, '+86 133-4427-7609', 2, '623981686355342901', '28F, 723 Yueliu Rd, Fangshan District, Beijing, China', '1997-04-05', 0, 0, 'haradhik', '2009-08-23', 'hikari508', '2001-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS792694121614', '阎秀英', 0, '+44 (116) 626 2199', 2, '999243538129875990', 'No.35 Main building, 540 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-08-04', 0, 0, 'xiuyiyan', '2006-01-16', 'xiuyan09', '2015-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS419261608522', '毛詠詩', 0, '+86 193-1227-0575', 1, '840191865020510802', '39F, 187 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-02-20', 0, 0, 'wingsze7', '2003-01-01', 'wingszemo', '2013-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS669108833416', 'Keith Griffin', 0, '+86 10-355-6559', 3, '020474809932229126', '中国北京市东城区东单王府井东街87号36楼', '1990-03-25', 0, 0, 'griffin829', '2002-07-14', 'griffin410', '2021-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS459828230871', '谢詩涵', 1, '+81 70-8911-0764', 3, '677311493454527721', '40F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-08', 0, 0, 'xshihan', '2001-02-09', 'shxie4', '2002-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS526219332449', 'Dennis Collins', 1, '+81 11-761-8448', 2, '575367949093730260', '33F, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-03-17', 0, 0, 'dennic', '2019-08-03', 'collins411', '2003-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS072022234544', '田村湊', 0, '+81 66-193-8918', 3, '530233489129889840', 'Rm. 47, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1997-07-17', 0, 0, 'tammina1120', '2000-04-08', 'minatota', '2021-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS140248537232', '譚杰倫', 1, '+86 149-3231-5955', 1, '795563398398958736', '中国北京市西城区西長安街761号40楼', '1989-06-03', 0, 0, 'chiehluntam', '2021-02-13', 'chiehluntam', '2004-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS099679021958', '鄭志遠', 0, '+81 74-759-4660', 2, '771372758850458644', '日本ならし大和郡山市本庄町一丁目1番6号38階', '1985-02-14', 0, 0, 'chiyuen3', '2011-11-15', 'chengchiyuen724', '2017-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS797312678201', 'Theresa Reed', 0, '+81 11-511-8337', 4, '953470264564813416', '日本札幌清田区真栄四条五丁目19番13号22階', '1990-03-10', 0, 0, 'rtheresa89', '2019-02-22', 'reetheresa223', '2011-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS609081078514', '雷秀文', 1, '+86 140-0452-2336', 1, '099902005645770444', 'No.47 building, 686 Binchuan Rd, Minhang District, Shanghai, China', '1995-03-22', 0, 0, 'losm', '2020-04-06', 'saumanloui', '2000-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS553644897564', '林杰宏', 0, '+1 212-507-0425', 2, '255070254516401093', '517 Fifth Avenue Apt 29, New York, NY 10017, United States', '1991-02-15', 0, 0, 'lijiehong10', '2012-01-19', 'jieli7', '2001-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS240504083130', '杉山光莉', 1, '+86 769-2952-3098', 2, '710740043622440104', '中国东莞东泰五街120号23栋', '1998-08-19', 0, 0, 'hikari6', '2004-08-07', 'hsugiyama', '2011-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS642156409047', '福田大輔', 1, '+86 167-7625-2493', 4, '988882680640352448', 'Room 3, No.196, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-04-28', 0, 0, 'fukudadai1969', '2021-06-01', 'fukuddaisuke', '2005-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS277198429231', '彭宇宁', 1, '+86 769-038-0965', 1, '514837872044543774', 'Room 31, CR Building, 465 Kengmei 15th Alley, Dongguan, China', '1985-03-24', 0, 0, 'ype', '2021-01-13', 'pengyunin', '2020-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS911637603847', 'Ronald Medina', 0, '+81 70-6897-2470', 1, '683936363931471837', '29-kai, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-09-04', 0, 0, 'ronm', '2010-04-18', 'rme10', '2001-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS864528522517', 'Barbara Woods', 0, '+44 5468 316271', 3, '629237460662760387', 'No.7 Main building, 31 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-03-27', 0, 0, 'woba', '2009-09-28', 'woodbarbara97', '2017-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS633821753501', '姜詩涵', 0, '+81 66-308-7875', 3, '623034139175315090', '日本おおさかし東住吉区東田辺三丁目27番9号24階', '1998-12-03', 0, 0, 'shj4', '2013-12-15', 'shihan07', '2011-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS390940673146', '宮本結翔', 1, '+1 614-529-0833', 3, '813757978429177760', '459 Wicklow Road Apt 31, Columbus, GA 43204, United States', '1988-06-04', 0, 0, 'yuitomi', '2015-11-17', 'miyamotoyuito8', '2006-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS186650720820', '吕晓明', 0, '+44 (151) 970 7970', 2, '785175100450073560', 'Unit 10, Oxford Eco Centre, 492 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-01-11', 0, 0, 'xiaoming1', '2012-09-22', 'xiaominglu217', '2011-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS070365802550', '中島詩乃', 1, '+81 74-636-1476', 4, '440919993586391664', 'Rm. 9, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-07-16', 0, 0, 'nshi', '2018-08-06', 'shnakajima', '2017-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS241637063317', '渡辺蒼士', 1, '+1 212-759-1010', 4, '149715915088249821', '13 Fifth Avenue Apt 14, New York, NY 10017, United States', '1996-08-16', 0, 0, 'satao', '2008-04-13', 'aoshisato', '2000-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS690880552891', '中島美緒', 0, '+44 (116) 467 6636', 0, '819638927369298503', 'No.6 Main building, 680 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-12-28', 0, 0, 'nakajmio1025', '2006-04-03', 'nakamio', '2000-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS531633656354', '竹内彩乃', 1, '+44 5526 857669', 2, '933019748680583391', 'Flat 11, 436 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1989-12-29', 0, 0, 'aytakeuchi', '2019-09-27', 'ayanotakeu', '2004-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS913692626915', 'Gerald Morgan', 0, '+81 11-988-5655', 3, '776494896703814302', '日本札幌厚別区上野幌一条二丁目1番16号27階', '1992-09-15', 0, 0, 'geraldmorgan', '2016-11-16', 'morgan1974', '2020-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS311922838115', '劉慧敏', 0, '+81 74-592-5190', 2, '516280330938787556', 'Rm. 39, 3-9-10 Gakuenminami, Nara, Japan', '1996-03-10', 0, 0, 'wmla', '2017-03-03', 'lauwm', '2007-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS051705892039', 'Nathan Jimenez', 1, '+81 80-6919-4639', 3, '560254577858271058', '日本札幌白石区菊水三条五丁目4番2号27階', '1988-11-05', 0, 0, 'nathanjimenez8', '2007-11-25', 'nathan216', '2005-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS785225874948', '王家文', 0, '+44 7461 218586', 1, '453552789807257439', 'No.42 Main building, 667 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-02-07', 0, 0, 'kmwon08', '2018-12-09', 'kamanwo87', '2003-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS018118219161', '顾致远', 1, '+86 10-295-1280', 1, '638533945077243694', 'Room 25, CR Building, 201 Sanlitun Road, Chaoyang District, Beijing, China', '1992-11-15', 0, 0, 'zhiyuangu6', '2017-11-16', 'guzhiyu', '2015-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS043109022097', '佘浩然', 0, '+81 11-036-0552', 3, '605573708538953633', 'Rm. 42, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-03-26', 0, 0, 'hoyinsheh5', '2020-06-15', 'shehhoy7', '2013-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS676874864784', '森田蒼士', 1, '+81 70-9098-3194', 3, '049711037392820519', 'Rm. 33, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-11-14', 0, 0, 'morita2', '2001-09-05', 'moritaaoshi', '2002-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS990416697570', '石川悠人', 1, '+1 212-410-8465', 4, '845369553106125844', '174 West Houston Street Apt 30, New York, NY 10014, United States', '1990-10-28', 0, 0, 'ishiyuto215', '2008-02-12', 'yuto7', '2009-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS617738136495', '石田美緒', 0, '+81 80-2366-1318', 3, '515250015067468206', '日本東京渋谷区代々木二丁目3番6号21階', '1994-07-14', 0, 0, 'ishida9', '2020-08-03', 'ishida95', '2019-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS735382300940', '梅心穎', 0, '+81 80-0063-0267', 0, '493567470627837116', '日本おおさかし東住吉区東田辺三丁目27番11号49階', '1994-04-09', 0, 0, 'sumwingmui', '2011-03-20', 'muisu', '2008-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS288428202082', '杉山優奈', 0, '+86 143-5387-7530', 2, '301252577464389971', '中国中山紫马岭商圈中山五路761号14栋', '1987-06-28', 0, 0, 'yunasugiyama', '2010-02-27', 'yunasugiyama1121', '2004-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS533506199725', '中野舞', 1, '+1 718-938-3912', 1, '148328223500098517', '812 Flatbush Ave Apt 28, Brooklyn, NY 11225, United States', '1994-08-11', 0, 0, 'nakanomai1020', '2006-10-11', 'nakanomai123', '2021-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS315873255657', '藤家輝', 1, '+81 70-1485-1654', 3, '659262127110106472', 'Rm. 13, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-04-28', 0, 0, 'tkf5', '2019-12-24', 'kft', '2000-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS554962088078', 'Cheryl Taylor', 1, '+86 144-4022-7030', 0, '141125766163358726', 'Room 27, CR Building, 651 Dong Zhi Men, Dongcheng District, Beijing, China', '1985-11-27', 0, 0, 'taylorc', '2005-10-02', 'chtaylor', '2002-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS619173417350', 'Ruby Washington', 1, '+81 11-522-9434', 4, '937218973096677735', '23F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-12-27', 0, 0, 'rubywashington', '2019-09-02', 'washington6', '2013-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS095210489634', '木下聖子', 1, '+81 90-7130-6217', 4, '990901812406494383', '日本おおさかし西成区出城一丁目1番18号38階', '1989-02-02', 0, 0, 'seikokinoshita1', '2008-03-10', 'ski', '2004-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS556558261559', '陶安琪', 0, '+86 173-1278-8882', 2, '808559514009611491', '中国上海市浦东新区橄榄路43号华润大厦26室', '1996-04-04', 0, 0, 'taoanqi', '2005-08-02', 'tanq66', '2001-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS520769970872', '陈云熙', 1, '+86 139-0244-7491', 1, '237010661105270092', '中国东莞珊瑚路889号14栋', '1993-11-20', 0, 0, 'chyu', '2006-09-25', 'yche7', '2011-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS907666897575', 'Ralph Hawkins', 1, '+86 20-080-0906', 0, '460225176466311931', 'Room 45, 348 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-02-07', 0, 0, 'hawkinsr66', '2020-10-07', 'ralph8', '2002-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS381483998254', '甘永權', 0, '+81 70-1668-1037', 1, '179726531585487311', '日本ならし学園南三丁目9番18号33階', '1998-03-12', 0, 0, 'wingkuenkam2', '2000-12-14', 'wkkam', '2001-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS754221514900', '萧睿', 1, '+1 718-585-6425', 1, '017676167451576994', '883 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1994-02-15', 0, 0, 'ruxiao', '2013-09-13', 'xiaorui1971', '2002-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS413734765092', '錢朝偉', 0, '+81 74-355-6363', 2, '330859207916522193', '9-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-10-14', 0, 0, 'chincw506', '2004-07-04', 'chiuwai1027', '2007-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS450574145299', '謝淑怡', 0, '+86 145-5121-0485', 0, '868276788689537290', '中国深圳福田区深南大道450号40号楼', '1999-02-08', 0, 0, 'sukyeets', '2018-06-07', 'tsukyee', '2012-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS494308560829', '原百恵', 0, '+81 90-4766-6570', 1, '452239155213946591', 'Rm. 44, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1989-11-29', 0, 0, 'mohara', '2018-03-06', 'haramomoe01', '2001-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS121368241291', '李梓晴', 0, '+81 11-559-2419', 3, '144078590923363444', '日本札幌中央区宮の森四条六丁目1番3号39号室', '1993-04-18', 0, 0, 'tszchinglee', '2010-08-16', 'tcle10', '2011-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS148117971553', '许云熙', 1, '+86 158-6789-3477', 3, '556086027503722051', '中国成都市成华区玉双路6号890号48室', '1990-09-24', 0, 0, 'xu1', '2011-05-24', 'yunxixu', '2020-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS623856759759', '關玲玲', 1, '+44 5452 929742', 4, '580865441518452669', 'Unit 50, Oxford Eco Centre, 667 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-03-05', 0, 0, 'kwanlingling', '2006-03-17', 'kwlingling', '2018-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS876364895008', 'Florence Holmes', 1, '+81 90-0639-0014', 4, '403719387297233094', 'Rm. 23, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-08-23', 0, 0, 'fholm', '2010-01-23', 'holmesflor', '2004-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS724986451591', '杉山愛梨', 0, '+44 5085 459276', 1, '723601923450043385', 'No.36 Main building, 75 Maddox Street, London, W1S 1PU, United Kingdom', '1995-01-14', 0, 0, 'airi10', '2017-05-28', 'aisugiyama220', '2001-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS192731866161', 'Mildred Long', 0, '+44 5283 919075', 1, '484013416832061013', 'No.7 Main building, 481 Regent Street, London, W1B 2LX, United Kingdom', '1994-12-28', 0, 0, 'longmild527', '2012-03-17', 'milong1', '2007-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS395142104336', 'Margaret Alexander', 1, '+81 52-855-5863', 1, '484142795392216217', 'Rm. 1, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-03-08', 0, 0, 'margaretalexander88', '2001-12-27', 'margareta79', '2013-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS474742124033', 'Mary Gutierrez', 0, '+81 52-307-6078', 0, '259285481203248661', '日本なごやし北区清水三丁目19番11号26階', '1991-04-30', 0, 0, 'gutierrez6', '2009-04-08', 'gutierrezmary10', '2000-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS784917300622', 'Judy Mendez', 0, '+44 (1223) 76 9835', 3, '607444440937785011', 'Flat 39, 287 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-11-01', 0, 0, 'judy9', '2016-05-20', 'jumendez', '2016-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS288485879799', '何慧琳', 0, '+81 74-109-0444', 3, '982220876182701760', '39-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-06-03', 0, 0, 'ho6', '2018-03-06', 'hwailam218', '2015-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS662588340957', 'Clifford Stone', 0, '+81 70-5344-6309', 4, '849982636837497764', '日本ならし大和郡山市本庄町一丁目1番17号37階', '1989-11-06', 0, 0, 'stonecli', '2002-06-15', 'stoclifford9', '2011-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS512090430416', 'Marvin Mendez', 0, '+81 74-949-1221', 2, '044626826756155477', '日本ならし学園南三丁目9番12号31号室', '1994-08-30', 0, 0, 'marvinmendez', '2004-07-27', 'marvimend', '2003-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS726766857169', '宮本瑛太', 0, '+81 70-6969-8120', 2, '606855624640150653', '17-kai, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-03-25', 0, 0, 'eim830', '2016-04-15', 'meit59', '2006-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS118602598799', '鈴木玲奈', 0, '+1 212-375-1812', 1, '793469193440438908', '488 Fifth Avenue Apartment 23, New York, NY 10017, United States', '1998-05-09', 0, 0, 'suzuki1993', '2016-02-19', 'renasuzuki1', '2018-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS005939826808', 'Amanda Jenkins', 1, '+81 80-1993-7742', 1, '208657403771733342', '33F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-12-03', 0, 0, 'amaj2004', '2022-01-05', 'ajen', '2014-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS442351075896', '湯國榮', 0, '+86 159-3681-5406', 3, '201528128506243732', 'No.13 building, 391 Ganlan Rd, Pudong, Shanghai, China', '1995-03-02', 0, 0, 'kwokwing9', '2014-12-29', 'tongkw', '2013-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS175172668811', 'Rosa Richardson', 0, '+1 213-072-3400', 3, '873333200602343694', '342 Sky Way Suite 44, Los Angeles, CA 90043, United States', '1997-02-05', 0, 0, 'richardsonrosa1995', '2005-08-16', 'rosarichardson', '2015-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS677864315965', '劉頴思', 0, '+86 21-262-2830', 2, '378561718007011924', '中国上海市徐汇区虹桥路962号45栋', '1989-06-20', 0, 0, 'wingszelau', '2002-08-19', 'lauwingsze2', '2003-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS519363270586', '孫慧敏', 1, '+1 213-282-6140', 2, '103236013588309492', '38 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1987-11-17', 0, 0, 'hswaiman812', '2003-04-17', 'wmhsuan10', '2006-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS696354957597', '田中詩乃', 1, '+81 52-233-6419', 2, '848961279935254607', '日本なごやし瑞穂区河岸町四丁目20番12号9階', '1994-08-04', 0, 0, 'tanaka5', '2021-10-10', 'tanashin', '2006-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS010607346402', '朱國明', 0, '+86 146-2278-0618', 2, '147959299839466756', '中国北京市房山区岳琉路292号华润大厦25室', '1998-09-28', 0, 0, 'kwokmingc1', '2005-12-18', 'chukwokming19', '2007-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS074822155541', '松本美緒', 1, '+86 20-7302-3712', 4, '478175518403927660', 'Room 48, CR Building, 397 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1995-06-05', 0, 0, 'mioma5', '2021-04-24', 'matsumotomio4', '2000-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS954964357692', '雷慧珊', 1, '+81 52-759-8106', 0, '598007525630814934', '日本なごやし熱田区千年二丁目5番13号8階', '1989-01-05', 0, 0, 'wsloui', '2015-08-11', 'lowaisan1', '2009-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS322166312830', '山本百恵', 0, '+44 7722 967668', 3, '818210334112375890', 'Block 41, 670 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-24', 0, 0, 'ymo', '2014-06-20', 'yamamotomo', '2004-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS385622555531', '竹内美咲', 0, '+44 7275 792841', 2, '006739044079162714', 'Block 8, 540 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-08-06', 0, 0, 'takeuchi224', '2002-02-25', 'takeuchimisaki5', '2000-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS126960255639', '史云熙', 1, '+1 614-589-4537', 3, '496047436278101495', '472 East Cooke Road Apt 45, Columbus, GA 43214, United States', '1985-09-13', 0, 0, 'ys1983', '2014-10-31', 'yunxishi', '2014-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS051260347495', 'Glenn Perez', 0, '+1 718-844-3453', 2, '288437467755797917', '866 1st Ave Apartment 31, Brooklyn, NY 11220, United States', '1993-01-17', 0, 0, 'pglenn8', '2000-12-28', 'perg', '2007-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS017405858967', '鐘杰倫', 0, '+86 197-3023-6414', 3, '105648596361247631', 'No.25 building, 752 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-02-24', 0, 0, 'chucl923', '2007-12-11', 'chiehlun824', '2021-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS126142157534', '冯璐', 0, '+86 171-8768-8882', 1, '183590454667292306', '中国上海市闵行区宾川路691号34号楼', '1997-09-02', 0, 0, 'fenglu208', '2011-07-09', 'lu208', '2017-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS846924186762', '高木百花', 0, '+1 212-896-7312', 2, '231393398889566726', '461 Fifth Avenue Suite 28, New York, NY 10017, United States', '1996-10-26', 0, 0, 'mot57', '2021-04-24', 'tmomoka', '2006-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS995638782297', '黃青雲', 0, '+81 11-204-9579', 1, '985500895999013841', 'Rm. 2, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-08-01', 0, 0, 'chingwanw7', '2008-01-09', 'chingwanwong', '2017-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS271665960153', '胡岚', 0, '+81 3-3434-9412', 0, '178099149032942978', '日本東京港区東新橋一丁目5番15号8階', '1992-05-06', 0, 0, 'lanh', '2006-04-23', 'lanhu1129', '2002-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS541430205116', '宮本大輔', 0, '+86 191-8267-3723', 3, '363839940116276094', '中国广州市天河区天河路360号20号楼', '1986-11-03', 0, 0, 'daisuke804', '2002-02-28', 'daisuke602', '2006-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS859536684655', '伊藤陽菜', 1, '+86 193-1460-0997', 3, '928869797543506372', '中国上海市徐汇区虹桥路264号华润大厦10室', '1985-06-26', 0, 0, 'itohina2020', '2018-08-03', 'ith4', '2012-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS829396508940', '有村美緒', 0, '+81 66-539-9578', 0, '200598517342074900', '日本おおさかし近江堂一丁目7番19号8階', '1993-06-23', 0, 0, 'amio49', '2018-01-07', 'arimio', '2015-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS461932300227', '戚明', 0, '+81 90-0715-1229', 1, '964327384504054075', '日本なごやし瑞穂区河岸町四丁目20番20号39階', '1992-08-31', 0, 0, 'ming8', '2015-11-02', 'mingchic', '2002-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS900897715538', 'Grace Wilson', 1, '+81 70-3850-0284', 3, '819561167047601553', '日本おおさかし近江堂一丁目7番9号28階', '1986-05-16', 0, 0, 'wgra', '2017-06-29', 'gwilson', '2013-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS843127969284', 'Lillian Wright', 0, '+86 149-2566-8261', 1, '269261855094863182', 'No.14 building, 315 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-08-04', 0, 0, 'lillwr', '2009-05-11', 'wlill', '2016-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS006364412303', '史秀英', 1, '+81 52-883-8076', 0, '868560441419738325', 'Rm. 24, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-02-01', 0, 0, 'shixiu216', '2004-10-07', 'sxiuying', '2016-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS042008885922', '平野光莉', 1, '+81 80-5163-1427', 3, '261042926510559015', '日本おおさかし平野区加美東四丁目9番19号34階', '1987-11-28', 0, 0, 'hih320', '2019-11-19', 'hhikari208', '2003-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS399545430607', '渡部愛梨', 1, '+86 137-8275-3324', 3, '237714272032348675', '中国成都市成华区二仙桥东三路111号50楼', '1991-03-12', 0, 0, 'wata', '2005-01-14', 'airi702', '2002-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS084012837214', '徐安琪', 0, '+81 66-727-9902', 2, '003632528305473121', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1991-10-26', 0, 0, 'anqixu420', '2020-10-31', 'xuanqi', '2003-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS913682351592', 'Robert Stephens', 1, '+1 614-684-1460', 4, '519821006508942753', '44 Wicklow Road Apt 21, Columbus, GA 43204, United States', '1993-08-24', 0, 0, 'stephens4', '2018-04-04', 'robes9', '2013-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS176992236109', '官慧敏', 1, '+86 160-1717-9611', 4, '495947498823354871', '1F, 609 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-04-02', 0, 0, 'kowm', '2010-05-11', 'kwm', '2019-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS718823976500', '黄詩涵', 0, '+86 177-3789-1018', 0, '948679081442231635', '中国北京市朝阳区三里屯路646号20号楼', '1997-04-01', 0, 0, 'shihanh', '2014-10-09', 'hshihan', '2015-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS798070956382', 'Kathleen Hicks', 1, '+81 70-1000-9788', 0, '784412003141967927', 'Rm. 8, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1998-12-10', 0, 0, 'hicks807', '2020-11-19', 'hicksk', '2002-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS128881794206', 'Philip Mason', 0, '+44 5803 199316', 3, '376276158314042435', 'Unit 28, Oxford Eco Centre, 808 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1990-06-30', 0, 0, 'masonphilip', '2015-03-26', 'mason7', '2019-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS654092189421', '藍國權', 1, '+81 52-344-5216', 3, '911398299504100791', 'Rm. 44, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-05-16', 0, 0, 'kwol4', '2022-02-19', 'kklam1215', '2006-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS003161704640', 'Joshua Edwards', 1, '+1 614-588-9977', 2, '291393386564378400', '940 East Alley Suite 2, Columbus, GA 43201, United States', '1990-12-07', 0, 0, 'joshuedwards80', '2003-11-12', 'edwj', '2014-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS039249770990', '何家明', 0, '+86 177-3472-1462', 2, '009012502429869564', '中国中山京华商圈华夏街623号48室', '1993-01-02', 0, 0, 'hokm1', '2018-02-17', 'kamingho10', '2019-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS868360531014', '沈詩涵', 0, '+86 154-5370-3383', 3, '238301109653600226', 'Room 23, CR Building, 712 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-09-11', 0, 0, 'sheshih', '2001-06-10', 'shihan5', '2018-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS141424331666', '苗慧琳', 0, '+81 90-4200-3012', 1, '096464492141468079', '日本おおさかし西成区出城一丁目1番1号22階', '1990-09-22', 0, 0, 'miwl', '2020-12-30', 'wlm7', '2019-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS546941461468', 'Marcus Stewart', 1, '+81 90-4827-2503', 4, '110916078071623570', '35F, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-05-16', 0, 0, 'smar', '2019-06-28', 'mste', '2016-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS612080114849', 'Carmen Spencer', 0, '+86 186-9354-5855', 1, '533270255460619532', '中国东莞坑美十五巷211号17室', '1996-09-28', 0, 0, 'spencer10', '2006-06-27', 'sca1999', '2008-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS050431164281', '廖秀英', 0, '+81 90-2126-2893', 4, '135847659133775188', '日本札幌清田区真栄四条五丁目19番11号11階', '1995-03-07', 0, 0, 'xliao', '2001-07-03', 'xiuying92', '2007-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS451327166402', '和田玲奈', 0, '+44 5224 386959', 3, '669432633556027461', 'No.50 Main building, 462 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-10-25', 0, 0, 'warena', '2010-03-09', 'wadarena', '2016-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS409473406001', '朱頴璇', 0, '+81 66-312-7589', 1, '232139688331737032', '14F, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1999-01-22', 0, 0, 'wingsuench', '2001-04-25', 'wschu', '2009-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS056155157742', '方晓明', 1, '+44 5709 980071', 1, '933624303332496851', 'No.43 Main building, 80 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1999-01-19', 0, 0, 'fxiao', '2000-01-26', 'xiaomingfan1952', '2018-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS417669559779', 'Steve Carter', 0, '+81 11-686-1036', 1, '100740713804625503', '日本札幌白石区菊水三条五丁目2番15号31階', '1992-11-06', 0, 0, 'cst', '2020-03-12', 'stevecarter', '2007-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS333560215239', '黎麗欣', 1, '+81 66-588-9107', 3, '659353264894866495', '日本おおさかし西成区出城一丁目1番3号22号室', '1986-07-01', 0, 0, 'lyl123', '2016-01-14', 'laiyanlai1991', '2001-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS731953563288', '池田百花', 0, '+86 755-5481-6957', 2, '562891395368557379', '中国深圳龙岗区布吉镇西环路778号华润大厦42室', '1989-02-26', 0, 0, 'ikedamomoka', '2006-07-29', 'ikedamomoka90', '2017-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS567326386306', '王云熙', 1, '+86 10-0044-3759', 1, '462766610648938941', 'Room 6, 448 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-10-11', 0, 0, 'ywan', '2007-05-19', 'yunxiwang', '2005-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS073146694906', '薛杰宏', 1, '+86 755-5168-1921', 3, '715893488211092667', 'No.16 building, 295 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-04-01', 0, 0, 'jiehongx', '2016-02-11', 'xuejieh1', '2019-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS301921258308', '近藤凛', 1, '+86 180-5862-5071', 4, '152146230938473821', '中国成都市锦江区红星路三段167号2楼', '1988-04-10', 0, 0, 'kondorin1122', '2020-02-29', 'rinkond', '2021-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS950279646471', '熊晓明', 1, '+81 70-3675-2448', 4, '360550066136393394', '日本東京千代田区丸の内一丁目6番15号5号室', '1995-07-14', 0, 0, 'xiaomingx1127', '2013-09-29', 'xixiong', '2019-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS602170534934', '梅曉彤', 1, '+44 5631 854446', 4, '745249762257490922', 'Unit 28, Oxford Eco Centre, 15 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-01-06', 0, 0, 'muihiutung', '2008-03-29', 'muihiutung1123', '2016-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS720759533663', 'Lisa King', 1, '+44 (1865) 92 4568', 0, '152767367572439867', 'No.31 Main building, 665 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-12-08', 0, 0, 'kilisa', '2018-01-11', 'king424', '2008-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS549100145942', '遠藤優奈', 1, '+1 212-578-1705', 1, '913462665994512048', '211 West Houston Street Apt 27, New York, NY 10014, United States', '1989-12-30', 0, 0, 'endyun', '2019-01-25', 'yuna2', '2015-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS678888242599', '文家文', 0, '+86 769-3109-2035', 1, '609046017517539662', 'No.21 building, 122 Shanhu Rd, Dongguan, China', '1989-11-14', 0, 0, 'kmman402', '2008-08-19', 'makm2', '2011-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS559494458647', '内田舞', 0, '+81 66-581-4958', 2, '894716237063008756', '日本おおさかし平野区加美東四丁目9番10号34号室', '1996-05-07', 0, 0, 'mai3', '2020-03-21', 'uchima', '2005-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS597493028761', '陳梓軒', 0, '+81 70-0377-0295', 4, '391313174349382644', '3F, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-08-22', 0, 0, 'chanth1996', '2012-02-16', 'tszhinchan207', '2004-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS898734061938', 'Helen Jordan', 0, '+1 838-726-3007', 1, '422781251410969929', '590 State Street Apartment 37, Albany, NY 12203, United States', '1991-10-27', 0, 0, 'jordan6', '2004-01-08', 'johel', '2001-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS252369602472', '于子韬', 1, '+81 70-3821-0738', 2, '357312994278594065', '48F, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1986-11-22', 0, 0, 'yuzitao', '2001-08-31', 'zitaoyu', '2007-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS032448381820', '徐榮發', 0, '+81 66-117-4998', 3, '002522520323359777', '日本おおさかし西成区天神ノ森二丁目1番15号9階', '1986-11-28', 0, 0, 'wingfat64', '2015-08-26', 'tsuiwf3', '2005-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS614720571627', '馬志明', 0, '+81 74-541-1954', 0, '774828624650561077', '日本ならし西大寺赤田町一丁目7番1号33階', '1993-05-30', 0, 0, 'cmm207', '2015-09-07', 'chm9', '2007-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS900884050188', '宮崎陸', 1, '+81 3-8959-1304', 3, '677327071836496240', 'Rm. 7, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-10-31', 0, 0, 'rikumiyazaki7', '2021-12-01', 'rikumiya', '2012-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS778047404007', '陆安琪', 0, '+1 312-257-9212', 4, '061727766991233147', '556 Pedway Apartment 50, Chicago, IL 60601, United States', '1994-02-24', 0, 0, 'luanq10', '2008-04-08', 'luanqi', '2005-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS223357089247', 'Eddie Herrera', 0, '+81 52-090-2442', 3, '210144163284427677', 'Rm. 50, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-12-25', 0, 0, 'eddieherrera1224', '2005-11-18', 'herreraeddi', '2020-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS401255901327', '麥惠敏', 0, '+81 3-1662-5208', 2, '647184741230156481', '日本東京千代田区丸の内一丁目6番19号3号室', '1997-07-24', 0, 0, 'mawaiman', '2007-02-21', 'mwm', '2008-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS075081206634', 'Frances Ford', 1, '+86 760-4781-8452', 3, '195961929008478212', 'No.9 building, 420 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-08-04', 0, 0, 'ffo', '2021-01-15', 'ffo', '2009-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS145373586588', '藤原葵', 0, '+1 213-539-6368', 0, '095057875128532834', '628 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1998-05-21', 0, 0, 'aoi6', '2017-07-30', 'fujiwara7', '2014-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS544064570890', '石川桜', 1, '+86 146-2256-7984', 0, '247601688348736323', 'Room 36, 78 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-09-06', 0, 0, 'ishikawasa222', '2019-08-27', 'ishikawasakura515', '2020-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS433467421179', '前田光', 0, '+44 (121) 801 3914', 3, '759247157540817407', 'Unit 17, Oxford Eco Centre, 458 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-01-20', 0, 0, 'mhi', '2019-11-14', 'maedahika', '2014-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS762241155481', '中島結翔', 0, '+86 178-8908-6492', 4, '936995793141414837', '中国北京市海淀区清河中街68号986号35号楼', '1996-05-02', 0, 0, 'yuitonakajima1957', '2015-04-04', 'yuitn', '2016-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS743423490689', 'Marie Warren', 1, '+1 213-435-7274', 3, '319979615396038869', '442 Grape Street Suite 16, Los Angeles, CA 90002, United States', '1996-09-22', 0, 0, 'wm805', '2008-08-16', 'wmarie227', '2012-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS576090395069', '梁家玲', 1, '+81 3-0867-7345', 0, '908246494644545678', '日本東京千代田区丸の内一丁目6番3号45号室', '1995-06-20', 0, 0, 'leungkaling9', '2014-12-18', 'kalingl06', '2017-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS305828444479', 'Billy Chen', 1, '+86 10-2948-3636', 3, '046570624056279348', 'Room 1, 426 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-01-16', 0, 0, 'billychen703', '2011-05-24', 'cbill', '2011-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS464115260893', 'Kelly Flores', 1, '+86 199-5801-5751', 3, '755391290137243858', '中国上海市浦东新区橄榄路578号32栋', '1993-12-04', 0, 0, 'kellyflores7', '2014-12-08', 'floreske9', '2018-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS291606947933', '邓璐', 1, '+86 192-1678-6574', 2, '009480633265345025', 'No.29 building, 26 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-09-30', 0, 0, 'dengl', '2022-02-15', 'luden', '2003-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS603793197027', '藤原一輝', 1, '+86 155-0573-6833', 2, '314549767500193458', 'Room 14, 559 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-06-17', 0, 0, 'ikkifujiwara', '2012-03-11', 'fujiwaraikki929', '2003-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS052484036410', '沈晓明', 1, '+86 21-053-3422', 3, '081069747263321221', 'No.13 building, 190 Ganlan Rd, Pudong, Shanghai, China', '1988-10-20', 0, 0, 'shenxiaoming', '2010-06-25', 'xiaomingshe', '2005-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS174210616882', '秦岚', 1, '+86 20-7346-3289', 2, '014794191772677295', '中国广州市白云区机场路棠苑街五巷732号华润大厦22室', '1991-03-30', 0, 0, 'lanqi822', '2001-12-31', 'lanq', '2017-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS673092100878', '今井和真', 0, '+81 80-1475-7259', 3, '579943358690045657', '日本東京港区東新橋一丁目5番7号29階', '1989-01-16', 0, 0, 'kazuma1988', '2019-01-20', 'imakazuma611', '2012-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS397136932957', '毛安琪', 0, '+81 90-5525-8728', 1, '028960491200517243', '日本なごやし守山区瀬古東二丁目171番10号33階', '1992-03-26', 0, 0, 'anqima', '2003-11-04', 'maoan1', '2011-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS261559841395', 'Edith Rice', 0, '+44 7743 577902', 3, '527944480960879696', 'No.17 Main building, 247 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-11-25', 0, 0, 'rice2016', '2014-11-27', 'riceedit11', '2015-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS573264509747', 'Amber Patel', 0, '+81 70-8403-5847', 2, '850765575855326572', '41-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-02-22', 0, 0, 'patel1221', '2006-08-12', 'ap2', '2016-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS639638305906', '郝嘉伦', 1, '+1 330-579-1059', 4, '254639163434464835', '60 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-08-01', 0, 0, 'jialunhao', '2015-11-19', 'hao9', '2018-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS152847823017', '渡辺悠人', 1, '+86 10-3943-7485', 2, '728844459895040182', 'No.23 building, 498 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-08-22', 0, 0, 'satoyuto9', '2015-09-30', 'ysato814', '2012-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS931255017811', '斉藤海斗', 0, '+86 28-8955-9174', 1, '077133274463996130', '中国成都市成华区玉双路6号32号18楼', '1998-03-27', 0, 0, 'kasa', '2002-10-02', 'kaitosaito317', '2019-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS045767394397', '松井百恵', 0, '+1 213-574-4856', 2, '915921303869053531', '504 Figueroa Street Apt 30, Los Angeles, CA 90037, United States', '1992-11-18', 0, 0, 'mmomoe', '2010-01-29', 'mmom', '2011-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS414741937687', 'Karen Harrison', 1, '+86 20-1675-8199', 3, '153726684926093471', 'Room 2, 669 Xiaoping E Rd, Baiyun , Guangzhou, China', '1994-05-07', 0, 0, 'harrisonkaren', '2004-06-23', 'harrisonk', '2002-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS591521593665', 'Christine Phillips', 1, '+44 (161) 873 5999', 3, '730347879795603278', 'Unit 16, Oxford Eco Centre, 479 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-11-18', 0, 0, 'cp5', '2021-12-26', 'pc9', '2017-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS991335932903', '孔璐', 0, '+86 174-2529-9884', 1, '346560259766989015', '中国东莞珊瑚路711号35室', '1996-02-21', 0, 0, 'kl99', '2000-02-19', 'konlu', '2014-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS986307829525', 'Harold Silva', 1, '+86 755-937-4746', 2, '816689508643610862', 'Room 7, 187 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-03-11', 0, 0, 'hasilva', '2001-08-29', 'silva703', '2010-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS136953120294', '孔詩涵', 1, '+86 178-0612-2865', 3, '923395601574596808', 'No.27 building, 44 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-07-14', 0, 0, 'kongshi99', '2021-03-22', 'kongs79', '2005-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS432313789275', '廖志遠', 1, '+86 145-0334-6475', 2, '824993976564029415', '5F, 314 Hongqiao Rd., Xu Hui District, Shanghai, China', '1989-01-20', 0, 0, 'lichi', '2000-04-03', 'cyl', '2017-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS941710656160', '文霆鋒', 1, '+86 755-097-8342', 4, '424659991680471232', 'Room 27, 581 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1992-11-29', 0, 0, 'tingfungma', '2019-02-18', 'tingfungma1026', '2020-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS880007981396', '李安琪', 1, '+44 5327 875917', 4, '275379382848750678', 'Block 45, 236 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-08-05', 0, 0, 'anqili', '2022-02-05', 'lianqi', '2006-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS050110112588', 'Kyle Stewart', 0, '+81 52-639-3311', 0, '190115479962296111', 'Rm. 42, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-11-08', 0, 0, 'skyle507', '2014-09-07', 'stekyle15', '2009-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS999339058142', '金子韬', 1, '+86 10-742-1315', 4, '986710870728125594', 'Room 15, CR Building, 283 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-12-15', 0, 0, 'jinzita', '2020-11-19', 'jinz82', '2004-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS539341473863', '姜慧琳', 0, '+44 5557 926193', 1, '834571054140467425', 'No.2 Main building, 438 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-03-23', 0, 0, 'wailamchang', '2000-02-16', 'chang722', '2013-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS278729276606', '莫震南', 1, '+86 143-6965-1288', 0, '690786510492383124', '中国广州市越秀区中山二路811号华润大厦41室', '1997-06-15', 0, 0, 'moz', '2002-04-21', 'mo4', '2020-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS461355226224', 'Jeffery Diaz', 0, '+81 70-6664-2980', 3, '959859091673439080', '日本なごやし熱田区千年二丁目5番19号31階', '1986-02-03', 0, 0, 'jeffdia', '2006-12-15', 'diaz97', '2001-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS846349405959', '坂本玲奈', 1, '+81 3-6713-5610', 1, '103068067744943839', '29-kai, 3-15-19 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-18', 0, 0, 'sr1108', '2010-04-21', 'sakamotorena', '2020-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS144582533830', '程子韬', 0, '+81 90-8894-5843', 3, '064745079693928896', '日本なごやし北区楠味鋺三丁目80番11号19階', '1998-09-27', 0, 0, 'zitao1024', '2018-03-24', 'zc727', '2014-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS753667934182', '彭秀英', 1, '+86 132-1445-7143', 4, '656912256436676412', '47F, 296 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-12-10', 0, 0, 'xiuyingpen86', '2019-01-20', 'pengxiu', '2017-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS651812780232', '袁安琪', 0, '+1 838-066-9515', 1, '915110520794535342', '628 State Street Apartment 3, Albany, NY 12203, United States', '1989-08-30', 0, 0, 'yueok', '2018-10-25', 'yueok3', '2002-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS037314774200', 'Benjamin Wells', 0, '+1 718-231-4189', 2, '798192229699837908', '551 Columbia St Suite 12, Brooklyn, NY 11231, United States', '1985-11-05', 0, 0, 'benwe91', '2004-08-04', 'bw5', '2015-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS259494557520', '盧慧琳', 0, '+81 74-349-7755', 0, '903021023197596565', '5-kai, 3-9-2 Gakuenminami, Nara, Japan', '1992-04-19', 0, 0, 'wailam20', '2021-12-16', 'lwailam', '2004-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS263374570746', '房國賢', 1, '+86 143-5267-2038', 1, '325825491154468048', '中国东莞珊瑚路914号10楼', '1987-11-03', 0, 0, 'kwokyin5', '2001-08-15', 'fokwokyin6', '2020-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS286125786114', '應學友', 1, '+86 755-816-2166', 0, '199997684139898634', 'No.29 building, 590 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-12-12', 0, 0, 'hokyau2019', '2005-02-26', 'yinghy2019', '2015-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS802255604073', '梅明', 1, '+44 7839 468980', 4, '657998114574527504', 'Flat 34, 164 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-06-17', 0, 0, 'mmi1003', '2014-09-19', 'mum', '2001-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS593378444316', '羅霆鋒', 0, '+86 159-2155-3990', 1, '435490846948717863', '中国中山乐丰六路328号9室', '1993-02-08', 0, 0, 'lo57', '2020-03-19', 'lotf1961', '2018-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS985979124922', 'Catherine Herrera', 0, '+86 760-249-6258', 1, '248270556832379026', '34F, 918 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-07-25', 0, 0, 'herreracatherine', '2015-07-06', 'herrera5', '2004-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS080010143195', '汤睿', 0, '+86 161-7685-0587', 1, '096691034567327927', 'Room 19, CR Building, 224 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-02-26', 0, 0, 'tangrui', '2020-11-22', 'tangru2', '2002-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS392444875504', '山田光莉', 0, '+1 838-845-8054', 3, '562605821735002732', '121 Lark Street 3rd Floor, Albany, NY 12210, United States', '1994-07-30', 0, 0, 'yamadahikari', '2001-06-22', 'yamadahikari219', '2013-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS851560637892', '樊小慧', 1, '+86 760-7026-0543', 1, '859094427988731792', '中国中山乐丰六路962号华润大厦36室', '1994-10-08', 0, 0, 'fansiuwai1977', '2011-09-30', 'siuwai1219', '2000-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS664721809796', 'Wayne Campbell', 0, '+81 3-2787-6506', 1, '292951345453814197', 'Rm. 26, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-11', 0, 0, 'cwa', '2014-02-13', 'wacampbell4', '2006-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS019377511476', '余詩涵', 0, '+81 3-9717-9853', 0, '498803468842189252', '日本東京品川区東五反田五丁目2番8号17階', '1990-04-15', 0, 0, 'yushih', '2010-11-23', 'shihan1110', '2016-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS507997535277', '山下詩乃', 0, '+1 213-733-1900', 2, '951552724423372072', '827 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1996-02-04', 0, 0, 'shiy311', '2016-12-30', 'shyamashita', '2009-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS005536279963', '任詠詩', 1, '+44 7900 056113', 2, '428687123331312848', 'Block 50, 925 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-02-09', 0, 0, 'wsy', '2021-11-09', 'wingsze605', '2018-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS118045297611', 'Bobby Nichols', 0, '+1 614-370-6951', 1, '747974812562047546', '368 Tremont Road Suite 25, Columbus, GA 43212, United States', '1985-07-01', 0, 0, 'bobbynichols', '2005-06-05', 'nichbobby', '2009-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS154236868962', '孙秀英', 1, '+86 760-598-8359', 3, '966573530709512933', '4F, 551 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1988-11-30', 0, 0, 'xiuysun14', '2018-10-15', 'sunxiu13', '2007-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS490114172472', '邵朝偉', 1, '+81 74-744-0348', 3, '676774220661993910', '日本ならし大和郡山市本庄町一丁目1番11号29階', '1994-02-03', 0, 0, 'siuchiuwai', '2007-07-04', 'chiuwai8', '2017-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS391189260807', '郭安琪', 1, '+81 52-888-9745', 2, '815219231537238602', 'Rm. 20, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-12-23', 0, 0, 'guoa', '2005-03-02', 'anqi3', '2006-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS726951707678', 'Henry Edwards', 1, '+86 21-5751-5553', 1, '013361642199072591', '中国上海市徐汇区虹桥路642号14栋', '1986-12-08', 0, 0, 'edwards85', '2004-01-22', 'henryedwards1', '2016-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS358962632566', 'Curtis Myers', 1, '+44 (161) 750 4149', 2, '215014712906657906', 'Flat 40, 508 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-08-12', 0, 0, 'myers927', '2013-04-16', 'curtismy', '2016-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS621636697698', '尹國權', 0, '+86 21-0180-4903', 2, '169630390353316061', '24F, 797 Binchuan Rd, Minhang District, Shanghai, China', '1998-07-10', 0, 0, 'yinkk', '2017-08-14', 'ykk10', '2019-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS952132684606', '朱璐', 1, '+44 (20) 7124 6052', 2, '280253812855528755', 'Block 50, 400 Maddox Street, London, W1S 1PU, United Kingdom', '1993-05-25', 0, 0, 'lzh7', '2012-02-10', 'zhu102', '2002-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS491339002168', '吉田絢斗', 1, '+81 11-052-1580', 3, '592981481606897150', '49F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-12-14', 0, 0, 'ayo', '2017-12-25', 'ayaty307', '2021-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS198900711542', 'Jimmy Burns', 1, '+1 718-028-0743', 1, '170248570945692436', '994 Flatbush Ave Apt 9, Brooklyn, NY 11225, United States', '1994-04-25', 0, 0, 'burnjimmy8', '2001-07-31', 'jburns', '2013-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS692319057251', '莫安琪', 0, '+81 52-097-1102', 2, '761220747093400338', '日本なごやし守山区瀬古東二丁目171番16号43階', '1992-07-08', 0, 0, 'anqimo1', '2014-11-07', 'moa1', '2001-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS489166651215', '中森美緒', 1, '+1 330-007-6122', 2, '581329803563469334', '54 Ridgewood Road Apartment 1, Akron, OH 44321, United States', '1988-03-11', 0, 0, 'mionaka2015', '2006-06-14', 'mionak210', '2017-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS364284763351', 'Christopher Cruz', 1, '+81 90-0916-8844', 1, '128351733855738524', '37F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1996-11-08', 0, 0, 'christophercruz', '2014-06-10', 'cruz4', '2010-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS750866705646', 'Maria Spencer', 1, '+81 80-5696-3241', 1, '732768415521553389', '33-kai, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-01-24', 0, 0, 'marspencer', '2001-07-09', 'maspencer', '2017-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS176719324999', '田村和真', 0, '+81 70-2292-1589', 0, '619338486944223264', '日本なごやし守山区瀬古東二丁目171番5号16階', '1995-08-28', 0, 0, 'kazumatamur8', '2011-08-04', 'tamurka', '2007-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS523228832113', '村田架純', 1, '+81 3-6030-8358', 4, '230803413394811769', '41F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-22', 0, 0, 'km604', '2015-01-17', 'kasumimura', '2013-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS383107842584', 'Melissa Cook', 0, '+44 7031 152782', 3, '702932958087869418', 'Block 23, 456 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-10-17', 0, 0, 'cookm', '2017-04-02', 'comelissa48', '2021-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS208648668686', '梅志遠', 1, '+81 80-3296-2186', 1, '540189770661348738', 'Rm. 34, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-11-20', 0, 0, 'muicy', '2010-10-03', 'mucy', '2006-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS365958968851', 'Karen Henderson', 1, '+81 80-9315-5586', 3, '594994559023864475', 'Rm. 16, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-09-21', 0, 0, 'henkaren10', '2014-06-13', 'hekaren622', '2014-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS613653313204', 'Michelle Cox', 0, '+86 10-221-8377', 3, '179500189783750221', '中国北京市海淀区清河中街68号237号42栋', '1985-10-26', 0, 0, 'coxm3', '2021-02-13', 'coxm', '2016-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS625086667630', 'Jean Davis', 1, '+81 52-941-3466', 2, '861639581298298761', 'Rm. 30, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-22', 0, 0, 'davis208', '2002-03-08', 'davjea', '2008-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS954685908253', '陳發', 0, '+86 145-1288-4262', 0, '052783578803206194', '中国广州市天河区天河路445号32号楼', '1987-07-27', 0, 0, 'chafa', '2011-07-31', 'fat89', '2014-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS993767908896', 'Jeremy Coleman', 0, '+81 74-329-2343', 3, '775111551302783025', '12F, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1988-12-10', 0, 0, 'colemj', '2001-05-08', 'jerecole', '2019-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS060392288459', 'Juan Ruiz', 0, '+86 181-6115-7360', 3, '539341743286553764', '38F, 804 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-07-27', 0, 0, 'rjuan', '2009-05-16', 'jruiz8', '2021-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS077139124860', '曹慧琳', 1, '+81 3-8952-9361', 0, '747401885677747084', '日本東京品川区東五反田五丁目2番5号1号室', '1992-10-26', 0, 0, 'wlcho9', '2011-06-11', 'chwl', '2002-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS271721520461', '田睿', 0, '+81 66-130-6743', 2, '385363914527005732', '31-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-01-16', 0, 0, 'trui5', '2016-05-09', 'tianrui', '2018-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS969628556427', '斉藤大輔', 0, '+81 90-9132-0120', 3, '889850830915366521', '日本札幌中央区宮の森四条六丁目1番16号38号室', '1998-10-14', 0, 0, 'dasaito', '2019-02-06', 'daisuke615', '2012-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS421638611615', '中村大和', 0, '+81 80-7416-7092', 1, '834529930675508421', '32F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-04-21', 0, 0, 'nakamurayamato1206', '2018-12-10', 'nakamyamato', '2012-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS794794219089', '横山大和', 1, '+81 80-2545-7865', 0, '288526353327356107', '日本おおさかし東住吉区東田辺三丁目27番4号34階', '1993-01-09', 0, 0, 'yokoyama', '2010-04-19', 'yamato1967', '2009-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS433722441578', '顾睿', 0, '+1 838-315-8088', 1, '816249666821099316', '625 Central Avenue Suite 17, Albany, NY 12205, United States', '1992-04-08', 0, 0, 'gu6', '2017-03-06', 'gur87', '2020-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS027473372744', 'Louise Peterson', 1, '+86 175-5023-1011', 3, '399790021977396234', 'Room 34, CR Building, 18 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-10-18', 0, 0, 'louispeterson3', '2006-02-15', 'louipeterson', '2010-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS574473636514', 'Kathryn Lopez', 1, '+86 20-463-3276', 2, '315923397757032604', 'No.26 building, 884 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-03-02', 0, 0, 'lokathryn45', '2010-11-16', 'kathrynlop8', '2014-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS712477683571', 'Thomas Bennett', 1, '+1 718-397-1843', 1, '274294290987899215', '726 1st Ave Suite 27, Brooklyn, NY 11220, United States', '1993-06-24', 0, 0, 'bthom', '2016-03-14', 'bthomas', '2004-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS054930490687', 'Judith Gray', 0, '+81 80-1583-4414', 1, '320523416749981172', 'Rm. 10, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-07-05', 0, 0, 'grayjudi', '2001-05-13', 'gray6', '2007-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS092183418576', '譚國榮', 0, '+86 755-6224-9482', 3, '112979605776374055', '6F, 515 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-04-14', 0, 0, 'kwokwingtam', '2015-08-21', 'tam517', '2020-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS344592086107', '鐘天樂', 0, '+44 (151) 464 9790', 4, '181302687111860288', 'Flat 36, 753 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-05-19', 0, 0, 'tlch', '2017-11-29', 'chuntinlo313', '2016-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS219213262831', '謝梓軒', 0, '+86 199-9450-6245', 1, '005144747322832765', 'No.19 building, 264 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-01-11', 0, 0, 'tszhints', '2016-12-08', 'thtse4', '2006-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS475234973316', 'Clarence Moore', 1, '+44 7655 958265', 1, '055861189255059355', 'Flat 23, 266 New Street, Birmingham, B2 4DB, United Kingdom', '1991-12-03', 0, 0, 'clarencemoore812', '2000-05-20', 'clmoore01', '2000-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS292698983358', '清水悠人', 0, '+1 838-632-9624', 2, '509925225111820146', '422 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1992-06-09', 0, 0, 'shimiyuto528', '2004-03-01', 'yushimizu2', '2019-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS700580866866', '斎藤桜', 0, '+81 52-424-1432', 1, '764053395771885313', 'Rm. 22, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-05-10', 0, 0, 'sakura3', '2011-11-01', 'sasa', '2002-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS674224219712', '孙秀英', 0, '+44 (151) 258 3691', 0, '241241100663972267', 'No.27 Main building, 7 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1996-08-08', 0, 0, 'xisun', '2012-02-14', 'xiuying417', '2007-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS530932417674', 'Anna Sanchez', 0, '+81 70-0873-8848', 2, '810754678278026837', '20-kai, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1992-01-29', 0, 0, 'sananna4', '2015-11-10', 'sanchezanna1991', '2001-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS189403917801', '田村大輔', 0, '+86 133-9531-1830', 2, '667616254805867001', '中国成都市锦江区人民南路四段932号9栋', '1997-09-29', 0, 0, 'dt10', '2003-12-08', 'dait5', '2019-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS935693040157', 'Jesse Reyes', 0, '+81 66-654-8628', 0, '502063995048158575', '日本おおさかし東住吉区東田辺三丁目27番6号12階', '1988-12-18', 0, 0, 'rje', '2002-02-09', 'jesse6', '2002-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS999803601722', 'Susan Clark', 1, '+1 330-233-4600', 2, '727754220008177336', '693 Collier Road 3rd Floor, Akron, OH 44320, United States', '1998-12-19', 0, 0, 'susanclar', '2020-02-29', 'susan10', '2002-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS427545751964', 'Howard Silva', 0, '+81 11-119-3223', 3, '256519514120520027', '23F, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-01-02', 0, 0, 'howsilva', '2011-09-10', 'silva2020', '2014-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS545682637757', '廖杰宏', 1, '+81 90-3234-5076', 0, '888129506133733460', 'Rm. 39, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-06-26', 0, 0, 'jiehong63', '2015-09-09', 'liao1977', '2021-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS398068313990', '木下涼太', 1, '+81 90-0773-1575', 1, '888555899180200466', '日本なごやし北区清水三丁目19番4号26階', '1991-03-05', 0, 0, 'kinoryota329', '2015-12-29', 'kryota1945', '2005-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS747561013316', '小林樹', 1, '+44 (1223) 41 8415', 0, '233469332330036992', 'Unit 45, Oxford Eco Centre, 983 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1998-03-20', 0, 0, 'itsukkobayashi824', '2022-03-03', 'ikob1022', '2020-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS409669403519', '藤田百花', 0, '+44 5852 103084', 3, '263037006795810099', 'No.9 Main building, 280 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-04-20', 0, 0, 'fujita409', '2013-02-24', 'fujitamom312', '2012-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS932420156766', '藤井大和', 1, '+81 80-1678-8084', 2, '900307519576485886', '日本札幌白石区菊水三条五丁目4番10号5階', '1991-10-27', 0, 0, 'fujiiyamato10', '2021-05-25', 'yamatofujii6', '2006-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS915898634654', '安藤美緒', 1, '+86 760-183-4663', 2, '353942129600133145', '中国中山天河区大信商圈大信南路568号48室', '1993-10-15', 0, 0, 'ma108', '2011-05-04', 'andm1231', '2015-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS821552716529', '韓麗欣', 1, '+81 11-890-3978', 1, '099426776915539688', '日本札幌白石区菊水三条五丁目4番13号32階', '1989-06-16', 0, 0, 'laiha720', '2006-09-20', 'lyha', '2002-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS450525398114', '段致远', 0, '+81 52-306-1528', 2, '178140640002286822', '日本なごやし瑞穂区河岸町四丁目20番11号38階', '1988-02-23', 0, 0, 'zduan95', '2012-02-01', 'zhiyuanduan913', '2004-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS129949251058', '石井光莉', 1, '+81 11-250-7268', 2, '152708939577539650', '日本札幌豊平区豊平三条十三丁目3番11号33階', '1992-06-09', 0, 0, 'ihika', '2009-08-05', 'ishiihikari727', '2019-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS770143680703', '高木葵', 1, '+81 3-5034-5957', 1, '410907856646410589', '日本東京港区東新橋一丁目5番6号33階', '1992-03-01', 0, 0, 'takagi7', '2005-02-09', 'takagi8', '2013-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS257846606631', '馮富城', 1, '+81 70-9144-5348', 1, '875655365633061024', '日本おおさかし東住吉区東田辺三丁目27番15号2階', '1992-03-25', 0, 0, 'fsf', '2010-02-09', 'fungfushi1952', '2002-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS452656177077', '李慧儀', 0, '+86 760-369-8935', 1, '290639711317431122', '中国中山紫马岭商圈中山五路229号2室', '1996-09-07', 0, 0, 'leewy98', '2017-02-13', 'wylee', '2019-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS625926910914', '胡德華', 0, '+81 90-9479-1787', 0, '708737653799274767', '日本ならし学園南三丁目9番7号46階', '1995-01-26', 0, 0, 'wuta', '2005-07-03', 'takwah2005', '2012-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS335082938276', '小川桜', 1, '+81 11-164-4711', 1, '618128102651453700', '日本札幌白石区菊水三条五丁目4番17号18号室', '1994-10-17', 0, 0, 'ogasa', '2016-01-29', 'osaku', '2021-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS568359498563', '邓睿', 1, '+44 5164 453598', 3, '119414636593382620', 'Flat 42, 658 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-09-01', 0, 0, 'ruid', '2011-06-03', 'dr7', '2001-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS935028349356', '馮頴思', 0, '+1 614-364-7374', 3, '851771995752557802', '740 East Alley Apartment 44, Columbus, GA 43201, United States', '1986-07-17', 0, 0, 'fungws', '2020-01-24', 'wingszefu', '2012-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS135351955084', '韦晓明', 1, '+44 (151) 940 0406', 3, '873469516634318605', 'Unit 47, Oxford Eco Centre, 87 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-04-20', 0, 0, 'xiwei67', '2001-10-15', 'weixi', '2019-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS090822971429', '曹宇宁', 0, '+86 769-4365-6001', 3, '560058969610565874', '中国东莞环区南街二巷317号46楼', '1989-06-17', 0, 0, 'caoy', '2018-12-10', 'yuning7', '2013-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS294726806922', '中山光', 0, '+86 10-5546-1564', 0, '852467952040309369', '中国北京市延庆区028县道365号31号楼', '1996-04-01', 0, 0, 'hn214', '2008-02-01', 'hikarnak', '2007-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS617960647532', '翁嘉欣', 0, '+44 5404 638437', 0, '015471492326715784', 'Unit 37, Oxford Eco Centre, 408 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-28', 0, 0, 'karyanyung', '2009-04-29', 'yky', '2018-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS186660559737', '湯力申', 0, '+81 52-298-3600', 0, '672595945737186047', '29-kai, 20 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-06-30', 0, 0, 'tongliksun01', '2020-07-30', 'liksunto5', '2002-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS111967698224', '邓安琪', 1, '+1 213-242-2003', 3, '079603381513543092', '916 S Broadway Apartment 12, Los Angeles, CA 90015, United States', '1996-01-25', 0, 0, 'danqi1', '2014-11-21', 'dengan808', '2003-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS060073076899', 'Laura Romero', 1, '+81 80-0479-6932', 3, '971895916914712209', '日本東京品川区東五反田五丁目2番12号5階', '1993-02-21', 0, 0, 'laura65', '2016-04-17', 'lauromer10', '2017-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS198373549823', 'Angela Allen', 1, '+86 28-468-2504', 2, '764073910515002580', '中国成都市锦江区红星路三段957号华润大厦46室', '1991-01-06', 0, 0, 'aangel7', '2014-12-25', 'allenangel', '2021-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS189351503190', '叶子韬', 1, '+81 11-468-4669', 2, '665007645852343571', '日本札幌白石区菊水三条五丁目2番6号15号室', '1990-09-06', 0, 0, 'yezit1969', '2002-06-13', 'yezita2012', '2003-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS365161714318', '钱震南', 1, '+86 21-2134-0937', 3, '981434418144638596', '中国上海市闵行区宾川路466号9栋', '1998-11-22', 0, 0, 'qiazhennan', '2003-02-20', 'qzhennan', '2019-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS742141208373', 'Brandon Freeman', 1, '+86 28-033-7618', 2, '331034599224802950', '中国成都市成华区玉双路6号105号43号楼', '1993-06-22', 0, 0, 'brandonfreem1009', '2016-03-02', 'freemanbr', '2014-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS380986239483', 'Deborah Kelley', 1, '+44 (20) 6237 0241', 2, '947821619039878743', 'Flat 9, 648 Hanover Street, London, W1S 1YD, United Kingdom', '1991-10-08', 0, 0, 'dkelle', '2001-02-08', 'kelleydeborah90', '2016-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS730830190462', '桜井蓮', 0, '+86 20-2240-4300', 1, '347690329747547585', '中国广州市海珠区江南西路935号16楼', '1993-04-27', 0, 0, 'rensakurai', '2013-08-05', 'rensaku', '2018-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS876436174481', 'Sarah Morales', 0, '+44 5179 730878', 1, '181770868581307919', 'Block 12, 98 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-09-06', 0, 0, 'ms6', '2000-03-18', 'morales9', '2011-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS362270209740', '戚朝偉', 0, '+86 20-235-6187', 4, '425075985471965378', 'Room 27, 610 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-01-31', 0, 0, 'chicchiuwai', '2014-07-19', 'chiuwai20', '2017-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS817017601562', '常岚', 1, '+86 755-235-2892', 3, '171518060959349839', '38F, 587 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-01-16', 0, 0, 'changla', '2008-06-10', 'clan4', '2020-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS940035721666', '孙子异', 1, '+86 10-0212-3271', 3, '958316780556905627', '中国北京市东城区东单王府井东街228号18号楼', '1999-01-02', 0, 0, 'zsu1', '2011-05-03', 'sunz', '2012-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS698821071900', '鄭淑怡', 0, '+81 3-3435-0660', 4, '656855104615480837', '日本東京千代田区丸の内一丁目6番4号32号室', '1997-05-22', 0, 0, 'chengsy', '2013-12-28', 'cheng5', '2008-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS204853366991', '贺璐', 0, '+1 330-931-2268', 0, '863242868067278045', '790 Collier Road Apt 14, Akron, OH 44320, United States', '1998-01-19', 0, 0, 'luhe', '2002-02-19', 'helu417', '2014-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS763803911026', 'Wendy Perry', 1, '+1 838-061-6056', 3, '243062812954396026', '507 Broadway Apartment 28, Albany, NY 12207, United States', '1988-01-24', 0, 0, 'wendyp', '2015-02-14', 'perrywendy', '2007-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS338856605475', 'Alexander Jones', 1, '+81 52-050-5328', 4, '292698596974042096', '29F, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-16', 0, 0, 'jonesalexander', '2014-06-02', 'jonesalexander69', '2005-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS481810183165', '黎詩君', 1, '+81 90-0539-6115', 0, '560972070847967504', '日本なごやし守山区瀬古東二丁目171番8号8号室', '1986-10-10', 0, 0, 'szekwan6', '2021-09-12', 'lasze', '2021-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS729876099541', '鄺曉彤', 0, '+44 (20) 6285 4382', 1, '918263662905372286', 'Flat 46, 105 Regent Street, London, W1B 2LX, United Kingdom', '1991-08-08', 0, 0, 'htkwong', '2010-02-23', 'kwong1', '2005-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS233539072489', 'Rose Morgan', 1, '+86 10-939-0841', 1, '195881077367349388', '23F, 816 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-10-22', 0, 0, 'rose86', '2015-08-21', 'mrose', '2006-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS071995343354', '松本一輝', 0, '+81 90-8219-3690', 4, '229330736704892338', '日本東京中央区銀座三丁目12番6号30号室', '1986-05-31', 0, 0, 'matsumoto1', '2005-02-27', 'mikki8', '2018-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS938915682556', '贾璐', 1, '+44 (20) 1708 4245', 1, '981964470417724647', 'No.28 Main building, 716 Pollen Street, London, W1S 1NG, United Kingdom', '1990-07-10', 0, 0, 'jialu1992', '2012-03-26', 'lujia4', '2017-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS108214341559', 'Phillip Wagner', 1, '+44 5737 673775', 2, '900207280893350671', 'Unit 31, Oxford Eco Centre, 607 Hanover Street, London, W1S 1YD, United Kingdom', '1985-07-20', 0, 0, 'phillipwag', '2004-09-22', 'phillw', '2005-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS223472488713', 'Evelyn White', 0, '+44 (20) 7305 2059', 3, '139313090341109890', 'Block 6, 439 Maddox Street, London, W1S 1PU, United Kingdom', '1988-06-06', 0, 0, 'white2', '2017-06-29', 'evelywhite', '2009-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS779477039461', '崔杰倫', 0, '+86 145-8270-3146', 3, '540381194556335219', '中国北京市東城区東直門內大街645号46楼', '1988-06-09', 0, 0, 'clchoi306', '2009-04-28', 'cch', '2020-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS609869897983', '陈璐', 1, '+86 183-6192-5354', 1, '218720363380408252', '中国广州市白云区小坪东路268号6号楼', '1986-11-24', 0, 0, 'luch', '2016-06-22', 'chenlu', '2006-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS281920254720', '中山舞', 0, '+1 614-723-5347', 2, '512507376080342284', '101 Diplomacy Drive Suite 3, Columbus, GA 43228, United States', '1993-01-08', 0, 0, 'mai6', '2002-07-21', 'nmai212', '2000-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS210618485982', 'Barbara Perez', 1, '+81 3-2739-5960', 3, '769381171480687520', '日本東京渋谷区代々木二丁目3番5号50階', '1987-10-22', 0, 0, 'barbperez', '2009-10-08', 'bperez', '2017-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS321560339168', '蕭富城', 0, '+44 (20) 3244 7967', 0, '122559925813719364', 'Unit 23, Oxford Eco Centre, 668 Regent Street, London, W1B 2LX, United Kingdom', '1990-09-20', 0, 0, 'sifs617', '2017-03-12', 'siufushing72', '2009-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS912049108798', '渡部紗良', 0, '+81 52-154-5958', 1, '392533687444339939', 'Rm. 49, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-13', 0, 0, 'watanabesar', '2010-04-18', 'watansara9', '2006-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS836253908229', '陶家強', 0, '+86 158-0549-1641', 2, '526580146028546499', 'Room 35, 259 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-09-17', 0, 0, 'taokakeung6', '2005-02-15', 'taokakeung', '2018-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS978000559079', 'Marilyn Robinson', 0, '+1 614-074-1468', 1, '135575987402215196', '267 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-12-15', 0, 0, 'rmarilyn6', '2003-09-23', 'mrobin', '2000-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS178355663963', '程云熙', 0, '+86 10-0819-5281', 2, '044408663033317640', 'No.43 building, 460 028 County Rd, Yanqing District, Beijing, China', '1985-06-03', 0, 0, 'cheng89', '2014-04-10', 'ycheng74', '2005-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS789700193666', '罗杰宏', 1, '+81 90-0444-9502', 3, '330453929688261673', '8F, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-10-18', 0, 0, 'jlu104', '2017-11-17', 'jiehongluo', '2012-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS379067289848', '罗宇宁', 1, '+81 90-6309-7684', 1, '657255566702451551', '11F, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-04-28', 0, 0, 'yuluo', '2020-03-25', 'yuningl', '2015-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS795698558771', '房學友', 0, '+81 11-360-2287', 1, '827671387213593438', '16F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-07-26', 0, 0, 'fhy', '2012-03-15', 'fong808', '2018-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS490983099815', '應玲玲', 0, '+81 80-5593-1827', 4, '804723381392826238', 'Rm. 21, 17 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-06', 0, 0, 'ying518', '2000-10-23', 'lly', '2001-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS025291753025', '袁嘉伦', 0, '+81 74-064-8732', 2, '341219787269974704', '16F, 3-9-9 Gakuenminami, Nara, Japan', '1986-05-10', 0, 0, 'jialunyu', '2009-12-05', 'yuanj', '2002-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS422702223418', 'Joyce Herrera', 1, '+81 70-6933-2278', 3, '530704719403812398', '日本札幌清田区真栄四条五丁目19番19号28階', '1997-12-07', 0, 0, 'hjoyc', '2017-06-04', 'herjoyce7', '2001-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS040391744823', '山崎陽太', 0, '+81 90-3377-4658', 4, '634673743016349296', '19-kai, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1991-10-01', 0, 0, 'yotayamaz923', '2001-09-23', 'yota10', '2018-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS516906216772', '钱子异', 0, '+86 760-5385-5095', 3, '977313164952958616', '中国中山京华商圈华夏街549号25室', '1999-01-02', 0, 0, 'qianz', '2019-07-20', 'qianziyi', '2022-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS469383525031', 'Michelle Gordon', 1, '+86 139-3507-2216', 1, '168105462137656211', 'Room 17, CR Building, 130 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-03-24', 0, 0, 'michellego', '2013-06-21', 'michellegordon', '2009-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS759104371331', '武田美月', 0, '+44 (1865) 93 1558', 1, '226924807568160797', 'No.34 Main building, 358 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-08-01', 0, 0, 'mitsukita', '2011-09-30', 'tm109', '2014-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS219124063892', '贺秀英', 1, '+86 28-820-7220', 3, '125707276162597892', '42F, 523 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-05-13', 0, 0, 'xhe41', '2015-01-20', 'hxiu', '2021-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS504465681766', '元安琪', 1, '+86 20-900-0857', 2, '807643743443705703', '中国广州市海珠区江南西路826号华润大厦17室', '1994-05-10', 0, 0, 'onkayyu', '2009-07-21', 'oky', '2017-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS814193786228', '原田葵', 1, '+86 175-7309-1566', 1, '779121352244491155', '中国上海市徐汇区虹桥路575号6栋', '1991-01-01', 0, 0, 'ahara43', '2005-06-07', 'aharada426', '2020-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS783168241023', '佐々木光莉', 1, '+86 28-0943-3837', 1, '265419214610491966', '中国成都市锦江区人民南路四段984号10栋', '1991-12-29', 0, 0, 'sasakihikari', '2016-07-31', 'hiks85', '2015-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS709267696829', '雷家文', 1, '+1 614-433-7025', 1, '604154238243160878', '959 East Cooke Road Apt 32, Columbus, GA 43214, United States', '1986-06-01', 0, 0, 'lkaman4', '2010-03-25', 'louikm3', '2013-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS434273446802', '渡辺翼', 0, '+1 838-099-6661', 2, '072050380580716353', '769 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1988-01-13', 0, 0, 'sato1123', '2012-09-06', 'tsubasas', '2018-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS868413593941', 'Ray Gonzales', 0, '+44 (121) 880 2856', 3, '347628748263794492', 'Unit 11, Oxford Eco Centre, 784 New Street, Birmingham, B2 4DB, United Kingdom', '1990-12-26', 0, 0, 'gonray9', '2007-11-18', 'gra324', '2020-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS080150587318', 'Debra Johnson', 0, '+86 10-0407-3759', 1, '616254633625408524', 'No.25 building, 60 028 County Rd, Yanqing District, Beijing, China', '1994-01-24', 0, 0, 'johnsondebr', '2019-02-07', 'jd5', '2006-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS887509524025', 'Glenn Hall', 0, '+1 212-275-6639', 1, '059073561614070757', '233 Fifth Avenue Suite 44, New York, NY 10017, United States', '1991-10-13', 0, 0, 'glenn530', '2008-05-10', 'hglenn', '2016-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS454221849584', '韦秀英', 0, '+1 212-906-6297', 0, '458988282421497515', '879 Canal Street Apt 14, New York, NY 10013, United States', '1993-04-24', 0, 0, 'weix2020', '2001-12-08', 'xiuying4', '2017-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS792882517577', 'Carlos Holmes', 0, '+86 138-6700-6023', 1, '045867259118672863', '中国广州市白云区小坪东路823号华润大厦14室', '1997-12-11', 0, 0, 'hoc', '2019-05-04', 'holmes07', '2014-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS885440360829', '甘詠詩', 0, '+81 90-3190-3856', 2, '069041058210778479', '5F, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-05-10', 0, 0, 'wingszeka601', '2011-12-24', 'wingszeka', '2009-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS344058016880', '増田樹', 1, '+81 3-7900-8054', 4, '936236407321256874', '日本東京品川区東五反田五丁目2番7号11階', '1998-11-04', 0, 0, 'maitsuki1015', '2006-03-26', 'masitsu817', '2021-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS183309191785', 'Stanley Coleman', 0, '+44 (161) 692 7083', 2, '854601668827435020', 'Unit 3, Oxford Eco Centre, 351 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-12-14', 0, 0, 'stanley4', '2018-07-21', 'stacolem825', '2015-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS308088890183', 'Jeremy Coleman', 0, '+81 52-443-3627', 3, '978870324079423866', '15F, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-02-14', 0, 0, 'jeremycoleman3', '2021-11-23', 'colemje', '2011-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS941552473036', 'Fred Grant', 1, '+1 718-169-7682', 2, '699100011069845194', '208 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1987-10-04', 0, 0, 'fg2', '2006-01-11', 'frgrant', '2004-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS224426338744', '中森蒼士', 0, '+81 70-2239-3498', 2, '964678070117672317', '36-kai, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-07-16', 0, 0, 'nakamori625', '2011-08-02', 'nakaa', '2007-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS578862257503', 'Jonathan Bailey', 1, '+44 (151) 931 7820', 0, '934598042395059961', 'Unit 2, Oxford Eco Centre, 814 Redfern St, Liverpool, L20 8JB, United Kingdom', '1987-02-13', 0, 0, 'baileyjonathan8', '2016-07-05', 'jonathan10', '2019-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS086797605345', '阎致远', 0, '+81 66-059-8436', 4, '541641833021193691', '日本おおさかし西成区天神ノ森二丁目1番4号10号室', '1993-08-20', 0, 0, 'zhiyuan107', '2004-10-08', 'zhiyuanyan', '2008-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS910908001079', '狄潤發', 0, '+86 191-8581-7547', 4, '891502108998919869', '1F, No.408, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-01-11', 0, 0, 'yfti', '2015-06-07', 'yfti926', '2008-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS749211124439', 'Norman Tucker', 1, '+81 70-1444-0022', 1, '936455481766330088', '日本札幌豊平区豊平三条十三丁目3番8号42号室', '1999-03-03', 0, 0, 'normantuc', '2014-01-11', 'normtuck', '2004-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS970895556761', '宮本光莉', 0, '+86 196-8420-2625', 3, '511365062164482780', 'Room 9, 103 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-02-16', 0, 0, 'miyamotohikari', '2010-10-19', 'miyhika', '2011-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS256266889397', 'Amy Ferguson', 0, '+86 174-8294-3112', 0, '070353507083612939', 'No.27 building, No.993, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-04', 0, 0, 'amyfe123', '2013-02-02', 'amyf', '2003-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS563306921983', '曹子异', 1, '+1 330-668-4919', 3, '343665306373282525', '910 Collier Road Suite 40, Akron, OH 44320, United States', '1988-11-10', 0, 0, 'caoziyi5', '2000-08-12', 'cziyi', '2006-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS544072850343', 'Norman Reyes', 1, '+86 141-0988-8991', 2, '817645656076890862', '中国北京市东城区东单王府井东街511号11楼', '1997-04-09', 0, 0, 'norman9', '2007-09-04', 'normanreye', '2006-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS147970450568', '藤原葉月', 0, '+1 330-788-0728', 2, '860296914271173178', '776 Fern Street Apartment 10, Akron, OH 44307, United States', '1993-10-27', 0, 0, 'fujiwhazuki45', '2013-12-02', 'hazukifu', '2014-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS375601519836', 'Stanley Castillo', 1, '+86 28-8191-0490', 4, '041298589748633355', 'No.41 building, 221 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-01-12', 0, 0, 'stanley57', '2021-03-17', 'sca', '2016-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS020872595832', '白杰倫', 1, '+86 175-0846-3143', 1, '123367375219474652', 'No.24 building, 253 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-06-25', 0, 0, 'clpak2003', '2001-08-18', 'pachiehlun', '2009-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS301546919459', '三浦翼', 1, '+44 7304 736339', 0, '391644106563150212', 'Unit 19, Oxford Eco Centre, 565 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-02-11', 0, 0, 'miura2', '2000-01-11', 'miuratsubasa', '2006-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS445370709741', '谷口健太', 0, '+86 21-489-5267', 0, '554231780460965902', 'Room 8, 428 Jianxiang Rd, Pudong, Shanghai, China', '1994-05-16', 0, 0, 'taniguchiken', '2021-07-07', 'kenta10', '2007-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS904958001220', 'Robert Guzman', 1, '+86 28-1386-1297', 0, '716221040271702305', 'Room 20, CR Building, No.203, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-03-31', 0, 0, 'robert10', '2008-06-18', 'guzman8', '2000-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS149445769072', '吴睿', 0, '+86 769-3992-8241', 0, '569396875695247380', 'Room 15, CR Building, 267 Dongtai 5th St, Dongguan, China', '1995-01-03', 0, 0, 'ruiwu', '2019-12-16', 'wu1014', '2006-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS065475146912', '和田一輝', 0, '+1 213-077-0832', 0, '985545851400204765', '329 Sky Way Suite 21, Los Angeles, CA 90043, United States', '1996-09-23', 0, 0, 'ikkiwad', '2016-07-06', 'waikki416', '2016-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS145265263631', '蔡嘉伦', 0, '+1 718-557-5813', 3, '796618148525474764', '935 Flatbush Ave Apartment 10, Brooklyn, NY 11225, United States', '1985-05-05', 0, 0, 'jialunca', '2017-11-17', 'jcai', '2002-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS151201390819', '武田大輔', 1, '+86 157-8451-1443', 0, '609958752560681427', 'Room 37, CR Building, 820 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-05-04', 0, 0, 'takedadaisuke7', '2013-09-06', 'daisuketakeda6', '2006-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS548337695243', '伍嘉欣', 1, '+44 (116) 847 9960', 3, '076034390893506926', 'No.18 Main building, 917 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-01-28', 0, 0, 'ngky93', '2018-03-02', 'ng1990', '2004-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS188028631405', '李詩君', 1, '+86 181-7827-0402', 2, '889406200985951653', '40F, 773 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-01-27', 0, 0, 'szekwanle7', '2016-06-03', 'leeszekwan', '2016-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS780079977869', 'George Black', 0, '+86 190-6663-5955', 1, '315963247256666600', '中国上海市浦东新区橄榄路770号3室', '1994-11-25', 0, 0, 'blgeor4', '2011-08-21', 'bgeo', '2002-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS249178336555', 'Glenn Gutierrez', 0, '+44 (20) 7334 7056', 3, '201432292950182721', 'Flat 21, 983 Maddox Street, London, W1S 1PU, United Kingdom', '1991-11-23', 0, 0, 'glennguti5', '2018-06-04', 'gutierrezg', '2014-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS984301413053', '孔岚', 0, '+86 135-3906-8338', 3, '755289957763491400', 'Room 17, 351 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-03-01', 0, 0, 'kongla', '2006-07-11', 'lako', '2004-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS253526447566', '胡慧琳', 1, '+81 90-3173-8743', 2, '005271593981738546', '日本おおさかし平野区加美東四丁目9番18号36階', '1986-08-16', 0, 0, 'wailamwu', '2015-01-18', 'wailamwu2', '2021-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS686538204894', '佐々木蓮', 0, '+44 (121) 474 6380', 3, '727930271246455686', 'No.43 Main building, 865 New Street, Birmingham, B2 4DB, United Kingdom', '1992-01-02', 0, 0, 'sasakire', '2014-07-04', 'rs2', '2018-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS698049644598', '龚子异', 0, '+44 7054 993293', 2, '226193606700182499', 'Block 9, 126 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-12-27', 0, 0, 'gongzi', '2011-01-30', 'gongziyi', '2018-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS158928291618', 'David Fernandez', 1, '+44 (20) 6046 5173', 2, '322412138419382505', 'Unit 40, Oxford Eco Centre, 576 Maddox Street, London, W1S 1PU, United Kingdom', '1987-04-05', 0, 0, 'fdavid', '2006-11-03', 'fernandez3', '2010-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS194462592378', '田慧敏', 0, '+81 52-567-2426', 3, '965802749079268973', '日本なごやし守山区瀬古東二丁目171番17号22階', '1993-04-25', 0, 0, 'tin1', '2021-04-15', 'wmtin3', '2005-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS134188340478', 'Lisa Gordon', 1, '+1 838-745-8154', 1, '007781434191975368', '834 State Street 3rd Floor, Albany, NY 12203, United States', '1991-04-07', 0, 0, 'lisa97', '2014-10-30', 'lgordon', '2007-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS628645031352', 'Richard Guzman', 0, '+81 80-8975-0595', 1, '197664740082178209', 'Rm. 49, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-12-19', 0, 0, 'richard9', '2019-02-06', 'ricguzma', '2007-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS980306268047', 'Shirley Gardner', 1, '+86 193-7997-9955', 2, '200829121229312311', '50F, 418 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1994-04-23', 0, 0, 'gardnershirley48', '2009-12-31', 'shgardner02', '2006-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS370000671214', '曾家玲', 1, '+81 11-634-6819', 3, '028325739768782401', '日本札幌清田区真栄四条五丁目19番11号25階', '1995-06-17', 0, 0, 'tkl', '2008-05-17', 'tska', '2020-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS196698068059', '谭晓明', 0, '+86 197-5924-7704', 2, '119841839772039959', 'No.14 building, 578 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-03-28', 0, 0, 'tanxiaoming', '2021-10-12', 'xiaomtan824', '2012-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS365280718601', '木村美羽', 1, '+86 20-9358-9649', 1, '575821613595854972', '中国广州市天河区天河路11号47栋', '1989-01-10', 0, 0, 'kimurmiu415', '2004-09-26', 'kimura1957', '2002-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS941707633481', '郭詩涵', 1, '+81 80-5890-3956', 1, '335205950269846403', '日本ならし大和郡山市本庄町一丁目1番10号6階', '1993-05-20', 0, 0, 'guoshi', '2005-03-11', 'guoshihan', '2003-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS258774605932', '田村湊', 1, '+1 212-571-6331', 1, '643681494532941172', '959 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-04-09', 0, 0, 'tamuram', '2020-01-22', 'tamura53', '2017-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS506691962576', '姜國榮', 1, '+86 755-801-0421', 3, '932400623770489567', '中国深圳龙岗区学园一巷682号华润大厦8室', '1992-01-31', 0, 0, 'kwokwing80', '2009-05-31', 'kwokwing3', '2008-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS788867543125', '戴杰宏', 0, '+44 5556 922115', 2, '185117978485361694', 'Unit 10, Oxford Eco Centre, 407 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-07-22', 0, 0, 'jiehongd', '2006-04-15', 'jiehong62', '2009-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS145920646980', '島田蒼士', 1, '+1 838-915-7863', 4, '442791221570226084', '190 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1985-03-03', 0, 0, 'aoshishimada1203', '2020-05-22', 'shimadaaoshi224', '2020-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS245235839208', '馮詩君', 0, '+1 838-220-8927', 3, '775833948076112989', '907 Lark Street Suite 19, Albany, NY 12210, United States', '1992-11-07', 0, 0, 'fung224', '2020-12-28', 'skfung', '2018-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS952020191337', '秦震南', 1, '+86 755-079-4217', 2, '082735871698677126', 'No.14 building, 431 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-01-15', 0, 0, 'zhqin', '2011-10-10', 'qinzhe', '2019-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS580375701553', '葉國賢', 0, '+44 (116) 055 7907', 3, '613329838181115512', 'Unit 14, Oxford Eco Centre, 827 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-08-10', 0, 0, 'yip1988', '2011-08-26', 'kwokyinyip', '2000-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS414457249135', 'Raymond Fisher', 0, '+86 769-450-9146', 1, '885609989251252425', 'No.10 building, 455 Kengmei 15th Alley, Dongguan, China', '1998-04-08', 0, 0, 'fraym', '2012-10-27', 'fraymond', '2017-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS064175353077', 'Russell Holmes', 1, '+44 (151) 127 3681', 3, '712531187371976177', 'No.28 Main building, 641 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1989-08-06', 0, 0, 'holmesrussell1957', '2013-06-05', 'russell730', '2003-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS195505581345', '唐國明', 0, '+81 70-9618-4186', 2, '505882056544633292', '日本東京千代田区丸の内一丁目6番19号49階', '1985-10-15', 0, 0, 'tongkm', '2009-03-06', 'kwokmington', '2015-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS657035767500', '呂詠詩', 1, '+81 90-0296-9180', 2, '144741854913909380', 'Rm. 43, 12 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-05-24', 0, 0, 'wslu8', '2003-04-28', 'wingszelui1942', '2011-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS777435415281', '罗杰宏', 0, '+86 760-4975-1310', 3, '706085729709908560', '中国中山京华商圈华夏街765号华润大厦1室', '1990-07-04', 0, 0, 'jiehongluo829', '2010-11-14', 'jiehluo', '2004-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS776117587212', '酒井花', 1, '+81 90-3501-3570', 2, '019641960510039217', '11F, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1995-02-04', 0, 0, 'sakh2', '2003-06-03', 'hana910', '2003-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS245515539169', 'Sharon Daniels', 1, '+81 52-154-9572', 4, '298837902507483461', '34F, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-04-06', 0, 0, 'danielssh', '2006-01-21', 'dansh', '2018-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS728166065260', 'Francis Kelly', 0, '+44 5384 067446', 1, '617007569647492627', 'Unit 47, Oxford Eco Centre, 326 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1992-09-01', 0, 0, 'fk1', '2001-02-09', 'frkelly', '2007-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS369920241243', 'Todd Rice', 0, '+81 3-6389-5024', 1, '970107093569158477', '日本東京港区東新橋一丁目5番4号7階', '1998-05-09', 0, 0, 'toddrice', '2003-04-15', 'rice8', '2007-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS361930009055', '鄧詩君', 1, '+86 170-5971-1880', 4, '795935960617127666', 'No.3 building, 900 Kengmei 15th Alley, Dongguan, China', '1994-10-30', 0, 0, 'szekwantang', '2005-01-21', 'tanszekwan', '2008-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS726852050296', '顾震南', 0, '+81 70-5460-9007', 2, '669356195335296639', '日本おおさかし東住吉区東田辺三丁目27番5号28号室', '1987-10-14', 0, 0, 'zhennangu', '2020-08-23', 'guzhennan4', '2000-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS272305253740', '丁詩涵', 0, '+44 5631 466874', 4, '127155042429700836', 'Unit 31, Oxford Eco Centre, 586 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-12-18', 0, 0, 'dings', '2010-04-26', 'shiding', '2008-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS353411068467', '餘家玲', 0, '+81 90-4550-5539', 3, '395954070807475404', '日本札幌白石区菊水三条五丁目4番18号37階', '1987-07-18', 0, 0, 'yuekl', '2008-02-20', 'yuekl', '2013-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS347602382653', '吕云熙', 0, '+81 80-4493-4663', 3, '316824890310202539', 'Rm. 16, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-06-04', 0, 0, 'ylu', '2003-11-29', 'ylu', '2010-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS754524244253', '松田架純', 0, '+1 212-163-1634', 2, '921134476934298054', '759 Wooster Street Apartment 21, New York, NY 10012, United States', '1987-10-08', 0, 0, 'kasummatsuda', '2018-10-20', 'kasumats904', '2011-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS075134916552', '柴田美月', 0, '+86 193-1785-4822', 2, '445937118633236536', '中国中山天河区大信商圈大信南路397号2号楼', '1998-05-12', 0, 0, 'shmitsu1971', '2007-06-11', 'mitsus127', '2012-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS646930856718', '渡辺大和', 1, '+81 90-8898-1020', 1, '406162054716823033', '45-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1988-04-28', 0, 0, 'satoyam', '2015-10-01', 'sato9', '2011-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS233971127222', '翁力申', 0, '+44 5537 858394', 1, '707289871752003302', 'Block 30, 31 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-09-20', 0, 0, 'liksunyung1965', '2010-06-16', 'lsy1101', '2001-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS330366043366', '葉國賢', 0, '+81 90-7554-7293', 0, '776184735123796430', 'Rm. 11, 3-9-2 Gakuenminami, Nara, Japan', '1988-01-30', 0, 0, 'ykwokyin', '2015-10-24', 'kwokyiny', '2002-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS218012921543', '金詩涵', 0, '+81 90-8776-4478', 2, '495961744267163969', '日本おおさかし西成区出城一丁目1番6号12号室', '1994-06-27', 0, 0, 'shihanji', '2014-12-20', 'shihanjin', '2014-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS581951085155', 'Eleanor Ross', 0, '+86 164-1274-8897', 1, '903642177313691596', 'No.42 building, 65 Binchuan Rd, Minhang District, Shanghai, China', '1990-05-30', 0, 0, 'roselea', '2007-04-19', 'elross', '2021-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS032413710502', 'Anthony Ramirez', 0, '+81 80-2392-3514', 1, '168641729201108391', 'Rm. 33, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-03-11', 0, 0, 'ramia', '2004-07-22', 'ramireza429', '2017-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS046266250967', 'Marilyn Miller', 1, '+1 718-076-0774', 2, '598950109361754110', '887 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-11-14', 0, 0, 'marilmiller927', '2015-06-02', 'millermarilyn5', '2002-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS149950308538', 'Wayne Miller', 0, '+81 11-496-1333', 3, '078458415403671510', '41-kai, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-10-30', 0, 0, 'miller620', '2017-06-23', 'waynem2', '2017-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS666380838632', '千葉凛', 0, '+86 20-3374-1532', 3, '849471378684005523', '20F, 559 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-12-18', 0, 0, 'chibrin416', '2009-10-14', 'chiba1995', '2016-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS359204090094', '钱嘉伦', 0, '+1 838-154-0457', 3, '405464124450297593', '662 Lark Street Apt 45, Albany, NY 12210, United States', '1996-01-31', 0, 0, 'jiqi', '2001-04-13', 'qijialu', '2019-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS127756565868', '斉藤明菜', 0, '+81 52-664-4067', 4, '183359833052790447', '日本なごやし守山区瀬古東二丁目171番18号10階', '1997-10-15', 0, 0, 'akinasai', '2014-07-30', 'akinasai825', '2000-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS920787476648', '吴子异', 0, '+44 7936 207484', 2, '041942055229711866', 'Block 5, 489 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-09-25', 0, 0, 'wuzi', '2019-10-31', 'wu1112', '2004-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS906716098704', 'Christopher James', 0, '+81 66-857-1027', 1, '164118476101006726', '21-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1992-03-10', 0, 0, 'jameschristopher77', '2011-08-15', 'christopherjam', '2017-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS165379924964', 'Jose Simpson', 0, '+81 74-532-4561', 3, '891777869544256748', 'Rm. 14, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-04-26', 0, 0, 'simpsjo', '2020-04-25', 'josesimpson', '2003-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS248574225521', '陈璐', 1, '+86 20-2210-9225', 4, '333802020499838496', 'Room 31, CR Building, 323 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-06-10', 0, 0, 'lu78', '2011-11-02', 'luch', '2004-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS462207601584', '文榮發', 0, '+81 80-1704-0318', 2, '383341444961397248', '日本札幌白石区菊水三条五丁目4番9号37号室', '1985-10-27', 0, 0, 'wingfm', '2001-11-21', 'manwingfat', '2013-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS744160116462', '盧力申', 1, '+81 3-0732-3918', 4, '392232824396990967', '45-kai, 2-3-18 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-05-05', 0, 0, 'lo4', '2016-03-01', 'liksun88', '2003-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS605701260641', '陶晓明', 1, '+81 11-458-7178', 2, '123264776899444568', '19-kai, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-05-18', 0, 0, 'xt913', '2020-03-15', 'xitao', '2018-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS980477867212', '熊睿', 1, '+81 11-909-0937', 4, '372514476082167353', '44F, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-06-07', 0, 0, 'xiongru', '2013-01-22', 'rux', '2013-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS765921285769', '陆致远', 1, '+44 (1223) 11 3305', 3, '701751118310237966', 'Block 15, 93 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-01-27', 0, 0, 'luzhiyu', '2020-05-16', 'zhiyuan222', '2000-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS682592386396', '山本海斗', 0, '+1 614-345-3214', 3, '908887223276195792', '828 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1990-01-24', 0, 0, 'kaito515', '2019-07-24', 'yamamoto225', '2019-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS846138092627', '曹嘉伦', 0, '+81 70-8298-4439', 2, '421887283732908053', '50-kai, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-08-02', 0, 0, 'caojialun', '2013-06-21', 'cao3', '2007-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS717634298694', '加藤愛梨', 0, '+1 718-335-6165', 0, '998064396213008672', '273 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1989-01-11', 0, 0, 'airikato1', '2012-06-09', 'airikato414', '2009-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS533254308373', '向致远', 1, '+86 10-517-0657', 2, '787828374224658758', '中国北京市海淀区清河中街68号769号18号楼', '1991-03-14', 0, 0, 'zhiyuanxiang', '2014-02-05', 'zhiyuan5', '2002-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS066254671384', 'Rose Crawford', 1, '+1 212-154-0667', 1, '018675383740141292', '591 Wooster Street Suite 27, New York, NY 10012, United States', '1997-09-22', 0, 0, 'craros1206', '2005-05-28', 'crose', '2007-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS618046534038', '许睿', 0, '+86 142-6164-8278', 2, '071861098707805057', '中国上海市浦东新区橄榄路536号29楼', '1991-05-14', 0, 0, 'ruixu', '2016-03-12', 'rx412', '2005-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS878153642044', '谷志明', 0, '+86 28-0967-4031', 3, '870894648430127974', 'No.5 building, 871 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-02-11', 0, 0, 'chiming721', '2001-06-16', 'cmk1972', '2001-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS187615823950', 'Scott West', 1, '+81 52-250-6319', 1, '195443762588686992', 'Rm. 38, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-17', 0, 0, 'scott7', '2011-11-09', 'scott53', '2012-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS550902883974', '元家輝', 0, '+1 212-768-9653', 0, '497572902573393987', '561 Fifth Avenue Suite 50, New York, NY 10017, United States', '1987-06-13', 0, 0, 'ykafai', '2022-01-16', 'yuen7', '2003-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS829919451707', '三浦架純', 1, '+44 (1865) 84 5347', 2, '905925827657178792', 'Unit 21, Oxford Eco Centre, 929 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-08-29', 0, 0, 'miurakasum57', '2016-04-26', 'kmiura', '2001-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS130344304266', '加藤蓮', 0, '+44 (1865) 79 0681', 0, '979698373319568182', 'No.25 Main building, 72 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-08-11', 0, 0, 'karen1965', '2001-10-03', 'renkato13', '2000-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS858244720606', 'Pamela Soto', 0, '+81 11-799-9282', 3, '619126857527778922', '45F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-10-02', 0, 0, 'soto9', '2007-10-19', 'soto1969', '2021-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS530294611807', '汪子韬', 1, '+86 183-1322-8176', 2, '266842954840529245', 'No.4 building, 146 Ganlan Rd, Pudong, Shanghai, China', '1986-08-30', 0, 0, 'zitaowa', '2017-01-20', 'wanzitao', '2013-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS615473896766', 'Jack Patel', 1, '+44 (161) 122 5745', 1, '872701042975763244', 'Unit 12, Oxford Eco Centre, 26 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-10-30', 0, 0, 'pja', '2018-08-24', 'jack118', '2012-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS295719503558', '林嘉欣', 0, '+81 11-434-0650', 1, '859949590040216728', '12F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-07-01', 0, 0, 'lky', '2019-08-05', 'karla807', '2010-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS379783849345', '戴岚', 0, '+1 614-183-2025', 0, '858410849946080963', '233 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-02-26', 0, 0, 'dai71', '2007-04-21', 'ladai', '2005-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS580705167913', '上田美緒', 0, '+44 5356 497756', 3, '051492333141733833', 'Block 35, 210 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1991-11-06', 0, 0, 'mio421', '2008-09-08', 'miueda7', '2019-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS983428903512', '甘世榮', 1, '+81 80-2178-5844', 1, '768917379535501929', '日本東京港区東新橋一丁目5番1号36号室', '1985-11-05', 0, 0, 'kam9', '2020-09-13', 'swkam', '2010-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS281274414067', '石云熙', 1, '+86 21-075-3690', 1, '863956010709409689', '中国上海市黄浦区淮海中路807号华润大厦4室', '1997-06-04', 0, 0, 'yunshi9', '2014-05-02', 'yunxishi5', '2014-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS974062967141', '翁小慧', 0, '+1 330-021-6450', 0, '080476946217095228', '238 West Market Street Apt 46, Akron, OH 44333, United States', '1991-12-01', 0, 0, 'ysw605', '2012-11-06', 'yungsw701', '2016-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS409008556841', '汤宇宁', 1, '+81 90-9182-2129', 1, '463106092349374377', 'Rm. 3, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-12-04', 0, 0, 'tang116', '2007-06-01', 'yuningtang', '2010-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS653587987217', '高震南', 0, '+1 614-471-7259', 2, '255234667712676664', '916 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1993-07-13', 0, 0, 'gazhennan1102', '2000-11-30', 'zhennangao', '2002-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS679196064489', '葉家玲', 1, '+86 145-5630-7618', 1, '130206679776108611', '1F, 626 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-01-31', 0, 0, 'klyip', '2007-09-25', 'klyip', '2005-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS418144325734', 'Diana Taylor', 0, '+1 838-007-2270', 0, '463751870550641994', '439 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-10-10', 0, 0, 'tdiana', '2010-10-10', 'taydiana', '2009-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS350033179344', '葉詠詩', 0, '+1 330-642-2302', 3, '891160317329819653', '549 Riverview Road Suite 3, Akron, OH 44313, United States', '1986-01-15', 0, 0, 'wingsze10', '2011-06-03', 'wingszeyip10', '2018-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS394367345905', '桜井瑛太', 0, '+81 11-448-8798', 3, '271121714562324553', '日本札幌中央区宮の森四条六丁目1番16号31階', '1985-12-01', 0, 0, 'eitasaku', '2018-02-04', 'eitasak9', '2012-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS141227367523', '孫志遠', 1, '+81 11-803-8392', 3, '576106241090159091', '9-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-06-12', 0, 0, 'cyhsuan', '2010-08-17', 'cyhsuan', '2005-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS827496397809', '池田桜', 1, '+86 148-5449-7203', 2, '128832999054657815', '中国广州市天河区天河路226号9楼', '1989-05-25', 0, 0, 'isakura', '2006-12-26', 'ikedasak', '2006-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS755541775893', '林詩涵', 0, '+86 20-3026-1299', 1, '960916967099692362', '中国广州市越秀区中山二路343号24栋', '1994-10-12', 0, 0, 'lin10', '2001-11-05', 'lin724', '2008-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS248848323994', '蔡裕玲', 1, '+86 10-2575-6919', 4, '258706376913853894', 'Room 39, CR Building, 575 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-10-02', 0, 0, 'yuling1995', '2010-01-18', 'choiyl', '2020-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS938513713180', '甘秀文', 0, '+86 28-7133-8974', 4, '713375395363561923', 'Room 9, CR Building, 59 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-04-26', 0, 0, 'kamsm1026', '2003-09-04', 'saumkam', '2008-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS643313593305', '夏杰宏', 0, '+44 (116) 803 5043', 3, '918411703388351205', 'Flat 5, 867 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-05-23', 0, 0, 'jiehoxia', '2014-06-29', 'jiehong10', '2016-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS147822857677', 'Brenda Romero', 1, '+44 (151) 244 4400', 3, '526033521599470195', 'Block 28, 101 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-01-10', 0, 0, 'romeb', '2017-03-09', 'brenda212', '2014-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS460340803060', '原田詩乃', 0, '+86 20-3710-6697', 3, '873920805068546628', '中国广州市海珠区江南西路720号47楼', '1994-12-14', 0, 0, 'harshino4', '2018-09-21', 'harada912', '2014-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS015524365898', '橋本美咲', 1, '+81 80-4873-7286', 1, '028081846852639405', '日本ならし学園南三丁目9番19号31階', '1986-10-11', 0, 0, 'hashimotomis', '2007-05-11', 'hashimotomisaki', '2015-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS241413719284', '内田百花', 0, '+1 312-162-2160', 4, '090329685871398652', '15 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1994-04-29', 0, 0, 'uchida2', '2006-04-27', 'muchida', '2004-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS066150869503', '唐玲玲', 0, '+1 718-505-2778', 3, '573180463997171964', '772 Bergen St Suite 46, Brooklyn, NY 11217, United States', '1995-04-08', 0, 0, 'tong1997', '2006-03-20', 'llt917', '2014-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS573786998399', '汪嘉伦', 0, '+44 5159 880116', 3, '511579745308993814', 'Block 30, 50 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-02-12', 0, 0, 'wanjialun', '2013-03-31', 'wang2', '2007-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS401099715387', 'Larry Meyer', 1, '+81 90-9997-7703', 2, '946308942687289020', '日本札幌中央区宮の森四条六丁目1番1号19階', '1985-05-24', 0, 0, 'meyerl', '2009-12-19', 'meyerlar8', '2015-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS893025937658', 'Rodney Flores', 0, '+86 769-742-2895', 2, '558226542644202310', 'No.31 building, 32 Kengmei 15th Alley, Dongguan, China', '1993-03-08', 0, 0, 'flores619', '2004-02-01', 'frodney', '2013-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS202904465357', '佐野光莉', 0, '+86 177-5623-8676', 3, '064888850755726076', '中国深圳福田区深南大道822号18室', '1994-08-05', 0, 0, 'hsano65', '2009-01-03', 'sah', '2018-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS814953512636', '千葉翼', 1, '+81 80-9929-5935', 3, '571517125482796976', '日本札幌豊平区豊平三条十三丁目3番13号45階', '1985-12-18', 0, 0, 'chibat67', '2015-01-19', 'chiba76', '2016-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS717439465631', '董秀英', 1, '+1 312-672-6176', 3, '224288814700961920', '247 North Michigan Ave Apartment 13, Chicago, IL 60611, United States', '1992-05-13', 0, 0, 'xiuyingdong414', '2004-07-26', 'xiud', '2011-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS306626737471', '區國權', 1, '+81 66-340-8806', 1, '292322390815973424', 'Rm. 17, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1995-08-29', 0, 0, 'aukwokkuen', '2005-02-24', 'au708', '2019-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS449724542829', '小山樹', 1, '+81 80-4962-5244', 0, '972949295887668344', '日本なごやし瑞穂区河岸町四丁目20番14号24階', '1992-03-11', 0, 0, 'itskoyama2', '2009-07-12', 'itsukik71', '2020-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS608314482491', '甘潤發', 0, '+86 151-6017-4072', 2, '205339820731026401', 'No.5 building, 157 Huanqu South Street 2nd Alley, Dongguan, China', '1993-06-27', 0, 0, 'yunfatka623', '2016-01-19', 'yunfatkam08', '2014-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS378750756323', '任杰宏', 1, '+81 90-9588-3668', 1, '307521292730181979', '日本札幌中央区宮の森四条六丁目1番9号5号室', '1985-10-07', 0, 0, 'jiehongren', '2017-04-26', 'rji', '2015-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS200257310298', '原田美咲', 0, '+86 185-4455-7337', 3, '684582980914994949', 'Room 30, 690 Shennan Ave, Futian District, Shenzhen, China', '1998-08-15', 0, 0, 'harmisa3', '2005-10-10', 'mharada00', '2009-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS313114822592', '官俊宇', 1, '+86 197-7384-3038', 1, '450385005362117075', '中国北京市東城区東直門內大街697号华润大厦34室', '1993-07-18', 0, 0, 'koon1025', '2001-09-16', 'koonchunyu7', '2015-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS210818118075', '鈴木葵', 0, '+86 166-5478-5658', 3, '819949258358166475', '中国东莞环区南街二巷891号33室', '1992-02-18', 0, 0, 'saoi1', '2013-05-02', 'aosuzuki', '2005-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS690698597396', 'Ann Silva', 1, '+81 66-005-6718', 0, '972663651986589744', 'Rm. 15, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1996-07-26', 0, 0, 'asilva', '2001-02-28', 'ann1213', '2015-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS269117420679', '高木蒼士', 0, '+86 178-8140-4908', 2, '332685761399796094', '中国上海市闵行区宾川路359号25栋', '1995-05-12', 0, 0, 'aoshita', '2006-06-04', 'takagiaos', '2000-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS308397455794', '千葉美月', 1, '+81 80-6663-7766', 2, '689045397502175582', 'Rm. 18, 2-1-20 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-08-02', 0, 0, 'chibmitsu4', '2011-12-24', 'mitsukichiba', '2018-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS958232445650', '小川七海', 0, '+1 312-471-0280', 1, '714516370323925872', '971 Pedway Apt 39, Chicago, IL 60601, United States', '1997-07-08', 0, 0, 'ogawa1', '2013-09-25', 'nanami9', '2014-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS605646146933', '原田美月', 0, '+44 (20) 0179 7510', 1, '467888099751841111', 'Block 18, 918 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-27', 0, 0, 'haradamitsuki425', '2004-08-28', 'mitsuki620', '2013-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS196107289740', 'Richard Wilson', 1, '+86 28-883-2524', 2, '171085450163928891', 'No.36 building, 402 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-04-18', 0, 0, 'richardwils', '2009-07-06', 'richard123', '2010-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS198437565443', 'Micheal Vargas', 0, '+81 3-5944-9138', 4, '987985318805564476', '27F, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-03', 0, 0, 'vargas302', '2002-01-25', 'vmi', '2021-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS916319924507', '李秀英', 0, '+86 21-836-2502', 0, '407949894873122600', '中国上海市闵行区宾川路425号华润大厦26室', '1998-03-23', 0, 0, 'xiuyingli6', '2001-12-18', 'lixiuying', '2018-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS253642579950', 'Marjorie Robertson', 0, '+86 182-1925-9974', 2, '104358628363620390', 'No.22 building, 992 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-09-16', 0, 0, 'marrob', '2010-05-30', 'romarjorie', '2004-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS441104396003', '近藤涼太', 0, '+81 80-1912-2546', 2, '029034646079511896', '14-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1993-03-28', 0, 0, 'ryotakond4', '2008-10-11', 'kondo327', '2018-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS820628110512', '田惠敏', 1, '+44 (151) 104 4385', 1, '294235527530068219', 'No.7 Main building, 942 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-01-18', 0, 0, 'tinwaiman78', '2012-11-21', 'waimantin4', '2009-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS229963095646', 'Sharon Porter', 1, '+81 11-039-9938', 2, '645821263080766453', 'Rm. 15, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1988-11-02', 0, 0, 'sporter3', '2009-02-14', 'portes', '2016-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS803094498704', 'Dennis Burns', 0, '+86 135-3849-0562', 1, '466507897163531390', 'No.37 building, 748 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-12-04', 0, 0, 'dbu', '2001-09-06', 'burns1', '2003-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS609112362986', '岩崎和真', 1, '+44 (161) 477 4423', 1, '368401625427657710', 'Block 39, 942 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-04-13', 0, 0, 'iwasakik', '2014-09-26', 'iwasakikazuma', '2012-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS037629454947', '阿部桜', 0, '+81 3-0844-9539', 2, '532732891673576731', '1-kai, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-12-27', 0, 0, 'abesakura302', '2000-09-26', 'sab604', '2004-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS674229344001', '平野悠人', 1, '+81 66-096-5731', 2, '435041193283321192', 'Rm. 33, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1987-11-14', 0, 0, 'yutohirano1021', '2002-07-22', 'hiryu', '2014-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS504035609105', 'Lee Fernandez', 0, '+81 90-3306-7216', 3, '471614713562473175', 'Rm. 49, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-02-11', 0, 0, 'fernale', '2015-09-25', 'lfer', '2013-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS942311938215', 'William Ford', 1, '+86 167-0466-8308', 1, '512016175754688607', 'No.9 building, 648 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-11-10', 0, 0, 'williford', '2020-09-15', 'william7', '2011-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS268247541193', '曹小慧', 0, '+86 20-939-6952', 3, '858969742227671115', 'Room 50, CR Building, 257 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-06-15', 0, 0, 'chosw', '2008-07-13', 'siuwacho8', '2007-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS165795409855', '唐天樂', 1, '+1 614-955-8973', 1, '963803269125620116', '673 East Cooke Road Suite 4, Columbus, GA 43214, United States', '1993-05-15', 0, 0, 'tinlok1105', '2006-03-04', 'ttl', '2020-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS053890074724', '麥明詩', 0, '+81 74-346-6590', 4, '586587395711685781', '41F, 3-9-2 Gakuenminami, Nara, Japan', '1989-08-14', 0, 0, 'msm', '2016-11-04', 'mms', '2015-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS932716526786', 'Anne Sanders', 1, '+86 187-8492-6272', 1, '032736982525630292', '中国广州市越秀区中山二路192号华润大厦2室', '1991-07-13', 0, 0, 'ansanders', '2015-04-29', 'annsand', '2005-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS985347700265', 'Christine Soto', 1, '+81 11-846-6611', 1, '661724522721217214', 'Rm. 34, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1998-04-25', 0, 0, 'chrissoto75', '2011-12-13', 'sotochr', '2020-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS316256888161', 'Bonnie Ferguson', 1, '+86 21-011-1681', 3, '771948870306318422', '25F, 488 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-12-14', 0, 0, 'bonnieferguson', '2004-11-18', 'bonnief', '2020-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS338762891792', '西村悠人', 0, '+44 (1865) 85 7087', 2, '105143262796478126', 'No.32 Main building, 638 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-08-03', 0, 0, 'yutonish', '2011-04-09', 'nishimura1120', '2020-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS045845158315', '萧子韬', 1, '+86 148-5432-0428', 2, '330035389088204710', 'Room 33, 472 Shennan Ave, Futian District, Shenzhen, China', '1995-05-21', 0, 0, 'xiaozit', '2018-06-18', 'xizi8', '2004-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS327409509846', '山口海斗', 0, '+1 213-645-9993', 3, '009490293014830803', '819 Sky Way Apt 45, Los Angeles, CA 90043, United States', '1992-02-29', 0, 0, 'yamaguchi2011', '2011-08-13', 'kaito95', '2014-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS151724736160', 'Roger Mills', 1, '+86 180-0840-2144', 0, '294609626145710893', 'Room 11, 539 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1987-04-29', 0, 0, 'millsr', '2005-01-29', 'rogermills', '2015-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS581497279680', '小林瑛太', 1, '+81 3-0305-7149', 1, '396612144563744344', '25F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-05-21', 0, 0, 'kobayashie', '2007-01-09', 'kobayei', '2022-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS185299194363', 'Jeffery Gordon', 0, '+1 614-068-3727', 3, '034626999370249834', '606 East Alley Suite 27, Columbus, GA 43201, United States', '1998-11-05', 0, 0, 'gorjef', '2009-02-10', 'gordonjeffery2013', '2015-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS576739870123', '佐藤光莉', 1, '+1 838-498-1033', 4, '023370009480576001', '932 State Street 3rd Floor, Albany, NY 12203, United States', '1996-02-04', 0, 0, 'sato228', '2000-11-04', 'hsato', '2004-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS623018818137', '丁晓明', 1, '+44 5718 280651', 1, '400968518322853327', 'Flat 22, 921 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-11-18', 0, 0, 'xiaoming5', '2018-05-27', 'xiaoming8', '2002-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS823055038606', 'Ethel Palmer', 0, '+86 168-6745-7980', 0, '361089965483050826', 'No.42 building, 472 Yueliu Rd, Fangshan District, Beijing, China', '1993-07-25', 0, 0, 'epalmer5', '2017-06-13', 'palmeethel4', '2008-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS940926880184', '佐々木美咲', 1, '+1 212-968-4574', 4, '370272273508790758', '929 Fifth Avenue Apartment 13, New York, NY 10017, United States', '1996-05-17', 0, 0, 'sasmisaki', '2009-09-23', 'sasakmis', '2006-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS315699846325', '上田葵', 0, '+86 130-3435-6649', 3, '212571442284222880', 'Room 44, CR Building, 202 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-04-11', 0, 0, 'aoi1967', '2005-05-06', 'ueda6', '2004-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS531296921150', '吉田紗良', 0, '+81 70-2712-5684', 0, '688319662476301283', '日本東京品川区東五反田五丁目2番2号11階', '1986-06-15', 0, 0, 'sarayos', '2003-09-03', 'sarayos', '2005-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS660876358688', '罗云熙', 1, '+81 3-5022-8230', 1, '063315338359439605', '44-kai, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-03-29', 0, 0, 'ylu', '2013-03-15', 'luyunx1944', '2014-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS596020154877', '贾詩涵', 0, '+81 11-307-9690', 2, '874956625113939528', '日本札幌豊平区豊平三条十三丁目3番15号5号室', '1996-11-13', 0, 0, 'shihji', '2004-06-01', 'jshihan', '2008-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS489137891213', 'Paul Dixon', 0, '+44 5380 134838', 3, '792088965130784421', 'No.33 Main building, 422 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-06-04', 0, 0, 'dpaul', '2019-06-12', 'pd78', '2020-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS402220490915', '清水陸', 1, '+81 80-1717-0867', 1, '290210368341838148', '日本札幌厚別区上野幌一条二丁目1番17号6階', '1992-05-11', 0, 0, 'shiriku', '2012-02-21', 'shimizu1', '2014-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS386987509990', '岡本大和', 0, '+44 (116) 860 6345', 3, '254270098438226641', 'No.12 Main building, 68 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-01-27', 0, 0, 'yamato1959', '2021-06-14', 'yamato70', '2014-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS274269453770', '遠藤紗良', 0, '+44 7801 124306', 4, '845246306562944813', 'No.50 Main building, 645 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-01-06', 0, 0, 'endosara', '2006-12-07', 'endosara', '2013-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS322197315118', 'Eva Meyer', 1, '+1 838-059-4236', 3, '164553046171136426', '874 Central Avenue Apartment 46, Albany, NY 12206, United States', '1995-04-12', 0, 0, 'meyer43', '2013-09-17', 'mev', '2009-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS827824617506', 'Sherry Nelson', 1, '+86 10-866-2081', 2, '174296395578369081', '中国北京市朝阳区三里屯路857号48室', '1995-12-06', 0, 0, 'sherry72', '2004-07-24', 'nelson4', '2008-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS773196297255', '魏宇宁', 1, '+86 168-0997-3996', 4, '368748036930978264', '中国中山天河区大信商圈大信南路151号23号楼', '1990-05-14', 0, 0, 'yuning53', '2021-01-01', 'ywei', '2004-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS925184467301', '袁安琪', 1, '+1 718-931-7261', 3, '140175195291752892', '934 Nostrand Ave Suite 41, Brooklyn, NY 11216, United States', '1995-02-11', 0, 0, 'anqyuan1204', '2000-01-03', 'anqi65', '2016-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS570013937223', 'Amanda Patel', 0, '+86 158-7636-3114', 0, '667618412455133593', 'Room 36, 13 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-07-21', 0, 0, 'patel68', '2003-02-08', 'patelam', '2016-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS146932626523', '小山桜', 1, '+81 3-4388-6078', 1, '153188870902302261', '日本東京中央区銀座三丁目12番16号49号室', '1989-04-18', 0, 0, 'koyama84', '2004-06-20', 'sakko', '2002-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS465377445742', '何安琪', 0, '+44 (151) 312 1416', 2, '961796745901090677', 'No.28 Main building, 324 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-10-11', 0, 0, 'hea', '2012-02-17', 'hean', '2012-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS858014264610', '杜小慧', 1, '+86 760-791-5772', 1, '173707779095914706', 'No.25 building, 200 Lefeng 6th Rd, Zhongshan, China', '1996-08-20', 0, 0, 'tosiuwai3', '2003-06-22', 'tosw', '2020-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS003209770999', '曹曉彤', 1, '+81 52-215-6044', 4, '856036319966748669', '21-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-09-09', 0, 0, 'hiutungc6', '2002-10-12', 'hiutung1945', '2000-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS209047900812', '孔璐', 0, '+81 3-1094-9132', 3, '620535661577530712', '20F, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1999-01-30', 0, 0, 'kolu', '2012-06-26', 'kl3', '2001-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS970516308779', '溫國權', 1, '+86 145-3862-4310', 3, '824428397405927982', '中国北京市西城区复兴门内大街294号42室', '1991-12-07', 0, 0, 'wankk', '2014-02-23', 'kkwan', '2020-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS151745164057', '邱秀英', 0, '+81 70-7000-9922', 3, '839957855237297516', '22F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1999-02-13', 0, 0, 'xiuying7', '2011-11-23', 'xiuyingqiu', '2017-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS031621083766', 'Jeremy Myers', 0, '+81 90-9353-0400', 2, '676571163904957811', 'Rm. 39, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-08-18', 0, 0, 'myejeremy', '2005-02-19', 'myersjeremy68', '2005-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS752003910476', '葉仲賢', 1, '+81 11-518-4680', 1, '849454973554134130', 'Rm. 34, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-03-24', 0, 0, 'ychungyin1956', '2008-11-03', 'chungyin64', '2021-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS259299832631', 'Benjamin Woods', 0, '+86 193-3097-7174', 1, '631768914527579642', 'No.19 building, 647 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-12-18', 0, 0, 'benjaminwoods', '2002-09-18', 'bewoo', '2008-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS445075951831', '唐云熙', 0, '+81 52-052-5290', 3, '237891616217364935', 'Rm. 48, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-01-29', 0, 0, 'tangyunxi1130', '2019-09-20', 'tayunxi', '2019-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS001418683756', '山崎和真', 1, '+81 11-685-7187', 4, '973514767618864050', '日本札幌清田区真栄四条五丁目19番1号37号室', '1995-05-06', 0, 0, 'kazumayama', '2004-04-07', 'yamazakikazuma', '2010-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS005382259083', '松田葉月', 0, '+44 (1223) 65 3935', 2, '735255558331767810', 'No.9 Main building, 642 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1998-12-07', 0, 0, 'hazukimatsuda2005', '2019-03-14', 'matsudahazuki', '2001-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS852114401213', '關國榮', 0, '+81 90-2587-3147', 1, '026602948785077541', '日本札幌白石区菊水三条五丁目2番9号1号室', '1988-08-29', 0, 0, 'kwkw', '2017-03-16', 'kwkw', '2014-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS764036028493', '杜家文', 0, '+86 157-3208-1404', 2, '962896227662036718', 'No.7 building, No. 341, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-07-14', 0, 0, 'kamant926', '2007-10-21', 'kamant', '2004-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS073738031741', '周朝偉', 1, '+86 10-040-2077', 4, '450631893860457172', '46F, 685 Sanlitun Road, Chaoyang District, Beijing, China', '1993-03-11', 0, 0, 'chowcw', '2016-07-27', 'chowcw', '2010-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS404707526271', '黎慧儀', 1, '+86 10-898-0040', 1, '682557089628057567', '中国北京市朝阳区三里屯路54号12栋', '1995-05-12', 0, 0, 'lwaiyee', '2017-12-13', 'lawaiyee', '2009-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS115479204360', 'Teresa Ward', 1, '+86 195-9970-5132', 1, '292564278681322431', 'No.24 building, 888 Kengmei 15th Alley, Dongguan, China', '1985-06-10', 0, 0, 'wardt9', '2019-10-27', 'wt51', '2021-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS325728765356', '宋子异', 0, '+86 180-3675-5049', 4, '771143740914276740', '中国北京市房山区岳琉路31号38室', '1997-10-16', 0, 0, 'ziyi8', '2021-06-02', 'ziysong207', '2021-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS667353719428', 'Michelle Lewis', 1, '+86 760-775-3658', 4, '691017684487535567', '中国中山紫马岭商圈中山五路173号17号楼', '1997-05-25', 0, 0, 'michellel620', '2009-09-11', 'lewism', '2014-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS021891794359', '李詩涵', 1, '+1 212-744-4895', 1, '277334138379808655', '535 Wooster Street Apt 9, New York, NY 10012, United States', '1988-03-09', 0, 0, 'lishiha5', '2008-07-21', 'shli', '2000-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS863527585568', '森蓮', 1, '+86 10-1212-5150', 0, '633166331221222389', 'No.34 building, 661 Yueliu Rd, Fangshan District, Beijing, China', '1991-10-08', 0, 0, 'remori105', '2002-01-14', 'mori03', '2018-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS728917940977', '阎岚', 1, '+81 11-316-9399', 0, '919952054115214365', 'Rm. 3, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-09-20', 0, 0, 'yanlan', '2005-08-29', 'lanyan84', '2020-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS867247849022', '佐々木七海', 0, '+44 7779 488219', 0, '119715720862618473', 'Block 11, 952 Hanover Street, London, W1S 1YD, United Kingdom', '1993-01-29', 0, 0, 'nansasaki', '2000-02-12', 'sasakina1975', '2006-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS323627110174', '木下花', 1, '+86 755-0667-6108', 3, '034276669100686585', '中国深圳罗湖区田贝一路587号48栋', '1991-07-01', 0, 0, 'hk03', '2000-11-15', 'hanakin86', '2021-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS855332927226', '徐嘉欣', 1, '+1 212-464-4480', 1, '424755932403337924', '162 Wooster Street Apt 4, New York, NY 10012, United States', '1998-12-19', 0, 0, 'karyantsu', '2004-12-15', 'tsuikaryan', '2017-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS157700360023', '郝詩涵', 1, '+1 838-923-1563', 1, '688773607803478621', '314 Lark Street Suite 50, Albany, NY 12210, United States', '1990-08-12', 0, 0, 'shihanh', '2007-03-11', 'haoshihan', '2003-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS679259501010', 'Rita Mason', 0, '+86 191-7347-3091', 3, '636265154950997978', 'No.35 building, 462 Binchuan Rd, Minhang District, Shanghai, China', '1994-12-08', 0, 0, 'rima', '2010-10-20', 'masrita1987', '2005-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS429787640447', '王慧琳', 1, '+86 192-8982-9924', 3, '879024681038628670', 'No.28 building, 236 Shanhu Rd, Dongguan, China', '1986-09-03', 0, 0, 'wailamwon2020', '2002-06-20', 'wwailam', '2007-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS466631239939', '龚云熙', 1, '+86 755-839-7209', 3, '703213970001838101', 'Room 50, CR Building, 328 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-01-01', 0, 0, 'gyunxi', '2011-11-04', 'gonyunx', '2016-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS552942711127', '中川優奈', 1, '+81 70-2160-4221', 1, '626010019781783050', '10-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-09-18', 0, 0, 'yunakagawa1985', '2021-04-10', 'yna17', '2018-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS637163501459', 'Barry Henry', 1, '+81 80-6485-3860', 2, '001885003775495033', '1F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-09-04', 0, 0, 'barryh', '2005-10-28', 'henrybarry5', '2009-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS818636044777', '孟宇宁', 0, '+81 3-3173-4584', 2, '591171938689030689', '14-kai, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-05', 0, 0, 'yuninmeng', '2010-03-07', 'yunimeng', '2012-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS912455368477', 'Theresa Hicks', 0, '+86 156-9814-9037', 1, '343885568804417997', 'No.15 building, 651 Ganlan Rd, Pudong, Shanghai, China', '1992-11-25', 0, 0, 'theresah3', '2016-03-25', 'therhicks409', '2004-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS508093278478', '黄岚', 1, '+1 212-302-5351', 2, '518032617642948257', '921 Canal Street Apartment 12, New York, NY 10013, United States', '1990-04-09', 0, 0, 'hualan', '2020-09-08', 'lahua', '2015-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS763833924169', '福田陸', 0, '+1 212-063-7734', 1, '409412893158806007', '344 Bank Street Apt 48, New York, NY 10014, United States', '1991-03-30', 0, 0, 'rikufuku', '2007-07-13', 'rikufukud1', '2008-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS555791773400', '太田百花', 0, '+44 7892 516820', 2, '010281718345969243', 'Unit 3, Oxford Eco Centre, 879 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1985-11-06', 0, 0, 'momokaota', '2008-08-05', 'otmo63', '2012-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS241491612568', '新井紗良', 0, '+81 70-4556-4819', 1, '341702255844690726', '日本おおさかし近江堂一丁目7番2号26階', '1993-05-07', 0, 0, 'arasar', '2012-11-30', 'saraarai2', '2007-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS103602405941', 'Jason Mason', 0, '+81 80-3843-8362', 2, '512015439045014306', '日本東京品川区東五反田五丁目2番13号4階', '1987-08-27', 0, 0, 'jasonmason', '2008-05-26', 'masonj', '2007-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS443859878537', '加藤大輔', 1, '+44 5456 481790', 2, '536369620721541436', 'No.12 Main building, 384 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-03-21', 0, 0, 'daisukek2011', '2010-03-11', 'kato1206', '2021-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS744399874384', '文麗欣', 1, '+44 5798 924266', 4, '458576062789936162', 'Unit 14, Oxford Eco Centre, 563 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-12-31', 0, 0, 'laiyan2', '2019-09-28', 'laiyanma3', '2003-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS083300975446', '赵子韬', 1, '+81 70-3287-8116', 3, '473554084278570830', '日本おおさかし東住吉区東田辺三丁目27番9号12号室', '1997-08-06', 0, 0, 'zhaozitao', '2016-05-06', 'zhaozitao5', '2005-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS132974672191', 'Irene Ward', 0, '+1 212-316-3688', 3, '982760905964311249', '360 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-08-07', 0, 0, 'wardirene', '2015-08-14', 'irene6', '2013-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS867719084773', '戴子异', 0, '+86 197-0207-6401', 1, '598883292732802176', 'Room 36, CR Building, 792 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-11-18', 0, 0, 'ziyida5', '2002-09-14', 'daiziyi', '2013-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS885634088787', '雷志遠', 0, '+81 90-9116-1902', 3, '596576481242616298', '38-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1997-06-20', 0, 0, 'chiyuenlou', '2007-07-02', 'louichiyuen514', '2021-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS581067028597', '方詠詩', 1, '+1 614-702-9082', 4, '178220014375851903', '738 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1989-06-26', 0, 0, 'fws', '2013-09-10', 'fong4', '2000-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS301677310138', '姜朝偉', 0, '+1 212-840-2600', 2, '350296166959265758', '238 Canal Street Apartment 35, New York, NY 10013, United States', '1987-03-11', 0, 0, 'chancw', '2018-05-28', 'cwc', '2017-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS369951451855', '田慧嫻', 0, '+1 838-891-9234', 1, '954204184532326791', '337 Central Avenue Apt 40, Albany, NY 12206, United States', '1985-08-19', 0, 0, 'twaihan707', '2004-03-14', 'watin', '2011-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS013739886370', '葉麗欣', 0, '+1 614-809-2184', 2, '925267950375645571', '563 Diplomacy Drive Suite 48, Columbus, GA 43228, United States', '1994-12-15', 0, 0, 'yiplaiyan1017', '2002-03-09', 'laiyanyip', '2000-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS647126265025', 'Curtis Phillips', 0, '+86 186-8252-5547', 1, '755274000433860288', '5F, 514 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-05-31', 0, 0, 'curtisphillips', '2012-08-07', 'phillipscurtis4', '2010-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS450386106232', '元富城', 0, '+44 5235 476436', 1, '566384417096805887', 'No.21 Main building, 224 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1985-02-20', 0, 0, 'fsy', '2010-08-07', 'yuen76', '2015-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS531618293803', '傅頴璇', 1, '+1 213-139-5001', 3, '818643250242715103', '86 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-01-20', 0, 0, 'fuwingsuen1954', '2004-07-31', 'wifu1958', '2007-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS516226138310', '官惠妹', 1, '+86 192-6200-3165', 4, '389756149907481869', '中国北京市西城区复兴门内大街636号33室', '1989-05-08', 0, 0, 'kohuimei', '2007-09-26', 'hmk', '2012-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS459398891535', '彭明詩', 1, '+1 614-923-1637', 3, '146545660052081312', '835 East Cooke Road Apartment 4, Columbus, GA 43214, United States', '1985-04-20', 0, 0, 'pang8', '2003-11-08', 'msp4', '2001-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS190885217828', '罗璐', 0, '+44 7555 251579', 3, '371545507710985862', 'No.12 Main building, 435 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-02-08', 0, 0, 'luol', '2016-12-13', 'lul8', '2021-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS875542991032', 'Maria Ortiz', 0, '+1 838-687-6426', 4, '685196898310049496', '331 Central Avenue Suite 3, Albany, NY 12206, United States', '1995-03-03', 0, 0, 'ortmar43', '2017-10-17', 'mao', '2009-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS406715889056', 'Jennifer Rose', 0, '+86 199-6706-6402', 3, '576099984387949281', '中国成都市成华区玉双路6号682号22楼', '1990-06-07', 0, 0, 'jenniro80', '2002-12-14', 'jros', '2014-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS886732669601', 'Eugene Castillo', 1, '+86 20-681-7629', 2, '693277653759263766', '中国广州市越秀区中山二路549号44楼', '1994-08-31', 0, 0, 'caseugene', '2018-07-06', 'castillo509', '2013-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS655027319596', 'Gladys Wright', 1, '+44 (20) 8153 1024', 3, '587750136155604841', 'Flat 43, 551 Hanover Street, London, W1S 1YD, United Kingdom', '1986-05-14', 0, 0, 'gladys09', '2011-12-28', 'wrighgladys', '2010-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS698678895120', '酒井瑛太', 1, '+44 5020 999456', 4, '661126364997112043', 'Unit 24, Oxford Eco Centre, 96 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-11-11', 0, 0, 'sakai5', '2020-08-21', 'eita720', '2010-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS299773548261', 'Jacqueline Ruiz', 0, '+81 11-592-4786', 1, '831057607293682594', '19-kai, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-07-30', 0, 0, 'jr13', '2009-01-24', 'ruizjacqueline', '2004-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS796951221207', 'Henry Olson', 0, '+1 330-186-3042', 2, '354997415771318528', '336 Fern Street Apt 31, Akron, OH 44307, United States', '1989-01-23', 0, 0, 'holson', '2000-10-31', 'henry316', '2019-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS008714600387', '山本翼', 1, '+1 213-961-9795', 3, '000027559418660478', '110 S Broadway Suite 26, Los Angeles, CA 90015, United States', '1994-02-27', 0, 0, 'tsubyamam', '2019-03-09', 'yamamtsu10', '2009-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS205935027658', '野村百恵', 1, '+86 760-416-0724', 2, '192180403069460859', '中国中山京华商圈华夏街355号21楼', '1987-04-18', 0, 0, 'momonomura', '2013-06-09', 'nomuramom', '2016-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS006570876978', '森明菜', 0, '+44 (20) 0536 0007', 1, '278488015665446891', 'Flat 32, 497 Pollen Street, London, W1S 1NG, United Kingdom', '1991-12-29', 0, 0, 'moria', '2003-05-14', 'akinamori331', '2018-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS825365108906', '邹嘉伦', 0, '+44 7993 791830', 1, '943399267360447169', 'No.39 Main building, 900 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-15', 0, 0, 'zoujialun', '2021-03-31', 'jialun128', '2006-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS335427782343', '千葉翼', 1, '+81 90-6067-4642', 0, '168767014393291493', '40-kai, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-11-11', 0, 0, 'tsubasach', '2020-03-26', 'chibatsuba830', '2014-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS589293419237', '曾宇宁', 1, '+86 760-5649-0079', 3, '449628860328631293', 'No.4 building, 318 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-12-24', 0, 0, 'yuningzeng', '2005-06-05', 'zengyun', '2000-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS273255726255', 'Jose Anderson', 1, '+86 175-9479-9768', 2, '465920066474039599', '中国深圳罗湖区清水河一路238号华润大厦41室', '1996-12-17', 0, 0, 'anjose', '2011-06-24', 'anderson901', '2002-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS301640158672', '魏晓明', 1, '+44 5970 254503', 0, '170237472891468559', 'No.19 Main building, 158 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-08-03', 0, 0, 'wex2', '2011-05-22', 'xiaoming42', '2000-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS424781841891', '田中美緒', 0, '+86 160-9126-9707', 4, '780553042984383599', '中国北京市延庆区028县道530号4楼', '1991-09-02', 0, 0, 'mt55', '2021-01-03', 'miot', '2010-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS095872197360', 'Francisco Stone', 1, '+81 70-5522-6696', 4, '511188519398853387', 'Rm. 15, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-02-06', 0, 0, 'stone1978', '2002-09-16', 'stofr1', '2005-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS518815874008', '山下美咲', 1, '+86 179-4823-3407', 3, '238200721343760554', 'No.46 building, 415 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-11-30', 0, 0, 'misaki64', '2009-08-16', 'ymi', '2001-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS961112847079', '前田陸', 0, '+81 90-5290-6266', 2, '027959943405678318', '日本おおさかし近江堂一丁目7番6号45階', '1990-09-02', 0, 0, 'rikumaeda', '2010-09-03', 'rikumae4', '2007-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS820231656931', '溫梓晴', 0, '+1 213-639-2722', 4, '055035290364414869', '325 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1992-02-10', 0, 0, 'wantszching', '2012-03-14', 'wantszching', '2009-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS301308271142', '张致远', 1, '+81 3-7643-6861', 0, '797349656231705851', '日本東京渋谷区代々木二丁目3番6号50階', '1997-05-17', 0, 0, 'zhang4', '2011-12-07', 'zhiyuanzh91', '2006-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS322889255798', '區朝偉', 1, '+44 7100 638060', 0, '861098908912568576', 'No.49 Main building, 583 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-10-04', 0, 0, 'chiuwai6', '2007-09-27', 'achiuwai9', '2010-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS478827235502', 'Marjorie Aguilar', 0, '+81 52-634-5416', 1, '340878212451559571', '36F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-12-02', 0, 0, 'aguilarmarjorie', '2011-11-08', 'amar', '2010-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS372584306623', '何國明', 0, '+86 28-702-0187', 3, '204920791863307404', '中国成都市成华区双庆路526号华润大厦13室', '1997-06-21', 0, 0, 'hkm7', '2006-12-25', 'ho41', '2009-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS053974998365', '郭嘉伦', 1, '+44 5218 450892', 1, '488226442478801074', 'Flat 49, 370 Regent Street, London, W1B 2LX, United Kingdom', '1997-09-29', 0, 0, 'guojial322', '2001-06-14', 'guojialun', '2000-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS276242708137', '野口絢斗', 1, '+81 90-7765-7530', 0, '171331027652071666', '11F, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1993-04-18', 0, 0, 'nogayato', '2015-01-30', 'noguayato425', '2006-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS316706068742', 'Adam Woods', 1, '+81 52-927-5013', 0, '568104812447761998', '3-kai, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-08-07', 0, 0, 'woodsadam4', '2005-12-25', 'adamw9', '2008-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS622440783672', '秦杰宏', 0, '+86 154-0256-3809', 4, '866279490539559516', '中国上海市闵行区宾川路518号19号楼', '1987-05-01', 0, 0, 'qin17', '2021-02-06', 'jiehong5', '2018-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS875297156399', '尹秀英', 1, '+81 80-8374-8210', 1, '296928050370181458', '27-kai, 3-9-5 Gakuenminami, Nara, Japan', '1992-07-31', 0, 0, 'yxiuying', '2015-03-10', 'yin2014', '2000-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS322992163884', 'Troy Hamilton', 0, '+81 3-2575-9858', 3, '445392282354393963', '35F, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-03-09', 0, 0, 'troh901', '2006-01-17', 'troy4', '2017-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS026426537802', '周詩涵', 1, '+44 (121) 586 8679', 0, '755750063092925198', 'No.28 Main building, 567 New Street, Birmingham, B2 4DB, United Kingdom', '1995-08-12', 0, 0, 'shzhou4', '2008-08-21', 'zhou919', '2019-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS479172696683', '中野美緒', 1, '+44 (151) 021 7231', 0, '725241263027655833', 'Flat 39, 112 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-03-18', 0, 0, 'nm608', '2015-11-01', 'mionakan90', '2021-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS229854612284', '武田美羽', 1, '+81 70-5163-0493', 3, '513011978127972518', '7F, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1992-06-27', 0, 0, 'miutakeda', '2015-10-11', 'tmiu', '2007-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS316585562160', '许子韬', 0, '+86 28-279-6647', 2, '781681014706470815', '29F, 729 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-05-21', 0, 0, 'xuz905', '2008-12-17', 'xuzita', '2003-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS029034813860', '黎晓明', 0, '+1 312-946-1707', 2, '139704600346732881', '104 Pedway Apt 50, Chicago, IL 60601, United States', '1991-08-13', 0, 0, 'xiaomingli5', '2010-01-20', 'xili4', '2014-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS194991560518', '酒井湊', 0, '+86 760-3836-8714', 1, '705815535354540605', '中国中山乐丰六路203号47栋', '1991-09-14', 0, 0, 'sakaiminato', '2017-09-11', 'minatosakai15', '2006-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS912315068812', 'Herbert Powell', 1, '+1 838-547-7580', 3, '271433823989837527', '728 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-12-08', 0, 0, 'herbertp6', '2007-04-25', 'powherbert', '2009-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS318012209096', 'Harry Wright', 1, '+86 148-8941-0740', 3, '980511932858251773', '中国北京市延庆区028县道776号20号楼', '1994-11-18', 0, 0, 'wrightharry', '2011-08-27', 'wright414', '2007-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS954856159650', 'Tammy Stewart', 0, '+81 11-629-6218', 1, '387897138611230387', 'Rm. 15, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-09-18', 0, 0, 'tammystewa97', '2017-07-18', 'tammy53', '2016-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS023266031065', '溫祖兒', 1, '+44 (20) 6310 2099', 1, '983696495437428026', 'No.24 Main building, 909 Pollen Street, London, W1S 1NG, United Kingdom', '1997-03-30', 0, 0, 'choyee1969', '2007-11-11', 'wanchoyee17', '2002-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS503320874383', '曹國榮', 0, '+44 (1865) 69 3685', 2, '964437034801231912', 'Flat 2, 506 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-11-10', 0, 0, 'kwcho', '2012-10-09', 'kwokwingcho', '2013-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS866292416037', 'Mike Medina', 1, '+44 (151) 033 4310', 1, '603127974787590081', 'Flat 27, 847 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-12-01', 0, 0, 'mikemedin', '2005-11-11', 'medinam', '2009-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS936702592079', '毛世榮', 0, '+86 755-8390-1071', 0, '733858710537794389', '中国深圳福田区景田东一街666号5室', '1987-11-13', 0, 0, 'swmo', '2009-09-20', 'swmo824', '2001-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS679785636071', 'Dennis Fernandez', 1, '+86 191-1107-2663', 1, '654256789939150757', '中国北京市房山区岳琉路70号39楼', '1998-02-24', 0, 0, 'dfernandez', '2021-04-20', 'dennisferna', '2007-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS484804423713', '清水美緒', 1, '+44 5628 766147', 1, '640769681899243604', 'No.50 Main building, 326 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-08-15', 0, 0, 'mioshimi', '2012-09-28', 'smio', '2008-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS890960182140', '江頴璇', 1, '+81 74-347-1499', 1, '129081504781459381', '日本ならし西大寺赤田町一丁目7番8号20階', '1989-04-04', 0, 0, 'kong66', '2018-06-27', 'wingsuen5', '2018-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS045229733366', '原田蓮', 1, '+86 131-2839-6644', 2, '958311346516075612', 'Room 15, CR Building, 82 Lefeng 6th Rd, Zhongshan, China', '1994-03-13', 0, 0, 'ren64', '2000-09-27', 'haradren', '2002-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS717708380762', 'Billy Owens', 1, '+81 80-8215-2056', 4, '894841540238129933', '3F, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-09-08', 0, 0, 'ob623', '2007-06-22', 'owens1112', '2008-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS056892189903', '鄺志明', 1, '+81 80-3983-6157', 3, '837581456239708795', '日本なごやし北区清水三丁目19番9号49階', '1992-11-13', 0, 0, 'chiming10', '2021-12-25', 'chimingkw', '2004-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS249223635097', '狄安娜', 0, '+44 (151) 380 6463', 4, '081301208004356556', 'No.5 Main building, 645 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-01-28', 0, 0, 'onnati', '2021-02-02', 'onti', '2018-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS368968455314', '郭子韬', 0, '+86 10-2348-1525', 0, '132434015004683983', '中国北京市東城区東直門內大街994号27栋', '1993-11-11', 0, 0, 'guozitao', '2001-02-13', 'guzitao8', '2010-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS009151839651', 'Leslie Dunn', 1, '+1 212-336-6260', 0, '179906754590049583', '67 Bank Street Apartment 5, New York, NY 10014, United States', '1993-06-11', 0, 0, 'dunnlesli', '2006-02-23', 'dunnles', '2013-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS102284928141', 'Willie Harrison', 0, '+44 (20) 9214 5498', 4, '007645422280306617', 'Block 3, 621 Hanover Street, London, W1S 1YD, United Kingdom', '1994-05-16', 0, 0, 'harrison2', '2010-05-30', 'willieharrison1130', '2015-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS287835741827', 'Francis Murphy', 0, '+1 330-852-8060', 1, '935520388115088710', '829 Collier Road Apt 29, Akron, OH 44320, United States', '1985-10-28', 0, 0, 'frm5', '2014-05-14', 'murpf1961', '2003-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS749689735396', '宣玲玲', 1, '+86 149-1310-1940', 1, '986061774709734259', '中国上海市浦东新区橄榄路67号华润大厦23室', '1990-04-09', 0, 0, 'hsualingling328', '2019-06-26', 'llhsuan', '2015-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS997238401859', '千葉悠人', 0, '+81 74-948-2764', 3, '592927871624295397', '日本ならし大和郡山市本庄町一丁目1番18号39階', '1994-04-01', 0, 0, 'chibayuto4', '2006-12-18', 'yuto17', '2005-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS857311667773', '张震南', 0, '+86 20-8777-4522', 3, '277045334326810043', 'Room 17, CR Building, 371 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-03-08', 0, 0, 'zhzhang', '2012-11-22', 'zhz', '2000-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS777907187415', 'Sheila Washington', 0, '+86 769-3707-1625', 1, '866446549517913153', '中国东莞环区南街二巷384号华润大厦8室', '1995-02-15', 0, 0, 'sheilawashi', '2017-05-07', 'washington6', '2002-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS888080121509', 'Victor Castillo', 0, '+86 10-3160-4271', 3, '347561317463950210', '43F, 642 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-03-12', 0, 0, 'castillovictor6', '2020-07-11', 'casvictor4', '2004-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS375219401582', '楊國明', 0, '+86 168-7871-8942', 1, '119305208329624923', '32F, 862 Tianhe Road, Tianhe District, Guangzhou, China', '1992-10-01', 0, 0, 'yeunkm', '2012-02-12', 'kmyeung7', '2011-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS819706828232', '白安娜', 1, '+81 80-1075-6228', 2, '955276700623676081', '日本東京品川区東五反田五丁目2番18号50階', '1985-08-24', 0, 0, 'onna1018', '2011-04-20', 'pakon03', '2015-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS933151214796', '郭家明', 0, '+81 52-188-4339', 4, '362749848060269412', '36-kai, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1986-11-18', 0, 0, 'kwokkm', '2002-10-13', 'kwok1966', '2019-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS262157900238', '任子韬', 0, '+81 3-4454-9343', 1, '842093321817676613', '日本東京中央区銀座三丁目12番10号14階', '1988-11-14', 0, 0, 'zitaoren', '2008-02-10', 'zren', '2010-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS042753879473', '姜惠妹', 0, '+1 838-009-0766', 2, '243271522090871654', '966 Lark Street 3rd Floor, Albany, NY 12210, United States', '1985-07-02', 0, 0, 'chahm5', '2009-08-02', 'chhm710', '2006-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS252711258895', 'Roy Ramirez', 0, '+1 838-240-2609', 4, '992218722762987661', '228 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1991-07-10', 0, 0, 'ramirez1987', '2017-01-30', 'ramirez9', '2014-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS812589317629', '郭小慧', 0, '+86 21-307-1594', 2, '606000857921806831', '中国上海市黄浦区淮海中路563号华润大厦27室', '1988-08-27', 0, 0, 'kwsi', '2003-09-05', 'swkw8', '2001-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS293629386853', '平野瑛太', 0, '+86 21-495-1965', 1, '368422933498330162', 'No.18 building, 134 Jianxiang Rd, Pudong, Shanghai, China', '1998-01-24', 0, 0, 'eh51', '2020-11-08', 'hirano70', '2003-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS690315534705', '成潤發', 0, '+86 755-204-6754', 4, '542188355737754808', '中国深圳罗湖区田贝一路433号20栋', '1991-02-17', 0, 0, 'yus6', '2000-01-07', 'yunfatsh7', '2019-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS641772576512', '大塚美羽', 1, '+86 760-394-5827', 2, '361390960616472581', '中国中山紫马岭商圈中山五路740号华润大厦43室', '1989-01-21', 0, 0, 'otsukam', '2015-12-31', 'otsuka522', '2000-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS460816902417', '野村陽菜', 1, '+81 70-0616-4246', 2, '574184821338391511', '35F, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1988-01-27', 0, 0, 'hn1967', '2013-10-05', 'nomuhina', '2003-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS616747167356', '向淑怡', 1, '+81 70-3678-7857', 3, '553456098435244269', '日本なごやし守山区瀬古東二丁目171番19号36階', '1985-04-26', 0, 0, 'heungsukyee', '2015-01-08', 'syheung2', '2020-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS140785577465', '薛家輝', 0, '+81 74-759-3081', 1, '514177032830634199', '40-kai, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-26', 0, 0, 'kafaisit4', '2022-01-17', 'sikaf', '2018-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS924543984689', '藤田詩乃', 1, '+81 11-653-5953', 3, '179462821961085249', '16-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-12-24', 0, 0, 'shinofuji', '2010-01-08', 'sfu', '2000-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS518866465917', 'Vincent Moreno', 0, '+81 52-137-6129', 3, '309688695353895180', '日本なごやし瑞穂区河岸町四丁目20番13号43階', '1998-09-15', 0, 0, 'mvin730', '2014-09-02', 'vincemor', '2010-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS071036475313', 'Bobby Rice', 0, '+86 755-5788-0651', 0, '722502452862835806', '中国深圳罗湖区蔡屋围深南东路838号31楼', '1989-10-11', 0, 0, 'ricebobby', '2017-01-09', 'bobbyrice', '2002-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS347489681314', 'Sean Wood', 1, '+86 195-3167-0127', 3, '566630190233216207', '中国上海市浦东新区橄榄路92号华润大厦45室', '1996-06-02', 0, 0, 'wood40', '2006-07-14', 'wsean', '2000-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS620945002591', 'Nathan Alexander', 0, '+1 212-249-3869', 0, '765936135875392326', '201 Bank Street Apartment 6, New York, NY 10014, United States', '1997-07-22', 0, 0, 'alexander1968', '2018-04-01', 'alexander7', '2009-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS108876987475', '沈云熙', 0, '+81 74-897-4030', 0, '440431010429263666', '日本ならし西大寺赤田町一丁目7番20号39号室', '1998-12-01', 0, 0, 'yunxishen', '2005-10-10', 'sheny84', '2005-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS676733580164', '斉藤美羽', 1, '+1 718-456-7749', 3, '926824061654984502', '486 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1986-01-24', 0, 0, 'miu00', '2004-12-18', 'saitom1110', '2012-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS586449777652', '何富城', 1, '+44 (121) 925 1063', 2, '876547503325507678', 'Flat 48, 731 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-08-30', 0, 0, 'fushingho', '2010-02-13', 'fushingho525', '2018-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS129823502242', 'Michelle Young', 1, '+81 52-942-1367', 0, '373456791292753323', '38-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-12-16', 0, 0, 'youngmichelle', '2015-08-24', 'michelleyoun', '2012-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS090103649724', 'Anna Butler', 0, '+86 183-5574-0486', 1, '138129134144232049', '中国北京市东城区东单王府井东街225号46号楼', '1994-07-05', 0, 0, 'annabut', '2016-11-18', 'bua', '2001-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS819200762733', '邹秀英', 0, '+86 176-3010-7412', 2, '064716321796066351', 'No.20 building, No. 12, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-07-16', 0, 0, 'zouxiuying4', '2009-12-02', 'zoxiuy1997', '2006-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS824215974149', 'Keith Webb', 0, '+44 5800 720458', 3, '548587075654173417', 'Block 8, 97 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-02-24', 0, 0, 'webb202', '2002-11-17', 'kweb', '2015-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS511737439330', '陶嘉伦', 1, '+1 718-011-5942', 3, '672620279451980265', '14 1st Ave Apt 21, Brooklyn, NY 11220, United States', '1985-02-05', 0, 0, 'tjial', '2012-04-04', 'taoj1031', '2016-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS743369526584', '馮仲賢', 0, '+81 3-4092-9115', 3, '594111302994815702', '日本東京港区東新橋一丁目5番2号33階', '1986-03-08', 0, 0, 'fungchungyin', '2002-10-09', 'cyf1110', '2003-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS664876942911', '武田葉月', 0, '+86 20-548-5350', 1, '683314566046242881', '中国广州市越秀区中山二路272号10室', '1991-02-19', 0, 0, 'hazutakeda', '2007-01-20', 'hazukitake', '2018-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS184740003091', '桜井優奈', 1, '+86 139-3981-2048', 1, '060026745192847079', '15F, No.707, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-05-08', 0, 0, 'yunasakurai1003', '2011-08-21', 'sakuraiyuna', '2005-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS562895290492', 'Bernard Freeman', 0, '+44 (116) 738 6860', 0, '613871879275790871', 'No.21 Main building, 233 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-07', 0, 0, 'bf1992', '2012-08-11', 'freemanbernard1104', '2016-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS448369964298', '橋本愛梨', 1, '+1 212-628-7078', 3, '771400959875252555', '958 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-04-04', 0, 0, 'hashimoto1940', '2012-04-16', 'airh', '2005-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS776789657174', '新井紗良', 0, '+44 7122 669915', 3, '661613159802421802', 'Block 44, 950 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-06-10', 0, 0, 'sararai02', '2009-04-18', 'saraar', '2015-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS171273447557', '長谷川湊', 1, '+81 52-622-3992', 2, '649897571781648007', '42-kai, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-09-09', 0, 0, 'mhasegawa8', '2004-07-30', 'haseminato', '2003-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS982274341600', '山田桜', 1, '+86 174-8055-5403', 3, '097247768287178289', '16F, No. 6, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-04-28', 0, 0, 'sya', '2015-07-25', 'sakura1122', '2017-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS283936321678', '長谷川樹', 1, '+1 330-807-3427', 3, '844507154197282048', '937 West Market Street Apt 44, Akron, OH 44333, United States', '1987-10-08', 0, 0, 'hits', '2011-11-30', 'hasegawa4', '2021-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS960765590565', '韓詠詩', 0, '+44 7367 690690', 4, '915771612751694977', 'Block 43, 594 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-01-25', 0, 0, 'hanwing', '2019-12-19', 'hawingsze', '2001-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS405735032796', 'Carmen Freeman', 1, '+1 212-049-5500', 3, '475171704349692262', '431 Bank Street Apt 3, New York, NY 10014, United States', '1987-02-04', 0, 0, 'carmen69', '2014-10-16', 'freeman1229', '2004-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS983390502628', '平野美月', 1, '+81 80-8536-9686', 4, '506533998384717770', '日本東京中央区銀座三丁目12番10号7階', '1992-10-07', 0, 0, 'hirano14', '2014-11-15', 'mithirano7', '2014-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS875560222922', 'Emily Jackson', 1, '+1 838-329-3500', 0, '391974669285149034', '95 Central Avenue Suite 17, Albany, NY 12206, United States', '1991-06-29', 0, 0, 'jaemily', '2020-09-27', 'emilyja', '2001-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS664598874328', '山本葉月', 0, '+81 70-4850-5241', 2, '472236732901397911', '日本おおさかし西成区天神ノ森二丁目1番19号15号室', '1985-12-31', 0, 0, 'yamamoto6', '2009-10-03', 'hazuki418', '2017-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS126867342846', 'Vincent Ortiz', 0, '+1 838-556-4891', 1, '997196140723804161', '1 Central Avenue Suite 25, Albany, NY 12205, United States', '1992-05-11', 0, 0, 'vortiz', '2009-08-12', 'ortizv', '2002-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS323444161074', '何岚', 0, '+86 28-4221-6812', 0, '899165013252482588', 'No.20 building, 646 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-09-22', 0, 0, 'lan1994', '2014-06-16', 'hel', '2013-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS468573273117', '阎子异', 0, '+86 20-272-2734', 2, '653077639221154209', '中国广州市越秀区中山二路457号38栋', '1989-05-14', 0, 0, 'yaziyi825', '2011-02-24', 'zy6', '2008-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS199016951041', '何梓晴', 0, '+86 185-9206-8810', 2, '805843455077672475', '中国北京市西城区复兴门内大街656号33室', '1995-05-14', 0, 0, 'hotszching', '2014-02-03', 'tszching7', '2008-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS695551267471', '車國榮', 1, '+86 136-5670-2068', 0, '164659086185841650', 'No.26 building, 179 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-09-15', 0, 0, 'kwokwingche903', '2005-03-27', 'ckwokwing', '2019-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS101674688584', 'Doris Henderson', 0, '+44 (116) 660 3418', 0, '187574174262674705', 'Block 33, 227 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-07', 0, 0, 'dorishenderson7', '2010-02-14', 'hendersond3', '2012-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS815621463809', 'Joshua Olson', 1, '+86 760-8770-8441', 3, '046217788800484461', '中国中山天河区大信商圈大信南路221号43室', '1989-09-09', 0, 0, 'joshua1991', '2007-03-17', 'olsoj', '2009-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS094849467313', '于子韬', 0, '+86 159-2753-6058', 1, '642888161397276942', '中国中山天河区大信商圈大信南路889号华润大厦22室', '1987-04-18', 0, 0, 'zitaoy', '2007-06-10', 'zitaoyu', '2011-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS754699883037', '徐慧珊', 0, '+81 80-4115-4844', 0, '334481215456102033', '2-kai, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-05-22', 0, 0, 'twaisan929', '2012-01-13', 'waisan1974', '2010-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS268098441525', '任國權', 1, '+86 769-8678-3718', 4, '597012828534479628', 'No.7 building, 871 Dongtai 5th St, Dongguan, China', '1987-06-28', 0, 0, 'ykk', '2021-02-27', 'yam54', '2014-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS751491734445', '余岚', 1, '+86 755-1049-5544', 1, '429245964607338312', '中国深圳龙岗区布吉镇西环路443号30栋', '1995-02-26', 0, 0, 'yu715', '2002-06-12', 'yulan', '2006-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS714512500797', 'John Dixon', 0, '+81 52-965-6261', 0, '383312746993817544', '日本なごやし熱田区千年二丁目5番3号34階', '1992-03-16', 0, 0, 'johndix1977', '2014-01-20', 'jdix', '2007-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS978405796116', '佐野百花', 0, '+86 140-9248-4913', 3, '056758453519160031', 'Room 29, 201 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-04-08', 0, 0, 'momoksa', '2004-05-22', 'msano4', '2016-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS370313465591', '萧宇宁', 1, '+44 5895 803257', 1, '965328029895088370', 'No.2 Main building, 322 Maddox Street, London, W1S 1PU, United Kingdom', '1985-01-04', 0, 0, 'xiyuning', '2019-03-24', 'xiayuning', '2017-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS719073095957', 'Katherine Gibson', 0, '+86 755-822-7356', 4, '650985916864187659', '13F, 547 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-06-15', 0, 0, 'gik8', '2004-07-16', 'katherinegibso', '2005-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS861002146790', '佐藤陸', 0, '+1 330-315-9241', 1, '578648338221514900', '464 Fern Street Suite 17, Akron, OH 44307, United States', '1990-11-02', 0, 0, 'satori927', '2018-08-12', 'rikusato', '2017-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS679497431641', '周國榮', 1, '+81 66-598-7953', 1, '439063361100656599', '48-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1998-07-02', 0, 0, 'kwc', '2015-07-16', 'kwokwingchow', '2004-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS487199850523', '梁富城', 1, '+86 133-4547-7979', 3, '714087644897817453', 'No.20 building, 180 Kengmei 15th Alley, Dongguan, China', '1992-06-18', 0, 0, 'fushing229', '2012-12-23', 'leufs', '2020-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS122019195248', 'Gary Kelley', 0, '+81 70-5888-7521', 3, '441584082026393842', '日本東京渋谷区代々木二丁目3番8号7号室', '1988-11-12', 0, 0, 'kelley8', '2012-09-02', 'kelley51', '2009-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS192081256398', 'Raymond Brown', 1, '+81 3-5252-5136', 1, '345426473887921355', '34-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-05-19', 0, 0, 'raymondbr', '2017-05-17', 'brownra307', '2011-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS598401963308', '毛頴思', 0, '+86 755-4457-3321', 1, '500102070152214171', '中国深圳龙岗区布吉镇西环路133号36栋', '1990-10-31', 0, 0, 'wsmo', '2014-06-07', 'mo7', '2014-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS689735511634', '魏震南', 1, '+86 136-2967-4896', 1, '724824234087286947', 'Room 35, 887 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-02-03', 0, 0, 'zhennan1951', '2005-03-12', 'zhewe7', '2017-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS176049597748', '酒井陽太', 1, '+44 5965 345466', 3, '642520592482297265', 'Block 27, 904 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-08-12', 0, 0, 'yots66', '2012-04-18', 'yotsa1953', '2001-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS009461195942', '林子韬', 1, '+44 (20) 9386 6968', 4, '791346600667613485', 'Block 47, 331 Hanover Street, London, W1S 1YD, United Kingdom', '1987-10-25', 0, 0, 'lzi717', '2020-03-08', 'lizitao1026', '2006-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS691782410369', '鈴木百恵', 0, '+44 (116) 014 3806', 3, '864036643599358884', 'Block 28, 771 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-10-29', 0, 0, 'msuzu319', '2003-01-13', 'smomoe1995', '2020-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS708915374613', 'Nicholas Hamilton', 1, '+86 166-8861-1753', 2, '410405716349925331', '中国北京市西城区复兴门内大街960号37栋', '1995-06-16', 0, 0, 'hamiltonnic', '2009-11-15', 'nicholashamil', '2005-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS999257894123', 'Josephine Nelson', 0, '+44 5277 589858', 3, '845717795564604793', 'No.38 Main building, 829 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-11-24', 0, 0, 'nelsojose906', '2009-10-18', 'nej', '2002-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS888854683526', '贺云熙', 1, '+1 838-136-8092', 2, '542083333262295295', '974 Central Avenue Suite 14, Albany, NY 12206, United States', '1991-09-21', 0, 0, 'heyunxi1229', '2009-05-14', 'hyunx8', '2009-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS608678818494', '鄧梓軒', 0, '+81 11-054-2549', 0, '594077229590743989', '日本札幌中央区宮の森四条六丁目1番19号19階', '1991-09-29', 0, 0, 'tath', '2004-03-08', 'tszhint', '2019-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS363730488105', '佐々木美咲', 0, '+81 11-395-1422', 2, '539710392612170380', '日本札幌白石区菊水三条五丁目2番19号22階', '1999-03-03', 0, 0, 'sasakimisa', '2015-01-07', 'misakisasa131', '2007-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS327949206760', '西村健太', 0, '+86 160-7156-9266', 0, '198992007545764107', '中国北京市延庆区028县道753号华润大厦38室', '1987-07-08', 0, 0, 'nishkenta', '2018-06-17', 'nishimurake', '2015-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS074030043118', '菊地百恵', 1, '+86 28-5308-3036', 1, '150139363452300675', 'No.13 building, 933 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-11-30', 0, 0, 'momoekikuchi', '2017-07-04', 'kikuchi1969', '2001-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS115549536737', 'Clara Alexander', 1, '+86 28-740-6282', 1, '642149895353900081', 'No.46 building, 206 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-06-07', 0, 0, 'claraa', '2011-07-27', 'alexander5', '2020-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS864478844639', '湯梓軒', 1, '+86 140-0520-0810', 1, '598234424533515604', 'Room 27, 347 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-04-29', 0, 0, 'tth', '2004-09-22', 'tongtszhin', '2003-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS417956902168', '鄭朝偉', 1, '+44 (151) 520 8790', 2, '846142002039521394', 'Flat 2, 223 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-01-09', 0, 0, 'cwche', '2017-11-23', 'chiuwai9', '2003-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS594465880379', 'Joseph Baker', 0, '+86 10-963-5739', 2, '598714602467801236', 'No.1 building, 246 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-08-05', 0, 0, 'jbaker6', '2001-05-03', 'baker10', '2019-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS179614636473', '江家明', 1, '+44 5241 815799', 4, '399414248720951201', 'Flat 6, 522 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-04-19', 0, 0, 'kamikong', '2000-02-17', 'kongkm', '2006-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS278657551297', '罗詩涵', 1, '+86 10-747-0627', 0, '222297823411140685', '中国北京市東城区東直門內大街301号34栋', '1986-12-29', 0, 0, 'shihan9', '2021-07-08', 'shihanluo', '2003-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS917279983160', 'Carrie Richardson', 1, '+81 11-086-3537', 3, '162215876987858022', '47F, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-11-07', 0, 0, 'carrie9', '2005-12-06', 'carririchardson', '2009-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS956233965696', '姚安琪', 0, '+81 80-2866-9416', 2, '702037018009738369', '15-kai, 1-1-1 Deshiro, Nishinari Ward, Osaka, Japan', '1996-10-04', 0, 0, 'yaanqi1', '2014-05-27', 'anqi1', '2016-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS759582838959', '大塚瑛太', 0, '+86 179-8146-1551', 3, '118534612893141069', 'Room 24, 288 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-05-01', 0, 0, 'eitaotsuk', '2008-03-09', 'oei', '2013-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS819726053447', '邵致远', 1, '+81 3-8437-2477', 1, '668269586012468545', '日本東京港区東新橋一丁目5番10号26階', '1990-05-01', 0, 0, 'zhishao', '2018-05-12', 'shazh', '2004-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS832379631623', '鄺小慧', 1, '+86 189-9740-2144', 1, '696126335177172902', '中国东莞东泰五街911号3栋', '1996-03-05', 0, 0, 'kwong88', '2019-10-05', 'siuwaikwon88', '2001-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS906979691187', '陳詩君', 0, '+81 70-7410-5948', 3, '955547009405224818', 'Rm. 30, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1986-08-04', 0, 0, 'szekwan5', '2009-04-25', 'szekwanchan', '2011-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS218594277673', '王惠妹', 1, '+81 90-0478-7073', 0, '793470375941682066', 'Rm. 1, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-11-14', 0, 0, 'huimewong', '2004-09-16', 'hmwong', '2020-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS142067101977', 'Christopher Turner', 0, '+44 (20) 4962 4177', 1, '584853113311572923', 'No.24 Main building, 752 Maddox Street, London, W1S 1PU, United Kingdom', '1990-07-02', 0, 0, 'turchristopher08', '2006-08-06', 'christopherturner1002', '2005-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS357321147000', '小川聖子', 0, '+81 80-9449-9081', 3, '437912891089313889', 'Rm. 45, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-09-20', 0, 0, 'seikoo', '2014-06-01', 'ogawas', '2000-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS587869876639', 'Justin Phillips', 0, '+86 166-2716-0862', 3, '973885529725747120', '46F, 75 Sanlitun Road, Chaoyang District, Beijing, China', '1989-06-10', 0, 0, 'phillj1029', '2012-05-18', 'philljustin930', '2009-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS333217689173', 'Betty Snyder', 1, '+1 213-145-2103', 2, '310634031588458323', '585 Sky Way Apartment 30, Los Angeles, CA 90043, United States', '1989-08-12', 0, 0, 'snyderbetty', '2012-06-23', 'sbetty911', '2014-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS403924860798', 'Amy Morris', 0, '+44 7788 554471', 3, '853130231882257888', 'Block 23, 846 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-02-14', 0, 0, 'morris42', '2008-02-28', 'mora', '2019-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS830030209012', 'Randy Bailey', 0, '+1 312-398-3319', 1, '460083771506351016', '343 Pedway Suite 1, Chicago, IL 60601, United States', '1992-08-07', 0, 0, 'bailerand03', '2015-06-10', 'baileyrandy107', '2011-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS034256826249', 'Tiffany Mcdonald', 0, '+86 181-4960-0114', 4, '850054415527140176', 'Room 44, 776 Tianhe Road, Tianhe District, Guangzhou, China', '1990-04-21', 0, 0, 'tiffany117', '2007-04-28', 'mcdonaldtiffany', '2009-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS519849696752', 'Gerald Phillips', 1, '+86 10-646-2633', 4, '116702886960349022', 'No.50 building, 399 028 County Rd, Yanqing District, Beijing, China', '1991-02-26', 0, 0, 'geraldph10', '2019-11-02', 'geraldp4', '2017-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS538664515630', '贺震南', 0, '+1 312-742-5911', 1, '236756049929271370', '605 Pedway Apartment 39, Chicago, IL 60601, United States', '1995-06-11', 0, 0, 'hezhennan', '2019-11-04', 'hezhennan', '2010-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS822947440482', '麥小慧', 0, '+81 80-7515-7120', 2, '605941324827980473', '日本ならし学園南三丁目9番10号39階', '1992-01-04', 0, 0, 'siuwaim3', '2001-05-25', 'siuwaima', '2022-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS682218993527', '金晓明', 1, '+81 90-5954-6799', 3, '427343382887055380', '日本おおさかし平野区加美東四丁目9番12号3階', '1994-11-06', 0, 0, 'xj7', '2005-05-04', 'jinx', '2011-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS719782440097', 'Andrew Hunter', 1, '+81 52-666-1402', 2, '318616099742755233', '日本なごやし守山区瀬古東二丁目171番7号29号室', '1985-07-03', 0, 0, 'hunterandr', '2012-07-04', 'hunteandrew', '2012-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS068489251757', 'Jason Brown', 1, '+44 5949 715751', 2, '148384324041863124', 'Block 30, 963 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-07-23', 0, 0, 'brown3', '2015-07-13', 'jbrown', '2012-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS968652378417', 'Leroy Gomez', 1, '+86 140-3839-1887', 1, '870736218673646152', 'Room 48, 446 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-02-06', 0, 0, 'lgo8', '2001-05-12', 'gleroy', '2011-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS971411122256', '宮崎紗良', 1, '+86 132-1374-4782', 2, '056558762647393078', '中国广州市白云区小坪东路815号32楼', '1991-03-28', 0, 0, 'misara', '2004-05-20', 'miyasa', '2014-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS190118892034', '王力申', 1, '+81 66-024-9551', 4, '163711011894352721', '日本おおさかし西成区天神ノ森二丁目1番15号7階', '1985-04-30', 0, 0, 'wonliksun9', '2000-06-13', 'liksunwong64', '2017-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS294362592149', 'Ruth Payne', 1, '+81 90-6615-1801', 1, '766473728793550883', '日本ならし西大寺赤田町一丁目7番13号41号室', '1997-06-17', 0, 0, 'payner1225', '2006-01-31', 'rpay', '2013-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS751928710673', '江志明', 0, '+44 (1223) 31 5373', 2, '694715154625616654', 'No.38 Main building, 554 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-10-29', 0, 0, 'cmk', '2018-09-29', 'cmkong', '2006-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS488921595147', '谷口愛梨', 0, '+81 66-060-6582', 2, '904665081156007149', '日本おおさかし近江堂一丁目7番11号43号室', '1985-02-28', 0, 0, 'taniguchia99', '2014-12-18', 'taniguchiairi610', '2011-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS098164938697', '孙宇宁', 0, '+86 10-8092-9232', 2, '304403727094417603', '中国北京市海淀区清河中街68号81号47室', '1998-01-23', 0, 0, 'ysun', '2009-09-10', 'yunsun', '2019-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS379658871387', '傅秀英', 1, '+86 21-7630-6627', 4, '929032243594512916', 'Room 14, 871 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-12-04', 0, 0, 'fuxiuying510', '2010-09-24', 'fux225', '2005-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS186921914606', '戴安琪', 0, '+81 52-041-4753', 2, '640001819729483447', '37-kai, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-12-28', 0, 0, 'daia', '2018-06-15', 'anqida', '2018-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS296335733478', '羅德華', 0, '+1 718-641-1397', 3, '667925024148635068', '256 Columbia St Apartment 39, Brooklyn, NY 11231, United States', '1987-12-20', 0, 0, 'takwah4', '2010-07-14', 'lotakwah5', '2001-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS572013474050', '杜嘉欣', 1, '+86 10-0919-9870', 3, '989663606435891392', 'No.9 building, 174 Yueliu Rd, Fangshan District, Beijing, China', '1987-09-02', 0, 0, 'tokaryan', '2004-03-23', 'toky', '2014-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS798629768910', '山下桜', 1, '+86 143-6916-6384', 3, '595585662611841938', '中国深圳福田区景田东一街895号25楼', '1988-05-21', 0, 0, 'yamashitasakur', '2002-01-30', 'saky', '2010-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS766476698704', '餘慧儀', 0, '+81 52-040-2582', 4, '052013318726449662', 'Rm. 5, 3-19-20 Shimizu, Kita Ward, Nagoya, Japan', '1989-01-10', 0, 0, 'waiyeeyue7', '2021-04-24', 'waiyee914', '2014-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS964689967120', 'Jeremy Dunn', 1, '+81 11-633-5060', 1, '098742371920035485', '13F, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-12-10', 0, 0, 'dunjer', '2021-05-21', 'dunjer1', '2014-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS401759791335', '姜岚', 0, '+81 70-7775-2224', 1, '722970159956708629', '19F, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-11-28', 0, 0, 'lan119', '2013-11-16', 'lanjiang', '2018-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS788721733759', '史子异', 1, '+81 80-9452-3798', 0, '434866373993357567', '日本なごやし瑞穂区河岸町四丁目20番8号45階', '1993-04-07', 0, 0, 'ziyishi7', '2005-03-02', 'shiz5', '2016-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS108769645892', '傅富城', 1, '+1 838-870-9414', 2, '037495749371174902', '459 State Street 3rd Floor, Albany, NY 12203, United States', '1988-06-04', 0, 0, 'fushing1011', '2000-11-20', 'fufs', '2016-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS473122769261', 'Theresa Moore', 1, '+81 80-0256-1514', 1, '831167853896031966', '日本なごやし瑞穂区河岸町四丁目20番20号42号室', '1992-05-01', 0, 0, 'moortheresa', '2003-07-11', 'theresamoore', '2004-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS678307937744', '翁德華', 1, '+81 3-6704-8021', 3, '736851337783602419', '日本東京品川区東五反田五丁目2番8号17階', '1985-12-31', 0, 0, 'takwahyun1997', '2019-06-04', 'yungtakwah', '2017-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS652491078145', '魏睿', 0, '+1 718-636-5023', 1, '087196903783128869', '54 Flatbush Ave Apt 8, Brooklyn, NY 11225, United States', '1998-07-03', 0, 0, 'ruwe1', '2007-03-12', 'weir4', '2012-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS953526439339', '秦璐', 0, '+81 11-243-4480', 1, '893952386261310406', '日本札幌清田区真栄四条五丁目19番5号34階', '1988-12-05', 0, 0, 'luqin328', '2013-01-24', 'luqi713', '2009-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS045387829736', 'Debra Cole', 1, '+44 5729 553595', 3, '744376915238537134', 'Flat 26, 612 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-11-05', 0, 0, 'debraco', '2018-07-24', 'cole714', '2010-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS193696127623', '山崎光莉', 1, '+86 10-836-0312', 2, '220127098365611209', 'No.22 building, 434 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-11-03', 0, 0, 'hikariyamazaki912', '2010-12-09', 'yahikari', '2018-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS619513294988', '陆宇宁', 1, '+86 182-9239-7856', 0, '124528782997015121', 'Room 6, CR Building, 10 Huanqu South Street 2nd Alley, Dongguan, China', '1994-10-28', 0, 0, 'yuninglu', '2012-01-23', 'yuninlu', '2019-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS955359087283', '伊藤和真', 1, '+81 70-8037-8745', 3, '940437661873863125', '日本なごやし北区清水三丁目19番5号28階', '1995-03-24', 0, 0, 'kazumaito', '2001-08-24', 'ito1', '2005-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS662644872338', '张嘉伦', 1, '+81 11-095-0473', 4, '605692338799482248', '日本札幌白石区菊水三条五丁目2番4号46号室', '1986-05-09', 0, 0, 'jialun823', '2006-05-09', 'jialun1952', '2010-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS193603748840', '胡安娜', 0, '+86 769-405-8413', 1, '254426114441319898', '中国东莞珊瑚路693号25室', '1995-05-21', 0, 0, 'wu47', '2012-02-17', 'wuonna3', '2010-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS552911700535', '徐嘉欣', 0, '+86 144-8247-7741', 3, '866966719162187595', '11F, 864 028 County Rd, Yanqing District, Beijing, China', '1993-01-17', 0, 0, 'karyan10', '2009-12-12', 'karyan9', '2012-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS509353365585', 'Gladys Garcia', 0, '+86 136-9157-2865', 1, '990262242414313774', '中国上海市闵行区宾川路807号华润大厦47室', '1998-07-10', 0, 0, 'ggladys', '2018-10-08', 'garcigladys1', '2016-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS058319346393', '伍霆鋒', 0, '+86 172-4258-1025', 2, '599868174485515083', '中国深圳罗湖区清水河一路317号华润大厦40室', '1997-07-07', 0, 0, 'tfng105', '2003-08-21', 'tfng811', '2018-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS900880194151', '成慧琳', 1, '+1 614-575-8135', 3, '699681465818217805', '633 East Alley Suite 20, Columbus, GA 43201, United States', '1997-12-28', 0, 0, 'shingwailam215', '2013-11-06', 'shing5', '2015-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS239749203072', '蔡秀英', 1, '+81 3-0555-4001', 2, '576780237974492987', '40F, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-01-09', 0, 0, 'cxi6', '2013-08-14', 'cx1944', '2012-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS343385308670', '李玲玲', 0, '+44 5559 003393', 3, '111868912403015820', 'No.11 Main building, 355 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-01-23', 0, 0, 'leeli', '2007-07-11', 'lell', '2020-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS692403382801', '江秀英', 1, '+86 20-7805-8361', 1, '397527698118750829', 'Room 35, CR Building, 900 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-11-30', 0, 0, 'jiangxiuying', '2016-06-18', 'jiang614', '2017-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS313289520684', 'Nancy Hill', 0, '+86 755-6886-4510', 0, '469748992812115861', 'No.2 building, 997 Shennan Ave, Futian District, Shenzhen, China', '1992-03-01', 0, 0, 'nancyh6', '2018-07-11', 'nah8', '2014-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS474069129124', '袁潤發', 0, '+81 70-0848-1000', 4, '382750628123559769', 'Rm. 40, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-11-05', 0, 0, 'yuenyf1983', '2009-03-06', 'yuen6', '2019-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS437806663208', '元青雲', 0, '+81 80-0025-9256', 0, '341796270875653263', '39F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-08-19', 0, 0, 'chingwan7', '2007-05-20', 'yuenchingwan10', '2005-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS157041435560', '村上一輝', 0, '+86 769-8520-9970', 0, '306758364840914970', 'Room 34, 650 Dongtai 5th St, Dongguan, China', '1989-05-30', 0, 0, 'mik', '2010-09-11', 'murakami1', '2003-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS251543575359', 'Mildred Salazar', 0, '+86 760-228-1699', 3, '082801297682151506', '中国中山天河区大信商圈大信南路329号华润大厦23室', '1994-08-02', 0, 0, 'salmildr07', '2018-08-09', 'salami', '2002-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS400727067651', 'Gladys Gonzales', 0, '+1 330-281-6834', 3, '929011280212737942', '319 Fern Street Suite 40, Akron, OH 44307, United States', '1988-08-08', 0, 0, 'gladys1225', '2018-05-07', 'gogla', '2011-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS123863685701', '韦云熙', 0, '+86 147-0370-9513', 0, '836513901011793859', '中国上海市闵行区宾川路32号25号楼', '1996-06-27', 0, 0, 'yunxiw', '2011-10-19', 'wei45', '2012-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS413351503694', '千葉陽菜', 0, '+1 330-345-8888', 4, '001065656843407976', '107 Collier Road Apartment 37, Akron, OH 44320, United States', '1990-10-02', 0, 0, 'chhina', '2013-08-28', 'chiba1', '2002-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS539607282769', '森田蒼士', 1, '+1 838-444-8510', 0, '440215519269495450', '997 Lark Street Apt 38, Albany, NY 12210, United States', '1993-01-22', 0, 0, 'aoshim', '2022-03-04', 'morita17', '2020-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS782005079498', 'Kyle Parker', 1, '+86 755-5125-1554', 0, '062429998266604545', '中国深圳福田区景田东一街739号18室', '1996-10-14', 0, 0, 'parker930', '2002-11-27', 'kylepar', '2020-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS180660842877', '苏宇宁', 1, '+86 161-8409-4114', 1, '774042041042288787', 'No.29 building, 796 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1997-09-15', 0, 0, 'ysu', '2017-01-02', 'suyuning1227', '2017-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS876038713544', 'Monica Mcdonald', 0, '+44 5386 014702', 2, '946967611990001216', 'No.19 Main building, 897 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-09-30', 0, 0, 'mcdonm', '2019-11-03', 'mm204', '2011-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS662676482257', 'Shirley Garza', 0, '+81 11-601-4581', 2, '729689721340399130', '25F, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-07-19', 0, 0, 'garzas', '2018-03-09', 'sg1998', '2002-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS123425736982', '宣志遠', 1, '+81 90-5990-2701', 1, '060912077119791041', '日本おおさかし西成区天神ノ森二丁目1番16号10階', '1988-05-21', 0, 0, 'hsuanchiyuen', '2015-09-26', 'hsuan19', '2011-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS913161544968', '盧詩君', 0, '+81 66-976-3996', 3, '481022574156105773', '日本おおさかし東住吉区東田辺三丁目27番19号30号室', '1991-06-24', 0, 0, 'loszekwan', '2014-09-03', 'lo7', '2008-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS243364281706', 'Kathy Hunter', 1, '+81 80-9496-4580', 1, '658801102204768153', '30F, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1986-02-24', 0, 0, 'hunter201', '2002-02-26', 'hunter8', '2000-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS911903194035', 'Michael King', 0, '+86 139-6549-3229', 1, '328173316737728927', '中国深圳福田区深南大道449号华润大厦47室', '1997-12-01', 0, 0, 'miking', '2020-02-01', 'micking', '2017-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS218920021402', '石田美咲', 0, '+1 312-369-3520', 2, '256578261170182754', '914 Rush Street Apt 14, Chicago, IL 60611, United States', '1995-06-24', 0, 0, 'imisa313', '2022-02-28', 'ishmi93', '2018-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS722643021792', '吕睿', 1, '+86 180-0616-9686', 3, '032488404087202245', 'No.11 building, 547 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1999-03-04', 0, 0, 'lrui10', '2020-06-16', 'ruilu', '2014-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS397612047067', '毛云熙', 0, '+44 7458 409831', 3, '155365180580898449', 'Unit 20, Oxford Eco Centre, 772 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-08-20', 0, 0, 'yunxi74', '2000-01-04', 'maoy', '2010-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS225709855103', '任安琪', 1, '+44 (1865) 69 5558', 0, '517323805863736866', 'Flat 4, 571 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-01-07', 0, 0, 'aren117', '2021-07-06', 'rena6', '2008-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS513288603194', '池田美羽', 0, '+86 181-2222-3248', 1, '597976494374893070', '中国深圳龙岗区布吉镇西环路723号17楼', '1990-09-22', 0, 0, 'mikeda', '2007-04-08', 'im127', '2003-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS670818235523', '許詠詩', 1, '+86 760-5170-1572', 1, '304048481338000439', '中国中山天河区大信商圈大信南路444号2室', '1988-02-15', 0, 0, 'huiwingsze', '2011-05-10', 'wingsze630', '2004-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS441431600576', '鄧發', 1, '+81 70-1934-2709', 1, '138517911511456539', '日本東京渋谷区代々木二丁目3番10号11階', '1993-02-11', 0, 0, 'fat2', '2001-05-20', 'fat41', '2021-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS208430604713', '白祖兒', 0, '+81 3-2056-4579', 1, '521833853408134599', '13-kai, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-26', 0, 0, 'cyp1974', '2009-10-26', 'cypak927', '2002-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS301237636827', 'Dorothy Gutierrez', 0, '+81 80-5311-5003', 3, '452689997939097300', 'Rm. 4, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1999-01-23', 0, 0, 'gdo', '2011-01-07', 'dorothygut76', '2019-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS559714170105', '中森葵', 1, '+1 330-165-7150', 0, '853538448524712168', '427 Collier Road Apartment 14, Akron, OH 44320, United States', '1993-02-19', 0, 0, 'nakamoriaoi', '2020-09-25', 'aoinakamori7', '2008-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS547506080809', '黎子韬', 0, '+86 10-730-1661', 0, '926031694501542679', 'Room 29, CR Building, 598 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-05-09', 0, 0, 'zitaoli', '2013-02-24', 'zil', '2007-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS142588603348', '曾國明', 0, '+81 70-1434-0173', 0, '321376071107011696', '48-kai, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1987-06-27', 0, 0, 'tsang44', '2003-01-31', 'tkwokming97', '2007-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS291383448490', '胡德華', 1, '+86 755-7216-9877', 4, '802957995006114103', '中国深圳罗湖区蔡屋围深南东路428号24室', '1995-05-06', 0, 0, 'takwahwu6', '2018-07-21', 'wutakwah9', '2000-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS590929969591', '張富城', 1, '+86 152-7384-5458', 1, '374217016114018030', '中国中山京华商圈华夏街715号10室', '1990-03-03', 0, 0, 'cfs327', '2002-10-15', 'fscheung', '2018-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS366432417763', '樂國明', 0, '+81 66-560-0123', 3, '477735243627046281', '日本おおさかし近江堂一丁目7番17号26号室', '1991-11-16', 0, 0, 'kwoklok', '2005-10-01', 'kwokmingl', '2009-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS539317239565', '容德華', 1, '+86 154-1160-8067', 3, '957974555742158829', 'No.23 building, 852 Binchuan Rd, Minhang District, Shanghai, China', '1998-06-19', 0, 0, 'takwahyung', '2012-09-16', 'takwahyu6', '2003-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS470785843732', '丁云熙', 1, '+81 90-8286-0590', 2, '347758686117646521', '44F, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-08-25', 0, 0, 'yunxiding120', '2001-01-18', 'yuding', '2015-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS745769185702', '谷口愛梨', 0, '+86 137-9668-8303', 3, '641226873839651367', '中国深圳罗湖区蔡屋围深南东路809号华润大厦8室', '1988-10-07', 0, 0, 'taniguchiairi81', '2001-11-01', 'taniairi', '2002-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS509261008230', '毛頴思', 1, '+81 70-8369-0980', 1, '114430767071488304', 'Rm. 48, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-04-03', 0, 0, 'wingszem', '2015-01-04', 'mows2', '2014-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS211988768845', '文力申', 1, '+86 138-6813-6439', 1, '114650889247098464', 'Room 22, 521 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-05-18', 0, 0, 'maliksun', '2004-04-27', 'liksunman4', '2006-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS457846418980', '中山大輔', 0, '+1 614-042-1088', 0, '856147726893889694', '500 Tremont Road Apartment 5, Columbus, GA 43212, United States', '1996-06-04', 0, 0, 'nakad', '2002-11-21', 'dainakayama1', '2018-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS379692996014', '苗嘉欣', 1, '+86 10-9581-1719', 0, '177566868179934156', '中国北京市东城区东单王府井东街19号22栋', '1985-05-19', 0, 0, 'miky', '2019-10-01', 'karyanmiu1', '2016-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS383329128080', '韩睿', 1, '+86 157-9187-0290', 3, '262584813651357885', '中国深圳龙岗区布吉镇西环路339号49号楼', '1997-04-12', 0, 0, 'ruihan', '2014-09-02', 'ruihan19', '2008-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS475238889517', '苑小慧', 1, '+81 90-1286-7688', 0, '450575390367316967', 'Rm. 49, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-01-23', 0, 0, 'yuensw', '2014-05-23', 'yuensiuwai', '2019-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS221378819667', '楊國權', 0, '+86 21-4777-0689', 3, '266226391673621035', 'No.22 building, 206 Ganlan Rd, Pudong, Shanghai, China', '1986-08-04', 0, 0, 'ykk', '2020-10-27', 'yekk912', '2001-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS936006962629', '金晓明', 1, '+44 5115 801826', 1, '878385447447552402', 'No.1 Main building, 470 Hanover Street, London, W1S 1YD, United Kingdom', '1986-03-18', 0, 0, 'jxiaoming2', '2018-11-01', 'xiaoming6', '2010-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS797504310960', '贾璐', 1, '+44 (151) 986 0495', 3, '876062746301419507', 'Block 16, 798 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-12-26', 0, 0, 'jia00', '2019-12-20', 'jialu', '2002-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS076051394360', '前田結翔', 1, '+44 5668 160744', 4, '588560275191095442', 'Unit 19, Oxford Eco Centre, 27 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-09-25', 0, 0, 'yumaeda920', '2018-01-17', 'maeyui1', '2008-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS761654603068', '姚潤發', 1, '+86 194-4643-4880', 1, '792074385012350499', 'No.13 building, 53 028 County Rd, Yanqing District, Beijing, China', '1994-10-05', 0, 0, 'yeow5', '2003-03-14', 'yyf50', '2000-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS776560695227', '吉田和真', 1, '+86 148-7007-6655', 1, '733957681600387348', '中国深圳福田区深南大道100号27楼', '1995-01-13', 0, 0, 'yoshida620', '2003-04-21', 'yoshidakazuma74', '2002-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS519975670796', 'Pauline Campbell', 1, '+81 70-2609-4245', 1, '564861285790648519', '1F, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-08-05', 0, 0, 'campbell4', '2004-07-31', 'campbpauline', '2018-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS166051836548', '阎岚', 0, '+86 20-6366-9932', 4, '869323979626373574', '中国广州市白云区机场路棠苑街五巷551号41栋', '1988-06-26', 0, 0, 'lyan2', '2018-03-01', 'yanla', '2001-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS370838965914', '许睿', 0, '+81 66-131-1383', 1, '159263951263459239', 'Rm. 28, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-11-08', 0, 0, 'rui1231', '2001-09-21', 'xrui', '2000-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS424213015078', '曾嘉伦', 1, '+1 330-146-6321', 2, '486844059812936764', '726 Collier Road Suite 27, Akron, OH 44320, United States', '1996-07-27', 0, 0, 'zeng42', '2009-11-29', 'jz4', '2013-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS054069287641', '島田涼太', 1, '+44 7982 121896', 0, '470900987447335988', 'No.36 Main building, 916 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-04-17', 0, 0, 'shimadary', '2016-01-14', 'shr1967', '2019-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS370769405235', '藤原聖子', 0, '+81 52-159-5784', 1, '229719673054811983', '36-kai, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1985-06-27', 0, 0, 'seikofujiwara', '2012-04-29', 'fujiseiko2', '2003-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS002144330703', '藍心穎', 0, '+86 10-088-2221', 4, '277068540953372156', '中国北京市西城区西長安街393号华润大厦2室', '1997-10-21', 0, 0, 'sumwinglam', '2000-06-08', 'swla8', '2005-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS246120218069', 'Ethel Boyd', 1, '+86 180-5464-9411', 0, '429880606192315226', '中国深圳福田区深南大道430号1楼', '1998-02-22', 0, 0, 'etheb', '2016-07-16', 'etheboyd', '2010-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS862746443305', '梁永發', 0, '+81 90-3050-7243', 2, '270913102782067824', '50-kai, 7 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-03-10', 0, 0, 'leungwingf1', '2019-10-14', 'leungwingfat', '2014-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS794827364261', 'Larry Dunn', 1, '+86 20-8645-4535', 3, '166003285639129775', 'No.47 building, 687 Jiangnan West Road, Haizhu District, Guangzhou, China', '1999-02-09', 0, 0, 'larrydunn', '2021-05-30', 'dunn9', '2003-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS926642272121', '田云熙', 1, '+86 130-2335-0500', 3, '333373654854983227', '中国广州市天河区天河路502号华润大厦8室', '1985-03-11', 0, 0, 'tian2008', '2009-03-08', 'tyunxi10', '2010-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS113240006940', '杜梓軒', 0, '+1 213-124-4491', 1, '934393569746717785', '366 Sky Way Suite 36, Los Angeles, CA 90043, United States', '1991-10-03', 0, 0, 'totszhin1993', '2018-08-06', 'thto4', '2016-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS495978671439', '邓岚', 0, '+81 74-822-9922', 0, '044286941160079701', '29-kai, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-11-18', 0, 0, 'deng8', '2003-05-21', 'land', '2007-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS985071060914', 'Edward Daniels', 1, '+81 11-114-0143', 1, '457453775120557376', 'Rm. 22, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-12-01', 0, 0, 'eddaniels1940', '2010-11-21', 'eddaniels', '2009-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS821508914697', '姜家輝', 1, '+81 70-8550-2498', 3, '870929459418754015', '日本なごやし北区楠味鋺三丁目80番2号23号室', '1991-10-15', 0, 0, 'changkf', '2016-10-16', 'ckf7', '2011-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS060854791778', '菅原結翔', 0, '+81 70-5190-0010', 3, '141823433568046807', '45F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-10-03', 0, 0, 'sugawara123', '2007-12-03', 'yuito51', '2016-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS719387349896', '杜子异', 0, '+1 330-786-9062', 1, '132507440252066519', '44 Fern Street Suite 13, Akron, OH 44307, United States', '1991-09-01', 0, 0, 'duziyi1944', '2021-04-29', 'ziyi9', '2016-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS551226114002', 'Monica West', 0, '+1 838-761-0531', 2, '397736937245179272', '990 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1993-08-21', 0, 0, 'wem3', '2012-02-26', 'monwes', '2007-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS354696542194', 'Edith James', 1, '+44 (161) 295 4385', 4, '117930137754145623', 'No.20 Main building, 589 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1987-05-22', 0, 0, 'edithjam10', '2014-09-09', 'edithjames', '2011-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS979391010989', '斎藤蓮', 1, '+86 28-9389-4880', 2, '798922977525170102', 'Room 50, CR Building, No. 110, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-04-02', 0, 0, 'rensaito106', '2010-04-14', 'saren429', '2005-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS261649497753', '邵慧琳', 1, '+86 162-8426-4459', 2, '372978114478145177', '32F, 171 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-16', 0, 0, 'siuwl', '2019-04-03', 'wailam503', '2018-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS822811487182', '彭璐', 0, '+44 (151) 341 4246', 2, '096301992543191131', 'Block 44, 301 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-01-29', 0, 0, 'lupe69', '2019-10-12', 'pl1212', '2016-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS163276293771', 'Linda Mitchell', 1, '+44 7176 088803', 1, '828774615937328282', 'Block 32, 903 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-02-05', 0, 0, 'linmitc325', '2000-09-18', 'mitlinda', '2016-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS417634183883', '橋本美咲', 1, '+81 74-353-4876', 4, '848404326111774416', '26-kai, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1985-12-19', 0, 0, 'hashmisa', '2008-10-28', 'hashimotomisa', '2019-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS684943766497', 'Justin Hill', 0, '+44 5496 588926', 2, '092339105854648375', 'No.11 Main building, 680 Hanover Street, London, W1S 1YD, United Kingdom', '1991-03-21', 0, 0, 'hill2013', '2019-05-04', 'hillj', '2020-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS230780932877', '黎家輝', 0, '+44 7959 843402', 1, '905204631031993778', 'Flat 10, 780 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-09-29', 0, 0, 'laikf520', '2005-09-07', 'kafail49', '2010-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS489552895892', '溫志遠', 0, '+81 80-2062-0457', 1, '790386002914484307', '50-kai, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-09-11', 0, 0, 'chiyuenwa', '2008-02-19', 'wacy', '2003-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS337802817564', '高家文', 1, '+44 (121) 480 6364', 2, '874483704669354928', 'Unit 30, Oxford Eco Centre, 910 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-12-26', 0, 0, 'kaokaman86', '2014-09-11', 'kkm1951', '2002-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS760541089215', '田村愛梨', 1, '+81 74-458-4095', 0, '060495899242999427', '日本ならし大和郡山市本庄町一丁目1番19号12階', '1991-12-19', 0, 0, 'airtamura', '2014-02-14', 'airi1', '2007-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS928637416391', '韩璐', 1, '+81 80-7576-4970', 0, '575339062138769465', '日本なごやし瑞穂区河岸町四丁目20番3号21階', '1986-03-20', 0, 0, 'lhan14', '2018-12-02', 'hanlu', '2007-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS771866301700', 'Carlos Kim', 0, '+44 (116) 990 1786', 1, '059027866935233728', 'Unit 3, Oxford Eco Centre, 732 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-11', 0, 0, 'carlokim322', '2017-01-22', 'cki1011', '2019-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS875497217943', '余安琪', 1, '+86 28-752-6433', 2, '501201149286512872', '中国成都市成华区双庆路564号华润大厦40室', '1995-12-29', 0, 0, 'anqiyu514', '2011-10-24', 'yuanqi', '2008-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS390048395170', '安藤大輔', 1, '+1 212-318-8037', 1, '044555809003303115', '893 Wooster Street 3rd Floor, New York, NY 10012, United States', '1992-02-09', 0, 0, 'andoda', '2011-01-06', 'daisuando', '2018-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS777211664620', '毛安琪', 1, '+81 3-2190-2382', 4, '822542473243767292', '日本東京中央区銀座三丁目12番9号6階', '1993-05-03', 0, 0, 'maoa418', '2008-08-10', 'anqimao', '2008-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS151620324953', '鐘慧琳', 0, '+81 70-7293-5521', 2, '095580307572899741', '日本ならし大和郡山市本庄町一丁目1番20号29階', '1986-07-23', 0, 0, 'chung10', '2007-09-16', 'wailam815', '2001-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS158277192135', 'Debbie Morris', 1, '+81 52-112-7249', 3, '174238221613390752', '日本なごやし北区楠味鋺三丁目80番13号49号室', '1986-01-07', 0, 0, 'morde', '2013-07-20', 'morris1209', '2005-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS069368153336', '李嘉伦', 0, '+86 161-7566-2930', 4, '066099156600517628', 'No.50 building, 162 Dongtai 5th St, Dongguan, China', '1994-10-07', 0, 0, 'jialunli1980', '2020-02-23', 'jialunli', '2015-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS745419434428', '許玲玲', 1, '+86 28-2564-9261', 2, '267864132603360589', 'No.34 building, No. 466, Shuangqing Rd, Chenghua District, Chengdu, China', '1999-03-04', 0, 0, 'huill329', '2001-02-26', 'huilingling517', '2013-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS891917529499', '中島悠人', 0, '+86 145-1159-0235', 2, '789974530614387662', '中国深圳罗湖区田贝一路475号32号楼', '1990-04-14', 0, 0, 'yutona', '2010-04-06', 'nakajima3', '2020-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS902155851356', 'Bradley Turner', 0, '+81 66-626-0254', 2, '198289508138274402', '日本おおさかし西成区出城一丁目1番9号7階', '1998-01-05', 0, 0, 'turnbradley928', '2018-04-10', 'turnerb', '2001-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS290916687582', '宮崎一輝', 0, '+86 769-7800-8864', 0, '867272727726711695', '47F, 962 Kengmei 15th Alley, Dongguan, China', '1993-03-31', 0, 0, 'miyazakiikki4', '2004-12-19', 'miyazaki1', '2013-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS089239710519', 'Howard King', 1, '+81 70-4022-0702', 2, '898073386166953131', '3F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-04-29', 0, 0, 'hkin', '2002-08-28', 'khoward5', '2003-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS894769899449', 'Jacob Thompson', 0, '+81 74-581-5955', 1, '158436691955693380', '日本ならし大和郡山市本庄町一丁目1番8号32階', '1995-03-27', 0, 0, 'jacob73', '2011-02-02', 'thompsonj', '2001-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS108605936798', '青木架純', 0, '+81 80-0059-7605', 1, '682460809839713777', '7F, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-07-09', 0, 0, 'aokik60', '2010-08-10', 'aokikasumi', '2018-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS368170191048', '加藤葉月', 0, '+1 213-257-8347', 2, '471880880962305586', '384 S Broadway Apartment 2, Los Angeles, CA 90015, United States', '1991-06-30', 0, 0, 'hazukikato82', '2009-06-02', 'katohazuki', '2018-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS051785719987', '苗家明', 0, '+81 3-6770-7932', 0, '682346283294187490', '30F, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-25', 0, 0, 'kmm218', '2013-01-22', 'miukm', '2011-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS415017280495', '彭國榮', 1, '+86 10-894-9736', 2, '775536447381774512', 'No.42 building, 815 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-08-28', 0, 0, 'pankwokw', '2014-09-02', 'pkw', '2016-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS958377409207', '沈致远', 0, '+1 330-248-3324', 1, '453137487019701693', '488 Ridgewood Road Apartment 9, Akron, OH 44321, United States', '1999-01-29', 0, 0, 'zshen7', '2021-06-22', 'shen708', '2002-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS606762556907', '许嘉伦', 1, '+44 5663 248470', 2, '409226938429923801', 'No.22 Main building, 370 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-12-22', 0, 0, 'xjialu', '2008-01-02', 'xujialun41', '2007-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS999717442519', '萬頴璇', 0, '+86 198-6545-5807', 2, '470753795458419490', '中国广州市白云区小坪东路184号4栋', '1990-10-12', 0, 0, 'wsmeng', '2014-11-18', 'mengwingsuen13', '2012-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS137025381208', '江子异', 1, '+86 755-266-3822', 3, '819378889214134441', '中国深圳罗湖区田贝一路394号48栋', '1986-09-17', 0, 0, 'jiangz907', '2001-10-15', 'ziyiji', '2005-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS194945678755', '藍思妤', 1, '+86 28-9833-7226', 1, '317190608144616903', 'Room 1, No. 586, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-05-12', 0, 0, 'szeyu1941', '2016-01-23', 'lam10', '2017-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS376929147520', '鈴木涼太', 1, '+81 80-1147-6053', 3, '966159802115323863', '日本なごやし北区楠味鋺三丁目80番14号39階', '1994-07-17', 0, 0, 'suzuki7', '2008-01-24', 'ryotsu', '2020-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS794447479713', '韩杰宏', 0, '+44 5352 439867', 4, '353922202460815533', 'Block 14, 215 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-03-19', 0, 0, 'hanjieho60', '2005-05-01', 'jiehonghan', '2003-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS573435136621', '岡田葉月', 0, '+86 185-0130-7473', 4, '712228013312511694', '中国北京市朝阳区三里屯路430号8号楼', '1998-01-03', 0, 0, 'okada918', '2015-08-29', 'hazok', '2013-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS583266990695', '潘詩涵', 0, '+81 11-020-0904', 1, '537671389235936316', 'Rm. 7, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-05-12', 0, 0, 'shipan1216', '2000-07-17', 'shihanpan', '2015-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS284823293189', '錢思妤', 0, '+86 149-9615-3873', 1, '656044522182201313', '中国成都市成华区双庆路807号24栋', '1992-12-21', 0, 0, 'szeyu1947', '2017-03-21', 'cszeyu', '2014-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS865822812364', '龚云熙', 0, '+81 90-7391-2143', 1, '540373495115600205', '日本東京千代田区丸の内一丁目6番13号37号室', '1994-01-26', 0, 0, 'yunxigong6', '2021-08-22', 'gong4', '2004-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS271883783445', '范璐', 1, '+81 11-860-9736', 1, '407390145682884597', '3-kai, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-11-28', 0, 0, 'flu', '2003-04-04', 'fanl', '2021-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS605365968122', '尹家輝', 1, '+81 3-1676-3575', 3, '323945197927475517', '25F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-09-18', 0, 0, 'yikafai', '2021-11-12', 'ykf', '2010-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS747949229012', '姚杰宏', 0, '+86 151-5686-6932', 0, '173339861308464689', '中国广州市越秀区中山二路488号28室', '1994-09-08', 0, 0, 'jiehyao3', '2000-10-16', 'jiehyao', '2016-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS359368555649', 'Frances Romero', 0, '+44 7603 452094', 4, '712522617620240115', 'Block 2, 470 Mosley St, Manchester, M2 3AQ, United Kingdom', '1994-12-19', 0, 0, 'franromero', '2016-02-22', 'rfrances', '2004-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS994363956079', '江小慧', 1, '+1 838-115-1233', 1, '812016329707528074', '259 Central Avenue Apt 36, Albany, NY 12205, United States', '1998-05-15', 0, 0, 'kong57', '2006-06-17', 'ksw', '2020-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS532505150363', 'Grace Mcdonald', 0, '+86 28-580-0859', 3, '243138611290656967', 'No.14 building, 773 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-08-31', 0, 0, 'gracemcdonald1966', '2008-10-11', 'mcdong', '2012-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS278474046662', 'Carolyn Soto', 0, '+81 80-3362-0076', 2, '998042220683863449', 'Rm. 21, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1985-06-06', 0, 0, 'soc1129', '2018-06-25', 'sotocarolyn1970', '2008-02-29'); -INSERT INTO "public"."userinfo" VALUES ('TS223599248345', '姚慧敏', 1, '+86 755-7430-8515', 2, '965373966287459973', '中国深圳福田区景田东一街726号15号楼', '1992-02-18', 0, 0, 'waimanyeow68', '2015-11-03', 'waimaye1227', '2010-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS287425349930', '杜仲賢', 1, '+81 11-357-9629', 3, '638614805526976216', '日本札幌中央区宮の森四条六丁目1番10号5階', '1994-04-09', 0, 0, 'chungyin101', '2010-05-15', 'cyto6', '2019-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS800190742006', 'Douglas Cox', 1, '+81 90-4390-7145', 1, '689205602899291669', '日本おおさかし西成区天神ノ森二丁目1番19号20階', '1995-08-30', 0, 0, 'coxdoug', '2011-10-16', 'dougc', '2009-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS203669512041', '顧詠詩', 0, '+86 10-355-1869', 4, '126852203474139239', '中国北京市海淀区清河中街68号587号45室', '1992-09-13', 0, 0, 'kuws1103', '2000-12-12', 'kws1', '2002-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS389046442831', '陆子异', 0, '+86 183-9685-7323', 1, '252675138717812788', '中国上海市闵行区宾川路587号30号楼', '1985-06-22', 0, 0, 'luziyi', '2021-06-01', 'ziyilu116', '2000-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS440702259887', 'Julia Hawkins', 1, '+81 70-8244-2572', 4, '694555827145301627', '49-kai, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-04-23', 0, 0, 'hjuli7', '2012-02-26', 'julia2002', '2009-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS090052703740', '丁晓明', 1, '+81 74-582-8757', 0, '543724398579332866', '19F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-05-07', 0, 0, 'xiaoming2', '2010-05-01', 'xiaoming831', '2017-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS610896554340', '严璐', 0, '+86 28-482-9548', 3, '255080690027171344', '中国成都市成华区二仙桥东三路476号8室', '1985-01-19', 0, 0, 'ylu', '2001-10-01', 'yan5', '2003-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS306481504898', 'Christopher Rogers', 0, '+81 11-435-0874', 3, '499063580567244785', 'Rm. 30, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-06-11', 0, 0, 'christopherrogers04', '2006-04-09', 'rch99', '2014-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS367066760222', '今井葉月', 1, '+81 3-9150-0254', 1, '324423434118189198', 'Rm. 45, 5-2-6 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-04-26', 0, 0, 'imaihazuki', '2018-08-02', 'ihaz79', '2005-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS451035802190', 'Julie Hamilton', 1, '+44 7504 094061', 3, '008995102974354617', 'Flat 39, 747 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1995-11-11', 0, 0, 'jhamilton1230', '2004-11-30', 'julie6', '2006-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS423866144754', '小山蓮', 1, '+81 74-388-0033', 3, '911502137137921200', '日本ならし大和郡山市本庄町一丁目1番14号8号室', '1989-04-18', 0, 0, 'renkoyama3', '2001-04-09', 'kre17', '2011-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS417800081663', '林紗良', 0, '+86 192-9129-5151', 2, '417576125701743744', 'Room 48, CR Building, 659 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-04-11', 0, 0, 'sara1948', '2012-10-07', 'hasa', '2000-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS070249439026', 'Hazel Coleman', 0, '+1 213-794-5803', 0, '006618819448765076', '194 Wall Street Apt 10, Los Angeles, CA 90003, United States', '1998-03-26', 0, 0, 'hazelcoleman', '2020-10-28', 'hazelcolem07', '2004-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS403235521461', '藤仲賢', 1, '+81 80-0014-7513', 1, '294886103786748165', 'Rm. 36, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-05-09', 0, 0, 'tcy208', '2007-01-01', 'chta', '2021-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS768505445805', 'Joel Flores', 1, '+81 66-332-0671', 0, '660525815694438045', '日本おおさかし近江堂一丁目7番7号6階', '1998-05-08', 0, 0, 'fljoel', '2006-08-13', 'floj', '2015-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS582602991483', '周嘉欣', 0, '+44 (116) 862 4327', 0, '216563646322348334', 'Unit 1, Oxford Eco Centre, 812 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-03-03', 0, 0, 'karyan6', '2003-07-07', 'kycho7', '2012-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS469118729031', '王富城', 1, '+81 11-981-2400', 0, '603513074104962099', '日本札幌清田区真栄四条五丁目19番15号38階', '1988-12-02', 0, 0, 'fushingwong3', '2019-08-01', 'wong48', '2003-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS623409801736', '杨宇宁', 1, '+81 11-446-1973', 1, '247643603699200572', '日本札幌清田区真栄四条五丁目19番20号29号室', '1988-04-17', 0, 0, 'yyuning', '2017-10-09', 'yany', '2009-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS126249275766', '汪小慧', 0, '+81 66-906-9898', 2, '836968569242086209', '日本おおさかし西成区天神ノ森二丁目1番20号4号室', '1986-07-13', 0, 0, 'swwong926', '2014-11-28', 'siuwaiwong', '2002-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS683715095332', 'Nathan Russell', 0, '+86 760-9926-7845', 3, '762191339321238003', '中国中山乐丰六路337号33栋', '1995-09-28', 0, 0, 'nar2007', '2003-04-12', 'nathan53', '2002-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS276615485686', 'Diana Kim', 1, '+81 80-8773-9698', 2, '465048677932969617', '10-kai, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1995-12-18', 0, 0, 'dianaki7', '2012-10-15', 'kidiana', '2004-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS334479368503', '丁宇宁', 1, '+86 28-2784-0850', 3, '893180214888287143', '中国成都市成华区二仙桥东三路380号华润大厦4室', '1986-02-14', 0, 0, 'dingyuning', '2003-01-09', 'yd223', '2015-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS300507533654', '菅原光莉', 0, '+1 330-601-2149', 4, '752521634074012946', '343 Ridgewood Road Apartment 40, Akron, OH 44321, United States', '1990-07-30', 0, 0, 'sugawarahikari10', '2004-03-13', 'suhikari', '2002-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS800896979467', 'Nancy Roberts', 0, '+86 28-200-7908', 2, '849552563925530341', '中国成都市成华区玉双路6号229号47栋', '1992-08-01', 0, 0, 'nancyro', '2012-03-28', 'robenanc', '2013-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS592834771881', '郭震南', 1, '+1 213-490-5558', 2, '378490951817037634', '553 Figueroa Street Apt 32, Los Angeles, CA 90037, United States', '1997-11-30', 0, 0, 'guzhennan', '2010-06-10', 'guozhen', '2005-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS282448768050', 'Doris Turner', 1, '+44 (151) 841 8576', 3, '799050232612844008', 'Flat 30, 696 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-12-17', 0, 0, 'turndoris2', '2001-12-23', 'tdoris', '2008-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS673297668565', '應思妤', 1, '+86 158-9782-6266', 3, '095156779381496917', 'Room 26, CR Building, 472 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-11-01', 0, 0, 'szeyuying', '2003-12-02', 'ying1230', '2004-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS648878219678', '王子韬', 1, '+44 7299 302745', 4, '114524688753187235', 'No.17 Main building, 768 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-11-16', 0, 0, 'wangzitao', '2020-04-20', 'wangzitao', '2003-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS608214871824', '蕭志明', 1, '+81 11-871-9778', 4, '908163497385842193', '日本札幌厚別区上野幌一条二丁目1番6号39階', '1998-02-23', 0, 0, 'siuchiming2', '2011-04-24', 'chimingsiu415', '2015-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS847478486236', '呂頴璇', 1, '+81 80-1720-8560', 1, '069463615427591222', '日本東京中央区銀座三丁目12番16号42階', '1990-07-17', 0, 0, 'wsl', '2002-11-02', 'wingsuenl', '2011-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS503981447782', '卢岚', 1, '+1 212-278-4322', 1, '624958404242839186', '447 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1993-07-14', 0, 0, 'lulan', '2003-01-08', 'lan1118', '2021-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS770022946663', 'Donald Sanders', 0, '+81 70-6244-3968', 3, '020341197939038502', '日本なごやし守山区瀬古東二丁目171番4号21階', '1990-10-07', 0, 0, 'donsanders1019', '2001-07-14', 'sanders913', '2014-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS082718325860', 'Nancy Mendez', 0, '+81 11-130-6263', 2, '521594038099118134', '日本札幌厚別区上野幌一条二丁目1番13号4号室', '1993-10-10', 0, 0, 'mendez6', '2008-06-03', 'mn413', '2016-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS625906599999', '傅裕玲', 0, '+81 90-8743-5530', 1, '464245683506724497', 'Rm. 42, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1987-11-04', 0, 0, 'fuyu', '2006-06-26', 'ylfu69', '2021-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS375569851141', '傅璐', 0, '+44 7954 850634', 1, '325163422579491175', 'Unit 12, Oxford Eco Centre, 307 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-12-14', 0, 0, 'fulu', '2018-09-11', 'lfu', '2006-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS851496031785', '萧子异', 0, '+44 7055 953396', 1, '295380330639647445', 'Flat 8, 394 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-12-24', 0, 0, 'ziyix530', '2017-09-22', 'xiaoz', '2011-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS665171583317', 'Juanita Perry', 1, '+86 149-9393-9916', 2, '941436034407526901', 'No.23 building, 938 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-10-08', 0, 0, 'jperry', '2008-12-18', 'perryj', '2009-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS205542705415', 'Glenn Anderson', 1, '+1 312-216-1535', 1, '717237958794779889', '563 North Michigan Ave Apartment 28, Chicago, IL 60611, United States', '1986-06-23', 0, 0, 'andersonglen', '2012-11-26', 'andglenn', '2013-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS126603531474', 'Marilyn Wallace', 0, '+1 330-436-0489', 1, '004706578039181380', '186 Collier Road Suite 29, Akron, OH 44320, United States', '1992-12-02', 0, 0, 'marilynwa801', '2017-03-28', 'mawal1', '2007-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS783567798711', '岩崎大地', 0, '+86 178-4055-9073', 3, '941203125128630067', '8F, 522 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-02-17', 0, 0, 'daichii2019', '2019-03-07', 'iwasadaichi', '2003-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS005170753711', '韦震南', 1, '+86 182-2041-0747', 2, '550945188648876542', 'No.37 building, 162 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1998-04-08', 0, 0, 'wezh', '2004-06-08', 'zhenw', '2011-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS273687513558', '唐子异', 0, '+81 66-160-1533', 0, '177009992534773905', 'Rm. 31, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-01-17', 0, 0, 'zta508', '2009-05-20', 'tangz', '2016-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS051745258837', '中山陽太', 1, '+44 (116) 306 4169', 4, '766563369751994731', 'Block 20, 626 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-10-03', 0, 0, 'nakayamay', '2001-10-21', 'ynakay', '2003-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS938031877924', '谷家明', 1, '+1 212-585-9334', 0, '683825021758623288', '521 Fifth Avenue Apartment 36, New York, NY 10017, United States', '1997-07-22', 0, 0, 'kookm', '2014-10-29', 'kkami102', '2009-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS170098282511', 'Joe Ross', 0, '+44 7124 719234', 2, '764446221363457082', 'Flat 36, 592 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-11-17', 0, 0, 'rossj1108', '2017-04-18', 'joeros', '2015-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS679867403130', '邹嘉伦', 0, '+81 11-856-0718', 2, '442376587925583062', '50-kai, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-11-07', 0, 0, 'jzo1', '2007-07-08', 'jzou', '2019-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS907839983608', '井上湊', 1, '+86 20-205-4673', 2, '621632493798329548', '中国广州市越秀区中山二路493号华润大厦16室', '1992-08-15', 0, 0, 'minato8', '2015-08-26', 'inoueminato', '2019-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS752744043208', '池田桜', 1, '+86 141-2392-8554', 3, '078232950641998402', '中国广州市越秀区中山二路909号43室', '1985-02-13', 0, 0, 'sakuraik', '2001-05-13', 'sikeda', '2010-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS099153971118', 'Ethel Jordan', 0, '+81 52-260-3023', 1, '833633493771052716', '43-kai, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-06-08', 0, 0, 'jordane', '2008-02-11', 'etjord', '2014-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS396101029675', '酒井一輝', 0, '+1 718-394-5599', 1, '372564310434259017', '658 Flatbush Ave Suite 22, Brooklyn, NY 11225, United States', '1988-07-27', 0, 0, 'ikkisakai', '2015-05-09', 'iksaka', '2001-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS405175349576', 'Jason Rose', 1, '+86 28-2251-1184', 4, '046630472573518825', '中国成都市成华区双庆路546号3栋', '1988-11-26', 0, 0, 'jasonr', '2001-07-04', 'rose9', '2011-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS312558886253', '高木陸', 1, '+86 132-6890-7633', 1, '834724019926603171', 'No.6 building, 66 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-06-01', 0, 0, 'rtakagi', '2008-09-26', 'riku1', '2002-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS698374065114', '郑子韬', 0, '+86 179-4091-9142', 3, '454032253675626741', '中国北京市東城区東直門內大街806号41室', '1997-01-14', 0, 0, 'zizhe', '2012-02-09', 'zitaozhe96', '2013-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS324622320170', '松田美月', 1, '+86 146-6208-2854', 2, '927870083349330282', 'No.19 building, 433 Shanhu Rd, Dongguan, China', '1996-08-18', 0, 0, 'mitsuki9', '2001-08-29', 'mitsuki910', '2016-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS685137117334', '程嘉伦', 0, '+81 80-2378-8457', 3, '309113021571014495', '日本おおさかし平野区加美東四丁目9番10号19号室', '1987-09-22', 0, 0, 'jialuncheng', '2016-03-23', 'jialun310', '2019-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS015127292471', 'Steven Jordan', 1, '+86 20-4169-5127', 1, '905940796251635995', '8F, 199 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-07-25', 0, 0, 'stejordan1', '2016-04-03', 'stevenjordan918', '2019-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS420381451857', '上田健太', 0, '+1 330-035-6894', 1, '066771648473709380', '877 Fern Street Apt 48, Akron, OH 44307, United States', '1998-05-17', 0, 0, 'uedakent821', '2016-06-20', 'kentau', '2006-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS065767316980', 'Danielle Rogers', 1, '+86 755-678-4130', 1, '758349619005784134', '中国深圳龙岗区布吉镇西环路313号华润大厦13室', '1991-11-14', 0, 0, 'darogers', '2003-12-06', 'danielle2', '2012-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS636640873601', '孙詩涵', 1, '+86 146-8505-8292', 4, '721473620730161371', 'No.29 building, 807 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-03-19', 0, 0, 'shihansu71', '2007-01-16', 'sun605', '2012-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS576077560304', '钱晓明', 0, '+44 (151) 942 3404', 3, '917897016670343261', 'No.37 Main building, 742 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-12-21', 0, 0, 'qianx1943', '2015-07-15', 'xiaomingqia', '2002-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS264245664549', 'Peter Robertson', 0, '+1 838-044-1755', 4, '473356491437100674', '367 State Street Apt 22, Albany, NY 12203, United States', '1988-07-02', 0, 0, 'peterrobertson', '2016-01-06', 'rpe', '2013-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS508703675769', '木下凛', 0, '+44 (121) 614 5154', 3, '412815177624987556', 'Block 46, 9 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-09-09', 0, 0, 'kinoshita1101', '2008-10-28', 'rin5', '2016-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS206390981256', '徐家明', 0, '+81 70-7761-0896', 2, '545285054621285078', '日本東京品川区東五反田五丁目2番15号1階', '1996-03-05', 0, 0, 'kmts', '2016-02-22', 'tskm5', '2011-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS998737022266', '伍國賢', 1, '+1 213-241-6530', 2, '623750310200410717', '122 Figueroa Street Suite 30, Los Angeles, CA 90037, United States', '1995-08-09', 0, 0, 'kwokyin618', '2017-09-10', 'kwokyinng', '2012-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS019245793832', '秦嘉伦', 1, '+81 90-1888-6930', 1, '809927369757812989', '9-kai, 4-9-19 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-01-30', 0, 0, 'jialun3', '2016-04-10', 'jqin', '2001-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS781839364622', '姜岚', 1, '+1 330-944-8810', 2, '371831729165133757', '774 West Market Street 3rd Floor, Akron, OH 44333, United States', '1996-09-03', 0, 0, 'jila1996', '2015-09-06', 'jiang1208', '2014-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS044405568219', '汪學友', 0, '+81 80-8840-3541', 0, '436971785415533062', 'Rm. 7, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1986-03-17', 0, 0, 'wong908', '2017-08-20', 'hokyauwong', '2003-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS283326169687', '罗震南', 1, '+81 66-620-0179', 4, '203764673094987870', 'Rm. 18, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1995-01-22', 0, 0, 'luoz', '2002-07-24', 'luozhenn10', '2016-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS452682745185', 'Teresa Rose', 0, '+1 330-817-4660', 3, '908384479715519895', '960 Riverview Road Apartment 12, Akron, OH 44313, United States', '1989-12-11', 0, 0, 'rose44', '2017-10-21', 'roseteresa', '2007-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS990092515697', '橋本葉月', 1, '+86 134-2741-2478', 4, '423343439712311993', 'No.15 building, 116 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-12-21', 0, 0, 'hashimotohazuki', '2008-04-22', 'hhaz', '2020-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS489625861531', '胡子韬', 1, '+81 70-4072-7186', 2, '296196494805465938', '日本おおさかし近江堂一丁目7番3号30階', '1987-05-06', 0, 0, 'hu1', '2008-05-28', 'zitaohu', '2005-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS360616739151', '伊藤悠人', 0, '+86 198-4793-9097', 3, '625251352030874031', 'No.49 building, 216 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-07-23', 0, 0, 'iy221', '2021-02-24', 'itoyuto', '2002-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS566220188360', '黄子异', 1, '+81 52-673-8303', 2, '597863350364171686', '日本なごやし守山区瀬古東二丁目171番7号17号室', '1997-01-21', 0, 0, 'ziyhuang2001', '2021-11-29', 'huangziyi18', '2011-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS262951351406', '安藤七海', 0, '+86 28-8325-9494', 1, '997977257084984924', 'No.3 building, 158 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-11-23', 0, 0, 'annanami1987', '2014-10-21', 'nanamia', '2009-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS152600152150', '鄺慧嫻', 0, '+1 838-766-2589', 4, '520908455493734924', '469 Lark Street Suite 45, Albany, NY 12210, United States', '1989-03-20', 0, 0, 'waihan805', '2010-03-03', 'whkwong5', '2014-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS627107426444', '楊惠妹', 0, '+1 718-726-8780', 3, '519814990684010404', '956 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-09-20', 0, 0, 'yeunghm703', '2002-02-14', 'hmyeung', '2010-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS081875957566', 'Howard Allen', 0, '+81 90-8968-8137', 3, '555113906831992272', '3-kai, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-11-26', 0, 0, 'allen82', '2020-05-20', 'allenh40', '2017-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS298720596915', 'Thelma Barnes', 1, '+1 330-388-9070', 1, '740208800877579160', '86 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-11-05', 0, 0, 'thelma816', '2000-05-30', 'barnes10', '2020-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS242891909187', '小山美月', 0, '+81 74-113-5907', 3, '385463008428748384', '37F, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-03-28', 0, 0, 'mitsukiko', '2014-07-19', 'mitsukikoyama425', '2000-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS199095579066', '孫俊宇', 1, '+81 80-9538-3698', 2, '305911203962224871', '1F, 5-19-9 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-03-24', 0, 0, 'cyh', '2010-04-11', 'hsuan3', '2013-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS295425440136', '罗震南', 1, '+81 11-988-6780', 0, '012895839057063155', '日本札幌清田区真栄四条五丁目19番6号22号室', '1986-05-08', 0, 0, 'zhennanluo', '2021-08-27', 'zhennan2', '2007-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS810349399340', '曾詩涵', 0, '+86 175-8674-7493', 4, '226577249994055909', 'Room 43, 219 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-08-13', 0, 0, 'zeng322', '2010-02-28', 'zengshiha', '2020-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS612568478829', '史岚', 1, '+86 140-9368-0260', 3, '974293332615809041', '中国成都市锦江区红星路三段744号12号楼', '1993-10-09', 0, 0, 'lanshi3', '2010-07-19', 'sl68', '2005-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS680069708919', '姜云熙', 0, '+81 80-6420-4537', 1, '331294896728796734', 'Rm. 24, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-13', 0, 0, 'jiang1003', '2021-04-28', 'jyunxi', '2013-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS622222655926', '樂明', 1, '+86 28-515-2890', 3, '876498786274859818', '中国成都市成华区双庆路908号华润大厦45室', '1990-10-16', 0, 0, 'minglok', '2000-03-20', 'minlok01', '2011-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS501739517047', '阮麗欣', 1, '+81 11-886-3483', 1, '182883055972337099', '45-kai, 2-1-20 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-10-10', 0, 0, 'yuen1950', '2014-04-19', 'yuenlaiyan1', '2010-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS543050990263', 'Harry Spencer', 1, '+81 80-9966-2584', 3, '117607304511795881', '日本なごやし瑞穂区河岸町四丁目20番10号22階', '1993-04-17', 0, 0, 'sharry', '2008-03-06', 'sharry', '2017-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS019844895003', 'Bruce West', 0, '+81 70-2403-7951', 2, '667776939673965095', 'Rm. 49, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-07-13', 0, 0, 'bruce714', '2015-02-19', 'westbru', '2001-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS352436982496', '邹云熙', 1, '+1 312-446-3280', 2, '801451301782137882', '60 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1997-01-28', 0, 0, 'yunxizou67', '2003-06-17', 'yunxizou', '2006-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS425025709700', 'Alan Gutierrez', 1, '+81 90-3574-0725', 3, '142422777778115662', 'Rm. 4, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-06-22', 0, 0, 'agutierrez', '2008-03-14', 'guala', '2016-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS654856498411', '熊岚', 0, '+1 330-776-9869', 3, '925698075072897170', '934 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-07-06', 0, 0, 'lanxiong', '2007-02-22', 'xiongl', '2015-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS115661031124', '内田結翔', 1, '+44 7898 168611', 2, '387239459159132144', 'Unit 19, Oxford Eco Centre, 943 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-10-11', 0, 0, 'uchidayuito928', '2013-01-16', 'yuituchida', '2012-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS795752927344', '孔睿', 0, '+86 151-5365-6564', 4, '827139838436135411', 'No.48 building, 476 Jianxiang Rd, Pudong, Shanghai, China', '1985-04-09', 0, 0, 'ruikong', '2007-05-23', 'ruik', '2010-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS066584348558', '陈杰宏', 1, '+1 838-327-6164', 0, '342689636145395216', '484 Central Avenue Suite 28, Albany, NY 12206, United States', '1998-03-08', 0, 0, 'cjieho', '2007-05-24', 'chenjiehong', '2016-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS797341287484', '于子韬', 1, '+1 330-610-7790', 4, '426185830064592256', '655 West Market Street Suite 35, Akron, OH 44333, United States', '1991-07-14', 0, 0, 'yu08', '2020-07-10', 'yuzitao', '2016-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS442601091568', '李頴思', 0, '+1 718-429-5655', 2, '511487218253962113', '422 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-07-15', 0, 0, 'wingsze6', '2019-04-17', 'lws', '2017-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS065798924600', '鄭明詩', 1, '+81 74-939-6056', 2, '272403236788637763', '1F, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-07-07', 0, 0, 'mingszec62', '2020-09-10', 'chengmingsze8', '2014-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS705942637281', '苏宇宁', 1, '+86 21-9442-2065', 3, '467594267373479342', '36F, 225 Binchuan Rd, Minhang District, Shanghai, China', '1985-06-22', 0, 0, 'syuning731', '2001-06-29', 'suyuning', '2017-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS884420483819', '叶岚', 1, '+44 (151) 152 3157', 1, '919005373380071314', 'Block 19, 244 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1996-10-23', 0, 0, 'ye64', '2006-04-24', 'lanye1', '2020-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS866199954885', '唐震南', 1, '+81 70-4174-8243', 2, '593914079776286093', '日本札幌白石区菊水三条五丁目2番5号20階', '1990-07-16', 0, 0, 'zhenntang321', '2012-08-31', 'tang11', '2019-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS319728067390', '梅霆鋒', 1, '+1 212-383-0196', 4, '667913813811459755', '236 Fifth Avenue Suite 44, New York, NY 10017, United States', '1988-04-20', 0, 0, 'timu10', '2009-08-21', 'tingfung00', '2020-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS977363441603', 'Juan Webb', 0, '+86 21-571-2187', 3, '512659391518964511', 'Room 5, CR Building, 17 Ganlan Rd, Pudong, Shanghai, China', '1998-06-28', 0, 0, 'juanwebb', '2006-02-09', 'wjuan', '2021-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS404254317753', '麥玲玲', 1, '+81 74-853-1363', 4, '631011420512383355', '日本ならし学園南三丁目9番9号7階', '1995-02-19', 0, 0, 'makll', '2011-06-06', 'llmak1120', '2001-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS507079529164', '小島光', 1, '+1 330-389-8989', 4, '383485915974136221', '396 West Market Street Apt 44, Akron, OH 44333, United States', '1986-11-22', 0, 0, 'hikarko', '2001-06-19', 'hkojim5', '2009-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS081811750073', '石田陽菜', 0, '+86 760-7197-4431', 0, '547836518306544765', '中国中山紫马岭商圈中山五路562号44室', '1992-05-04', 0, 0, 'hinais', '2004-03-19', 'ih01', '2017-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS529837994381', '钟睿', 0, '+44 5246 381804', 2, '625358580559684980', 'No.48 Main building, 433 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1986-05-14', 0, 0, 'zhongrui', '2014-02-11', 'ruiz1112', '2011-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS814654032505', 'Kathy Murray', 0, '+81 90-5271-6347', 1, '452744634479865654', '日本おおさかし平野区加美東四丁目9番12号46号室', '1994-12-25', 0, 0, 'kathym', '2017-06-02', 'murray3', '2007-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS213983030909', '坂本蓮', 0, '+81 80-1565-2514', 1, '693588697760416825', '日本東京千代田区丸の内一丁目6番13号1階', '1989-07-21', 0, 0, 'rsakamoto8', '2014-07-10', 'sakaren', '2000-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS342177637021', '向安琪', 1, '+81 90-6370-6560', 1, '932763247689098701', '日本なごやし守山区瀬古東二丁目171番16号17号室', '1993-09-30', 0, 0, 'xianganq9', '2005-09-12', 'anqi5', '2010-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS821848540457', '松田拓哉', 1, '+86 146-4709-9110', 2, '091774197338426478', '中国中山天河区大信商圈大信南路17号23号楼', '1994-02-07', 0, 0, 'tmatsuda707', '2007-05-07', 'takuya1', '2021-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS716248201627', '卢秀英', 1, '+86 132-4462-7296', 1, '297170345735785489', '中国广州市白云区小坪东路585号华润大厦12室', '1994-01-21', 0, 0, 'xiul', '2011-06-19', 'xiul', '2012-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS372642341441', '宣家輝', 0, '+1 718-464-0553', 3, '975085597161838607', '607 Flatbush Ave Suite 31, Brooklyn, NY 11225, United States', '1996-09-23', 0, 0, 'kafai608', '2010-06-12', 'kfhsuan505', '2008-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS853494759523', '後藤海斗', 0, '+1 614-444-7411', 4, '324420211520265749', '210 Tremont Road Apt 31, Columbus, GA 43212, United States', '1986-08-02', 0, 0, 'gotokaito5', '2010-08-27', 'gkaito', '2012-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS720239837371', 'Nicholas Daniels', 1, '+86 28-3444-4894', 3, '472776154061961604', '中国成都市锦江区人民南路四段201号华润大厦16室', '1990-09-12', 0, 0, 'nichda9', '2012-08-21', 'danielsnicholas1974', '2006-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS586926518180', '桜井海斗', 0, '+86 149-8071-9806', 1, '917640255229205109', '22F, 834 028 County Rd, Yanqing District, Beijing, China', '1993-10-03', 0, 0, 'sakuraikait', '2011-01-15', 'kaito1107', '2019-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS266780505996', '新井百恵', 0, '+86 139-9414-3004', 1, '980066778553976797', '中国北京市海淀区清河中街68号902号10栋', '1990-04-02', 0, 0, 'aramomoe', '2011-04-25', 'aramom', '2001-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS462708859435', '杜發', 0, '+81 70-0444-4423', 2, '120155112781215753', '45-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-03-28', 0, 0, 'tofat', '2003-03-14', 'tofa', '2010-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS776261303354', '韩嘉伦', 1, '+86 755-877-9440', 2, '943173500682329969', 'Room 46, 788 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-04-06', 0, 0, 'jialunhan', '2021-10-15', 'jialunhan9', '2018-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS338979769068', 'Ryan Guzman', 0, '+44 5639 652959', 2, '783828332509457992', 'Unit 28, Oxford Eco Centre, 690 Pollen Street, London, W1S 1NG, United Kingdom', '1992-05-26', 0, 0, 'ryan10', '2000-07-09', 'ryanguzman42', '2017-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS671040327757', '吕致远', 1, '+86 160-4792-8918', 2, '092596598786753077', '17F, 643 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-02-13', 0, 0, 'luzhi1', '2008-04-29', 'lzhiyuan', '2006-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS026709950006', '谷國權', 0, '+81 70-8845-3581', 4, '814547423266480314', '日本ならし西大寺赤田町一丁目7番12号47号室', '1998-07-22', 0, 0, 'kookk1', '2017-02-10', 'koo618', '2003-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS408988602443', '任嘉伦', 1, '+44 (20) 5522 7298', 2, '735029413121570811', 'No.37 Main building, 339 Hanover Street, London, W1S 1YD, United Kingdom', '1998-01-04', 0, 0, 'renj4', '2010-03-10', 'jialun120', '2004-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS148069704162', '山口拓哉', 0, '+81 52-634-2662', 4, '224699246977986716', '日本なごやし守山区瀬古東二丁目171番12号21階', '1998-03-23', 0, 0, 'yamt75', '2010-09-20', 'tayamaguchi8', '2020-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS796848662189', '西村健太', 1, '+44 5021 661206', 0, '402101698994955125', 'No.40 Main building, 478 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-12-03', 0, 0, 'nishk10', '2002-04-17', 'nishik912', '2004-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS958205922732', '廖裕玲', 0, '+86 179-3162-6182', 3, '631494724609768264', '中国北京市延庆区028县道583号华润大厦32室', '1986-08-01', 0, 0, 'liao1981', '2015-12-17', 'liaoyl67', '2014-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS201118420381', '翁青雲', 1, '+86 20-767-2274', 2, '368988185596840449', '中国广州市白云区机场路棠苑街五巷825号华润大厦46室', '1993-02-15', 0, 0, 'cwyung75', '2010-08-04', 'yucw7', '2019-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS461441683903', '坂本拓哉', 0, '+81 11-853-1883', 2, '741825141960621643', '22-kai, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-01-03', 0, 0, 'takusak3', '2005-06-02', 'sakamototaku', '2017-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS765884575142', 'Louise Tucker', 1, '+81 3-2551-7646', 3, '250388051824314990', '日本東京中央区銀座三丁目12番19号1号室', '1992-04-18', 0, 0, 'tucker02', '2009-09-26', 'tuckerlouise', '2020-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS443163843564', '菊地葵', 0, '+86 755-834-5825', 2, '833664985502507670', 'Room 46, CR Building, 82 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-01-31', 0, 0, 'kikua', '2014-07-28', 'kikuchiaoi2', '2010-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS438175295198', '韩璐', 1, '+81 70-7304-7556', 1, '150661062775084648', '日本東京港区東新橋一丁目5番1号32号室', '1988-09-23', 0, 0, 'luhan', '2012-01-25', 'luha64', '2006-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS497410023998', 'Nathan Kennedy', 0, '+86 28-735-0522', 0, '492230816875169731', '中国成都市成华区玉双路6号354号华润大厦40室', '1986-04-09', 0, 0, 'kennatha', '2008-10-22', 'kennenath', '2012-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS080959555420', '常杰宏', 1, '+86 755-679-8628', 1, '739228760764462020', 'Room 38, CR Building, 132 Shennan Ave, Futian District, Shenzhen, China', '1996-07-21', 0, 0, 'chang519', '2014-01-15', 'chajieh', '2010-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS091569854102', '冯岚', 1, '+44 (161) 920 4025', 1, '010253778310286199', 'Block 14, 171 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-08-04', 0, 0, 'lanfeng', '2006-05-08', 'lanfeng', '2006-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS855699661433', '方岚', 1, '+44 (151) 542 0861', 0, '152301924343440742', 'No.13 Main building, 693 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1994-02-17', 0, 0, 'lafang4', '2016-10-30', 'fangl', '2009-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS940652744562', '清水玲奈', 1, '+81 80-3191-1441', 0, '443056021695191029', 'Rm. 50, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-06', 0, 0, 'rena59', '2003-02-03', 'rshimi', '2012-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS772755097621', 'Steven Crawford', 1, '+81 70-6048-2869', 4, '759845304374848304', 'Rm. 45, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1996-12-18', 0, 0, 'cste', '2009-02-28', 'steven8', '2006-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS928912253238', '任霆鋒', 0, '+86 755-816-9282', 3, '626604446860717012', 'Room 6, CR Building, 152 Shennan Ave, Futian District, Shenzhen, China', '1993-03-12', 0, 0, 'yamtingfung', '2013-09-01', 'tingfung407', '2011-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS642908268969', 'Dawn Henderson', 0, '+81 90-9795-1379', 1, '932836725954731671', 'Rm. 36, 2-3-5 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-11-27', 0, 0, 'dawn2', '2016-06-30', 'dawnhende', '2002-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS815608894305', '林秀英', 1, '+44 (151) 521 9041', 0, '294895507443919171', 'Unit 26, Oxford Eco Centre, 598 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-31', 0, 0, 'linxiuying', '2007-08-21', 'lin922', '2008-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS972392550544', '江梓晴', 1, '+86 21-1186-2923', 2, '602553017136391669', 'Room 16, CR Building, 123 Hongqiao Rd., Xu Hui District, Shanghai, China', '1995-11-25', 0, 0, 'kongtszch56', '2006-11-23', 'kotc', '2018-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS322519785321', 'Bradley Vasquez', 1, '+81 70-6207-0570', 2, '515005396483375208', '7F, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-09-06', 0, 0, 'vasquez7', '2012-07-31', 'bravasq', '2011-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS497459099043', '駱志明', 1, '+1 213-205-5925', 1, '789032463225809886', '935 Wall Street Apartment 13, Los Angeles, CA 90003, United States', '1986-06-09', 0, 0, 'lokcm66', '2015-01-10', 'cml328', '2015-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS787199480034', 'Shannon Tucker', 1, '+81 52-198-9684', 3, '215701428122059622', '日本なごやし守山区瀬古東二丁目171番9号24号室', '1991-10-03', 0, 0, 'tuckershannon', '2007-12-01', 'st6', '2021-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS182021209980', '横山葵', 1, '+81 70-2632-8025', 2, '529692893600915655', '日本おおさかし西成区出城一丁目1番16号47号室', '1998-02-13', 0, 0, 'aoiyo901', '2018-01-23', 'aoiyo129', '2005-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS260463145860', '傅詩涵', 0, '+81 74-763-3518', 3, '351845916831536847', '日本ならし大和郡山市本庄町一丁目1番15号12階', '1996-11-19', 0, 0, 'sfu324', '2008-10-13', 'fushih', '2012-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS957308679217', 'Justin Bailey', 1, '+44 (121) 031 1782', 3, '606025036761813712', 'Unit 26, Oxford Eco Centre, 987 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-10-30', 0, 0, 'justinb9', '2017-03-03', 'justin8', '2013-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS759372800491', '方子韬', 0, '+86 755-7507-9965', 3, '539379267827831062', '中国深圳罗湖区清水河一路867号40栋', '1991-06-03', 0, 0, 'zitao53', '2021-09-10', 'zitao329', '2000-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS583291578840', '汪宇宁', 1, '+81 52-801-6276', 2, '877069296297224236', 'Rm. 44, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1987-10-26', 0, 0, 'wang404', '2015-05-05', 'wang8', '2017-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS024699469998', '林秀英', 0, '+44 (151) 510 3479', 0, '690994573088278169', 'Flat 1, 994 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1992-09-21', 0, 0, 'xiuyinglin', '2009-01-05', 'xl8', '2017-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS778309327645', '盧安娜', 0, '+81 66-464-4874', 1, '175733161988055209', '日本おおさかし東住吉区東田辺三丁目27番14号42階', '1996-07-20', 0, 0, 'onlo8', '2009-05-04', 'lonn', '2015-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS828614171301', '戚天樂', 0, '+1 614-780-6203', 2, '345724246811938163', '76 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-10-02', 0, 0, 'chtinlok', '2007-08-23', 'tinlok1980', '2014-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS926729783081', '村上聖子', 0, '+86 10-5070-5680', 4, '072439005911463738', '4F, 993 028 County Rd, Yanqing District, Beijing, China', '1991-05-04', 0, 0, 'muraksei', '2014-03-05', 'murakamiseiko', '2013-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS898290435219', 'Anna Reyes', 1, '+44 7209 209300', 2, '352481381037247321', 'Flat 6, 779 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-10-17', 0, 0, 'reyesanna2', '2004-08-05', 'annare5', '2001-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS046230813924', '佐藤翼', 1, '+86 21-7657-4705', 0, '374833407284266411', '25F, 460 Ganlan Rd, Pudong, Shanghai, China', '1999-01-03', 0, 0, 'satotsubasa5', '2014-05-27', 'tsusato', '2002-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS619406283361', '姜晓明', 1, '+81 11-765-6671', 1, '025948488828976550', '10-kai, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-09-20', 0, 0, 'jiangxiaoming10', '2013-10-16', 'jiaxiao63', '2019-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS035898958890', '劉秀文', 1, '+86 175-2131-1691', 3, '872402875568505210', 'Room 24, 483 FuXingMenNei Street, XiCheng District, Beijing, China', '1991-08-28', 0, 0, 'lausauman5', '2006-12-25', 'lausm1017', '2000-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS353167946655', '石井樹', 0, '+81 90-7708-0198', 1, '003046444922443451', '2-kai, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-08-28', 0, 0, 'itsukiishii', '2002-03-30', 'isi4', '2001-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS784055931752', '宮崎花', 0, '+44 (1223) 36 9195', 2, '897375536245475366', 'Block 18, 407 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-04-30', 0, 0, 'miyahana9', '2003-10-23', 'miyazakihana', '2021-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS283438179894', '菅原紗良', 0, '+44 5076 070188', 3, '104781437157354005', 'Block 11, 779 Mosley St, Manchester, M2 3AQ, United Kingdom', '1987-06-24', 0, 0, 'sara40', '2005-02-16', 'sugawarasa1124', '2015-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS519963587082', '孔震南', 1, '+86 28-441-0027', 1, '934080137928981359', 'No.18 building, No. 816, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-06-05', 0, 0, 'zhennan3', '2015-06-28', 'zhennan3', '2002-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS511229230432', '河野絢斗', 0, '+81 66-487-3990', 1, '968731622210064957', '47-kai, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1993-05-27', 0, 0, 'ayatok', '2011-03-17', 'konoayat', '2000-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS169075093694', '薛子韬', 0, '+81 11-609-3877', 3, '857340412244371685', '日本札幌中央区宮の森四条六丁目1番1号19号室', '1997-12-08', 0, 0, 'xzit1022', '2006-02-27', 'xuzitao', '2011-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS468606142767', '林晓明', 1, '+86 197-2910-8734', 2, '994248465328571553', 'No.20 building, 624 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1990-08-26', 0, 0, 'xiaolin1974', '2005-01-22', 'xial', '2013-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS501474053329', '周俊宇', 1, '+81 90-4950-3194', 0, '076989264099494554', '日本ならし学園南三丁目9番14号2号室', '1985-01-19', 0, 0, 'chunyu9', '2009-05-06', 'chocy9', '2005-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS981233322322', '木村葵', 0, '+86 152-9155-8298', 1, '568297449004935186', '中国深圳龙岗区学园一巷741号华润大厦33室', '1990-11-06', 0, 0, 'aoik5', '2021-09-08', 'kimura2', '2000-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS644851094546', '宮崎絢斗', 1, '+86 167-6708-4648', 0, '453903821546123876', 'Room 21, CR Building, 169 Shanhu Rd, Dongguan, China', '1996-01-25', 0, 0, 'ayamiyazaki', '2007-08-08', 'miyazakiayat608', '2014-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS199367075950', '廖子异', 0, '+81 3-4667-9354', 3, '816663030170259081', 'Rm. 28, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-08-30', 0, 0, 'zli', '2001-09-28', 'liaoz', '2017-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS194715773440', '戴國明', 1, '+81 3-6417-2697', 3, '537376106493776981', '日本東京渋谷区代々木二丁目3番8号39階', '1987-03-26', 0, 0, 'daikm', '2003-04-19', 'kmd2', '2011-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS167643977707', '廖致远', 0, '+1 718-901-3097', 1, '538152250442684332', '254 Nostrand Ave Apt 42, Brooklyn, NY 11216, United States', '1993-10-24', 0, 0, 'liaoz', '2012-06-24', 'lzhiyuan', '2003-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS041769378712', '三浦翼', 1, '+1 212-002-3728', 1, '624064432472634253', '662 Fifth Avenue Apt 16, New York, NY 10017, United States', '1996-08-30', 0, 0, 'tsubasamiura1129', '2017-11-06', 'tsubasa2', '2019-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS542199365575', '魏璐', 0, '+86 150-4838-6143', 2, '709040125455240034', '中国北京市西城区西長安街868号16楼', '1997-01-16', 0, 0, 'welu07', '2015-05-06', 'wei1123', '2006-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS938873420196', '蒋嘉伦', 1, '+44 (1223) 04 1357', 1, '423034944344398042', 'Block 12, 339 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-07-29', 0, 0, 'jiangj', '2009-08-25', 'jialunjiang819', '2010-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS887903095718', '薛裕玲', 1, '+1 838-923-3134', 4, '699141358950043273', '653 Central Avenue Apartment 24, Albany, NY 12205, United States', '1990-12-10', 0, 0, 'yls', '2013-03-20', 'sityuling2013', '2019-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS959258055337', '唐杰宏', 0, '+81 66-908-3515', 2, '334213802141057226', 'Rm. 13, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-07-18', 0, 0, 'tangj1992', '2019-04-17', 'jiehong1', '2019-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS935430520650', '邱慧嫻', 0, '+81 90-8123-6376', 1, '029833543969007140', '48-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-03-02', 0, 0, 'yauwh', '2007-09-25', 'waihayau223', '2018-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS804065607517', '韓惠敏', 0, '+81 52-606-5638', 2, '268153007677664571', '34F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-08-21', 0, 0, 'han8', '2008-03-16', 'hanwaiman44', '2010-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS043075151645', '島田蓮', 0, '+81 80-2880-4683', 4, '839300213179290032', '13-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-10-25', 0, 0, 'resh', '2003-05-01', 'renshi', '2021-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS453561142871', '薛發', 0, '+81 66-615-3081', 0, '091761767636538231', '日本おおさかし西成区天神ノ森二丁目1番13号36号室', '1995-03-22', 0, 0, 'sit8', '2021-03-14', 'fsit', '2017-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS463680541732', '毛睿', 1, '+81 52-479-3415', 3, '434515384927393354', '30F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1988-07-29', 0, 0, 'ruimao', '2017-04-29', 'mao3', '2015-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS912242649915', '高田拓哉', 1, '+81 80-9629-6330', 4, '287080655407192622', 'Rm. 50, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-11-11', 0, 0, 'ttakuya528', '2009-07-31', 'takadata1001', '2013-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS982515053245', 'Gary Mason', 1, '+86 20-8766-3735', 2, '360125674290856435', '中国广州市越秀区中山二路903号39室', '1987-05-22', 0, 0, 'garmason3', '2008-04-26', 'garmason70', '2004-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS641043029629', '顾云熙', 1, '+81 90-5042-9224', 4, '508546131376186506', '42F, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1999-01-27', 0, 0, 'yunxi54', '2003-02-02', 'yunxigu5', '2013-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS255266081033', '千葉瑛太', 0, '+81 52-916-9007', 3, '954183022988153341', '日本なごやし瑞穂区河岸町四丁目20番12号14号室', '1992-09-28', 0, 0, 'eitachiba', '2000-04-13', 'eitchiba', '2009-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS012955573865', 'Thelma Chavez', 0, '+81 3-8207-7686', 3, '551405017213111734', '日本東京中央区銀座三丁目12番8号15階', '1989-07-17', 0, 0, 'thelmchave', '2010-10-25', 'chavez3', '2014-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS795894354953', '後藤海斗', 0, '+81 90-7621-4362', 3, '396971263268874538', 'Rm. 48, 3-9-8 Gakuenminami, Nara, Japan', '1985-01-03', 0, 0, 'gotokaito19', '2020-04-13', 'kaitg', '2015-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS697573451927', 'Paul Schmidt', 0, '+86 769-664-2493', 2, '752153625937416050', 'No.19 building, 893 Dongtai 5th St, Dongguan, China', '1988-04-12', 0, 0, 'schmidt925', '2018-11-15', 'schmidtpaul518', '2018-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS657601382217', 'Timothy Mills', 1, '+86 10-338-4678', 0, '790405394081085132', '36F, 729 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-01-27', 0, 0, 'millstimothy', '2013-07-28', 'mt6', '2008-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS620064283317', '河野桜', 0, '+86 198-1323-5239', 1, '107755452763374860', '中国成都市成华区玉双路6号543号40楼', '1986-02-06', 0, 0, 'sakura2', '2013-06-29', 'sakono', '2000-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS502801980376', '竹内一輝', 0, '+81 70-8285-0221', 1, '151908708606748917', 'Rm. 18, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1993-08-31', 0, 0, 'takeuchii', '2009-07-29', 'takeuchiikki3', '2012-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS581227249555', '大塚紗良', 0, '+86 138-1906-6207', 0, '977818125003093087', '42F, 212 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-01-08', 0, 0, 'sotsuka', '2008-12-24', 'otssa', '2010-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS462202769067', '江睿', 1, '+81 70-6235-5427', 3, '992114715652616083', '40-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-03-18', 0, 0, 'rujiang', '2007-04-10', 'rui6', '2007-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS419932785437', '毛云熙', 1, '+86 181-2879-3014', 4, '035181042201033888', 'Room 33, CR Building, 644 Kengmei 15th Alley, Dongguan, China', '1994-04-22', 0, 0, 'mao1997', '2015-02-21', 'yunxi5', '2010-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS156043748886', '安藤陽菜', 0, '+86 150-1443-8633', 3, '546502861556382421', '中国北京市东城区东单王府井东街338号29栋', '1996-12-02', 0, 0, 'hinaando', '2008-03-04', 'andoh2005', '2006-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS288541978477', '鄭浩然', 0, '+81 11-892-8021', 1, '822609341028563757', '日本札幌中央区宮の森四条六丁目1番18号13号室', '1988-05-23', 0, 0, 'hoyin10', '2002-08-04', 'hoyin86', '2008-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS473166172116', 'Alfred Gonzalez', 1, '+86 769-6946-2063', 2, '317496241413059852', '中国东莞东泰五街355号9室', '1998-11-10', 0, 0, 'alfred10', '2011-10-12', 'agon', '2004-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS496771531626', 'Leslie Watson', 0, '+81 74-119-7943', 1, '536988647782168491', '日本ならし大和郡山市本庄町一丁目1番7号2号室', '1986-11-26', 0, 0, 'watsonl1945', '2015-03-14', 'watsonleslie', '2005-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS713573189389', '葉慧琳', 1, '+86 10-1031-4050', 2, '985071486892899105', '中国北京市延庆区028县道167号32栋', '1993-11-19', 0, 0, 'yipwailam', '2014-08-27', 'wailamy5', '2021-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS758017104966', '山下翼', 0, '+1 213-475-3227', 0, '379283417113999595', '392 Figueroa Street Apt 50, Los Angeles, CA 90037, United States', '1994-12-27', 0, 0, 'tya', '2011-08-18', 'yamashitats', '2011-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS678101411108', '廖惠敏', 1, '+44 7569 559879', 1, '514893498128090472', 'No.6 Main building, 367 Maddox Street, London, W1S 1PU, United Kingdom', '1997-02-08', 0, 0, 'liaowm', '2015-01-10', 'wml', '2011-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS745271466442', '顾詩涵', 0, '+86 179-8517-1629', 2, '804163197260616602', 'Room 10, CR Building, 248 Ganlan Rd, Pudong, Shanghai, China', '1992-03-03', 0, 0, 'shigu729', '2001-08-05', 'shihgu120', '2011-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS031191025527', '馬慧嫻', 1, '+44 5941 751383', 2, '892524373737718539', 'Flat 21, 860 Regent Street, London, W1B 2LX, United Kingdom', '1986-12-24', 0, 0, 'mawaihan418', '2004-12-06', 'whma', '2018-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS154595888615', '武田凛', 0, '+44 (1223) 76 9121', 1, '566407053904568419', 'Block 31, 513 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-09-09', 0, 0, 'rintak', '2001-12-30', 'takri8', '2005-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS786738688938', '陆震南', 1, '+86 10-359-7237', 2, '320461571393957358', '中国北京市東城区東直門內大街471号华润大厦32室', '1999-03-01', 0, 0, 'lu1111', '2012-01-11', 'zhlu', '2000-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS325554567981', '戴俊宇', 0, '+86 755-7186-7462', 3, '196384413421037458', 'No.50 building, 456 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-05-03', 0, 0, 'daichunyu', '2017-02-07', 'daicy101', '2006-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS269234705349', 'Valerie Watson', 1, '+81 52-383-5220', 4, '714924321321391511', '日本なごやし熱田区千年二丁目5番10号24号室', '1989-08-17', 0, 0, 'vwa', '2010-09-13', 'valewats', '2004-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS821433216516', 'Lucille Campbell', 0, '+44 (116) 346 5542', 2, '055537149597740408', 'Block 22, 359 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-02-19', 0, 0, 'lucillecampbell', '2011-11-23', 'campbelllucille6', '2006-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS186569927445', 'Kyle Fisher', 0, '+44 5841 783361', 3, '500683258915248060', 'Block 43, 422 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-08-29', 0, 0, 'fisherk', '2021-07-21', 'kfi325', '2020-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS884881220281', '陶天榮', 0, '+81 52-704-3209', 3, '954673767059441727', '18F, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1993-11-22', 0, 0, 'twtao', '2010-05-03', 'twt', '2016-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS491033005621', 'Lucille Watson', 0, '+86 21-444-9065', 1, '003785842787910839', 'Room 43, 915 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-01-21', 0, 0, 'watsonluc2', '2006-11-21', 'wal', '2012-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS035743570623', '高田紗良', 0, '+44 5890 410275', 1, '481712914863290539', 'Block 49, 454 New Street, Birmingham, B2 4DB, United Kingdom', '1997-05-21', 0, 0, 'saratakada501', '2018-07-19', 'tsara', '2002-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS277372594304', '田致远', 0, '+44 (151) 651 4690', 3, '646863565311417804', 'No.48 Main building, 690 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-12-09', 0, 0, 'zhiyuti', '2005-04-13', 'ztian', '2002-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS589647351503', 'Henry Price', 1, '+81 70-0701-9746', 1, '713738057267152316', '日本ならし学園南三丁目9番9号28階', '1989-06-21', 0, 0, 'prih', '2018-05-26', 'henry506', '2002-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS856610780792', 'Kenneth Reynolds', 0, '+44 5867 364053', 3, '689033251036934424', 'No.42 Main building, 941 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-08-15', 0, 0, 'reynkenneth', '2007-03-15', 'reynoldskenneth', '2014-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS851569443247', '井上大地', 1, '+1 718-838-4961', 2, '841440690322620100', '907 Flatbush Ave Apartment 39, Brooklyn, NY 11225, United States', '1994-04-23', 0, 0, 'daiinoue', '2015-09-21', 'daichi10', '2020-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS513417993803', '戴子异', 0, '+81 52-227-9054', 4, '129765347269093672', '19F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-08-08', 0, 0, 'ziyidai', '2008-01-16', 'daiziyi1213', '2003-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS155323235341', 'Ashley Kim', 0, '+86 769-9984-4034', 0, '563240062564813623', '中国东莞坑美十五巷881号华润大厦39室', '1998-09-22', 0, 0, 'kiashley', '2020-04-20', 'ask', '2004-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS174296820318', '邹睿', 0, '+81 70-9482-0571', 4, '868745337103124695', '22-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-16', 0, 0, 'rui2', '2014-05-11', 'ruizou', '2000-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS479632382441', '小山百花', 0, '+86 10-2148-8394', 2, '931363240644493044', 'No.42 building, 448 Sanlitun Road, Chaoyang District, Beijing, China', '1996-08-05', 0, 0, 'momokakoyama', '2011-08-05', 'momokakoyam71', '2018-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS818014868563', '平野葵', 0, '+86 197-4129-3940', 1, '788314256650382625', '中国成都市成华区二仙桥东三路752号华润大厦19室', '1998-10-07', 0, 0, 'hiraoi00', '2002-03-26', 'hirano1940', '2014-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS985971236722', '今井百花', 1, '+44 5763 186537', 1, '347589906340224999', 'No.26 Main building, 342 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1995-07-10', 0, 0, 'imaimomoka1989', '2018-09-22', 'imamom1', '2008-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS914174973277', 'Miguel Howard', 1, '+86 181-7004-5383', 2, '172099054092612854', '中国中山紫马岭商圈中山五路105号28楼', '1987-02-16', 0, 0, 'mihoward', '2004-01-23', 'mihowa6', '2017-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS231947390127', '高家玲', 1, '+81 80-3828-7500', 3, '879109874023225557', '20F, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1993-06-06', 0, 0, 'kakaling', '2016-10-05', 'kkl63', '2010-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS375289317233', '梁慧嫻', 0, '+86 755-3281-7695', 2, '276479685568024142', '中国深圳福田区深南大道215号19室', '1990-01-20', 0, 0, 'waihan70', '2010-06-02', 'whl1001', '2012-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS571718560937', '鈴木光', 1, '+81 66-339-7389', 0, '254121837402049560', '40-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1990-06-27', 0, 0, 'hikarsu', '2019-03-07', 'hsuzu', '2008-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS454438247595', '吕詩涵', 1, '+81 70-5763-5297', 4, '574982973390175374', '日本なごやし北区清水三丁目19番16号47号室', '1995-09-17', 0, 0, 'shihan8', '2005-02-23', 'lus', '2008-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS044302035080', '罗安琪', 0, '+81 66-112-1885', 1, '343824136908947276', '日本おおさかし西成区出城一丁目1番12号45階', '1997-06-27', 0, 0, 'anqluo', '2011-10-24', 'aluo', '2017-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS973257884044', 'Joan Barnes', 0, '+86 176-4073-3836', 2, '271478155904223180', '中国广州市越秀区中山二路235号40楼', '1987-08-30', 0, 0, 'bajo', '2014-02-03', 'joabarn52', '2020-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS923825694136', '胡俊宇', 1, '+86 10-3755-7610', 0, '765577137065797738', '中国北京市東城区東直門內大街683号华润大厦14室', '1989-02-10', 0, 0, 'wuchunyu', '2014-04-19', 'chunyu412', '2012-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS950203746008', '罗晓明', 0, '+86 755-109-4902', 4, '802374336617471945', 'Room 39, 125 Shennan Ave, Futian District, Shenzhen, China', '1999-01-19', 0, 0, 'lxiaoming', '2007-01-05', 'luxiaom3', '2008-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS864369787101', '市川紗良', 0, '+86 189-8163-0168', 2, '208950130345646240', 'Room 5, CR Building, 76 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-08-12', 0, 0, 'saraichik9', '2011-06-24', 'ichiksara1982', '2000-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS554623696780', '丁安琪', 0, '+44 (116) 343 2655', 0, '719986266853563142', 'Flat 2, 207 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-11-07', 0, 0, 'ding503', '2002-09-05', 'dinganq626', '2007-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS107855498445', 'Pauline Gonzales', 1, '+86 769-015-6738', 1, '973861887925409220', 'Room 26, CR Building, 623 Shanhu Rd, Dongguan, China', '1994-09-14', 0, 0, 'pauline1120', '2010-12-07', 'pagonz1215', '2020-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS917280468368', 'Edith Fisher', 0, '+81 66-958-6340', 2, '819378505852484716', '29-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1986-02-15', 0, 0, 'edithfi3', '2007-11-26', 'fisher1010', '2013-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS663766971896', '蘇潤發', 1, '+86 175-2139-8224', 3, '039556689505840687', 'Room 13, 843 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-06-30', 0, 0, 'yunfat331', '2011-07-21', 'yunfatso', '2021-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS721630906559', '蕭小慧', 0, '+1 718-309-5017', 2, '472570483043366242', '380 Columbia St Suite 50, Brooklyn, NY 11231, United States', '1995-06-03', 0, 0, 'siuwai1970', '2012-09-08', 'siu306', '2003-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS212156933556', '任朝偉', 0, '+44 (116) 671 3653', 0, '385519612827046559', 'Flat 13, 26 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-04', 0, 0, 'cwyam', '2015-03-28', 'yamchiuw404', '2005-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS350107209642', '余致远', 1, '+81 66-620-7119', 4, '664859023723532771', '48-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1986-09-07', 0, 0, 'yz112', '2005-10-13', 'yu9', '2001-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS597822426056', '苗慧儀', 1, '+81 70-5594-9149', 4, '613591626737251115', '日本東京千代田区丸の内一丁目6番16号29階', '1991-10-13', 0, 0, 'mwy1227', '2004-03-23', 'waiyeemiu8', '2009-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS114047337949', 'Harry Moreno', 1, '+1 838-450-3250', 2, '375128705890290953', '742 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1991-01-20', 0, 0, 'harrymoreno', '2017-01-08', 'harrymoreno929', '2012-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS829046175408', '成國賢', 0, '+86 132-0215-6120', 3, '022329179116360161', '中国北京市延庆区028县道792号14楼', '1997-08-28', 0, 0, 'shingky912', '2010-04-17', 'shiky55', '2017-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS922763676018', 'Hazel Hicks', 1, '+81 70-5687-0727', 2, '680933990743193948', '日本なごやし北区楠味鋺三丁目80番2号25号室', '1990-08-18', 0, 0, 'hihazel', '2021-06-14', 'hicks95', '2017-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS359941372709', 'Jacob Howard', 1, '+81 52-436-5231', 3, '019953327247042061', '日本なごやし北区楠味鋺三丁目80番12号39階', '1998-10-23', 0, 0, 'hjacob', '2014-06-10', 'jahoward', '2005-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS746308181730', '西村一輝', 0, '+81 90-6671-2188', 1, '155391019110754507', '日本札幌白石区菊水三条五丁目2番4号10階', '1992-11-01', 0, 0, 'ikkn', '2021-12-29', 'nishimura59', '2011-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS921611330594', '小島湊', 0, '+44 (1223) 68 3365', 0, '212081189263424589', 'Unit 22, Oxford Eco Centre, 504 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-11-14', 0, 0, 'minato1006', '2019-09-16', 'km93', '2018-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS075479860792', '太田明菜', 1, '+81 90-5671-7177', 3, '641926902782323660', '日本札幌中央区宮の森四条六丁目1番12号48階', '1991-07-06', 0, 0, 'akina70', '2008-12-11', 'akinaot5', '2013-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS608163154202', 'Gregory Murray', 1, '+44 7020 139548', 3, '682021460873434518', 'Block 21, 1 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-01-22', 0, 0, 'gregmurray', '2011-11-07', 'mugrego72', '2012-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS035106648631', '戚詩君', 1, '+81 90-6617-1916', 4, '987940827887826834', '4F, 3-9-13 Gakuenminami, Nara, Japan', '1998-02-14', 0, 0, 'chicsk', '2022-01-25', 'chicszekwan', '2011-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS406704663581', 'Emma Russell', 0, '+44 5240 134054', 1, '063853678896827172', 'Block 35, 951 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-04-08', 0, 0, 'russellemma', '2003-06-25', 'russeemma6', '2007-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS971173770640', '薛宇宁', 1, '+86 130-1019-6391', 1, '095205565389246947', '中国成都市成华区玉双路6号56号华润大厦47室', '1992-02-15', 0, 0, 'xyunin13', '2006-11-28', 'xuey1002', '2001-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS056897659196', 'Rosa Ramirez', 0, '+81 66-643-4599', 1, '076332725174484315', '日本おおさかし平野区加美東四丁目9番14号15号室', '1999-01-23', 0, 0, 'rosaram', '2019-06-06', 'ramirezrosa', '2004-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS223778465648', '太田光莉', 0, '+86 760-8900-5319', 2, '790682729906496887', 'Room 9, 813 Lefeng 6th Rd, Zhongshan, China', '1987-07-08', 0, 0, 'otahikar', '2004-08-18', 'ota422', '2019-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS140448639945', '谷國權', 0, '+1 614-020-4487', 0, '333476451681502714', '342 East Alley Apartment 7, Columbus, GA 43201, United States', '1985-05-23', 0, 0, 'kkk3', '2019-08-05', 'kkwokkuen69', '2000-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS480438586219', '吉田瑛太', 0, '+86 196-8964-6217', 2, '231113347291623902', 'No.40 building, 151 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1992-12-17', 0, 0, 'yoshidaei', '2001-05-13', 'eiyoshida', '2013-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS482997601906', '杜志遠', 0, '+86 10-266-3490', 2, '343236313407374192', 'Room 25, CR Building, 787 Yueliu Rd, Fangshan District, Beijing, China', '1987-07-16', 0, 0, 'cyto903', '2018-01-22', 'chiyuento', '2016-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS100046908481', 'Marcus Stewart', 1, '+86 20-659-4748', 3, '327398888400624749', 'No.43 building, 935 Tianhe Road, Tianhe District, Guangzhou, China', '1993-12-21', 0, 0, 'mastewa', '2010-12-09', 'marcusst', '2007-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS808524655382', '黎安琪', 0, '+86 10-6464-0127', 3, '946268400352774529', '中国北京市西城区复兴门内大街647号17栋', '1990-08-16', 0, 0, 'anqli', '2019-03-16', 'lanqi', '2019-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS854761207022', '萧嘉伦', 1, '+81 80-8829-7032', 2, '296102695985057012', '日本なごやし守山区瀬古東二丁目171番10号47階', '1990-03-24', 0, 0, 'jx6', '2001-09-29', 'xj1122', '2021-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS688024845626', '廖淑怡', 0, '+1 213-999-6816', 3, '902726733028206937', '505 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-12-03', 0, 0, 'syliao', '2002-12-18', 'syli', '2000-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS308487031496', '譚榮發', 1, '+81 3-8021-2469', 1, '683654633898356870', '日本東京渋谷区代々木二丁目3番18号33階', '1988-04-30', 0, 0, 'tam64', '2006-11-05', 'wft1964', '2007-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS319925946551', '區杰倫', 1, '+86 142-0402-7680', 1, '888979087802235603', 'No.45 building, 392 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-11-05', 0, 0, 'chiehlunau', '2008-02-01', 'clau6', '2017-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS464873159395', 'Jerry Crawford', 0, '+86 755-739-4069', 3, '621620910421255667', '8F, 811 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1996-10-07', 0, 0, 'crawfordjerry', '2020-10-09', 'crawfordje', '2017-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS196049454409', 'Chad Garcia', 1, '+1 312-601-8017', 2, '610261533495646855', '72 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1998-05-30', 0, 0, 'garciach2', '2010-07-04', 'garciacha6', '2003-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS646746147742', '青木明菜', 0, '+44 (1223) 85 7106', 2, '415602371034069469', 'Flat 43, 853 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-06-27', 0, 0, 'aokiakina', '2000-11-13', 'aakina', '2015-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS203450882227', '竹内詩乃', 0, '+86 159-7119-4435', 3, '075210960694531651', '38F, 637 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1998-10-31', 0, 0, 'takeuchi4', '2013-08-11', 'takeuchishino', '2018-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS908303168231', 'Lori Coleman', 1, '+81 11-877-5051', 1, '518431783698064756', 'Rm. 36, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-09-30', 0, 0, 'lorcolem127', '2021-10-25', 'coleman1224', '2000-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS339135400572', '橋本美緒', 1, '+44 (1223) 26 9048', 2, '000955895395148844', 'Flat 7, 837 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-23', 0, 0, 'miohashimoto', '2011-02-04', 'miohashimoto9', '2021-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS104804349896', '汪嘉伦', 0, '+86 28-971-1794', 4, '403413766547967787', '中国成都市成华区玉双路6号335号32楼', '1985-09-05', 0, 0, 'jialuwang', '2015-01-14', 'wangji', '2011-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS608730483761', '夏岚', 1, '+1 330-012-5434', 1, '860152532321662412', '507 West Market Street 3rd Floor, Akron, OH 44333, United States', '1986-10-22', 0, 0, 'lanxia', '2001-03-31', 'lax', '2019-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS040346691698', '鈴木凛', 1, '+81 80-9064-0317', 2, '821950056513124882', '日本なごやし瑞穂区河岸町四丁目20番10号33階', '1994-06-29', 0, 0, 'suzukirin301', '2001-04-17', 'rinsuzuki1', '2014-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS631400627889', '梁慧嫻', 0, '+1 312-911-5596', 0, '763265842895461699', '610 North Michigan Ave Apartment 20, Chicago, IL 60611, United States', '1986-11-27', 0, 0, 'leunwh924', '2003-07-31', 'whleung', '2019-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS997042050725', '安藤光莉', 1, '+1 213-225-2837', 2, '692268812774127927', '711 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-10-01', 0, 0, 'andhikari03', '2007-12-13', 'hikariando', '2014-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS809309055057', '罗宇宁', 1, '+86 755-453-0715', 2, '529206372207939619', 'Room 39, CR Building, 941 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-06-02', 0, 0, 'luoyuning', '2002-12-20', 'yuning5', '2012-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS480261421015', '上野湊', 0, '+44 (151) 165 4181', 3, '909683580484145869', 'Unit 25, Oxford Eco Centre, 739 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-04-21', 0, 0, 'minue9', '2021-04-07', 'uem', '2004-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS607044963116', '黃裕玲', 0, '+81 11-622-3318', 3, '089934770401369928', '日本札幌白石区菊水三条五丁目4番12号8階', '1988-03-06', 0, 0, 'yuling75', '2009-09-19', 'ylwong', '2000-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS967737134274', '今井美緒', 0, '+86 197-1618-6870', 0, '154819839794711725', '中国北京市延庆区028县道778号2号楼', '1993-08-13', 0, 0, 'imio', '2004-08-14', 'imai5', '2000-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS582652898097', '小林百花', 0, '+81 70-4562-7414', 3, '180022824465107854', '39-kai, 3-9-3 Gakuenminami, Nara, Japan', '1992-02-25', 0, 0, 'momokako', '2020-11-22', 'momoka10', '2018-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS687404437007', '谭睿', 0, '+86 134-9124-6887', 2, '941066820235160581', '中国上海市徐汇区虹桥路2号25号楼', '1985-04-20', 0, 0, 'rt1', '2009-11-12', 'rutan', '2017-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS739921005040', '田村詩乃', 1, '+86 28-708-3902', 1, '738674782874925907', '中国成都市锦江区红星路三段793号7栋', '1995-06-09', 0, 0, 'shinotamura', '2008-09-02', 'shintam312', '2019-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS805093129638', '山口拓哉', 0, '+86 139-8676-9399', 1, '048675205608734836', '11F, 599 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-12-02', 0, 0, 'takuyayamaguchi', '2008-01-09', 'takuyay', '2016-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS542182271726', 'John Bailey', 0, '+86 186-5829-9424', 0, '353631141464495885', 'Room 10, CR Building, 444 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-11-12', 0, 0, 'baileyjohn1', '2001-12-30', 'bjohn6', '2007-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS724733530071', '袁俊宇', 1, '+44 7994 123403', 0, '006534200386831287', 'No.26 Main building, 54 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-08-28', 0, 0, 'cyyuen', '2013-06-30', 'cyy', '2002-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS361055280596', '蔡致远', 0, '+86 21-7547-1751', 2, '748171236264116025', 'No.7 building, 979 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-10-17', 0, 0, 'zhiyc9', '2016-06-09', 'zhiyuan67', '2001-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS304589999506', '佐藤瑛太', 1, '+44 (161) 472 0451', 3, '479796954566879611', 'Flat 22, 557 Portland St, Manchester, M1 3LA, United Kingdom', '1992-12-21', 0, 0, 'se1986', '2005-10-22', 'satoei1204', '2018-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS031526467544', '大塚葉月', 1, '+81 90-8105-1486', 3, '504250451538517717', '日本東京千代田区丸の内一丁目6番2号7階', '1994-01-25', 0, 0, 'hazotsuka', '2016-08-14', 'otsukhazuk', '2003-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS572521808554', 'Howard Fernandez', 1, '+86 194-3039-7304', 1, '549288914229966990', 'Room 27, CR Building, 385 Kengmei 15th Alley, Dongguan, China', '1992-03-25', 0, 0, 'fernandezho17', '2016-07-06', 'fhoward', '2002-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS509037330000', '姜榮發', 1, '+1 312-594-7983', 1, '857138957382001234', '8 Pedway Apartment 21, Chicago, IL 60601, United States', '1997-01-27', 0, 0, 'wingfatcha4', '2016-04-21', 'wfchang', '2003-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS511285490104', '藤學友', 0, '+86 20-6016-3752', 4, '574857107023893786', 'No.9 building, 823 Tianhe Road, Tianhe District, Guangzhou, China', '1997-05-06', 0, 0, 'tang7', '2001-01-22', 'tanghokyau903', '2014-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS488185892579', '藤原百恵', 0, '+1 213-754-8399', 4, '492066600383292270', '870 Sky Way Apt 10, Los Angeles, CA 90043, United States', '1991-07-04', 0, 0, 'mfujiwara4', '2002-04-29', 'fujiwaram', '2004-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS633263110478', '蕭梓軒', 0, '+86 181-8950-6730', 3, '287716220238713749', '中国上海市闵行区宾川路159号华润大厦45室', '1990-06-25', 0, 0, 'sith', '2013-04-10', 'siu1', '2002-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS232021814922', '戚志遠', 1, '+44 (20) 9974 6728', 1, '057656901555823850', 'Block 47, 555 Regent Street, London, W1B 2LX, United Kingdom', '1995-11-30', 0, 0, 'chiyuenchic7', '2019-06-08', 'chiyuenchi', '2003-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS961045747206', '古嘉欣', 1, '+1 838-793-9793', 2, '571397693759541976', '157 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1994-07-02', 0, 0, 'karyanku', '2007-04-27', 'ku42', '2007-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS180326719500', 'Amanda Mason', 0, '+44 7188 065865', 2, '899483858085174925', 'No.20 Main building, 431 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-10-29', 0, 0, 'amandmason', '2017-11-14', 'maamand921', '2020-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS639854834076', 'George Foster', 0, '+86 20-8709-7252', 2, '163990950150698267', '中国广州市白云区小坪东路620号36楼', '1985-12-14', 0, 0, 'fostergeorge8', '2007-10-10', 'foster9', '2019-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS003573073901', '汪富城', 0, '+86 10-388-2012', 2, '963337282323044450', '中国北京市东城区东单王府井东街4号30室', '1985-09-29', 0, 0, 'wfs7', '2006-10-19', 'fushiwong217', '2010-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS849199298632', '曾宇宁', 1, '+86 769-333-1572', 0, '666059530809953043', '中国东莞坑美十五巷606号35栋', '1996-02-25', 0, 0, 'yzeng1971', '2021-08-22', 'zyuning', '2016-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS933102640202', '雷家文', 1, '+44 5108 400186', 2, '817070288595314355', 'Unit 48, Oxford Eco Centre, 263 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-07-20', 0, 0, 'kmloui2019', '2021-01-17', 'kamanloui', '2005-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS111743257773', '金云熙', 0, '+44 5486 204108', 1, '167589577245366862', 'No.20 Main building, 71 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-08-28', 0, 0, 'yunxi6', '2013-01-02', 'jinyunxi', '2001-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS990581530701', '渡部葵', 1, '+44 (1223) 96 9967', 0, '195046033945204579', 'No.33 Main building, 663 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-02-11', 0, 0, 'watanabeaoi', '2021-03-05', 'aoiwa1982', '2011-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS259393704765', '斎藤明菜', 1, '+1 213-990-3368', 0, '952539479866273314', '339 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-09-13', 0, 0, 'akina2012', '2014-02-12', 'saakin', '2018-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS260548211359', 'Brenda Cook', 0, '+81 74-291-9027', 3, '189451357531431254', '日本ならし大和郡山市本庄町一丁目1番3号32階', '1987-07-26', 0, 0, 'coobrenda', '2018-11-09', 'cook1008', '2014-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS125986570625', '山田花', 0, '+86 175-8228-7148', 1, '076638511157084493', 'Room 34, CR Building, 444 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-07-05', 0, 0, 'hanayam523', '2001-05-01', 'yamada2012', '2007-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS634306226022', '池田愛梨', 1, '+86 160-7398-9098', 2, '068311621228245867', '中国深圳罗湖区田贝一路733号6室', '1995-04-05', 0, 0, 'ikeda1016', '2020-01-14', 'airiike3', '2019-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS106895266670', '譚慧敏', 0, '+1 718-273-2030', 1, '228759990533053747', '728 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1996-05-21', 0, 0, 'wmt3', '2011-08-17', 'tamwm', '2018-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS646431286617', '岡本美月', 1, '+81 70-1657-1154', 2, '709791134313204966', '日本ならし学園南三丁目9番14号30号室', '1998-02-01', 0, 0, 'okamoto327', '2019-09-14', 'mitsuki225', '2001-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS357131881004', '文德華', 0, '+1 312-937-6577', 4, '114283356044596981', '815 North Michigan Ave Suite 13, Chicago, IL 60611, United States', '1990-08-12', 0, 0, 'takwahm2', '2000-07-15', 'matw2', '2012-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS542348198817', 'Daniel Jackson', 1, '+81 70-0914-5113', 4, '798841783296883199', '日本東京港区東新橋一丁目5番6号28階', '1991-10-14', 0, 0, 'daja', '2012-04-13', 'jacksond', '2004-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS701049288246', '後藤湊', 0, '+86 10-090-6300', 2, '376131570230944344', 'Room 18, CR Building, 288 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-11-21', 0, 0, 'gotomi', '2010-01-01', 'mig9', '2007-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS308638441599', '鐘朝偉', 1, '+44 (121) 211 5929', 0, '690438930409029013', 'No.50 Main building, 774 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1988-12-01', 0, 0, 'chcw', '2012-07-06', 'chungcw930', '2014-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS885425007739', 'Douglas Kelly', 0, '+81 80-5921-4761', 2, '149332434142600344', '24-kai, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-04-03', 0, 0, 'kelly9', '2021-10-28', 'dougkell831', '2003-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS353015921895', '廖安琪', 1, '+86 139-5612-4774', 1, '697952700847608097', '31F, 733 Sanlitun Road, Chaoyang District, Beijing, China', '1989-11-18', 0, 0, 'lia207', '2018-10-27', 'liaoanq', '2018-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS315006606384', '姜頴思', 0, '+1 838-908-2151', 0, '607484536629820920', '975 Lark Street Apartment 30, Albany, NY 12210, United States', '1993-10-24', 0, 0, 'wsc', '2009-01-08', 'wingszec1998', '2016-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS249482298055', '阿部美月', 1, '+86 21-4613-2778', 1, '881757815244310083', '中国上海市浦东新区健祥路842号28楼', '1998-02-03', 0, 0, 'abemit', '2001-02-19', 'abmitsuki', '2005-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS670889424230', 'Pamela Mitchell', 0, '+81 70-8390-5256', 1, '110733302404351847', '33F, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-05-19', 0, 0, 'pmitc', '2004-02-23', 'pamela5', '2013-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS398567739487', '劉富城', 0, '+86 769-8552-9004', 3, '438676906973536526', 'No.24 building, 106 Huanqu South Street 2nd Alley, Dongguan, China', '1985-05-05', 0, 0, 'fushing10', '2010-01-27', 'fushing10', '2008-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS289735018570', '蕭浩然', 1, '+1 213-217-5890', 3, '557478431222521102', '236 S Broadway Apartment 43, Los Angeles, CA 90015, United States', '1995-04-15', 0, 0, 'siuhoyin', '2018-06-27', 'siuhoyin42', '2012-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS673247489342', '武睿', 1, '+81 3-6699-9298', 2, '082281106323966466', '日本東京品川区東五反田五丁目2番7号31階', '1995-02-25', 0, 0, 'rui4', '2002-09-02', 'ruiwu', '2021-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS950650801341', '官永權', 0, '+1 212-671-7177', 3, '462949635954541535', '440 West Houston Street Apt 46, New York, NY 10014, United States', '1990-03-14', 0, 0, 'koon6', '2004-03-18', 'wingkuen89', '2006-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS811040003207', '罗安琪', 1, '+81 90-1517-6374', 2, '746601925221743204', 'Rm. 31, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-10-18', 0, 0, 'luo9', '2008-10-29', 'anqiluo', '2008-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS218617740763', 'Travis Morgan', 1, '+81 80-4412-5250', 4, '547666365899203204', '日本おおさかし東住吉区東田辺三丁目27番20号21号室', '1989-10-21', 0, 0, 'motravi', '2018-06-07', 'morgantravi', '2015-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS205448674936', 'Ryan Herrera', 1, '+1 838-194-3072', 0, '105540479362724225', '218 Central Avenue Apt 14, Albany, NY 12206, United States', '1986-04-23', 0, 0, 'herrryan', '2012-06-21', 'hryan531', '2003-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS076103002010', '容國榮', 0, '+81 90-4454-7978', 2, '056828643934264745', '日本札幌白石区菊水三条五丁目4番14号46号室', '1986-06-25', 0, 0, 'yungkw', '2018-03-25', 'yungkw719', '2008-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS603396487466', '韓思妤', 1, '+81 66-348-5075', 1, '134028816596492092', '31-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1998-01-16', 0, 0, 'syhan1979', '2013-01-26', 'hansy', '2002-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS661132513174', 'Mike Torres', 0, '+81 52-977-9225', 3, '990814573461303429', '日本なごやし瑞穂区河岸町四丁目20番5号49階', '1993-03-25', 0, 0, 'mikt', '2011-02-14', 'mt420', '2012-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS628887474379', 'Arthur Kelley', 0, '+81 70-6877-6354', 3, '213544746670879594', 'Rm. 27, 1-7-17 Omido, Higashiosaka, Osaka, Japan', '1989-10-26', 0, 0, 'arthk', '2009-03-17', 'arkel', '2001-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS558708507961', '田中優奈', 0, '+86 10-1554-5830', 0, '507782186908401055', '中国北京市朝阳区三里屯路638号华润大厦47室', '1990-01-14', 0, 0, 'tayu', '2011-11-27', 'yunatan2', '2007-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS151169460987', '野村舞', 1, '+86 161-4380-4806', 2, '001421133353827477', '中国广州市越秀区中山二路946号2室', '1990-12-09', 0, 0, 'mainomura65', '2014-05-26', 'mainomura', '2004-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS497114409908', '薛俊宇', 1, '+1 718-308-9458', 1, '641448688929234756', '289 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1993-04-22', 0, 0, 'sitcy', '2010-11-08', 'schunyu', '2004-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS002582578411', '福田花', 0, '+81 11-883-0107', 2, '073390008651255862', '日本札幌豊平区豊平三条十三丁目3番10号3号室', '1985-11-22', 0, 0, 'fukudha', '2003-12-30', 'hanafukuda', '2006-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS463908952740', '藤玲玲', 1, '+86 769-8845-8363', 2, '735590482264460406', '中国东莞东泰五街195号28室', '1994-06-24', 0, 0, 'lltang89', '2018-12-06', 'tanglingling12', '2002-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS763874187898', '唐明', 1, '+81 66-179-1236', 2, '948918127025510479', '31-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1992-11-06', 0, 0, 'tmi', '2000-09-04', 'tming', '2011-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS243018906018', '曾宇宁', 0, '+81 80-4577-7638', 2, '631471252277124931', '日本おおさかし近江堂一丁目7番4号29階', '1987-07-09', 0, 0, 'yuningz', '2002-01-29', 'zeny', '2013-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS968561064447', '區志明', 0, '+86 170-1581-2591', 3, '456689927619512754', 'Room 16, CR Building, 914 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-29', 0, 0, 'auch504', '2004-09-26', 'chimingau6', '2009-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS103069242992', 'Edna Jenkins', 1, '+81 70-2238-3509', 1, '208936353176140259', 'Rm. 33, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1991-03-01', 0, 0, 'ednajenkins2', '2008-05-26', 'ednjen10', '2017-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS810712705535', '沈詩涵', 1, '+86 755-7086-2360', 3, '112503959512857476', 'No.21 building, 207 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-01-17', 0, 0, 'sheshihan02', '2005-09-05', 'sshih321', '2011-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS034502706550', '羅明', 0, '+44 (161) 322 9512', 4, '998570062544745253', 'No.25 Main building, 435 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-09-22', 0, 0, 'lomi02', '2020-05-30', 'loming', '2001-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS154788791797', '池田葵', 0, '+1 330-793-3890', 1, '394581104309065520', '512 Riverview Road Apt 24, Akron, OH 44313, United States', '1995-11-26', 0, 0, 'aoiikeda7', '2017-12-15', 'aoii74', '2009-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS711853201764', '關國榮', 1, '+86 184-6395-4988', 1, '339333912418621018', 'Room 44, 684 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-05-30', 0, 0, 'kkwokwing3', '2014-05-02', 'kwkwan1103', '2021-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS914618790723', 'Wendy Kelley', 1, '+44 (1223) 98 1636', 3, '532564386803059134', 'Unit 19, Oxford Eco Centre, 168 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-06-05', 0, 0, 'wk412', '2009-10-14', 'kellwend', '2006-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS276401525559', '高橋花', 1, '+1 213-740-0152', 1, '382439250865582126', '398 Grape Street Apt 27, Los Angeles, CA 90002, United States', '1988-01-13', 0, 0, 'takahashihana', '2021-08-26', 'takahha', '2011-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS600335756813', 'William Crawford', 1, '+81 11-009-0558', 2, '909982748586984504', '日本札幌中央区宮の森四条六丁目1番9号13階', '1998-12-05', 0, 0, 'crawfordw', '2017-02-13', 'cwilliam805', '2003-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS188035250370', 'Eddie Ross', 0, '+81 90-8999-3025', 2, '980505225666726411', '日本札幌豊平区豊平三条十三丁目3番10号39号室', '1990-11-01', 0, 0, 'rosseddie', '2010-08-05', 'eross6', '2022-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS127830072096', '和田玲奈', 1, '+86 28-151-1927', 3, '223151136528725503', '中国成都市成华区二仙桥东三路37号4楼', '1991-09-09', 0, 0, 'rena1998', '2000-04-16', 'ware7', '2017-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS877723972555', '曾梓晴', 0, '+81 74-699-5368', 2, '346749305707314165', '日本ならし大和郡山市本庄町一丁目1番19号18階', '1991-01-18', 0, 0, 'tszching228', '2007-11-13', 'tszching4', '2005-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS293624521219', '田曉彤', 0, '+81 3-6328-0184', 2, '705957988240510514', '日本東京中央区銀座三丁目12番4号2号室', '1991-05-03', 0, 0, 'tinht725', '2007-03-09', 'tihiutung825', '2018-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS872575045934', 'Harry Jordan', 0, '+81 90-7754-2589', 4, '942030255617113761', '日本おおさかし西成区出城一丁目1番17号48階', '1996-03-28', 0, 0, 'jorharry', '2014-08-10', 'hjordan', '2021-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS523767424170', '杉山美月', 0, '+86 150-8941-7988', 3, '729846231697482778', '中国广州市越秀区中山二路136号44栋', '1995-09-24', 0, 0, 'sugiyama1117', '2007-11-30', 'mitsuki8', '2018-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS620898819215', 'Lori Weaver', 1, '+81 52-763-0543', 1, '874440020063891266', '日本なごやし守山区瀬古東二丁目171番3号21階', '1997-06-01', 0, 0, 'loweaver', '2011-03-30', 'weaver2', '2014-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS809174284627', 'Clara Gordon', 1, '+1 718-653-3625', 0, '850640215619473070', '668 1st Ave Apt 41, Brooklyn, NY 11220, United States', '1989-08-20', 0, 0, 'clara44', '2000-07-06', 'gordon87', '2000-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS006926192483', '吕子韬', 0, '+86 760-014-7055', 3, '958978016608979862', 'No.32 building, 426 Lefeng 6th Rd, Zhongshan, China', '1997-01-30', 0, 0, 'zitl', '2007-08-21', 'luzita7', '2021-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS790984913559', '丁璐', 1, '+86 177-2249-3855', 1, '408666694980334137', 'Room 48, CR Building, 856 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-07-14', 0, 0, 'luding1113', '2003-12-29', 'dil', '2000-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS222153110946', 'Wayne Wells', 1, '+86 192-8236-0840', 1, '829384686251370418', 'No.27 building, 403 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-03-05', 0, 0, 'waywells', '2007-05-11', 'wellswa', '2002-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS442604723643', '葉浩然', 0, '+44 7646 446143', 2, '223703422469084030', 'No.42 Main building, 741 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-04-07', 0, 0, 'hoyiny', '2015-07-05', 'yiphy', '2019-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS925832216540', '中山詩乃', 1, '+81 90-6852-5120', 3, '753999788729037703', '日本札幌豊平区豊平三条十三丁目3番18号1階', '1998-03-02', 0, 0, 'shino9', '2016-02-18', 'nashino', '2018-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS531232536785', '福田七海', 1, '+86 158-1870-7693', 2, '647233185530816163', '中国深圳龙岗区布吉镇西环路506号华润大厦8室', '1987-09-01', 0, 0, 'fukudanana3', '2019-12-31', 'fnanami04', '2017-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS199539007940', 'Kelly Wallace', 1, '+86 153-8968-7743', 2, '915096804387682009', 'Room 32, 402 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-06-22', 0, 0, 'wallace109', '2004-07-04', 'wallace522', '2019-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS163914190341', '夏岚', 1, '+1 330-824-4719', 2, '884362873206992399', '554 Ridgewood Road Apartment 6, Akron, OH 44321, United States', '1995-08-04', 0, 0, 'xial', '2018-08-20', 'lanxia10', '2018-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS679517298721', 'Theodore Lee', 1, '+86 755-5226-0500', 1, '911622401761980089', '中国深圳龙岗区布吉镇西环路432号13楼', '1995-02-27', 0, 0, 'letheodore4', '2000-10-28', 'theodore64', '2017-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS855239328357', '房永發', 1, '+44 5076 663892', 1, '930824909304062697', 'Unit 48, Oxford Eco Centre, 568 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-04-14', 0, 0, 'fongwi', '2019-08-27', 'wingffon', '2006-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS547603858939', '王曉彤', 1, '+86 192-8134-0443', 4, '834771030311926302', '中国上海市浦东新区橄榄路822号13栋', '1985-07-29', 0, 0, 'wong03', '2012-04-22', 'htwong', '2009-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS267348879484', '呂學友', 0, '+86 196-8670-8647', 4, '836829982351907694', '中国东莞东泰五街375号25栋', '1994-12-10', 0, 0, 'luihokyau', '2012-12-17', 'hokyau707', '2000-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS818068850402', '中島悠人', 0, '+44 7967 472699', 1, '323807926596517197', 'Flat 22, 70 Pollen Street, London, W1S 1NG, United Kingdom', '1990-09-21', 0, 0, 'yuton', '2004-03-10', 'yutnak', '2002-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS808206939943', 'Kevin Sanders', 0, '+1 614-675-3004', 0, '991580868577258771', '756 Diplomacy Drive Apt 31, Columbus, GA 43228, United States', '1993-09-05', 0, 0, 'kevin1984', '2006-08-21', 'kevinsanders', '2005-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS404642107453', 'Joan Patel', 1, '+1 330-616-8001', 3, '806623606528087388', '784 West Market Street 3rd Floor, Akron, OH 44333, United States', '1992-01-13', 0, 0, 'pateljoan', '2013-10-30', 'joapa8', '2016-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS077666167423', '邵小慧', 1, '+44 (161) 324 6219', 0, '816592831569746181', 'Block 50, 999 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-08', 0, 0, 'ssw', '2022-01-21', 'siusiu', '2020-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS271159826001', '戴慧儀', 0, '+81 80-0281-2495', 1, '154843426955661312', '日本東京中央区銀座三丁目12番20号10階', '1986-08-29', 0, 0, 'daiwy', '2014-02-08', 'daiwaiyee', '2000-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS728412932590', '周致远', 1, '+44 (121) 895 5015', 3, '111372732200982105', 'Block 16, 370 New Street, Birmingham, B2 4DB, United Kingdom', '1995-09-20', 0, 0, 'zzhiy', '2013-07-10', 'zhouzhiyuan830', '2002-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS417230039974', '孙晓明', 0, '+86 161-6212-4909', 2, '361470559381803155', 'No.10 building, 100 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-04-08', 0, 0, 'xiaoming6', '2003-09-11', 'xiaosu', '2000-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS381385482731', 'Frederick James', 0, '+81 90-5356-0054', 3, '048429718410760106', '日本おおさかし平野区加美東四丁目9番14号31階', '1990-03-20', 0, 0, 'frederick708', '2005-09-25', 'frjames', '2018-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS801446519561', 'Clarence Young', 0, '+44 (116) 999 4368', 0, '706970972809603267', 'No.40 Main building, 803 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-07-22', 0, 0, 'youngclare1231', '2015-09-04', 'clayoung2018', '2018-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS201157289224', 'Timothy Black', 1, '+81 11-142-3291', 2, '443919892284569540', '35-kai, 13-3-8 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1985-03-11', 0, 0, 'tblack3', '2015-04-19', 'bltimothy', '2005-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS772128608695', '高木陽菜', 1, '+81 90-2494-7586', 2, '961803286756857335', '18F, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-10-08', 0, 0, 'takagihina', '2014-11-04', 'hitakagi1012', '2004-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS195770014184', '福田和真', 0, '+86 177-0800-7692', 3, '630769074851940651', '中国中山紫马岭商圈中山五路242号6号楼', '1994-05-04', 0, 0, 'fukuda2', '2016-11-19', 'kazumafukuda1', '2013-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS572918662914', 'Jonathan Flores', 1, '+81 70-9937-5994', 2, '676829331439498682', 'Rm. 1, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1989-05-04', 0, 0, 'jonathan1004', '2020-04-12', 'floresjo', '2003-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS810180662936', '余子异', 0, '+44 (151) 407 5408', 1, '433657637920693071', 'Block 37, 686 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-04-08', 0, 0, 'yuziyi', '2014-12-23', 'zy10', '2006-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS170068488190', '韦詩涵', 1, '+81 11-973-1055', 2, '571959021922592573', '日本札幌白石区菊水三条五丁目2番16号18階', '1993-09-16', 0, 0, 'wshi', '2016-09-28', 'shihwe', '2018-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS152454969650', '曹小慧', 1, '+81 11-939-9023', 2, '043876990984359062', '22F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-05-22', 0, 0, 'swcho93', '2022-01-20', 'siuwaicho', '2016-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS846667525508', 'Rhonda Murphy', 1, '+81 66-679-6743', 1, '504809392053064506', '日本おおさかし近江堂一丁目7番9号23階', '1998-10-18', 0, 0, 'murhonda', '2012-03-30', 'murpr9', '2005-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS579900221342', '邓子韬', 1, '+86 146-8244-6437', 1, '100788700523722939', 'No.10 building, 142 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-08-02', 0, 0, 'zitao4', '2022-02-23', 'deng5', '2014-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS703572123614', '徐杰宏', 0, '+81 90-9600-6017', 1, '267479667637343297', '日本ならし西大寺赤田町一丁目7番7号3号室', '1998-10-05', 0, 0, 'xjieho', '2010-03-25', 'xujiehong', '2014-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS661209670300', 'Jonathan Burns', 0, '+1 312-566-7668', 0, '748088487650723417', '252 Rush Street Apt 17, Chicago, IL 60611, United States', '1997-07-22', 0, 0, 'jburn', '2002-08-31', 'jbur', '2016-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS555094204779', '李詠詩', 0, '+81 70-8994-0454', 3, '287760123475417429', '日本ならし学園南三丁目9番19号19階', '1996-06-19', 0, 0, 'wsl', '2009-05-01', 'wsle6', '2020-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS532395336213', '胡國賢', 0, '+81 90-2064-3886', 1, '546205084763658571', '日本おおさかし西成区天神ノ森二丁目1番15号10階', '1985-05-27', 0, 0, 'kwokyin7', '2012-10-13', 'wuky1212', '2017-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS073373931065', '戴思妤', 0, '+86 183-9760-2593', 2, '817303355963995270', '46F, 419 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-10-20', 0, 0, 'dasz', '2022-01-13', 'daiszeyu', '2002-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS716513857330', '有村大地', 0, '+44 (20) 2500 3482', 1, '946751920797499458', 'Block 36, 339 Pollen Street, London, W1S 1NG, United Kingdom', '1989-08-31', 0, 0, 'daichiarimura', '2019-04-13', 'arimura203', '2019-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS955167094813', 'Theodore Turner', 1, '+81 66-663-1402', 4, '217361902014031046', '日本おおさかし近江堂一丁目7番4号44号室', '1991-05-04', 0, 0, 'theturner62', '2018-03-04', 'tut1', '2022-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS403534492523', '加藤美緒', 0, '+81 11-252-4935', 4, '979037722410334929', '27F, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-02-09', 0, 0, 'mioka', '2016-12-10', 'mkato710', '2010-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS344144588050', '井上花', 1, '+81 70-4591-3695', 4, '299068984259612243', 'Rm. 44, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-07-26', 0, 0, 'inhana', '2015-04-24', 'ih819', '2004-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS494119497267', '渡辺海斗', 1, '+86 769-0722-6058', 4, '602172616436471554', 'No.2 building, 120 Dongtai 5th St, Dongguan, China', '1985-12-25', 0, 0, 'sato44', '2014-01-10', 'kaitosato', '2007-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS903420035241', '樂慧敏', 0, '+86 170-8568-7716', 1, '861901408018718846', 'Room 39, CR Building, 33 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-03-01', 0, 0, 'wmlok', '2011-07-28', 'waimanlok', '2008-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS867325358795', '高橋明菜', 1, '+44 (116) 349 3596', 0, '078685182037108893', 'No.10 Main building, 962 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-06-12', 0, 0, 'taakin520', '2009-02-15', 'akinta3', '2010-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS091984813759', '高子异', 1, '+81 74-415-6036', 3, '413174272783549325', '日本ならし大和郡山市本庄町一丁目1番17号47階', '1991-06-25', 0, 0, 'gao10', '2006-10-14', 'ziyiga', '2002-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS024194994455', '原田明菜', 0, '+86 10-885-8416', 2, '705150864554260009', 'Room 35, CR Building, 905 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-07-22', 0, 0, 'ha1222', '2014-12-02', 'akina96', '2009-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS441676960610', '龙杰宏', 1, '+81 70-9037-8736', 4, '538243595697884707', '36-kai, 3-27-1 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-10-19', 0, 0, 'longjieh2', '2003-09-01', 'jiehong719', '2021-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS640548422770', '藤原聖子', 0, '+44 7251 226998', 2, '093159321661910113', 'Unit 10, Oxford Eco Centre, 146 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1985-09-20', 0, 0, 'sfujiwara', '2014-09-13', 'seikofu', '2006-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS266239361963', 'Laura Watson', 0, '+81 11-084-0377', 4, '762061891034637893', '日本札幌豊平区豊平三条十三丁目3番8号47号室', '1994-04-17', 0, 0, 'watsla', '2016-11-08', 'walaura74', '2019-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS434865516398', '武宇宁', 0, '+1 213-804-0893', 0, '376297340235012926', '550 Wall Street Apartment 15, Los Angeles, CA 90003, United States', '1989-05-07', 0, 0, 'yuningwu16', '2013-08-04', 'wuyuning', '2003-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS766244729359', '馬淑怡', 0, '+44 (121) 942 2210', 0, '858814125324163727', 'Flat 8, 108 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-10-21', 0, 0, 'sukyeema', '2000-07-08', 'sukyeema', '2008-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS300163281872', 'Louis Henderson', 1, '+86 755-290-6012', 3, '054081142642306253', '中国深圳龙岗区布吉镇西环路163号华润大厦42室', '1997-12-03', 0, 0, 'louis1995', '2011-12-03', 'henderson5', '2012-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS384045980993', '周德華', 1, '+1 213-810-2630', 0, '680329041414846375', '296 Figueroa Street Apartment 26, Los Angeles, CA 90037, United States', '1992-06-11', 0, 0, 'tachow', '2021-12-22', 'takwah20', '2012-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS888996444267', '崔頴璇', 0, '+1 213-027-8894', 0, '624080850969324063', '934 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-11-06', 0, 0, 'wingsuenchoi918', '2014-12-01', 'wingsuenc', '2006-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS829860620720', 'Shirley Anderson', 0, '+86 155-4300-5404', 1, '234674531799225578', 'No.9 building, 201 Shennan Ave, Futian District, Shenzhen, China', '1994-05-18', 0, 0, 'andeshirl', '2000-08-26', 'shirleyanderson', '2021-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS859454612498', '任仲賢', 0, '+1 212-972-3876', 4, '783324606608174484', '637 Bank Street Apt 11, New York, NY 10014, United States', '1985-09-22', 0, 0, 'yamcy220', '2003-03-09', 'chungyinyam', '2005-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS143293758710', '顾震南', 0, '+44 (121) 680 0522', 0, '436285066009477056', 'Flat 41, 95 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-07-31', 0, 0, 'guzhennan3', '2000-11-23', 'zhennan15', '2010-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS593549289526', '柴田凛', 1, '+86 169-3395-6643', 2, '477612818368521064', '中国北京市房山区岳琉路786号37室', '1993-08-21', 0, 0, 'shibatarin61', '2008-05-28', 'shibarin8', '2013-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS378495892175', '石田陸', 0, '+86 21-3605-8287', 2, '455473320069124477', '32F, 930 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-09-10', 0, 0, 'rikish', '2004-03-25', 'riku6', '2001-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS164356957000', '杜霆鋒', 1, '+81 70-6242-3073', 1, '302225840408697610', '日本おおさかし西成区天神ノ森二丁目1番12号32階', '1997-09-14', 0, 0, 'totf', '2013-08-08', 'tingfungto', '2008-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS744446545235', '河野光', 1, '+86 191-8176-9262', 3, '102230118759535683', 'No.41 building, 984 Lefeng 6th Rd, Zhongshan, China', '1991-02-10', 0, 0, 'konohikaru', '2021-08-09', 'hikaru2', '2018-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS445559427520', 'Lee Ward', 1, '+81 80-6696-3226', 1, '230082137853637555', '36-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-02-01', 0, 0, 'walee', '2011-01-12', 'wardlee', '2012-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS135170045786', '林舞', 0, '+81 3-3122-3848', 1, '075653828248377474', '日本東京港区東新橋一丁目5番5号36階', '1993-07-14', 0, 0, 'maihay', '2004-11-03', 'mha67', '2015-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS678804001273', '中島樹', 1, '+86 21-813-7753', 3, '650630640547842522', 'No.13 building, 135 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-02-10', 0, 0, 'itsukinakajima', '2016-08-11', 'itsuki706', '2012-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS214850995171', '陶秀英', 0, '+86 146-9829-0032', 0, '938326445192888067', 'Room 3, CR Building, 684 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-12-25', 0, 0, 'xiuyit1101', '2019-12-20', 'taoxiuying', '2017-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS440157439817', '木下結翔', 0, '+1 838-008-5538', 2, '684174285723781203', '600 Lark Street 3rd Floor, Albany, NY 12210, United States', '1989-03-26', 0, 0, 'yuitkinoshita60', '2007-09-24', 'yuitokinoshita97', '2020-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS613770935787', '市川玲奈', 1, '+1 213-640-4769', 2, '675190689457794363', '716 S Broadway Apt 13, Los Angeles, CA 90015, United States', '1987-03-19', 0, 0, 'rena1204', '2001-05-05', 'ichikawa520', '2014-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS122461082186', '石井彩乃', 0, '+86 10-176-2913', 2, '056109873766378231', '中国北京市房山区岳琉路70号34号楼', '1988-05-23', 0, 0, 'ishii330', '2010-01-08', 'ayanoishii', '2010-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS356270519572', 'Alfred Spencer', 1, '+81 3-8243-0667', 2, '024960213066307690', '日本東京渋谷区代々木二丁目3番10号32号室', '1987-07-31', 0, 0, 'alfs', '2017-12-07', 'alfredsp', '2004-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS537290928807', 'Kelly Diaz', 1, '+86 169-2056-3579', 0, '554250044353787610', 'Room 48, 703 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-01-13', 0, 0, 'dik51', '2009-08-12', 'kdiaz1992', '2004-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS862071713016', 'Diana Stewart', 1, '+44 (1865) 11 5959', 3, '812136903837592721', 'No.2 Main building, 747 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-12-30', 0, 0, 'stewadiana41', '2013-01-10', 'stewart4', '2004-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS068245554243', '邵梓晴', 1, '+81 52-173-1502', 2, '106739215094001366', '日本なごやし瑞穂区河岸町四丁目20番13号5階', '1997-08-12', 0, 0, 'sts6', '2005-12-31', 'tcs1119', '2015-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS509788083124', '汪震南', 0, '+1 718-304-4690', 1, '660908343873747452', '166 1st Ave Suite 15, Brooklyn, NY 11220, United States', '1988-03-12', 0, 0, 'wangzhennan9', '2019-04-20', 'wangzhe', '2001-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS564900980484', 'Kimberly Ferguson', 1, '+86 148-9242-4170', 2, '042426319295896322', '中国深圳罗湖区清水河一路383号14栋', '1988-11-02', 0, 0, 'kimberlyfe76', '2002-01-18', 'kimberlyferg', '2009-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS248490701218', '元家輝', 1, '+86 182-9842-0505', 2, '397333703519537270', 'Room 44, CR Building, 22 Shanhu Rd, Dongguan, China', '1991-05-06', 0, 0, 'yuen6', '2020-02-22', 'ykf618', '2006-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS025739869681', '邱安琪', 1, '+86 132-1802-3874', 1, '572924922078607264', '中国深圳龙岗区学园一巷923号28栋', '1995-09-19', 0, 0, 'onkayyau', '2003-05-11', 'onkayya', '2020-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS625181495038', '陆詩涵', 1, '+81 3-5352-7133', 2, '195203419017031386', '30F, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1989-01-06', 0, 0, 'shihan42', '2002-03-23', 'shihan7', '2000-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS917127226239', 'Laura Mason', 1, '+86 167-6443-3924', 2, '596827280182846225', '中国上海市浦东新区健祥路16号华润大厦45室', '1987-06-04', 0, 0, 'laura52', '2000-04-25', 'masonlaura1212', '2016-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS499822272524', '鄺安琪', 0, '+81 74-567-7664', 4, '293374820105374013', '11-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1990-06-15', 0, 0, 'onkay74', '2011-08-31', 'kwong6', '2013-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS871973429114', 'Antonio Williams', 1, '+86 755-776-2539', 3, '830749383327121587', 'Room 1, 904 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-01-31', 0, 0, 'williamsantonio520', '2017-01-02', 'aw2000', '2012-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS190573365018', '今井悠人', 1, '+81 90-9552-0509', 2, '304614322346868709', '日本なごやし守山区瀬古東二丁目171番14号34階', '1997-07-13', 0, 0, 'iyuto10', '2004-07-03', 'iyuto18', '2002-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS925524321069', '韦岚', 0, '+44 (20) 3215 0422', 3, '606616718616470696', 'No.8 Main building, 955 Maddox Street, London, W1S 1PU, United Kingdom', '1993-02-01', 0, 0, 'lan6', '2012-02-02', 'lawei', '2001-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS829347880584', '方睿', 1, '+81 3-2414-6417', 4, '283262209259186407', '46-kai, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-11-28', 0, 0, 'ruifa', '2010-11-11', 'fangrui', '2000-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS453186280167', '伍安娜', 0, '+81 80-4891-4013', 3, '852321081845023960', 'Rm. 38, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-03-10', 0, 0, 'ngon', '2011-04-03', 'onng1129', '2006-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS017479642387', '翁惠敏', 1, '+1 312-018-5370', 0, '128560351944962354', '564 North Michigan Ave Apartment 1, Chicago, IL 60611, United States', '1996-12-11', 0, 0, 'yungwm78', '2003-11-28', 'yuwai', '2003-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS770511323959', '孫安娜', 1, '+86 143-2729-5133', 3, '833287802011497966', 'Room 20, CR Building, 805 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-11-20', 0, 0, 'hsuanon3', '2005-12-13', 'onnah', '2011-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS914867111963', '韓秀文', 0, '+86 130-8924-8048', 0, '131349794980767817', '中国北京市海淀区清河中街68号190号5号楼', '1999-01-19', 0, 0, 'hansm', '2014-05-26', 'sauman5', '2012-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS375259605208', 'Jimmy Kelly', 1, '+86 178-0077-6003', 3, '429261712230048589', '中国广州市白云区小坪东路293号44楼', '1997-06-21', 0, 0, 'jimmyk610', '2009-03-31', 'kelly8', '2004-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS594584448706', '孔杰宏', 0, '+81 70-5488-7000', 0, '907403581481308159', '23-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-08-08', 0, 0, 'kong406', '2001-12-30', 'jik74', '2017-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS524234733012', '岡田葉月', 0, '+44 7016 700074', 2, '889327893276181946', 'Flat 40, 198 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-07-12', 0, 0, 'okadahaz1119', '2000-06-17', 'hazukiokada3', '2007-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS137326672713', '邱梓軒', 0, '+86 755-9108-7439', 1, '718310976496037611', '中国深圳龙岗区布吉镇西环路150号30栋', '1998-10-30', 0, 0, 'yautszhin', '2007-11-15', 'thya', '2003-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS335124878523', 'Herbert Brown', 1, '+44 (1223) 56 8286', 0, '084266779826637898', 'No.36 Main building, 328 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-06-18', 0, 0, 'herbertb', '2009-05-17', 'hbro', '2010-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS669696915785', '曹裕玲', 0, '+81 66-428-9680', 1, '374395681073593139', '17-kai, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-08-07', 0, 0, 'choyuling', '2021-01-04', 'yuling2', '2006-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS453605116683', 'Diane Coleman', 1, '+44 (1865) 81 5833', 2, '122194344907754451', 'Block 50, 930 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-09-24', 0, 0, 'dianecoleman', '2011-09-17', 'cdiane', '2019-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS722304857941', '熊云熙', 1, '+1 614-770-3581', 1, '021245919719924189', '236 East Alley 3rd Floor, Columbus, GA 43201, United States', '1986-02-14', 0, 0, 'xionyu', '2012-10-31', 'xyunxi', '2010-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS294190241377', 'Carmen Baker', 1, '+86 180-8653-4604', 3, '313609067196142306', '中国广州市越秀区中山二路343号华润大厦13室', '1986-08-09', 0, 0, 'carbake506', '2002-02-23', 'bakerc', '2015-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS354961468533', '馬國明', 1, '+81 11-687-6522', 1, '001146550342667489', '39F, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-08-31', 0, 0, 'makwokming', '2018-02-27', 'ma6', '2015-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS055658493319', '高田光莉', 0, '+81 70-5015-0321', 0, '463055864624265723', '49-kai, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-10-29', 0, 0, 'th5', '2010-08-19', 'hikari10', '2008-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS791422136897', 'Mike Brown', 0, '+86 191-9015-8888', 0, '336147025647870877', 'Room 29, CR Building, 995 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1985-03-07', 0, 0, 'mikebro', '2006-11-02', 'mikbrown', '2004-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS417989654060', '吉田拓哉', 1, '+1 330-975-9617', 3, '035481335918455923', '841 West Market Street Apt 17, Akron, OH 44333, United States', '1996-10-06', 0, 0, 'yoshidata', '2016-03-14', 'yoshida6', '2017-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS002136533960', '邵秀英', 1, '+81 70-6448-0261', 0, '162149970168388886', '日本ならし大和郡山市本庄町一丁目1番15号28号室', '1988-07-10', 0, 0, 'xiuying8', '2007-09-18', 'shao618', '2020-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS550600271558', '中川聖子', 0, '+81 80-6550-3149', 1, '043352327970122891', 'Rm. 6, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-03-31', 0, 0, 'nakseiko17', '2016-07-25', 'seina', '2018-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS758389440962', 'Matthew Woods', 0, '+86 182-0127-5664', 2, '770603334063176941', '中国中山紫马岭商圈中山五路145号6号楼', '1996-04-19', 0, 0, 'matthew1027', '2008-05-15', 'mw7', '2011-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS983915462313', '岩崎玲奈', 0, '+86 171-4812-7144', 1, '770752455521087260', '中国深圳福田区景田东一街155号华润大厦47室', '1986-07-20', 0, 0, 'renaiwasaki', '2011-07-05', 'renaiwas10', '2005-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS238166088135', '戴詩涵', 0, '+81 70-9358-1862', 4, '638942724236796987', 'Rm. 25, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-11-25', 0, 0, 'dais', '2012-02-18', 'dai1954', '2004-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS604275308384', '何詠詩', 0, '+86 181-7765-4110', 1, '273175762773094422', '中国深圳福田区深南大道145号13号楼', '1988-03-21', 0, 0, 'howingsze', '2001-03-27', 'ho1', '2011-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS899081928818', '高木光莉', 0, '+86 10-598-9660', 1, '628917315507496910', 'No.45 building, 965 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-03-13', 0, 0, 'takhika', '2015-05-05', 'takaghi', '2017-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS230729001001', 'Norma Hernandez', 1, '+86 168-6722-4514', 3, '542636751826628580', 'Room 35, CR Building, 792 Lefeng 6th Rd, Zhongshan, China', '1990-07-10', 0, 0, 'normah', '2010-12-07', 'hernandez9', '2018-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS117321444135', 'Raymond Reyes', 1, '+81 80-1339-6022', 2, '768735447509248076', '日本東京千代田区丸の内一丁目6番17号17号室', '1989-05-23', 0, 0, 'reyraymo', '2001-10-07', 'reyraymond', '2011-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS760656235396', 'Pamela Griffin', 0, '+81 52-430-5950', 1, '608748317436609813', '日本なごやし北区楠味鋺三丁目80番11号29階', '1988-04-25', 0, 0, 'pamelagriff', '2015-01-10', 'grp', '2010-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS463499152053', '邵晓明', 0, '+86 178-4333-6074', 2, '572980951118623090', '中国深圳福田区深南大道48号6室', '1992-06-07', 0, 0, 'xiaomingshao', '2021-07-23', 'xiaoming13', '2017-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS364450207477', '胡璐', 0, '+86 160-2736-8528', 4, '743234178025207320', '中国广州市海珠区江南西路111号25室', '1990-07-22', 0, 0, 'hulu', '2000-01-08', 'hu608', '2017-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS369520692207', '方子异', 0, '+81 74-879-2942', 0, '297367671432778732', '日本ならし西大寺赤田町一丁目7番5号13階', '1991-01-11', 0, 0, 'ziyfang', '2013-01-08', 'ziyifang', '2016-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS904687500116', '苑浩然', 0, '+81 80-8504-6960', 2, '363045270670164317', '日本東京品川区東五反田五丁目2番1号19号室', '1989-05-26', 0, 0, 'hyyuen911', '2013-03-16', 'hoyin7', '2000-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS079500579794', '常岚', 0, '+81 80-5538-7882', 2, '632982965641685091', '日本札幌白石区菊水三条五丁目2番12号7階', '1987-09-28', 0, 0, 'cla', '2013-09-07', 'changlan', '2012-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS543158641602', 'Kyle Ferguson', 0, '+81 3-2202-0955', 0, '856137139943688215', 'Rm. 50, 1-6-5, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-04', 0, 0, 'kyle9', '2020-08-05', 'ferkyle', '2000-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS255955027983', '姚家強', 0, '+1 213-513-7908', 4, '779442528944673000', '365 Figueroa Street Apartment 41, Los Angeles, CA 90037, United States', '1997-07-26', 0, 0, 'kkye817', '2008-11-21', 'yeokk', '2001-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS227634251037', '邱安琪', 0, '+86 20-2822-1101', 0, '088417779966207046', '中国广州市白云区小坪东路805号6号楼', '1994-07-04', 0, 0, 'qiuanq', '2022-02-14', 'anqiqiu9', '2017-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS997785161712', '曹霆鋒', 1, '+1 614-965-4691', 3, '887468828105657454', '715 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-03-01', 0, 0, 'chotf', '2000-01-19', 'tfcho', '2000-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS925168430159', 'Irene Palmer', 0, '+44 (20) 3996 3623', 3, '586352451223625672', 'Flat 28, 772 Pollen Street, London, W1S 1NG, United Kingdom', '1987-12-30', 0, 0, 'pirene', '2014-01-30', 'palmerirene86', '2005-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS252517129919', 'Ashley Dunn', 1, '+81 90-1504-2095', 2, '285645307805572567', 'Rm. 12, 2-1-5 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-03-19', 0, 0, 'dunnashley', '2016-03-20', 'dunn13', '2007-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS638122632183', '范致远', 1, '+86 10-5348-3972', 0, '045316891836027661', 'Room 19, CR Building, 536 028 County Rd, Yanqing District, Beijing, China', '1990-06-17', 0, 0, 'fzhiy', '2008-09-08', 'zhiyfan504', '2006-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS841067263378', '范杰宏', 0, '+86 192-6662-2787', 1, '993317778385625266', 'Room 10, CR Building, 781 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-10-22', 0, 0, 'fanjiehong', '2016-05-12', 'fanj8', '2002-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS466025771654', '任榮發', 1, '+86 133-3626-3895', 0, '821762937030330276', '中国东莞珊瑚路442号华润大厦31室', '1997-03-16', 0, 0, 'wingfatya', '2019-04-28', 'wiy', '2015-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS011112134883', '宣志明', 1, '+81 90-3778-1249', 2, '245188111675771068', '日本札幌白石区菊水三条五丁目2番13号41号室', '1998-09-12', 0, 0, 'chimingh', '2012-11-29', 'hcm4', '2020-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS418180317090', '菊地陽太', 0, '+1 838-845-0714', 2, '498000859105569916', '73 State Street Suite 48, Albany, NY 12203, United States', '1996-08-13', 0, 0, 'kyota', '2008-09-07', 'kikuyota', '2011-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS624143330233', '朱致远', 1, '+81 80-0368-7346', 4, '667852746611279421', '日本おおさかし東住吉区東田辺三丁目27番3号2階', '1992-06-01', 0, 0, 'zzh', '2016-04-06', 'zhuzhiyuan18', '2014-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS673085957895', '石井凛', 0, '+81 90-1666-6860', 3, '193278788351948861', '日本なごやし守山区瀬古東二丁目171番9号22階', '1992-01-17', 0, 0, 'rishii', '2007-05-19', 'ishiirin', '2009-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS483617466074', '鈴木玲奈', 0, '+81 11-515-6132', 1, '474879880251546014', 'Rm. 22, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-06-06', 0, 0, 'renasuzuki', '2005-01-26', 'suzukirena', '2018-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS210023221104', '千葉明菜', 0, '+44 7950 275977', 1, '655343043002788879', 'Block 50, 727 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-06-20', 0, 0, 'akina46', '2006-06-16', 'chakin', '2006-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS730479397017', 'Harold Rogers', 1, '+1 330-136-4109', 1, '677672921893056637', '587 West Market Street Apt 37, Akron, OH 44333, United States', '1994-02-18', 0, 0, 'harogers', '2007-08-06', 'rharol9', '2007-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS846481762696', '斉藤架純', 1, '+44 7183 575989', 1, '762372919268648287', 'Unit 48, Oxford Eco Centre, 494 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1985-10-19', 0, 0, 'kasusaito', '2014-12-27', 'kassaito52', '2002-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS180135966699', '井上一輝', 0, '+81 80-0297-6954', 1, '157060419152374849', '日本札幌厚別区上野幌一条二丁目1番12号16号室', '1996-11-23', 0, 0, 'ikkin', '2015-05-05', 'inoueikk929', '2020-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS583736738161', 'Nicholas Garza', 0, '+44 7221 367094', 4, '152446984643679712', 'Flat 27, 642 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-12-23', 0, 0, 'gnicholas', '2005-10-17', 'gnicholas', '2004-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS996587922848', '丸山紗良', 1, '+1 838-814-9871', 0, '472875659594132128', '272 Lark Street Apartment 22, Albany, NY 12210, United States', '1993-05-03', 0, 0, 'marusa523', '2019-06-21', 'sarama', '2013-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS669202224540', '余宇宁', 0, '+81 70-1146-8847', 1, '348103941879443858', '8-kai, 2-1-8 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-10-31', 0, 0, 'yuyuning1980', '2001-12-28', 'yuy', '2000-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS743179265337', 'Norman Ortiz', 0, '+44 5615 643181', 2, '043321122997607089', 'Unit 38, Oxford Eco Centre, 109 New Street, Birmingham, B2 4DB, United Kingdom', '1985-06-08', 0, 0, 'ortiz702', '2021-08-11', 'normanortiz', '2014-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS065393702333', '朱子韬', 1, '+86 21-864-7661', 1, '465491548727310152', 'Room 16, CR Building, 278 Hongqiao Rd., Xu Hui District, Shanghai, China', '1997-02-14', 0, 0, 'zz48', '2009-06-15', 'zitao1978', '2000-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS266401087761', '大野一輝', 1, '+81 80-6445-9313', 1, '186691772174224322', '日本札幌豊平区豊平三条十三丁目3番18号50階', '1989-07-06', 0, 0, 'ikkon503', '2000-06-01', 'ikkion', '2013-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS733916810818', '萧晓明', 1, '+81 70-7293-9404', 1, '160479080962647331', '19F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-04-09', 0, 0, 'xx9', '2002-07-01', 'xiaomingxiao', '2018-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS547877335533', '邱睿', 0, '+86 10-899-0586', 0, '450671511454995519', '中国北京市延庆区028县道300号华润大厦25室', '1989-10-11', 0, 0, 'ruiqi', '2006-03-14', 'rqi8', '2008-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS959205985129', 'Cindy Gibson', 0, '+86 194-0309-0666', 3, '910598225960546903', 'Room 32, No.757, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-08-27', 0, 0, 'gibsonci', '2007-03-17', 'cindy1129', '2003-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS776262155642', '石詩涵', 0, '+81 90-3084-1118', 0, '472825974424023571', '日本東京中央区銀座三丁目12番9号38階', '1989-03-21', 0, 0, 'shishihan', '2018-06-21', 'shihan50', '2000-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS857031863331', '井上架純', 0, '+86 755-501-3464', 0, '603214699434187688', '39F, 204 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1988-08-21', 0, 0, 'kasumi1945', '2006-12-03', 'inoukasumi', '2005-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS962312545317', '大塚大地', 0, '+81 90-8172-2198', 2, '027666968049502686', '日本札幌中央区宮の森四条六丁目1番9号30号室', '1989-04-08', 0, 0, 'dotsu10', '2013-08-11', 'daichiotsuka', '2006-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS296838219101', '錢朝偉', 1, '+81 66-706-9787', 1, '202275703612893192', '31-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-02-09', 0, 0, 'cchiuwai2001', '2020-07-08', 'chin8', '2016-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS894314165035', '山口拓哉', 1, '+81 70-2151-0887', 4, '536264504888238007', 'Rm. 45, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1992-08-15', 0, 0, 'taky10', '2007-10-04', 'ytakuya3', '2006-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS558348935927', 'Sylvia Ramos', 0, '+1 718-681-0213', 2, '597575335742461838', '276 Flatbush Ave Suite 34, Brooklyn, NY 11225, United States', '1994-10-17', 0, 0, 'sylviaramos', '2014-06-12', 'sylviaramos14', '2001-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS642205077078', 'Mark Hill', 1, '+1 718-638-9368', 4, '550323308023838534', '801 Nostrand Ave Apartment 46, Brooklyn, NY 11216, United States', '1996-07-22', 0, 0, 'mhill9', '2011-04-01', 'mhi3', '2004-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS571641389766', 'Denise Lee', 1, '+86 755-5354-1853', 3, '654389490937449502', 'Room 2, 894 Shennan Ave, Futian District, Shenzhen, China', '1995-03-30', 0, 0, 'dele', '2020-04-13', 'leed', '2008-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS608323353767', '伊藤光', 1, '+86 161-2259-3079', 0, '023892724874089872', '中国北京市延庆区028县道977号28楼', '1986-09-17', 0, 0, 'itohika106', '2020-06-22', 'hikarito', '2009-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS617598499470', '岩崎舞', 1, '+44 5174 883694', 2, '973869401801884323', 'Flat 4, 917 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-11-01', 0, 0, 'iwama', '2017-11-04', 'mai4', '2017-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS698900011037', '谷口凛', 1, '+86 193-1774-3512', 4, '240083708976473514', '中国北京市东城区东单王府井东街23号华润大厦24室', '1991-02-15', 0, 0, 'tanigri', '2000-04-02', 'trin', '2009-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS038005579667', '田中悠人', 1, '+1 212-796-3017', 0, '376929383518505327', '105 Wooster Street Suite 31, New York, NY 10012, United States', '1989-09-17', 0, 0, 'tanaka64', '2009-08-21', 'yuto728', '2002-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS458634711741', '阎震南', 1, '+81 52-615-9608', 3, '374246185709372015', '日本なごやし北区清水三丁目19番20号49階', '1991-11-19', 0, 0, 'yanz911', '2007-01-30', 'yanzhennan', '2004-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS462215782665', 'Rebecca Clark', 1, '+81 90-6033-8200', 1, '260570828960473833', '47F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-10-22', 0, 0, 'rebeccaclark1205', '2003-04-02', 'rebeccaclark', '2010-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS128679620495', '丁云熙', 1, '+81 52-604-7576', 1, '321199370118963578', 'Rm. 5, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-01-29', 0, 0, 'yunxdi917', '2014-08-06', 'dingy1028', '2020-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS943565315592', '石田彩乃', 1, '+81 70-7342-9503', 1, '700912507136327263', '35-kai, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-09-09', 0, 0, 'ishayano92', '2015-10-09', 'ishiayan', '2015-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS347911451574', '蘇安琪', 1, '+86 185-1138-8760', 1, '042048053386863561', '中国深圳罗湖区田贝一路720号华润大厦4室', '1986-10-22', 0, 0, 'oks20', '2022-02-07', 'soonkay', '2009-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS975281940812', '甘玲玲', 1, '+44 7986 222687', 1, '763757324160211361', 'Block 14, 953 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-05-15', 0, 0, 'linglingka2', '2005-05-05', 'klingling05', '2005-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS017543445996', '孟璐', 1, '+1 213-930-6001', 3, '077680502402755346', '195 Sky Way Apt 48, Los Angeles, CA 90043, United States', '1990-04-10', 0, 0, 'mlu', '2016-03-22', 'lmen509', '2007-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS581783785120', 'Roger Spencer', 1, '+44 5414 592959', 1, '989524310966725512', 'Flat 27, 982 New Street, Birmingham, B2 4DB, United Kingdom', '1988-11-26', 0, 0, 'spr', '2015-01-21', 'roger6', '2005-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS015962842722', 'Jacob Mendez', 0, '+44 (20) 3439 4607', 0, '929453187701855226', 'No.30 Main building, 613 Pollen Street, London, W1S 1NG, United Kingdom', '1994-12-04', 0, 0, 'jacobmendez', '2005-08-15', 'jmendez', '2015-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS251627177638', 'Thomas Meyer', 0, '+44 5035 105418', 2, '016839170843510170', 'Unit 23, Oxford Eco Centre, 968 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-05-18', 0, 0, 'thomasm', '2010-11-07', 'meyer1968', '2021-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS294114467481', '蔡惠敏', 1, '+86 10-266-1063', 2, '157055995162057713', '中国北京市朝阳区三里屯路743号21楼', '1986-08-21', 0, 0, 'choiwa', '2008-06-14', 'wmchoi', '2010-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS505379898955', '陶杰宏', 0, '+86 154-5585-7219', 2, '207190521927840071', 'No.45 building, 91 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-12-14', 0, 0, 'jiehong1', '2005-06-02', 'taji', '2010-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS651816029485', '張天樂', 0, '+81 70-9541-7015', 0, '959539250278434014', '35F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-03-19', 0, 0, 'cheungtl', '2017-05-11', 'chetinlok58', '2014-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS976405853733', '胡秀文', 0, '+86 143-5294-9893', 2, '589874678153488604', '中国上海市浦东新区健祥路957号9栋', '1989-12-02', 0, 0, 'wusm', '2017-06-20', 'wsauman623', '2009-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS673865702648', '有村彩乃', 0, '+86 146-8203-2377', 1, '383833996442945471', '中国北京市海淀区清河中街68号836号10室', '1997-11-13', 0, 0, 'aayano', '2015-12-13', 'ayano62', '2021-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS771573216621', '顾睿', 0, '+44 (1223) 07 1528', 3, '007863874835056155', 'Unit 11, Oxford Eco Centre, 504 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-09-26', 0, 0, 'rgu', '2012-12-07', 'gurui', '2010-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS312632167237', '谭云熙', 1, '+86 133-4106-9870', 1, '310034520388841448', '中国北京市房山区岳琉路42号13室', '1998-03-05', 0, 0, 'yut1944', '2009-03-22', 'ytan525', '2009-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS891026995457', 'Karen Carter', 0, '+81 90-9812-6443', 2, '386958099834634445', '34-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-06-30', 0, 0, 'karcar', '2003-01-09', 'kc3', '2017-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS070711058318', 'Mary Long', 0, '+86 755-8341-0304', 3, '819807938398463253', 'Room 24, CR Building, 425 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-04-29', 0, 0, 'longmar921', '2014-12-07', 'marylong', '2009-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS256965021130', '上野美咲', 0, '+86 153-8508-8747', 1, '895595337835829816', '中国成都市成华区双庆路549号24号楼', '1995-09-18', 0, 0, 'uenomisaki', '2021-07-07', 'umisaki625', '2018-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS971085075603', '阮國權', 0, '+44 5836 033789', 1, '491783894796150121', 'No.32 Main building, 285 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-05-18', 0, 0, 'ykwokkuen44', '2017-03-21', 'kkyuen7', '2021-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS936529225864', '太田舞', 0, '+86 184-0284-3024', 3, '487555753900719298', 'No.14 building, No.852, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1993-09-07', 0, 0, 'otma11', '2017-07-18', 'mai54', '2010-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS976814767060', '木下光莉', 1, '+86 153-1074-4460', 3, '295500261477245538', '中国广州市白云区机场路棠苑街五巷892号48室', '1985-03-27', 0, 0, 'kinoshik10', '2021-10-10', 'hkinoshita', '2010-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS495305208987', '邵睿', 1, '+81 90-5633-8158', 0, '022642397547505446', '日本東京中央区銀座三丁目12番12号18階', '1987-04-17', 0, 0, 'ruishao', '2018-05-15', 'rui2', '2014-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS403513170695', '清水大輔', 1, '+81 11-528-3166', 2, '922473676260118905', '日本札幌中央区宮の森四条六丁目1番12号8階', '1992-10-20', 0, 0, 'daish', '2013-02-07', 'sdaisuke10', '2000-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS948429981321', '平野陽太', 0, '+44 (161) 138 5223', 4, '648372882444692315', 'No.36 Main building, 538 Portland St, Manchester, M1 3LA, United Kingdom', '1995-02-03', 0, 0, 'hyota', '2011-01-10', 'hirano6', '2015-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS351617628882', 'Brandon Gordon', 1, '+81 11-643-4874', 3, '860834900117482543', '17-kai, 13-3-8 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-02-08', 0, 0, 'gordbran', '2010-08-03', 'gordonbrandon2', '2016-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS270593001592', '谢子异', 1, '+44 5530 314238', 0, '796609523895918782', 'Block 8, 730 Maddox Street, London, W1S 1PU, United Kingdom', '1997-05-05', 0, 0, 'xizi212', '2003-08-18', 'ziyixie', '2003-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS371413570135', '前田蓮', 0, '+1 213-831-0179', 4, '684134326064386138', '961 Grape Street Apt 5, Los Angeles, CA 90002, United States', '1985-06-02', 0, 0, 'mr92', '2011-01-06', 'remaeda712', '2000-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS294906886443', '青木玲奈', 1, '+44 (121) 128 9697', 3, '052437927320792447', 'Unit 45, Oxford Eco Centre, 292 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-07-03', 0, 0, 'aokirena', '2019-07-06', 'renaoki', '2018-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS245300563964', 'Phyllis Freeman', 1, '+44 (121) 758 0815', 3, '041604697997159647', 'Flat 16, 227 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-12-15', 0, 0, 'phyllfr', '2003-02-12', 'freeman6', '2014-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS788699722458', '姜志遠', 1, '+86 28-5071-1200', 2, '887347338650216542', '中国成都市成华区二仙桥东三路412号19栋', '1996-06-03', 0, 0, 'changcy10', '2007-11-28', 'chang53', '2020-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS491182112987', 'Jennifer Bailey', 0, '+1 718-005-0478', 1, '978571428061525356', '544 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1993-04-21', 0, 0, 'bajenni', '2009-05-31', 'baileyje226', '2021-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS584815489002', '陳慧敏', 1, '+1 312-694-2870', 1, '488051845480775924', '781 Pedway 3rd Floor, Chicago, IL 60601, United States', '1993-12-14', 0, 0, 'chan411', '2020-12-01', 'chanwm', '2012-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS313034165029', '莫岚', 0, '+81 90-9485-4606', 1, '401971206881234333', 'Rm. 5, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-07-19', 0, 0, 'molan52', '2004-01-07', 'molan917', '2016-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS749157095838', '葉嘉欣', 1, '+86 28-5928-1200', 1, '952820337311791029', '中国成都市锦江区红星路三段909号30号楼', '1985-12-26', 0, 0, 'yip508', '2016-02-05', 'karyanyip', '2008-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS487068581842', '柴田愛梨', 0, '+44 5108 410385', 3, '770035576780991921', 'Flat 27, 481 Maddox Street, London, W1S 1PU, United Kingdom', '1992-09-17', 0, 0, 'shibataairi', '2013-10-15', 'shibataai', '2005-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS592980899392', 'Bobby Gordon', 1, '+1 212-186-7385', 1, '001538110266587536', '328 West Houston Street 3rd Floor, New York, NY 10014, United States', '1987-11-19', 0, 0, 'gordonbo', '2010-08-18', 'gordb', '2014-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS587321790093', '雷詩涵', 1, '+86 158-7983-0437', 2, '794567217422676521', '中国北京市房山区岳琉路554号42楼', '1986-01-08', 0, 0, 'shihan70', '2006-12-11', 'leishihan', '2004-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS666857353827', '長谷川凛', 1, '+86 140-8975-1903', 3, '338429688088300408', 'No.18 building, 956 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-11-25', 0, 0, 'rinhasegawa1119', '2008-11-04', 'hasegawari', '2000-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS119402551865', 'Lillian Mitchell', 0, '+86 142-4163-9556', 1, '091654177928103706', 'Room 43, 685 Shanhu Rd, Dongguan, China', '1993-10-28', 0, 0, 'mitchell7', '2009-07-02', 'mitchelllilli', '2003-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS577873424006', '謝浩然', 0, '+1 213-586-9850', 1, '367957960213585870', '193 S Broadway Suite 28, Los Angeles, CA 90015, United States', '1985-02-28', 0, 0, 'thoyin06', '2020-01-23', 'hoyintse', '2005-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS473142413638', 'Rhonda Gray', 0, '+44 (116) 541 0447', 3, '226672275783971991', 'No.31 Main building, 717 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-11-22', 0, 0, 'gray8', '2003-09-29', 'rhondag', '2012-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS155999742595', '湯慧嫻', 0, '+1 312-829-5028', 2, '471363086189485948', '269 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1994-11-08', 0, 0, 'towaihan506', '2009-05-24', 'whto5', '2013-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS495884141069', 'Jose Jimenez', 1, '+1 718-105-7024', 2, '292792313923013417', '409 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-06-30', 0, 0, 'jimenez2', '2006-02-23', 'joseji', '2008-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS686960338324', '容秀文', 0, '+86 10-1805-8022', 2, '920220264823631888', 'Room 1, 713 028 County Rd, Yanqing District, Beijing, China', '1997-10-29', 0, 0, 'smyun5', '2003-08-09', 'smyung', '2011-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS488528408428', 'Rebecca Young', 0, '+44 (20) 5457 1392', 1, '364773254930427534', 'Block 36, 466 Hanover Street, London, W1S 1YD, United Kingdom', '1997-02-12', 0, 0, 'ryoun1119', '2013-08-12', 'young04', '2003-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS671694255554', '高橋樹', 0, '+86 10-210-9208', 2, '873790287345188718', '中国北京市西城区西長安街667号28号楼', '1986-12-03', 0, 0, 'taki', '2017-02-03', 'takaitsuki', '2021-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS569815979241', '龙致远', 0, '+1 614-520-5846', 3, '739644634849104712', '400 East Cooke Road Suite 3, Columbus, GA 43214, United States', '1989-11-14', 0, 0, 'long1965', '2005-02-15', 'longz', '2014-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS629375498257', '谢子异', 0, '+44 (1223) 04 5524', 3, '570494916844599551', 'Unit 4, Oxford Eco Centre, 622 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-06-28', 0, 0, 'ziyi5', '2001-04-28', 'xieziy4', '2000-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS170202641632', 'Kathy Bailey', 0, '+1 213-279-3552', 2, '462199427703186209', '723 Figueroa Street Suite 24, Los Angeles, CA 90037, United States', '1996-06-05', 0, 0, 'kathy10', '2012-10-19', 'bailka', '2019-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS227951885412', '藤田涼太', 1, '+86 186-8982-8066', 1, '702645473383231786', 'No.24 building, 273 028 County Rd, Yanqing District, Beijing, China', '1997-09-02', 0, 0, 'ryfujita', '2001-05-07', 'ryotafu10', '2020-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS965146411411', 'Teresa Payne', 0, '+44 (151) 831 0194', 2, '782777969408387960', 'Block 8, 446 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-10-18', 0, 0, 'tepayne', '2004-08-30', 'teresapayn', '2020-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS119471792910', '程詩涵', 1, '+86 193-7987-7903', 2, '466098614926513144', '42F, 468 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-01-04', 0, 0, 'chengshiha', '2013-04-19', 'chengs', '2006-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS363835155289', '駱國明', 1, '+86 194-8483-7408', 1, '049250352700239671', '中国北京市東城区東直門內大街736号1楼', '1987-11-13', 0, 0, 'lokwokming', '2002-10-29', 'lokkwokming', '2006-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS833814735684', '田中光', 0, '+86 20-810-9498', 0, '566637595051424464', '中国广州市越秀区中山二路398号41栋', '1997-12-14', 0, 0, 'hikaru98', '2019-05-23', 'hikarutanak8', '2016-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS364425421835', '島田百花', 1, '+1 213-422-9674', 2, '824511500962211751', '863 Alameda Street Apartment 30, Los Angeles, CA 90002, United States', '1997-01-28', 0, 0, 'shimada2', '2003-09-26', 'shm', '2003-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS636609018153', '林致远', 0, '+81 80-5353-9955', 2, '479630706388424210', '28F, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-02-13', 0, 0, 'lizhi421', '2015-06-13', 'lin45', '2014-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS491871766989', '袁岚', 0, '+44 (151) 901 7604', 4, '049535329068917772', 'No.5 Main building, 7 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-11-27', 0, 0, 'lanyua1030', '2018-05-14', 'lanyuan6', '2017-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS212754340100', '毛子韬', 1, '+1 718-397-9782', 0, '180932786255811585', '11 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1985-05-31', 0, 0, 'zitaomao', '2000-05-26', 'zitmao', '2006-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS394218429024', '内田拓哉', 1, '+86 191-4387-2886', 1, '512859463207843741', 'Room 19, CR Building, 497 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-03-13', 0, 0, 'takuya1207', '2004-02-20', 'takuyuchida', '2016-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS613929440120', '田宇宁', 1, '+44 7682 172990', 4, '521698241312260142', 'Flat 40, 29 Maddox Street, London, W1S 1PU, United Kingdom', '1993-07-26', 0, 0, 'tianyuning', '2015-10-17', 'yuningt', '2020-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS938876217053', '武云熙', 0, '+81 3-9197-4086', 0, '795281115874003820', '12-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-01-06', 0, 0, 'ywu95', '2012-02-21', 'yunxiwu5', '2001-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS400253328654', '孟晓明', 1, '+44 (121) 007 0368', 3, '860835619691326436', 'Block 38, 157 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1987-10-20', 0, 0, 'xiaommeng', '2018-07-24', 'mengxiaoming8', '2002-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS011193766461', '容家玲', 0, '+1 718-180-1687', 3, '337329798373503566', '542 Columbia St Apt 7, Brooklyn, NY 11231, United States', '1989-10-22', 0, 0, 'kly', '2004-04-02', 'yung92', '2013-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS471417084349', '藤世榮', 0, '+86 10-309-8820', 1, '583922962582004416', 'No.15 building, 885 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-12-29', 0, 0, 'tang8', '2004-06-28', 'tansaiwing916', '2002-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS037570133400', 'Francis Watson', 1, '+81 66-805-8160', 0, '411474301788349561', '日本おおさかし近江堂一丁目7番15号4号室', '1993-09-17', 0, 0, 'watsonfr123', '2014-05-23', 'watsonfra323', '2010-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS318718323009', 'Bruce Hamilton', 1, '+86 151-8191-4274', 4, '469787923008744935', '中国北京市西城区复兴门内大街759号30室', '1989-01-30', 0, 0, 'hamiltonb', '2018-12-27', 'bruceh', '2002-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS547316986819', '薛璐', 1, '+86 10-2335-2324', 4, '919570277065294326', '中国北京市西城区复兴门内大街790号19楼', '1986-06-01', 0, 0, 'luxue8', '2000-06-11', 'xl3', '2012-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS083822088898', '宮崎健太', 1, '+86 10-519-8046', 2, '765094089377825205', '中国北京市海淀区清河中街68号459号20栋', '1985-11-02', 0, 0, 'kentamiyazaki', '2007-07-26', 'miyazakikenta', '2012-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS173517598091', '朱小慧', 0, '+86 194-0881-3935', 3, '997768396538270088', '中国上海市浦东新区健祥路463号10室', '1987-06-26', 0, 0, 'chu63', '2003-04-25', 'csiuwai10', '2019-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS249772568030', '孟秀英', 1, '+81 11-957-9131', 1, '462467735285252787', '46-kai, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-01-18', 0, 0, 'mengx', '2013-01-24', 'xiuying1961', '2010-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS322362488158', '石田樹', 1, '+86 170-1931-6293', 2, '775160571201401169', 'Room 9, 748 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-02-11', 0, 0, 'iit', '2010-11-19', 'iitsuki', '2008-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS363293200102', '韓詩君', 1, '+86 21-166-9474', 0, '490861810685688775', '中国上海市浦东新区橄榄路205号27号楼', '1989-11-27', 0, 0, 'hsk', '2013-04-01', 'skhan', '2003-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS529892490790', '孔安琪', 0, '+86 769-9184-8087', 2, '541091831780788689', '中国东莞珊瑚路139号17号楼', '1989-01-05', 0, 0, 'kong716', '2001-01-03', 'konganq', '2005-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS660662841275', '横山樹', 1, '+86 161-6298-3160', 4, '852051428947996662', '中国北京市房山区岳琉路87号46栋', '1991-01-11', 0, 0, 'itsukiyokoyama', '2007-02-05', 'yoit', '2002-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS623209746664', 'Esther Soto', 0, '+44 5765 582089', 3, '345639054939874465', 'Unit 42, Oxford Eco Centre, 329 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-02-12', 0, 0, 'sote4', '2011-05-11', 'esot7', '2005-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS829018739577', 'Rose Ellis', 0, '+86 10-630-2074', 3, '523930864653829199', 'No.48 building, 218 Yueliu Rd, Fangshan District, Beijing, China', '1994-01-05', 0, 0, 'rose1', '2018-03-23', 'ellrose', '2001-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS166019253101', 'John Crawford', 0, '+81 74-364-2873', 2, '656411731906116981', '日本ならし西大寺赤田町一丁目7番12号3号室', '1996-02-06', 0, 0, 'crawfordjoh', '2012-08-10', 'crawfordjohn8', '2015-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS198094490998', 'Arthur Wagner', 0, '+86 162-5397-1054', 3, '049717871833296714', '中国东莞珊瑚路592号15室', '1998-04-02', 0, 0, 'wagnarthur517', '2005-06-02', 'arthur6', '2021-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS337263201384', 'Teresa Myers', 1, '+81 66-890-4377', 1, '720571354385859855', '日本おおさかし西成区天神ノ森二丁目1番20号6号室', '1993-08-09', 0, 0, 'mteres', '2004-05-09', 'teresamyers1127', '2013-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS892896529130', '石田一輝', 0, '+86 755-211-6086', 1, '165824176422563379', 'No.15 building, 561 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-12-11', 0, 0, 'iishi418', '2007-05-03', 'ikkiishida44', '2019-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS491786154081', '唐睿', 0, '+86 10-1370-6180', 4, '839908667007486368', '中国北京市西城区复兴门内大街209号46室', '1989-02-10', 0, 0, 'trui608', '2016-08-08', 'tangrui', '2021-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS983302368518', '高橋光', 1, '+86 195-5225-1867', 4, '637313839421513623', 'Room 16, CR Building, 942 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-09-19', 0, 0, 'hikarutak', '2005-10-26', 'hikaru1114', '2005-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS645214219328', '吉田和真', 0, '+86 150-9069-6866', 3, '157826921487308574', 'Room 30, CR Building, 754 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-06-21', 0, 0, 'yok', '2010-06-18', 'yoshidakazuma6', '2003-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS342523705675', 'Chris Reed', 0, '+86 755-4553-1044', 4, '561424445307525518', '中国深圳福田区深南大道689号华润大厦47室', '1997-12-29', 0, 0, 'chrisreed9', '2005-05-06', 'chreed', '2005-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS580524754665', 'Elaine Porter', 1, '+44 5460 094638', 3, '412904901884597890', 'Block 45, 689 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-01-21', 0, 0, 'elaineporter', '2003-10-16', 'porter801', '2001-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS479546071495', '伊藤彩乃', 0, '+44 (20) 4092 0339', 1, '098460944460338972', 'No.49 Main building, 171 Pollen Street, London, W1S 1NG, United Kingdom', '1988-04-16', 0, 0, 'ayanoito702', '2007-10-08', 'ita1', '2005-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS761239468554', '朱睿', 0, '+81 66-594-3359', 2, '443889769707961754', '50-kai, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1988-02-23', 0, 0, 'zhu1002', '2006-04-20', 'zhurui517', '2012-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS615007513958', '朱杰宏', 1, '+81 74-062-7980', 1, '067047425440333793', '13F, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1989-01-08', 0, 0, 'jiehongz67', '2020-06-11', 'jiehozh', '2008-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS657795566712', 'Bernard Martin', 1, '+86 755-7825-1789', 2, '212947596105238593', '中国深圳罗湖区蔡屋围深南东路502号华润大厦9室', '1985-08-18', 0, 0, 'martin7', '2018-01-24', 'martiber10', '2017-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS907877751492', '市川百花', 0, '+86 20-1552-5498', 1, '293502766850043089', '47F, 988 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-04-01', 0, 0, 'ichim', '2008-01-02', 'momokai', '2003-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS559866007815', '張頴璇', 1, '+86 10-201-1614', 3, '440606288781454050', '中国北京市房山区岳琉路802号30室', '1997-09-14', 0, 0, 'wingsuencheung', '2019-07-07', 'cheuws52', '2018-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS694038081366', '何安琪', 0, '+81 70-0722-8582', 4, '827996363746485456', '日本なごやし北区楠味鋺三丁目80番14号45号室', '1997-12-06', 0, 0, 'anqi7', '2011-04-04', 'hean', '2005-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS761884926843', '韩嘉伦', 0, '+44 (20) 7445 2400', 3, '421677467047737484', 'No.26 Main building, 187 Pollen Street, London, W1S 1NG, United Kingdom', '1993-06-15', 0, 0, 'hanjial506', '2013-05-06', 'han10', '2013-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS532705976832', '常詩涵', 0, '+81 70-1496-2088', 3, '799744072255272433', '日本東京中央区銀座三丁目12番18号22階', '1997-07-11', 0, 0, 'shchang', '2003-09-19', 'shihanchang2010', '2017-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS881824885113', 'Edith Peterson', 1, '+81 80-3422-3767', 4, '568190049612067853', '21F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1986-03-10', 0, 0, 'petersoned94', '2020-12-03', 'edith9', '2007-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS291307224096', 'Charles Black', 0, '+81 3-5897-2148', 3, '759662611494495753', '日本東京渋谷区代々木二丁目3番6号50号室', '1999-01-15', 0, 0, 'blackc401', '2005-07-10', 'charles3', '2007-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS939809348441', '方宇宁', 1, '+81 52-977-8661', 4, '511256687901832850', '日本なごやし熱田区千年二丁目5番3号13階', '1987-06-02', 0, 0, 'fyunin', '2009-03-13', 'yuningfang', '2003-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS322609332735', '高木結翔', 1, '+1 838-830-8388', 1, '539660616000873103', '601 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1993-01-11', 0, 0, 'yuitotakagi9', '2005-03-19', 'takayui1965', '2013-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS025221272448', '馬朝偉', 1, '+44 (1223) 62 5387', 2, '234422224345147349', 'Unit 7, Oxford Eco Centre, 410 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-05', 0, 0, 'cwm', '2018-07-28', 'machiuwai1978', '2018-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS183908499761', '魏云熙', 0, '+44 (1223) 41 9777', 1, '179920866480360208', 'Flat 42, 998 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-03-23', 0, 0, 'weiyunx', '2014-06-09', 'weiy19', '2010-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS796093751304', 'Brandon Price', 1, '+86 188-1901-8469', 3, '749388643929241798', '中国成都市成华区二仙桥东三路699号23栋', '1994-08-02', 0, 0, 'brandon3', '2013-04-23', 'brandonprice', '2021-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS848172744708', '菅原蓮', 0, '+44 (161) 203 3113', 3, '067183820288322056', 'Unit 1, Oxford Eco Centre, 415 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-01-05', 0, 0, 'rsugawara', '2002-07-05', 'sugawararen', '2019-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS993899523656', '潘睿', 1, '+44 7015 039762', 4, '104115866233719215', 'Block 48, 736 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-04-04', 0, 0, 'pan813', '2000-08-10', 'pan10', '2003-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS964703947503', '汤子异', 1, '+44 5328 673769', 2, '984232162685205899', 'Block 4, 626 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-12-13', 0, 0, 'ziyitang', '2013-05-17', 'taziyi', '2013-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS398770797852', 'James Evans', 1, '+81 11-042-7502', 1, '696423878351112833', '日本札幌厚別区上野幌一条二丁目1番19号4階', '1994-03-10', 0, 0, 'evansja10', '2000-02-12', 'ejames10', '2012-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS583828668759', '松田明菜', 0, '+44 7163 379525', 1, '279841431912901940', 'Unit 40, Oxford Eco Centre, 833 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-02-16', 0, 0, 'amatsuda312', '2013-07-15', 'makina4', '2007-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS586650264229', '内田桜', 0, '+81 11-760-4037', 2, '830131548489692267', 'Rm. 47, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-08-08', 0, 0, 'sakura2019', '2020-02-23', 'uchis', '2013-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS841251895012', '李家文', 1, '+86 167-2433-4301', 3, '727486630080479969', 'No.47 building, 947 Ganlan Rd, Pudong, Shanghai, China', '1989-01-05', 0, 0, 'leekaman', '2003-03-22', 'leekm', '2003-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS943555300209', '熊詩涵', 0, '+44 (121) 888 1046', 1, '462468565924104277', 'Block 43, 556 New Street, Birmingham, B2 4DB, United Kingdom', '1994-04-25', 0, 0, 'sxiong1', '2004-08-14', 'shihxi2007', '2003-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS724292754911', '吉田大和', 1, '+86 769-172-3616', 3, '730174024614246690', '中国东莞珊瑚路642号20楼', '1990-01-07', 0, 0, 'yoshiday', '2013-05-09', 'yyo', '2014-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS359499823641', '岡田凛', 1, '+81 70-9312-5431', 1, '876172993363124916', '日本東京港区東新橋一丁目5番15号48号室', '1994-02-23', 0, 0, 'okadarin4', '2006-03-06', 'okari', '2012-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS284259774254', '葉志遠', 0, '+86 167-1961-0202', 3, '539860535792491657', 'No.33 building, No. 482, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-07-10', 0, 0, 'yip108', '2009-08-27', 'chiyy', '2012-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS707863529863', '田杰宏', 1, '+81 70-4935-4700', 1, '421115120363695984', '日本なごやし瑞穂区河岸町四丁目20番5号15号室', '1992-03-22', 0, 0, 'tian51', '2021-08-26', 'jiehongtian6', '2000-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS594713982134', '小林湊', 0, '+1 614-385-6931', 4, '433113202594684362', '210 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-08-16', 0, 0, 'kobayashimin207', '2007-06-02', 'mk1', '2018-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS461812864303', '龚璐', 1, '+86 154-4122-7634', 4, '832712967333560652', 'Room 13, CR Building, 189 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-02-04', 0, 0, 'lugo', '2021-04-03', 'lugong00', '2009-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS505008890366', '森田明菜', 0, '+81 3-4711-7795', 1, '172549304308159527', 'Rm. 19, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-14', 0, 0, 'akimori1', '2008-01-03', 'maki204', '2004-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS151080204349', '董宇宁', 1, '+1 213-588-8884', 4, '421462896916123017', '509 Wall Street Apartment 23, Los Angeles, CA 90003, United States', '1985-11-26', 0, 0, 'dongyuning', '2008-10-16', 'yuning3', '2003-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS753420539107', '中村光莉', 1, '+86 163-1333-4743', 2, '774853838791557801', '中国成都市成华区玉双路6号190号34室', '1996-02-15', 0, 0, 'hikari1943', '2009-05-31', 'nakamurahika', '2021-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS877804839895', '田中百花', 1, '+86 140-5022-3739', 2, '256775611840965363', '中国北京市延庆区028县道131号华润大厦11室', '1995-09-10', 0, 0, 'tanmom', '2018-08-23', 'motanaka57', '2012-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS391362466698', '贺嘉伦', 0, '+86 174-4094-8880', 0, '420558596127666196', 'No.46 building, 640 Dongtai 5th St, Dongguan, China', '1989-10-02', 0, 0, 'jhe', '2016-11-04', 'hejialun', '2014-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS132433759934', 'Ray Jordan', 1, '+86 130-8971-7320', 1, '621363232987834094', '中国东莞珊瑚路614号11号楼', '1994-06-06', 0, 0, 'rjord726', '2008-11-26', 'jordray76', '2006-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS994107291190', '郭浩然', 0, '+86 131-9420-0776', 1, '896499759497151341', '13F, 890 028 County Rd, Yanqing District, Beijing, China', '1989-03-10', 0, 0, 'hoyinkwok', '2015-04-03', 'hykwo', '2000-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS943992009900', '有村陸', 0, '+81 80-0512-6491', 1, '530937272423168607', '50-kai, 3-27-4 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-06-15', 0, 0, 'arimura724', '2001-06-28', 'riku1', '2000-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS644961372145', 'Wendy Ford', 0, '+86 28-797-2095', 2, '622046068953470379', 'No.5 building, 817 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-02-04', 0, 0, 'wef', '2006-10-13', 'wendfor4', '2007-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS203926733505', '赵子异', 1, '+86 193-8912-3997', 3, '928739518891314411', '8F, 856 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-06-25', 0, 0, 'zhziy1229', '2005-02-19', 'ziyi5', '2009-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS941746145030', 'Randall Anderson', 1, '+86 199-3222-0108', 3, '146507867162606757', 'No.43 building, 151 Shanhu Rd, Dongguan, China', '1997-05-08', 0, 0, 'randallande', '2014-01-03', 'ar1991', '2004-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS909036066816', '刘杰宏', 1, '+81 70-9893-8806', 4, '750815524964328492', '日本札幌厚別区上野幌一条二丁目1番15号36号室', '1996-04-08', 0, 0, 'jiehongli', '2008-05-28', 'jiehong8', '2006-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS789202212773', 'Todd Guzman', 0, '+86 10-288-9979', 2, '151822161049011429', '中国北京市延庆区028县道489号14号楼', '1996-08-29', 0, 0, 'guzmantodd78', '2015-07-25', 'gutodd67', '2002-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS336834706216', '罗睿', 1, '+81 66-659-3993', 3, '947057231586450802', '26F, 1-1-19 Deshiro, Nishinari Ward, Osaka, Japan', '1994-10-11', 0, 0, 'ruiluo', '2002-05-04', 'luorui10', '2013-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS824411467838', '余岚', 1, '+44 (20) 9137 0794', 4, '673724302569491094', 'Flat 30, 994 Pollen Street, London, W1S 1NG, United Kingdom', '1989-02-26', 0, 0, 'ly6', '2017-01-25', 'lan7', '2008-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS844109067880', '林詩涵', 1, '+86 755-627-8772', 1, '253372940860891003', 'No.21 building, 648 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-21', 0, 0, 'shihanlin615', '2020-07-04', 'lis', '2006-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS580373035116', 'Carlos Hernandez', 1, '+81 3-1163-2786', 2, '139863435234723114', '日本東京渋谷区代々木二丁目3番16号34階', '1995-09-10', 0, 0, 'hernc824', '2004-10-18', 'carloshern', '2003-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS125597392142', 'Sherry Mcdonald', 0, '+81 90-9239-7672', 1, '636590896245638495', '22-kai, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-12-05', 0, 0, 'smcdonald', '2016-12-18', 'mshe', '2011-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS175874622825', '和田陸', 1, '+86 150-2011-7775', 2, '401372523847836875', 'Room 39, CR Building, 526 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-05-19', 0, 0, 'wadariku1970', '2004-05-24', 'wadari', '2014-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS739469117214', '小林優奈', 0, '+44 (161) 501 0327', 3, '778479861654208312', 'No.5 Main building, 174 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-10-08', 0, 0, 'kyu6', '2012-03-23', 'kobayyun', '2010-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS396971626630', '安藤蒼士', 1, '+1 212-452-5512', 2, '055651338473327128', '908 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-09-20', 0, 0, 'aosha', '2010-04-08', 'aoshia', '2020-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS697360574855', '高田光莉', 0, '+44 5899 502702', 2, '527180172503480845', 'Block 11, 366 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-02-07', 0, 0, 'takahikari', '2010-12-27', 'takadhik5', '2005-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS872972097413', '武秀英', 1, '+81 80-5537-8871', 4, '490968987675853435', '8F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-11-08', 0, 0, 'xwu', '2011-04-03', 'wux', '2004-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS099018668197', '蔡秀文', 1, '+86 21-187-7134', 3, '534550915839646089', '40F, 637 Hongqiao Rd., Xu Hui District, Shanghai, China', '1995-05-01', 0, 0, 'chosm', '2012-05-27', 'chosm', '2003-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS961093102377', '雷玲玲', 0, '+81 52-079-8284', 3, '561657283920447997', '日本なごやし瑞穂区河岸町四丁目20番14号17号室', '1985-04-13', 0, 0, 'lingling829', '2002-12-26', 'louill', '2021-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS853170724871', '汪致远', 1, '+44 (1223) 87 0948', 1, '923373157159224838', 'Unit 38, Oxford Eco Centre, 950 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-03-17', 0, 0, 'wazhiyuan', '2014-04-14', 'wang1121', '2010-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS612821409168', '鄺心穎', 1, '+81 52-832-2106', 2, '814569315025304881', '27F, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1994-02-07', 0, 0, 'swk8', '2008-03-21', 'kwongsw', '2016-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS621242552729', 'Stephanie Gardner', 0, '+1 718-760-7263', 2, '553329455614123524', '978 Columbia St Suite 13, Brooklyn, NY 11231, United States', '1993-02-07', 0, 0, 'stephanieg', '2017-09-14', 'gardnstephanie71', '2010-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS962460638218', '島田優奈', 1, '+44 (20) 2319 3912', 0, '786177445769783822', 'Unit 44, Oxford Eco Centre, 436 Regent Street, London, W1B 2LX, United Kingdom', '1992-06-29', 0, 0, 'shimadayuna10', '2007-07-26', 'shimyu', '2014-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS471900893213', '郝杰宏', 1, '+81 66-073-4732', 1, '762548042819105294', '6F, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1988-03-30', 0, 0, 'haojieho', '2019-01-14', 'hao6', '2012-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS559453506285', '陆致远', 0, '+1 330-107-3487', 3, '142986648945585956', '987 Fern Street Suite 24, Akron, OH 44307, United States', '1992-04-15', 0, 0, 'lu1976', '2009-06-14', 'lu3', '2019-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS336743661737', '孫嘉欣', 0, '+1 838-327-4275', 4, '412473083092664618', '409 Lark Street 3rd Floor, Albany, NY 12210, United States', '1992-06-21', 0, 0, 'hsuankaryan', '2008-08-20', 'karyanhsuan', '2016-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS503609493056', '于璐', 1, '+86 28-922-3007', 2, '223833107523686502', 'No.7 building, No. 688, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-08-16', 0, 0, 'yul', '2002-07-30', 'lu1954', '2021-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS615699703557', 'Gloria Roberts', 1, '+81 80-7846-0865', 2, '310321967279943796', '30F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-03-03', 0, 0, 'rg7', '2000-07-19', 'robertsgloria3', '2017-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS507909031831', '孟云熙', 1, '+81 11-611-6146', 2, '610272273225074796', '35-kai, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-01-04', 0, 0, 'yunxi210', '2021-08-27', 'yumeng114', '2009-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS264860334163', 'Joanne Washington', 0, '+86 192-1607-8760', 3, '581010148627160847', 'No.28 building, 671 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-09-10', 0, 0, 'washingtonjoanne', '2017-08-06', 'jwashington', '2016-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS694344983700', '加藤一輝', 1, '+81 80-1687-7189', 2, '401232548005585318', 'Rm. 33, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-10-23', 0, 0, 'kikki', '2001-11-12', 'katikki', '2013-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS156935795930', '冯秀英', 1, '+81 11-975-0197', 1, '934050144776731925', '日本札幌中央区宮の森四条六丁目1番5号35階', '1992-08-18', 0, 0, 'xiuying1115', '2002-04-24', 'xiuyingf15', '2020-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS723556335738', '平野光莉', 0, '+81 80-0946-6196', 1, '181604584142247982', '日本東京渋谷区代々木二丁目3番6号3階', '1998-01-11', 0, 0, 'hhirano76', '2001-08-11', 'hikarih03', '2010-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS293200274571', '森翼', 1, '+44 (121) 279 1302', 2, '688978274375117591', 'No.36 Main building, 131 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-10-24', 0, 0, 'mtsubasa', '2011-11-18', 'tsubam', '2007-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS466423415306', '谷梓晴', 1, '+1 213-982-8331', 0, '261943773148921030', '126 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1994-10-16', 0, 0, 'kootc', '2003-05-13', 'tszching1957', '2014-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS376523998515', 'Cynthia Martin', 1, '+44 (20) 1658 9744', 0, '620077868049692921', 'Unit 30, Oxford Eco Centre, 797 Regent Street, London, W1B 2LX, United Kingdom', '1988-11-17', 0, 0, 'macynth318', '2000-12-30', 'cynthia120', '2010-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS525127065586', '鈴木湊', 1, '+81 66-735-2332', 0, '338789337935120518', '40F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-01-17', 0, 0, 'sminato', '2019-02-21', 'minato10', '2005-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS177842057324', '刘云熙', 1, '+1 330-955-3042', 1, '091115288939008368', '902 Riverview Road Suite 24, Akron, OH 44313, United States', '1992-03-04', 0, 0, 'liuyunxi', '2015-01-01', 'yunxiliu', '2013-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS865661355494', '小川紗良', 0, '+81 74-320-6983', 2, '286400254058922830', '日本ならし学園南三丁目9番19号33階', '1987-08-10', 0, 0, 'ogawasa', '2003-10-18', 'ogawas54', '2017-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS751083428882', '夏震南', 1, '+44 5024 740930', 1, '920439978964267092', 'Unit 32, Oxford Eco Centre, 428 New Street, Birmingham, B2 4DB, United Kingdom', '1986-01-01', 0, 0, 'xiazhenn104', '2017-05-17', 'xiazh', '2020-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS114379854543', '渡部愛梨', 1, '+1 838-902-7585', 4, '949722329936829101', '806 Central Avenue Apartment 3, Albany, NY 12206, United States', '1989-06-17', 0, 0, 'watanabeairi3', '2017-05-18', 'airwatanabe', '2017-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS683292405733', 'Anita Daniels', 0, '+1 718-632-8027', 2, '914434031566374143', '580 Columbia St Apt 11, Brooklyn, NY 11231, United States', '1996-05-25', 0, 0, 'anitadaniels49', '2001-02-04', 'daniels1002', '2014-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS248432749602', '杨子韬', 0, '+1 838-926-1486', 2, '473558210081536806', '98 Broadway Apartment 11, Albany, NY 12207, United States', '1991-11-09', 0, 0, 'zyang4', '2017-03-15', 'zitao709', '2003-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS405703879738', 'Clarence Griffin', 0, '+86 10-8934-4247', 1, '536259655940184596', 'Room 15, CR Building, 797 Yueliu Rd, Fangshan District, Beijing, China', '1994-11-13', 0, 0, 'claregriffin', '2019-09-16', 'clargriffin', '2021-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS343093598340', '中野結翔', 1, '+86 141-1486-6118', 3, '632769735017670070', 'No.8 building, 416 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-03-30', 0, 0, 'yuito13', '2019-01-12', 'yuito302', '2019-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS968927576815', '夏致远', 0, '+86 769-0128-5763', 2, '467178904614264412', '中国东莞东泰五街371号38室', '1997-01-18', 0, 0, 'zhiyuan626', '2012-07-18', 'xiazhiyuan1', '2000-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS378374443299', '遠藤明菜', 0, '+81 80-4409-1307', 2, '510015233767240623', '日本札幌白石区菊水三条五丁目4番18号3号室', '1987-06-28', 0, 0, 'akinaendo', '2012-12-03', 'endak', '2004-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS472545921255', '崔岚', 1, '+81 70-9967-9885', 3, '955281087167803451', '日本なごやし熱田区千年二丁目5番9号19階', '1986-08-09', 0, 0, 'cuila', '2003-07-26', 'cui1972', '2017-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS609577878068', '毛宇宁', 0, '+81 3-0283-7257', 2, '096716493766157486', '日本東京港区東新橋一丁目5番3号44階', '1997-11-06', 0, 0, 'ymao', '2001-05-11', 'mao88', '2010-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS787949633104', 'Jonathan Edwards', 0, '+86 187-9806-0804', 2, '396203772415461793', 'No.49 building, 794 Jiangnan West Road, Haizhu District, Guangzhou, China', '1997-10-04', 0, 0, 'jonathaned', '2011-06-05', 'edwjon', '2014-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS438573117778', 'Wanda Cole', 0, '+1 614-001-6753', 3, '506828358088998078', '679 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-03-19', 0, 0, 'wandacole1221', '2019-02-21', 'cwa', '2021-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS492873663775', '藤原百花', 0, '+81 74-006-4953', 4, '015962849663450288', '4F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-02-11', 0, 0, 'momoka2', '2020-09-04', 'fujm', '2018-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS260853314709', '孙秀英', 0, '+81 80-5874-2213', 3, '119988349212086708', '日本なごやし瑞穂区河岸町四丁目20番11号12階', '1989-02-10', 0, 0, 'xiuying2', '2004-11-19', 'xiuys', '2018-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS580243453204', '高木光莉', 0, '+86 10-889-5011', 3, '568422467752928315', '中国北京市房山区岳琉路630号20号楼', '1995-06-15', 0, 0, 'hikarita', '2015-10-17', 'takagihikari', '2006-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS624131504915', '邓晓明', 1, '+1 330-307-6260', 0, '548466562678315208', '48 Collier Road Apt 2, Akron, OH 44320, United States', '1991-09-27', 0, 0, 'xden704', '2001-08-14', 'xiaomingdeng', '2001-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS582285276669', '李子异', 1, '+81 74-890-2019', 1, '520432362536739063', '22-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1985-04-23', 0, 0, 'lziyi', '2005-01-15', 'ziyi3', '2012-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS964046544480', '後藤優奈', 0, '+86 10-2928-3509', 2, '168648338063330549', 'No.38 building, 390 Sanlitun Road, Chaoyang District, Beijing, China', '1993-05-11', 0, 0, 'yuna903', '2004-05-02', 'gotoyuna', '2010-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS657053551079', '蕭永權', 1, '+81 70-0801-7860', 1, '137660087606101210', '日本東京千代田区丸の内一丁目6番12号17号室', '1991-03-06', 0, 0, 'wksiu', '2020-05-15', 'wingkuensiu98', '2014-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS127963432026', '李璐', 1, '+44 (1865) 04 4907', 0, '770509856980046804', 'No.12 Main building, 865 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-05-27', 0, 0, 'luli', '2012-07-30', 'lil', '2017-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS551948088817', '岩崎百恵', 1, '+81 66-022-6179', 0, '369454248312441437', '46-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1988-12-08', 0, 0, 'momi', '2011-03-24', 'iwasakim6', '2014-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS912929283581', '呂家明', 1, '+86 155-6097-9225', 2, '189149812774883407', 'Room 10, 400 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-03-16', 0, 0, 'kaming5', '2001-10-31', 'luikam315', '2006-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS356517018697', '崔心穎', 1, '+86 182-9316-6378', 4, '716231821464110341', '中国中山乐丰六路201号16楼', '1996-03-20', 0, 0, 'swchoi720', '2004-05-16', 'choi1989', '2015-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS237623995033', '宋詩涵', 0, '+86 143-4773-6953', 4, '968158197926597913', '中国成都市成华区双庆路112号华润大厦43室', '1991-02-24', 0, 0, 'sonshihan4', '2005-08-14', 'shihanson', '2020-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS803435901447', '許祖兒', 1, '+86 10-7582-1209', 2, '411467293599162970', '36F, 661 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-01-04', 0, 0, 'cyhu80', '2017-02-16', 'choyeehui3', '2019-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS927212948019', '毛子韬', 1, '+86 194-1993-9911', 3, '754367554622817978', '中国上海市徐汇区虹桥路169号27室', '1990-02-01', 0, 0, 'maozitao58', '2022-02-06', 'zitaomao', '2014-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS649322449733', 'Vincent Richardson', 1, '+81 52-803-0976', 2, '778670097924939033', '43F, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1997-03-15', 0, 0, 'rv6', '2008-03-27', 'vincr', '2010-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS812027304354', 'Susan Burns', 1, '+1 312-421-8516', 2, '039032471141043930', '423 North Michigan Ave Suite 4, Chicago, IL 60611, United States', '1998-03-14', 0, 0, 'burnsusan2', '2009-02-06', 'burns1', '2009-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS370680541830', 'Nicole Bryant', 1, '+86 188-9658-9855', 3, '197050675742540385', '28F, No.91, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-07-31', 0, 0, 'bryantn2', '2002-11-29', 'bryannicole', '2018-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS396229179429', 'David Stone', 0, '+81 11-118-8327', 2, '691213108645638904', '日本札幌白石区菊水三条五丁目2番6号27階', '1995-05-15', 0, 0, 'stonedavid1', '2013-12-03', 'david74', '2008-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS968114302249', '吳永發', 1, '+81 11-198-9066', 0, '345928766644050481', '日本札幌清田区真栄四条五丁目19番1号43階', '1994-07-17', 0, 0, 'nwingfat', '2017-11-25', 'wingfat6', '2010-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS626596504826', '韩岚', 0, '+86 760-677-4895', 1, '838231703757437656', '中国中山紫马岭商圈中山五路292号28栋', '1997-02-25', 0, 0, 'laha527', '2007-04-11', 'lanhan', '2021-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS394337054614', '鐘秀文', 0, '+1 614-760-5698', 1, '206034255105113630', '889 Wicklow Road Apt 3, Columbus, GA 43204, United States', '1985-01-29', 0, 0, 'smchun', '2001-07-15', 'smchung', '2007-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS475739459734', 'Irene Ramos', 1, '+86 147-1679-8737', 4, '022079221677911371', '中国东莞环区南街二巷536号32楼', '1996-10-30', 0, 0, 'ramosi', '2010-01-28', 'ir4', '2018-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS691537442652', '冯致远', 1, '+86 199-2957-4266', 1, '110872857275334041', '27F, 941 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-08-01', 0, 0, 'zhiyuanfeng815', '2012-06-03', 'fz1968', '2009-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS563714391479', '范安琪', 1, '+86 176-0578-4039', 4, '209967240860646983', 'Room 34, 378 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-06-18', 0, 0, 'anqifan', '2001-10-17', 'anqifa', '2002-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS185880470270', '區志明', 0, '+86 171-5859-3828', 3, '830112640892446702', '中国北京市西城区复兴门内大街864号4楼', '1995-11-04', 0, 0, 'achimi', '2019-04-30', 'cmau', '2022-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS064899530436', 'Sharon Mendez', 1, '+1 213-731-3725', 3, '916992362630485285', '833 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1990-08-28', 0, 0, 'sharon119', '2015-11-01', 'mendsharon', '2000-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS698053338232', 'Carl Perry', 0, '+86 755-658-1924', 1, '568882237233477344', 'Room 4, CR Building, 876 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-03-13', 0, 0, 'caperry1007', '2018-10-13', 'perrca9', '2005-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS134428327948', 'Francis Gibson', 0, '+81 74-850-7215', 3, '560892692058839284', '日本ならし学園南三丁目9番17号23号室', '1985-05-04', 0, 0, 'francisgibso03', '2019-02-09', 'francisgibson5', '2001-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS911130483477', 'Eugene Roberts', 0, '+44 7675 969549', 3, '856410299132119519', 'Unit 24, Oxford Eco Centre, 375 Hanover Street, London, W1S 1YD, United Kingdom', '1986-07-21', 0, 0, 'robeeugene', '2000-11-18', 'robertseugen', '2010-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS214790180792', '江國明', 1, '+81 3-9626-1391', 1, '945058667759200737', '日本東京品川区東五反田五丁目2番17号32号室', '1993-09-20', 0, 0, 'kwokmingkon', '2004-06-15', 'kong8', '2000-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS290531534858', 'Gerald Clark', 1, '+86 197-2622-0637', 2, '544485412589639756', 'No.7 building, 510 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-06-14', 0, 0, 'geraldcla804', '2001-07-15', 'gerclar2', '2009-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS894078615103', 'Edwin Henry', 1, '+86 157-5270-1607', 2, '191042553465203421', '中国成都市锦江区红星路三段446号7室', '1987-02-20', 0, 0, 'henryedwin1', '2021-03-17', 'edwinhenry8', '2016-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS327233009659', '莫秀英', 1, '+86 196-4962-5621', 2, '992990653318758385', 'No.41 building, 96 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1989-08-08', 0, 0, 'moxiuying', '2014-07-16', 'mox', '2009-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS600954156360', '高木聖子', 1, '+44 5709 844032', 2, '083618317224096285', 'Flat 44, 731 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-07-24', 0, 0, 'takags2', '2016-09-10', 'takagise', '2006-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS022778162933', '田安琪', 0, '+81 80-0204-1761', 2, '286399441095532904', '28F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-01-13', 0, 0, 'tonkay', '2020-09-03', 'onkay56', '2015-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS475518508665', 'Mark Dixon', 0, '+44 (1223) 92 0771', 0, '342592325667797322', 'Unit 14, Oxford Eco Centre, 876 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-12-27', 0, 0, 'dixonmar', '2021-03-28', 'markdix925', '2010-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS418778544305', '蘇志遠', 1, '+1 838-236-6651', 1, '097336972223995225', '344 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-09-04', 0, 0, 'sochiyuen', '2000-12-11', 'cyso', '2010-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS885471131128', '严嘉伦', 0, '+81 11-184-4153', 3, '667729891840479690', '日本札幌白石区菊水三条五丁目2番11号33号室', '1992-07-11', 0, 0, 'jiayan', '2001-07-20', 'jiaya', '2021-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS405161796418', 'Craig Robinson', 1, '+81 52-048-7918', 3, '361857272170151720', 'Rm. 38, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-09-16', 0, 0, 'robinsoncraig8', '2014-01-29', 'craig6', '2019-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS051211677635', 'Jean Phillips', 1, '+81 52-096-3202', 3, '615836253852557497', '日本なごやし守山区瀬古東二丁目171番8号2階', '1986-04-17', 0, 0, 'jeanphil', '2021-05-05', 'philljean', '2006-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS158582761914', '彭宇宁', 1, '+44 (20) 1157 4607', 1, '024341860587603662', 'Flat 11, 921 Maddox Street, London, W1S 1PU, United Kingdom', '1996-12-13', 0, 0, 'yunipen', '2007-11-12', 'yunpeng', '2020-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS760997577796', 'Edward Gray', 0, '+81 3-3322-8165', 0, '683779165321495634', '12F, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-02-16', 0, 0, 'gray329', '2015-05-17', 'graedward', '2003-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS267990578954', '任云熙', 0, '+44 (116) 414 2004', 3, '840453228729267560', 'No.28 Main building, 877 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1995-11-06', 0, 0, 'yunxire', '2000-04-29', 'yren1', '2017-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS302708192322', '汪岚', 1, '+1 838-510-5712', 3, '747424795891356108', '514 Broadway Apartment 19, Albany, NY 12207, United States', '1991-07-07', 0, 0, 'lwang', '2004-10-29', 'lanwang8', '2016-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS943681991934', '杜岚', 0, '+81 70-6209-0779', 3, '834190504681342434', 'Rm. 9, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-05-29', 0, 0, 'dlan', '2017-05-04', 'dulan', '2020-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS449474531794', 'Louis Parker', 0, '+86 20-157-6666', 0, '137918198300889061', '中国广州市海珠区江南西路817号43室', '1987-07-02', 0, 0, 'louis501', '2013-07-14', 'louipa6', '2012-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS973497148976', '萧云熙', 0, '+44 5987 726592', 1, '929927143453095286', 'Unit 1, Oxford Eco Centre, 213 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-02-09', 0, 0, 'yunxi2', '2000-06-19', 'yunx', '2008-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS561156019400', '彭安琪', 1, '+44 (121) 601 4999', 0, '416691614965633336', 'Flat 11, 69 New Street, Birmingham, B2 4DB, United Kingdom', '1998-02-17', 0, 0, 'anqi51', '2014-03-09', 'penga', '2010-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS720482544856', '許詩君', 1, '+86 28-2112-5570', 2, '304178449803269900', 'Room 50, No. 375, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-07-20', 0, 0, 'szekwan10', '2001-04-14', 'skh1', '2010-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS622945489425', '區明詩', 0, '+86 165-7790-5071', 3, '294498035822893685', '中国上海市徐汇区虹桥路934号42栋', '1986-03-21', 0, 0, 'aumingsze', '2000-09-27', 'msau', '2000-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS324269287322', '阿部翼', 0, '+1 312-349-3270', 4, '728596976303335084', '538 Rush Street Apartment 15, Chicago, IL 60611, United States', '1985-03-13', 0, 0, 'abtsu1', '2016-02-27', 'abet', '2004-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS285876306435', '原田紗良', 0, '+86 170-1615-8071', 1, '194092066747896713', '中国中山紫马岭商圈中山五路412号34号楼', '1998-09-20', 0, 0, 'sarah', '2012-11-01', 'has10', '2021-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS315806962759', '秦杰宏', 0, '+81 80-9718-9850', 2, '765796762890764059', '日本おおさかし西成区出城一丁目1番16号2号室', '1992-04-04', 0, 0, 'qjiehong', '2015-03-16', 'jiehongqin', '2021-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS745275200419', '姜梓晴', 1, '+86 760-794-7083', 2, '989763084861268708', '中国中山天河区大信商圈大信南路880号20室', '1990-10-25', 0, 0, 'changtszching2', '2012-05-03', 'tszching7', '2020-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS756645227930', '呂慧珊', 1, '+86 760-991-7803', 2, '569690466081804331', '中国中山乐丰六路326号43栋', '1997-07-30', 0, 0, 'luiwaisan7', '2005-10-26', 'luiwai', '2011-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS808290192342', '餘發', 1, '+44 5085 935638', 2, '362596453182279407', 'Unit 15, Oxford Eco Centre, 621 New Street, Birmingham, B2 4DB, United Kingdom', '1985-09-27', 0, 0, 'yue4', '2006-06-17', 'yue210', '2004-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS343458923133', 'Patrick Hicks', 0, '+81 66-498-5256', 1, '241907844116016197', '日本おおさかし近江堂一丁目7番13号35階', '1992-01-21', 0, 0, 'hp303', '2013-03-14', 'hicks1214', '2019-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS422539245861', '盧惠敏', 1, '+86 197-6033-3565', 3, '999006407290706766', 'Room 14, 270 Yueliu Rd, Fangshan District, Beijing, China', '1996-04-05', 0, 0, 'waimanlo', '2018-10-09', 'lowm', '2010-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS217182003463', '朱璐', 0, '+81 90-0489-7372', 1, '676478943449164950', 'Rm. 43, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-20', 0, 0, 'zhulu717', '2009-05-31', 'lu82', '2000-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS658026484798', 'Albert Lopez', 1, '+81 80-7052-9373', 3, '513476310104576701', 'Rm. 28, 1-7-8 Saidaiji Akodacho, Nara, Japan', '1998-08-20', 0, 0, 'lalbert14', '2002-02-15', 'lopeza', '2005-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS689525513688', '韦子异', 0, '+86 755-225-6499', 3, '033109304516799845', 'Room 9, CR Building, 163 Shennan Ave, Futian District, Shenzhen, China', '1998-06-12', 0, 0, 'weiziyi', '2015-04-02', 'ziyiwei', '2009-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS065805453338', '翁發', 0, '+81 66-895-8969', 1, '307460788322639697', '21-kai, 1-7-10 Omido, Higashiosaka, Osaka, Japan', '1998-04-21', 0, 0, 'faty', '2009-12-18', 'faty8', '2016-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS963887965325', '大野大地', 1, '+44 7152 954975', 1, '727036965830636466', 'Block 10, 66 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-03-26', 0, 0, 'daichiono', '2005-04-11', 'daichi9', '2006-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS316476542591', '彭慧珊', 1, '+86 10-2502-0884', 4, '397868060889006995', '中国北京市东城区东单王府井东街288号29室', '1997-08-11', 0, 0, 'wspang', '2014-02-07', 'waisanp', '2016-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS671003763227', '中島玲奈', 1, '+86 179-0189-5854', 4, '576207310253276679', '中国深圳福田区景田东一街836号华润大厦42室', '1993-01-16', 0, 0, 'nakajimare', '2010-11-01', 'nakaren', '2013-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS977663720155', '田晓明', 0, '+86 21-0575-0329', 3, '784282590863494519', '中国上海市徐汇区虹桥路923号27室', '1998-09-04', 0, 0, 'tiaxiaoming1986', '2014-09-01', 'xtian8', '2006-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS014365971446', 'Carrie Alvarez', 0, '+81 80-9804-7035', 2, '521521606383419960', 'Rm. 4, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-12-02', 0, 0, 'carrieal', '2010-01-08', 'alvarezca', '2001-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS808507664664', '许詩涵', 0, '+81 52-156-5264', 0, '952670989117157344', 'Rm. 19, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-08', 0, 0, 'shihaxu6', '2018-06-29', 'xushi47', '2003-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS349899784962', '廖安琪', 1, '+86 160-3929-8007', 1, '135149146955604177', 'Room 10, No. 602, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-02-27', 0, 0, 'anqi1', '2002-07-04', 'anqiliao', '2021-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS759167573944', '邵惠妹', 1, '+86 155-0761-5904', 2, '227096460996608736', '中国北京市東城区東直門內大街397号33栋', '1996-01-11', 0, 0, 'shui', '2004-01-03', 'sihuimei2', '2001-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS386678821229', '莫震南', 1, '+44 5372 859325', 0, '600377702067051376', 'No.27 Main building, 786 Maddox Street, London, W1S 1PU, United Kingdom', '1997-03-01', 0, 0, 'zhennan810', '2006-08-12', 'zhennan809', '2020-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS347745294170', 'Tina Munoz', 0, '+86 20-459-1137', 1, '746874504598354972', '中国广州市海珠区江南西路815号13楼', '1993-06-05', 0, 0, 'munozt', '2018-11-30', 'munot', '2008-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS868783966058', '徐睿', 0, '+44 5098 339139', 0, '018347848734486447', 'Block 16, 404 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-07-17', 0, 0, 'xru1942', '2021-02-10', 'xur', '2019-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS609375399906', 'Lori Kelley', 0, '+86 28-8102-9140', 3, '999865840436774965', '22F, No.239, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-07-21', 0, 0, 'lori93', '2018-05-29', 'kelley1', '2017-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS972244697769', 'Pamela Tucker', 0, '+81 90-2883-7267', 1, '148381408938466001', '日本ならし西大寺赤田町一丁目7番6号15階', '1996-09-10', 0, 0, 'patucker', '2000-03-12', 'tuckerpamela', '2007-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS006155582809', '王致远', 0, '+81 74-652-5039', 3, '718875191460190262', 'Rm. 25, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1990-10-19', 0, 0, 'wang305', '2015-01-26', 'wangzhiyuan', '2000-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS873260148608', '林宇宁', 0, '+1 838-024-7870', 2, '530689050112325540', '140 Central Avenue Suite 14, Albany, NY 12206, United States', '1994-08-24', 0, 0, 'yuninglin', '2008-03-01', 'liny', '2014-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS637919040598', 'Don Warren', 1, '+86 190-4253-3491', 2, '483523947839472157', 'Room 13, CR Building, 802 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-01-10', 0, 0, 'wd15', '2006-02-15', 'donw', '2006-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS843611716244', 'Stanley Cooper', 0, '+44 (151) 099 3611', 3, '872078364479078607', 'Unit 27, Oxford Eco Centre, 527 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-01-13', 0, 0, 'costanley', '2022-02-06', 'coopers', '2010-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS309934912266', '刘杰宏', 1, '+86 769-2348-3655', 1, '654354121285652788', 'No.31 building, 666 Huanqu South Street 2nd Alley, Dongguan, China', '1988-06-11', 0, 0, 'liujiehong', '2019-07-16', 'liujiehong609', '2019-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS243510398150', 'Roger Gardner', 0, '+81 52-313-4640', 2, '332382770492883441', '21F, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1996-06-19', 0, 0, 'grog6', '2005-10-11', 'rogg', '2005-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS902769650710', '三浦百花', 0, '+1 213-390-1602', 1, '536994593529958974', '713 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-10-24', 0, 0, 'momokamiura108', '2020-03-18', 'mmomo', '2012-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS685066355231', 'Ryan Parker', 1, '+81 66-297-6272', 2, '024235453824698244', 'Rm. 23, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-10-30', 0, 0, 'rparker', '2000-02-06', 'parkerr', '2012-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS838370198689', '叶璐', 1, '+44 7858 496462', 0, '651317943783987340', 'Flat 26, 727 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-06-16', 0, 0, 'luy', '2002-05-02', 'lye90', '2012-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS221700545352', 'Evelyn Diaz', 0, '+81 74-611-0851', 3, '822770300238266688', '日本ならし西大寺赤田町一丁目7番12号7号室', '1992-12-14', 0, 0, 'evelyn109', '2006-12-11', 'evelyd1971', '2021-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS639670203246', '池田大地', 0, '+44 (151) 172 3182', 2, '463166908531052486', 'Unit 29, Oxford Eco Centre, 202 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-09-06', 0, 0, 'daichiikeda2', '2020-08-12', 'ida8', '2017-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS973310859921', '方明詩', 1, '+44 (20) 8883 6382', 3, '945526331724744311', 'Unit 10, Oxford Eco Centre, 208 Maddox Street, London, W1S 1PU, United Kingdom', '1989-05-18', 0, 0, 'mingsze7', '2002-04-22', 'mingsze20', '2011-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS752708633252', '安藤蒼士', 0, '+81 66-929-3167', 1, '406228199209614987', '日本おおさかし平野区加美東四丁目9番20号19階', '1991-02-24', 0, 0, 'aoshiando105', '2018-05-20', 'aoshia', '2007-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS122314118592', 'Sharon Grant', 1, '+81 74-112-1940', 3, '196370303205539579', '日本ならし大和郡山市本庄町一丁目1番1号4号室', '1994-04-14', 0, 0, 'sharon8', '2006-07-12', 'sharongra2017', '2014-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS917786308378', '何睿', 1, '+86 769-108-2036', 0, '605698314987939825', '中国东莞环区南街二巷917号19栋', '1995-06-06', 0, 0, 'rui7', '2003-10-14', 'ruih', '2013-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS475483314025', '石井葵', 0, '+81 90-1240-6939', 0, '711380841862117422', '日本札幌清田区真栄四条五丁目19番10号20階', '1996-12-14', 0, 0, 'aoiishi', '2000-07-22', 'ishiao', '2007-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS729424548461', 'Cheryl Mitchell', 0, '+1 212-632-2143', 2, '795229802072492337', '882 Fifth Avenue Apartment 11, New York, NY 10017, United States', '1986-11-17', 0, 0, 'mitchellc', '2017-09-27', 'cmitchell', '2009-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS886928303047', '太田葵', 1, '+86 10-111-1005', 3, '461660914821803884', 'No.28 building, 445 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-05-15', 0, 0, 'otaa', '2014-05-10', 'otaao', '2012-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS489028801076', '後藤詩乃', 0, '+81 66-265-1084', 2, '636983291374803900', '43-kai, 2-1-19 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-12-31', 0, 0, 'goto4', '2020-07-08', 'shinogot', '2010-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS412166414648', '苑國權', 1, '+86 769-2142-3784', 0, '925880898415653326', 'No.21 building, 459 Huanqu South Street 2nd Alley, Dongguan, China', '1990-12-22', 0, 0, 'yuenkk16', '2016-04-24', 'yuen10', '2005-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS125124747248', 'Tina Moore', 1, '+86 10-950-1432', 1, '961841094291648328', '中国北京市東城区東直門內大街938号47栋', '1994-04-25', 0, 0, 'mtina9', '2001-09-19', 'tinmoore2', '2004-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS804778676752', '萬力申', 1, '+81 90-2646-9369', 2, '652482382801891926', '日本ならし西大寺赤田町一丁目7番20号19階', '1990-03-13', 0, 0, 'mengliksun1207', '2013-04-13', 'menliksun', '2011-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS481586266577', '竹内美咲', 1, '+81 70-4236-3732', 1, '373577319078308951', '46-kai, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1986-11-03', 0, 0, 'misatakeuchi', '2009-09-15', 'misaki1015', '2019-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS483329454930', '藤頴璇', 1, '+81 66-681-9926', 2, '639788431901915756', '38-kai, 2-1-13 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-08-24', 0, 0, 'wingsuen6', '2003-03-08', 'tang1', '2014-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS452838774743', '伊藤光莉', 0, '+86 21-372-5188', 3, '975168941436591609', 'Room 38, CR Building, 84 Jianxiang Rd, Pudong, Shanghai, China', '1992-12-27', 0, 0, 'hikari74', '2008-09-20', 'itohikari', '2007-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS892483154006', 'Louis Harris', 0, '+44 (20) 3023 2284', 2, '493468031361391384', 'Unit 11, Oxford Eco Centre, 633 Regent Street, London, W1B 2LX, United Kingdom', '1987-09-05', 0, 0, 'harrilouis', '2002-04-03', 'harloui', '2010-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS213127389568', '武田結翔', 0, '+1 312-278-2841', 3, '304393457967339623', '22 Rush Street Suite 46, Chicago, IL 60611, United States', '1985-03-14', 0, 0, 'yuitotakeda', '2000-03-06', 'takyuito', '2004-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS336339098102', '馮國明', 1, '+86 160-2631-8075', 0, '382968512272873232', '中国中山京华商圈华夏街849号华润大厦32室', '1988-09-05', 0, 0, 'fung2', '2008-11-30', 'kmfun', '2012-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS710194761871', '高田桜', 1, '+1 718-067-7114', 1, '481659419972203844', '796 Bergen St Apartment 36, Brooklyn, NY 11217, United States', '1990-12-23', 0, 0, 'satakada5', '2004-06-14', 'takadas10', '2010-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS286602035679', 'Sandra Allen', 0, '+86 134-7509-7460', 3, '491733108805583344', 'Room 25, CR Building, 938 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-02-12', 0, 0, 'sandra829', '2008-08-07', 'allesandra', '2020-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS815135051216', '朱致远', 0, '+44 (151) 636 3490', 2, '355192678309147221', 'No.7 Main building, 193 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-03-21', 0, 0, 'zhuzhiyuan', '2006-08-24', 'zhuzhiyuan', '2014-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS407361383483', '何德華', 1, '+1 213-829-1792', 1, '585721865199385781', '384 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-03-07', 0, 0, 'htw', '2006-10-27', 'hotw', '2010-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS262481233462', '梁子异', 1, '+86 755-006-9785', 2, '742413016774317759', '中国深圳罗湖区田贝一路709号34楼', '1994-01-08', 0, 0, 'liangziyi1979', '2020-03-27', 'zl213', '2004-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS978386222342', 'Jeffery Silva', 0, '+86 138-7115-6685', 1, '186236959145861469', 'Room 45, No.124, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-11-13', 0, 0, 'silvajeffe', '2008-11-23', 'jefferysilva408', '2001-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS087059278556', '呂志明', 1, '+44 5199 854034', 4, '539117083247843622', 'No.18 Main building, 802 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-01-24', 0, 0, 'luichiming', '2005-03-13', 'luichim', '2016-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS089930412483', '湯富城', 0, '+81 11-793-7042', 1, '769048191258637081', '32F, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-12-05', 0, 0, 'fushingtong', '2007-01-19', 'tonfs6', '2007-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS461513988427', '薛子异', 1, '+86 188-5630-3582', 2, '992229617324703012', '16F, 677 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-03-24', 0, 0, 'ziyix904', '2012-02-08', 'xziyi', '2002-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS423610694215', '叶嘉伦', 1, '+86 161-3368-6547', 2, '135686820999596349', '中国上海市黄浦区淮海中路28号华润大厦36室', '1997-07-11', 0, 0, 'yejialu617', '2012-12-05', 'ye430', '2004-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS539711432401', '贺宇宁', 0, '+1 312-777-0430', 4, '445997839493460819', '434 North Michigan Ave Apartment 45, Chicago, IL 60611, United States', '1985-05-17', 0, 0, 'heyunin', '2014-07-06', 'yunih1966', '2006-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS207683848505', '蔣安娜', 0, '+81 70-7851-2174', 3, '826320013149145223', '24F, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-01-20', 0, 0, 'chiaonna', '2005-11-11', 'chianon69', '2016-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS412935000734', '常秀英', 0, '+81 66-858-5399', 3, '224134258316098409', '7-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-07-18', 0, 0, 'xiuying527', '2014-09-10', 'chx', '2018-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS491248670390', '區裕玲', 0, '+81 74-190-0091', 3, '551370399712493492', '日本ならし大和郡山市本庄町一丁目1番17号23階', '1998-01-01', 0, 0, 'auyu', '2021-03-06', 'yulingau9', '2001-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS684200612618', '雷睿', 0, '+81 80-1663-3346', 3, '955236123513547211', '19F, 2-1-5 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-02-02', 0, 0, 'rul', '2014-04-08', 'rui309', '2013-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS871078635281', '佐藤美緒', 1, '+81 70-8545-9957', 4, '944998190672037804', '日本おおさかし平野区加美東四丁目9番20号44階', '1991-11-24', 0, 0, 'misato', '2002-04-15', 'mios', '2014-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS459130887302', 'Judith Alvarez', 1, '+81 80-0285-2112', 3, '864181654774453030', 'Rm. 25, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1993-06-26', 0, 0, 'alvarezj5', '2013-11-24', 'alvarezjud903', '2006-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS378129871692', '岩崎花', 1, '+86 760-8925-6573', 1, '121831637081616676', '中国中山紫马岭商圈中山五路556号华润大厦1室', '1985-04-01', 0, 0, 'hanaiw', '2019-02-03', 'iwasakihan', '2006-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS172649645204', '崔嘉伦', 0, '+86 755-185-8791', 2, '383360767053817997', '15F, 970 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-03-15', 0, 0, 'jialun629', '2004-11-30', 'jialcui', '2007-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS862416234753', '贾晓明', 0, '+44 (161) 621 6323', 1, '224492768252242416', 'Unit 4, Oxford Eco Centre, 282 Portland St, Manchester, M1 3LA, United Kingdom', '1990-07-23', 0, 0, 'jiaxia1960', '2012-05-01', 'jiaxiaoming1108', '2016-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS632565595873', '内田一輝', 1, '+81 11-559-7309', 2, '395664163650233865', '日本札幌中央区宮の森四条六丁目1番5号31階', '1998-01-14', 0, 0, 'uchida3', '2006-10-30', 'ikkuc730', '2014-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS068733513573', '石田絢斗', 1, '+86 760-5642-8418', 1, '273467309002934292', '中国中山紫马岭商圈中山五路25号4楼', '1997-08-22', 0, 0, 'ai48', '2011-06-20', 'ayaish10', '2014-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS333497730653', '太田樹', 0, '+81 80-9858-4287', 0, '422042804137219944', 'Rm. 47, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-03-17', 0, 0, 'oitsuki5', '2009-04-13', 'iota', '2009-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS529729377267', 'Herbert Vargas', 1, '+86 144-1346-8833', 3, '226172610677684554', '中国东莞坑美十五巷59号华润大厦27室', '1987-04-18', 0, 0, 'hvargas', '2018-06-06', 'hv95', '2015-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS781543917517', 'Edward West', 1, '+81 70-5856-9844', 2, '388141140216511135', '日本なごやし北区清水三丁目19番15号6号室', '1988-02-14', 0, 0, 'edwardwest1', '2015-08-19', 'wedwar', '2014-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS353930867770', '島田美咲', 1, '+44 (20) 0470 5215', 2, '448450822813511191', 'No.43 Main building, 949 Hanover Street, London, W1S 1YD, United Kingdom', '1985-01-31', 0, 0, 'shimmisaki8', '2014-08-27', 'shimada9', '2020-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS119398335906', '古明', 0, '+44 7751 581014', 3, '630639029186555595', 'No.15 Main building, 275 Hanover Street, London, W1S 1YD, United Kingdom', '1998-07-16', 0, 0, 'km407', '2012-04-10', 'kuming', '2003-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS997603488447', '菅原大輔', 0, '+1 212-762-0859', 1, '101386163825435046', '607 Bank Street Apt 48, New York, NY 10014, United States', '1986-05-03', 0, 0, 'dsu', '2014-10-02', 'sugawaradaisuke', '2016-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS250649911327', '小川桜', 1, '+44 (1223) 08 7607', 4, '030936734579613432', 'Flat 2, 305 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-11-30', 0, 0, 'osakura', '2008-06-17', 'ogawa98', '2008-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS178918547132', 'Steve Flores', 1, '+81 90-4968-1448', 4, '349660602219790499', '24F, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-05-12', 0, 0, 'florsteve', '2009-09-21', 'flores1', '2010-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS807065811915', 'Thelma Robinson', 1, '+81 52-174-8455', 0, '456677217698795729', '日本なごやし守山区瀬古東二丁目171番5号27号室', '1990-12-06', 0, 0, 'thelmarobinson8', '2016-12-30', 'robinsonth', '2021-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS572724008489', '高橋蓮', 0, '+81 70-7463-6389', 1, '617080410421082164', '日本ならし学園南三丁目9番5号20階', '1994-02-07', 0, 0, 'rentakah', '2008-08-11', 'ren87', '2011-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS902632613812', 'Carol Watson', 1, '+86 197-8191-4411', 2, '921951504085258652', 'No.50 building, 688 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-03-14', 0, 0, 'watsc', '2013-12-30', 'carolw', '2010-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS357000835468', '中川翼', 1, '+44 5517 685427', 2, '973096804427130024', 'Flat 33, 808 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-04-09', 0, 0, 'nakagawatsub', '2003-10-19', 'tnakagawa9', '2000-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS553314672742', '山崎蓮', 1, '+81 70-4856-1948', 1, '142499012052015042', '11F, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-05-26', 0, 0, 'reny', '2010-06-18', 'reyamazaki', '2020-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS027904794329', '翁俊宇', 1, '+86 145-4848-7289', 2, '868767714526458562', 'No.29 building, 300 Jianxiang Rd, Pudong, Shanghai, China', '1990-10-25', 0, 0, 'chunyuy', '2008-09-17', 'yungcy', '2018-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS348424751363', 'Robert Brown', 1, '+86 130-3621-7862', 2, '249277277031672946', '中国北京市西城区西長安街981号华润大厦10室', '1997-08-27', 0, 0, 'robertbrown', '2011-02-04', 'robbrown1', '2013-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS805563285906', '高詠詩', 0, '+86 28-691-5228', 3, '909869094433931958', '中国成都市锦江区红星路三段446号48号楼', '1996-03-14', 0, 0, 'wskao66', '2020-03-02', 'kao67', '2008-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS110818788201', 'Justin Brooks', 0, '+81 74-432-4493', 4, '886250298017578874', '日本ならし大和郡山市本庄町一丁目1番10号48階', '1990-11-24', 0, 0, 'bjustin', '2006-01-20', 'brooks6', '2002-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS295547792132', 'Philip Cooper', 1, '+86 164-5678-8749', 3, '124534575349228265', '49F, 635 Huanqu South Street 2nd Alley, Dongguan, China', '1994-05-18', 0, 0, 'coophilip', '2016-10-02', 'philipcoop1985', '2010-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS591579405402', '文安娜', 0, '+81 70-5523-7987', 1, '057457054041730607', '1-kai, 4-9-9 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-04-20', 0, 0, 'onna1997', '2013-06-14', 'manon', '2001-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS216088609586', 'Ryan Gonzalez', 0, '+86 163-0732-5409', 1, '200396939823189725', 'Room 12, No. 166, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-07-05', 0, 0, 'rgon4', '2009-06-19', 'gryan', '2016-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS642791035620', 'Jesse Howard', 1, '+81 74-479-3163', 3, '279554727265940713', '日本ならし西大寺赤田町一丁目7番10号27階', '1991-03-22', 0, 0, 'jesseh', '2021-01-29', 'hjesse1994', '2004-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS485980932454', '董秀英', 0, '+81 66-871-3655', 3, '351326458479162172', '34-kai, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-07', 0, 0, 'xiuyingdon1129', '2013-12-28', 'dx1', '2000-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS741469135701', '斎藤樹', 0, '+81 66-818-7908', 1, '454227262675324865', 'Rm. 30, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-04-22', 0, 0, 'itsaito919', '2019-11-17', 'itsuki9', '2003-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS954689374325', 'Joanne Stephens', 1, '+81 90-5298-9205', 1, '682260604122177381', 'Rm. 8, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-09-01', 0, 0, 'stephens66', '2017-06-29', 'stephensjoann10', '2012-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS184720208990', '毛震南', 1, '+44 (161) 213 8387', 2, '715390634021651160', 'Block 14, 472 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-06-21', 0, 0, 'zhennm', '2017-09-27', 'zhennanmao', '2004-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS370740001228', 'Katherine Woods', 1, '+86 769-6450-3122', 3, '862501097774065926', '中国东莞东泰五街565号37栋', '1990-10-03', 0, 0, 'wk2001', '2020-01-05', 'woodk10', '2008-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS497664805757', '藤原結翔', 0, '+81 52-435-4286', 3, '031311229969159712', '43F, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-02-03', 0, 0, 'yuito1986', '2003-02-02', 'yuitf7', '2018-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS753288015412', '車國榮', 0, '+1 330-088-7901', 4, '499026162165301381', '405 Collier Road Apartment 37, Akron, OH 44320, United States', '1989-12-10', 0, 0, 'kwokwingch7', '2015-01-17', 'kwche10', '2004-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS843617676564', 'Charlotte Boyd', 0, '+44 (121) 957 3139', 4, '783926957151892525', 'Unit 26, Oxford Eco Centre, 998 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-05-04', 0, 0, 'boydcharl69', '2001-07-15', 'boyd1', '2018-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS051514001544', '成詠詩', 0, '+1 330-404-4271', 2, '461315085267999576', '270 West Market Street 3rd Floor, Akron, OH 44333, United States', '1997-05-09', 0, 0, 'shingws', '2001-07-02', 'shingwing20', '2017-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS447225668826', '羅慧琳', 0, '+1 614-975-3131', 1, '611226298829557740', '500 East Alley Apt 25, Columbus, GA 43201, United States', '1985-06-13', 0, 0, 'wailamlo', '2012-10-02', 'wailam6', '2017-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS880874600290', 'Ray Freeman', 1, '+86 10-9642-4045', 4, '730075196950959974', 'No.21 building, 637 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-17', 0, 0, 'freemanray7', '2019-08-23', 'rayfree', '2006-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS023792628701', '邹璐', 1, '+44 (161) 740 5581', 3, '600724284635123160', 'No.5 Main building, 269 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-12-11', 0, 0, 'zolu228', '2013-01-28', 'luzou11', '2021-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS820773484366', '梁致远', 0, '+81 80-5911-0316', 3, '835386060407966680', 'Rm. 43, 13-3-16 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-10-29', 0, 0, 'liang10', '2012-05-03', 'zliang42', '2001-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS463090832382', 'Frank Hall', 1, '+86 166-0324-4066', 3, '163807221532572267', '中国成都市锦江区人民南路四段129号华润大厦1室', '1998-05-18', 0, 0, 'hall7', '2007-09-07', 'hall6', '2005-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS448495818981', '井上花', 1, '+81 90-4181-2477', 1, '765014702128460486', '日本札幌白石区菊水三条五丁目2番8号5階', '1989-04-29', 0, 0, 'haino1982', '2013-05-23', 'hinoue', '2015-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS083139494616', 'Brenda Smith', 1, '+86 181-7007-5995', 1, '192541011246378361', '7F, 165 Dongtai 5th St, Dongguan, China', '1999-01-29', 0, 0, 'brensmith', '2001-11-08', 'smitb', '2015-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS904672313027', '容浩然', 1, '+81 80-8602-4782', 0, '725982571869118366', '31-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1991-09-07', 0, 0, 'hyy', '2016-12-19', 'yhy', '2002-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS572310538905', '高嘉伦', 0, '+81 70-3339-7339', 2, '428495147402980089', '1-kai, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-11-14', 0, 0, 'gaoj', '2009-11-03', 'jialg1', '2012-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS568581980251', 'Carmen Murphy', 1, '+81 66-046-3465', 1, '830885448501868952', '日本おおさかし西成区出城一丁目1番19号39号室', '1988-04-06', 0, 0, 'murphy1962', '2011-05-08', 'murphyc', '2008-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS424975141204', 'Daniel Stevens', 1, '+81 70-8752-3508', 2, '358319400495407530', '日本ならし大和郡山市本庄町一丁目1番20号46階', '1987-10-02', 0, 0, 'sdan', '2020-12-25', 'daniel6', '2005-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS315048655487', 'Anita Miller', 1, '+81 3-6490-4909', 3, '880635732958837863', '14F, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1987-12-16', 0, 0, 'millera', '2006-06-22', 'milleranit', '2006-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS909442228135', '袁裕玲', 0, '+44 5138 341994', 1, '909147832147024985', 'Flat 19, 636 Portland St, Manchester, M1 3LA, United Kingdom', '1989-02-10', 0, 0, 'ylyuen', '2019-08-07', 'yulingyuen', '2013-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS776192098829', '郭詩涵', 1, '+81 90-7854-0016', 3, '296377441811919576', '日本東京中央区銀座三丁目12番11号5階', '1988-03-27', 0, 0, 'shihanguo', '2016-07-02', 'guo7', '2012-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS271082353284', '文力申', 0, '+81 80-8813-0065', 1, '860202798181765128', '7-kai, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-07-26', 0, 0, 'mals', '2000-11-19', 'liksunman', '2001-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS174876261805', '谢晓明', 1, '+86 188-3841-8130', 3, '533586949162446776', '中国北京市东城区东单王府井东街534号46室', '1988-07-13', 0, 0, 'xiaomxie56', '2015-12-25', 'xie711', '2003-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS904899980352', '平野架純', 0, '+86 760-7513-7383', 2, '775231440967165805', '中国中山乐丰六路456号22楼', '1990-04-20', 0, 0, 'hiranokasu', '2010-03-14', 'hik', '2002-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS262157637649', '蘇嘉欣', 1, '+86 133-8856-4587', 4, '628160604331302796', 'Room 3, 986 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-12-28', 0, 0, 'kyso2001', '2005-04-25', 'soky44', '2013-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS017695689740', '姚晓明', 0, '+81 11-410-2587', 4, '047768017002383133', '3-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-08-18', 0, 0, 'yaxiaoming', '2003-01-19', 'xiaomingyao74', '2015-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS960757195675', '菊地湊', 0, '+86 174-1286-9779', 1, '900121143127236188', 'Room 9, 726 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-03-10', 0, 0, 'kikuchi908', '2018-09-19', 'kikuchimi', '2020-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS012832200601', 'Clarence Robinson', 0, '+1 718-898-9096', 2, '285958452206634054', '703 1st Ave Apt 43, Brooklyn, NY 11220, United States', '1998-06-17', 0, 0, 'robinclar', '2020-02-09', 'robinson3', '2012-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS434422195148', '菊地明菜', 0, '+81 11-181-1689', 2, '154711437003210029', '日本札幌白石区菊水三条五丁目2番10号32階', '1987-01-27', 0, 0, 'aki6', '2018-10-10', 'kikua', '2017-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS286719015481', '孙璐', 1, '+1 718-566-5012', 1, '386374029787525245', '66 Columbia St Apartment 14, Brooklyn, NY 11231, United States', '1987-08-26', 0, 0, 'slu', '2016-04-20', 'sunl904', '2019-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS829908968134', '鈴木葉月', 1, '+81 66-641-4473', 1, '199306143783890426', '4F, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-09-28', 0, 0, 'suzukihazuki', '2014-11-19', 'suzuhazuk1031', '2018-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS754702985337', '于秀英', 0, '+1 838-826-3051', 2, '958571171016042549', '470 Broadway 3rd Floor, Albany, NY 12207, United States', '1991-07-14', 0, 0, 'xiuying2', '2010-12-28', 'yuxiuyi', '2002-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS513823254665', '邹致远', 1, '+1 213-866-4307', 4, '585593449940779702', '6 Grape Street Suite 38, Los Angeles, CA 90002, United States', '1998-09-23', 0, 0, 'zzhiyuan727', '2001-04-01', 'zhiyuan803', '2016-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS690011551444', '清水美月', 0, '+1 213-571-9340', 3, '028983349003403507', '978 Alameda Street Suite 16, Los Angeles, CA 90002, United States', '1986-12-05', 0, 0, 'mitsuki73', '2002-01-02', 'shimizumitsuki', '2012-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS009913887837', '向詠詩', 0, '+44 5464 944512', 2, '546359206498158066', 'Unit 17, Oxford Eco Centre, 118 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-05-30', 0, 0, 'heungws218', '2017-07-20', 'heungws', '2003-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS385584287711', '前田凛', 1, '+81 52-891-8048', 4, '314568137093207760', '47-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-28', 0, 0, 'rin528', '2020-12-10', 'maedarin111', '2021-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS815555904243', '白安娜', 0, '+81 3-1983-0833', 1, '119971378313447683', '日本東京港区東新橋一丁目5番11号28階', '1992-02-16', 0, 0, 'onnapak8', '2005-07-06', 'onnpak1025', '2001-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS925873322462', '中森陽菜', 1, '+81 11-075-5211', 3, '798015426718568747', '日本札幌豊平区豊平三条十三丁目3番10号19号室', '1991-04-20', 0, 0, 'hinanakamori610', '2014-06-24', 'nhi', '2010-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS871034096789', 'Jamie Ward', 1, '+1 614-555-8560', 1, '868318149373740400', '586 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-10-17', 0, 0, 'wardjamie1103', '2006-06-09', 'ward8', '2004-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS509658584271', '宋杰宏', 1, '+1 838-951-1265', 3, '432670665488357061', '548 Broadway Apt 8, Albany, NY 12207, United States', '1997-09-30', 0, 0, 'song313', '2010-08-10', 'jiehong627', '2015-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS299598594290', '萬明', 1, '+44 5905 817440', 4, '458051725320068264', 'No.23 Main building, 389 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-09-15', 0, 0, 'minmen', '2021-11-08', 'mime', '2020-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS927485742404', '田致远', 1, '+86 10-2049-0875', 3, '199152617624167011', '14F, 287 028 County Rd, Yanqing District, Beijing, China', '1987-02-18', 0, 0, 'tian1114', '2021-10-20', 'zhiyuant', '2001-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS044074312924', 'Brandon Roberts', 0, '+44 (161) 940 9370', 2, '902926872925766919', 'Unit 13, Oxford Eco Centre, 101 Portland St, Manchester, M1 3LA, United Kingdom', '1987-11-08', 0, 0, 'rbrandon1115', '2003-11-08', 'roberts627', '2011-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS892366006147', '韦秀英', 1, '+81 90-8300-4539', 2, '372508235497657734', '23F, 1-1-4 Deshiro, Nishinari Ward, Osaka, Japan', '1988-04-04', 0, 0, 'xiuywei', '2011-07-01', 'weixiu', '2017-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS507972999060', 'Ethel Long', 0, '+86 167-5598-8335', 3, '689336069566386432', '中国上海市黄浦区淮海中路970号19楼', '1997-11-11', 0, 0, 'ethellong802', '2012-09-13', 'lethe', '2017-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS178038636344', '周永發', 0, '+81 90-8958-3573', 1, '302681630879721668', 'Rm. 25, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1999-01-19', 0, 0, 'chowwf', '2006-11-27', 'chowwingfat', '2006-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS363070389119', 'Cindy Griffin', 0, '+86 191-1817-0344', 4, '626710697496584825', 'No.6 building, 102 FuXingMenNei Street, XiCheng District, Beijing, China', '1991-04-14', 0, 0, 'griffincind', '2011-04-17', 'cindygriffin09', '2017-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS282238857637', 'Terry Jackson', 0, '+86 755-368-6032', 2, '856647779283410119', 'Room 29, CR Building, 178 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-07-15', 0, 0, 'jackson319', '2007-02-19', 'jacksonterry', '2007-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS780016833991', '戚德華', 0, '+86 28-1262-9741', 1, '951417065496472380', 'No.48 building, 925 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-03-23', 0, 0, 'takchic', '2006-10-17', 'chictw', '2017-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS088177643514', '田中大輔', 1, '+86 28-3090-1259', 0, '860836809118258019', '中国成都市锦江区红星路三段574号华润大厦35室', '1987-09-02', 0, 0, 'tanaka8', '2009-02-11', 'daisuketanaka15', '2009-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS389553481558', 'Juan Garcia', 1, '+44 7053 895393', 3, '558753771437008628', 'Block 33, 409 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-01-25', 0, 0, 'garcia1947', '2004-08-20', 'garj8', '2018-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS275331531465', '竹内百花', 0, '+1 718-857-9917', 2, '976733051504086788', '213 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1986-01-20', 0, 0, 'mtakeuchi', '2005-11-11', 'takeuchimomok', '2011-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS135143519514', 'Kathryn Stone', 0, '+81 74-957-6998', 2, '049753657240484090', '21F, 3-9-11 Gakuenminami, Nara, Japan', '1993-10-10', 0, 0, 'stonekathryn1997', '2007-01-27', 'kathrynst46', '2002-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS059604479585', '岡田光莉', 1, '+86 769-8735-3040', 1, '270844820737088947', 'Room 29, CR Building, 474 Huanqu South Street 2nd Alley, Dongguan, China', '1995-11-01', 0, 0, 'okah', '2012-04-16', 'hikaokada', '2020-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS378367358134', '小林翼', 0, '+86 186-4970-7805', 1, '640824936977517562', '中国上海市闵行区宾川路526号华润大厦24室', '1990-03-30', 0, 0, 'tsubasakobayashi', '2011-08-18', 'kobtsubasa', '2000-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS523002877486', 'Tina Stone', 0, '+81 90-6384-1553', 2, '323069715553033060', '日本札幌豊平区豊平三条十三丁目3番11号35階', '1989-02-01', 0, 0, 'stotina3', '2012-11-14', 'tinas', '2005-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS257734200507', '鄧家明', 0, '+81 3-4362-4379', 0, '660189753902430391', '日本東京渋谷区代々木二丁目3番11号38階', '1998-12-14', 0, 0, 'kmtang10', '2019-01-14', 'tkami', '2000-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS219857251715', '小山大地', 1, '+86 760-194-1631', 0, '913058164049028064', 'Room 15, CR Building, 827 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-06-14', 0, 0, 'daick', '2009-11-12', 'koydaichi1020', '2004-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS010976269758', 'Elaine Patterson', 0, '+1 213-332-2746', 2, '612225663234009265', '151 Wall Street Suite 41, Los Angeles, CA 90003, United States', '1985-09-20', 0, 0, 'elainepatt', '2006-09-03', 'patteelaine', '2019-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS316761182116', '馬國明', 1, '+81 70-5018-3456', 3, '997997554206400542', 'Rm. 30, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-02-20', 0, 0, 'makm', '2004-01-10', 'kmma208', '2009-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS130329387241', '譚德華', 0, '+1 614-942-1383', 0, '586666545570014485', '164 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-02-01', 0, 0, 'ttw', '2003-10-27', 'takwahta', '2008-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS236098572886', '市川百花', 0, '+44 7766 885931', 2, '519017253487745138', 'Flat 20, 565 Portland St, Manchester, M1 3LA, United Kingdom', '1992-04-03', 0, 0, 'michikawa205', '2018-04-24', 'im408', '2013-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS989113860574', '黎詩君', 0, '+86 176-2043-6692', 1, '323930414116431263', 'No.45 building, 217 Tianhe Road, Tianhe District, Guangzhou, China', '1995-04-04', 0, 0, 'sklai49', '2021-08-19', 'lsk', '2006-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS598336360401', '徐永發', 1, '+1 614-672-6603', 2, '621457949652408254', '263 East Alley Apartment 19, Columbus, GA 43201, United States', '1991-07-25', 0, 0, 'wftsui', '2019-11-06', 'tsui2', '2021-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS622858289994', '鄧小慧', 0, '+44 (161) 533 5379', 1, '654674012336293772', 'Block 7, 855 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-04-10', 0, 0, 'siuwai8', '2013-12-13', 'tangsiuwai', '2018-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS005324084122', '駱世榮', 1, '+81 66-530-4477', 0, '588814008799391531', '日本おおさかし西成区出城一丁目1番5号27号室', '1995-01-29', 0, 0, 'losw', '2013-04-13', 'swlok', '2000-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS495515241017', 'Eva Baker', 0, '+81 52-522-8444', 1, '692528686616926791', 'Rm. 36, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1993-06-20', 0, 0, 'evabaker', '2003-07-21', 'eva3', '2013-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS151312469710', '松田大輔', 1, '+44 5538 931917', 2, '675551556556883501', 'Block 7, 931 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1995-11-21', 0, 0, 'daisukematsu107', '2018-06-30', 'matsuda1972', '2009-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS543771123589', '區志遠', 1, '+86 769-892-1462', 2, '495314099046018564', '中国东莞环区南街二巷149号49楼', '1998-11-29', 0, 0, 'aucy', '2004-07-22', 'chiyuen1997', '2011-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS542051352547', '楊梓軒', 0, '+81 52-741-2669', 0, '495943580247356188', '日本なごやし守山区瀬古東二丁目171番8号27階', '1990-05-18', 0, 0, 'yeungtszhin', '2014-05-13', 'tszhinyeu4', '2012-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS699207922730', '任梓軒', 1, '+81 80-4996-5119', 4, '162841302577169640', '日本おおさかし近江堂一丁目7番9号24階', '1986-03-22', 0, 0, 'yam18', '2001-08-13', 'yam2', '2001-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS518187357850', '張志遠', 0, '+44 5668 304182', 1, '792508781654494228', 'Block 44, 410 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-01-03', 0, 0, 'chiyuenche', '2013-05-21', 'cheung1', '2019-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS898392667618', '戚學友', 1, '+86 10-610-4938', 3, '210593168042624417', 'No.39 building, 947 Sanlitun Road, Chaoyang District, Beijing, China', '1996-02-18', 0, 0, 'chy1984', '2001-03-25', 'chichokyau', '2006-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS762707114457', '姜詩涵', 1, '+86 154-0896-0605', 3, '770290995772386251', 'Room 38, 527 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-06-16', 0, 0, 'jianshihan04', '2016-05-22', 'shihanjiang', '2002-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS510610957142', 'Edwin Schmidt', 1, '+1 213-797-4142', 2, '381078310360146101', '443 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1993-05-04', 0, 0, 'edwin1', '2009-06-17', 'edsch', '2019-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS389751275115', '薛震南', 1, '+44 (121) 091 0868', 2, '497665921582261854', 'Flat 40, 483 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-11-18', 0, 0, 'zhennan10', '2001-09-13', 'xuezhe', '2009-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS993149558453', '尹梓晴', 1, '+86 10-5469-6380', 3, '681053630359511906', '中国北京市西城区复兴门内大街170号42号楼', '1995-01-04', 0, 0, 'yintszching128', '2008-09-07', 'yintc8', '2007-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS702937701506', '武睿', 0, '+86 10-487-8065', 3, '453473928887583325', '中国北京市西城区复兴门内大街90号9号楼', '1992-11-25', 0, 0, 'ruiwu', '2004-11-02', 'rui3', '2004-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS507752421112', '石嘉伦', 0, '+86 755-2017-2929', 3, '562473491016387023', '中国深圳罗湖区蔡屋围深南东路743号华润大厦48室', '1986-08-06', 0, 0, 'js46', '2003-09-05', 'shijialun', '2010-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS840209583297', '許國榮', 1, '+86 10-374-5783', 0, '997813116470493947', '中国北京市延庆区028县道9号44号楼', '1991-03-16', 0, 0, 'hkwokwing55', '2020-08-13', 'huikwokwing6', '2000-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS757861447052', 'Robin Watson', 0, '+81 11-270-2209', 3, '575333625970724373', '日本札幌中央区宮の森四条六丁目1番12号3号室', '1995-01-11', 0, 0, 'robinwa', '2004-02-11', 'watsor10', '2011-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS530056297298', '段子韬', 0, '+86 146-7827-5178', 1, '310670424875334661', '中国成都市锦江区红星路三段159号华润大厦21室', '1989-02-12', 0, 0, 'dzitao', '2003-05-16', 'duanzitao', '2014-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS414511626291', '曹嘉伦', 0, '+86 28-7409-6340', 3, '565567069349379918', '中国成都市锦江区红星路三段157号华润大厦45室', '1985-01-28', 0, 0, 'jialun9', '2011-07-15', 'caoj615', '2016-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS082404135310', '文富城', 1, '+86 181-0520-2937', 3, '993822639917006191', '22F, 140 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-01-18', 0, 0, 'mfu', '2019-05-23', 'manfushing7', '2011-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS374181225817', 'Gregory Chen', 0, '+81 52-394-0419', 0, '520456406773538930', '3F, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1990-05-12', 0, 0, 'gregorychen', '2020-08-10', 'gregorych', '2002-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS987487560858', '武秀英', 0, '+81 11-005-3704', 3, '219744965134358709', '日本札幌白石区菊水三条五丁目2番6号3階', '1996-07-02', 0, 0, 'wuxiuyi', '2011-07-30', 'xiuyingwu15', '2020-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS347236485330', '丁詩涵', 0, '+81 70-7906-2052', 4, '931580789794979956', '13F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1997-12-25', 0, 0, 'shihanding312', '2001-09-04', 'dshihan', '2013-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS418303294199', '狄慧嫻', 0, '+1 312-339-7049', 0, '572949548867325341', '813 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1991-03-26', 0, 0, 'tiwaihan4', '2016-01-23', 'tiwaih10', '2016-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS236812693670', 'Charles Bennett', 1, '+81 70-0909-4378', 1, '740892424363653950', '日本おおさかし近江堂一丁目7番3号15階', '1991-12-04', 0, 0, 'charles7', '2003-05-23', 'cbennett', '2011-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS926012903100', '木村和真', 0, '+44 7434 189021', 1, '121500688256402006', 'Unit 40, Oxford Eco Centre, 573 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1994-11-21', 0, 0, 'kimura1', '2016-05-21', 'kimura811', '2001-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS309310499236', '楊安娜', 0, '+81 74-430-7026', 2, '033929610986012171', '日本ならし大和郡山市本庄町一丁目1番19号49階', '1992-12-30', 0, 0, 'yon92', '2016-03-09', 'onyeung2', '2021-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS838639010599', '酒井架純', 1, '+81 90-3588-6105', 1, '807208523349752376', 'Rm. 35, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1987-09-09', 0, 0, 'sakaika05', '2008-11-05', 'saka', '2008-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS747488710102', 'Lillian Scott', 0, '+86 28-6285-6334', 1, '528470379182216978', 'No.42 building, No. 884, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-06-17', 0, 0, 'scolillian48', '2010-11-16', 'lillians6', '2020-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS685569715698', '梁詩涵', 0, '+1 212-506-2589', 4, '193276895530769055', '220 Wooster Street 3rd Floor, New York, NY 10012, United States', '1990-03-07', 0, 0, 'liashih', '2019-07-01', 'liang203', '2010-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS319178517947', 'Nathan Hall', 1, '+44 (151) 731 1592', 1, '355395907350161572', 'Flat 32, 213 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-11-03', 0, 0, 'nathhall907', '2017-01-08', 'nathanhall1115', '2016-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS708557260995', '韓志明', 0, '+81 3-2072-5673', 3, '407644925527558002', '25F, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1990-12-18', 0, 0, 'hcm', '2014-10-23', 'chiming81', '2010-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS644167699897', '高橋葉月', 1, '+81 90-7656-4792', 0, '326343550168353887', '6-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1993-10-27', 0, 0, 'takahaz', '2007-07-14', 'takahashihaz46', '2021-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS784090349165', '大塚美緒', 0, '+86 190-3139-8442', 1, '817376561656082547', '中国东莞东泰五街283号1楼', '1988-08-15', 0, 0, 'mio619', '2004-02-01', 'miots', '2009-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS249247971611', '中村陽太', 1, '+1 213-942-8548', 2, '408534812292115847', '217 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-03-24', 0, 0, 'nakamura4', '2019-07-25', 'yotna', '2007-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS705355161130', '黃小慧', 0, '+81 11-217-9785', 3, '057803460732636941', '日本札幌白石区菊水三条五丁目2番2号33階', '1985-03-22', 0, 0, 'wongsiuwai', '2012-07-19', 'siuwwon9', '2016-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS233545621360', '周璐', 0, '+44 (1865) 13 4938', 1, '222630948132769634', 'Unit 38, Oxford Eco Centre, 106 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-07-21', 0, 0, 'luzhou', '2001-12-12', 'zhoulu', '2013-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS999461199582', '谭云熙', 0, '+81 70-5976-4250', 1, '209163039892814468', '日本札幌中央区宮の森四条六丁目1番15号19号室', '1997-02-07', 0, 0, 'tanyunxi', '2021-01-18', 'yunxitan', '2012-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS976438170277', '岡本美月', 0, '+81 80-8203-3859', 4, '836981628372662820', '日本ならし学園南三丁目9番20号8階', '1999-01-13', 0, 0, 'okamoto706', '2012-10-30', 'okamomitsuki', '2001-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS102171431900', '沈嘉伦', 0, '+81 11-828-8670', 2, '308656636184263408', '41F, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-01-17', 0, 0, 'jialunshen', '2004-12-27', 'shenjialun', '2004-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS928465953894', 'Randall Diaz', 0, '+81 11-127-4944', 1, '119093738666440394', 'Rm. 25, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-07-21', 0, 0, 'dran', '2004-05-17', 'randall6', '2020-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS870199815069', '洪國權', 1, '+86 755-146-4521', 2, '864567949362669061', '中国深圳罗湖区田贝一路242号50栋', '1995-01-16', 0, 0, 'hunkwo02', '2001-06-13', 'kkhung8', '2004-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS493976971578', '島田凛', 0, '+86 769-7918-8868', 2, '545365231451042894', 'No.30 building, 93 Shanhu Rd, Dongguan, China', '1990-08-03', 0, 0, 'rins10', '2021-11-20', 'rinshima9', '2011-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS640467122052', '木下百花', 0, '+81 70-6103-4398', 2, '649129312560666455', '日本なごやし瑞穂区河岸町四丁目20番18号16号室', '1989-07-20', 0, 0, 'momokkinoshita', '2006-03-10', 'momkinoshita', '2004-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS064581693873', '谷口美月', 1, '+86 20-9083-6071', 2, '442925523499943131', '中国广州市白云区机场路棠苑街五巷673号5楼', '1994-06-06', 0, 0, 'taniguchi516', '2010-07-28', 'mitta4', '2001-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS127386927808', '小林葉月', 0, '+1 838-757-1452', 3, '181415659014293949', '151 Central Avenue Apartment 13, Albany, NY 12206, United States', '1987-04-01', 0, 0, 'khazuki', '2007-07-20', 'hazuki9', '2000-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS647027988304', '姚云熙', 0, '+44 5049 193512', 4, '011711222206135018', 'No.15 Main building, 192 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-09-26', 0, 0, 'yaoyunxi', '2021-06-16', 'yaoyunxi', '2016-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS714178626010', '有村大輔', 1, '+81 80-9609-2747', 3, '700401038500411251', '24F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-20', 0, 0, 'daisuke1020', '2008-12-25', 'daia1965', '2009-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS503243573496', '孟璐', 1, '+1 213-915-6462', 4, '712401247196945041', '174 Sky Way Suite 36, Los Angeles, CA 90043, United States', '1988-01-04', 0, 0, 'lume65', '2003-06-19', 'lumeng909', '2004-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS460574298195', '青木聖子', 1, '+44 7226 167574', 3, '488341759490205290', 'Block 14, 785 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-08-23', 0, 0, 'seikao', '2009-10-25', 'aos1943', '2018-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS559053084248', '酒井七海', 0, '+81 3-1565-3297', 0, '017135947322683884', '日本東京千代田区丸の内一丁目6番14号11階', '1996-12-28', 0, 0, 'sakainanami228', '2013-12-20', 'snanami', '2006-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS413159016529', 'Douglas Griffin', 1, '+86 769-9596-5541', 2, '090642242313153958', 'Room 39, 604 Huanqu South Street 2nd Alley, Dongguan, China', '1994-02-07', 0, 0, 'gdouglas', '2015-08-14', 'griffindouglas5', '2001-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS577833916399', '加藤桜', 1, '+81 70-2033-4094', 3, '457815360766380576', '日本おおさかし平野区加美東四丁目9番14号48階', '1990-09-30', 0, 0, 'sakurak8', '2008-04-24', 'kasak', '2017-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS583155614181', 'Janice Morales', 1, '+1 838-181-7373', 2, '902391374792311590', '853 Broadway Apt 46, Albany, NY 12207, United States', '1987-12-03', 0, 0, 'janmora516', '2002-05-04', 'jmorales', '2003-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS049884396238', '傅永發', 0, '+1 838-349-8082', 3, '348340613548428884', '910 Central Avenue Apt 31, Albany, NY 12206, United States', '1985-12-28', 0, 0, 'fwingfat', '2017-08-22', 'fu117', '2021-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS943195078686', '大塚詩乃', 0, '+44 7866 909602', 1, '214483489603771618', 'Flat 38, 150 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-04-02', 0, 0, 'so1950', '2010-07-17', 'shino4', '2003-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS038522670541', '曹家玲', 0, '+86 20-712-5256', 1, '076200448540260161', 'No.16 building, 45 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-08-29', 0, 0, 'klc43', '2020-12-15', 'cho1', '2019-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS741257081070', 'Brian Olson', 1, '+86 755-1904-5554', 1, '656325715185614062', '中国深圳罗湖区清水河一路274号48室', '1990-11-02', 0, 0, 'olsobrian', '2001-11-01', 'brianols621', '2011-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS547279914216', 'Mike Herrera', 0, '+44 (1865) 57 8092', 2, '893703908265126153', 'No.23 Main building, 688 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-04-20', 0, 0, 'mikhe', '2006-08-19', 'herrera523', '2005-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS284647588190', '菊地美咲', 1, '+81 52-425-7075', 2, '222678682454733180', 'Rm. 36, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1988-03-30', 0, 0, 'misakikiku', '2016-08-21', 'kikuchimisak', '2013-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS257078963216', 'Julia Nichols', 1, '+81 74-936-2431', 3, '128876063657915108', '日本ならし西大寺赤田町一丁目7番9号45階', '1989-04-25', 0, 0, 'njulia', '2020-12-30', 'junichols', '2011-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS749781780243', '段子异', 1, '+44 (161) 781 0140', 2, '448307418348261371', 'Unit 29, Oxford Eco Centre, 734 Portland St, Manchester, M1 3LA, United Kingdom', '1988-02-24', 0, 0, 'duanzi04', '2021-08-07', 'duaziy', '2015-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS511455253145', '顧發', 1, '+44 (161) 594 7967', 1, '250568192271559495', 'No.33 Main building, 2 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-06-15', 0, 0, 'fatku', '2008-01-05', 'fat71', '2009-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS984967648681', '馬力申', 1, '+81 90-8293-4040', 4, '005147816009342230', 'Rm. 38, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-06-30', 0, 0, 'ma2', '2000-01-25', 'liksunma', '2002-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS022028385568', 'Randy Long', 0, '+81 90-1101-0386', 1, '537135332000612785', '45-kai, 1-7-8 Saidaiji Akodacho, Nara, Japan', '1994-10-25', 0, 0, 'longrandy', '2009-12-26', 'rlong718', '2014-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS688859816642', 'Ashley Foster', 1, '+81 70-2779-7905', 1, '483240135211184252', '日本札幌白石区菊水三条五丁目4番20号1階', '1988-11-11', 0, 0, 'fosterashley', '2007-04-07', 'asf', '2015-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS347683599512', 'Debra Morales', 0, '+86 28-263-8946', 3, '644005414808083616', '中国成都市锦江区红星路三段731号44楼', '1986-04-10', 0, 0, 'moraldebra', '2016-03-08', 'mdebra806', '2000-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS148550360517', 'Miguel Davis', 1, '+1 330-365-7244', 4, '917709339976567229', '850 Ridgewood Road Suite 25, Akron, OH 44321, United States', '1995-12-01', 0, 0, 'davmiguel', '2004-07-04', 'davismiguel', '2004-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS593834947496', '毛梓晴', 1, '+1 212-743-2554', 3, '077110480916941357', '193 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1985-05-31', 0, 0, 'mo92', '2018-08-05', 'tszching8', '2006-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS101193174810', '馬家強', 0, '+81 52-643-7775', 1, '544236796684388448', '日本なごやし守山区瀬古東二丁目171番10号8階', '1999-02-15', 0, 0, 'ma1122', '2009-09-14', 'kkma508', '2007-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS282205098689', '伊藤絢斗', 0, '+1 614-992-2400', 3, '385833223598083724', '303 Tremont Road Suite 46, Columbus, GA 43212, United States', '1986-04-03', 0, 0, 'itoaya802', '2000-08-01', 'itoay', '2010-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS821027557638', '郑子异', 0, '+86 28-7067-0237', 1, '771592631081920464', '45F, No. 250, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-03-19', 0, 0, 'zhengziy903', '2006-08-09', 'zziyi', '2017-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS816805527808', '李天榮', 1, '+86 157-0288-4451', 0, '711087977331588379', 'Room 20, 379 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-08-10', 0, 0, 'lee2', '2022-02-17', 'twlee', '2000-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS709632044116', '野口美羽', 0, '+44 (161) 113 9923', 3, '513521533531916784', 'No.18 Main building, 699 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-01', 0, 0, 'nogm', '2000-12-18', 'miunogu619', '2017-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS282714678344', '吕岚', 0, '+44 (1223) 47 2907', 2, '781991195356325745', 'No.21 Main building, 715 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-09-13', 0, 0, 'lul', '2015-05-18', 'lanlu', '2014-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS195853799384', '佘家輝', 0, '+81 70-0722-3290', 3, '445068319843475803', '日本札幌厚別区上野幌一条二丁目1番13号40階', '1995-09-27', 0, 0, 'shekf53', '2008-02-23', 'shehkafai', '2018-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS107469706759', '阿部翼', 1, '+81 11-360-3731', 1, '007152820799917497', '日本札幌中央区宮の森四条六丁目1番20号9階', '1987-11-06', 0, 0, 'abe3', '2011-12-14', 'abetsubasa2', '2006-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS845106361251', '内田愛梨', 0, '+44 (1865) 98 5699', 2, '327012442650487078', 'Unit 47, Oxford Eco Centre, 660 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-02-16', 0, 0, 'airi8', '2002-12-02', 'uchida8', '2010-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS385638442683', '山下拓哉', 1, '+81 74-355-6552', 1, '747984029536103013', '日本ならし西大寺赤田町一丁目7番10号40階', '1989-04-18', 0, 0, 'ty826', '2004-10-20', 'yat02', '2021-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS867095690045', '石宇宁', 1, '+86 769-057-2144', 2, '060906374539821816', 'Room 2, CR Building, 19 Kengmei 15th Alley, Dongguan, China', '1990-05-28', 0, 0, 'shiyunin', '2018-09-06', 'syuning6', '2020-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS628434332162', 'Dennis Mendez', 1, '+86 20-7203-1136', 1, '542668400713976952', 'Room 16, CR Building, 247 Jiangnan West Road, Haizhu District, Guangzhou, China', '1989-01-15', 0, 0, 'mendez07', '2015-10-01', 'dmen', '2014-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS365398237756', '陶安琪', 1, '+86 168-5199-3776', 2, '066900170642785736', '中国中山乐丰六路616号27栋', '1988-08-31', 0, 0, 'anqi2', '2004-10-16', 'anqita', '2008-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS896483174569', '野村陸', 1, '+44 (116) 785 8486', 0, '923318527228874436', 'No.7 Main building, 696 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-07-31', 0, 0, 'nomurariku814', '2006-08-09', 'rikunomura', '2001-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS226793318712', 'Alice Harrison', 0, '+86 168-7262-7228', 2, '573370051782484703', 'Room 49, CR Building, 296 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-11', 0, 0, 'alih', '2006-08-04', 'ahar2', '2001-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS353657641711', '駱詩君', 1, '+81 52-448-7996', 2, '590357288393886721', '36-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-08-20', 0, 0, 'szekwanlok4', '2010-07-06', 'sklok9', '2008-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS643878351101', '元朝偉', 0, '+81 80-6668-8534', 1, '704755988257900494', '日本なごやし北区清水三丁目19番7号37階', '1990-02-17', 0, 0, 'yuen1948', '2015-01-25', 'ychiuwai', '2002-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS625973426956', '横山陽太', 0, '+86 191-3315-2294', 0, '238561833963116560', '中国广州市白云区小坪东路96号4栋', '1997-12-13', 0, 0, 'yotayokoyama', '2013-04-29', 'yokoyamayo1979', '2004-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS705998919137', '陈嘉伦', 0, '+44 7648 212355', 2, '286740448015007293', 'No.10 Main building, 486 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-11-20', 0, 0, 'chenj', '2006-01-31', 'chenjial', '2001-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS477001970523', '于子异', 1, '+44 (116) 686 1320', 1, '435142262114437524', 'Flat 50, 78 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-03-25', 0, 0, 'yuz', '2015-04-28', 'yuzi', '2000-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS207955484124', '陳永權', 0, '+81 11-728-0252', 3, '902147638611731177', '12-kai, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-07-14', 0, 0, 'chanwingkuen', '2007-10-19', 'wingkuench1945', '2020-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS015245500581', '溫梓軒', 1, '+86 136-1195-0415', 3, '513057335272646048', 'No.30 building, 164 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-07-02', 0, 0, 'wantszhin', '2018-08-18', 'tszhinwan', '2013-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS459848591766', 'Walter Mcdonald', 0, '+81 70-3377-7066', 4, '354372604558659037', '日本札幌白石区菊水三条五丁目2番17号37階', '1988-09-04', 0, 0, 'mcdonwalte', '2017-04-16', 'mwalter', '2007-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS256102564643', 'Samuel Black', 0, '+86 28-516-0411', 3, '864582493296709595', '中国成都市成华区玉双路6号28号3号楼', '1988-04-28', 0, 0, 'blacs', '2019-04-24', 'sablack', '2019-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS197636859469', 'Mike Stewart', 0, '+1 212-068-5764', 4, '687017968806009841', '442 West Houston Street Suite 20, New York, NY 10014, United States', '1998-10-19', 0, 0, 'stewamik', '2018-10-31', 'stewart109', '2014-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS053826808024', '秦嘉伦', 0, '+1 718-881-7526', 3, '761287892705318254', '260 Columbia St Suite 4, Brooklyn, NY 11231, United States', '1994-12-22', 0, 0, 'qj6', '2002-12-09', 'qin9', '2021-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS191749119776', '叶云熙', 1, '+81 90-4474-2154', 2, '617182333643791328', '50-kai, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-09-15', 0, 0, 'yeyunxi1122', '2001-11-29', 'yunxi6', '2002-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS667391143565', 'Edith Palmer', 1, '+81 11-984-2859', 0, '707185222215559910', 'Rm. 14, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-05-15', 0, 0, 'edith40', '2021-10-09', 'paedi', '2015-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS209501039265', '山口紗良', 1, '+81 11-791-8336', 2, '116209865604415160', '36-kai, 6-1-19, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-04-03', 0, 0, 'sarayamaguchi82', '2017-08-26', 'saray60', '2021-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS348040227200', 'Virginia Scott', 1, '+86 142-6421-3862', 1, '323847012164913525', '中国北京市延庆区028县道385号23楼', '1996-10-19', 0, 0, 'virginia5', '2005-12-12', 'virginias816', '2000-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS037225598856', 'Gary Hawkins', 0, '+86 134-1743-3486', 2, '710745388578645120', '中国中山天河区大信商圈大信南路448号20楼', '1989-01-25', 0, 0, 'gh1', '2020-02-09', 'ghawki', '2009-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS206947434794', '千葉美羽', 0, '+81 52-487-5158', 2, '125148785289493330', 'Rm. 28, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1991-12-27', 0, 0, 'chibamiu809', '2012-06-20', 'chiba5', '2010-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS378325694970', '崔霆鋒', 1, '+81 80-1870-7121', 3, '621657832576097679', '日本札幌豊平区豊平三条十三丁目3番2号8号室', '1987-05-19', 0, 0, 'tingfungchoi47', '2004-07-04', 'choitingfung78', '2005-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS943305816845', '方家文', 1, '+1 838-819-0711', 1, '874746596673183221', '475 Broadway Apt 49, Albany, NY 12207, United States', '1988-01-01', 0, 0, 'kmfong509', '2014-02-20', 'fongkm', '2003-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS364886743687', '小山蓮', 1, '+81 90-6519-6119', 3, '706224176938525152', '日本札幌中央区宮の森四条六丁目1番1号37階', '1986-11-18', 0, 0, 'rekoy', '2011-09-27', 'koyren98', '2001-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS706362247965', '石子韬', 1, '+81 70-7411-7989', 3, '994547364228466867', '日本なごやし北区清水三丁目19番16号13階', '1996-04-30', 0, 0, 'sz76', '2018-07-09', 'zitao118', '2013-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS654677912104', '戴璐', 1, '+81 11-068-2960', 4, '998738988768005443', '日本札幌白石区菊水三条五丁目4番12号23階', '1990-04-17', 0, 0, 'dailu7', '2011-05-13', 'ludai4', '2004-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS509266129872', '邵睿', 0, '+81 80-6468-1873', 1, '806408275471692459', '40-kai, 3-9-8 Gakuenminami, Nara, Japan', '1997-12-26', 0, 0, 'sru', '2003-01-19', 'shrui', '2001-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS762112637446', '高橋蓮', 0, '+1 838-042-3243', 2, '924696501842374094', '451 Central Avenue Apt 19, Albany, NY 12205, United States', '1985-09-26', 0, 0, 'rentakah10', '2012-06-01', 'retakahashi', '2018-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS162814180252', 'Deborah Daniels', 1, '+86 196-5198-4346', 3, '707514874843863966', 'No.18 building, 112 028 County Rd, Yanqing District, Beijing, China', '1992-09-13', 0, 0, 'debd1984', '2017-03-27', 'danielsdeborah530', '2008-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS244875702276', '有村大和', 0, '+86 140-2629-1953', 0, '322964115530992855', '中国广州市白云区机场路棠苑街五巷209号28号楼', '1986-11-21', 0, 0, 'ariyamat228', '2000-12-08', 'yamatoar', '2012-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS637823768400', '徐永權', 0, '+1 838-900-6085', 1, '341862227451336676', '4 Broadway Apt 38, Albany, NY 12207, United States', '1998-11-13', 0, 0, 'twingkuen1101', '2001-09-08', 'tswingkuen6', '2008-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS670165651797', 'Mike Kelly', 1, '+1 838-956-0397', 1, '507721254383354799', '330 Central Avenue Apt 50, Albany, NY 12205, United States', '1992-04-05', 0, 0, 'kellmike', '2002-09-27', 'kellymi65', '2002-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS281170467696', 'Clifford Morales', 1, '+81 52-606-9530', 0, '244809948813481430', '日本なごやし北区楠味鋺三丁目80番9号9階', '1992-06-05', 0, 0, 'moralesclifford', '2005-12-13', 'mclifford', '2003-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS780252221112', '譚永權', 1, '+44 7628 016746', 4, '684412891509878311', 'Block 29, 274 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-11-22', 0, 0, 'twk', '2010-12-04', 'wingkuent10', '2019-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS112117783068', '田安娜', 1, '+44 (161) 541 5236', 1, '973222604580457902', 'Unit 21, Oxford Eco Centre, 381 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-07-11', 0, 0, 'onna1962', '2007-04-26', 'tin10', '2008-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS327940456780', 'Lori Garcia', 0, '+86 755-0930-7956', 3, '679581318920400783', '中国深圳罗湖区田贝一路9号1号楼', '1991-03-29', 0, 0, 'lorigarcia', '2016-01-25', 'lorigarc', '2013-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS972034601442', '村田紗良', 0, '+81 70-8924-3603', 1, '039627154631128000', 'Rm. 15, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-05-09', 0, 0, 'saramu63', '2017-07-15', 'muratsara618', '2013-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS938734034753', '馬天榮', 1, '+44 5698 229485', 4, '215447840222187740', 'No.4 Main building, 859 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-12-20', 0, 0, 'matw', '2015-06-07', 'matinwing', '2021-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS447645585395', '孟秀英', 1, '+86 21-973-3874', 3, '660990400092600895', '中国上海市闵行区宾川路27号11栋', '1986-07-02', 0, 0, 'meng42', '2016-07-13', 'mxiu122', '2011-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS817743620182', '小川海斗', 0, '+44 7902 173812', 1, '576331506041289472', 'No.19 Main building, 212 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-25', 0, 0, 'ogawkait', '2002-11-09', 'kaitog', '2000-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS293861867991', 'Dawn Ward', 0, '+81 90-9654-5218', 1, '915988896112979749', '19F, 17 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-01-05', 0, 0, 'dw84', '2018-01-20', 'dawnw1', '2014-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS483588684995', 'Arthur Romero', 1, '+44 5037 893927', 4, '647279245303335504', 'Block 40, 14 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-11-23', 0, 0, 'arthurome', '2019-08-29', 'romeroarthur', '2010-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS616447971393', '中村彩乃', 1, '+86 161-5737-9267', 0, '372689118185519532', '中国东莞珊瑚路53号华润大厦23室', '1988-01-04', 0, 0, 'nakamura00', '2020-06-22', 'nakamura1', '2010-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS473256807175', '胡震南', 1, '+81 80-9832-0099', 1, '029244251150950772', '日本札幌中央区宮の森四条六丁目1番12号8号室', '1996-06-22', 0, 0, 'huzhe', '2013-09-06', 'huzhennan', '2021-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS170816451112', '内田陽菜', 0, '+86 182-2234-8352', 4, '680042357714245296', 'Room 10, 65 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-02-16', 0, 0, 'uchhi214', '2002-12-19', 'hina5', '2016-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS275414343618', '鄺世榮', 1, '+81 90-7405-2516', 2, '278483709503435190', '日本札幌中央区宮の森四条六丁目1番14号47階', '1988-11-30', 0, 0, 'swkwong', '2016-06-25', 'swkwong7', '2018-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS241668110236', '姜家輝', 1, '+44 (151) 022 9108', 2, '940539232898562494', 'No.2 Main building, 161 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-02-24', 0, 0, 'kfchang324', '2014-07-28', 'chang2018', '2017-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS505402111949', 'Jeffrey Fox', 0, '+44 (1865) 13 2644', 0, '593488908800604300', 'No.16 Main building, 97 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-07-16', 0, 0, 'fojeffrey', '2009-07-26', 'fox1115', '2008-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS556633551036', '大野葉月', 1, '+1 614-859-2391', 3, '512430453377991638', '26 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1987-09-07', 0, 0, 'hazukio9', '2000-10-29', 'ohazuk89', '2008-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS063396588289', '應杰倫', 1, '+1 614-714-3268', 3, '553109506864436798', '974 East Alley Suite 26, Columbus, GA 43201, United States', '1985-09-20', 0, 0, 'chiehlunying', '2004-09-11', 'chiehlun2', '2016-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS837094476814', 'Alexander Patel', 0, '+81 90-8468-4168', 0, '070719764354273308', '日本なごやし熱田区千年二丁目5番6号37階', '1987-01-15', 0, 0, 'alexanderp918', '2021-07-10', 'patale7', '2020-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS757714099156', '郝宇宁', 0, '+44 (161) 261 8975', 2, '196562292875003924', 'Block 28, 871 Mosley St, Manchester, M2 3AQ, United Kingdom', '1987-09-15', 0, 0, 'hao4', '2019-05-09', 'yuninghao', '2001-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS203402674237', '上野翼', 0, '+1 213-149-5794', 2, '972214027732428226', '606 Figueroa Street Apt 29, Los Angeles, CA 90037, United States', '1990-06-20', 0, 0, 'tsubasaueno', '2012-11-16', 'tsubasau', '2020-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS570552757027', '森陽菜', 1, '+81 66-724-7777', 1, '591384820144442110', '日本おおさかし東住吉区東田辺三丁目27番13号11階', '1988-07-18', 0, 0, 'morihina', '2001-11-09', 'mhina601', '2010-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS195215295931', 'Irene Mills', 0, '+81 74-945-2142', 3, '692523937929345419', '21-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-08-19', 0, 0, 'millsirene', '2010-12-17', 'im711', '2009-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS430437555648', '大野玲奈', 1, '+81 80-8641-0565', 1, '269338452278002042', '49F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-08-14', 0, 0, 'onoren', '2013-01-15', 'orena', '2010-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS050738241737', 'Theresa Green', 0, '+86 28-6763-5847', 0, '780381162133782828', 'No.37 building, No. 539, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-01-01', 0, 0, 'therg10', '2021-10-01', 'thergreen', '2003-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS031329275565', '酒井愛梨', 0, '+1 330-102-3346', 3, '683745355498826332', '291 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1992-07-24', 0, 0, 'sakaiair7', '2003-01-29', 'sakai5', '2017-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS674385565647', '薛子异', 1, '+86 144-9807-6592', 2, '974221745822538846', '中国上海市徐汇区虹桥路213号17号楼', '1990-01-10', 0, 0, 'xue9', '2021-04-30', 'ziyixu', '2002-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS689977409943', '井上絢斗', 1, '+81 52-614-0552', 4, '511293994278322583', 'Rm. 46, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1986-09-13', 0, 0, 'inoueayato', '2020-11-10', 'ayatoinoue', '2018-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS956045118335', 'Patricia Barnes', 1, '+1 718-937-8376', 2, '702014106495320795', '553 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1995-10-12', 0, 0, 'patrbarnes1997', '2001-04-26', 'patriciabarn', '2005-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS747178260293', 'Marie Morris', 0, '+86 28-561-3569', 2, '537985831596647595', 'No.45 building, No. 482, Shuangqing Rd, Chenghua District, Chengdu, China', '1995-06-12', 0, 0, 'morrim', '2019-06-10', 'morrim3', '2014-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS083100729011', '邵永權', 0, '+86 164-3204-4397', 3, '204126371321567728', '中国北京市东城区东单王府井东街456号40楼', '1996-07-11', 0, 0, 'wingkuensiu821', '2015-03-05', 'wingkuens', '2003-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS573350786630', '毛秀文', 1, '+81 3-1066-9911', 1, '076886265802122839', '18-kai, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-06-28', 0, 0, 'smmo', '2001-05-27', 'mosm', '2015-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS777305004377', '石川一輝', 1, '+86 20-0680-4918', 2, '791328778681316074', 'No.2 building, 314 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-04', 0, 0, 'iishik1950', '2012-08-23', 'ikkiishikawa', '2022-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS895613986254', '王詩涵', 1, '+86 152-1863-2652', 4, '071027470297875585', '25F, 387 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-11-04', 0, 0, 'shihan7', '2017-01-13', 'shihanwa8', '2015-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS827668362661', '坂本瑛太', 1, '+81 52-653-9772', 1, '935715785534228735', '44-kai, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1991-08-09', 0, 0, 'eitsakam', '2022-03-01', 'sakaeita', '2021-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS392020979922', '宣力申', 0, '+86 132-7780-3983', 3, '145288667701611747', '中国成都市锦江区红星路三段308号华润大厦24室', '1997-07-01', 0, 0, 'lsh3', '2003-08-18', 'hliksun', '2000-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS680759522427', '斉藤七海', 0, '+81 11-571-5618', 1, '577755173216925162', '日本札幌清田区真栄四条五丁目19番6号7号室', '1990-08-14', 0, 0, 'nanasaito4', '2001-08-26', 'saito97', '2018-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS840606636077', '唐裕玲', 0, '+81 66-660-0900', 0, '755111965418228238', 'Rm. 5, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-06-23', 0, 0, 'tonyuling1105', '2015-07-22', 'yltong1001', '2016-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS159837356108', 'Christopher Thompson', 1, '+1 213-422-7792', 3, '792500533236128524', '383 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-03-07', 0, 0, 'chrthomp', '2019-02-13', 'thompsonchr429', '2010-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS454726217665', '江詩涵', 1, '+81 90-5891-2248', 2, '579832558499157618', '3-kai, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1999-02-23', 0, 0, 'shihanjiang', '2007-11-19', 'jianshihan', '2018-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS780710696016', '張青雲', 1, '+44 (116) 089 7318', 4, '069927364650395311', 'Block 3, 173 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-07-19', 0, 0, 'cheungcw109', '2007-09-02', 'cwcheung1', '2017-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS160128940333', 'Clifford Green', 1, '+44 (1865) 42 8316', 3, '707958665320495449', 'Block 24, 506 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-07-08', 0, 0, 'greenc', '2015-04-26', 'clifford122', '2003-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS615936843679', '阿部聖子', 0, '+86 10-841-5874', 0, '849901877895690396', '31F, 537 FuXingMenNei Street, XiCheng District, Beijing, China', '1994-02-02', 0, 0, 'seikoa', '2008-11-30', 'sa1205', '2009-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS983914884271', '孙秀英', 1, '+44 (161) 680 3185', 2, '480404354636261514', 'No.9 Main building, 724 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1987-04-10', 0, 0, 'xiuying48', '2000-05-02', 'sun01', '2021-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS212800038063', '佐々木花', 1, '+86 760-0388-0567', 0, '241989707598683188', '中国中山天河区大信商圈大信南路748号4楼', '1993-09-27', 0, 0, 'sasakha', '2006-08-17', 'hsasaki', '2011-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS419437760990', '關力申', 0, '+44 5260 901670', 4, '429428945794750922', 'Flat 30, 783 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-07-16', 0, 0, 'liksunkw', '2017-09-05', 'kwanliksun224', '2008-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS511722534171', '严云熙', 1, '+1 212-362-3653', 4, '985666421550730726', '739 Wooster Street Apt 45, New York, NY 10012, United States', '1996-09-07', 0, 0, 'yuy', '2015-03-26', 'yunxiya629', '2005-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS710500660517', 'Jesse Thomas', 1, '+86 21-9454-1389', 0, '229634804356070279', '中国上海市浦东新区橄榄路595号47栋', '1990-10-05', 0, 0, 'thomjesse8', '2006-08-09', 'jesse1210', '2020-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS129795152400', '彭國明', 1, '+86 171-0448-4522', 3, '530510624434593390', 'Room 44, No.857, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-06-07', 0, 0, 'kmpang', '2009-05-28', 'pangkm', '2013-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS496131355263', '傅璐', 0, '+81 90-1461-3683', 1, '591911582291263955', '日本ならし学園南三丁目9番15号4階', '1985-09-26', 0, 0, 'ful1114', '2006-04-21', 'flu3', '2013-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS473368020314', '钱嘉伦', 0, '+44 5445 058271', 0, '430803443582942621', 'Unit 38, Oxford Eco Centre, 404 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1985-06-30', 0, 0, 'qianj6', '2003-10-07', 'qijialun', '2008-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS343413079003', 'Bobby Henry', 0, '+81 3-4430-2940', 3, '386353870287397766', '16F, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-23', 0, 0, 'bobh', '2021-07-30', 'bhenry', '2002-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS829083970644', '竹内絢斗', 1, '+86 769-0232-7615', 3, '779166055007397850', '中国东莞环区南街二巷631号华润大厦45室', '1992-08-18', 0, 0, 'takeuchi604', '2011-02-11', 'ayato3', '2001-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS499723301948', '清水大地', 0, '+86 175-0876-9576', 2, '871163577751795358', '中国成都市成华区二仙桥东三路94号29栋', '1991-05-04', 0, 0, 'dshimizu7', '2001-09-29', 'daichis82', '2004-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS148305078302', '薛青雲', 0, '+1 212-923-9586', 1, '665301830203630380', '303 Bank Street Apt 30, New York, NY 10014, United States', '1994-08-30', 0, 0, 'chis', '2022-02-19', 'sitchingwan', '2021-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS794296645579', 'Pauline Washington', 1, '+81 70-8384-8652', 4, '951518221996540253', 'Rm. 27, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-03-12', 0, 0, 'washingtonpa', '2007-07-08', 'wapauli', '2006-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS905402695262', '胡嘉伦', 0, '+86 186-2721-9287', 2, '680190999575962272', '中国深圳罗湖区蔡屋围深南东路304号14号楼', '1992-04-24', 0, 0, 'jiah1957', '2018-01-21', 'hujia', '2002-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS588534005005', '橋本百花', 1, '+44 (1865) 62 4100', 1, '534589410168879512', 'Unit 29, Oxford Eco Centre, 650 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-12-19', 0, 0, 'hashmomoka20', '2017-09-04', 'hashimotom', '2004-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS224365211501', '任安琪', 1, '+81 70-0501-8490', 4, '648426886353582980', '日本おおさかし西成区天神ノ森二丁目1番14号12号室', '1996-12-04', 0, 0, 'ren48', '2013-10-12', 'anqire67', '2020-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS262516216025', '内田蒼士', 1, '+44 (20) 4497 4639', 3, '383773712197422651', 'Unit 11, Oxford Eco Centre, 22 Hanover Street, London, W1S 1YD, United Kingdom', '1991-01-25', 0, 0, 'uchidaaoshi5', '2021-01-22', 'aosu626', '2017-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS395645057617', '白志明', 1, '+86 172-7339-7697', 3, '515954417179353897', '中国成都市成华区二仙桥东三路153号36栋', '1993-10-07', 0, 0, 'pcm1', '2003-09-27', 'chiming10', '2001-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS094922215576', '楊明詩', 0, '+86 191-8745-4539', 3, '830542288210012877', '中国深圳福田区景田东一街541号23栋', '1993-02-02', 0, 0, 'yeungms', '2019-04-16', 'msyeu1215', '2014-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS760407870535', 'James Castro', 0, '+81 74-716-0509', 1, '928938681608795854', '日本ならし西大寺赤田町一丁目7番16号3階', '1997-10-22', 0, 0, 'jcast', '2007-04-17', 'casjames7', '2003-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS738933160829', '向云熙', 0, '+1 212-313-8347', 2, '275056071113663273', '637 Fifth Avenue Suite 8, New York, NY 10017, United States', '1992-04-30', 0, 0, 'yxiang919', '2004-11-02', 'xiyunxi', '2021-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS384324091691', 'Ruby Rodriguez', 1, '+86 20-1451-8528', 1, '284490989515500442', '中国广州市越秀区中山二路470号48栋', '1990-01-19', 0, 0, 'rodrruby523', '2008-12-05', 'rodrruby', '2018-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS117252711779', '菊地一輝', 1, '+44 5203 792598', 1, '150415973430694762', 'Flat 4, 764 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-09-13', 0, 0, 'ikkikikuchi', '2010-08-07', 'ikkikikuchi', '2016-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS700760479217', '曹學友', 1, '+86 10-3749-2332', 3, '406351835474960316', 'No.6 building, 954 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-04-30', 0, 0, 'chohy610', '2000-03-21', 'cho19', '2021-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS724983660296', '宮崎結翔', 1, '+86 10-3489-6455', 2, '980431991374536715', 'Room 39, 378 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-05-16', 0, 0, 'yuito55', '2012-01-19', 'myuito', '2013-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS022348068558', '毛嘉伦', 1, '+81 74-617-3894', 3, '791568617806581051', '日本ならし学園南三丁目9番10号43号室', '1987-02-12', 0, 0, 'jimao', '2017-04-26', 'jmao', '2010-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS447464045193', '中森光', 0, '+1 312-574-4993', 2, '971553472949044702', '503 North Michigan Ave Suite 17, Chicago, IL 60611, United States', '1997-07-11', 0, 0, 'hikarnakamori', '2007-09-15', 'hn208', '2014-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS841184377365', '苗慧嫻', 1, '+81 66-749-0256', 4, '125101490600618887', '日本おおさかし東住吉区東田辺三丁目27番3号36階', '1998-11-14', 0, 0, 'miu10', '2000-08-24', 'miuwh', '2016-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS766593937659', 'Kenneth Grant', 0, '+86 10-0429-0618', 1, '346332254621874357', 'Room 27, CR Building, 267 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-10-14', 0, 0, 'kennethg707', '2005-07-29', 'grant2009', '2014-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS470419867768', '譚國賢', 1, '+86 132-2901-9029', 2, '586675532028254097', 'Room 39, 814 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-06-21', 0, 0, 'tkwokyin1957', '2014-04-18', 'taky', '2021-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS763893164160', '官天樂', 0, '+81 52-718-7670', 3, '263253428050719561', 'Rm. 9, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-12-19', 0, 0, 'tlko1991', '2018-07-15', 'tinlok1996', '2009-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS208037621503', 'Jerry Vargas', 0, '+44 (161) 209 3734', 2, '127156200736604493', 'Flat 29, 141 Portland St, Manchester, M1 3LA, United Kingdom', '1998-01-05', 0, 0, 'vargasjerry', '2008-10-27', 'jerrvarg', '2006-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS539428468652', '小川美緒', 0, '+1 213-997-6539', 1, '854277369340963237', '237 Grape Street Apartment 12, Los Angeles, CA 90002, United States', '1992-10-18', 0, 0, 'mio229', '2022-01-22', 'ogawami', '2004-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS518902199495', '陶宇宁', 1, '+86 10-552-9116', 3, '930950652826721736', '中国北京市房山区岳琉路175号41室', '1996-08-26', 0, 0, 'tyuning', '2015-04-20', 'yuninta', '2009-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS323738861031', '周睿', 1, '+86 20-296-4460', 4, '175305131910901618', '中国广州市海珠区江南西路780号3栋', '1990-07-01', 0, 0, 'zhourui1026', '2018-08-17', 'zhou08', '2015-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS336836851135', '小川愛梨', 1, '+86 196-5134-9051', 0, '780273035932334853', 'No.19 building, 932 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-07-18', 0, 0, 'airiogawa76', '2018-06-26', 'airi8', '2020-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS094909635195', 'Irene Burns', 1, '+86 28-5945-9832', 1, '240781722100720860', 'Room 8, CR Building, No.749, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1994-04-22', 0, 0, 'irene69', '2013-09-08', 'irenebu', '2002-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS142602873372', '汤晓明', 0, '+81 80-2389-6681', 2, '625091319614067835', '13-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1989-08-29', 0, 0, 'xiaomingtang', '2015-02-06', 'xiaomingt', '2018-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS276367473071', '梁杰宏', 0, '+81 11-530-5963', 2, '333957042020479476', '26-kai, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-05-10', 0, 0, 'jiliang9', '2008-07-25', 'jiehongl3', '2000-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS841712255472', 'Rose Reed', 1, '+1 213-980-5417', 3, '959726595828311254', '774 Figueroa Street Apt 25, Los Angeles, CA 90037, United States', '1991-07-23', 0, 0, 'roseree10', '2000-02-07', 'reed725', '2015-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS662028749397', '唐杰宏', 0, '+81 52-115-2735', 1, '071661798052856265', '35-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-10-09', 0, 0, 'tangjiehong1225', '2008-12-09', 'jiehongtang7', '2005-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS415152857189', '孔詩涵', 0, '+86 188-1810-9374', 1, '635101908835737598', '中国中山乐丰六路80号36楼', '1985-05-26', 0, 0, 'kong117', '2001-03-22', 'kongsh20', '2001-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS571611786413', 'Francisco Ward', 0, '+1 614-228-7427', 0, '390926403011489144', '850 Diplomacy Drive Apartment 1, Columbus, GA 43228, United States', '1995-03-04', 0, 0, 'ward1125', '2016-11-10', 'warfrancisco526', '2021-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS520296885425', '侯致远', 1, '+86 186-1103-8539', 4, '522279480643973568', 'Room 22, CR Building, 142 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-07-30', 0, 0, 'zhiyuanh2', '2002-06-20', 'zhiyuan715', '2001-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS541880423554', 'Philip Payne', 0, '+86 760-896-4949', 4, '772976315782860391', '中国中山京华商圈华夏街308号18栋', '1989-01-30', 0, 0, 'philp', '2010-02-22', 'paynephilip', '2013-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS927589224397', '翁力申', 1, '+86 28-2972-5979', 3, '832119981337999891', 'No.10 building, 1 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-06', 0, 0, 'yung9', '2020-10-05', 'yuliksun2', '2017-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS361424292931', '沈杰宏', 1, '+86 154-8403-8415', 1, '544805210149907163', 'No.18 building, 179 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-08-20', 0, 0, 'shenjieho', '2013-04-04', 'sji', '2000-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS263286990255', '小林湊', 1, '+86 755-029-6527', 2, '124374424232451304', 'Room 18, 743 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-07-17', 0, 0, 'mikob', '2004-02-06', 'kobayashiminato', '2016-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS831481925096', 'Wendy Tucker', 1, '+1 718-258-5586', 3, '153928954333610694', '548 1st Ave Suite 14, Brooklyn, NY 11220, United States', '1985-10-02', 0, 0, 'tuckwendy', '2009-01-04', 'wtucke', '2011-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS191008525930', '田睿', 1, '+86 161-1764-3926', 4, '640984609108823042', 'No.16 building, No. 147, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-04-15', 0, 0, 'rtia', '2020-12-17', 'ruiti', '2009-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS041942750535', '邹秀英', 1, '+81 74-873-1565', 4, '021208224287005729', '日本ならし西大寺赤田町一丁目7番10号12号室', '1990-04-03', 0, 0, 'xiuying418', '2007-12-14', 'xizou66', '2008-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS402727042840', 'Kathleen Robinson', 0, '+44 7226 752086', 0, '622540867551551724', 'Block 17, 230 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-09-11', 0, 0, 'kathleenrobinson', '2015-02-13', 'katrobin82', '2006-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS250731587228', '杉山涼太', 0, '+86 20-803-2048', 0, '446418810704382405', '中国广州市白云区小坪东路945号华润大厦34室', '1988-12-24', 0, 0, 'sugiyama3', '2014-10-09', 'sryota', '2005-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS145432562723', '孟杰宏', 1, '+1 212-513-5554', 4, '100460247183995154', '126 Wooster Street Suite 30, New York, NY 10012, United States', '1997-01-25', 0, 0, 'jmeng', '2002-11-27', 'menji94', '2008-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS686837359604', 'Jamie Daniels', 1, '+86 170-5123-2594', 1, '682595887850170397', '中国中山乐丰六路258号14号楼', '1992-01-12', 0, 0, 'danija', '2021-04-14', 'danielsjamie', '2007-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS702345240432', '蔡國榮', 0, '+81 52-141-3794', 0, '766741046020299243', '日本なごやし熱田区千年二丁目5番17号12階', '1998-01-25', 0, 0, 'choi1986', '2010-11-20', 'ckw', '2015-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS905665749406', '前田樹', 0, '+44 5494 181233', 1, '825429651716658821', 'Flat 7, 791 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-12-10', 0, 0, 'maedait', '2001-11-27', 'itsuki819', '2007-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS612306536079', 'Jesus Bennett', 0, '+86 180-0641-6894', 2, '438233010059909089', '21F, 829 Kengmei 15th Alley, Dongguan, China', '1992-04-13', 0, 0, 'jesus6', '2015-05-16', 'benjesus56', '2018-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS855458729131', '藤發', 1, '+1 213-187-6442', 3, '097686375643658698', '461 Wall Street Apt 42, Los Angeles, CA 90003, United States', '1996-06-20', 0, 0, 'ftang2009', '2019-07-13', 'ftan', '2014-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS593039578146', '周秀英', 0, '+86 179-5286-1007', 2, '229810150722520099', 'No.44 building, 596 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-10-04', 0, 0, 'xiuying9', '2017-08-22', 'xiuyingzhou1', '2008-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS127136615734', '陆子异', 1, '+81 70-6424-4530', 3, '683169631102608340', 'Rm. 14, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-12-21', 0, 0, 'ziyilu904', '2001-10-23', 'luziyi', '2003-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS405629881967', '田中健太', 0, '+44 5112 009779', 3, '683080845667587248', 'Block 46, 303 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-08-05', 0, 0, 'tanaka79', '2012-12-09', 'tanakenta', '2004-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS425470604716', '邵霆鋒', 0, '+44 5753 000292', 0, '112276584869131367', 'Flat 45, 907 Hanover Street, London, W1S 1YD, United Kingdom', '1988-04-16', 0, 0, 'siutf', '2008-04-08', 'tfsiu', '2018-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS642032238854', '増田美咲', 1, '+81 66-663-1585', 3, '142020750486071281', '日本おおさかし西成区天神ノ森二丁目1番16号28階', '1987-05-21', 0, 0, 'mamisaki6', '2021-05-11', 'mmisaki', '2005-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS959725043555', '樂學友', 0, '+86 199-7165-1482', 3, '643008093564920955', '40F, 684 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-02-28', 0, 0, 'hylok', '2019-07-01', 'hokyaulok3', '2000-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS867108091845', 'Heather Russell', 1, '+86 167-1090-8082', 4, '951793330888711369', 'Room 40, CR Building, 479 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-04-01', 0, 0, 'hrus', '2014-07-06', 'hearuss', '2015-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS593250279160', 'Susan Hernandez', 1, '+81 80-8053-2437', 2, '439492607321895660', '33F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-04-24', 0, 0, 'susanh2008', '2016-07-12', 'suhernandez', '2014-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS012067472930', '方淑怡', 0, '+81 3-3550-4513', 4, '796414282725832972', '日本東京千代田区丸の内一丁目6番20号21階', '1992-06-28', 0, 0, 'fsukyee8', '2003-04-21', 'sukyee926', '2014-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS999078322176', '叶致远', 0, '+81 90-0082-6716', 2, '160956287938523145', '日本おおさかし西成区出城一丁目1番4号2階', '1997-10-26', 0, 0, 'zhiyuan8', '2019-10-17', 'yezhiyuan', '2016-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS760351008348', '何宇宁', 1, '+1 212-185-9457', 1, '190378313503759367', '403 Canal Street Suite 38, New York, NY 10013, United States', '1987-05-20', 0, 0, 'yuninghe', '2001-11-18', 'heyuning830', '2008-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS522743674930', '長谷川百花', 0, '+86 21-2478-3329', 4, '383071519610732329', '13F, 873 Binchuan Rd, Minhang District, Shanghai, China', '1996-04-20', 0, 0, 'mha', '2020-01-15', 'momokahasegawa', '2008-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS059899570772', '安藤結翔', 0, '+81 52-382-2402', 2, '309685303260258372', '日本なごやし北区楠味鋺三丁目80番20号37号室', '1987-07-08', 0, 0, 'yuando', '2003-09-17', 'ando10', '2003-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS250507513483', '宮崎美咲', 0, '+81 74-124-2340', 1, '504875861756838846', '26F, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-02', 0, 0, 'miyazakimisaki', '2001-08-06', 'miyazaki97', '2006-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS157391449210', '陶子异', 0, '+1 614-487-7892', 1, '235299074200271327', '333 East Cooke Road Apt 44, Columbus, GA 43214, United States', '1990-11-07', 0, 0, 'ziyit709', '2016-12-29', 'tao8', '2021-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS148125055529', '贺安琪', 1, '+86 168-3756-5710', 4, '622863513732358396', '中国成都市锦江区红星路三段66号44室', '1991-09-20', 0, 0, 'anqi823', '2017-07-29', 'heanqi', '2003-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS274604379564', '苑思妤', 0, '+1 614-736-6687', 1, '025790358883100643', '953 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-05-23', 0, 0, 'yuen16', '2003-08-16', 'yuesz2', '2018-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS236867255529', '渡部大和', 1, '+81 52-309-2690', 2, '907246320541242296', '日本なごやし北区清水三丁目19番7号20階', '1988-10-20', 0, 0, 'watanabeyamato96', '2002-10-31', 'watayamato', '2014-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS812301200311', '周睿', 0, '+86 760-8532-0735', 0, '256092259152079380', 'Room 41, CR Building, 413 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-10-20', 0, 0, 'zhou1112', '2021-02-01', 'ruizh6', '2021-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS520273150917', '池田樹', 1, '+1 213-658-3653', 1, '360393431367864587', '757 Sky Way Apt 10, Los Angeles, CA 90043, United States', '1994-10-10', 0, 0, 'ikeda527', '2021-05-20', 'ii85', '2014-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS800287543498', '彭慧珊', 0, '+81 90-6006-7437', 3, '395364863818510069', '日本札幌中央区宮の森四条六丁目1番7号26階', '1990-03-16', 0, 0, 'waisan51', '2014-05-01', 'pang43', '2020-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS213760657476', '任杰倫', 0, '+44 7133 400166', 3, '061901336786081343', 'No.9 Main building, 631 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-06-08', 0, 0, 'yamcl', '2012-11-28', 'yamcl', '2004-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS782233440118', 'Edward Tucker', 1, '+86 10-5303-1163', 1, '295848399570527610', 'No.26 building, 367 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-03-02', 0, 0, 'edwtucker', '2015-02-21', 'tucker2', '2017-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS746631983160', 'Betty Dunn', 0, '+44 5330 183340', 2, '502363811838372705', 'Flat 25, 871 Mosley St, Manchester, M2 3AQ, United Kingdom', '1991-05-20', 0, 0, 'dunnbetty601', '2015-06-10', 'dbetty7', '2000-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS968958359725', '森優奈', 1, '+81 11-526-6269', 3, '024116115469177288', '日本札幌中央区宮の森四条六丁目1番7号19階', '1991-01-05', 0, 0, 'moriyuna', '2009-05-18', 'myuna10', '2008-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS094375228177', 'Larry Kelley', 1, '+1 614-836-7654', 2, '026086121759000712', '396 East Cooke Road Apt 8, Columbus, GA 43214, United States', '1991-05-24', 0, 0, 'larrykelley', '2007-08-06', 'lak', '2013-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS579132282883', '渡部美咲', 0, '+81 52-120-2816', 1, '102191462981562938', 'Rm. 17, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-12-30', 0, 0, 'watanabemisaki109', '2013-07-18', 'watanabemisaki903', '2007-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS655202404613', '常岚', 1, '+1 212-293-5121', 2, '287341045430856583', '177 Canal Street Apt 7, New York, NY 10013, United States', '1998-09-09', 0, 0, 'changlan', '2015-09-22', 'lachang', '2019-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS755814967143', '方家輝', 1, '+1 213-672-4835', 1, '871154286457848448', '678 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-11-26', 0, 0, 'fongkafai', '2002-09-26', 'fong9', '2018-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS402258551957', '佐野樹', 1, '+81 80-7036-3332', 1, '947567996671541887', 'Rm. 26, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1996-07-23', 0, 0, 'sano1110', '2000-07-02', 'itsuksano1967', '2021-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS501724211701', '蔡心穎', 1, '+1 838-415-0623', 3, '804065110556966239', '173 Lark Street 3rd Floor, Albany, NY 12210, United States', '1985-09-24', 0, 0, 'choisum', '2014-09-18', 'swc', '2010-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS933260379761', 'Barbara Alexander', 0, '+81 11-499-6412', 2, '658935007887710105', 'Rm. 45, 5-4-8 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-08-26', 0, 0, 'alexabar', '2018-11-25', 'alexanderbarbara79', '2009-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS857016990567', '韦睿', 0, '+86 185-0068-1334', 3, '597136201582119614', 'No.43 building, 123 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-09-06', 0, 0, 'ruwei', '2003-06-20', 'weirui1', '2007-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS709099494986', '斉藤玲奈', 0, '+86 199-5061-3194', 3, '573774110018361168', '中国中山天河区大信商圈大信南路493号49楼', '1985-01-03', 0, 0, 'rena77', '2010-11-19', 'sr43', '2000-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS132034035372', '盧詠詩', 1, '+81 80-6373-9397', 3, '811675541211853884', '日本ならし西大寺赤田町一丁目7番1号23号室', '1996-02-14', 0, 0, 'lo5', '2018-05-07', 'wslo', '2004-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS336469644454', 'Patrick Powell', 0, '+86 10-3783-0809', 3, '584647116057493789', '中国北京市海淀区清河中街68号229号3号楼', '1990-08-13', 0, 0, 'patrickp2', '2008-02-21', 'powell6', '2010-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS382562383379', '袁志遠', 1, '+81 90-6392-0230', 2, '567115917485801742', '日本おおさかし西成区出城一丁目1番16号1階', '1998-03-27', 0, 0, 'chiyuen814', '2019-06-10', 'yuchiyuen', '2000-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS801219229471', '彭慧敏', 0, '+86 166-2671-5781', 1, '482586145628054630', '中国中山京华商圈华夏街2号华润大厦12室', '1986-07-22', 0, 0, 'wmpang', '2016-09-11', 'wmpang', '2007-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS925810473327', '官發', 0, '+44 5854 639845', 0, '522143502167868658', 'Unit 42, Oxford Eco Centre, 294 New Street, Birmingham, B2 4DB, United Kingdom', '1995-06-07', 0, 0, 'koonfa7', '2020-04-04', 'kofat', '2022-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS740345895170', '贺云熙', 1, '+81 66-446-2446', 3, '882660929470011002', '37F, 2-1-8 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-02', 0, 0, 'hy7', '2017-05-02', 'heyunxi7', '2016-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS371366112437', '沈嘉伦', 1, '+81 3-1239-5747', 3, '170354840741313040', '9-kai, 3-15-20 Ginza, Chuo-ku, Tokyo, Japan', '1988-08-06', 0, 0, 'shenjialun', '2009-01-20', 'sjialun', '2017-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS212992397019', 'Sheila Edwards', 0, '+44 (121) 798 8811', 2, '262719227886684409', 'No.7 Main building, 220 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-11-21', 0, 0, 'sheilaedwards', '2009-10-28', 'edwards325', '2006-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS388535271854', '岡本百恵', 0, '+86 10-8926-4228', 1, '219167248988278363', 'No.33 building, 847 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-11-22', 0, 0, 'momoeokam7', '2001-08-16', 'omomoe', '2019-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS094326489172', '孫秀文', 1, '+86 168-6297-0401', 1, '133022903302684252', 'No.42 building, 967 Jianxiang Rd, Pudong, Shanghai, China', '1992-08-26', 0, 0, 'sauhsuan', '2012-08-22', 'saumanhsu74', '2006-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS048027988439', '翁惠敏', 0, '+81 52-881-4379', 4, '996707087327596914', '10-kai, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-06-29', 0, 0, 'waiman6', '2006-03-23', 'wmyung', '2009-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS060742603305', '曹睿', 0, '+44 7101 855672', 2, '711554791023011720', 'Flat 48, 818 Regent Street, London, W1B 2LX, United Kingdom', '1995-08-01', 0, 0, 'cao810', '2018-12-17', 'cao10', '2007-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS489770751117', '森田蓮', 1, '+81 70-3477-4934', 0, '602656272655438731', '日本ならし学園南三丁目9番2号38階', '1991-01-06', 0, 0, 'morita97', '2005-12-14', 'remor', '2010-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS211773773507', '钟震南', 0, '+86 760-0582-4454', 4, '022281737173203872', 'Room 28, 270 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-04-24', 0, 0, 'zhongzh', '2002-03-01', 'zhennanz', '2019-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS011483663660', '田子韬', 0, '+81 90-1105-0296', 4, '567668089495024347', '日本札幌白石区菊水三条五丁目2番4号1号室', '1985-01-07', 0, 0, 'zitaotia2', '2019-12-22', 'tianzitao7', '2020-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS147805382654', '林岚', 1, '+1 213-566-5368', 2, '296588093712188195', '448 S Broadway Apt 40, Los Angeles, CA 90015, United States', '1999-01-14', 0, 0, 'linl', '2003-09-25', 'linl2', '2001-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS738457653521', '溫惠敏', 1, '+86 159-6442-4024', 2, '755035524306867000', '中国深圳罗湖区田贝一路457号14室', '1997-05-24', 0, 0, 'wwa86', '2003-04-18', 'wwm', '2006-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS105084917706', '有村聖子', 0, '+81 11-204-3537', 3, '589107607416792312', '日本札幌白石区菊水三条五丁目2番13号31号室', '1997-09-07', 0, 0, 'aseiko1962', '2004-01-26', 'seikoarimura', '2014-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS602151639471', '斉藤詩乃', 1, '+86 21-5769-2118', 3, '878278521667997214', '16F, 339 Binchuan Rd, Minhang District, Shanghai, China', '1988-07-23', 0, 0, 'saitoshino89', '2020-12-09', 'saitoshino', '2002-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS060802355805', 'Eddie Carter', 1, '+86 150-9461-8829', 2, '063900910967052965', '中国成都市成华区玉双路6号934号华润大厦48室', '1985-07-20', 0, 0, 'eddiecarter3', '2019-01-12', 'cartere1968', '2011-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS677310510947', 'Benjamin Payne', 1, '+86 146-4948-9849', 3, '236309175541298189', '中国北京市西城区复兴门内大街528号华润大厦14室', '1997-03-14', 0, 0, 'paynebenjamin', '2000-02-26', 'pabenjamin', '2016-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS405322944708', '顾晓明', 0, '+81 52-558-7451', 2, '833053023667990329', '日本なごやし北区清水三丁目19番1号49階', '1996-01-18', 0, 0, 'guxiao', '2002-09-14', 'xiagu', '2017-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS725375658882', '鈴木樹', 1, '+1 213-250-0356', 2, '871134604084280376', '16 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1997-02-02', 0, 0, 'suzukitsuk623', '2007-04-18', 'suzuki99', '2010-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS708974025936', '尹杰宏', 0, '+1 838-476-0474', 2, '344368582906809472', '91 Central Avenue Apartment 50, Albany, NY 12205, United States', '1992-08-11', 0, 0, 'jiehoyin13', '2003-07-18', 'jiehongyin', '2014-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS478960138651', '严秀英', 1, '+81 80-0093-2848', 2, '390522777442310279', '日本東京港区東新橋一丁目5番17号7階', '1996-03-27', 0, 0, 'xiuyan3', '2004-09-12', 'yanxi6', '2006-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS909988903625', '林梓軒', 0, '+81 66-049-8755', 3, '638205142325737458', '日本おおさかし平野区加美東四丁目9番4号17号室', '1987-12-03', 0, 0, 'lth613', '2017-12-09', 'tszhlam4', '2002-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS315782121028', '岡田瑛太', 1, '+86 140-5218-2303', 3, '808863564705195768', '2F, 49 Jianxiang Rd, Pudong, Shanghai, China', '1992-06-25', 0, 0, 'okadaeit', '2009-09-19', 'eita00', '2007-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS514129493053', '宣國權', 1, '+86 181-9479-8325', 3, '480246136224550181', '中国上海市黄浦区淮海中路603号35室', '1989-11-22', 0, 0, 'kwokkuenhsu429', '2011-06-06', 'hsuankk831', '2001-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS786188519422', '黄睿', 1, '+81 90-9249-1843', 0, '837335422958387065', 'Rm. 35, 3-15-7 Ginza, Chuo-ku, Tokyo, Japan', '1997-03-21', 0, 0, 'hr56', '2008-10-02', 'huangrui', '2003-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS680184049285', 'Norman White', 1, '+86 769-0370-2256', 2, '464822211915221252', '中国东莞东泰五街604号39号楼', '1986-07-04', 0, 0, 'normawhite', '2006-03-30', 'whiteno8', '2019-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS818727193426', 'Joseph Green', 0, '+81 70-9403-5282', 2, '605646959666600440', '日本おおさかし西成区天神ノ森二丁目1番12号4号室', '1997-07-26', 0, 0, 'jogreen', '2022-02-13', 'josephg', '2009-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS958887979973', '小川優奈', 1, '+86 769-873-7862', 3, '607089365556072262', '中国东莞环区南街二巷25号50栋', '1993-06-01', 0, 0, 'ogawa04', '2016-04-14', 'yuna4', '2021-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS598127791256', 'Jacqueline Stephens', 0, '+81 3-9190-2828', 4, '977247351318195463', '日本東京品川区東五反田五丁目2番13号14階', '1993-11-14', 0, 0, 'jstephens', '2000-10-18', 'jacquelinesteph', '2013-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS739348936502', '姜霆鋒', 0, '+81 52-547-9593', 3, '299703867619808873', '日本なごやし北区楠味鋺三丁目80番2号26階', '1992-08-26', 0, 0, 'changtingfung', '2021-04-15', 'changtingfung', '2009-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS748450851615', '曹云熙', 1, '+1 838-408-7476', 3, '387083451863361677', '293 Lark Street Apt 2, Albany, NY 12210, United States', '1993-10-18', 0, 0, 'yunxicao52', '2018-12-15', 'yucao', '2004-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS436595684533', '翁家強', 0, '+86 139-9096-7448', 3, '421106241076697277', 'No.11 building, 93 Kengmei 15th Alley, Dongguan, China', '1987-11-23', 0, 0, 'yunkakeung', '2014-07-16', 'ykk', '2014-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS441270997604', '李富城', 1, '+81 11-438-4350', 3, '347115797118595379', '日本札幌白石区菊水三条五丁目4番7号43階', '1987-04-09', 0, 0, 'fushing425', '2010-01-03', 'fushing1951', '2017-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS391312583573', '汪永發', 1, '+44 (161) 436 4193', 2, '262323302748117038', 'Flat 36, 618 Portland St, Manchester, M1 3LA, United Kingdom', '1990-03-01', 0, 0, 'wong82', '2016-08-23', 'wingfat92', '2001-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS040343453870', '桜井聖子', 1, '+44 (1865) 55 8746', 2, '398014598765683187', 'Flat 12, 754 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1991-05-02', 0, 0, 'sseiko5', '2017-07-07', 'sakurai5', '2002-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS501833936752', '鈴木一輝', 1, '+86 163-4307-1834', 3, '548255974370758399', '18F, 738 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-07-28', 0, 0, 'isuz', '2009-06-28', 'ikkisuz501', '2011-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS263962500322', '青木花', 0, '+86 181-6849-0065', 2, '228453028162340951', '中国中山紫马岭商圈中山五路777号23室', '1989-12-30', 0, 0, 'hanaaoki422', '2018-04-19', 'aokihana40', '2010-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS162027503626', '曹國賢', 1, '+81 90-3395-5129', 4, '367848650123607566', '日本ならし西大寺赤田町一丁目7番18号10号室', '1993-10-06', 0, 0, 'kycho', '2012-12-07', 'kwokyin8', '2004-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS579201379469', '薛震南', 0, '+81 80-5948-2873', 1, '501637224107510187', '50-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-03-05', 0, 0, 'xue14', '2012-02-27', 'zhennanxu', '2020-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS435549353132', '井上葉月', 1, '+81 80-5236-0568', 2, '232294503172148701', '日本おおさかし西成区天神ノ森二丁目1番12号5階', '1998-09-13', 0, 0, 'hinoue', '2004-01-26', 'hazuki40', '2004-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS775394258789', '朱睿', 1, '+81 52-191-6755', 4, '548612629392138500', '日本なごやし守山区瀬古東二丁目171番17号45号室', '1987-06-13', 0, 0, 'ruizhu', '2016-11-02', 'rui4', '2017-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS277226908758', '向宇宁', 0, '+44 (20) 4573 2862', 2, '309046917047048377', 'No.43 Main building, 295 Regent Street, London, W1B 2LX, United Kingdom', '1996-07-23', 0, 0, 'xiang1016', '2015-08-28', 'yxi1225', '2014-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS274628965258', '譚秀文', 0, '+81 70-4498-5036', 3, '661246372139939111', 'Rm. 22, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-04-27', 0, 0, 'tamsauman724', '2014-11-06', 'tam7', '2008-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS184430450535', 'Alice Snyder', 1, '+44 7418 922396', 4, '948611087919436006', 'Block 47, 777 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-06-29', 0, 0, 'salice', '2016-09-04', 'snyderalice623', '2008-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS990628103272', '白曉彤', 0, '+44 (161) 133 9348', 2, '103475325901709655', 'Block 35, 248 Portland St, Manchester, M1 3LA, United Kingdom', '1993-12-05', 0, 0, 'paht604', '2002-02-26', 'htpa', '2001-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS593195843939', 'Gregory Stone', 0, '+81 70-5417-6783', 1, '505553689123314224', '日本おおさかし平野区加美東四丁目9番1号47号室', '1987-05-04', 0, 0, 'stone06', '2008-02-18', 'gregory813', '2012-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS940018682766', '杜嘉伦', 0, '+86 769-710-2707', 3, '783765870926358241', '19F, 270 Shanhu Rd, Dongguan, China', '1997-11-14', 0, 0, 'dujialun', '2019-05-31', 'djia', '2001-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS613385211424', '梁安琪', 0, '+81 90-7608-3858', 1, '733850346803330960', '日本東京中央区銀座三丁目12番11号47号室', '1987-10-12', 0, 0, 'okleung', '2011-06-07', 'onkayleun1', '2012-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS245154256575', 'Bryan Dixon', 0, '+86 160-9905-7311', 1, '482803043561693351', '中国深圳福田区深南大道359号10栋', '1995-11-27', 0, 0, 'bryan316', '2011-01-02', 'dixonb', '2021-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS951043329767', '石詩涵', 0, '+81 66-573-3095', 1, '021739117857870017', '日本おおさかし東住吉区東田辺三丁目27番14号12階', '1989-05-04', 0, 0, 'shihanshi', '2017-10-10', 'shihansh', '2008-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS266806225980', '野村陸', 0, '+81 70-7050-6295', 2, '810511568579057013', 'Rm. 41, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-12-30', 0, 0, 'nomurar', '2008-08-28', 'nrik', '2000-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS207981088098', '吳國榮', 1, '+1 614-102-0401', 2, '843984480388561464', '664 Wicklow Road Suite 13, Columbus, GA 43204, United States', '1991-09-04', 0, 0, 'nkwokwing829', '2002-11-19', 'kwokwingng', '2006-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS636467977272', '杜嘉伦', 0, '+1 213-107-0758', 1, '424065400152933821', '486 Alameda Street Apartment 16, Los Angeles, CA 90002, United States', '1991-01-27', 0, 0, 'jialun612', '2000-02-27', 'jialun614', '2008-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS426724596197', '邓杰宏', 0, '+1 212-720-4324', 1, '879564478706307513', '717 Bank Street Apartment 27, New York, NY 10014, United States', '1991-11-25', 0, 0, 'jiehongde4', '2010-12-11', 'denj6', '2015-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS561519881842', '梁杰宏', 1, '+86 170-6520-6226', 2, '342125809485566036', '中国北京市延庆区028县道750号12号楼', '1989-08-29', 0, 0, 'liang52', '2008-12-16', 'jiehong314', '2010-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS341586001651', '郭子韬', 1, '+1 213-506-9935', 1, '107876653167436436', '964 Figueroa Street Apartment 4, Los Angeles, CA 90037, United States', '1995-03-07', 0, 0, 'guzit48', '2008-02-23', 'zitguo', '2005-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS993727124682', 'Leonard Hughes', 1, '+44 7873 622385', 2, '730117317056199217', 'Flat 50, 329 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-05-29', 0, 0, 'leonahu', '2007-12-25', 'hleona50', '2012-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS388805009329', '伊藤大和', 0, '+44 (1223) 28 3389', 0, '408014351805056070', 'Block 1, 473 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-07-22', 0, 0, 'yamito726', '2002-04-07', 'yamato4', '2020-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS290978373551', '陈宇宁', 0, '+86 21-278-8832', 3, '821575995042980295', 'No.7 building, 645 Jianxiang Rd, Pudong, Shanghai, China', '1986-06-09', 0, 0, 'yuning5', '2014-01-25', 'yuningchen', '2003-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS053925377781', '中村健太', 0, '+86 760-999-6564', 0, '702656861381580107', '中国中山乐丰六路830号9号楼', '1997-03-28', 0, 0, 'knakamura', '2010-01-17', 'nakamurakenta', '2001-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS224985162181', '樊霆鋒', 0, '+86 21-950-8077', 0, '618106781505851141', 'Room 35, 755 Binchuan Rd, Minhang District, Shanghai, China', '1989-10-31', 0, 0, 'tff', '2000-02-19', 'fantf', '2013-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS134658916970', '吴詩涵', 1, '+81 11-398-0528', 2, '463379744261900838', 'Rm. 16, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-19', 0, 0, 'shihanwu', '2019-09-24', 'shihanwu', '2005-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS021355690224', '常秀英', 0, '+86 157-1309-4179', 2, '357380726380304270', 'No.49 building, 286 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1992-08-23', 0, 0, 'xiuyingc916', '2015-05-16', 'chanxiuying9', '2013-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS564096947192', '廖云熙', 1, '+44 (116) 399 3286', 2, '469659950251386759', 'Unit 50, Oxford Eco Centre, 339 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-11-15', 0, 0, 'liaoy1', '2004-12-12', 'liaoy', '2005-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS481532058624', 'Jeremy Wright', 1, '+81 52-393-5008', 2, '234908044283800530', '日本なごやし守山区瀬古東二丁目171番8号30階', '1985-01-22', 0, 0, 'wjerem119', '2021-08-13', 'wrightjeremy117', '2010-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS982616134181', '钟秀英', 0, '+44 7123 371475', 3, '632039893331116244', 'Unit 27, Oxford Eco Centre, 883 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-05-18', 0, 0, 'zhongxiu', '2004-03-19', 'zxiuyi420', '2015-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS746916772260', '姚岚', 0, '+1 838-777-7052', 0, '459675160371527242', '27 Broadway Suite 20, Albany, NY 12207, United States', '1991-06-07', 0, 0, 'lyao7', '2000-06-25', 'layao5', '2002-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS573104601594', '岡本涼太', 1, '+81 70-6036-2450', 3, '773276765848350560', '日本おおさかし近江堂一丁目7番10号11号室', '1987-12-19', 0, 0, 'ryota56', '2001-06-28', 'ryookam51', '2003-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS897985093341', '楊慧儀', 0, '+81 3-8476-8127', 1, '594836761185315803', 'Rm. 22, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-08-08', 0, 0, 'wyyeung1108', '2003-11-17', 'yeung1957', '2007-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS833859109994', '吴詩涵', 0, '+44 (121) 589 9524', 3, '339285520146098270', 'Unit 47, Oxford Eco Centre, 275 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-11-16', 0, 0, 'shihan87', '2018-08-25', 'shihan328', '2006-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS451412540556', '松本聖子', 0, '+81 70-4638-8551', 2, '409834413949504659', 'Rm. 19, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-08-16', 0, 0, 'matsuseiko', '2011-08-13', 'matsumoto95', '2005-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS102909469409', '關詩君', 1, '+81 3-6073-2254', 1, '890965606607715258', '日本東京品川区東五反田五丁目2番13号37階', '1998-08-01', 0, 0, 'szekwankwan', '2018-06-10', 'kwask', '2016-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS329180407278', 'Barbara Stewart', 0, '+86 176-0211-6067', 2, '874569476552571767', '47F, 28 Dongtai 5th St, Dongguan, China', '1991-03-30', 0, 0, 'bst', '2000-08-04', 'barbarastew', '2018-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS914259244639', '丸山明菜', 0, '+86 10-202-2845', 1, '954447318255257023', 'Room 28, CR Building, 776 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-08-20', 0, 0, 'akina130', '2021-05-28', 'maruyamaakina1980', '2003-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS015609981166', '侯杰宏', 0, '+81 74-071-7216', 0, '202952055760194710', '日本ならし学園南三丁目9番1号45階', '1987-09-05', 0, 0, 'hou1982', '2012-09-25', 'jih87', '2021-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS819313516778', 'Ethel Perry', 1, '+81 70-2032-5963', 4, '453958062995640039', '44-kai, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-05-01', 0, 0, 'etper1124', '2009-11-22', 'etperr1214', '2018-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS881010119280', '傅詩涵', 0, '+86 28-997-1168', 1, '298722299172058179', 'Room 49, CR Building, 376 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-04-01', 0, 0, 'shihan4', '2016-06-02', 'shihanfu50', '2018-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS447054534100', '陶秀英', 1, '+81 3-6643-5170', 4, '160826644489438059', '日本東京中央区銀座三丁目12番4号41号室', '1997-05-29', 0, 0, 'taoxiuying', '2017-07-26', 'taoxiuying3', '2021-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS713604816889', '顾子韬', 1, '+81 11-265-0401', 0, '674045826903288211', '6-kai, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-04-23', 0, 0, 'zgu406', '2009-10-14', 'zitaog', '2022-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS070045535545', '赵子韬', 0, '+44 (151) 133 0978', 3, '983736920880963756', 'No.46 Main building, 2 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-05-14', 0, 0, 'zitaozhao', '2001-09-14', 'zz9', '2007-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS796827865301', 'Josephine Gonzales', 0, '+81 3-6833-3450', 0, '664319476927353756', '日本東京港区東新橋一丁目5番2号23階', '1992-06-03', 0, 0, 'jgonz', '2012-12-21', 'josephine53', '2008-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS774020632794', '呂家文', 1, '+86 154-2145-3407', 1, '363778620612776383', 'No.29 building, 196 Middle Huaihai Road, Huangpu District, Shanghai, China', '1985-11-06', 0, 0, 'lui00', '2009-02-26', 'kmlu40', '2021-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS147775230473', '蔣曉彤', 0, '+44 7093 999492', 3, '934082402776103257', 'Unit 44, Oxford Eco Centre, 758 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1999-02-19', 0, 0, 'chianghiutung', '2019-03-29', 'hiutchia', '2012-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS216798002582', '河野架純', 1, '+44 7928 899236', 2, '348433517468524577', 'No.40 Main building, 642 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-12-18', 0, 0, 'konok', '2003-05-02', 'kasumi3', '2010-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS885427985275', '高致远', 0, '+44 (20) 0194 5465', 1, '343320940849245009', 'Unit 18, Oxford Eco Centre, 27 Hanover Street, London, W1S 1YD, United Kingdom', '1987-06-28', 0, 0, 'gaozhiy', '2001-07-13', 'zhiyga4', '2005-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS870075359026', '崔岚', 0, '+86 10-666-0082', 1, '563302536609025937', '24F, 78 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-08-08', 0, 0, 'cui9', '2021-06-13', 'lancu1108', '2014-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS555021972153', '唐睿', 0, '+81 90-7585-8719', 2, '748977446848814087', '日本ならし西大寺赤田町一丁目7番9号33階', '1996-01-14', 0, 0, 'ruit', '2016-07-04', 'rui528', '2011-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS087545432357', '菅原陽菜', 1, '+1 212-628-6487', 1, '346590924896562258', '490 Fifth Avenue Apartment 20, New York, NY 10017, United States', '1991-05-10', 0, 0, 'hina7', '2018-03-29', 'hinas', '2012-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS027423606507', '樊浩然', 1, '+86 760-4773-3119', 1, '377832491102730151', 'No.38 building, 117 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-04-04', 0, 0, 'fanhy', '2020-01-31', 'fanhoyin1216', '2008-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS665145696325', '金子彩乃', 0, '+44 5692 073385', 4, '498506202704135642', 'Block 10, 959 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1993-12-09', 0, 0, 'ayk', '2010-10-16', 'kanekoay', '2010-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS615018703834', '渡辺玲奈', 0, '+1 838-621-0355', 4, '366230202310687180', '98 Lark Street Suite 37, Albany, NY 12210, United States', '1992-10-14', 0, 0, 'satorena', '2018-05-30', 'satorena1', '2018-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS939374697739', 'Francisco Gonzales', 0, '+44 7037 728184', 2, '768604227539443524', 'Unit 14, Oxford Eco Centre, 475 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-04-07', 0, 0, 'gfrancisco', '2004-11-02', 'fgonza', '2017-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS030088443027', '丁璐', 1, '+86 28-888-8648', 2, '684017022025535201', 'No.35 building, 417 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-07-25', 0, 0, 'luding', '2004-09-23', 'dlu75', '2010-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS318147748207', 'Edward Munoz', 0, '+44 5680 060434', 1, '215254725447998816', 'No.46 Main building, 945 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-02-09', 0, 0, 'munoze92', '2003-04-13', 'edwardmunoz1971', '2016-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS035694089445', '山本翼', 0, '+1 614-729-7544', 4, '079991351113449319', '823 East Alley Apt 39, Columbus, GA 43201, United States', '1994-05-19', 0, 0, 'tsubasay2016', '2012-02-22', 'ytsub', '2009-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS097823619701', '汪致远', 1, '+86 131-2002-0685', 1, '389314355736670189', '中国上海市徐汇区虹桥路408号46楼', '1998-02-05', 0, 0, 'zhiyuan69', '2012-08-02', 'wang75', '2010-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS829728204027', '林安琪', 1, '+81 80-5956-7703', 2, '018594428587881737', '5F, 2-1-8 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-10-26', 0, 0, 'lanqi9', '2013-02-09', 'anqil66', '2017-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS372343235118', '韦璐', 0, '+86 197-3870-5905', 4, '194958161462778513', '中国成都市锦江区红星路三段560号18栋', '1993-10-15', 0, 0, 'lw6', '2018-05-18', 'luwei130', '2006-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS733442016409', '江安琪', 1, '+81 3-6661-4552', 3, '093288799077058934', 'Rm. 43, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-04-04', 0, 0, 'anqijiang', '2018-02-25', 'jiananqi', '2011-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS119582252783', 'Kenneth Washington', 0, '+1 718-192-0857', 4, '749932323024747252', '530 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1997-04-29', 0, 0, 'kenneth220', '2016-04-22', 'washingtonkenneth', '2015-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS624824156580', '刘嘉伦', 1, '+81 80-5735-9018', 4, '763097410121334221', '29-kai, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1989-01-03', 0, 0, 'liujialun2', '2008-08-29', 'jial76', '2019-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS588615954172', '清水陽太', 1, '+1 312-042-0176', 1, '657174153372451599', '476 North Michigan Ave Apartment 41, Chicago, IL 60611, United States', '1993-03-19', 0, 0, 'yoshimi', '2001-09-24', 'yotshi', '2021-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS566860951662', '胡嘉伦', 1, '+81 3-5481-3878', 2, '148766331858741378', '38-kai, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-07-16', 0, 0, 'jialunh', '2011-10-16', 'jialunhu', '2015-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS795855449681', '朱杰宏', 1, '+44 7464 709554', 1, '237098510110970720', 'Flat 11, 267 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-05-10', 0, 0, 'jiehozhu', '2000-10-10', 'jiz', '2005-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS280565679613', '和田大地', 0, '+44 (161) 045 3760', 2, '259223707503433205', 'Unit 24, Oxford Eco Centre, 136 Portland St, Manchester, M1 3LA, United Kingdom', '1992-08-30', 0, 0, 'wadadaich95', '2018-06-05', 'daichiwa10', '2014-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS012468622895', '戴杰宏', 1, '+86 20-8323-7915', 3, '639687852099759711', '中国广州市白云区机场路棠苑街五巷599号38栋', '1991-12-26', 0, 0, 'jdai1', '2017-05-20', 'daijieh', '2006-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS172061261305', '吉田蒼士', 0, '+81 52-682-5502', 3, '379686553763590027', '日本なごやし北区楠味鋺三丁目80番5号35号室', '1994-09-02', 0, 0, 'yoshidaao56', '2013-01-04', 'yoshiaoshi5', '2022-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS824704228022', '西村大和', 1, '+81 66-880-9318', 3, '935045665119455091', '19-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-07-27', 0, 0, 'nisyamato10', '2010-09-01', 'nyam', '2017-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS349954216471', 'Jack Mendoza', 1, '+44 (121) 412 0939', 2, '194450429618390943', 'Block 34, 274 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-09-16', 0, 0, 'jackm4', '2019-01-06', 'mendojack5', '2003-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS251560006982', '曹云熙', 1, '+86 20-5444-8605', 2, '284736629306047550', '32F, 739 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-07-04', 0, 0, 'cyunxi7', '2020-10-09', 'cay', '2007-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS206962049978', '中山優奈', 1, '+86 195-8842-0216', 3, '470787391758547335', 'Room 10, CR Building, No. 362, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-09-28', 0, 0, 'yunakay3', '2016-06-27', 'ynak', '2013-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS524638765503', '木村百花', 1, '+44 (121) 105 2949', 2, '668218881904691236', 'Flat 25, 514 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-08-18', 0, 0, 'kimura1973', '2018-01-30', 'momok60', '2000-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS322977903623', '邱致远', 0, '+86 135-3942-6700', 2, '144238088753648178', '中国深圳龙岗区布吉镇西环路204号华润大厦36室', '1990-05-27', 0, 0, 'qzhiyuan', '2009-01-25', 'zhiyuanqiu', '2021-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS864747607652', 'Dawn Butler', 0, '+81 70-3180-5485', 2, '030422990974491572', '日本札幌白石区菊水三条五丁目4番19号11号室', '1998-08-07', 0, 0, 'dawnbutle4', '2011-09-11', 'dawn321', '2014-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS479559754193', 'Joseph Garcia', 1, '+1 212-466-9738', 4, '417990582734146574', '493 Canal Street Apartment 50, New York, NY 10013, United States', '1996-05-26', 0, 0, 'josephga', '2000-05-01', 'gjoseph7', '2005-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS129599374832', '石秀英', 1, '+86 760-1610-4360', 1, '806982517245035215', '中国中山紫马岭商圈中山五路57号49栋', '1986-06-09', 0, 0, 'shix', '2008-04-16', 'shxiuy1117', '2003-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS380524814616', '刘子韬', 0, '+81 3-7649-3231', 4, '850316851918950652', '日本東京中央区銀座三丁目12番8号17階', '1994-10-14', 0, 0, 'zli', '2001-04-17', 'zitaol', '2004-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS124344406280', 'Anita Patterson', 1, '+44 (1223) 12 4178', 1, '859515815214570762', 'Flat 27, 613 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-02-23', 0, 0, 'ap54', '2017-12-05', 'anita128', '2004-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS432928342997', '薛子异', 0, '+86 21-394-4360', 1, '186735799475904529', 'Room 32, CR Building, 135 Jianxiang Rd, Pudong, Shanghai, China', '1991-01-30', 0, 0, 'zx1947', '2013-05-21', 'ziyi1', '2020-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS186531964101', 'Eddie Alexander', 0, '+81 74-057-0690', 0, '371943772917364898', '9-kai, 3-9-12 Gakuenminami, Nara, Japan', '1990-02-09', 0, 0, 'eddieal812', '2015-12-29', 'eddieal', '2004-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS989225251897', '渡部葵', 0, '+86 21-180-3650', 1, '669020949387041461', '16F, 901 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-04-04', 0, 0, 'watanabe717', '2010-11-03', 'watanabeaoi', '2013-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS983076058887', 'Barry Kennedy', 1, '+86 769-7414-7011', 1, '563114710248721819', 'No.25 building, 993 Huanqu South Street 2nd Alley, Dongguan, China', '1988-11-21', 0, 0, 'barrykennedy', '2000-02-29', 'barry77', '2011-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS149611925160', '姜晓明', 0, '+86 132-4740-0669', 3, '994000715184605633', 'No.45 building, 792 Shanhu Rd, Dongguan, China', '1999-02-27', 0, 0, 'jxia1122', '2004-11-05', 'xiaomingjiang9', '2006-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS070858279997', '钱秀英', 1, '+81 52-904-7983', 1, '156721587392376241', 'Rm. 6, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1985-03-03', 0, 0, 'qianx', '2017-08-19', 'qianxiuy', '2011-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS747568787746', '许詩涵', 0, '+1 213-466-7662', 0, '661876992897222565', '557 S Broadway Apartment 30, Los Angeles, CA 90015, United States', '1995-05-26', 0, 0, 'shihxu', '2015-09-30', 'xushihan19', '2021-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS408747065928', '林家強', 0, '+86 760-7018-8157', 3, '509499428233712657', '中国中山京华商圈华夏街663号29室', '1985-07-04', 0, 0, 'lamkak', '2011-07-07', 'lkak', '2013-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS956744859822', '鈴木結翔', 0, '+86 20-729-2992', 1, '779759223738845540', '45F, 680 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-07-18', 0, 0, 'suzukiyuito', '2006-09-22', 'suzyu', '2012-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS953431559739', '黎裕玲', 1, '+86 21-988-3624', 4, '173035842336534612', 'No.35 building, 978 Jianxiang Rd, Pudong, Shanghai, China', '1994-04-18', 0, 0, 'yulinglai', '2000-12-25', 'yuling4', '2011-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS155754018561', '韦睿', 0, '+81 11-670-7069', 4, '064786301617196396', '20-kai, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-05-08', 0, 0, 'weirui726', '2009-12-20', 'rwei83', '2001-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS965959143210', 'Larry Patel', 0, '+1 330-382-8345', 1, '244922779010249265', '856 Fern Street Apartment 26, Akron, OH 44307, United States', '1990-08-25', 0, 0, 'lapatel02', '2020-01-03', 'patellarr10', '2013-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS261192528893', '于子异', 1, '+86 21-475-5205', 2, '031464094476411735', 'Room 32, CR Building, 817 Binchuan Rd, Minhang District, Shanghai, China', '1996-07-11', 0, 0, 'ziyiy', '2007-06-01', 'ziyi1980', '2021-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS404767280167', '張麗欣', 1, '+86 158-0536-1062', 3, '158483335780351794', '中国北京市朝阳区三里屯路203号27栋', '1996-03-22', 0, 0, 'cheung6', '2015-04-16', 'cheung8', '2000-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS729057215923', '森田架純', 0, '+81 70-4311-2609', 3, '938282395840596776', '日本ならし学園南三丁目9番18号9階', '1995-05-30', 0, 0, 'kasumimorita56', '2001-01-07', 'kasumi8', '2016-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS366746276690', '楊俊宇', 1, '+81 80-2549-0540', 3, '622421730332962380', '38-kai, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-29', 0, 0, 'yeung9', '2002-06-01', 'cyyeun518', '2010-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS377843000944', '任永權', 1, '+86 132-6161-8658', 4, '901570439506746445', '19F, 959 Tianhe Road, Tianhe District, Guangzhou, China', '1993-05-29', 0, 0, 'yam528', '2012-11-21', 'yam502', '2013-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS513169807056', '汤云熙', 1, '+86 199-4163-7163', 0, '157355315875528004', '中国成都市成华区二仙桥东三路642号12栋', '1985-07-26', 0, 0, 'yunxi7', '2009-12-10', 'tangyunxi929', '2020-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS208436119862', 'Robert Gomez', 1, '+86 193-8073-6500', 3, '004986595693527161', 'Room 46, CR Building, 168 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-08-15', 0, 0, 'robgomez', '2022-01-11', 'robertgomez1971', '2003-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS760622904406', '黎安琪', 0, '+81 52-878-7020', 1, '145091544305887296', '26F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-10-21', 0, 0, 'li1984', '2021-02-25', 'lan', '2019-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS310354028547', '松本大輔', 1, '+86 144-6664-8361', 1, '970378357699557420', '中国中山乐丰六路634号6楼', '1996-02-03', 0, 0, 'daisukemats', '2017-05-14', 'daism1952', '2020-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS853012486384', '近藤美緒', 0, '+81 66-835-6349', 3, '465159670602784954', '20F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-02-21', 0, 0, 'konmio', '2016-12-29', 'miokondo', '2018-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS606605374589', '韓俊宇', 1, '+1 718-257-0725', 0, '465805745190766395', '707 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1987-04-20', 0, 0, 'cyha917', '2021-02-23', 'cyhan', '2016-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS005093150362', 'Martin Kelley', 1, '+86 10-3700-1903', 2, '199311711914873149', '中国北京市东城区东单王府井东街269号19栋', '1991-12-14', 0, 0, 'mkelley', '2009-07-27', 'kelley6', '2010-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS033034150538', '楊發', 0, '+86 134-7077-7629', 2, '379215740625701107', '25F, 69 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-06-30', 0, 0, 'yeungfat8', '2017-03-20', 'yeung202', '2001-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS503503665535', '周璐', 1, '+1 212-312-4365', 1, '479411468959645820', '582 Bank Street 3rd Floor, New York, NY 10014, United States', '1995-10-22', 0, 0, 'luzho', '2012-07-15', 'zhlu', '2006-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS458333110170', '千葉光莉', 1, '+81 52-974-7130', 3, '780243450573773858', '日本なごやし守山区瀬古東二丁目171番3号3号室', '1988-12-27', 0, 0, 'chikari', '2003-10-18', 'chibahikari', '2021-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS506178954670', '武田結翔', 0, '+86 28-962-3588', 1, '946484891883925154', '中国成都市锦江区红星路三段739号13室', '1986-06-17', 0, 0, 'takyuito', '2017-10-29', 'takedyuito1994', '2007-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS912574910295', 'Maria Fisher', 0, '+1 838-237-1369', 0, '730141214431651524', '981 State Street Apartment 34, Albany, NY 12203, United States', '1993-05-24', 0, 0, 'fishermar2', '2010-01-31', 'fishm', '2003-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS871870960687', '桜井美月', 1, '+86 755-111-8273', 3, '237062265522659386', 'Room 31, 169 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-12-06', 0, 0, 'mitsusaku', '2009-03-14', 'sakumitsuki1', '2007-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS597488583300', '秦嘉伦', 0, '+81 70-0043-3941', 2, '649871384322603097', '31-kai, 14 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-09-24', 0, 0, 'qijialun', '2014-09-07', 'qijial', '2002-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS697726532957', 'Doris Diaz', 0, '+86 141-3418-1497', 4, '573775187577619421', 'No.31 building, 103 Binchuan Rd, Minhang District, Shanghai, China', '1991-09-25', 0, 0, 'ddiaz8', '2008-06-19', 'ddoris914', '2012-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS258068859528', '孙秀英', 1, '+81 80-0070-0102', 3, '472647047176581819', '日本東京品川区東五反田五丁目2番20号14階', '1991-01-23', 0, 0, 'sun1992', '2018-05-03', 'xiuyingsun912', '2009-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS816144216850', 'William Gonzales', 1, '+86 28-7034-8090', 2, '540951231866306327', 'No.40 building, No. 13, Shuangqing Rd, Chenghua District, Chengdu, China', '1986-03-08', 0, 0, 'gonzales6', '2015-01-24', 'gonzales9', '2006-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS102643569220', '常秀英', 1, '+86 10-3127-6031', 2, '937112099627721518', '中国北京市海淀区清河中街68号447号3号楼', '1990-08-11', 0, 0, 'xiuychang', '2011-03-17', 'cxiuying', '2018-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS897192724204', '孫小慧', 0, '+86 10-9765-7201', 2, '227663230958293028', '中国北京市延庆区028县道886号华润大厦31室', '1995-03-30', 0, 0, 'hsuansw3', '2012-04-19', 'hsuan6', '2018-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS925832180323', '高璐', 1, '+1 838-683-9996', 1, '005483413339259123', '912 Broadway Apartment 42, Albany, NY 12207, United States', '1985-11-19', 0, 0, 'lugao3', '2017-04-21', 'gaolu', '2007-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS543854155216', '吴睿', 1, '+86 21-2493-8115', 4, '502676857534683900', '中国上海市徐汇区虹桥路588号38室', '1989-10-10', 0, 0, 'ruiwu1984', '2010-08-22', 'rwu', '2012-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS307936329233', '上田彩乃', 0, '+86 10-5684-1523', 2, '557173136777591175', 'No.21 building, 468 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-05-29', 0, 0, 'uayan1101', '2000-07-08', 'uedaayan', '2016-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS516808479979', '今井涼太', 1, '+86 190-5037-2477', 1, '850044188193873339', 'Room 33, 278 Ganlan Rd, Pudong, Shanghai, China', '1988-11-03', 0, 0, 'iry', '2014-01-24', 'ryotaim', '2004-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS092956289249', 'Patricia Porter', 1, '+1 718-852-1036', 2, '899156023318347359', '833 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1998-11-16', 0, 0, 'porter517', '2020-10-05', 'porterpat', '2000-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS271435349110', '杉山葵', 1, '+81 11-619-4341', 3, '544818606975726703', 'Rm. 12, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-11-18', 0, 0, 'asugi', '2011-05-19', 'sugiaoi', '2010-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS913462399975', '江子韬', 1, '+81 80-4436-2318', 3, '988383244035291502', 'Rm. 27, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1985-06-09', 0, 0, 'jianzita127', '2016-04-27', 'jiangz', '2019-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS959453678613', 'Vincent Reyes', 1, '+44 7733 615576', 4, '860113761075727092', 'Block 17, 930 Regent Street, London, W1B 2LX, United Kingdom', '1987-12-28', 0, 0, 'reyes829', '2021-09-18', 'vincent10', '2020-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS780874379438', '罗璐', 0, '+81 3-2677-3552', 3, '473512905010110287', 'Rm. 11, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-11-24', 0, 0, 'luol63', '2006-01-03', 'lulu', '2014-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS478513586101', '山口涼太', 0, '+86 755-198-4989', 3, '614608342505139655', 'No.36 building, 593 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-04-22', 0, 0, 'yamaguchiryot315', '2007-11-15', 'yamryota63', '2001-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS408073960947', '任嘉欣', 0, '+81 70-5567-7191', 2, '063942590146151454', '26F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-05-20', 0, 0, 'yam1983', '2012-01-16', 'kyy', '2009-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS884892301718', '横山玲奈', 1, '+86 21-1475-0740', 0, '675942514292915945', 'No.9 building, 176 Ganlan Rd, Pudong, Shanghai, China', '1998-03-04', 0, 0, 'renyokoyama09', '2008-05-06', 'reyok', '2008-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS636907711628', '雷詩涵', 0, '+81 11-999-9668', 2, '386965054998939431', '日本札幌豊平区豊平三条十三丁目3番5号10号室', '1997-11-30', 0, 0, 'lei5', '2012-04-09', 'shihanlei2', '2013-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS345629577426', 'Raymond Kennedy', 0, '+81 66-063-5557', 1, '269455417382115653', 'Rm. 26, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1990-10-03', 0, 0, 'kennedyraymond8', '2005-09-08', 'kennedyraymond', '2004-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS726277929887', '福田百恵', 1, '+1 838-393-1596', 1, '789054438029126693', '229 Lark Street Apartment 5, Albany, NY 12210, United States', '1998-08-09', 0, 0, 'momofukuda', '2002-07-27', 'fukumomo', '2018-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS090429488675', '遠藤優奈', 1, '+81 70-1085-0124', 3, '933779918540224159', '日本おおさかし平野区加美東四丁目9番6号48階', '1985-12-02', 0, 0, 'yunaendo', '2011-01-16', 'endoyuna4', '2003-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS681597590810', '邱小慧', 0, '+81 11-402-2827', 1, '389523805427809642', '日本札幌白石区菊水三条五丁目4番17号43階', '1995-07-16', 0, 0, 'swy3', '2011-11-24', 'yausiuwai8', '2006-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS111701724156', 'Ralph Morris', 1, '+81 90-5306-5530', 2, '666032127394434249', '23F, 3-9-11 Gakuenminami, Nara, Japan', '1992-10-08', 0, 0, 'ralmorris', '2018-10-26', 'morris707', '2006-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS438110663835', '董睿', 0, '+81 80-1831-0651', 1, '346377632543795991', '日本東京千代田区丸の内一丁目6番12号13階', '1993-08-30', 0, 0, 'dongrui9', '2000-05-12', 'dongrui726', '2020-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS730128630789', '赵震南', 1, '+86 185-7940-4575', 4, '651388313341779829', '9F, 463 Shanhu Rd, Dongguan, China', '1998-06-24', 0, 0, 'zzhennan', '2020-06-08', 'zhazhen5', '2010-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS560175686707', 'Susan Castro', 1, '+44 5573 556560', 1, '351389679378467650', 'Block 46, 428 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1994-10-19', 0, 0, 'susanc2', '2014-12-31', 'castro1010', '2003-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS721533639056', '加藤優奈', 1, '+86 21-4238-3147', 0, '877948509412152129', '中国上海市浦东新区橄榄路379号26楼', '1998-12-31', 0, 0, 'yunakato', '2009-07-09', 'yuna425', '2009-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS859882087644', 'Amber Morales', 1, '+1 212-843-7304', 0, '440998620206206792', '507 Wooster Street Apartment 47, New York, NY 10012, United States', '1985-04-27', 0, 0, 'moralesamber312', '2002-03-23', 'ambmorales', '2003-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS104474387574', '秦子韬', 1, '+44 7309 688573', 0, '394482903869984237', 'Block 43, 456 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-02-11', 0, 0, 'qzitao', '2001-04-27', 'qin1029', '2002-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS365070186309', '藍慧珊', 0, '+1 838-983-3645', 2, '680143154535420520', '609 Broadway Apartment 14, Albany, NY 12207, United States', '1994-09-21', 0, 0, 'waisanlam', '2015-09-11', 'waisan1984', '2020-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS047251193660', '高木海斗', 0, '+44 (1223) 11 3386', 0, '284648966625071070', 'No.1 Main building, 782 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1995-04-03', 0, 0, 'takagkaito43', '2008-02-10', 'kaitotaka9', '2019-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS758663959907', '村上翼', 0, '+86 192-3441-5092', 1, '302786872467108841', '中国中山天河区大信商圈大信南路807号26楼', '1994-02-17', 0, 0, 'mtsuba', '2001-03-27', 'tmurakami1971', '2014-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS374508492328', 'Theresa Washington', 1, '+81 3-2782-6323', 1, '034996901635126682', '日本東京千代田区丸の内一丁目6番11号39階', '1991-06-17', 0, 0, 'washingtont', '2005-05-22', 'therewashington', '2009-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS090927872167', '上田優奈', 0, '+86 141-1480-7956', 3, '152383443100806878', '中国东莞坑美十五巷372号23室', '1989-07-28', 0, 0, 'yunau9', '2008-08-03', 'uedyuna19', '2002-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS441185450440', '段嘉伦', 1, '+86 10-718-1140', 1, '536816259317732380', 'Room 4, 928 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-08-17', 0, 0, 'jialun73', '2015-05-02', 'jidua', '2004-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS740532970188', '駱淑怡', 1, '+44 5334 389426', 3, '637148565499575170', 'No.7 Main building, 397 Hanover Street, London, W1S 1YD, United Kingdom', '1998-11-08', 0, 0, 'lok00', '2002-03-17', 'syl8', '2011-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS730493077526', '桜井湊', 1, '+86 154-3601-4655', 3, '733710434599669082', 'No.1 building, No.968, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-02-12', 0, 0, 'sakuraiminato', '2021-05-06', 'sakuraimin', '2003-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS217201449938', '錢淑怡', 0, '+81 66-684-5136', 0, '403500926111122864', '8F, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-03-31', 0, 0, 'chinsy', '2011-04-03', 'sukyee930', '2016-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS723481862402', '岡田拓哉', 1, '+44 (151) 439 5179', 1, '216848776172043853', 'Flat 42, 163 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-07-31', 0, 0, 'okadatakuy', '2014-01-30', 'takokada', '2016-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS954650318707', '橋本美緒', 1, '+81 3-2164-5059', 1, '474142960768322168', '37F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-07-07', 0, 0, 'hashim', '2013-08-22', 'mio52', '2020-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS346151184762', '山田葉月', 1, '+44 5454 425032', 3, '161864857416440413', 'Unit 45, Oxford Eco Centre, 374 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-06-18', 0, 0, 'yamadahazuki76', '2006-12-11', 'yamadhazuki', '2001-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS159200522300', '伍秀文', 0, '+86 151-4741-6500', 1, '021033704134518391', 'Room 22, CR Building, 103 Tianhe Road, Tianhe District, Guangzhou, China', '1994-02-04', 0, 0, 'sauman5', '2003-09-11', 'smng704', '2019-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS846016121894', '田發', 0, '+81 90-1703-9883', 4, '103279944295297854', 'Rm. 11, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1997-10-13', 0, 0, 'tin629', '2015-03-22', 'ftin10', '2008-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS217579063568', '菊地樹', 1, '+86 769-690-1506', 4, '175730957131602397', '中国东莞环区南街二巷205号3栋', '1989-04-26', 0, 0, 'kikuchiitsu', '2009-03-15', 'ikik', '2004-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS860095686319', 'Lawrence Reed', 0, '+86 755-000-0017', 1, '567908258333432855', 'No.26 building, 544 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-06-21', 0, 0, 'reed9', '2003-03-26', 'reedlawre', '2000-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS407914371913', 'John Wagner', 0, '+81 66-511-5448', 0, '509030801592041539', 'Rm. 18, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1994-03-21', 0, 0, 'wagnerjohn', '2018-08-31', 'jwagner64', '2019-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS326937263817', 'Jeffrey Rose', 0, '+86 760-4035-4005', 1, '951516493816040778', 'No.14 building, 411 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-11-06', 0, 0, 'jeffreyr', '2002-03-13', 'rje', '2021-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS727007890261', '錢慧珊', 0, '+81 90-8288-4546', 2, '456370452261310799', '30-kai, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1987-07-31', 0, 0, 'waisan6', '2006-08-29', 'chinwaisan', '2019-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS262189397396', '阿部玲奈', 0, '+86 170-2344-4590', 4, '650268124742567638', '中国北京市海淀区清河中街68号771号华润大厦32室', '1990-08-22', 0, 0, 'rab', '2000-01-27', 'abr', '2003-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS338596092180', '汤睿', 0, '+1 614-563-0121', 0, '532735033321024492', '380 Diplomacy Drive Suite 39, Columbus, GA 43228, United States', '1997-04-10', 0, 0, 'rutang', '2005-05-01', 'tanrui', '2000-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS283899459287', '贺詩涵', 1, '+1 213-310-7182', 4, '566879275839502464', '70 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-07-12', 0, 0, 'shihan1116', '2020-11-26', 'shihanhe', '2016-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS848428037005', '武睿', 1, '+81 90-6900-6168', 4, '015988638301466522', '日本おおさかし西成区出城一丁目1番8号31階', '1997-04-23', 0, 0, 'ruiwu3', '2008-10-10', 'wurui', '2019-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS136589585905', 'Manuel Chavez', 1, '+44 5593 325548', 1, '407601033809099467', 'Unit 13, Oxford Eco Centre, 975 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-08-22', 0, 0, 'chavezmanuel', '2022-02-08', 'chama930', '2017-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS657904919892', 'Nicole Gutierrez', 0, '+81 3-1624-3517', 0, '243215367230732126', '11-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-09-18', 0, 0, 'gutienico331', '2002-07-16', 'gnicole', '2021-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS681505427496', '苗家文', 1, '+86 760-9723-2709', 3, '286796541420592640', 'Room 49, 170 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-06-25', 0, 0, 'kamanmi128', '2007-06-29', 'kmmi1962', '2008-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS703159408854', '苗潤發', 1, '+81 80-0423-0941', 1, '125606006627456715', 'Rm. 36, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-05-21', 0, 0, 'yfmiu3', '2004-01-27', 'miu72', '2016-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS378148558150', 'Arthur Scott', 0, '+1 213-525-1790', 2, '122119672768616903', '102 Grape Street Apartment 15, Los Angeles, CA 90002, United States', '1987-09-08', 0, 0, 'arthurs', '2000-08-17', 'sarthur831', '2007-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS156799933597', '前田絢斗', 0, '+81 74-035-7341', 4, '357873920094107430', '日本ならし西大寺赤田町一丁目7番19号15号室', '1986-04-15', 0, 0, 'maedaayat55', '2020-04-26', 'maeda904', '2000-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS400703704460', '余安琪', 1, '+44 7155 907334', 1, '832012750550538741', 'Flat 16, 53 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-10-29', 0, 0, 'anyu1029', '2001-06-26', 'anqiyu43', '2001-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS750320182505', '徐杰倫', 1, '+1 212-478-6680', 3, '679853080883042773', '792 Bank Street Apartment 7, New York, NY 10014, United States', '1991-05-06', 0, 0, 'cltsui6', '2012-11-08', 'tscl', '2010-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS353848856970', '叶杰宏', 0, '+86 10-0778-8524', 1, '166626402133136249', 'Room 5, CR Building, 615 028 County Rd, Yanqing District, Beijing, China', '1996-03-16', 0, 0, 'jiehong1', '2021-12-05', 'jiehong58', '2017-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS033493203453', '吴璐', 1, '+86 10-8987-1563', 0, '163713725891865074', 'No.42 building, 893 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-03', 0, 0, 'lu8', '2014-02-11', 'luwu3', '2004-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS364635570784', '林杰宏', 1, '+81 90-6782-4013', 2, '385829516300676869', '日本東京品川区東五反田五丁目2番3号1階', '1998-08-14', 0, 0, 'jiehongl', '2004-10-13', 'jieholin', '2005-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS352195569981', '餘慧敏', 0, '+1 614-497-3790', 3, '317770100381938483', '955 East Cooke Road Suite 1, Columbus, GA 43214, United States', '1986-10-23', 0, 0, 'yuewm', '2008-06-02', 'waimany', '2012-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS737163502349', '小川桜', 1, '+44 (1223) 81 1994', 1, '006891911931296604', 'Block 20, 917 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-10-11', 0, 0, 'ogsakura9', '2017-12-23', 'ogawsakur5', '2003-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS771049220393', 'Benjamin Wood', 1, '+81 90-1473-6509', 2, '719565294203794377', '日本札幌白石区菊水三条五丁目2番19号24階', '1995-05-04', 0, 0, 'woodbenj4', '2011-11-24', 'benwood01', '2012-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS252335569095', '元麗欣', 0, '+81 90-0496-5532', 3, '482893131812738744', '日本ならし大和郡山市本庄町一丁目1番2号30号室', '1998-04-06', 0, 0, 'yly404', '2011-10-17', 'lyy', '2018-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS089996212925', '谷天樂', 0, '+86 20-3960-9927', 2, '819718064691184831', 'No.10 building, 691 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-06-16', 0, 0, 'koo430', '2006-07-04', 'kootinl', '2002-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS881067799063', 'Francis Thompson', 0, '+86 168-5657-4986', 3, '180460647378156116', '中国深圳罗湖区田贝一路898号15室', '1997-06-25', 0, 0, 'thompsonfrancis1', '2008-04-29', 'francisthompson330', '2016-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS773229382974', '關頴思', 0, '+44 (121) 562 0486', 3, '974249041564546029', 'No.36 Main building, 565 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-01-28', 0, 0, 'wingszekwan105', '2005-06-15', 'kwaws', '2010-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS781049226775', '彭云熙', 0, '+86 20-383-2973', 1, '342939635940161276', 'No.3 building, 107 Tianhe Road, Tianhe District, Guangzhou, China', '1988-11-29', 0, 0, 'yunp5', '2000-07-26', 'ype', '2004-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS322360992038', '汪曉彤', 1, '+1 213-635-4899', 2, '891538655027159810', '529 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-12-17', 0, 0, 'hiutungwong', '2003-12-15', 'hiutung8', '2009-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS519937236811', 'Doris Mcdonald', 0, '+81 52-787-0608', 4, '167835480644982674', '4F, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-11-27', 0, 0, 'domcd', '2006-04-28', 'mcdonalddor', '2008-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS041598133351', '木村涼太', 0, '+1 718-903-3966', 2, '627790544668302959', '772 Bergen St Apt 9, Brooklyn, NY 11217, United States', '1997-09-12', 0, 0, 'kimurar', '2016-01-22', 'rkimura97', '2008-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS976204796111', 'Robin Boyd', 1, '+86 175-1460-1885', 0, '330811889681717905', 'No.33 building, 905 Binchuan Rd, Minhang District, Shanghai, China', '1993-09-26', 0, 0, 'boydrobin9', '2010-07-18', 'boydrobin', '2018-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS614077626625', '蘇梓軒', 0, '+81 52-333-8177', 3, '962998928994530363', '日本なごやし瑞穂区河岸町四丁目20番3号21階', '1988-04-17', 0, 0, 'tszhin1951', '2011-01-14', 'so224', '2014-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS075622184600', '许岚', 0, '+81 3-6397-8288', 3, '461757779486998078', '15-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-13', 0, 0, 'lanxu', '2000-02-25', 'xul14', '2010-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS546992141780', 'Nathan Lee', 1, '+1 213-631-6636', 1, '616203993579220526', '773 Alameda Street Apt 29, Los Angeles, CA 90002, United States', '1995-10-31', 0, 0, 'lee3', '2011-07-14', 'nathanlee93', '2013-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS734410321325', 'Elaine Ford', 0, '+1 838-823-5582', 1, '060409513214687637', '886 Central Avenue Apt 15, Albany, NY 12206, United States', '1994-03-04', 0, 0, 'elainef', '2013-08-12', 'forde1996', '2004-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS346425176277', '李睿', 0, '+81 52-822-1459', 1, '372381329554391535', 'Rm. 47, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-05-31', 0, 0, 'li4', '2018-05-14', 'lr6', '2003-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS797308735505', '何云熙', 0, '+86 760-555-5756', 4, '135301004989298587', '23F, 331 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-04-16', 0, 0, 'yunxi5', '2010-01-18', 'yunxi6', '2003-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS112710209943', '韦云熙', 1, '+1 212-802-0553', 1, '338187220589882849', '310 Wooster Street Apt 31, New York, NY 10012, United States', '1986-10-12', 0, 0, 'wei6', '2018-09-16', 'ywe8', '2017-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS704481665359', '蒋安琪', 1, '+86 760-832-8238', 3, '538439720532976318', 'No.4 building, 875 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1985-05-20', 0, 0, 'anqi814', '2015-04-27', 'anjiang', '2011-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS543451976067', '近藤悠人', 0, '+1 330-300-4722', 3, '622826965975919904', '967 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-09-30', 0, 0, 'yutokondo72', '2008-03-23', 'kondy', '2005-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS646325977795', '武田光莉', 1, '+81 70-8207-7166', 2, '568585743604733051', '日本なごやし守山区瀬古東二丁目171番12号15号室', '1994-01-26', 0, 0, 'htakeda', '2004-07-20', 'hikari6', '2015-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS614193918435', '盧朝偉', 1, '+1 213-612-3440', 4, '398307412507732670', '731 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1995-02-01', 0, 0, 'locw', '2007-07-19', 'locw', '2006-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS866204031378', '小野蓮', 0, '+81 90-5865-1950', 0, '223105158356810998', '日本札幌清田区真栄四条五丁目19番8号2号室', '1992-12-24', 0, 0, 'onoren', '2008-10-15', 'renono815', '2001-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS714529932039', '严晓明', 0, '+81 3-6237-0202', 2, '929857781674960262', '日本東京港区東新橋一丁目5番12号29階', '1992-04-17', 0, 0, 'xiay', '2016-04-04', 'xiaoming13', '2013-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS733069403527', 'Kevin Wilson', 1, '+86 150-7426-5809', 0, '188128255445208868', 'No.27 building, 867 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-06-24', 0, 0, 'wilson4', '2016-04-22', 'wilkevin', '2013-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS480580619916', '黄杰宏', 1, '+86 190-6041-5475', 1, '992835524646784591', '中国北京市西城区西長安街37号23栋', '1995-03-10', 0, 0, 'huanjiehong', '2019-03-24', 'huajieh', '2015-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS224413407859', '谷口絢斗', 1, '+44 5604 481139', 1, '958775625313238871', 'No.6 Main building, 915 New Street, Birmingham, B2 4DB, United Kingdom', '1987-10-18', 0, 0, 'ayatt', '2000-07-23', 'taniguchiayato407', '2005-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS201240788020', '孫慧嫻', 1, '+86 10-502-9935', 0, '309343845161625026', 'Room 34, CR Building, 158 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-02-19', 0, 0, 'hwaihan', '2014-02-02', 'hsuanwaihan725', '2019-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS773182748812', 'Alfred Burns', 1, '+81 52-142-6419', 3, '955265683471216427', '47-kai, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-08', 0, 0, 'alfred421', '2004-03-12', 'alfrebur9', '2012-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS407234955892', '王國榮', 0, '+81 80-1010-9381', 1, '158508360602608791', '日本札幌中央区宮の森四条六丁目1番4号30階', '1989-08-01', 0, 0, 'wongkwokwing', '2016-12-22', 'kwokwing1987', '2015-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS588216642571', '新井大和', 0, '+44 (161) 686 2375', 3, '125218571283001624', 'Block 39, 946 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1991-10-06', 0, 0, 'yamato85', '2005-02-07', 'araiya', '2011-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS857385817734', '丁子异', 1, '+81 70-3480-0824', 0, '516693193645955650', '日本おおさかし西成区天神ノ森二丁目1番12号42階', '1985-04-14', 0, 0, 'dingziyi', '2015-09-03', 'zd5', '2000-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS429628361536', '石晓明', 1, '+86 755-1895-7771', 1, '618074193488682962', 'Room 34, 181 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-09-14', 0, 0, 'sx1996', '2016-02-03', 'xiaomingshi', '2018-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS492409495014', '熊杰宏', 0, '+86 136-1997-9368', 0, '170210917118901522', '43F, 328 Kengmei 15th Alley, Dongguan, China', '1987-08-24', 0, 0, 'jiehongxi', '2010-09-09', 'jiehong1014', '2007-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS393143039055', '伍志明', 0, '+1 614-771-0332', 2, '614859547253412254', '875 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-08-06', 0, 0, 'chimng', '2013-02-14', 'ncm430', '2002-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS765445198266', '卢云熙', 0, '+86 10-2357-6020', 3, '728208002775615824', 'Room 40, 179 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-09-09', 0, 0, 'yunxil', '2020-10-07', 'yunxilu', '2012-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS450484862618', 'Francis Washington', 1, '+1 838-562-7381', 2, '230042745357507654', '480 State Street 3rd Floor, Albany, NY 12203, United States', '1992-01-29', 0, 0, 'wfrancis9', '2007-07-21', 'washfr719', '2002-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS196103977911', '横山美咲', 0, '+44 7420 954535', 1, '975156190482120853', 'Flat 28, 978 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-11-30', 0, 0, 'yokm89', '2011-11-11', 'yokmisa', '2001-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS905022416827', 'Jane Stone', 0, '+44 (121) 725 3396', 0, '314486352366042973', 'Flat 29, 599 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1993-03-18', 0, 0, 'jastone', '2003-04-28', 'stonejane1989', '2005-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS987543233929', 'Carolyn Brown', 0, '+86 199-5370-2951', 3, '262979247750480625', 'Room 4, 53 Huanqu South Street 2nd Alley, Dongguan, China', '1986-12-10', 0, 0, 'carolynbrown', '2006-06-10', 'cabrown', '2019-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS609561221843', '佐野瑛太', 1, '+86 20-555-1904', 4, '056619964985867519', '中国广州市白云区机场路棠苑街五巷581号华润大厦34室', '1994-06-24', 0, 0, 'eitasano', '2008-07-29', 'seita', '2016-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS514476666953', '邓云熙', 1, '+81 11-522-1884', 1, '274051840790364986', 'Rm. 30, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-07-17', 0, 0, 'yunden', '2010-11-12', 'dyunxi', '2007-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS891587469251', '丁詩涵', 0, '+81 52-767-9301', 3, '808688926851775271', '16-kai, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1998-11-25', 0, 0, 'shihan2', '2013-09-06', 'dings9', '2019-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS648019915818', 'Aaron Taylor', 1, '+86 195-8592-6345', 2, '933372448711510089', '中国成都市锦江区人民南路四段599号16楼', '1990-06-10', 0, 0, 'taya', '2012-11-02', 'aaron1946', '2010-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS799330665273', '常岚', 1, '+1 212-042-1856', 1, '411824768382662369', '971 Bank Street 3rd Floor, New York, NY 10014, United States', '1995-04-19', 0, 0, 'lanchang', '2006-12-24', 'chang1947', '2011-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS554033961740', '房惠妹', 1, '+81 66-038-3662', 3, '201777387559558893', '日本おおさかし西成区天神ノ森二丁目1番7号41階', '1993-09-16', 0, 0, 'huimeif', '2009-03-14', 'fong2001', '2016-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS357405271704', '罗子异', 1, '+81 52-191-2970', 4, '446369234030991261', '日本なごやし守山区瀬古東二丁目171番8号46階', '1985-07-16', 0, 0, 'luozi3', '2012-11-01', 'luoziy', '2010-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS198196790204', '郭國明', 0, '+81 11-926-7855', 0, '613599559832175972', '35F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-02-23', 0, 0, 'kwkwokming', '2014-02-24', 'kwokmingk', '2015-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS895727512248', '中村架純', 0, '+81 90-9019-6673', 2, '046752002562663399', '日本おおさかし東住吉区東田辺三丁目27番19号9階', '1995-11-16', 0, 0, 'kasnakam', '2018-02-15', 'nkasumi', '2008-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS434908340174', '范子异', 1, '+81 74-273-1651', 4, '627687663824153038', '日本ならし西大寺赤田町一丁目7番10号10号室', '1988-09-21', 0, 0, 'ziyfan', '2013-03-09', 'zfan6', '2006-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS113366172548', '贾子韬', 1, '+86 138-1221-9275', 0, '444252111554231716', '中国深圳罗湖区蔡屋围深南东路681号华润大厦24室', '1991-09-10', 0, 0, 'jizi1', '2021-07-12', 'zitaojia9', '2001-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS240194290055', '岡田舞', 0, '+81 3-9454-6020', 3, '743236870419045408', '日本東京中央区銀座三丁目12番13号47階', '1996-12-26', 0, 0, 'maioka1008', '2018-07-10', 'mai8', '2021-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS961097494956', 'Lucille Henderson', 0, '+44 (20) 4788 7583', 1, '238066852582139832', 'Unit 47, Oxford Eco Centre, 751 Hanover Street, London, W1S 1YD, United Kingdom', '1990-09-02', 0, 0, 'luh716', '2016-08-24', 'lhende', '2016-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS448600139214', '古梓軒', 1, '+81 3-4020-6503', 3, '642590968199134957', '23F, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1998-08-23', 0, 0, 'kutszhin', '2007-03-20', 'thku', '2020-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS896553663470', 'Cindy Mendoza', 0, '+1 614-371-9682', 0, '844122910260145731', '51 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-09-20', 0, 0, 'cmend2014', '2013-06-24', 'mcindy2', '2012-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS404439099741', '青木美咲', 0, '+86 140-3673-0573', 0, '897509029872175307', '中国成都市锦江区人民南路四段656号2号楼', '1991-07-27', 0, 0, 'misakiaoki', '2013-04-27', 'misakia', '2007-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS057569024174', '中村樹', 1, '+81 3-0635-8228', 1, '964544881088481156', '38-kai, 1-6-5, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-03-11', 0, 0, 'nakamuraitsuki', '2000-01-08', 'nitsuki', '2012-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS552510236473', '唐家文', 1, '+81 3-5808-0130', 3, '302353116921052515', '6-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-06-01', 0, 0, 'tkaman8', '2014-11-28', 'tkm', '2004-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS230981799124', '杜家強', 0, '+81 90-3475-3783', 1, '356733224580401863', '日本札幌白石区菊水三条五丁目4番17号42号室', '1991-12-06', 0, 0, 'kkto', '2018-09-29', 'kkto7', '2017-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS521871625455', '近藤蓮', 1, '+86 193-2324-9453', 4, '531859938577588969', 'Room 30, CR Building, 797 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-10-19', 0, 0, 'rkondo', '2022-03-02', 'kondo40', '2020-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS946142519155', 'Willie Gomez', 1, '+81 74-572-0414', 1, '811849972500430098', '17F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1991-01-31', 0, 0, 'gomezwilli', '2020-09-23', 'gomezwillie', '2021-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS639095616548', 'Micheal Patel', 1, '+86 755-777-7747', 3, '243423527444110134', 'Room 50, 423 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-01-28', 0, 0, 'mipat', '2007-07-23', 'michealpatel', '2010-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS942849425711', '姚明', 1, '+81 66-460-5562', 2, '763225591641754924', '3F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-06-14', 0, 0, 'mingyeow', '2007-06-07', 'yeowm', '2004-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS646708748567', 'Harold Patel', 0, '+81 11-252-9309', 1, '479520229700668679', '日本札幌中央区宮の森四条六丁目1番2号2号室', '1996-09-13', 0, 0, 'harolpate10', '2000-01-03', 'haroldp', '2021-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS020011170923', 'Rosa Clark', 0, '+81 80-5186-9548', 0, '680630441171302619', 'Rm. 36, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-12-22', 0, 0, 'clarrosa', '2004-10-02', 'clark90', '2003-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS830095394758', '應惠敏', 1, '+44 (20) 2262 5457', 3, '851639024500411348', 'Flat 32, 551 Regent Street, London, W1B 2LX, United Kingdom', '1988-05-11', 0, 0, 'ying1998', '2002-09-28', 'ying3', '2020-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS794501321529', '史致远', 1, '+86 755-185-7907', 0, '814784595660428425', 'Room 13, CR Building, 452 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-09-02', 0, 0, 'zhiys', '2000-11-07', 'shzhiyu', '2011-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS972527138764', '斉藤明菜', 1, '+86 145-6647-7627', 3, '211307993738740141', '中国成都市锦江区人民南路四段428号华润大厦28室', '1994-07-22', 0, 0, 'akina57', '2007-08-01', 'saitoakina81', '2002-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS718255982712', '森美緒', 0, '+86 151-3624-8938', 0, '784963446242918028', 'No.20 building, 767 Jiangnan West Road, Haizhu District, Guangzhou, China', '1985-09-06', 0, 0, 'mio107', '2020-04-17', 'miomori1012', '2009-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS915527257798', '谷口陽太', 0, '+44 7314 870631', 0, '731284068248291104', 'Flat 7, 574 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-10-22', 0, 0, 'taniguchiy6', '2018-02-06', 'yotataniguchi79', '2000-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS535300819481', 'Mark Martin', 1, '+81 90-7658-8387', 2, '531557619730755518', '日本ならし学園南三丁目9番2号31階', '1992-08-24', 0, 0, 'marmark9', '2006-12-23', 'markmar', '2011-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS791770150526', '姜云熙', 1, '+44 7223 853848', 3, '195572835124579430', 'No.3 Main building, 223 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-02-27', 0, 0, 'yunxi49', '2013-02-08', 'jiangyunxi', '2012-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS862324135331', '文小慧', 1, '+44 (1865) 11 4697', 2, '846627101037020048', 'Unit 34, Oxford Eco Centre, 229 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-06-06', 0, 0, 'swman', '2003-12-07', 'masw521', '2002-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS478121561228', 'Tiffany Lee', 0, '+86 196-6233-0015', 0, '581053894434494043', '中国北京市延庆区028县道558号18栋', '1989-01-01', 0, 0, 'leetiffany5', '2006-06-17', 'lee1946', '2008-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS395948842792', '任心穎', 0, '+1 614-848-6365', 3, '144515693088812454', '853 East Cooke Road Suite 40, Columbus, GA 43214, United States', '1997-08-03', 0, 0, 'yamsumwing1', '2009-09-20', 'ysw', '2007-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS145674524194', '千葉美咲', 0, '+81 90-7258-2068', 3, '444546817056186652', '日本札幌中央区宮の森四条六丁目1番10号6号室', '1992-01-13', 0, 0, 'chmisaki', '2013-08-12', 'chibami118', '2008-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS856914389493', '魏安琪', 1, '+1 312-080-8233', 4, '514572571113648815', '854 North Michigan Ave Suite 42, Chicago, IL 60611, United States', '1995-12-13', 0, 0, 'weianqi', '2004-02-24', 'weianqi', '2018-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS073595446319', '戴祖兒', 1, '+44 (1865) 99 3666', 0, '262835041165146714', 'No.12 Main building, 679 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-10-11', 0, 0, 'dcy', '2010-05-02', 'cydai20', '2001-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS678590114486', 'Carlos Sanders', 1, '+81 80-4026-2439', 0, '227876336391316012', '日本札幌白石区菊水三条五丁目4番20号42階', '1997-01-18', 0, 0, 'sanderscarlos9', '2015-01-24', 'cs3', '2011-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS285865810125', '田村悠人', 0, '+1 312-819-0324', 3, '208848901768583279', '179 Rush Street Apt 44, Chicago, IL 60611, United States', '1994-05-18', 0, 0, 'ytamur', '2019-05-21', 'tamurayu405', '2017-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS398869667065', '工藤美羽', 1, '+81 52-551-2710', 2, '257773113903202555', '日本なごやし守山区瀬古東二丁目171番3号30階', '1990-03-22', 0, 0, 'miukudo', '2011-02-11', 'kudm', '2007-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS869259999240', '工藤明菜', 0, '+86 20-628-3734', 3, '989507610622370038', 'No.26 building, 197 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-10', 0, 0, 'aku2001', '2015-05-06', 'akina406', '2005-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS194278563187', 'Edwin Rodriguez', 1, '+44 (121) 960 2102', 2, '568645393990135820', 'Flat 8, 324 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1989-06-07', 0, 0, 'edwin5', '2001-04-10', 'edwinrodriguez', '2011-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS318790925907', '佐野健太', 0, '+1 614-757-8256', 2, '352868718937484558', '921 East Alley Apt 50, Columbus, GA 43201, United States', '1997-06-30', 0, 0, 'sanokent904', '2001-01-13', 'kentasano', '2010-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS783209174089', '谷天樂', 1, '+81 74-730-8669', 0, '460255145195569821', 'Rm. 44, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1985-10-18', 0, 0, 'tinlokkoo', '2005-01-27', 'koo5', '2010-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS884455852197', '今井陽菜', 1, '+86 177-1899-2987', 3, '591500265420104835', '中国北京市海淀区清河中街68号54号39栋', '1997-06-30', 0, 0, 'ihi127', '2017-05-05', 'ihina', '2005-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS667178389767', '黎玲玲', 0, '+81 80-7009-8464', 4, '485010791126717259', '日本ならし学園南三丁目9番6号47号室', '1990-04-23', 0, 0, 'laill415', '2009-01-12', 'lalingling', '2011-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS760868814451', '熊秀英', 0, '+44 5948 203376', 2, '987522726018620661', 'Unit 36, Oxford Eco Centre, 911 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-12-02', 0, 0, 'xiuying717', '2010-11-09', 'xiongx', '2011-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS139326196486', '莫梓晴', 1, '+86 178-3443-9726', 1, '289081940007746633', '中国东莞坑美十五巷181号17室', '1997-01-26', 0, 0, 'tcmok6', '2017-03-14', 'tsmo', '2017-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS841425608136', '常子韬', 1, '+81 11-773-1418', 3, '610747141176975642', '日本札幌白石区菊水三条五丁目2番5号47階', '1989-08-29', 0, 0, 'zitchang03', '2019-11-10', 'changzitao5', '2000-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS340963449450', '前田陽菜', 0, '+86 131-7550-8003', 0, '108658578665644239', '中国深圳龙岗区学园一巷799号43号楼', '1995-03-28', 0, 0, 'hinama2', '2015-10-03', 'hinamaeda812', '2021-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS733790467305', '何頴璇', 1, '+86 21-6539-1208', 2, '314230472446964748', '中国上海市闵行区宾川路425号50室', '1987-04-09', 0, 0, 'wsho', '2008-04-22', 'hows', '2016-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS907677091102', '吉田海斗', 0, '+86 168-1952-6042', 4, '965622436869890370', 'Room 3, 853 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1999-03-05', 0, 0, 'yoka1029', '2001-04-13', 'kay77', '2007-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS309864523558', '小野玲奈', 0, '+44 (1865) 31 2755', 2, '590362738922829236', 'Unit 5, Oxford Eco Centre, 316 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-06-08', 0, 0, 'onrena', '2011-07-09', 'renaono', '2004-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS495727665416', 'Margaret Miller', 1, '+44 7929 409590', 2, '260656541670856524', 'No.13 Main building, 175 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-12-10', 0, 0, 'mimarga1987', '2009-02-26', 'mmargaret', '2008-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS847791653121', '張永發', 1, '+81 90-5220-8703', 1, '581237575646778474', '32F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-06-17', 0, 0, 'wfcheun', '2019-02-14', 'wingfatch2', '2021-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS980806005429', '森葵', 1, '+86 10-122-1832', 3, '758486176101874205', 'No.26 building, 256 FuXingMenNei Street, XiCheng District, Beijing, China', '1994-09-22', 0, 0, 'moaoi', '2001-09-19', 'aoimori', '2009-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS817689225981', '青木美緒', 0, '+86 151-8369-0240', 3, '610307856685820186', 'No.50 building, 297 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-05-13', 0, 0, 'mioaoki', '2004-07-02', 'aokimio', '2001-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS040079177098', '曹震南', 1, '+86 184-4070-6558', 2, '304118725058925693', '46F, 486 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-07-18', 0, 0, 'cazhennan20', '2002-05-05', 'zhec', '2001-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS701788167213', 'Roy Flores', 0, '+44 (151) 740 8819', 0, '364642474939722235', 'Flat 38, 853 Redfern St, Liverpool, L20 8JB, United Kingdom', '1992-06-30', 0, 0, 'florroy9', '2004-02-25', 'royflo', '2004-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS009729151104', 'Brenda Green', 0, '+81 66-708-6694', 0, '288420035979295439', '日本おおさかし西成区天神ノ森二丁目1番15号20号室', '1997-07-29', 0, 0, 'greenb', '2017-02-07', 'grbrenda', '2016-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS799498220454', 'David Jordan', 0, '+86 755-040-3039', 0, '331616467121176950', 'Room 42, CR Building, 20 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-12-14', 0, 0, 'jodavid1', '2011-08-13', 'jordan8', '2009-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS502477994912', 'Edward Reyes', 0, '+86 760-072-7668', 0, '309642985124427957', 'Room 31, 17 Lefeng 6th Rd, Zhongshan, China', '1988-05-11', 0, 0, 'edwreye1', '2005-03-26', 'edwarreye1106', '2015-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS825778180946', '陳慧敏', 0, '+44 5604 388469', 0, '306531439710949044', 'Unit 16, Oxford Eco Centre, 67 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-01-20', 0, 0, 'waiman3', '2008-01-11', 'chanwm', '2010-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS204784351501', '石井玲奈', 1, '+86 197-0498-8040', 0, '667792909548939366', '中国广州市天河区天河路456号19栋', '1988-08-06', 0, 0, 'ishii716', '2004-07-31', 'renaishii', '2004-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS560658818039', '駱俊宇', 0, '+81 3-9628-5707', 4, '639292345148795046', '39-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-25', 0, 0, 'lokchunyu7', '2009-06-11', 'lokchu', '2019-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS185497351867', '大野優奈', 1, '+81 90-8689-5207', 3, '815502794512945856', '日本なごやし北区楠味鋺三丁目80番16号39号室', '1994-03-27', 0, 0, 'yuna220', '2007-10-02', 'oyuna64', '2011-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS999064059758', '马杰宏', 0, '+1 330-730-3350', 3, '389945244563185462', '234 Fern Street Suite 24, Akron, OH 44307, United States', '1988-07-24', 0, 0, 'ma48', '2014-09-12', 'majieho', '2013-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS146022285062', 'Nicholas Evans', 0, '+81 52-290-5820', 1, '644924562384627561', '日本なごやし熱田区千年二丁目5番7号10階', '1997-12-15', 0, 0, 'nicholasevans', '2020-07-25', 'evansnich', '2018-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS313492592903', '郭慧敏', 1, '+81 66-306-8472', 1, '381641035180399285', '31-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1986-04-19', 0, 0, 'kwokwm', '2014-12-27', 'kwowm', '2010-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS511465779185', 'Diana Gardner', 0, '+44 (151) 979 9581', 1, '181613643052518803', 'Flat 29, 105 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-09-02', 0, 0, 'digardner622', '2004-03-25', 'gard', '2008-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS307960029050', '村田花', 1, '+81 80-1766-4304', 1, '917768808944567015', '日本ならし学園南三丁目9番18号34階', '1997-05-01', 0, 0, 'murata2', '2002-02-24', 'hana831', '2008-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS771953636346', '馬嘉欣', 1, '+44 (1223) 54 1859', 3, '928570583695564700', 'No.34 Main building, 912 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-11-12', 0, 0, 'ma8', '2003-12-24', 'mkaryan501', '2019-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS282646978277', '橋本大地', 1, '+1 838-441-7990', 1, '164134343245505534', '990 Central Avenue Suite 49, Albany, NY 12205, United States', '1997-03-19', 0, 0, 'daichhashimoto', '2014-03-05', 'daicha', '2016-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS700065949656', '林安琪', 1, '+86 755-622-2449', 3, '821067645732337597', '中国深圳龙岗区学园一巷873号32楼', '1997-10-17', 0, 0, 'oklam', '2017-11-13', 'lamok1121', '2015-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS015677933040', 'Dennis Ross', 0, '+1 614-960-5510', 2, '997174558336441183', '784 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1988-07-25', 0, 0, 'dennisr', '2013-08-04', 'denniross729', '2003-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS382782580283', '沈致远', 1, '+86 28-1188-9898', 1, '138309742442751162', '中国成都市成华区二仙桥东三路655号7楼', '1988-12-30', 0, 0, 'zhiyuan58', '2014-03-02', 'zhiyuans80', '2013-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS934993997480', 'Rosa Harris', 1, '+44 7402 195594', 3, '836765081959252889', 'Flat 3, 97 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-04-12', 0, 0, 'harrisr', '2010-07-01', 'roharris', '2008-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS649007424020', '金子聖子', 0, '+86 10-576-6976', 2, '040915547103238815', '中国北京市海淀区清河中街68号920号16栋', '1987-04-06', 0, 0, 'kanekos602', '2018-10-22', 'seikokaneko', '2007-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS747478321809', '安藤百恵', 0, '+44 5900 785465', 0, '869936787797309117', 'Unit 43, Oxford Eco Centre, 415 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-10-04', 0, 0, 'ma1103', '2013-03-21', 'ma1', '2004-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS251457063305', 'Joshua Rogers', 0, '+81 90-8232-9535', 1, '819375889274976823', '21F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-11-30', 0, 0, 'jrogers', '2010-12-25', 'joshua3', '2016-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS161384620812', '餘思妤', 0, '+44 5660 913338', 2, '609009638846638921', 'Flat 26, 396 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-03-11', 0, 0, 'syyu', '2012-11-16', 'syyue2007', '2009-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS377940379851', '程致远', 0, '+86 158-6587-5935', 3, '441621292844174030', '中国东莞坑美十五巷416号9楼', '1986-03-17', 0, 0, 'czhiyuan', '2006-12-12', 'cz7', '2012-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS139964439925', '史秀英', 0, '+81 52-324-2643', 0, '727346354909788631', '5-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-09-29', 0, 0, 'xiuyings4', '2007-08-07', 'xiuyshi', '2000-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS234579295667', '阮曉彤', 1, '+81 66-897-1459', 2, '318320309246907775', '16F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1997-12-29', 0, 0, 'htyuen628', '2017-01-02', 'hiutung79', '2004-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS699813691811', '有村光', 1, '+86 179-1979-6293', 3, '709995770883624955', '中国深圳罗湖区蔡屋围深南东路831号35楼', '1986-06-29', 0, 0, 'hikaru8', '2009-11-07', 'arimura01', '2011-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS390793718066', '岡田陸', 0, '+86 755-1201-7229', 3, '329058791784479346', '中国深圳罗湖区田贝一路414号13楼', '1998-05-28', 0, 0, 'okada9', '2013-05-21', 'riokada', '2009-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS761053968114', '侯璐', 0, '+81 70-8987-8071', 1, '730132111866822671', '日本なごやし守山区瀬古東二丁目171番18号42階', '1991-08-18', 0, 0, 'lu4', '2008-03-23', 'hou2006', '2021-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS665618838980', '金杰宏', 1, '+1 614-523-5850', 4, '412588072883616684', '230 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-05-04', 0, 0, 'jiehojin4', '2005-03-14', 'jjiehong', '2000-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS347564829692', '武秀英', 0, '+81 80-9520-5157', 2, '230699825541822079', '日本札幌中央区宮の森四条六丁目1番2号5号室', '1989-11-23', 0, 0, 'xwu1963', '2015-07-16', 'wxiuying', '2010-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS752060513922', '中山大輔', 0, '+81 70-9841-1661', 4, '355342410793653161', '日本おおさかし東住吉区東田辺三丁目27番2号12号室', '1997-04-12', 0, 0, 'dnak1', '2001-02-05', 'daisnakayama', '2008-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS869073957496', '青木百恵', 1, '+44 5217 072871', 2, '853901651120218207', 'No.6 Main building, 314 Hanover Street, London, W1S 1YD, United Kingdom', '1995-06-09', 0, 0, 'aokmo', '2019-09-27', 'aoki8', '2018-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS516686329292', '陶子异', 1, '+81 66-665-7538', 2, '887907037773543794', '日本おおさかし西成区天神ノ森二丁目1番16号13階', '1988-10-06', 0, 0, 'tao94', '2007-02-01', 'ziytao', '2012-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS331992015600', '黎榮發', 0, '+86 184-2664-8622', 3, '352617219594878799', '中国北京市東城区東直門內大街625号48室', '1994-02-08', 0, 0, 'lawf', '2001-10-14', 'lwingfat', '2008-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS499977759625', 'Kathy Scott', 0, '+1 213-943-7121', 2, '950117027084490906', '980 Sky Way Suite 15, Los Angeles, CA 90043, United States', '1993-04-20', 0, 0, 'scottkathy', '2011-01-21', 'kathysco', '2018-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS969449759105', '王慧儀', 1, '+1 614-166-6415', 4, '938439292629629957', '543 East Alley Suite 13, Columbus, GA 43201, United States', '1991-04-29', 0, 0, 'wongwaiy8', '2022-01-05', 'wongwy1126', '2017-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS843078301894', '中野百恵', 0, '+86 755-328-8300', 2, '599805984027142625', 'No.35 building, 31 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-01-09', 0, 0, 'nakanomomoe408', '2017-12-13', 'nakanomomoe6', '2008-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS579824845009', '苗慧敏', 1, '+86 21-404-0660', 0, '903238238318485677', '中国上海市浦东新区健祥路70号华润大厦34室', '1990-04-26', 0, 0, 'miuwaiman', '2018-07-19', 'miuwaiman', '2003-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS520712988197', 'Norman Dunn', 1, '+86 132-7896-2028', 4, '699095175742104439', '中国北京市延庆区028县道909号24楼', '1990-04-01', 0, 0, 'ndun5', '2005-11-03', 'dunnnor', '2000-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS701502544980', '村田七海', 1, '+81 80-1907-2707', 2, '917129419761804875', '日本札幌中央区宮の森四条六丁目1番3号9階', '1987-10-29', 0, 0, 'muratananami5', '2001-07-10', 'nanammurata', '2021-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS999458734487', '金子一輝', 0, '+1 212-283-4365', 0, '443707531114926832', '894 Fifth Avenue Apt 16, New York, NY 10017, United States', '1990-06-15', 0, 0, 'kaneko506', '2016-09-21', 'ikkka', '2008-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS043494363678', '马杰宏', 0, '+81 80-6157-3462', 2, '684715482100778298', 'Rm. 30, 3-19-2 Shimizu, Kita Ward, Nagoya, Japan', '1992-08-22', 0, 0, 'jiehong901', '2010-08-05', 'jiehongm8', '2002-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS345168679281', '沈云熙', 1, '+44 7444 339231', 1, '223153214004524433', 'Block 43, 683 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-12-13', 0, 0, 'yunxishen', '2008-10-04', 'yunxi229', '2011-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS707672854464', 'Stephanie Jenkins', 1, '+86 140-6689-4417', 2, '372178672123697406', '中国北京市西城区复兴门内大街789号2栋', '1995-09-01', 0, 0, 'jenkins201', '2019-08-21', 'jenkstephanie6', '2015-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS226418978212', '韦晓明', 1, '+81 80-8018-7188', 2, '085801119615717787', '24F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-09-25', 0, 0, 'xwe', '2021-02-11', 'xiaomingwe8', '2000-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS428435668034', '麥國榮', 0, '+81 66-572-6001', 1, '583083410606619742', '2-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-01-08', 0, 0, 'makkw', '2012-12-13', 'kwokwing9', '2013-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS045585585920', '田中陽菜', 0, '+86 10-9901-6719', 2, '488174800098266992', '33F, 148 Sanlitun Road, Chaoyang District, Beijing, China', '1992-01-16', 0, 0, 'hinatanaka', '2011-05-14', 'hitanaka', '2004-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS449543047188', 'Tammy Hayes', 1, '+81 52-335-5703', 1, '117578861087173797', '10F, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-10-19', 0, 0, 'htam', '2004-06-21', 'htammy', '2003-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS609350361367', '中森紗良', 1, '+81 70-0264-9655', 1, '447418455258191471', '27F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-11-15', 0, 0, 'nakamsara', '2001-08-18', 'saranaka', '2002-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS195847937314', 'Lee Morgan', 0, '+44 5873 783596', 2, '348184772819128010', 'No.50 Main building, 940 Hanover St, Liverpool, L1 4AF, United Kingdom', '1988-03-19', 0, 0, 'ml6', '2008-06-28', 'morlee', '2013-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS815866533943', 'Cheryl Torres', 1, '+86 197-4971-6612', 1, '614765058500424710', 'Room 39, 230 028 County Rd, Yanqing District, Beijing, China', '1994-08-25', 0, 0, 'torres85', '2006-08-07', 'cht222', '2005-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS410735826993', 'Catherine Ruiz', 1, '+86 760-9224-6403', 2, '625532785099506002', '36F, 857 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-09-29', 0, 0, 'cr909', '2000-12-14', 'ruizca', '2003-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS432521697830', '廖安琪', 0, '+81 3-0137-6205', 1, '512464991337758872', '日本東京渋谷区代々木二丁目3番1号15号室', '1990-03-16', 0, 0, 'anqli98', '2016-09-16', 'lanqi', '2001-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS511931661794', '龚秀英', 1, '+81 66-648-6205', 3, '815892716518758029', '日本おおさかし東住吉区東田辺三丁目27番15号3階', '1994-04-24', 0, 0, 'xiugo', '2019-10-09', 'xgon3', '2020-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS018391678739', 'Randy Salazar', 0, '+86 769-2012-5962', 3, '046025490018401188', '中国东莞珊瑚路172号华润大厦6室', '1998-01-09', 0, 0, 'randysalazar9', '2003-05-31', 'ras', '2017-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS533038213137', '葉詠詩', 0, '+81 11-152-0930', 1, '460153776452071907', '日本札幌中央区宮の森四条六丁目1番3号4階', '1989-11-04', 0, 0, 'wsyip1949', '2015-02-26', 'wingsze2010', '2020-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS377230575921', '蒋致远', 1, '+81 52-758-3947', 3, '276318419168289004', 'Rm. 26, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-07-22', 0, 0, 'zhiyuanji', '2011-09-04', 'jiang10', '2018-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS607501266545', '原田桜', 0, '+86 755-922-2510', 3, '908007700672180095', 'No.35 building, 782 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-05-25', 0, 0, 'sakh1', '2002-10-23', 'harada5', '2003-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS924188405300', '蕭德華', 0, '+81 70-4108-1918', 3, '300188994320022594', '39-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1991-12-28', 0, 0, 'twsi', '2014-05-28', 'takwah1111', '2021-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS354418187964', 'Anna Martinez', 1, '+86 147-3604-4734', 0, '220513506056370409', '中国中山京华商圈华夏街423号29室', '1991-09-24', 0, 0, 'annamart', '2008-11-14', 'martinez2007', '2013-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS380425655788', '曹思妤', 0, '+86 155-6781-7200', 0, '564821312064670481', '中国上海市黄浦区淮海中路811号36室', '1996-06-13', 0, 0, 'sycho', '2020-11-23', 'chosy', '2007-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS623923160488', '陆云熙', 1, '+81 11-876-8398', 1, '456278924410634686', '27-kai, 5-2-9 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-03-30', 0, 0, 'luy', '2005-05-05', 'yunxilu', '2007-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS331042382430', '石致远', 1, '+81 74-801-9609', 4, '887822294187210509', '日本ならし西大寺赤田町一丁目7番5号22号室', '1986-03-10', 0, 0, 'shizhiyuan', '2011-08-09', 'shi1', '2003-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS550681550330', '増田美緒', 0, '+81 11-899-1899', 4, '336246518034897432', 'Rm. 22, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-10-28', 0, 0, 'masumio214', '2021-06-19', 'mio109', '2018-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS719894711222', 'Stanley Flores', 0, '+44 7146 931983', 3, '578644987917895700', 'No.2 Main building, 437 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-06', 0, 0, 'florstan704', '2020-01-03', 'floress86', '2003-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS974182467483', '姚秀英', 1, '+81 80-1993-1700', 0, '279346184572930691', '日本ならし西大寺赤田町一丁目7番3号1号室', '1996-02-28', 0, 0, 'xiuyingya13', '2010-04-02', 'yaoxiuying', '2014-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS084250351593', '梅麗欣', 0, '+1 212-816-1030', 2, '920805705246014865', '879 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-01-25', 0, 0, 'muilaiyan', '2005-04-30', 'lymui9', '2000-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS633828873791', '村田七海', 0, '+86 760-590-3096', 2, '454800371834442578', 'Room 37, CR Building, 581 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-04-04', 0, 0, 'nmura', '2006-06-11', 'muratananami628', '2018-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS430544653488', '白詩君', 0, '+81 52-041-6685', 0, '421524169698905399', '日本なごやし北区楠味鋺三丁目80番4号29階', '1986-05-10', 0, 0, 'skpa', '2005-11-14', 'pak7', '2019-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS577821490335', '金致远', 1, '+44 7949 465738', 1, '927631538874803672', 'Block 21, 903 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1990-02-13', 0, 0, 'jizhiyuan11', '2006-05-09', 'jzhiyu01', '2005-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS731570650841', 'Peggy Kelley', 0, '+1 213-006-5270', 3, '720465496439103518', '922 Figueroa Street Apartment 10, Los Angeles, CA 90037, United States', '1993-06-01', 0, 0, 'peggkelle', '2020-08-18', 'kelleypeg', '2007-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS605022092479', '福田百恵', 0, '+1 312-538-5959', 0, '983778596984758323', '820 North Michigan Ave Apt 24, Chicago, IL 60611, United States', '1988-03-10', 0, 0, 'momoefukuda302', '2003-04-02', 'fukudam618', '2015-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS255106893315', '市川優奈', 1, '+86 769-863-7137', 4, '712499955045495499', '中国东莞东泰五街955号40号楼', '1989-09-20', 0, 0, 'yichikawa', '2021-03-08', 'yunaichikawa5', '2014-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS574731326806', '邵曉彤', 0, '+81 70-0018-7362', 3, '951261918879041115', '41-kai, 1-1-1 Deshiro, Nishinari Ward, Osaka, Japan', '1987-08-28', 0, 0, 'htsiu', '2005-10-08', 'hiutungs', '2018-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS935026310069', '丁晓明', 0, '+86 769-864-7140', 2, '164075665865289842', 'No.1 building, 961 Kengmei 15th Alley, Dongguan, China', '1992-11-14', 0, 0, 'xiaoming6', '2019-05-05', 'xiaoming3', '2004-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS307176037512', '馬永權', 1, '+86 147-1773-2319', 1, '296035113018631026', '中国北京市東城区東直門內大街149号华润大厦8室', '1995-04-16', 0, 0, 'mawk', '2008-06-03', 'wingkuenm', '2000-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS273993404563', '高岚', 1, '+81 80-2769-2329', 2, '727609104098391709', '日本ならし学園南三丁目9番19号7階', '1994-10-11', 0, 0, 'gao1956', '2002-02-15', 'langao2', '2005-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS285143686223', '羅思妤', 1, '+1 212-902-8421', 2, '166756326955737257', '37 Fifth Avenue Apartment 8, New York, NY 10017, United States', '1991-04-06', 0, 0, 'lo324', '2015-10-31', 'lsy', '2004-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS181198087763', 'Bryan Sullivan', 0, '+1 614-749-7815', 2, '845215756352633795', '622 East Cooke Road Apt 15, Columbus, GA 43214, United States', '1990-12-25', 0, 0, 'bryansul', '2004-08-26', 'bryasullivan', '2004-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS750053406864', '新井詩乃', 0, '+44 (151) 868 8057', 1, '411989922337417085', 'No.3 Main building, 609 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-06-30', 0, 0, 'arais10', '2010-08-26', 'shinarai88', '2007-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS703423784635', 'Josephine Turner', 0, '+81 66-418-0991', 3, '005538595067790405', '日本おおさかし近江堂一丁目7番14号18号室', '1996-10-25', 0, 0, 'josephine9', '2016-05-01', 'jost13', '2020-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS705832231503', '駱潤發', 1, '+86 755-5764-4698', 2, '449784228298748951', '中国深圳罗湖区蔡屋围深南东路921号12室', '1991-08-20', 0, 0, 'yflo', '2017-09-13', 'yunfatlok', '2003-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS004594271133', '吴岚', 1, '+86 10-895-3503', 0, '480469167057658243', '49F, 73 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-11-05', 0, 0, 'lanwu6', '2000-05-22', 'wula1009', '2015-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS673701584526', 'Ronald Perez', 1, '+81 52-423-0237', 1, '460368903449994383', 'Rm. 31, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-12-24', 0, 0, 'ronperez', '2018-12-07', 'perezron', '2005-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS188395446550', '森田陸', 1, '+81 66-196-3082', 2, '706493958853585240', '2F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1999-01-21', 0, 0, 'mri531', '2008-05-19', 'mriku', '2002-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS905751508599', 'Joan Herrera', 1, '+86 21-3223-9180', 2, '450603736337881996', '中国上海市闵行区宾川路821号21号楼', '1991-07-25', 0, 0, 'hjoa05', '2014-08-22', 'joher', '2017-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS797441106856', '贺晓明', 1, '+44 5827 315997', 4, '301344669163577537', 'No.15 Main building, 356 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-06-08', 0, 0, 'hexiaoming', '2008-12-13', 'hex1017', '2018-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS006978467659', '渡辺結翔', 1, '+86 154-2148-2766', 3, '713088862706555349', '中国北京市西城区西長安街539号2栋', '1997-05-08', 0, 0, 'ys926', '2013-05-13', 'yuisato116', '2004-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS170341914685', '江玲玲', 1, '+86 28-617-4861', 0, '564312029973686257', '中国成都市成华区玉双路6号895号华润大厦46室', '1993-01-17', 0, 0, 'konglingling', '2003-03-02', 'linglingkong', '2010-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS946869536596', '姜杰宏', 1, '+86 769-471-8387', 2, '139633049448982284', '中国东莞坑美十五巷192号华润大厦34室', '1992-07-08', 0, 0, 'jiangj1224', '2007-08-20', 'jiehong3', '2021-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS361508527297', '唐安琪', 0, '+1 838-140-8797', 0, '741830904497969781', '102 State Street 3rd Floor, Albany, NY 12203, United States', '1993-07-24', 0, 0, 'tang1110', '2019-01-01', 'tang521', '2000-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS937202783740', '宮本彩乃', 1, '+81 90-3572-1142', 3, '720072903948711657', '日本東京港区東新橋一丁目5番3号46階', '1987-10-08', 0, 0, 'ayam', '2008-02-01', 'miyaa', '2000-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS495759322190', '上野美咲', 0, '+44 (1223) 42 1936', 1, '222856458481844939', 'Unit 35, Oxford Eco Centre, 216 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-02-26', 0, 0, 'umisaki1', '2014-04-27', 'misau', '2015-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS585473493746', '周仲賢', 0, '+1 330-754-8424', 3, '019987399736677213', '624 West Market Street Apt 44, Akron, OH 44333, United States', '1992-09-18', 0, 0, 'chow7', '2018-01-10', 'cychow', '2007-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS409092698296', '曹震南', 1, '+86 185-9636-6498', 1, '886806913164138787', '中国上海市浦东新区橄榄路100号7号楼', '1987-09-29', 0, 0, 'zheca7', '2012-02-01', 'caozhennan', '2016-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS609861160912', '陈杰宏', 1, '+86 10-304-8966', 1, '620965255546879602', 'No.5 building, 964 028 County Rd, Yanqing District, Beijing, China', '1997-01-31', 0, 0, 'jch', '2003-01-22', 'jiehongchen6', '2006-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS283765821836', '斎藤樹', 1, '+44 7459 294616', 2, '501270353359604604', 'Flat 21, 445 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-12-07', 0, 0, 'itsuki6', '2001-10-24', 'saititsu53', '2000-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS743116973061', 'Victor Marshall', 1, '+86 187-9176-0896', 2, '594197388733259451', '中国北京市延庆区028县道561号41号楼', '1997-02-14', 0, 0, 'victor72', '2018-09-12', 'marsvictor', '2008-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS219200043673', '朱致远', 0, '+81 90-4496-9236', 1, '196020589101156195', 'Rm. 4, 2-1-9 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-04-11', 0, 0, 'zhzhiyuan1', '2017-10-16', 'zhiyzhu112', '2009-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS041311329682', '郝安琪', 0, '+81 70-4413-0897', 4, '424047556998942076', 'Rm. 41, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1994-08-23', 0, 0, 'haoanqi', '2008-09-05', 'ahao', '2012-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS084410331923', '木下蓮', 0, '+81 70-7615-1727', 4, '216249455367168387', '日本おおさかし近江堂一丁目7番1号33階', '1996-05-28', 0, 0, 'rkinoshita', '2022-02-07', 'kren', '2009-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS294862833527', 'Theodore Watson', 0, '+81 3-7174-9382', 3, '592186489724391971', 'Rm. 29, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-09-14', 0, 0, 'watsontheodore', '2002-02-05', 'watsontheodore', '2006-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS288186688825', '森光莉', 1, '+81 70-6652-2735', 0, '208545276357960845', '日本ならし学園南三丁目9番4号44階', '1995-10-29', 0, 0, 'mhika91', '2003-03-27', 'morihikari', '2013-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS287606180516', '袁嘉伦', 0, '+86 21-6174-4493', 2, '933187515358541655', 'Room 33, 998 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-07-31', 0, 0, 'yuanj', '2014-12-11', 'yjia', '2019-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS218846418812', '馮青雲', 0, '+81 66-501-4677', 1, '710821327105003056', '日本おおさかし西成区天神ノ森二丁目1番17号10階', '1998-07-18', 0, 0, 'chingwan1978', '2008-09-18', 'chingwanfu', '2013-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS384190467542', '河野光莉', 0, '+81 3-2611-7247', 3, '059063871727997294', '22F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-06-07', 0, 0, 'kono75', '2014-11-25', 'hk1209', '2021-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS790708575839', 'Eddie Medina', 0, '+1 213-845-0311', 2, '930429734989682390', '508 Sky Way Apt 29, Los Angeles, CA 90043, United States', '1999-01-10', 0, 0, 'medinedd', '2018-11-12', 'eddie1948', '2015-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS037682636984', '石田大地', 1, '+86 20-398-4787', 3, '355179664198345118', 'No.47 building, 957 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-18', 0, 0, 'daichiishida510', '2018-12-26', 'id3', '2007-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS785107160380', '姜學友', 1, '+86 21-8934-0623', 3, '909426257622950578', '中国上海市闵行区宾川路715号华润大厦40室', '1988-01-09', 0, 0, 'hokyachang', '2005-02-18', 'hokyauc1944', '2013-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS745559092656', '斉藤玲奈', 0, '+81 90-9896-6190', 3, '604759528753286686', '49-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-06-04', 0, 0, 'saitrena', '2019-04-18', 'saitorena1', '2010-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS796420992703', '車德華', 1, '+86 21-9735-3191', 1, '636792053247085907', '中国上海市闵行区宾川路668号华润大厦34室', '1989-09-29', 0, 0, 'twch1987', '2019-05-26', 'che104', '2004-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS971798306509', '方杰宏', 1, '+86 769-749-3837', 2, '697278972311539884', 'Room 13, 221 Kengmei 15th Alley, Dongguan, China', '1985-02-25', 0, 0, 'fangjiehong', '2000-06-16', 'jiehongfang', '2017-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS705913521076', '藤田優奈', 0, '+81 66-529-5040', 2, '712914125350639508', '日本おおさかし平野区加美東四丁目9番10号27号室', '1988-05-03', 0, 0, 'fujyuna', '2004-05-22', 'yunfuj', '2011-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS252852762357', '侯岚', 0, '+81 80-8106-4666', 2, '989003823399394689', '日本東京中央区銀座三丁目12番3号33号室', '1998-04-08', 0, 0, 'hol4', '2007-04-24', 'lanhou', '2002-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS190269732820', '曹天榮', 1, '+86 133-0136-7961', 0, '012355982696315128', '中国成都市锦江区红星路三段278号14号楼', '1987-09-23', 0, 0, 'chotinwing', '2000-06-23', 'tinwing10', '2019-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS484987972630', 'Elaine Boyd', 1, '+44 (161) 937 6847', 0, '487202563808239737', 'Unit 18, Oxford Eco Centre, 943 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1988-09-26', 0, 0, 'boydela', '2015-08-06', 'elaine902', '2003-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS118277276719', '林詠詩', 1, '+1 213-052-3996', 2, '774596344656877252', '717 Grape Street Apartment 27, Los Angeles, CA 90002, United States', '1994-09-11', 0, 0, 'laws1102', '2014-01-28', 'wslam731', '2016-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS467409354190', '汪梓晴', 0, '+1 312-952-4646', 2, '009245923063423882', '503 North Michigan Ave Suite 12, Chicago, IL 60611, United States', '1996-02-08', 0, 0, 'tszchingwo', '2012-01-29', 'tcwong1012', '2016-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS583236802483', '菊地樹', 0, '+44 5057 773406', 2, '261668902415455554', 'No.3 Main building, 254 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-11-13', 0, 0, 'kikuchii09', '2013-07-15', 'ikikuc118', '2017-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS717663295910', '丸山聖子', 1, '+81 80-2822-6484', 1, '414920855636504764', 'Rm. 31, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-04-29', 0, 0, 'seikomaruy518', '2004-03-10', 'maruyama909', '2019-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS211731598220', '湯國明', 0, '+1 718-688-4602', 1, '119943626792882535', '729 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1988-01-25', 0, 0, 'kmtong', '2016-03-12', 'tkm', '2006-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS229234828288', '萬家玲', 0, '+44 5186 709471', 3, '634471037410997811', 'No.28 Main building, 834 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-05-13', 0, 0, 'mengkaling', '2003-09-15', 'klmeng', '2014-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS896609967199', '谷慧珊', 0, '+1 213-707-7759', 2, '542470831206583489', '734 S Broadway Apartment 28, Los Angeles, CA 90015, United States', '1986-11-06', 0, 0, 'koowaisan', '2002-11-23', 'wskoo', '2014-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS536914503720', '狄淑怡', 1, '+86 191-7211-5864', 1, '359640002493453142', 'Room 23, CR Building, 912 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-03-02', 0, 0, 'syti4', '2010-01-14', 'syti208', '2003-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS804309591665', '吉田光莉', 1, '+44 5654 096074', 4, '142817559295154108', 'No.42 Main building, 461 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-06-27', 0, 0, 'hiky', '2011-10-20', 'hikari1002', '2017-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS670044564490', 'Rachel Snyder', 1, '+44 7016 854234', 3, '348647187528927607', 'No.20 Main building, 881 New Street, Birmingham, B2 4DB, United Kingdom', '1988-04-10', 0, 0, 'srache', '2011-12-30', 'rachsnyd', '2020-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS805890683261', 'Martha Torres', 1, '+81 11-345-2866', 2, '819022438784145109', '日本札幌清田区真栄四条五丁目19番8号49号室', '1993-11-19', 0, 0, 'torremart6', '2006-06-04', 'martha104', '2013-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS486466910776', '張心穎', 1, '+81 80-7575-8862', 1, '780957333146472626', '37F, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1986-10-02', 0, 0, 'sumwing1959', '2006-09-19', 'cheungsumwing310', '2010-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS511590847937', '吕子韬', 0, '+81 52-294-5511', 2, '809164526116999116', '50-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-11-03', 0, 0, 'zitalu', '2006-08-14', 'zitalu', '2005-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS180776609537', '福田美緒', 1, '+86 172-6024-1142', 1, '118049324277747441', 'Room 26, 680 Kengmei 15th Alley, Dongguan, China', '1998-08-17', 0, 0, 'miofukuda', '2004-04-13', 'mfuku', '2010-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS814738666448', '原田桜', 1, '+81 3-5819-4588', 2, '969287474150397440', '日本東京港区東新橋一丁目5番13号37号室', '1986-02-28', 0, 0, 'sakurah', '2011-06-24', 'sha', '2012-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS305917416227', '宮本翼', 1, '+81 66-960-2188', 3, '236679241274749014', '2-kai, 4-9-16 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-01-22', 0, 0, 'tsubasamiya', '2012-09-01', 'tsubasa1981', '2004-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS864042696141', '菊地湊', 1, '+81 90-6171-6044', 4, '447433445060957720', '日本おおさかし平野区加美東四丁目9番1号12階', '1987-12-13', 0, 0, 'minatkik', '2018-07-05', 'kikuchi1961', '2018-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS181608366522', 'Ellen Smith', 1, '+1 330-363-2023', 2, '875545068959495187', '587 Ridgewood Road Apartment 4, Akron, OH 44321, United States', '1990-03-12', 0, 0, 'sel', '2007-09-01', 'esmi55', '2013-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS433079168658', '曾惠妹', 1, '+1 330-458-4324', 3, '170925071135854748', '814 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-04-13', 0, 0, 'tsahuimei1204', '2004-01-06', 'huimeitsang', '2005-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS353659245891', 'Amy Evans', 0, '+44 (20) 6800 6667', 2, '335421245183887225', 'Block 25, 908 Pollen Street, London, W1S 1NG, United Kingdom', '1985-03-03', 0, 0, 'aevans129', '2006-01-29', 'amyevans304', '2003-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS286799361871', 'Janet Nichols', 0, '+86 28-754-8563', 3, '843970991268141996', '中国成都市锦江区红星路三段226号华润大厦43室', '1986-01-02', 0, 0, 'janetnicho', '2018-12-24', 'janen', '2005-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS656543591193', '蕭天榮', 1, '+81 80-6771-0582', 4, '238300605722070591', '日本札幌白石区菊水三条五丁目2番11号34階', '1994-01-24', 0, 0, 'siutinwing', '2017-10-06', 'twsiu', '2016-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS634449057874', '應國榮', 0, '+81 70-7677-3771', 0, '909324066955514021', 'Rm. 1, 5-2-19 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-08-29', 0, 0, 'ykwokwing1227', '2009-05-07', 'yinkw', '2016-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS025890462703', '林安琪', 1, '+1 614-546-1866', 2, '353298013565132634', '805 East Cooke Road Apt 5, Columbus, GA 43214, United States', '1998-09-19', 0, 0, 'lamonkay', '2016-11-18', 'okla124', '2002-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS726863265706', 'Don Woods', 1, '+1 838-831-8237', 2, '447818679501070621', '674 Central Avenue Apartment 20, Albany, NY 12205, United States', '1993-07-05', 0, 0, 'wdo', '2000-10-31', 'donwood', '2014-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS070487815263', '袁惠敏', 0, '+1 838-107-8651', 2, '098480801828734750', '771 Lark Street Suite 40, Albany, NY 12210, United States', '1987-01-03', 0, 0, 'waimanyuen', '2008-05-19', 'yuewaiman10', '2021-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS334937233614', '坂本絢斗', 0, '+81 74-073-4616', 4, '547527762618280341', '27-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-05-10', 0, 0, 'sa1959', '2003-08-27', 'sakamotoayat', '2010-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS163846353940', '唐永權', 1, '+1 718-388-1663', 2, '063778865312746489', '753 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-01-20', 0, 0, 'towi', '2017-06-20', 'wingkuentong', '2011-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS417503226447', '尹嘉伦', 0, '+81 80-7904-7572', 1, '331423772789405062', '日本東京千代田区丸の内一丁目6番17号23階', '1997-12-04', 0, 0, 'jiy', '2019-05-15', 'yinjialun4', '2016-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS146034398738', '夏子异', 0, '+1 213-032-9163', 1, '615287265512442174', '203 Wall Street Apt 37, Los Angeles, CA 90003, United States', '1993-11-24', 0, 0, 'ziyixia', '2010-02-19', 'zx630', '2021-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS749180662736', '田村優奈', 1, '+1 614-658-0166', 0, '305191232168512498', '373 East Cooke Road Apartment 25, Columbus, GA 43214, United States', '1994-07-05', 0, 0, 'yuntamur7', '2003-05-21', 'yunatamura', '2003-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS805916384073', '许秀英', 1, '+81 3-7319-9637', 2, '499213926345037208', 'Rm. 36, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-02-01', 0, 0, 'xiuyxu', '2015-07-05', 'xuxiuy', '2021-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS339095372912', 'Christine Palmer', 0, '+86 179-1090-3729', 3, '887467543964705987', 'No.11 building, 99 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-05-06', 0, 0, 'christinep502', '2005-05-29', 'pachristine', '2018-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS137259624501', 'Randy Gutierrez', 1, '+81 80-6891-6794', 2, '377573895556673933', '日本おおさかし東住吉区東田辺三丁目27番13号35階', '1997-02-27', 0, 0, 'randyguti', '2018-12-20', 'grandy', '2013-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS034658467195', '林杰宏', 1, '+86 755-989-1568', 0, '709344967985107610', '中国深圳罗湖区田贝一路669号华润大厦7室', '1995-04-27', 0, 0, 'lin1946', '2009-05-29', 'jlin', '2021-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS529663262536', '樂頴璇', 0, '+44 7748 159732', 2, '876033551659727801', 'Block 10, 540 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-07-30', 0, 0, 'wingsl', '2019-06-16', 'wingsuenlok71', '2020-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS999863355202', '史云熙', 1, '+81 52-416-5188', 4, '732878887585747347', '日本なごやし守山区瀬古東二丁目171番1号15階', '1990-08-24', 0, 0, 'shi1220', '2022-01-26', 'shyun928', '2019-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS673093245708', 'Deborah White', 1, '+86 163-8074-5463', 4, '817252219797585417', 'Room 17, 989 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-07-30', 0, 0, 'white19', '2001-11-15', 'whdeb59', '2021-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS440274305555', 'Rebecca Moreno', 0, '+1 213-205-6774', 1, '482227331073248658', '389 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1996-03-06', 0, 0, 'rebecca03', '2008-10-13', 'rebecca47', '2006-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS038985092124', '钱杰宏', 1, '+86 176-2466-8230', 0, '201855966550955133', 'Room 19, 814 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-01-09', 0, 0, 'qianjiehong', '2012-09-15', 'qian5', '2011-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS936230549836', '戚國賢', 0, '+86 140-4744-6921', 3, '215230209235865166', 'Room 8, 228 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-08-05', 0, 0, 'kwokyin8', '2009-03-08', 'kwokyin74', '2012-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS853227748082', '關志明', 1, '+86 10-5259-0378', 1, '366694259122610390', 'No.20 building, 965 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-01-04', 0, 0, 'chimingk', '2016-02-04', 'kwancm', '2001-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS036914437046', '斎藤七海', 1, '+81 3-6722-6873', 1, '990243277028094181', 'Rm. 40, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1988-11-02', 0, 0, 'saitonanami1003', '2001-05-04', 'nansaito825', '2017-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS805682482537', '關梓軒', 0, '+81 90-5766-4679', 3, '169863332601224718', 'Rm. 39, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1989-07-25', 0, 0, 'kwanth', '2005-09-21', 'kwan01', '2011-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS514149902077', '王國明', 1, '+86 28-7255-5233', 2, '835365865359955808', '中国成都市成华区双庆路875号40栋', '1994-12-04', 0, 0, 'kmwong', '2006-11-06', 'wong109', '2021-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS526025989077', '村田陽菜', 1, '+86 160-2812-6890', 3, '432944064904574759', '中国广州市白云区小坪东路979号45栋', '1994-12-11', 0, 0, 'muratahina', '2002-01-08', 'hinamurata', '2015-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS300549446568', '斉藤百花', 0, '+44 5834 647609', 2, '615016456026308762', 'Flat 38, 509 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-07-14', 0, 0, 'momsai', '2013-03-12', 'momokasaito1981', '2016-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS784016843427', 'Kelly Roberts', 0, '+81 52-671-1528', 4, '070522291683364510', '日本なごやし守山区瀬古東二丁目171番19号18号室', '1994-02-11', 0, 0, 'rokelly', '2006-04-23', 'kelly9', '2013-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS425640745869', '方安琪', 1, '+1 838-310-5278', 0, '541833112034651730', '145 Broadway Apartment 48, Albany, NY 12207, United States', '1992-11-14', 0, 0, 'fananqi', '2002-06-09', 'fanganqi', '2012-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS592795651230', '侯安琪', 1, '+44 (116) 889 4910', 2, '194884669594614877', 'Block 20, 70 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-08-15', 0, 0, 'hou205', '2016-09-03', 'anqh1208', '2016-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS427268476500', '千葉詩乃', 1, '+86 10-9799-7787', 1, '773700236019472785', 'No.31 building, 19 028 County Rd, Yanqing District, Beijing, China', '1988-09-16', 0, 0, 'shino4', '2013-07-20', 'cshino', '2007-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS934969058088', '谢云熙', 1, '+81 80-8658-6009', 3, '998159846897124949', '44F, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-20', 0, 0, 'yunxi121', '2020-09-02', 'xiyunxi510', '2016-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS824225908419', '松井拓哉', 0, '+81 52-180-1550', 4, '573362575680781043', '日本なごやし北区清水三丁目19番20号8階', '1992-01-16', 0, 0, 'tmatsui5', '2021-09-22', 'takuyama', '2000-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS767337094393', '容裕玲', 0, '+86 769-599-2703', 0, '332490406795573895', 'Room 15, 469 Huanqu South Street 2nd Alley, Dongguan, China', '1991-07-13', 0, 0, 'yly', '2003-03-14', 'yulingyun807', '2012-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS692545537158', '韦嘉伦', 0, '+86 135-4712-9827', 0, '967435457344852444', '中国广州市海珠区江南西路85号13室', '1986-02-04', 0, 0, 'jialunw', '2010-03-07', 'jialunw76', '2000-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS226737857477', 'Ashley Taylor', 0, '+44 (161) 222 9318', 3, '733022090029467696', 'Block 15, 64 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-02', 0, 0, 'ast222', '2010-02-16', 'ashleyt8', '2021-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS923872845195', '钱震南', 1, '+81 66-586-9526', 3, '561906595089179276', '日本おおさかし西成区天神ノ森二丁目1番9号47号室', '1998-02-19', 0, 0, 'qizhennan4', '2010-06-20', 'zheqian', '2008-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS977290190290', 'Rosa Hawkins', 0, '+86 10-034-0136', 2, '422205774988344108', '中国北京市西城区西長安街192号华润大厦2室', '1996-05-12', 0, 0, 'hawkinsros', '2019-08-27', 'hawkins2', '2019-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS668239762282', 'Mario Richardson', 1, '+86 130-1565-6884', 1, '417007839228855809', '中国北京市西城区西長安街557号18室', '1987-04-15', 0, 0, 'mr2003', '2008-05-14', 'mariorichardson426', '2021-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS002932444853', '任頴璇', 1, '+86 769-9007-9508', 2, '421487439446513230', '中国东莞东泰五街389号33楼', '1985-06-05', 0, 0, 'wsyam1969', '2012-05-17', 'yam8', '2005-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS216480936216', '何明', 0, '+86 10-016-1391', 1, '391309814414780188', '39F, 321 028 County Rd, Yanqing District, Beijing, China', '1992-05-30', 0, 0, 'minho509', '2017-02-18', 'homi121', '2006-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS378640542243', '何子韬', 0, '+81 52-951-1536', 2, '042688372085573163', 'Rm. 44, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-10-07', 0, 0, 'hez217', '2012-10-15', 'hezitao', '2005-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS176765315986', '藤井七海', 0, '+44 7464 714497', 3, '314671241365951071', 'Unit 34, Oxford Eco Centre, 990 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-11-21', 0, 0, 'nanami1', '2014-04-07', 'nanafujii', '2012-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS721746662945', '陶子异', 1, '+1 838-999-7341', 1, '536832570884399980', '851 Broadway 3rd Floor, Albany, NY 12207, United States', '1993-02-01', 0, 0, 'ziyi2', '2007-08-04', 'taoziyi4', '2014-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS483144633509', '島田紗良', 1, '+81 3-5479-4649', 2, '146473978577235573', '日本東京中央区銀座三丁目12番13号10階', '1986-12-08', 0, 0, 'sshim6', '2008-03-13', 'shsa', '2010-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS403437527726', 'Pauline Moreno', 0, '+81 80-6847-6796', 1, '847644896672440632', '31F, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1997-04-15', 0, 0, 'mopaul63', '2014-07-29', 'morenopau8', '2018-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS644726045168', 'Edward Stevens', 1, '+86 178-5401-6469', 4, '712314816524976097', 'No.35 building, 622 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-08-13', 0, 0, 'edwardstevens', '2006-08-30', 'edwards9', '2004-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS543888280478', '松田翼', 1, '+1 312-937-8702', 1, '745541363775011230', '395 Pedway Suite 16, Chicago, IL 60601, United States', '1996-10-13', 0, 0, 'matsubasa', '2007-02-07', 'tsubasamatsuda1107', '2016-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS565231643914', 'Bonnie Rivera', 0, '+44 7533 656183', 4, '301675552648492710', 'No.7 Main building, 340 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-05-30', 0, 0, 'riverabonn', '2016-05-24', 'riverab', '2008-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS310200753716', '林大和', 0, '+86 760-8764-8334', 3, '968385521820708599', '中国中山天河区大信商圈大信南路314号华润大厦32室', '1993-01-14', 0, 0, 'yamathayashi6', '2019-02-13', 'yamatoh11', '2010-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS416312725680', 'Albert Evans', 0, '+1 614-237-9225', 4, '947956754450835639', '645 Wicklow Road Apt 1, Columbus, GA 43204, United States', '1986-10-17', 0, 0, 'albert97', '2003-09-29', 'ealbert', '2007-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS274878460943', 'Jimmy Collins', 0, '+81 3-5224-5002', 1, '893532167386724433', '日本東京港区東新橋一丁目5番19号13階', '1987-08-27', 0, 0, 'jcoll8', '2001-08-15', 'jimmycoll', '2015-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS766865290778', '駱國榮', 1, '+81 11-006-5938', 2, '294077191984525968', '41F, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-03-02', 0, 0, 'lok1', '2002-08-08', 'kwlok', '2013-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS801428663126', '遠藤健太', 1, '+81 80-8731-4569', 3, '481487315874465981', '27F, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-01-20', 0, 0, 'endo525', '2014-03-30', 'endo98', '2017-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS288099843698', '梅思妤', 1, '+86 149-1730-4865', 3, '541810210936483645', 'Room 25, CR Building, 636 Yueliu Rd, Fangshan District, Beijing, China', '1989-02-04', 0, 0, 'sym6', '2009-05-04', 'szeyumui', '2018-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS752501098534', '中村明菜', 0, '+86 10-874-8826', 3, '170901858508937795', '中国北京市朝阳区三里屯路903号华润大厦4室', '1997-07-17', 0, 0, 'akinnaka928', '2002-02-25', 'akinanakamura1966', '2002-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS391929048613', '金子一輝', 0, '+81 11-130-1564', 0, '277427519999166708', '日本札幌白石区菊水三条五丁目4番1号25号室', '1988-08-25', 0, 0, 'kaneko6', '2015-05-28', 'kanekoikki2', '2007-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS188399544810', '谷國賢', 1, '+86 139-1480-8252', 2, '128202271731343395', '中国中山天河区大信商圈大信南路737号49栋', '1992-07-13', 0, 0, 'kky', '2003-11-26', 'koky', '2020-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS117835656867', 'Kyle Wilson', 0, '+86 10-4829-7474', 0, '192869071109032041', 'Room 26, CR Building, 404 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-12-01', 0, 0, 'kyle79', '2021-08-15', 'kylewilso', '2018-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS576355585312', 'Nicholas Murphy', 0, '+81 80-6012-7679', 2, '966239805378394755', '日本札幌豊平区豊平三条十三丁目3番18号36号室', '1994-09-29', 0, 0, 'murphynic', '2013-09-24', 'nmurphy43', '2019-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS957519901911', 'Janice Jones', 0, '+86 769-7810-0806', 3, '495619348698922784', '中国东莞环区南街二巷487号33栋', '1985-12-15', 0, 0, 'jjanice', '2010-08-13', 'janijones', '2005-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS415083216986', '石川結翔', 0, '+86 138-2381-7866', 1, '290569853909940259', '41F, 649 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-25', 0, 0, 'yuitoishikawa', '2003-07-23', 'ishikawa6', '2014-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS214859050465', '清水翼', 1, '+86 199-1337-7031', 4, '971637818009220378', '中国东莞坑美十五巷560号华润大厦44室', '1988-01-05', 0, 0, 'shitsubasa116', '2000-12-31', 'tsubasa629', '2019-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS104430676556', '黎岚', 1, '+81 70-4222-0031', 4, '578881987758684786', '日本札幌豊平区豊平三条十三丁目3番4号6階', '1987-04-01', 0, 0, 'lilan', '2008-12-26', 'lilan', '2020-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS814074708095', '苗心穎', 1, '+1 212-707-6345', 2, '463442756340510069', '682 Wooster Street 3rd Floor, New York, NY 10012, United States', '1990-08-18', 0, 0, 'misw106', '2007-06-29', 'miu703', '2007-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS739377645257', '萧子韬', 1, '+81 80-6667-1614', 1, '806861139387176101', '13F, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-27', 0, 0, 'zixi609', '2015-07-09', 'xiao03', '2000-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS403452445738', 'Josephine Rose', 1, '+1 312-788-9193', 3, '848045888428984453', '726 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1995-07-07', 0, 0, 'rjosephine', '2018-08-08', 'rose04', '2017-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS756081896695', '尹子韬', 0, '+86 769-6067-3910', 2, '746431472176292632', 'Room 39, CR Building, 580 Huanqu South Street 2nd Alley, Dongguan, China', '1990-04-18', 0, 0, 'zitao203', '2021-06-12', 'yin1124', '2003-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS818165649499', '森田陸', 0, '+86 760-5418-8253', 2, '951229719535866871', '30F, 51 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-09-04', 0, 0, 'moritariku', '2020-10-25', 'moritariku1005', '2001-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS040287482632', '斎藤大地', 0, '+81 11-880-3235', 4, '441115670818485053', 'Rm. 41, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-04', 0, 0, 'saitodaichi', '2005-03-17', 'saitodaich3', '2000-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS195505563199', '曹青雲', 1, '+44 (161) 640 1000', 1, '566628247257383502', 'No.12 Main building, 108 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-11-21', 0, 0, 'ccw625', '2010-08-25', 'chocw5', '2013-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS155999393656', '江頴璇', 1, '+1 213-610-0816', 1, '109469057836754127', '800 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-07-06', 0, 0, 'wingsk', '2000-12-31', 'wingsuenk', '2005-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS371321600882', 'Jeremy Snyder', 0, '+81 70-1621-3437', 2, '081016999043097880', 'Rm. 21, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1997-02-01', 0, 0, 'jsnyder3', '2002-12-08', 'snyderjeremy', '2014-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS862202441097', '顾致远', 0, '+86 196-0806-0480', 2, '694905641441668550', 'No.26 building, 810 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-01-20', 0, 0, 'zhiyuangu', '2006-10-23', 'guzhiyuan', '2000-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS821066389652', 'Vincent Lee', 0, '+81 70-3364-4894', 2, '064134308394347029', '日本札幌中央区宮の森四条六丁目1番3号28階', '1992-01-23', 0, 0, 'lvincent53', '2007-12-25', 'vincentlee', '2005-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS399311607666', '任浩然', 1, '+86 180-7484-2651', 3, '127943114481816477', '中国北京市房山区岳琉路103号47号楼', '1995-05-03', 0, 0, 'hyy1225', '2011-08-12', 'hoyy9', '2010-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS493908122267', '池田大地', 0, '+86 136-5230-7631', 3, '057109312126692330', '中国深圳龙岗区布吉镇西环路179号6栋', '1989-02-27', 0, 0, 'ikedadaichi', '2010-10-18', 'ikedadaic1974', '2014-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS972621248440', 'Michael Garcia', 1, '+1 212-241-1736', 0, '745284309212735228', '351 Wooster Street Suite 16, New York, NY 10012, United States', '1997-08-18', 0, 0, 'garcimichael', '2021-09-19', 'garciami9', '2012-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS730476257484', '佘潤發', 0, '+81 3-3736-7764', 2, '063131900988500146', '13-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1987-03-01', 0, 0, 'yfsh', '2000-08-18', 'syunfat923', '2009-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS499514010646', '韩岚', 1, '+86 28-7838-2259', 3, '332563606209207170', '中国成都市成华区二仙桥东三路464号13号楼', '1995-03-12', 0, 0, 'hanlan', '2019-01-20', 'lanhan', '2004-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS160646134204', '安藤光', 1, '+86 158-8399-7368', 0, '825318732355903361', '5F, 558 Sanlitun Road, Chaoyang District, Beijing, China', '1993-02-08', 0, 0, 'andoh', '2015-12-26', 'andohikaru', '2002-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS683457802144', '姜家玲', 0, '+1 614-539-7386', 0, '974370847527314513', '580 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-03-18', 0, 0, 'changkaling10', '2000-08-06', 'chakl79', '2001-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS741092418665', 'Rodney James', 1, '+81 80-7921-0423', 2, '258663421394437447', '日本東京千代田区丸の内一丁目6番4号43階', '1986-03-19', 0, 0, 'rodjam74', '2013-07-05', 'rodney5', '2005-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS146243302987', '阿部愛梨', 1, '+44 (121) 057 5879', 0, '660576795887453463', 'No.31 Main building, 818 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-12-17', 0, 0, 'airia', '2009-07-19', 'abe204', '2009-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS738055449763', 'Carrie Castro', 1, '+1 614-502-5755', 0, '777502226044098745', '220 East Alley 3rd Floor, Columbus, GA 43201, United States', '1991-02-26', 0, 0, 'carcast709', '2012-06-09', 'castrocarri', '2021-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS497603339863', 'Norma Gardner', 1, '+86 163-9105-2870', 3, '136106277238337442', '18F, 323 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-12-14', 0, 0, 'gardnernorma222', '2001-11-07', 'normagardn', '2007-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS112210277941', '坂本結翔', 0, '+86 769-833-5749', 3, '495771240806519515', '中国东莞珊瑚路693号5楼', '1988-10-08', 0, 0, 'sakyuito', '2003-06-05', 'yuisakamoto914', '2000-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS028855144220', 'Chad Gibson', 0, '+81 70-6519-6792', 3, '706842439294538205', 'Rm. 24, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-03-17', 0, 0, 'chadgibson', '2009-06-26', 'gibchad', '2009-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS827544637885', '官安娜', 0, '+81 70-9462-4455', 2, '111230767304018744', '日本札幌清田区真栄四条五丁目19番10号18階', '1991-07-27', 0, 0, 'onnakoon', '2007-12-23', 'onkoon4', '2010-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS039511882961', '有村七海', 1, '+86 769-7914-5966', 1, '411548121892060040', 'Room 34, 752 Kengmei 15th Alley, Dongguan, China', '1986-08-05', 0, 0, 'nanamiarimura1230', '2005-03-26', 'arimurananam7', '2002-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS265076040549', '朱國榮', 1, '+81 80-3820-7765', 1, '839062993350005580', '29F, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1985-03-05', 0, 0, 'chukw', '2013-09-18', 'kwokwingchu06', '2018-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS261804264371', '村上陸', 0, '+81 11-359-7814', 3, '685066677510508123', 'Rm. 25, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-09-25', 0, 0, 'murakamirik106', '2007-01-04', 'rikumurakami', '2011-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS864698663755', 'Arthur Rose', 1, '+86 10-7014-2876', 0, '017668314034650895', 'Room 7, CR Building, 969 East Wangfujing Street, Dongcheng District , Beijing, China', '1985-04-26', 0, 0, 'arose1947', '2016-12-17', 'arthur5', '2003-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS679505560050', '孟震南', 1, '+81 11-592-5776', 3, '680050344131002186', '日本札幌豊平区豊平三条十三丁目3番17号9号室', '1987-08-12', 0, 0, 'menz', '2008-03-17', 'meng323', '2001-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS484380639634', '武秀英', 0, '+86 21-9361-9626', 0, '704334844129976836', '中国上海市徐汇区虹桥路366号5号楼', '1988-04-18', 0, 0, 'wuxiuy', '2016-07-11', 'wu10', '2016-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS204412066769', 'Amber Diaz', 1, '+81 80-5388-7761', 1, '582863528015588800', '日本なごやし熱田区千年二丁目5番1号36号室', '1986-03-25', 0, 0, 'amberdiaz09', '2021-03-22', 'ambd', '2008-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS015500411239', '梅裕玲', 0, '+81 11-373-8324', 1, '158849880967895212', '日本札幌厚別区上野幌一条二丁目1番14号46階', '1995-08-23', 0, 0, 'ylm67', '2019-03-30', 'ylmui', '2006-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS601963819053', '谭晓明', 1, '+86 10-9593-4552', 1, '907090894217370984', 'No.34 building, 463 Sanlitun Road, Chaoyang District, Beijing, China', '1994-09-24', 0, 0, 'xiaomingtan101', '2014-07-09', 'tanxiao', '2007-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS075559077157', '向致远', 0, '+86 176-3576-6314', 0, '239979106831869540', '中国广州市越秀区中山二路226号30号楼', '1987-04-06', 0, 0, 'zhiyuan4', '2009-04-01', 'zhiyuanxiang3', '2021-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS052103238257', '唐慧嫻', 1, '+86 151-7995-2943', 3, '884261506638114850', '中国广州市白云区小坪东路585号12楼', '1994-03-11', 0, 0, 'tonwa4', '2003-10-17', 'whto', '2018-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS442093919880', '溫世榮', 1, '+86 28-426-9247', 3, '444761607259167693', '32F, 994 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-02-26', 0, 0, 'saiwing72', '2010-05-18', 'saiwingwan1230', '2011-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS350324594822', 'George Henry', 1, '+44 (20) 1939 7022', 1, '590300458849639714', 'Flat 40, 548 Pollen Street, London, W1S 1NG, United Kingdom', '1991-09-03', 0, 0, 'henry3', '2002-12-20', 'hgeorge', '2004-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS192524103502', '後藤葉月', 1, '+81 66-918-8130', 1, '687276667812005250', '日本おおさかし近江堂一丁目7番19号12階', '1986-06-10', 0, 0, 'hagoto', '2009-03-20', 'gotohazuki', '2008-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS841048727061', '竹内百花', 1, '+1 718-106-7562', 3, '097201779470826626', '730 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1993-05-12', 0, 0, 'momoka5', '2014-03-27', 'tam', '2011-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS592005134769', 'Mark Alvarez', 0, '+86 755-282-6809', 2, '337669062478436977', 'No.6 building, 521 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-07-01', 0, 0, 'am76', '2001-09-11', 'markalvarez', '2006-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS137401260837', 'Donna Cooper', 0, '+86 20-1776-3781', 1, '052735249596486783', '中国广州市白云区机场路棠苑街五巷276号25号楼', '1992-12-03', 0, 0, 'dcooper2005', '2019-10-04', 'cood', '2018-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS874634518743', '汤子异', 1, '+81 74-105-0406', 4, '545854848167102208', 'Rm. 43, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1989-04-07', 0, 0, 'ziyit', '2017-02-27', 'tangz403', '2002-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS540321935697', '官安娜', 1, '+86 160-1554-7610', 3, '139162215727356042', 'No.35 building, 250 Tianhe Road, Tianhe District, Guangzhou, China', '1997-03-29', 0, 0, 'kon531', '2012-11-27', 'koon5', '2007-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS927198560832', '陳力申', 1, '+86 755-0037-5302', 1, '613275481190447460', '中国深圳福田区景田东一街195号16号楼', '1996-06-09', 0, 0, 'chanliksun', '2005-04-01', 'liksunchan', '2015-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS920611732759', '中村美咲', 0, '+81 52-691-4577', 1, '207043085813137606', '日本なごやし守山区瀬古東二丁目171番1号47号室', '1986-05-26', 0, 0, 'nakamura2014', '2010-12-11', 'misaki9', '2000-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS412181344944', '新井陸', 0, '+86 20-176-7264', 1, '583399798150430762', '中国广州市白云区小坪东路955号46号楼', '1988-07-06', 0, 0, 'rikarai213', '2013-08-18', 'rikuara', '2013-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS947336801807', '内田優奈', 1, '+1 212-239-0498', 3, '012330704702187674', '189 Bank Street 3rd Floor, New York, NY 10014, United States', '1994-01-03', 0, 0, 'yuna6', '2007-10-07', 'uchidayuna10', '2000-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS843484209532', '潘云熙', 1, '+86 177-7822-8666', 2, '663901745480080332', '中国深圳罗湖区蔡屋围深南东路130号30栋', '1986-03-29', 0, 0, 'yunxip71', '2007-11-02', 'ypan', '2022-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS227402146128', '桜井百花', 1, '+86 196-5842-4160', 3, '245339179388757064', '中国中山乐丰六路804号1号楼', '1986-05-15', 0, 0, 'momoka325', '2006-02-22', 'momoks1963', '2016-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS255435107671', '郑云熙', 0, '+81 11-970-6603', 3, '265733011409699160', '43-kai, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-05-25', 0, 0, 'zhenyunxi', '2018-05-19', 'yunxi5', '2014-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS541324197817', '孟子韬', 0, '+1 838-018-2455', 3, '525020119812121303', '649 Central Avenue Suite 35, Albany, NY 12205, United States', '1995-12-12', 0, 0, 'zitao1953', '2005-10-14', 'mengzita', '2016-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS953244036438', '甘榮發', 1, '+1 838-761-3383', 3, '298605512125593731', '4 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1988-12-11', 0, 0, 'kwingfat', '2015-07-01', 'kwf10', '2012-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS151036006241', 'Kim Dixon', 1, '+1 212-983-5005', 3, '595663810248755633', '2 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1989-01-22', 0, 0, 'dixki', '2013-08-15', 'kidixon', '2016-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS635830245026', '横山和真', 1, '+44 7023 094260', 1, '981732708332279943', 'No.47 Main building, 788 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1993-08-18', 0, 0, 'kyokoy10', '2009-11-08', 'yokoyama617', '2015-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS617706133913', '高安娜', 1, '+81 70-7383-9651', 2, '961379955206503284', '32F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-06-04', 0, 0, 'kaonna', '2001-12-07', 'kaoonna5', '2000-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS399261760699', 'Scott Morgan', 0, '+81 11-062-3269', 1, '878654116207331227', '日本札幌中央区宮の森四条六丁目1番10号33号室', '1996-12-06', 0, 0, 'smorgan', '2006-04-19', 'moscott', '2014-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS468106813786', '田青雲', 0, '+86 133-3697-1260', 1, '959969808629298577', '中国东莞坑美十五巷387号6栋', '1995-12-30', 0, 0, 'chingwantin', '2013-10-26', 'cwtin', '2002-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS114903039545', '石井光莉', 0, '+86 187-4444-8014', 0, '204490872573494407', 'No.33 building, 363 Ganlan Rd, Pudong, Shanghai, China', '1990-11-01', 0, 0, 'hikariishii1', '2008-08-09', 'ish', '2016-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS596159567298', '青木拓哉', 0, '+81 52-019-8014', 0, '683720523363249975', '43-kai, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1987-06-12', 0, 0, 'takuyaaoki1113', '2014-07-23', 'takuyaok2', '2005-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS338624681036', '楊明詩', 1, '+1 838-906-9848', 3, '999572387237291154', '596 State Street Suite 37, Albany, NY 12203, United States', '1985-11-15', 0, 0, 'yeungmings', '2021-12-05', 'mingsze17', '2004-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS923774694938', 'Juan Weaver', 1, '+81 90-8057-1279', 1, '374082589092213763', 'Rm. 43, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-12-19', 0, 0, 'weaverjuan', '2011-12-08', 'wejuan2', '2004-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS471876088766', '徐震南', 1, '+1 330-334-7658', 4, '584718551967385057', '434 Collier Road Suite 7, Akron, OH 44320, United States', '1991-03-30', 0, 0, 'xu229', '2014-01-24', 'zhennanx', '2001-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS359866851330', '傅浩然', 1, '+81 70-0773-5182', 1, '933638233933002004', '11-kai, 5-4-4 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-02-12', 0, 0, 'fuhy', '2016-10-13', 'fuhy', '2001-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS147382481320', '余璐', 1, '+44 (1865) 68 7795', 3, '978847682046417510', 'Block 5, 76 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-10-18', 0, 0, 'luyu96', '2000-05-22', 'luy', '2011-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS389414514243', '安藤絢斗', 1, '+86 162-5163-2855', 2, '851857463486672680', '中国东莞环区南街二巷808号37室', '1997-07-25', 0, 0, 'andoayato', '2016-12-01', 'ayaando4', '2014-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS283790860900', 'Victor Stewart', 1, '+1 312-084-7676', 0, '324798301707848496', '838 Pedway Apt 19, Chicago, IL 60601, United States', '1989-05-02', 0, 0, 'victor1980', '2008-11-04', 'vicstewa', '2010-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS646558630308', '田詩涵', 1, '+86 143-8917-0216', 2, '575088825399550028', 'No.35 building, 409 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-09-19', 0, 0, 'ts1', '2000-11-15', 'shihantian', '2012-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS513513148929', '曹安琪', 0, '+86 151-9118-9363', 3, '212011977107030788', '6F, 58 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1985-12-17', 0, 0, 'caoanqi', '2002-10-10', 'anqicao', '2011-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS978193261080', 'Stephanie Stevens', 1, '+86 28-7716-4442', 1, '740442264002114229', '中国成都市成华区双庆路310号华润大厦23室', '1995-10-15', 0, 0, 'stephanie502', '2014-10-04', 'stephaniestevens', '2021-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS765818421537', '河野美咲', 1, '+86 21-355-8928', 3, '202820675457589645', '中国上海市浦东新区健祥路873号华润大厦47室', '1995-05-27', 0, 0, 'mkono64', '2016-01-21', 'misakikono4', '2008-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS203418046591', '邵秀英', 1, '+86 137-3615-3682', 1, '333830526083620796', 'No.18 building, 80 Ganlan Rd, Pudong, Shanghai, China', '1996-04-09', 0, 0, 'shxiuy48', '2000-06-01', 'sxiu', '2021-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS798173739331', '阿部紗良', 0, '+1 718-748-0936', 3, '935950730318723411', '515 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-05-29', 0, 0, 'asara7', '2007-08-12', 'sabe', '2000-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS689731155357', '曹慧琳', 1, '+86 21-847-8653', 3, '524636350299142428', '中国上海市黄浦区淮海中路129号华润大厦10室', '1986-02-03', 0, 0, 'wailam422', '2006-08-16', 'cwl', '2012-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS682970295677', 'Monica Fox', 1, '+44 (151) 679 7862', 0, '462556252235482586', 'No.11 Main building, 206 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-05-28', 0, 0, 'fox331', '2013-09-04', 'monicaf', '2014-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS194785489380', '曹睿', 0, '+81 66-624-1784', 1, '862091198931672673', '日本おおさかし平野区加美東四丁目9番16号1階', '1989-09-03', 0, 0, 'rcao03', '2001-05-03', 'caru', '2010-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS804976423204', '田村悠人', 0, '+86 20-648-4094', 4, '242410897595411608', 'Room 40, 23 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-03-19', 0, 0, 'yuto7', '2003-03-13', 'tamyuto', '2010-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS356564187787', '福田紗良', 0, '+1 614-609-6316', 0, '251427855468085537', '636 East Cooke Road Suite 44, Columbus, GA 43214, United States', '1995-06-20', 0, 0, 'fukusa', '2013-10-02', 'sarafuk1944', '2002-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS537290140661', '卢璐', 0, '+81 70-7143-3923', 3, '629363085983921085', '8-kai, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-01-27', 0, 0, 'lulu', '2021-07-14', 'lulu', '2005-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS280559603175', '李世榮', 1, '+86 755-188-9388', 4, '851015948182231361', '中国深圳福田区景田东一街398号华润大厦37室', '1985-01-25', 0, 0, 'saiwinglee1031', '2006-06-09', 'lee514', '2015-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS082029103356', 'Clarence Mcdonald', 1, '+44 (121) 845 2582', 2, '273383978082327195', 'No.1 Main building, 386 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-10-18', 0, 0, 'clarencemcdonald92', '2020-10-19', 'clarencemcd', '2010-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS388953855829', '馮淑怡', 0, '+1 614-494-7975', 1, '399920954595738008', '861 Wicklow Road Apt 28, Columbus, GA 43204, United States', '1989-09-14', 0, 0, 'fungsy1007', '2004-06-22', 'sukyefung', '2014-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS096859311227', '伍永發', 1, '+81 3-1653-1439', 3, '221212005031778021', '日本東京品川区東五反田五丁目2番5号2号室', '1991-11-22', 0, 0, 'wingfat706', '2011-03-09', 'ngwf', '2008-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS679149762665', '大野明菜', 1, '+81 52-561-4161', 2, '696965921215339995', '日本なごやし北区清水三丁目19番8号4階', '1994-11-02', 0, 0, 'oakina8', '2009-10-27', 'onoakina2016', '2001-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS842972172126', 'Emily Rice', 0, '+86 139-2034-3378', 3, '021320040195811695', 'Room 32, CR Building, No.942, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-08-08', 0, 0, 'eri', '2014-09-10', 'emir', '2010-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS884086134012', '坂本詩乃', 0, '+86 10-704-6831', 1, '380202289449738158', 'Room 33, 455 Sanlitun Road, Chaoyang District, Beijing, China', '1993-07-15', 0, 0, 'shinosaka84', '2011-05-03', 'shinosakamoto', '2017-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS792091954416', '山崎美月', 1, '+44 (121) 704 5962', 0, '135842357430832373', 'Flat 30, 633 New Street, Birmingham, B2 4DB, United Kingdom', '1985-11-28', 0, 0, 'yamazakimits716', '2009-10-12', 'yamazmi', '2017-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS408412945123', 'Crystal Martinez', 0, '+86 20-332-3008', 1, '646112032629197383', '中国广州市白云区机场路棠苑街五巷166号华润大厦38室', '1988-01-31', 0, 0, 'crystalmartinez', '2015-09-25', 'martic', '2022-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS549794665642', '青木美羽', 0, '+44 (121) 361 6487', 2, '952464475534235606', 'Block 33, 297 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-06-26', 0, 0, 'miaoki1', '2006-03-04', 'miua1995', '2008-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS504585245749', '文頴思', 1, '+86 28-8037-5426', 1, '641866164781876943', 'Room 34, CR Building, 848 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-10-24', 0, 0, 'wingszeman1', '2022-01-07', 'wingszeman9', '2009-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS300701530803', '小林優奈', 1, '+81 80-5904-9934', 3, '676158468478394995', '日本ならし大和郡山市本庄町一丁目1番5号12階', '1985-02-16', 0, 0, 'kobayyuna1960', '2001-08-26', 'koby', '2004-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS931773537925', '黃玲玲', 1, '+44 (161) 678 0290', 3, '896610953873287154', 'Flat 48, 462 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-09-28', 0, 0, 'wongll', '2020-08-19', 'wongll', '2019-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS368034682413', '黎詩涵', 1, '+86 28-470-3367', 4, '376443104697433391', '中国成都市成华区玉双路6号228号17栋', '1998-05-16', 0, 0, 'shihali48', '2003-07-30', 'shihan7', '2012-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS910568435421', 'Roger Moreno', 1, '+86 197-2772-3474', 2, '690512038296033230', '中国深圳罗湖区清水河一路378号50室', '1986-03-12', 0, 0, 'rogermoreno9', '2006-03-13', 'moreroger15', '2001-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS036488168429', '孫志明', 1, '+86 755-384-7806', 1, '002124537500846672', '中国深圳龙岗区学园一巷638号2号楼', '1985-07-13', 0, 0, 'chiming1', '2012-02-17', 'hsuanchiming', '2016-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS065767385776', 'Norma Robertson', 0, '+81 11-017-7814', 1, '174242562240669434', '日本札幌白石区菊水三条五丁目2番4号29号室', '1992-04-30', 0, 0, 'robertson1952', '2000-02-08', 'robernor', '2006-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS257608132360', '崔仲賢', 1, '+81 74-164-8680', 4, '729793762913247631', '41F, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-09-12', 0, 0, 'cchungyin4', '2003-04-10', 'chchungyin86', '2001-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS684863874996', '邱杰宏', 1, '+86 134-4709-6327', 4, '306809205282276187', '中国北京市西城区复兴门内大街87号7室', '1994-11-17', 0, 0, 'qiujieh', '2004-09-08', 'jiehong6', '2020-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS203042568792', '狄玲玲', 0, '+1 213-765-4438', 1, '004103529497695906', '244 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1991-06-19', 0, 0, 'llti', '2006-05-11', 'llt', '2015-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS894100483346', 'Leonard Campbell', 1, '+86 184-0683-4962', 2, '806171852296737127', 'Room 44, CR Building, 530 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-07-14', 0, 0, 'lecamp', '2015-02-17', 'leonardcam', '2009-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS279466839068', 'Heather Williams', 1, '+86 133-1163-8550', 0, '565692284815194779', '中国深圳龙岗区布吉镇西环路857号华润大厦33室', '1993-07-07', 0, 0, 'heawilliams', '2012-02-09', 'williamsh6', '2003-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS582444166636', '三浦架純', 0, '+1 213-896-5752', 2, '817264841574702746', '608 Sky Way Apartment 30, Los Angeles, CA 90043, United States', '1995-02-16', 0, 0, 'mkasu', '2019-05-28', 'miura99', '2013-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS474959242577', 'Billy Ramos', 1, '+81 90-3828-3363', 2, '017732223774261716', '23-kai, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1999-02-07', 0, 0, 'ramosbilly88', '2011-07-09', 'billyramos', '2011-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS844037399338', '武秀英', 0, '+81 66-594-6050', 2, '803835387862390107', '日本おおさかし近江堂一丁目7番5号35階', '1985-07-18', 0, 0, 'wuxiuying', '2000-05-09', 'xiuywu', '2001-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS494914970840', '姚國明', 0, '+81 11-275-3988', 1, '061813395145503202', '10F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-07-10', 0, 0, 'yeowkwokming', '2003-07-06', 'yeow6', '2020-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS185533222615', '田岚', 0, '+86 755-7177-8746', 2, '850953428324088048', 'Room 19, 922 Shennan Ave, Futian District, Shenzhen, China', '1996-06-19', 0, 0, 'lanti1986', '2001-07-24', 'lantian', '2013-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS731586682024', 'John Scott', 0, '+86 760-029-1205', 3, '886555026813209252', '中国中山乐丰六路931号47栋', '1996-09-04', 0, 0, 'johnscott72', '2021-02-05', 'scottjo', '2006-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS048050869465', '熊秀英', 1, '+81 70-0424-0177', 1, '260931667421209257', '日本札幌中央区宮の森四条六丁目1番2号2階', '1991-01-10', 0, 0, 'xiongxiuying', '2016-04-28', 'xiuyx9', '2005-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS917402640131', '向宇宁', 0, '+86 197-7665-1750', 4, '296387347491236532', 'No.38 building, 526 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-09-23', 0, 0, 'yuninxiang', '2003-11-13', 'yuning89', '2016-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS110287684576', '三浦拓哉', 1, '+81 70-1792-1858', 4, '292652299696036488', '6-kai, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-05-12', 0, 0, 'miuratakuya', '2008-10-06', 'miurata56', '2021-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS890941219608', '叶子异', 0, '+81 52-810-0544', 2, '256208917124303719', '日本なごやし北区楠味鋺三丁目80番20号25階', '1998-03-21', 0, 0, 'yez', '2013-02-03', 'yeziyi', '2000-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS380083861809', '上田結翔', 0, '+44 7855 117246', 1, '192171570791953738', 'Unit 5, Oxford Eco Centre, 41 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-06-02', 0, 0, 'yueda', '2000-11-18', 'ueda3', '2018-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS633159028353', '郭嘉伦', 0, '+81 3-2287-5766', 1, '950504537101408884', '39F, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-03', 0, 0, 'guo1110', '2002-02-01', 'jg4', '2007-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS999218709113', 'Aaron Kim', 1, '+44 5270 835273', 2, '623563134525241723', 'Unit 22, Oxford Eco Centre, 802 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-11-18', 0, 0, 'aaronk10', '2008-01-11', 'aarkim114', '2010-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS434089790803', '小野拓哉', 0, '+44 7157 411216', 4, '846799607941529672', 'Block 20, 718 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-11-04', 0, 0, 'onotakuya', '2019-03-16', 'tono18', '2008-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS972586005220', '黃國賢', 1, '+81 52-416-0246', 3, '234377432340679030', 'Rm. 12, 20 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-07-30', 0, 0, 'wongky', '2009-08-15', 'wong1206', '2014-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS378290626040', 'Tina Miller', 0, '+81 3-0584-4163', 1, '427349675840191104', '日本東京港区東新橋一丁目5番10号41階', '1985-05-04', 0, 0, 'millertina51', '2011-05-10', 'miltina73', '2000-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS712961359998', 'Gloria Watson', 1, '+81 70-9488-4351', 4, '142607604074509620', 'Rm. 26, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-07-26', 0, 0, 'watsong806', '2002-07-31', 'watsgloria3', '2014-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS479125053878', '橋本翼', 0, '+44 7238 396750', 2, '556943347761991386', 'No.5 Main building, 78 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-12-08', 0, 0, 'hashimototsuba', '2008-04-19', 'htsubasa', '2016-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS551717317552', 'Linda Ford', 0, '+86 160-4237-1469', 2, '611771282755366946', '中国上海市徐汇区虹桥路523号华润大厦36室', '1998-09-03', 0, 0, 'forlinda', '2012-04-17', 'lf10', '2011-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS211805420921', '卢宇宁', 0, '+86 177-0831-4335', 2, '553630832484277900', '中国成都市成华区双庆路935号44室', '1991-06-10', 0, 0, 'luyuni', '2005-03-01', 'yulu1220', '2002-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS497032500330', '樊榮發', 0, '+81 80-9035-9623', 1, '210550530037179106', '27-kai, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-01', 0, 0, 'fan930', '2021-09-25', 'wffan', '2008-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS703954176049', '向俊宇', 1, '+81 80-1400-8473', 0, '542126149809260405', 'Rm. 9, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-09-02', 0, 0, 'heung7', '2001-02-10', 'chunheu', '2022-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS464378340905', '石井美緒', 1, '+86 148-9593-6873', 4, '851656831348472490', 'Room 29, 218 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1990-02-04', 0, 0, 'ismio8', '2012-10-24', 'ishii07', '2008-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS456408793401', '森拓哉', 0, '+44 7512 320190', 0, '392788894033387293', 'Unit 18, Oxford Eco Centre, 919 Maddox Street, London, W1S 1PU, United Kingdom', '1998-04-21', 0, 0, 'takuya12', '2000-12-25', 'mtakuya9', '2003-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS526851337264', 'Victoria Richardson', 0, '+81 52-435-0494', 4, '206401448062016931', '1F, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-07-04', 0, 0, 'richardsonv6', '2008-06-16', 'victoric313', '2018-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS812817655027', '鐘學友', 1, '+81 70-4805-4490', 0, '020734858122043618', '5F, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-05-20', 0, 0, 'chunghokyau', '2008-04-26', 'hokyauchun', '2010-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS662073413089', 'Jack Reyes', 1, '+1 212-483-3425', 4, '333959972541507506', '122 Wooster Street Suite 12, New York, NY 10012, United States', '1995-04-21', 0, 0, 'reyesj', '2007-04-04', 'jr817', '2019-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS588071849212', '陆睿', 1, '+81 90-7296-9119', 1, '649815644114827410', '25F, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-03-30', 0, 0, 'rui803', '2008-05-29', 'rulu', '2013-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS853748564414', '雷云熙', 1, '+1 212-861-5744', 1, '806485592302342474', '732 Bank Street Apt 40, New York, NY 10014, United States', '1985-05-22', 0, 0, 'yunxilei', '2008-07-13', 'leiyunxi', '2013-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS763810301683', '薛頴思', 0, '+81 70-5739-1887', 0, '474216493808594494', '日本おおさかし東住吉区東田辺三丁目27番5号41階', '1986-06-01', 0, 0, 'wssi', '2006-01-03', 'wingsze89', '2003-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS653328081949', 'Jennifer Adams', 1, '+81 52-611-2281', 1, '768488350340646327', '日本なごやし北区楠味鋺三丁目80番3号6階', '1997-03-28', 0, 0, 'adamsj4', '2005-07-06', 'adams803', '2011-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS998663885273', '伍發', 1, '+86 174-1340-6049', 4, '674310175043590013', 'Room 26, CR Building, 356 Sanlitun Road, Chaoyang District, Beijing, China', '1997-04-18', 0, 0, 'fatng8', '2008-08-10', 'fng1', '2007-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS990920859094', '邵國明', 0, '+81 66-643-0068', 1, '934309798103643916', 'Rm. 31, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-11-24', 0, 0, 'siu1975', '2002-01-16', 'kwokmings', '2004-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS711012092686', 'Amy Graham', 0, '+81 70-4479-4642', 1, '961656655467069437', 'Rm. 19, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1992-08-29', 0, 0, 'graham2', '2013-12-17', 'graam5', '2012-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS722941115752', '井上光', 0, '+44 7415 378556', 1, '529747534262646856', 'Unit 32, Oxford Eco Centre, 100 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-10-28', 0, 0, 'ihikaru56', '2012-04-06', 'hikinoue2012', '2007-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS222063604580', 'Anita Harris', 1, '+86 755-0186-9975', 1, '222642618286270704', '中国深圳罗湖区蔡屋围深南东路759号华润大厦22室', '1996-06-03', 0, 0, 'ha8', '2006-12-13', 'aharri926', '2007-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS233655169442', 'Ricky Hamilton', 1, '+81 70-1396-5620', 4, '409455607742972726', '44F, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-08-23', 0, 0, 'rickham', '2018-07-27', 'hamilricky303', '2019-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS061940891091', 'Frederick Garza', 0, '+44 (161) 591 3051', 2, '802094623541470757', 'Unit 39, Oxford Eco Centre, 728 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-10-20', 0, 0, 'gfrede', '2003-11-02', 'garza5', '2000-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS458507922335', '蔣麗欣', 0, '+86 190-9836-7126', 4, '218747267867235111', 'No.10 building, 72 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1991-10-25', 0, 0, 'claiyan3', '2001-04-16', 'laiyanc', '2015-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS860417913641', '阮惠敏', 0, '+1 330-316-0054', 3, '685331226461345712', '362 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1987-08-23', 0, 0, 'yuen1013', '2018-01-18', 'yuen42', '2006-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS492009161527', '熊云熙', 0, '+81 70-3356-4702', 0, '637287593057385446', 'Rm. 50, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-08-07', 0, 0, 'xyunxi', '2020-11-19', 'xiongyun56', '2006-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS561519360179', 'Joanne Jones', 1, '+81 11-481-6207', 0, '886435687921344005', '49F, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-04-14', 0, 0, 'joannejon', '2002-08-01', 'jojones929', '2014-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS331241294795', '崔晓明', 1, '+81 66-539-1083', 3, '830727051746724683', '日本おおさかし平野区加美東四丁目9番1号32階', '1998-09-04', 0, 0, 'cui1105', '2019-03-30', 'cuix', '2007-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS664888975201', 'Shawn Stone', 0, '+86 21-972-8105', 1, '607947905100821817', '中国上海市徐汇区虹桥路793号18号楼', '1995-12-04', 0, 0, 'stone8', '2000-07-02', 'stone9', '2014-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS182831839410', '渡辺七海', 0, '+1 212-985-8665', 3, '332801539983852926', '342 West Houston Street 3rd Floor, New York, NY 10014, United States', '1987-05-28', 0, 0, 'nasato703', '2013-12-17', 'nanamsato', '2006-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS321267009950', '梁國榮', 0, '+81 52-182-2107', 0, '686663316158999482', '日本なごやし瑞穂区河岸町四丁目20番4号24階', '1992-11-12', 0, 0, 'leungkw', '2010-05-18', 'kwokwing720', '2009-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS353897842235', '渡辺美緒', 1, '+44 (1865) 59 3785', 1, '015745802961387305', 'Block 3, 55 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-11-04', 0, 0, 'ms7', '2005-11-29', 'sato43', '2020-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS084636114538', '原愛梨', 0, '+86 168-3237-3477', 1, '631574937095766265', 'Room 20, CR Building, 756 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-05-16', 0, 0, 'airihara', '2009-08-10', 'hara17', '2015-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS600188264934', '元惠敏', 1, '+86 10-2154-2988', 3, '803960145272011335', '中国北京市西城区西長安街642号31号楼', '1990-10-28', 0, 0, 'yuenwaiman908', '2006-05-24', 'yuenwm', '2019-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS415817149831', '何嘉伦', 0, '+86 21-286-2153', 1, '420698638106353141', 'Room 2, CR Building, 619 Jianxiang Rd, Pudong, Shanghai, China', '1999-01-29', 0, 0, 'jialhe422', '2007-02-28', 'hejialun', '2014-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS964012715059', '龙璐', 1, '+81 11-276-6301', 2, '892642091658210407', '日本札幌厚別区上野幌一条二丁目1番6号49階', '1993-12-31', 0, 0, 'longlu', '2011-04-03', 'lulong8', '2001-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS153828799569', '區家玲', 1, '+81 11-413-6470', 1, '991539717233000173', '日本札幌中央区宮の森四条六丁目1番11号29階', '1986-07-12', 0, 0, 'klau416', '2016-10-07', 'aukaling', '2011-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS626321746264', '後藤詩乃', 1, '+1 718-914-2023', 1, '731087411782684482', '729 Bergen St Apt 37, Brooklyn, NY 11217, United States', '1989-04-19', 0, 0, 'goto1115', '2021-02-25', 'gotoshino322', '2014-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS998769055177', '金秀英', 0, '+86 173-0525-0411', 2, '606061451332739743', '中国深圳罗湖区清水河一路449号17栋', '1992-01-03', 0, 0, 'xiuyingjin8', '2014-05-25', 'jx725', '2019-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS145061212202', '毛家玲', 1, '+44 5593 977044', 2, '123619240644095420', 'Unit 40, Oxford Eco Centre, 341 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-12-07', 0, 0, 'klm1944', '2005-11-30', 'klm', '2004-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS897083830836', '劉家強', 0, '+86 133-9031-3493', 1, '844921446106255830', 'Room 14, CR Building, 677 028 County Rd, Yanqing District, Beijing, China', '1994-11-10', 0, 0, 'kklau12', '2004-08-08', 'kkla1958', '2011-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS022423457256', 'William Robertson', 1, '+1 718-930-7473', 3, '490450797402626550', '425 Flatbush Ave Suite 15, Brooklyn, NY 11225, United States', '1989-04-30', 0, 0, 'william505', '2005-04-17', 'robertsonw', '2007-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS060560716898', '萬梓軒', 0, '+86 130-8143-6972', 0, '404414058990904925', '中国东莞珊瑚路833号18号楼', '1988-04-17', 0, 0, 'meth1', '2000-11-14', 'thmeng912', '2015-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS222331417919', '韩岚', 0, '+44 5966 001391', 2, '981805404399708411', 'No.17 Main building, 250 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-11-16', 0, 0, 'lanhan', '2007-11-10', 'lanh1029', '2002-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS243724579857', '上田葉月', 0, '+1 330-825-3031', 0, '657821474155892689', '129 Collier Road 3rd Floor, Akron, OH 44320, United States', '1988-01-12', 0, 0, 'ueda1024', '2011-11-10', 'uedahazuki', '2010-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS127992454908', '石田七海', 1, '+44 7524 066919', 1, '048278758634344133', 'No.10 Main building, 818 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-10-31', 0, 0, 'nanami1023', '2014-01-18', 'nanami1116', '2008-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS116022282143', '任青雲', 0, '+81 66-940-2493', 1, '275248600843358866', '日本おおさかし東住吉区東田辺三丁目27番17号32階', '1992-01-02', 0, 0, 'yamcw', '2021-06-03', 'yamcw', '2008-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS814803843248', '傅力申', 1, '+1 312-517-9702', 1, '267021791553592084', '308 North Michigan Ave Suite 40, Chicago, IL 60611, United States', '1996-08-04', 0, 0, 'fuls', '2005-02-04', 'liksun829', '2008-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS988493486425', 'Anita Dixon', 1, '+81 70-7769-5593', 2, '395219393354975259', '23-kai, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1990-02-21', 0, 0, 'anitd', '2016-11-29', 'adixon', '2006-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS887664840937', '小野詩乃', 1, '+81 90-4097-7500', 4, '113414112817983122', 'Rm. 36, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-07-22', 0, 0, 'oshino', '2020-06-27', 'onoshino', '2001-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS014477398059', '段岚', 1, '+81 70-5038-6418', 2, '227863445085383042', '日本おおさかし西成区天神ノ森二丁目1番8号1階', '1996-10-08', 0, 0, 'duanlan00', '2004-05-10', 'duanla7', '2000-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS939949994560', '顾子韬', 0, '+1 330-801-7955', 0, '832225690470607000', '79 Collier Road Suite 34, Akron, OH 44320, United States', '1990-12-21', 0, 0, 'zigu', '2010-08-28', 'zitaog6', '2016-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS610549025699', '麥學友', 1, '+44 (1865) 19 2458', 0, '367333268185552296', 'Block 50, 80 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-05-10', 0, 0, 'makhokyau819', '2000-08-16', 'mak228', '2015-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS261283762150', '山口海斗', 0, '+81 52-755-1030', 0, '928175074209891651', '日本なごやし北区清水三丁目19番16号2号室', '1988-10-14', 0, 0, 'ky5', '2007-03-27', 'yamagk', '2012-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS780437920556', '朱致远', 1, '+86 151-3064-1205', 4, '876661096654925287', '中国东莞东泰五街512号34栋', '1990-07-31', 0, 0, 'zzhiy', '2008-03-09', 'zhiyuan1117', '2002-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS672500861480', 'Alexander Hayes', 1, '+81 80-8095-8549', 1, '735416406056879640', '日本札幌厚別区上野幌一条二丁目1番6号40階', '1997-02-21', 0, 0, 'alexanderhay1026', '2011-09-02', 'alexanderh7', '2020-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS726115445177', '竹内結翔', 1, '+81 70-1976-0601', 3, '107369745957240210', '18-kai, 1-7-10 Omido, Higashiosaka, Osaka, Japan', '1986-07-04', 0, 0, 'yuito95', '2002-03-31', 'yuittakeuchi1971', '2019-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS702059156012', '杨震南', 1, '+86 28-9493-4042', 2, '894590497700850487', '中国成都市锦江区红星路三段948号1号楼', '1998-02-14', 0, 0, 'zhennany2', '2000-09-20', 'zya', '2004-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS384979161762', 'Marcus Cruz', 1, '+86 10-6880-4946', 0, '625005317798065235', '中国北京市东城区东单王府井东街520号29楼', '1997-05-22', 0, 0, 'crumarcus', '2002-08-12', 'marcr', '2018-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS048527168243', '陆璐', 1, '+86 769-428-4485', 1, '725094566861871820', '46F, 885 Dongtai 5th St, Dongguan, China', '1986-06-29', 0, 0, 'lulu622', '2021-12-19', 'lulu', '2003-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS119711623703', '莫杰宏', 1, '+44 (1865) 93 0504', 2, '766319925791462382', 'Block 48, 269 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-09-23', 0, 0, 'moj', '2017-06-26', 'jmo3', '2000-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS359271015165', '蔡慧敏', 0, '+86 153-8733-7852', 1, '627631604847689730', '中国深圳龙岗区学园一巷720号华润大厦48室', '1988-06-13', 0, 0, 'wmchoi', '2004-09-27', 'cwm', '2013-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS776727198304', '甘力申', 0, '+81 80-4545-5511', 0, '473185856961865212', '日本札幌中央区宮の森四条六丁目1番17号37号室', '1986-07-18', 0, 0, 'kliksun711', '2012-06-25', 'kam1961', '2001-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS602004634590', '邵頴璇', 0, '+81 70-0955-0125', 2, '181902026871247539', '日本おおさかし東住吉区東田辺三丁目27番8号17号室', '1990-07-13', 0, 0, 'siu928', '2018-10-05', 'swingsuen525', '2022-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS594727764435', '森田大和', 0, '+81 80-2996-3486', 0, '436136308717409953', '日本なごやし北区楠味鋺三丁目80番5号42階', '1995-02-06', 0, 0, 'yamorita79', '2000-07-02', 'ymorita', '2001-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS602028791157', 'Diane Smith', 0, '+44 7983 451116', 2, '053525319896488223', 'Flat 6, 935 Hanover Street, London, W1S 1YD, United Kingdom', '1985-01-21', 0, 0, 'smithd04', '2003-05-05', 'smd8', '2020-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS299255943285', '孟秀英', 0, '+86 21-6076-2245', 1, '739813500587011723', '中国上海市闵行区宾川路738号35号楼', '1996-11-19', 0, 0, 'meng705', '2014-10-31', 'mexiuying72', '2005-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS566143393878', '佐野結翔', 1, '+86 168-4084-8196', 2, '542077109561400705', '中国深圳福田区景田东一街433号19室', '1998-05-19', 0, 0, 'yuitosano', '2014-07-08', 'syuito626', '2001-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS573508594611', 'Samuel Johnson', 0, '+86 190-0858-2700', 3, '167681620388657042', '中国东莞珊瑚路288号华润大厦43室', '1998-05-08', 0, 0, 'samuel8', '2017-08-05', 'samueljohnson', '2009-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS457763200850', 'Bryan Green', 0, '+81 70-1563-4736', 0, '529290108100518595', '39F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-02-20', 0, 0, 'brgreen', '2007-08-26', 'bgr', '2012-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS742495917373', 'Deborah Dixon', 0, '+81 52-624-6312', 3, '455941758811610842', 'Rm. 14, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1999-01-31', 0, 0, 'deborahd94', '2013-10-29', 'dixond', '2000-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS430866385534', '蘇力申', 0, '+44 7080 611676', 1, '148056382578373127', 'Unit 29, Oxford Eco Centre, 351 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-03-17', 0, 0, 'liksso10', '2019-05-03', 'soliksun', '2018-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS230342264685', '羅惠妹', 1, '+86 10-9831-3106', 2, '139082746843052330', '中国北京市东城区东单王府井东街297号华润大厦15室', '1989-11-05', 0, 0, 'huimeilo', '2015-12-12', 'lohuimei', '2004-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS563189204706', '李發', 0, '+86 139-3735-3214', 2, '155313618918446114', 'No.40 building, 287 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-04-01', 0, 0, 'lfa9', '2013-08-17', 'lee1958', '2008-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS573781288858', '黎思妤', 0, '+81 70-9911-6703', 2, '683883523022562012', '日本ならし大和郡山市本庄町一丁目1番12号23階', '1990-03-03', 0, 0, 'szeyu98', '2006-07-12', 'laiszeyu', '2014-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS701538779659', '曾頴璇', 1, '+1 718-195-6611', 1, '224149887680081441', '253 1st Ave Apt 27, Brooklyn, NY 11220, United States', '1990-12-05', 0, 0, 'wingsuen405', '2019-05-28', 'wst', '2020-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS736329656992', '傅潤發', 1, '+44 (161) 779 7891', 2, '093185644507308288', 'Flat 30, 787 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-11-11', 0, 0, 'yunfu804', '2005-06-15', 'yunffu5', '2015-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS434180857088', '林翼', 0, '+81 80-8569-8560', 2, '506300326782236494', '31-kai, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-03-09', 0, 0, 'tsubasa1018', '2011-06-28', 'tsubasa729', '2012-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS629475692879', '彭德華', 0, '+86 755-499-9568', 0, '891870782889675788', 'Room 15, 506 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-12-14', 0, 0, 'takwahpang2008', '2016-09-12', 'pangtakwah106', '2001-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS687832158104', '韓嘉欣', 0, '+86 755-173-6816', 4, '201439938959811821', '中国深圳罗湖区田贝一路109号17室', '1986-03-10', 0, 0, 'haky', '2011-11-07', 'hanky', '2013-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS583514744296', 'Alfred Stephens', 0, '+81 11-004-2751', 1, '956371261405473594', 'Rm. 43, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-11-04', 0, 0, 'stephalfred', '2004-04-30', 'stephens9', '2015-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS610463387978', 'Anne Wright', 0, '+86 28-899-0823', 3, '661033756677183798', '中国成都市成华区玉双路6号559号华润大厦49室', '1996-06-17', 0, 0, 'annewright', '2009-06-20', 'wrighanne', '2012-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS618825846432', '工藤優奈', 0, '+81 66-328-0574', 1, '293123428769319954', '41-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-17', 0, 0, 'kudo1213', '2007-01-04', 'yunk8', '2001-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS774277885823', '市川葵', 0, '+86 145-6942-2180', 1, '324209149226998275', '中国中山紫马岭商圈中山五路87号2栋', '1997-04-19', 0, 0, 'aichikawa', '2014-07-06', 'ichikawaaoi', '2008-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS766017383727', '前田拓哉', 0, '+1 614-328-3419', 0, '237989039976786899', '825 East Cooke Road Apartment 29, Columbus, GA 43214, United States', '1993-09-07', 0, 0, 'maedatakuya', '2001-11-14', 'takmaeda', '2013-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS574040797976', '藤田光', 1, '+86 769-465-7531', 0, '771427942223582897', '中国东莞环区南街二巷721号49楼', '1994-11-29', 0, 0, 'fhikaru8', '2002-09-07', 'fujita1', '2021-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS087138762865', '宮崎光', 0, '+44 5453 910765', 1, '800115873594133912', 'Block 16, 193 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-03-13', 0, 0, 'hikarumiyazaki', '2017-05-29', 'mhi405', '2004-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS361267168871', '文朝偉', 1, '+81 90-0397-5431', 3, '529283699870337778', '40F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-12-18', 0, 0, 'macw2', '2020-01-09', 'manchiu', '2005-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS859397127907', 'Michael Kennedy', 0, '+86 185-0595-1168', 1, '870144699047700274', 'Room 46, 472 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-01-12', 0, 0, 'michael2', '2002-06-05', 'kenmich', '2009-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS999138414120', '清水愛梨', 1, '+44 (151) 225 2648', 2, '391691896068674378', 'No.40 Main building, 828 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-08-04', 0, 0, 'shimair87', '2007-10-29', 'airi6', '2016-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS145654660030', 'Ricky Foster', 1, '+81 3-5562-2431', 0, '976160971959765370', '49F, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-02-01', 0, 0, 'fricky', '2014-04-03', 'rfos10', '2018-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS378402157137', '唐安琪', 1, '+86 151-1825-6279', 0, '179942587883308083', '中国深圳福田区深南大道457号2栋', '1986-06-16', 0, 0, 'anqtan', '2002-05-10', 'tanganqi', '2018-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS538547153715', 'Allen Palmer', 1, '+86 195-6616-6932', 1, '390122537044886301', '中国成都市锦江区人民南路四段423号华润大厦17室', '1988-07-16', 0, 0, 'allpalm', '2013-08-29', 'allenpalmer', '2009-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS979331040941', '袁詩涵', 0, '+86 168-1661-4802', 0, '213669552385831838', 'Room 13, CR Building, 293 Dongtai 5th St, Dongguan, China', '1985-04-17', 0, 0, 'yuanshihan', '2005-05-13', 'yuans1957', '2013-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS114979382833', '丁云熙', 1, '+44 (116) 935 2211', 4, '012029162596369773', 'Unit 15, Oxford Eco Centre, 720 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-01-13', 0, 0, 'ding5', '2003-04-03', 'yunxi6', '2013-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS800682803759', '韦璐', 0, '+81 80-7643-5939', 0, '207308944798990485', 'Rm. 20, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-02-29', 0, 0, 'lu4', '2010-10-11', 'weilu', '2021-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS788414050589', '严睿', 1, '+1 838-481-9475', 1, '496131503335132620', '684 Central Avenue Apt 38, Albany, NY 12206, United States', '1993-07-23', 0, 0, 'yar5', '2013-05-12', 'yanrui', '2020-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS396124749074', '周裕玲', 0, '+81 3-4016-9791', 1, '702399274357715225', '26-kai, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-12-06', 0, 0, 'chyuling', '2012-06-10', 'ylchow', '2009-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS739952795849', '三浦翼', 1, '+86 755-0809-5537', 3, '644214741654498296', 'No.21 building, 620 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-05-17', 0, 0, 'miuratsubasa1985', '2002-06-27', 'miurat', '2006-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS001535098782', '和田瑛太', 1, '+86 190-6997-9677', 4, '872216912749373425', '中国北京市房山区岳琉路403号华润大厦28室', '1989-07-18', 0, 0, 'wada1980', '2011-01-14', 'eiwada', '2000-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS683384348008', 'Steven Rivera', 1, '+1 718-013-7009', 4, '213180240673186499', '314 1st Ave Apartment 2, Brooklyn, NY 11220, United States', '1995-04-20', 0, 0, 'steriver6', '2020-07-11', 'srive', '2013-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS759773454535', '黄云熙', 0, '+81 70-5679-6587', 2, '245311315849759974', '25F, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-14', 0, 0, 'yuhuang', '2005-01-08', 'huangyunxi7', '2004-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS397025796366', '邱璐', 0, '+81 52-557-2016', 3, '808137011444671342', '4-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1999-01-26', 0, 0, 'lu6', '2018-10-15', 'qiulu714', '2000-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS777652096100', 'Mary Hawkins', 0, '+81 90-8240-6521', 0, '729938726838222680', '日本おおさかし近江堂一丁目7番7号32号室', '1991-01-19', 0, 0, 'mary2', '2020-03-02', 'mhaw', '2020-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS894087431779', '太田健太', 1, '+1 212-108-4086', 2, '856577367068747852', '280 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1986-01-15', 0, 0, 'kentaota', '2005-01-24', 'ota7', '2017-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS626518629410', '高詠詩', 0, '+44 5135 806795', 3, '899355014678491017', 'No.39 Main building, 234 Regent Street, London, W1B 2LX, United Kingdom', '1994-09-05', 0, 0, 'wskao8', '2017-02-18', 'wingsze1', '2003-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS320133151842', 'Emily Moreno', 1, '+81 80-8511-2974', 0, '489019317531899808', '日本おおさかし東住吉区東田辺三丁目27番9号47階', '1998-04-24', 0, 0, 'em306', '2022-02-11', 'emo', '2001-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS797285181115', '鄺家文', 0, '+81 80-3867-8440', 2, '642103413901052910', '日本札幌厚別区上野幌一条二丁目1番20号19階', '1992-05-06', 0, 0, 'kaman8', '2012-05-18', 'kmkwong1013', '2004-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS217775477146', '上野百花', 0, '+81 80-2054-5700', 2, '044911212056464598', '日本おおさかし東住吉区東田辺三丁目27番5号42号室', '1988-04-20', 0, 0, 'momoka614', '2006-08-15', 'momueno', '2003-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS742046389106', '山崎樹', 1, '+81 80-3272-0285', 3, '579683127886936175', '28-kai, 3-9-1 Gakuenminami, Nara, Japan', '1987-06-06', 0, 0, 'ityamazaki', '2015-06-25', 'yitsuk', '2001-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS359847312634', '佐野絢斗', 1, '+86 143-6793-1819', 3, '756206896659751031', 'No.3 building, 905 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-04-20', 0, 0, 'as3', '2004-10-21', 'ayato4', '2014-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS469928562984', 'Janet Ross', 1, '+86 134-8988-5315', 2, '728661207904355150', '中国上海市闵行区宾川路351号华润大厦16室', '1990-08-25', 0, 0, 'jros', '2018-12-10', 'janetr', '2011-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS593398540063', 'Joanne Rose', 1, '+86 755-160-5540', 0, '684153993438007061', 'Room 19, 536 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-10-31', 0, 0, 'joanne601', '2005-03-01', 'rj8', '2009-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS859363845831', 'Jacob Butler', 1, '+1 718-345-0685', 3, '115315855631676582', '472 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1993-10-29', 0, 0, 'jbu1974', '2008-05-13', 'butjaco', '2011-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS314454884146', '田志遠', 0, '+86 10-0014-7891', 1, '748375854090726277', 'Room 34, CR Building, 177 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-03-03', 0, 0, 'chiyuen1', '2018-11-18', 'cytin', '2008-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS582558294253', 'Allen Grant', 0, '+86 10-2194-9038', 4, '913372346570907322', '中国北京市海淀区清河中街68号429号25号楼', '1997-08-29', 0, 0, 'granallen', '2007-06-13', 'allengra83', '2003-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS361468408141', 'Walter Grant', 0, '+81 52-670-5046', 0, '767792592315635597', 'Rm. 18, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1992-07-27', 0, 0, 'wgra10', '2021-11-19', 'gwal', '2012-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS657791964174', '洪仲賢', 0, '+81 3-1600-5667', 4, '874060371665276329', '日本東京港区東新橋一丁目5番1号2階', '1986-03-31', 0, 0, 'cyhu16', '2008-06-06', 'chungyin809', '2013-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS860569743478', 'Sean Wright', 1, '+81 90-2073-5024', 2, '123849289038162413', 'Rm. 33, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1992-11-25', 0, 0, 'wrsean', '2004-09-25', 'seanwright516', '2017-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS433545113274', '岡田健太', 1, '+81 80-0415-1971', 3, '693580704361949409', '日本東京品川区東五反田五丁目2番6号31階', '1987-09-09', 0, 0, 'okada1999', '2010-03-16', 'okadaken1998', '2020-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS528890155795', '石井湊', 1, '+44 7915 592789', 1, '206788445716155418', 'Unit 21, Oxford Eco Centre, 927 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-02-28', 0, 0, 'isminat', '2015-12-28', 'minatoishii20', '2014-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS866677311192', '高木悠人', 0, '+44 5271 564280', 1, '616225605649663095', 'Flat 23, 420 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-03-09', 0, 0, 'takagyuto9', '2017-12-07', 'takagiyuto2020', '2006-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS329460951664', '金子陸', 1, '+86 10-6797-8307', 3, '965320806601569770', 'Room 44, 826 Yueliu Rd, Fangshan District, Beijing, China', '1989-10-08', 0, 0, 'kanekriku01', '2017-10-16', 'rikukaneko402', '2019-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS408423148849', '中川葉月', 1, '+44 5261 147432', 2, '750139478259159447', 'Flat 42, 167 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-12-08', 0, 0, 'nakagawa1960', '2003-05-26', 'hn2000', '2012-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS111611742622', '苏安琪', 1, '+1 718-900-2288', 2, '229598983674697730', '484 Flatbush Ave Apt 3, Brooklyn, NY 11225, United States', '1988-11-27', 0, 0, 'anqi1969', '2001-04-22', 'anqisu50', '2012-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS655574196969', '野村湊', 1, '+86 10-443-1577', 3, '329562893103540221', '中国北京市房山区岳琉路862号5号楼', '1998-12-01', 0, 0, 'mn56', '2017-09-12', 'nminato', '2018-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS709231100610', '何秀文', 0, '+1 614-549-7379', 3, '295349418761732749', '928 Tremont Road Apartment 36, Columbus, GA 43212, United States', '1988-10-05', 0, 0, 'sauman8', '2001-04-12', 'hsauman03', '2003-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS018010026766', 'Clarence Ferguson', 1, '+1 213-106-3256', 3, '894324323923460371', '960 Alameda Street Apt 46, Los Angeles, CA 90002, United States', '1995-03-16', 0, 0, 'fergusonclare10', '2005-01-26', 'claferguson9', '2001-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS128506580343', '房天樂', 0, '+86 192-3929-1876', 3, '134986550437055959', '23F, 517 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-06-08', 0, 0, 'fongtinlok123', '2021-01-29', 'tlf417', '2018-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS563209724606', '戚曉彤', 0, '+1 718-978-4432', 1, '731512252621240487', '543 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1992-09-20', 0, 0, 'chichiutung', '2017-10-22', 'chihiutung', '2004-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS123817660458', '唐秀英', 0, '+86 760-337-9300', 0, '368617346593641435', 'Room 15, 77 Lefeng 6th Rd, Zhongshan, China', '1998-04-21', 0, 0, 'tang76', '2010-02-26', 'txiuying', '2002-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS386538850729', '方杰宏', 1, '+81 52-180-7989', 1, '075596202292293576', '3F, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-07-29', 0, 0, 'fangj', '2014-04-13', 'jiehong8', '2007-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS598062304643', 'Victoria Kennedy', 0, '+86 175-9894-0444', 1, '539016720859334812', '中国深圳龙岗区布吉镇西环路593号35室', '1989-05-25', 0, 0, 'vkennedy5', '2014-11-07', 'victoriakennedy', '2008-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS661836392870', 'April Dixon', 1, '+81 80-1658-3734', 2, '466742413356321110', '日本なごやし瑞穂区河岸町四丁目20番1号32号室', '1989-08-26', 0, 0, 'dixapril', '2019-07-05', 'dixon10', '2015-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS408616145567', '梁力申', 1, '+86 165-3087-5846', 1, '021361305873047415', '中国上海市黄浦区淮海中路8号38号楼', '1991-10-18', 0, 0, 'liksun00', '2014-05-08', 'liksun9', '2017-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS198337196727', '龚宇宁', 0, '+44 (1223) 68 9522', 3, '129269740992239784', 'Flat 41, 771 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-02-23', 0, 0, 'gonyu', '2019-09-11', 'yuning3', '2018-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS773921662491', '邵頴璇', 0, '+1 838-761-0148', 0, '857141428957630065', '846 Broadway Apartment 22, Albany, NY 12207, United States', '1986-05-05', 0, 0, 'sws', '2017-04-21', 'wingsuen704', '2019-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS918613575764', '高明', 0, '+44 7635 659724', 3, '003216944118511294', 'Unit 30, Oxford Eco Centre, 234 New Street, Birmingham, B2 4DB, United Kingdom', '1986-04-17', 0, 0, 'mingk', '2020-01-14', 'kao4', '2012-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS623752378508', '渡部架純', 1, '+86 20-874-5530', 2, '525141500665198227', 'Room 43, 442 Tianhe Road, Tianhe District, Guangzhou, China', '1990-03-22', 0, 0, 'kasumiwa516', '2021-12-07', 'kwatanabe1995', '2008-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS744498131903', '邹子异', 1, '+81 3-5326-7684', 1, '904680678287096357', '12-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-07-02', 0, 0, 'ziyzou1130', '2005-05-05', 'zoziyi', '2020-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS244026300629', '青木湊', 0, '+81 66-869-6622', 3, '085346670996357479', '日本おおさかし平野区加美東四丁目9番8号42階', '1996-10-20', 0, 0, 'aokimin58', '2000-12-06', 'aminato', '2007-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS966700461402', '程杰宏', 0, '+1 718-316-3369', 1, '942552413509130237', '814 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1991-12-27', 0, 0, 'jic2', '2005-04-08', 'jiehong6', '2002-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS747047949085', '高田蓮', 0, '+86 20-5355-8020', 3, '822997954694208666', 'No.8 building, 860 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-08-05', 0, 0, 'tre', '2002-05-28', 'rtakada', '2014-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS726030323268', 'Shirley Allen', 0, '+81 80-9923-3765', 2, '833489757760160726', 'Rm. 18, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-07-23', 0, 0, 'shirley9', '2014-09-27', 'shirley6', '2018-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS994170886208', 'Jamie Garza', 0, '+44 5569 774274', 3, '210116093960046621', 'Unit 9, Oxford Eco Centre, 430 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-04-27', 0, 0, 'gajam', '2002-08-27', 'gj1', '2008-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS347985309102', '斎藤一輝', 0, '+81 52-108-7294', 3, '260646071298012114', '日本なごやし熱田区千年二丁目5番4号50階', '1986-03-28', 0, 0, 'saito8', '2011-01-25', 'isaito', '2013-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS757334489741', '河野涼太', 0, '+86 199-7898-6078', 3, '036714341569612758', '8F, 917 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-06-26', 0, 0, 'ryota57', '2010-08-06', 'kono904', '2010-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS358052719897', '内田悠人', 0, '+1 838-233-2695', 3, '041652866329342191', '783 Lark Street Apartment 20, Albany, NY 12210, United States', '1985-10-01', 0, 0, 'uchidayu', '2010-11-28', 'yutouchid601', '2013-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS271061167811', '廖岚', 0, '+1 213-875-4133', 1, '263727453396617356', '464 S Broadway Apartment 37, Los Angeles, CA 90015, United States', '1993-10-29', 0, 0, 'liao8', '2021-07-14', 'liaolan', '2004-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS712230319556', 'Eddie Black', 0, '+86 769-078-2120', 1, '189023940488848743', '中国东莞坑美十五巷572号华润大厦37室', '1993-01-28', 0, 0, 'edblack', '2009-03-27', 'blackeddie8', '2001-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS973325052973', '松井美月', 0, '+1 718-131-5542', 2, '048314532104457185', '61 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1990-09-08', 0, 0, 'mm69', '2001-07-14', 'mitsukimatsui', '2013-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS290121394348', '韦云熙', 1, '+86 10-691-0357', 1, '852898614419144820', '中国北京市房山区岳琉路754号10栋', '1998-10-29', 0, 0, 'weiyunxi', '2003-12-19', 'weiyunx', '2001-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS259302301329', 'Julia Jordan', 1, '+81 70-8495-3326', 2, '464617567958189946', 'Rm. 32, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1987-08-06', 0, 0, 'julia1009', '2021-05-17', 'joju', '2011-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS163424605967', '宣嘉欣', 0, '+86 174-1648-4749', 3, '865816338499709127', '中国深圳罗湖区蔡屋围深南东路589号49室', '1995-01-03', 0, 0, 'hsukaryan', '2012-02-25', 'hsuanky05', '2007-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS335798939262', '佐々木花', 1, '+86 187-2474-1244', 3, '438118251603790897', 'No.9 building, 950 Tianhe Road, Tianhe District, Guangzhou, China', '1985-02-14', 0, 0, 'sasakihana', '2000-01-16', 'hans', '2005-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS204424793600', '山下陽太', 1, '+86 10-2934-6606', 0, '883272240568822870', '中国北京市海淀区清河中街68号432号20室', '1988-02-22', 0, 0, 'yamashitayot1119', '2002-10-02', 'yamashita1940', '2003-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS666267564902', 'Jack Flores', 0, '+44 7069 791486', 3, '630718662292958942', 'Unit 39, Oxford Eco Centre, 869 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-08-26', 0, 0, 'jackflores212', '2013-05-04', 'floj', '2003-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS080853953061', '黎家玲', 1, '+81 66-928-9895', 2, '789706970401323569', '50F, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-11-05', 0, 0, 'laikl', '2018-03-04', 'lai1968', '2004-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS710870788863', '黎子异', 1, '+44 5233 207330', 3, '244911136675554867', 'Unit 28, Oxford Eco Centre, 601 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1985-03-16', 0, 0, 'ziyi10', '2002-05-22', 'li4', '2000-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS147939629545', '河野悠人', 1, '+81 52-338-9651', 2, '913842439743927680', '日本なごやし北区清水三丁目19番4号3階', '1992-04-09', 0, 0, 'konoy', '2012-10-12', 'yk8', '2011-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS638579319750', '杉山舞', 1, '+44 5465 160805', 1, '551619718731978193', 'Block 6, 924 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-08-23', 0, 0, 'masu03', '2013-07-17', 'masugiyama818', '2003-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS596430626803', '中野玲奈', 0, '+81 3-0469-4918', 4, '396014201309841621', '日本東京中央区銀座三丁目12番4号14階', '1989-10-03', 0, 0, 'nakanrena1968', '2010-02-05', 'renan', '2010-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS473666698857', 'Frank Edwards', 1, '+86 10-7267-0016', 1, '350197355645218210', '28F, 794 Sanlitun Road, Chaoyang District, Beijing, China', '1989-06-22', 0, 0, 'edwards1964', '2009-10-16', 'edwarf520', '2021-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS715943898147', '張世榮', 1, '+81 70-7312-1496', 3, '444233930016818050', '日本おおさかし東住吉区東田辺三丁目27番4号41階', '1987-09-09', 0, 0, 'chesw', '2005-11-28', 'chsw1003', '2001-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS268942997054', 'Judith Jackson', 0, '+81 3-8559-5035', 3, '234263887386855885', '3F, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1988-06-22', 0, 0, 'judithjackson', '2013-08-16', 'judij', '2005-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS253679974127', '酒井桜', 0, '+86 134-5231-4366', 4, '369940818870623120', 'No.46 building, 478 Shanhu Rd, Dongguan, China', '1993-12-06', 0, 0, 'sakai528', '2009-06-13', 'sakaisakura3', '2020-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS808750820194', '太田詩乃', 0, '+1 212-241-3520', 1, '598922683246203615', '914 Bank Street Apt 28, New York, NY 10014, United States', '1997-02-03', 0, 0, 'otshino8', '2006-09-29', 'shinoot', '2019-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS804915132260', '藤原舞', 1, '+86 769-980-9087', 2, '981611023629320742', '中国东莞东泰五街236号2栋', '1996-06-19', 0, 0, 'maf81', '2000-11-17', 'mai05', '2005-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS882362312448', '吳家文', 1, '+86 755-7447-9891', 2, '893126529603238208', 'No.24 building, 45 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-04-25', 0, 0, 'nkaman', '2013-10-11', 'ngkaman', '2008-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS541434925548', '朱云熙', 1, '+86 20-6243-5041', 2, '401387039750094807', 'No.47 building, 722 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-03-11', 0, 0, 'zhyunxi2', '2020-02-02', 'yunxizhu', '2007-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS480533306732', 'Alice Castillo', 0, '+81 11-772-5565', 1, '546444060094420958', '日本札幌豊平区豊平三条十三丁目3番5号27号室', '1997-10-03', 0, 0, 'castalice', '2007-04-08', 'castialice', '2010-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS358657933353', '上田美月', 0, '+86 172-8875-8649', 2, '612311648045082209', '中国深圳罗湖区田贝一路157号26楼', '1997-11-27', 0, 0, 'mitsukiueda2', '2004-05-25', 'mueda', '2019-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS604029572126', '苗慧嫻', 0, '+1 213-288-4008', 4, '554287145813297572', '314 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-11-24', 0, 0, 'mwaihan', '2013-08-05', 'whmiu', '2000-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS695727323501', '田家玲', 0, '+81 90-0755-1890', 3, '919703721346218794', '44-kai, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-07-24', 0, 0, 'tinkaling', '2007-12-07', 'kalingtin', '2021-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS352698959481', '苑梓晴', 0, '+1 213-321-6242', 3, '602429206629013725', '254 Wall Street Apartment 7, Los Angeles, CA 90003, United States', '1985-07-16', 0, 0, 'tcyuen', '2021-01-30', 'ytszching', '2000-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS060213662714', '伊藤拓哉', 0, '+81 80-0516-1308', 3, '466853689409243726', '日本なごやし守山区瀬古東二丁目171番13号39階', '1998-02-20', 0, 0, 'takuyai1201', '2004-06-20', 'itot', '2012-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS569995749310', '武田湊', 0, '+81 70-0852-1191', 2, '564106564784244155', '19-kai, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-11-03', 0, 0, 'takedmin', '2004-12-28', 'minatot', '2016-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS409925397838', '毛嘉欣', 1, '+81 90-3599-2003', 2, '553283131411453464', '日本ならし大和郡山市本庄町一丁目1番1号43号室', '1998-06-08', 0, 0, 'kymo', '2010-04-10', 'mokaryan7', '2005-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS264457248482', '邱惠敏', 0, '+1 330-834-1147', 3, '700448951949751910', '692 Ridgewood Road Suite 9, Akron, OH 44321, United States', '1992-11-08', 0, 0, 'yau72', '2016-08-25', 'yau1958', '2011-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS708316264910', 'Debra Dunn', 0, '+81 11-009-4052', 3, '322512553124742174', '23F, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-02-26', 0, 0, 'debradunn', '2008-02-25', 'debradun7', '2018-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS440355201968', '周致远', 1, '+81 66-940-8648', 3, '962360276672758008', '1F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-07-12', 0, 0, 'zhiyuan1209', '2013-12-25', 'zz74', '2009-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS683912545120', 'Jennifer Allen', 1, '+1 330-769-4619', 2, '124241935329049884', '632 Riverview Road Apartment 40, Akron, OH 44313, United States', '1997-11-07', 0, 0, 'allenjennifer3', '2020-10-17', 'ajennifer', '2002-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS810984491656', '曾岚', 1, '+86 163-2805-4982', 2, '658397157150850004', '中国深圳罗湖区蔡屋围深南东路925号45号楼', '1995-10-11', 0, 0, 'zlan', '2021-03-15', 'zel', '2001-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS021574940601', '石川花', 1, '+44 7857 302475', 2, '071985174712378667', 'No.46 Main building, 560 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-02-16', 0, 0, 'ihana', '2003-09-15', 'hishikawa03', '2015-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS546511237053', '加藤架純', 1, '+81 3-7684-2958', 2, '833611862945593678', '1-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-31', 0, 0, 'kato70', '2017-01-02', 'kato20', '2001-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS448435395889', '向璐', 1, '+81 3-4394-4085', 3, '731262139193335807', '日本東京品川区東五反田五丁目2番1号24階', '1999-03-04', 0, 0, 'xlu', '2014-04-15', 'xilu', '2003-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS013332810398', '黃家文', 0, '+86 143-5595-6743', 1, '550446314170972940', 'Room 4, CR Building, 578 Lefeng 6th Rd, Zhongshan, China', '1991-02-27', 0, 0, 'wkama', '2021-08-30', 'wong213', '2021-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS512051786306', '蘇杰倫', 1, '+1 312-751-3172', 2, '018990202937402786', '881 Rush Street Apartment 25, Chicago, IL 60611, United States', '1994-12-22', 0, 0, 'socl57', '2004-10-24', 'cls', '2016-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS518203416267', 'Jacqueline Powell', 1, '+44 (1223) 49 6150', 2, '376477318126894562', 'No.47 Main building, 531 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-05-24', 0, 0, 'jacqpowel78', '2003-08-09', 'jacqueline4', '2009-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS329635316026', '藤原陽太', 1, '+81 3-8263-3821', 3, '236722167743028228', '日本東京中央区銀座三丁目12番6号31号室', '1991-11-30', 0, 0, 'fujiwara05', '2018-07-26', 'fujiwyota', '2021-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS957551440053', 'Chris Hayes', 1, '+81 11-233-3182', 3, '636653520360837668', '30-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-08-25', 0, 0, 'hchris', '2002-09-15', 'hayeschris', '2000-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS290772132339', 'Kevin Perez', 0, '+81 70-9596-1360', 1, '275986436841349537', '42-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1998-11-19', 0, 0, 'perez1209', '2014-10-27', 'kevinperez7', '2014-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS175692101990', '向家輝', 0, '+86 10-580-3304', 3, '404427448720148514', 'Room 33, CR Building, 36 East Wangfujing Street, Dongcheng District , Beijing, China', '1998-05-25', 0, 0, 'hkafai', '2021-02-20', 'kafaiheu', '2018-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS087175289686', '丸山蒼士', 1, '+44 5972 066239', 0, '379128044998993653', 'Unit 43, Oxford Eco Centre, 128 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-05-20', 0, 0, 'aoshimaruyama', '2009-01-22', 'maruyamaa', '2018-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS549434381422', '廖淑怡', 0, '+86 176-5042-8297', 3, '273233568838888988', 'Room 18, CR Building, 169 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-11-07', 0, 0, 'sukyeeliao', '2021-02-03', 'lisukyee', '2011-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS006848358378', 'Michelle Coleman', 1, '+86 196-2748-9667', 1, '846335382963444373', 'Room 33, CR Building, 866 Binchuan Rd, Minhang District, Shanghai, China', '1998-08-26', 0, 0, 'colemmichelle4', '2007-08-26', 'com3', '2015-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS091856487574', 'Sara West', 0, '+44 7357 722941', 1, '314496052513678541', 'Block 10, 421 Maddox Street, London, W1S 1PU, United Kingdom', '1987-05-08', 0, 0, 'sawest', '2008-10-08', 'sarw', '2015-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS755455332450', '橋本美緒', 0, '+44 (116) 242 5501', 2, '696608659091874603', 'No.18 Main building, 821 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1985-03-11', 0, 0, 'hasm', '2007-07-30', 'mihashimoto', '2013-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS572888673156', '菅原結翔', 1, '+44 (1865) 14 0812', 4, '963682790385479849', 'Block 14, 193 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-07-22', 0, 0, 'syuito', '2017-09-24', 'sugawara116', '2002-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS118244330531', '譚淑怡', 1, '+86 145-5954-8855', 2, '072986424347690797', '中国成都市成华区双庆路113号23室', '1989-11-03', 0, 0, 'sukyeet', '2019-06-13', 'sukyee925', '2000-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS606292015747', '严岚', 1, '+86 21-9517-5449', 3, '265280688970279287', '中国上海市徐汇区虹桥路710号50号楼', '1990-10-05', 0, 0, 'yalan416', '2007-05-04', 'yanl', '2004-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS725568696294', '村上一輝', 0, '+86 20-738-4580', 2, '088471858301060132', 'No.23 building, 330 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-15', 0, 0, 'murakikki', '2008-09-30', 'ikkimu', '2014-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS262261632132', 'Lisa Reynolds', 0, '+81 11-484-3848', 4, '510583010847694151', '日本札幌清田区真栄四条五丁目19番20号11階', '1990-07-28', 0, 0, 'reynl05', '2012-09-24', 'lisar', '2008-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS458981125336', '市川結翔', 0, '+1 718-199-0678', 3, '408815986589256029', '319 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-02-03', 0, 0, 'ichikawayuito', '2010-06-29', 'ichy', '2007-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS240757072771', '呂國明', 1, '+86 760-2095-8291', 3, '609022781394125757', '中国中山紫马岭商圈中山五路155号24室', '1986-12-28', 0, 0, 'luikm', '2010-09-12', 'kwokminglui', '2011-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS027899323485', 'Crystal Warren', 0, '+86 760-5466-3271', 2, '346534432655019750', '中国中山京华商圈华夏街313号6室', '1992-11-12', 0, 0, 'crystal10', '2003-07-22', 'crystalw4', '2000-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS335854190742', '王安琪', 1, '+44 5845 151086', 3, '345983524530342974', 'Flat 1, 798 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-02-13', 0, 0, 'wanqi', '2008-12-15', 'anqi2002', '2018-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS643326389321', '橋本舞', 0, '+1 330-362-7302', 1, '996108585017923702', '473 Fern Street Suite 36, Akron, OH 44307, United States', '1992-09-19', 0, 0, 'maihashimoto1104', '2000-03-17', 'hasm83', '2004-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS400889910550', '劉富城', 1, '+44 (151) 000 2453', 2, '150518220909725795', 'Block 43, 810 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-08-21', 0, 0, 'lau96', '2011-05-27', 'lau10', '2018-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS477900480515', 'Gary Morales', 0, '+86 191-3496-1516', 0, '204005813795493830', '中国成都市成华区玉双路6号609号华润大厦48室', '1996-05-19', 0, 0, 'moralesg', '2001-12-02', 'morales49', '2013-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS610719425367', '阿部美月', 0, '+86 186-2709-5616', 2, '959647376433652273', 'No.20 building, 857 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-11-04', 0, 0, 'abemi', '2008-08-20', 'abemits4', '2021-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS413804855058', '贺致远', 1, '+86 194-3422-5860', 4, '873699266373361274', '中国中山天河区大信商圈大信南路655号华润大厦43室', '1998-12-07', 0, 0, 'hzhiyuan1208', '2020-04-22', 'zhiyuanhe2', '2015-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS412565614155', '高田玲奈', 0, '+81 52-375-1633', 0, '383971220082631111', '日本なごやし熱田区千年二丁目5番12号49階', '1988-09-17', 0, 0, 'rentakada', '2016-03-20', 'takadarena', '2008-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS805144863336', 'Katherine Vasquez', 0, '+86 755-179-5308', 2, '181426305326367498', 'Room 31, 503 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-04-12', 0, 0, 'katherine9', '2020-03-22', 'katherine9', '2018-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS716461325199', '叶璐', 0, '+1 838-948-7300', 2, '361962984054366955', '320 Central Avenue Suite 30, Albany, NY 12206, United States', '1989-01-04', 0, 0, 'luye', '2020-08-31', 'ye7', '2006-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS736080358108', '陶安娜', 1, '+81 80-7888-1820', 2, '036424068480115341', '日本札幌白石区菊水三条五丁目2番7号40階', '1995-10-14', 0, 0, 'tao4', '2015-11-17', 'onnata', '2000-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS356379905773', 'Glenn Reyes', 0, '+81 74-864-8186', 1, '546930862556934078', '14F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-07-09', 0, 0, 'reyesglenn425', '2019-01-27', 'gr11', '2021-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS134430318288', '徐杰宏', 0, '+86 157-7622-4566', 3, '943956209986942953', '28F, 177 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-06-12', 0, 0, 'jxu4', '2004-08-04', 'xj3', '2004-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS065270555725', '洪國賢', 0, '+1 330-082-1211', 2, '394319345337853432', '850 Fern Street Suite 16, Akron, OH 44307, United States', '1997-02-15', 0, 0, 'kwokyin7', '2002-07-13', 'hungky', '2009-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS220848105683', '汪榮發', 1, '+81 52-759-8988', 1, '356804332539098063', '日本なごやし北区清水三丁目19番4号24階', '1995-06-18', 0, 0, 'wongwingfat', '2012-11-05', 'wfwon', '2019-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS620475066379', '韩璐', 0, '+86 20-4081-1618', 2, '209938372502589235', '中国广州市白云区机场路棠苑街五巷934号33楼', '1991-05-08', 0, 0, 'luhan', '2009-06-01', 'lhan', '2016-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS541191066987', '丸山花', 1, '+81 3-9311-2944', 1, '905887127937238153', '45-kai, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-09', 0, 0, 'maruyamahana', '2014-02-13', 'maruyama99', '2005-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS414075775221', '小野大地', 0, '+44 (151) 865 0935', 4, '106751527380612372', 'Flat 8, 867 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-09', 0, 0, 'ondaichi', '2015-09-16', 'odaic6', '2014-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS100509527498', '池田涼太', 0, '+86 135-9797-5650', 2, '713992389460459272', '中国上海市浦东新区橄榄路816号28栋', '1986-10-23', 0, 0, 'ryotaikeda80', '2016-05-18', 'iker54', '2004-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS572919260632', '阎震南', 0, '+86 130-8445-4943', 1, '767949474819346813', 'No.40 building, 914 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-01-04', 0, 0, 'zhennany9', '2011-10-11', 'zheya', '2000-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS115327700840', '佐藤和真', 0, '+81 90-6320-7570', 3, '239440942328224142', '25-kai, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-08-07', 0, 0, 'kazumas5', '2022-02-26', 'kazumasa1961', '2010-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS595566794758', '駱天樂', 0, '+81 80-3908-8260', 1, '062561334251650447', '日本おおさかし平野区加美東四丁目9番14号19階', '1998-02-16', 0, 0, 'ltinl', '2016-03-06', 'loktl123', '2018-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS220046394804', 'Elizabeth Taylor', 0, '+44 5050 429083', 1, '479177208475312404', 'Unit 39, Oxford Eco Centre, 291 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-02-27', 0, 0, 'eltaylor', '2002-05-18', 'taylorelizabeth', '2002-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS303115229469', 'Edward Smith', 1, '+81 90-3566-5208', 1, '438094456324611401', '日本おおさかし平野区加美東四丁目9番10号1階', '1992-06-04', 0, 0, 'edwars', '2016-11-14', 'esmith', '2004-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS284716253184', '黎致远', 1, '+44 (121) 108 5269', 0, '865034253545595112', 'Unit 46, Oxford Eco Centre, 2 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-05-15', 0, 0, 'zhli', '2016-11-02', 'lizhiyuan7', '2006-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS017314901885', 'Ricky Foster', 0, '+1 213-481-4103', 1, '832507857973285899', '195 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-07-26', 0, 0, 'foster9', '2003-08-07', 'foster820', '2003-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS910089881832', 'Ryan Bailey', 0, '+1 838-512-0646', 4, '985592568870640669', '786 Lark Street 3rd Floor, Albany, NY 12210, United States', '1997-09-19', 0, 0, 'baileryan', '2010-12-22', 'baileyry', '2004-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS165433668890', 'Ernest Warren', 0, '+81 80-2727-0463', 0, '487601466012855623', 'Rm. 31, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-12-30', 0, 0, 'waern1997', '2007-11-24', 'warren3', '2020-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS409327065409', 'Kimberly Watson', 1, '+81 80-2746-6646', 2, '855629283951335825', '33F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-08-09', 0, 0, 'kimberlywatso8', '2017-11-25', 'kimberlywatson1', '2012-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS947059948333', '萬頴思', 0, '+86 157-4495-4296', 3, '587775911682978054', 'Room 9, CR Building, 252 Dongtai 5th St, Dongguan, China', '1993-05-29', 0, 0, 'mews', '2004-02-07', 'mwingsze', '2013-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS161930938110', '今井蒼士', 1, '+44 (116) 617 7110', 2, '966642480159452347', 'Flat 2, 16 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-07-04', 0, 0, 'imaiaoshi1212', '2011-04-08', 'aoi', '2008-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS714598613682', '河野悠人', 1, '+81 3-5343-4347', 3, '596108927706271899', 'Rm. 32, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-06-01', 0, 0, 'yutk', '2016-08-11', 'konoy', '2007-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS028080010260', 'Jonathan Gardner', 0, '+86 198-7104-8080', 3, '453829029050456964', '中国北京市西城区复兴门内大街384号31号楼', '1995-11-15', 0, 0, 'jonathangar', '2018-08-16', 'jonathangardner', '2005-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS594721569405', '藤原七海', 0, '+44 7762 993009', 2, '953490885904367903', 'Flat 14, 546 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-05-02', 0, 0, 'nfuj46', '2017-01-11', 'fujnanami', '2021-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS951082761893', '沈云熙', 1, '+1 838-392-9743', 3, '867504362153939517', '473 Central Avenue Suite 20, Albany, NY 12205, United States', '1996-07-20', 0, 0, 'shenyunx10', '2018-12-07', 'yunxis131', '2007-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS561270482944', 'Janet Wilson', 1, '+44 7296 679834', 2, '346441572397295416', 'Flat 20, 1 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-07-25', 0, 0, 'janetwilson', '2020-05-16', 'janetwils', '2012-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS537281340463', '宮本陽菜', 1, '+44 (1223) 39 5687', 0, '332923268030352275', 'Flat 9, 827 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-09-06', 0, 0, 'miyahi2', '2015-04-27', 'miyamoto2', '2004-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS906334778631', '中森悠人', 1, '+44 (20) 3082 9625', 2, '889415856462384053', 'No.45 Main building, 424 Regent Street, London, W1B 2LX, United Kingdom', '1994-04-24', 0, 0, 'yutonakamori', '2000-06-21', 'ynakamori', '2019-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS466709732715', '石田聖子', 0, '+86 28-8253-7773', 3, '458772645473948120', 'No.35 building, No. 612, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-12-26', 0, 0, 'seikoish1', '2004-08-27', 'ishidasei516', '2016-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS746287688472', '藤原樹', 1, '+44 (116) 172 4923', 2, '449293847255337456', 'No.6 Main building, 831 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-06-28', 0, 0, 'fujiwara4', '2013-10-16', 'fi506', '2005-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS984181255235', 'Jacqueline Stone', 0, '+1 718-985-0443', 0, '794476978647671868', '790 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1987-01-22', 0, 0, 'jacquelinesto42', '2016-04-03', 'jacqust', '2000-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS550717509182', '石川蒼士', 0, '+81 66-312-9411', 3, '865186765467279960', '27F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-01-11', 0, 0, 'ishikawaaosh', '2003-07-09', 'aoshiishikawa', '2019-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS975648118644', '毛麗欣', 1, '+1 330-918-2958', 3, '901218885804875081', '331 West Market Street Suite 6, Akron, OH 44333, United States', '1994-09-27', 0, 0, 'laiyan5', '2017-09-17', 'moly', '2021-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS369070677208', '湯家強', 0, '+44 (121) 737 5137', 4, '341730964894960638', 'Unit 47, Oxford Eco Centre, 251 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-05-01', 0, 0, 'kktong93', '2011-05-22', 'tonka52', '2006-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS001695798858', 'Debbie Butler', 0, '+1 718-428-4567', 2, '664335475464479658', '762 Flatbush Ave Suite 8, Brooklyn, NY 11225, United States', '1989-03-15', 0, 0, 'debbiebutl', '2002-10-01', 'butlerdebbie97', '2016-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS025123711081', '钱云熙', 0, '+86 162-2999-4054', 1, '616784530068224687', 'No.49 building, 269 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-03-23', 0, 0, 'qianyunxi1', '2014-09-28', 'qianyunxi', '2004-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS511525968951', 'Danielle Nguyen', 1, '+81 66-992-8390', 3, '051680771527045131', '日本おおさかし東住吉区東田辺三丁目27番13号45号室', '1989-06-20', 0, 0, 'nguyen84', '2001-01-20', 'daniellenguyen', '2011-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS829923876233', 'Peter Spencer', 0, '+86 755-804-1420', 3, '361419481261373915', 'No.20 building, 63 Shennan Ave, Futian District, Shenzhen, China', '1985-09-01', 0, 0, 'speter', '2014-09-03', 'spenpete', '2014-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS191878797951', '宋睿', 0, '+86 183-5397-7055', 3, '656514031621924568', 'No.28 building, 917 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-12-29', 0, 0, 'sonrui50', '2003-10-01', 'rusong', '2010-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS770412542361', '林大和', 1, '+81 90-6740-4344', 0, '881314779968342178', '日本札幌中央区宮の森四条六丁目1番13号1階', '1989-07-16', 0, 0, 'yamahayashi', '2014-07-05', 'hayashiyamato6', '2010-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS777134131218', 'Louis Rivera', 0, '+86 187-0646-1229', 0, '948366941025500536', '中国北京市延庆区028县道184号11楼', '1988-04-09', 0, 0, 'rl209', '2004-06-12', 'louis319', '2014-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS723209738587', '石井光莉', 1, '+44 7737 286280', 1, '750597875898313714', 'Flat 8, 769 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1991-04-03', 0, 0, 'ishhik', '2002-05-09', 'ishihik99', '2001-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS665443659427', '崔子异', 1, '+81 52-389-9261', 1, '041113189371711707', '日本なごやし熱田区千年二丁目5番7号28階', '1989-06-12', 0, 0, 'ziyicu', '2009-04-25', 'cziyi', '2004-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS100436028493', '戚頴璇', 1, '+81 90-0923-5949', 0, '029651644174884108', 'Rm. 11, 3-9-9 Gakuenminami, Nara, Japan', '1991-05-22', 0, 0, 'chicws', '2015-09-01', 'wingsuenchic', '2016-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS184278915237', 'Willie Daniels', 1, '+44 7993 851184', 3, '412774243742792460', 'Block 19, 928 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-10-23', 0, 0, 'willidaniels', '2006-07-22', 'wdaniels', '2006-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS067679287223', 'Jamie King', 0, '+81 70-1926-4438', 2, '647205523056109178', '41F, 13-3-1 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-02-11', 0, 0, 'king83', '2011-11-05', 'kingj214', '2006-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS241586669899', 'Susan Dunn', 1, '+1 718-687-3919', 3, '994255723539460163', '774 1st Ave Suite 49, Brooklyn, NY 11220, United States', '1993-08-20', 0, 0, 'susandunn', '2003-09-15', 'dunns1956', '2005-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS303393782196', '容祖兒', 1, '+86 138-2343-1128', 1, '382495866656700637', 'No.23 building, 446 Yueliu Rd, Fangshan District, Beijing, China', '1990-09-03', 0, 0, 'yungch', '2003-07-27', 'ycy', '2005-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS905074947697', '林惠敏', 0, '+86 21-297-0670', 2, '326360590011029512', 'Room 33, CR Building, 439 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-08-23', 0, 0, 'lamwm', '2005-01-12', 'lawm', '2020-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS103549664739', 'Stephen Perry', 1, '+81 90-8199-0645', 2, '601772189030147468', '日本おおさかし西成区出城一丁目1番15号42号室', '1986-04-24', 0, 0, 'perrste', '2014-01-08', 'perry1958', '2014-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS337584459503', 'Debbie Wright', 0, '+44 (161) 217 2971', 1, '560265469704237491', 'Block 8, 13 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-05-31', 0, 0, 'debwri', '2020-05-20', 'debbie8', '2000-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS391457769358', '杨宇宁', 1, '+81 52-240-0169', 4, '733017119224586357', '日本なごやし守山区瀬古東二丁目171番14号22階', '1986-10-29', 0, 0, 'yyang', '2018-02-27', 'yangyuning', '2008-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS664322274204', '松本優奈', 0, '+1 718-868-1690', 1, '721460185586847572', '936 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1997-11-03', 0, 0, 'yunam', '2020-05-11', 'my713', '2016-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS984239507426', '姜嘉伦', 1, '+81 11-954-8222', 2, '873237258264319793', '4F, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-05-09', 0, 0, 'jialun10', '2008-02-14', 'jiajiang', '2019-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS218901017780', 'Bonnie Meyer', 0, '+86 134-1578-8359', 2, '822776188989043210', '中国成都市成华区二仙桥东三路899号37楼', '1998-10-22', 0, 0, 'meyerb8', '2007-10-13', 'bonnieme', '2020-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS683010249167', '和田大輔', 0, '+44 (1223) 92 5024', 0, '399483056008240205', 'No.4 Main building, 945 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-11-03', 0, 0, 'daisw1958', '2000-10-21', 'daisuke59', '2000-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS740234658941', '董安琪', 0, '+1 330-091-3287', 0, '347735916564632095', '32 Ridgewood Road Suite 3, Akron, OH 44321, United States', '1991-04-10', 0, 0, 'adong731', '2003-11-23', 'anqid', '2014-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS246442090174', 'Ralph Murray', 1, '+1 213-553-5998', 3, '404013211137392870', '490 Wall Street Apt 16, Los Angeles, CA 90003, United States', '1993-06-10', 0, 0, 'murrayralph', '2007-05-30', 'ralphmurray', '2009-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS306070387320', 'Christopher West', 0, '+1 718-140-0341', 2, '907085057040023946', '810 Flatbush Ave Suite 15, Brooklyn, NY 11225, United States', '1996-12-03', 0, 0, 'westchris', '2004-06-10', 'christopher1026', '2018-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS566791438683', '胡晓明', 1, '+44 (20) 3293 0194', 0, '936289459653276760', 'Block 43, 942 Regent Street, London, W1B 2LX, United Kingdom', '1989-12-28', 0, 0, 'xiaominghu00', '2007-07-14', 'xiaoming68', '2015-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS237061002171', '山田光', 0, '+86 10-4936-7899', 3, '603499443263911376', 'No.27 building, 694 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-08-23', 0, 0, 'yhikar2', '2005-11-24', 'yhika', '2003-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS040296138159', '譚慧敏', 0, '+86 28-3023-2594', 2, '431912080005808181', 'No.10 building, No.508, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-09-14', 0, 0, 'waiman1024', '2005-06-07', 'waimantam', '2011-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS136661936916', 'Eugene Harrison', 0, '+81 66-266-9635', 2, '419421645758998099', 'Rm. 24, 1-7-1 Omido, Higashiosaka, Osaka, Japan', '1986-05-17', 0, 0, 'harrison5', '2021-08-17', 'harrisoneu8', '2004-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS195210974152', '千葉聖子', 1, '+1 213-400-4767', 0, '222069456600438071', '94 Grape Street Suite 1, Los Angeles, CA 90002, United States', '1993-05-30', 0, 0, 'chibas2012', '2018-12-07', 'cseiko', '2017-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS806290130833', '鄧學友', 0, '+1 838-004-5176', 0, '839849318153433159', '444 Lark Street Apt 35, Albany, NY 12210, United States', '1997-01-23', 0, 0, 'tanghokya2', '2002-11-19', 'tanghokya', '2011-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS002814023444', '高木美緒', 0, '+1 212-686-1349', 3, '199567473012895708', '511 Fifth Avenue Suite 24, New York, NY 10017, United States', '1987-12-22', 0, 0, 'takagimi46', '2010-08-20', 'miot620', '2000-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS510715165648', '遠藤凛', 1, '+44 (121) 197 7462', 1, '456818982463860558', 'Block 27, 541 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-04-09', 0, 0, 'rinendo209', '2011-10-11', 'endorin', '2020-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS376028287954', '麥淑怡', 1, '+81 52-368-8395', 4, '781083920848048927', 'Rm. 35, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-01-20', 0, 0, 'mak1985', '2011-06-03', 'sukyee2020', '2017-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS921050330532', '苗裕玲', 0, '+86 10-9839-6416', 2, '561583723803430318', '中国北京市朝阳区三里屯路946号38楼', '1985-01-27', 0, 0, 'myl', '2005-04-12', 'yumiu', '2002-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS829152843619', '譚潤發', 1, '+86 21-0653-4745', 0, '791194391754744614', '中国上海市浦东新区橄榄路733号5楼', '1985-05-25', 0, 0, 'tyf1121', '2004-02-29', 'tamyunfat', '2008-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS434344193870', '田云熙', 0, '+44 (116) 286 1678', 2, '845177724959004113', 'Flat 23, 558 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-07-06', 0, 0, 'yunxitian5', '2013-01-30', 'yunxitian', '2015-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS242320157635', '中山愛梨', 0, '+86 130-0147-8991', 4, '585590122168695937', '中国北京市海淀区清河中街68号671号14室', '1997-09-23', 0, 0, 'nakayairi', '2020-03-25', 'airinakay', '2005-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS666150752364', '馬霆鋒', 0, '+86 10-6239-5466', 2, '537523395257010644', '中国北京市朝阳区三里屯路735号华润大厦30室', '1994-09-12', 0, 0, 'tfma', '2008-03-10', 'ma7', '2015-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS191699952054', 'Virginia Guzman', 1, '+81 90-7882-0277', 0, '517713797592155771', '23-kai, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-09-11', 0, 0, 'guzmanvi', '2012-01-25', 'guzmanvirginia3', '2011-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS314338489791', '安藤絢斗', 1, '+44 (151) 144 1264', 0, '487117040678799634', 'No.5 Main building, 764 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-09-29', 0, 0, 'anda', '2011-09-04', 'ayatoando4', '2018-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS478047135758', '黎慧敏', 1, '+81 90-9731-7578', 2, '347091757833558325', '24F, 3-9-17 Gakuenminami, Nara, Japan', '1998-06-30', 0, 0, 'wml4', '2004-12-28', 'waimanlai804', '2005-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS405550615211', '曾安琪', 0, '+86 177-1484-0625', 2, '361281791154264519', '中国成都市成华区双庆路77号华润大厦8室', '1995-06-03', 0, 0, 'zenganqi6', '2008-05-21', 'zenanqi', '2019-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS806367362001', '邓致远', 1, '+86 130-1087-2075', 1, '344944484850154140', '中国深圳罗湖区蔡屋围深南东路454号3室', '1996-10-02', 0, 0, 'zhiyuan1017', '2013-05-23', 'zhiyudeng', '2006-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS121523491801', '木村美月', 1, '+44 (151) 543 9734', 3, '692196631652314322', 'No.32 Main building, 170 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1989-01-20', 0, 0, 'kimuramitsuki', '2003-03-27', 'kimurami', '2020-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS068494553847', 'Eleanor Henry', 1, '+81 70-9132-4092', 3, '272041734947850290', 'Rm. 23, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-03-28', 0, 0, 'eleanorhenry', '2002-05-16', 'henryel', '2002-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS452592803289', '董詩涵', 1, '+86 186-6540-5846', 2, '402357375699746765', 'No.27 building, 474 Shennan Ave, Futian District, Shenzhen, China', '1985-08-06', 0, 0, 'shdong1957', '2009-01-06', 'dons902', '2010-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS455499985917', '常睿', 0, '+44 (1865) 63 3137', 4, '717398871491447397', 'Block 5, 121 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-11-17', 0, 0, 'charui', '2014-10-06', 'ruicha6', '2012-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS668099591623', '上田大地', 0, '+86 755-4229-2759', 2, '540260133652498105', '中国深圳龙岗区学园一巷551号华润大厦45室', '1997-11-05', 0, 0, 'daichiueda', '2012-04-05', 'ueda229', '2003-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS225870572020', '木村一輝', 1, '+86 142-9204-0490', 2, '426543160023484649', '中国东莞珊瑚路834号华润大厦33室', '1992-07-07', 0, 0, 'ikkikimura3', '2014-09-23', 'kimurikk', '2016-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS885025135460', 'Christopher Vargas', 0, '+86 176-5898-6684', 4, '368415328155773612', '中国广州市天河区天河路119号华润大厦45室', '1998-11-11', 0, 0, 'vargasch', '2018-01-17', 'vchristopher', '2017-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS036819083089', '佘朝偉', 0, '+1 213-742-2605', 2, '984571598750760039', '289 Figueroa Street Apt 43, Los Angeles, CA 90037, United States', '1988-05-28', 0, 0, 'shcw701', '2013-04-04', 'shchiuwai', '2005-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS358248258064', 'Howard Mendez', 1, '+44 (20) 7662 4416', 3, '772651511053469747', 'Unit 8, Oxford Eco Centre, 724 Pollen Street, London, W1S 1NG, United Kingdom', '1988-11-20', 0, 0, 'mendehowa2', '2017-03-27', 'mh72', '2006-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS377632299262', '平野悠人', 1, '+81 70-6913-3893', 1, '527253788856090380', '日本東京品川区東五反田五丁目2番7号27階', '1992-09-20', 0, 0, 'yhir', '2014-09-20', 'yutoh', '2012-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS340050736896', '渡辺玲奈', 0, '+86 155-4303-7718', 3, '267550611471427191', '中国成都市成华区双庆路552号2楼', '1990-03-07', 0, 0, 'srena622', '2005-01-17', 'sato95', '2017-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS865888496053', 'Jerry Rice', 0, '+44 5092 099396', 3, '232550855840560264', 'Flat 46, 61 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-08-19', 0, 0, 'rijerry5', '2019-01-17', 'jerice', '2021-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS523751526368', '伍頴思', 1, '+1 330-269-1511', 1, '449911715666694230', '905 Fern Street Apartment 3, Akron, OH 44307, United States', '1987-11-23', 0, 0, 'wingsze57', '2011-02-05', 'wingszeng', '2009-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS565175324338', '森陸', 1, '+44 (1865) 59 2926', 1, '664178049051865744', 'No.31 Main building, 176 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-03-27', 0, 0, 'moririk', '2019-03-26', 'rikumori5', '2011-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS269355041267', '成小慧', 1, '+81 52-870-7523', 3, '043354543098488011', '31F, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1988-06-22', 0, 0, 'shinsw79', '2004-04-23', 'shingsiuwa42', '2001-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS390084048328', '龙宇宁', 0, '+86 28-672-2323', 1, '242135504182165405', '6F, 688 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-05-07', 0, 0, 'lonyuning', '2019-11-28', 'yuning1', '2006-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS872997776544', 'Stanley Silva', 1, '+81 70-5115-5131', 4, '621939038501211254', '日本東京中央区銀座三丁目12番7号18階', '1986-07-16', 0, 0, 'stanleysilva1951', '2019-11-26', 'stansilva', '2012-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS321559502029', '高詩涵', 0, '+44 (151) 447 7409', 1, '935838905001613335', 'Unit 21, Oxford Eco Centre, 972 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1987-03-20', 0, 0, 'gaoshiha8', '2012-10-28', 'sga603', '2003-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS233317404369', '雷裕玲', 1, '+86 199-2306-5229', 3, '542992826214814664', '中国北京市西城区西長安街371号2室', '1987-11-11', 0, 0, 'loyuling', '2006-12-19', 'yuling05', '2000-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS347828600425', '佐野紗良', 0, '+44 (1223) 83 0171', 3, '262415470997088874', 'Unit 37, Oxford Eco Centre, 218 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-12-27', 0, 0, 'sara127', '2003-09-17', 'sara52', '2001-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS858248822630', 'Annie Crawford', 0, '+1 614-372-0591', 2, '239491358248317246', '959 East Alley Apt 23, Columbus, GA 43201, United States', '1996-02-07', 0, 0, 'anniecrawford', '2009-10-13', 'crawann425', '2010-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS434134701195', '鄧榮發', 0, '+81 52-658-3914', 1, '212444097841325708', '日本なごやし北区清水三丁目19番19号44階', '1994-12-26', 0, 0, 'wita', '2005-08-14', 'tangwing60', '2021-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS712421505813', '田天榮', 1, '+86 165-3636-3334', 1, '830469269122968854', 'Room 30, 10 Shennan Ave, Futian District, Shenzhen, China', '1989-03-24', 0, 0, 'tintinwing', '2019-03-12', 'twti', '2005-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS755977972738', '曾嘉伦', 1, '+86 769-139-5245', 2, '288943266061444778', '中国东莞环区南街二巷14号28室', '1991-02-18', 0, 0, 'zengjialun', '2010-11-11', 'zejialun', '2002-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS118032133611', 'Amanda Ford', 0, '+81 52-362-9315', 0, '871551888398406631', '10F, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-09-12', 0, 0, 'amaford', '2018-03-21', 'forda', '2012-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS235822072029', '高橋聖子', 1, '+1 838-097-2677', 3, '783559364650933513', '736 Central Avenue Apt 45, Albany, NY 12205, United States', '1989-01-05', 0, 0, 'seikt', '2004-08-26', 'seiko1983', '2008-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS962520808473', '秦嘉伦', 1, '+86 149-0436-6917', 1, '008560005799756419', '中国东莞珊瑚路183号6栋', '1987-06-13', 0, 0, 'qijialun3', '2004-12-24', 'jialunqin9', '2010-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS385772018638', '高橋美羽', 0, '+81 80-5784-7912', 3, '458553219025744188', '日本おおさかし西成区出城一丁目1番19号2階', '1994-05-02', 0, 0, 'miu1995', '2007-04-05', 'miut10', '2010-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS822133925910', '彭家強', 0, '+86 760-315-1016', 3, '233251930203332298', '中国中山京华商圈华夏街157号16栋', '1992-05-25', 0, 0, 'pkake', '2001-09-07', 'pang1985', '2012-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS264513062758', '徐子韬', 1, '+44 (121) 545 3670', 1, '684271475276842037', 'Unit 11, Oxford Eco Centre, 519 New Street, Birmingham, B2 4DB, United Kingdom', '1994-12-30', 0, 0, 'zitaxu1017', '2000-11-04', 'zitaxu', '2001-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS829361202662', '木村彩乃', 0, '+86 755-0984-0839', 4, '609878975945758108', '9F, 315 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-11-12', 0, 0, 'kimuraayan', '2009-08-04', 'kimuayano1978', '2008-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS410995123180', '张睿', 0, '+81 80-7544-5247', 1, '848229382917449180', '日本札幌厚別区上野幌一条二丁目1番5号35号室', '1990-01-29', 0, 0, 'zhangr', '2006-07-26', 'zhang7', '2007-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS758504884677', '刘杰宏', 1, '+81 70-2530-0168', 0, '881305892265762231', '40-kai, 1-1-13 Deshiro, Nishinari Ward, Osaka, Japan', '1994-02-24', 0, 0, 'jiehong804', '2017-06-13', 'jiehongliu10', '2010-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS904860451678', '長谷川桜', 1, '+86 179-8900-0527', 2, '163564987269036257', '中国深圳福田区深南大道771号华润大厦39室', '1989-08-02', 0, 0, 'sakhase51', '2011-07-16', 'sakura1213', '2010-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS793036762390', '苗慧嫻', 0, '+81 11-706-0101', 2, '607508799115202878', '4-kai, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-02-16', 0, 0, 'miuwaihan', '2021-08-04', 'miuwh', '2003-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS679036729594', '苑小慧', 1, '+86 154-6638-7755', 1, '524149446939648647', '中国上海市浦东新区橄榄路709号3栋', '1987-05-16', 0, 0, 'yuen4', '2003-12-05', 'siuwai87', '2021-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS352850762691', '胡潤發', 1, '+86 137-0058-4977', 4, '269535951216354497', 'No.30 building, 545 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-05-07', 0, 0, 'wuyf', '2012-05-08', 'yunfatwu903', '2016-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS294742724464', '譚永發', 0, '+81 90-0721-9174', 2, '635587379858159948', '日本札幌白石区菊水三条五丁目4番19号31階', '1985-04-14', 0, 0, 'tawingfat1', '2021-01-04', 'tawf', '2017-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS236148400589', '高木結翔', 0, '+81 74-518-7185', 3, '514656501974139754', '日本ならし学園南三丁目9番8号29階', '1992-11-17', 0, 0, 'yuitot2', '2015-07-22', 'takagi722', '2001-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS121623285698', '木下光', 1, '+81 52-053-2738', 4, '929534693249237503', '日本なごやし北区楠味鋺三丁目80番18号46号室', '1990-11-15', 0, 0, 'kinoshitahikaru', '2002-11-10', 'kinoshita5', '2010-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS983937260971', 'Benjamin Reed', 0, '+44 (1223) 97 9329', 2, '804138114469931682', 'No.42 Main building, 317 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-04-24', 0, 0, 'benjaminre', '2020-06-05', 'benjaminreed2003', '2008-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS801982054632', '田子韬', 0, '+86 163-1843-9629', 1, '388330821464636560', 'Room 39, 580 Huanqu South Street 2nd Alley, Dongguan, China', '1989-08-22', 0, 0, 'zitaotian1212', '2007-01-17', 'zitaotian', '2004-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS596131712855', '徐惠妹', 0, '+44 (1223) 28 3756', 0, '429339936348713118', 'Block 25, 927 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-04-25', 0, 0, 'hmt413', '2020-01-04', 'thuimei324', '2012-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS203444162303', '郑宇宁', 0, '+86 28-6799-5778', 3, '787818144500726031', '37F, No.916, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-02-11', 0, 0, 'zheng3', '2012-06-07', 'zhyun17', '2014-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS703113834462', '盧詠詩', 1, '+1 330-556-9507', 2, '823284834825871891', '999 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1992-04-04', 0, 0, 'lowingsze02', '2004-08-27', 'wingszelo', '2015-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS137417721879', '戴小慧', 1, '+81 70-9893-7733', 2, '415744583406871884', 'Rm. 7, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1989-09-23', 0, 0, 'siuwaida', '2012-12-30', 'swd92', '2020-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS744250971595', '董璐', 1, '+86 20-932-7939', 3, '795931638441921123', '中国广州市白云区机场路棠苑街五巷754号49号楼', '1989-10-12', 0, 0, 'lu4', '2020-04-21', 'ld1', '2005-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS377651867754', 'Jacob Flores', 0, '+81 70-0903-7438', 4, '973069135531428099', 'Rm. 8, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-04-09', 0, 0, 'floresja1', '2019-02-28', 'florjacob', '2010-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS213416271570', '佘國權', 1, '+81 70-3424-6487', 0, '392450664537658923', '日本札幌厚別区上野幌一条二丁目1番3号12階', '1991-09-20', 0, 0, 'shkk201', '2016-10-03', 'kwokkuen7', '2015-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS929880328297', '孟秀英', 1, '+1 212-995-6176', 2, '089242408756966379', '38 Fifth Avenue Apt 49, New York, NY 10017, United States', '1995-04-01', 0, 0, 'xiuyingmeng', '2009-11-27', 'mengxi4', '2018-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS269267503270', '許天榮', 1, '+81 80-5588-1643', 3, '715844484966315131', '12F, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-01-31', 0, 0, 'tinwing404', '2005-09-25', 'htinwing221', '2012-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS602687204044', '邵子韬', 1, '+1 213-251-3462', 1, '834234666792151102', '198 Grape Street Apt 12, Los Angeles, CA 90002, United States', '1986-09-22', 0, 0, 'shaozitao', '2019-03-29', 'shazita', '2011-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS044716813619', '青木凛', 0, '+1 330-475-1500', 3, '468187999824844198', '537 Fern Street Apt 22, Akron, OH 44307, United States', '1988-06-13', 0, 0, 'riaoki', '2005-06-24', 'rinaoki', '2005-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS838897443422', '千葉蒼士', 0, '+1 838-307-1434', 1, '154019539887561819', '703 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1987-06-06', 0, 0, 'chibaaoshi1961', '2010-02-06', 'aoch416', '2002-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS248226883132', '前田美月', 1, '+81 90-0711-8154', 1, '504796505927864052', '日本東京品川区東五反田五丁目2番13号38階', '1988-12-01', 0, 0, 'maedamitsu', '2019-02-23', 'mitsuki57', '2016-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS280993796973', '安藤光', 0, '+1 213-739-7907', 0, '270202171807356492', '349 Grape Street Suite 34, Los Angeles, CA 90002, United States', '1994-01-12', 0, 0, 'andhi', '2018-12-28', 'andoh', '2017-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS329278518958', '刘震南', 0, '+1 838-686-6539', 1, '608831810100476046', '982 State Street Apartment 8, Albany, NY 12203, United States', '1986-05-08', 0, 0, 'zhenliu', '2001-04-13', 'zhennanli', '2002-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS995711294044', 'Joan Grant', 1, '+81 90-9380-4994', 3, '969845621305584035', '日本東京港区東新橋一丁目5番17号19階', '1998-01-18', 0, 0, 'jgr', '2008-11-06', 'joan5', '2010-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS421543291731', '呂志明', 0, '+44 (20) 8447 6913', 1, '712508981763373162', 'Unit 44, Oxford Eco Centre, 924 Maddox Street, London, W1S 1PU, United Kingdom', '1989-03-12', 0, 0, 'cmlui', '2019-10-01', 'lucm', '2003-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS857617823195', '村上葉月', 0, '+86 149-1866-7508', 2, '675499076135522244', '23F, 650 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-06-11', 0, 0, 'hazuki6', '2000-06-05', 'hazukimurakami', '2007-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS200187639982', '木下湊', 0, '+86 10-337-7101', 3, '628721131762875770', '42F, 633 68 Qinghe Middle St, Haidian District, Beijing, China', '1999-02-11', 0, 0, 'minato3', '2021-10-04', 'kinoshitam', '2020-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS740265135805', '邱頴思', 0, '+44 7033 620951', 1, '072006424166044416', 'Block 29, 953 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-06-07', 0, 0, 'yauws', '2020-11-01', 'wiya4', '2003-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS287057868915', '孔嘉伦', 0, '+1 614-530-3779', 0, '749884111128006637', '77 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-09-17', 0, 0, 'jialko97', '2007-07-19', 'jialk', '2020-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS368028196542', '鐘德華', 1, '+44 5101 925768', 4, '877732583927817433', 'Unit 2, Oxford Eco Centre, 22 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-04-05', 0, 0, 'chuntakwah407', '2001-09-13', 'takwahchung', '2019-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS143233920350', '何睿', 1, '+86 189-8231-1366', 2, '550129840429374230', '中国成都市成华区二仙桥东三路577号华润大厦28室', '1990-12-08', 0, 0, 'hrui', '2000-11-08', 'he327', '2018-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS659409429183', '雷宇宁', 0, '+1 718-263-4314', 0, '888803341703534601', '707 Columbia St Apartment 43, Brooklyn, NY 11231, United States', '1994-01-09', 0, 0, 'leiyuning96', '2019-06-21', 'leiyuning', '2013-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS871304734171', 'Rachel Reyes', 1, '+86 10-484-2480', 4, '044823036329689315', '17F, 629 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-11-30', 0, 0, 'reyesrachel12', '2013-08-10', 'rachel414', '2015-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS778425783102', '阎嘉伦', 0, '+1 838-661-6665', 2, '110464982740381328', '678 State Street 3rd Floor, Albany, NY 12203, United States', '1990-06-16', 0, 0, 'jialun5', '2004-10-10', 'jiyan', '2009-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS850991826506', '車富城', 1, '+81 52-239-9279', 1, '463558735128537986', '日本なごやし北区清水三丁目19番7号33号室', '1990-07-27', 0, 0, 'fushing1', '2007-04-07', 'chefushing', '2004-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS383371017020', '佘惠敏', 0, '+81 90-5422-3546', 3, '949014744902702726', 'Rm. 48, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1993-01-28', 0, 0, 'waimans', '2015-03-19', 'swm', '2003-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS561934306779', 'Martin Munoz', 0, '+1 212-244-0615', 1, '018297996711666469', '138 West Houston Street Apartment 32, New York, NY 10014, United States', '1997-11-12', 0, 0, 'mamunoz', '2005-09-01', 'munozmart', '2001-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS662524024939', '工藤和真', 1, '+86 20-143-6363', 0, '786851198083893947', '中国广州市天河区天河路726号6栋', '1988-01-06', 0, 0, 'kudka', '2018-05-01', 'kudokazuma925', '2020-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS894202572675', 'Donna Morales', 1, '+1 213-401-1590', 3, '835935087718496689', '945 Sky Way Apt 38, Los Angeles, CA 90043, United States', '1998-08-23', 0, 0, 'morales9', '2015-07-19', 'md1021', '2005-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS695465055495', '陳麗欣', 1, '+81 90-2400-5603', 0, '098369993963894572', '50F, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-01-03', 0, 0, 'lychan', '2017-01-21', 'lychan', '2000-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS218673817808', 'Connie Mcdonald', 1, '+81 74-698-7016', 1, '705558740458729062', '37F, 3-9-20 Gakuenminami, Nara, Japan', '1997-12-12', 0, 0, 'mconnie', '2014-01-15', 'cmcdonald', '2005-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS295616950065', 'Laura Rogers', 0, '+44 5597 464532', 2, '081516837645961346', 'Unit 49, Oxford Eco Centre, 976 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-10-29', 0, 0, 'laurrog', '2014-09-14', 'rogersl', '2021-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS816328355329', '譚國賢', 1, '+81 11-244-5432', 1, '187657181370910864', '36-kai, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-08-06', 0, 0, 'kwokyinta46', '2010-03-03', 'tamky', '2019-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS127079967352', '小山光莉', 1, '+1 212-884-0945', 1, '489198152018355413', '288 West Houston Street Suite 40, New York, NY 10014, United States', '1991-05-25', 0, 0, 'koyamh', '2010-04-09', 'koyamahikar1223', '2009-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS384334606430', '袁頴璇', 0, '+44 (121) 786 1409', 4, '717490859862513029', 'Flat 35, 152 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-28', 0, 0, 'wingsuen7', '2012-06-04', 'yuenws', '2010-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS684257583510', '池田樹', 1, '+81 74-497-5948', 0, '113901574510834963', '49F, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-02-10', 0, 0, 'itsukiikeda', '2002-12-29', 'itsuki417', '2012-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS997144792017', 'Jesus Nichols', 0, '+86 21-7638-4948', 2, '836477393151321551', '中国上海市浦东新区健祥路230号17号楼', '1995-06-07', 0, 0, 'jesusnichols', '2004-07-15', 'nicholsje422', '2009-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS145293806174', '工藤翼', 1, '+81 52-650-8654', 0, '251079830996095218', 'Rm. 27, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-05-26', 0, 0, 'kudtsuba', '2006-02-28', 'tkud', '2000-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS657241666721', '應思妤', 1, '+44 5794 900598', 2, '142912708630381058', 'No.4 Main building, 75 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-06-04', 0, 0, 'yisy', '2002-05-08', 'syying225', '2008-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS495420465903', '中野葵', 1, '+1 213-229-5705', 2, '412565888920493027', '264 Sky Way Suite 37, Los Angeles, CA 90043, United States', '1994-11-11', 0, 0, 'nao', '2012-09-06', 'anakan729', '2000-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS728168099135', '彭心穎', 1, '+1 718-476-9620', 4, '064235427193164119', '749 Columbia St Apartment 17, Brooklyn, NY 11231, United States', '1993-12-21', 0, 0, 'sumwingpang', '2003-04-27', 'pasumwing', '2006-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS046279264987', 'Alice White', 1, '+81 66-880-0825', 0, '629716785682795906', '日本おおさかし西成区天神ノ森二丁目1番11号4階', '1991-08-07', 0, 0, 'whia3', '2019-11-27', 'alicwhite', '2004-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS157110071431', 'Phillip Barnes', 1, '+44 (116) 589 0072', 1, '938079075349520386', 'Flat 15, 380 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-01-16', 0, 0, 'barnesphi55', '2010-02-06', 'phbarnes', '2014-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS254155439072', 'Nathan Adams', 0, '+86 172-3587-5706', 0, '900805991492836134', 'No.6 building, 867 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-12-08', 0, 0, 'adamsnath', '2009-04-20', 'adamsnathan3', '2008-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS483885297927', 'Marvin Kennedy', 1, '+81 70-6773-7544', 4, '148823770642616933', '日本おおさかし平野区加美東四丁目9番6号49号室', '1987-10-29', 0, 0, 'mark', '2005-10-11', 'mark', '2018-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS084788698448', '许安琪', 1, '+86 164-8236-7164', 0, '775475423284015612', '39F, 958 028 County Rd, Yanqing District, Beijing, China', '1992-03-24', 0, 0, 'xuanqi01', '2014-03-10', 'anqixu', '2014-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS495997912318', '小島聖子', 0, '+81 70-0088-3432', 1, '758244086059568682', '日本おおさかし近江堂一丁目7番8号42号室', '1988-10-29', 0, 0, 'kojima52', '2011-08-20', 'kojima9', '2017-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS262480447349', '餘慧儀', 0, '+86 188-2243-0943', 1, '835450237915000074', '中国中山紫马岭商圈中山五路811号31栋', '1985-04-24', 0, 0, 'waiyee04', '2018-12-24', 'waiyeeyue', '2003-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS598214869800', 'Louise Collins', 0, '+86 20-4049-0491', 1, '839221049921867169', 'No.11 building, 943 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-03-14', 0, 0, 'louise8', '2014-05-05', 'louise1213', '2017-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS916660635246', '福田翼', 1, '+81 3-1974-1630', 2, '310114649223400346', '19F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-09-23', 0, 0, 'fukudat1992', '2020-09-10', 'tsubafu', '2020-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS268212957317', '小島美咲', 0, '+86 151-5726-5090', 4, '642332958476828775', 'Room 46, 16 Yueliu Rd, Fangshan District, Beijing, China', '1989-12-01', 0, 0, 'mkoj', '2019-06-21', 'misakojima202', '2004-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS626149376684', 'Teresa Simmons', 0, '+81 70-6261-8451', 0, '668934079652819374', '13-kai, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1996-10-15', 0, 0, 'siteres97', '2010-02-14', 'teresasimm', '2012-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS903321892869', 'Rebecca Hamilton', 1, '+81 90-9460-0719', 3, '876680611297607937', '日本札幌豊平区豊平三条十三丁目3番20号13階', '1987-12-28', 0, 0, 'hamilton1011', '2007-10-26', 'hr8', '2016-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS434216942238', 'Sheila Ortiz', 1, '+86 164-0387-7247', 3, '177751917659284318', '中国中山京华商圈华夏街759号16栋', '1997-05-16', 0, 0, 'ortshe', '2019-09-12', 'sheilaort1031', '2003-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS407876406288', '孙睿', 0, '+81 66-787-8735', 3, '740059206198198924', 'Rm. 5, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-11-29', 0, 0, 'ruisun', '2013-04-01', 'ruis', '2016-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS638757392165', 'Edna Cox', 0, '+81 52-393-2463', 1, '576089661542757706', 'Rm. 11, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1992-02-26', 0, 0, 'edna10', '2001-04-20', 'ednaco409', '2005-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS110406142560', 'Scott Lewis', 0, '+86 181-5796-9449', 2, '566275849844609155', '中国上海市闵行区宾川路42号1室', '1989-06-01', 0, 0, 'lewis109', '2016-02-29', 'scottlewis1107', '2004-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS715512297960', '蒋岚', 1, '+44 (1223) 48 8770', 1, '547323353528419880', 'Block 15, 859 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-02-07', 0, 0, 'jianglan', '2008-04-25', 'jianlan', '2013-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS676284517770', '青木湊', 1, '+86 179-1667-8978', 1, '372553441162224224', '中国北京市東城区東直門內大街163号华润大厦3室', '1992-11-26', 0, 0, 'aokiminato', '2018-09-05', 'miaoki', '2014-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS285998729323', '區詩君', 0, '+81 3-5025-4014', 2, '921152237651799279', '日本東京中央区銀座三丁目12番2号3階', '1997-04-04', 0, 0, 'skau63', '2001-07-29', 'szekwan323', '2017-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS802079417704', '桜井優奈', 0, '+81 90-5571-3242', 1, '191901269995983604', '8-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-09-23', 0, 0, 'sakuyu', '2017-11-29', 'ysakurai', '2003-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS091355457170', '廖祖兒', 0, '+44 (121) 144 4425', 2, '441851800619106170', 'Block 26, 404 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-03-01', 0, 0, 'choyee10', '2010-10-17', 'lcho8', '2014-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS551265142569', 'Kathleen Snyder', 0, '+86 760-522-3841', 2, '786402141439232851', '中国中山乐丰六路524号41室', '1993-03-28', 0, 0, 'kathlsnyder', '2000-03-12', 'ks7', '2012-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS597850073292', '韩致远', 1, '+81 90-7687-6257', 3, '395880048982682187', '日本札幌清田区真栄四条五丁目19番8号21階', '1988-11-27', 0, 0, 'hanzh', '2013-09-12', 'zhiyuan5', '2021-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS138859622536', '原田陽菜', 0, '+81 80-6127-6309', 1, '601134318275009082', '日本おおさかし平野区加美東四丁目9番12号9階', '1992-07-31', 0, 0, 'hharada', '2007-03-08', 'hhar728', '2016-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS478299890059', '藤田百花', 0, '+81 52-897-0356', 3, '082373317994704900', 'Rm. 20, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-10-04', 0, 0, 'mfu', '2010-08-05', 'mfu', '2002-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS754036074287', '島田大地', 0, '+86 755-3170-9307', 2, '373328617720743173', '中国深圳龙岗区学园一巷562号18栋', '1989-06-26', 0, 0, 'dshimada9', '2006-12-21', 'shimada1', '2013-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS575389515481', '王家強', 0, '+86 185-3013-4247', 3, '584323176212024671', 'No.26 building, 649 Shanhu Rd, Dongguan, China', '1986-03-07', 0, 0, 'wkk', '2002-08-17', 'kkwon', '2020-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS909720886761', '薛仲賢', 1, '+81 74-445-4809', 3, '610420121367060948', '日本ならし西大寺赤田町一丁目7番7号4階', '1990-05-27', 0, 0, 'chungyin80', '2005-12-30', 'chusit', '2007-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS499968585346', 'Maria Gordon', 0, '+1 312-470-2629', 2, '217225277265610452', '363 North Michigan Ave Apt 41, Chicago, IL 60611, United States', '1991-01-24', 0, 0, 'gordonmaria', '2007-07-03', 'gormaria', '2009-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS140520324164', '谢宇宁', 1, '+81 66-402-0100', 2, '642124770769518011', '日本おおさかし近江堂一丁目7番12号34号室', '1994-07-08', 0, 0, 'xieyuning1007', '2001-07-24', 'yxie', '2003-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS141160253784', '袁祖兒', 1, '+86 20-706-7592', 1, '651548606863416452', '中国广州市越秀区中山二路940号6号楼', '1991-08-24', 0, 0, 'choyee1120', '2014-04-08', 'ychoyee', '2002-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS127171686408', 'Mario Wilson', 0, '+44 5610 845005', 1, '808589745651918511', 'No.48 Main building, 47 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-08-01', 0, 0, 'mario819', '2007-02-15', 'wilsonm1941', '2005-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS498495941752', '樂發', 1, '+81 90-2312-7242', 1, '847583375537983110', '日本東京千代田区丸の内一丁目6番18号31号室', '1988-01-18', 0, 0, 'lfat927', '2020-02-26', 'lokfat', '2014-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS389094224100', '梅慧敏', 0, '+86 20-4903-9339', 1, '833167136112504911', '中国广州市天河区天河路72号46栋', '1996-08-21', 0, 0, 'muwm', '2001-09-16', 'muiwaima105', '2017-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS668939211735', '董震南', 0, '+81 80-8874-7396', 3, '972537064005757865', '25F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1985-07-05', 0, 0, 'zhedong', '2010-05-23', 'donzhennan', '2003-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS385635070340', '山田健太', 1, '+86 140-5681-4331', 0, '910785920914307648', '中国深圳福田区深南大道185号40栋', '1990-08-08', 0, 0, 'kentay', '2017-07-07', 'kenta1963', '2003-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS007518779584', '許朝偉', 0, '+44 (116) 445 8788', 3, '581878453726362168', 'Block 16, 914 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-10-15', 0, 0, 'cwhui83', '2005-08-19', 'huicw626', '2005-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS020836806252', '韩嘉伦', 1, '+44 (121) 838 9210', 1, '885913656190731625', 'Unit 8, Oxford Eco Centre, 947 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1999-02-22', 0, 0, 'hjialun9', '2007-04-30', 'jhan7', '2018-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS230991124226', '野村樹', 1, '+81 80-7044-4985', 2, '808594556256841040', '日本札幌白石区菊水三条五丁目4番5号6号室', '1986-03-11', 0, 0, 'nomuraitsuki', '2016-06-07', 'noitsuki', '2002-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS439708475346', '韓天榮', 0, '+1 838-843-1964', 4, '532511124876206634', '383 Central Avenue Apt 5, Albany, NY 12205, United States', '1996-12-25', 0, 0, 'twh9', '2016-05-06', 'hantw', '2018-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS134563912088', 'Gerald Green', 1, '+81 90-1699-8793', 3, '867470806197338112', '日本札幌中央区宮の森四条六丁目1番8号38階', '1990-02-26', 0, 0, 'green19', '2020-11-08', 'gerald308', '2021-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS001108449127', '谢宇宁', 1, '+86 177-4111-3174', 0, '668055710115249673', '中国广州市白云区小坪东路115号22楼', '1986-12-25', 0, 0, 'yuningxi95', '2003-12-15', 'xieyuning', '2014-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS513432966418', '崔璐', 1, '+44 (1865) 48 4697', 0, '419048659024407800', 'Block 18, 471 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-06-22', 0, 0, 'cuilu', '2004-11-20', 'clu', '2015-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS774295001321', 'Andrea Green', 0, '+86 28-6449-0554', 4, '172950418515161966', '中国成都市成华区玉双路6号982号华润大厦9室', '1985-05-15', 0, 0, 'greenandre5', '2019-01-22', 'andreagreen', '2010-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS217522147103', '曹璐', 1, '+44 7841 242218', 2, '805051686626569293', 'Unit 33, Oxford Eco Centre, 782 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-07-10', 0, 0, 'caolu620', '2019-10-09', 'cl102', '2017-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS137479358459', '曹岚', 0, '+86 769-709-7985', 2, '401300067980229951', '中国东莞坑美十五巷256号8楼', '1990-10-14', 0, 0, 'cao1', '2001-09-01', 'lan415', '2004-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS868415645325', '中山七海', 1, '+44 (151) 205 5011', 3, '788093218306020521', 'No.48 Main building, 527 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-03-16', 0, 0, 'nanan', '2002-02-20', 'nanaminak', '2001-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS528298509813', '薛小慧', 0, '+81 3-6166-1871', 1, '105977526572222407', '日本東京中央区銀座三丁目12番1号40号室', '1990-12-05', 0, 0, 'sit512', '2003-09-29', 'siuwai3', '2004-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS076016725840', '秦安琪', 1, '+81 74-339-7266', 3, '442996745050785725', '20-kai, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1991-01-07', 0, 0, 'anqiq9', '2007-05-08', 'qinanqi527', '2008-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS641191880310', 'Clarence Ferguson', 0, '+1 838-439-4272', 1, '553147425367485769', '763 State Street Suite 13, Albany, NY 12203, United States', '1987-01-25', 0, 0, 'clarence7', '2014-11-16', 'feclarence', '2003-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS784835423801', '邱秀英', 0, '+81 52-558-3404', 0, '284396628299275722', '日本なごやし守山区瀬古東二丁目171番6号44号室', '1995-07-23', 0, 0, 'xqiu', '2014-06-24', 'xiuqiu2', '2005-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS789309033733', 'Jacob Gonzales', 1, '+81 80-8550-1973', 0, '029396623357455536', '日本ならし西大寺赤田町一丁目7番5号25階', '1995-08-15', 0, 0, 'jacobg', '2012-04-15', 'gojacob', '2000-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS032927089404', '常璐', 1, '+86 755-1033-7280', 4, '293922562309235069', '中国深圳罗湖区清水河一路413号46楼', '1994-11-04', 0, 0, 'changlu1117', '2001-08-20', 'luchan1224', '2012-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS189533868636', 'Wanda Lewis', 1, '+44 7118 561265', 3, '424766367680797809', 'Unit 41, Oxford Eco Centre, 333 Hanover Street, London, W1S 1YD, United Kingdom', '1990-02-20', 0, 0, 'wanda1102', '2020-09-06', 'lewis1', '2014-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS309921264953', '钱子异', 1, '+86 156-1011-8798', 2, '467530806802493649', 'No.10 building, 586 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-01-03', 0, 0, 'qziy', '2013-10-20', 'qianziy407', '2016-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS087033241372', '藍發', 1, '+44 7372 422553', 2, '042326142722203363', 'Flat 34, 69 New Street, Birmingham, B2 4DB, United Kingdom', '1994-01-21', 0, 0, 'fatlam', '2002-05-30', 'falam9', '2017-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS480443774092', '福田蓮', 0, '+1 212-942-1941', 1, '077005091485668898', '552 Bank Street 3rd Floor, New York, NY 10014, United States', '1990-07-12', 0, 0, 'fukudren01', '2021-01-17', 'fren', '2012-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS094198675325', 'Victoria Rose', 0, '+86 21-975-2608', 2, '133458607055618642', '中国上海市浦东新区健祥路27号36室', '1995-12-03', 0, 0, 'rosev', '2015-05-18', 'victoria7', '2009-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS424099637418', 'Lois Reynolds', 0, '+1 213-773-2555', 4, '101635921858243941', '939 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1985-11-22', 0, 0, 'reynoldsloi', '2008-09-01', 'reynoldslois', '2016-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS491266446037', '中野百恵', 0, '+81 52-530-1247', 1, '069407417941201073', '24F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1996-06-28', 0, 0, 'nakano6', '2000-01-31', 'mnakan1102', '2021-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS549368078857', '莫仲賢', 1, '+81 3-8924-5082', 3, '093304939323812240', 'Rm. 43, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1985-04-13', 0, 0, 'cymok', '2019-05-06', 'cymok56', '2007-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS855803219884', '毛家明', 1, '+86 143-7313-8179', 1, '215723137889405054', '1F, 613 East Wangfujing Street, Dongcheng District , Beijing, China', '1985-03-24', 0, 0, 'kmmo', '2006-12-09', 'kaming124', '2021-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS356933573205', '姚玲玲', 1, '+81 11-132-4693', 1, '256420642409786883', '日本札幌白石区菊水三条五丁目4番19号47階', '1989-01-05', 0, 0, 'linglingye', '2019-09-10', 'llyeow', '2012-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS161682267311', 'Edna Thomas', 1, '+86 151-3040-9920', 1, '595171432375189415', '中国成都市成华区双庆路291号华润大厦35室', '1989-08-17', 0, 0, 'thomasedna', '2004-10-13', 'et219', '2006-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS738516838850', '中島蓮', 1, '+81 66-121-3154', 1, '668314956060563786', '44-kai, 2-1-17 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-02-02', 0, 0, 'nakajima804', '2014-07-08', 'nakajren', '2016-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS487174176522', '赵睿', 0, '+81 70-2279-9116', 1, '895135523351253353', '40F, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-03-14', 0, 0, 'ruzhao8', '2014-04-29', 'zrui', '2019-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS312512967163', '鄭明詩', 0, '+86 193-1654-7395', 0, '459931179602817871', 'Room 21, CR Building, 864 Shennan Ave, Futian District, Shenzhen, China', '1990-02-26', 0, 0, 'mingsze910', '2003-01-09', 'chenmingsze', '2007-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS457322418427', '區慧儀', 0, '+86 138-9540-3297', 0, '040169225866440092', '中国成都市成华区二仙桥东三路628号9室', '1989-07-12', 0, 0, 'auwy3', '2007-02-16', 'awaiye', '2004-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS184643898021', '于晓明', 0, '+1 614-470-9185', 1, '254123539802927571', '542 East Alley Apartment 6, Columbus, GA 43201, United States', '1989-03-28', 0, 0, 'yuxiaoming1117', '2021-12-07', 'yuxia2', '2012-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS803636540694', 'Karen Washington', 1, '+86 161-6363-6578', 1, '172274519563255382', '中国广州市海珠区江南西路253号华润大厦43室', '1986-05-31', 0, 0, 'karenwash', '2002-04-08', 'karewashington05', '2009-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS155375176123', '鐘祖兒', 1, '+1 838-455-1738', 1, '391437806030902670', '299 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-02-18', 0, 0, 'chung809', '2011-05-28', 'chchoyee', '2020-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS831532610005', '菊地湊', 0, '+44 (1223) 62 3042', 4, '867366913531875345', 'Flat 20, 584 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-05-31', 0, 0, 'kikuchi1956', '2018-02-11', 'kim', '2004-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS516023027199', '雷杰倫', 1, '+81 52-770-1198', 4, '830205952455800327', '9-kai, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1997-07-26', 0, 0, 'chiehlunlo', '2016-08-01', 'chiehlunlou', '2004-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS980573544379', '上野美羽', 1, '+86 181-4767-5131', 1, '795533625402561997', '14F, 348 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-01-16', 0, 0, 'uenomiu', '2012-06-21', 'miuuen', '2008-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS976366076862', '郭詠詩', 0, '+44 (121) 944 1384', 3, '792126957614847089', 'Block 42, 392 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-06-16', 0, 0, 'wingszek', '2012-01-29', 'kwokwingsze', '2021-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS276114014115', '菅原百恵', 0, '+1 614-295-4429', 3, '943014599411306319', '466 Tremont Road Apt 5, Columbus, GA 43212, United States', '1999-03-01', 0, 0, 'sugawaramomoe', '2012-02-28', 'msuga2', '2003-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS651096516212', '崔子异', 1, '+81 90-4716-9977', 3, '283243116400800140', 'Rm. 9, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-09-09', 0, 0, 'cui4', '2015-08-02', 'cui16', '2001-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS736026476198', '李國權', 0, '+81 52-039-9393', 4, '979764946919160325', '日本なごやし北区楠味鋺三丁目80番17号24号室', '1993-12-24', 0, 0, 'leekwokkuen1209', '2008-01-12', 'lkk', '2020-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS402926638941', '福田瑛太', 1, '+81 52-152-3111', 3, '718566037171535338', 'Rm. 3, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-08-25', 0, 0, 'fukudae', '2013-01-05', 'fukuda1020', '2021-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS084655449333', '吉田彩乃', 0, '+81 90-0677-9299', 0, '904277981806740910', '25-kai, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-02-19', 0, 0, 'yoshida1118', '2010-10-23', 'ayo', '2016-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS316152917629', '林裕玲', 1, '+44 7391 106338', 2, '870139949407466054', 'Block 50, 585 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-09-19', 0, 0, 'lam59', '2018-02-05', 'yulingl', '2001-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS892887434228', 'Donna Jackson', 1, '+86 164-1169-9317', 3, '680532370664301303', 'No.28 building, 408 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-08-25', 0, 0, 'jacksondonna713', '2022-02-15', 'donnajac67', '2008-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS689746449947', '新井桜', 1, '+86 760-7302-2011', 3, '247914077699545081', '中国中山紫马岭商圈中山五路107号7室', '1998-09-04', 0, 0, 'sakuraa', '2017-01-11', 'arai9', '2004-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS523536622344', '谷口葉月', 1, '+44 5535 665826', 3, '218961708513819509', 'Flat 20, 67 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-02-21', 0, 0, 'hataniguchi', '2003-07-29', 'hataniguchi', '2012-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS362605735094', 'Jane Mendez', 0, '+86 20-7634-5584', 1, '424368269133141258', 'No.16 building, 352 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-01-31', 0, 0, 'jmende', '2009-03-19', 'janem90', '2006-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS500808704505', '小野拓哉', 1, '+44 7971 722859', 2, '917419176281557000', 'Block 1, 172 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-09-23', 0, 0, 'takuyao', '2019-12-06', 'tono6', '2017-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS532496481973', '吉田結翔', 1, '+44 (1223) 19 3796', 1, '536116054167741070', 'No.26 Main building, 15 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-06-06', 0, 0, 'yuitoyoshida6', '2018-10-08', 'yuitoyo', '2003-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS187453407698', 'Bruce Moreno', 0, '+86 20-6298-0301', 3, '313138025160708268', 'Room 31, 879 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-03-08', 0, 0, 'bruce10', '2002-03-12', 'moreno2', '2017-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS235984451368', '錢安娜', 1, '+81 11-924-7588', 1, '265003492924180068', '34F, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-11-17', 0, 0, 'chinonna517', '2015-06-14', 'chinonna', '2000-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS765185133691', 'Bobby Gonzalez', 1, '+44 (20) 3173 0289', 1, '476634143015945043', 'Unit 18, Oxford Eco Centre, 796 Regent Street, London, W1B 2LX, United Kingdom', '1986-04-23', 0, 0, 'gonbobby603', '2005-11-15', 'bogonzalez', '2000-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS929393655259', '岡本明菜', 1, '+1 614-000-9867', 1, '943212972905546429', '393 Tremont Road Apartment 23, Columbus, GA 43212, United States', '1996-12-13', 0, 0, 'okamoto313', '2003-03-27', 'aokamoto', '2015-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS959877963119', '吴晓明', 1, '+1 718-495-0130', 4, '559789121099651746', '44 1st Ave Suite 20, Brooklyn, NY 11220, United States', '1989-02-12', 0, 0, 'wuxiaoming', '2003-08-22', 'wu3', '2019-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS544162495052', 'Eugene Wells', 0, '+44 (20) 1699 3174', 3, '401022318900292646', 'Flat 36, 891 Regent Street, London, W1B 2LX, United Kingdom', '1996-04-12', 0, 0, 'ewells', '2001-06-19', 'eugwell', '2001-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS600134345721', '魏晓明', 1, '+86 167-5933-3195', 0, '871947392340275682', '中国上海市浦东新区橄榄路213号华润大厦11室', '1989-08-25', 0, 0, 'wxia', '2008-02-20', 'weixia4', '2017-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS139057152975', '方發', 0, '+44 5577 793192', 2, '294082762801415948', 'Flat 13, 883 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-12-02', 0, 0, 'ffong', '2001-10-12', 'fongfa', '2009-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS202380589572', '餘杰倫', 1, '+81 66-016-9338', 2, '190766292592069349', '日本おおさかし平野区加美東四丁目9番11号7号室', '1988-04-02', 0, 0, 'yuecl', '2019-04-29', 'cly3', '2016-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS638478111848', '罗詩涵', 0, '+86 145-0597-7638', 4, '692222673319596737', 'Room 28, 210 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1986-02-06', 0, 0, 'luosh', '2017-01-15', 'shihan513', '2018-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS281399880635', 'Carmen Cole', 0, '+44 7576 887428', 2, '876948021182212014', 'No.41 Main building, 586 Pollen Street, London, W1S 1NG, United Kingdom', '1991-04-02', 0, 0, 'cco', '2001-07-09', 'carmencole722', '2003-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS694773108638', '馬家文', 1, '+86 149-3125-3024', 1, '409356260029030531', '中国北京市西城区西長安街331号23楼', '1990-12-20', 0, 0, 'makaman', '2016-06-19', 'kmma', '2001-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS888349675922', '藤田百恵', 0, '+1 330-390-4105', 3, '079656349028727906', '359 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1997-05-20', 0, 0, 'fum1121', '2002-05-26', 'momoef', '2007-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS156097759208', '小野美緒', 0, '+1 838-376-2721', 0, '524720462673664942', '129 State Street 3rd Floor, Albany, NY 12203, United States', '1991-11-15', 0, 0, 'mono', '2000-02-21', 'ono2', '2018-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS287998314630', '中川健太', 0, '+81 80-0617-5934', 1, '431820753982772720', '日本札幌中央区宮の森四条六丁目1番3号7号室', '1986-02-01', 0, 0, 'kentan', '2007-05-05', 'kentanakagawa', '2001-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS252852076877', '唐岚', 0, '+81 11-538-8975', 3, '461691036834996960', 'Rm. 15, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-04-06', 0, 0, 'lantang5', '2008-07-17', 'talan8', '2018-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS068533075706', '赵子韬', 0, '+1 312-677-3632', 1, '984527235949880388', '182 North Michigan Ave Apt 18, Chicago, IL 60611, United States', '1998-02-11', 0, 0, 'zhao2', '2000-09-01', 'zhaozi', '2005-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS943195550214', '有村凛', 1, '+86 10-496-3460', 0, '504075595023858530', '中国北京市房山区岳琉路994号15号楼', '1998-10-18', 0, 0, 'rinarimu', '2021-07-27', 'rinarimura1014', '2009-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS587523043012', '何祖兒', 0, '+81 11-440-3301', 0, '340601694410756924', 'Rm. 44, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-18', 0, 0, 'cyho', '2020-04-16', 'hocy', '2014-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS431164221563', '常睿', 0, '+1 212-946-0424', 4, '232264282006653219', '154 Fifth Avenue Suite 47, New York, NY 10017, United States', '1992-09-29', 0, 0, 'crui', '2019-08-28', 'changru', '2001-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS323751801377', '钱安琪', 0, '+44 5031 014920', 2, '498770928513039956', 'Block 13, 875 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-02-19', 0, 0, 'qiaa', '2018-06-30', 'aqian1025', '2014-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS696878164717', 'Frances Nelson', 1, '+1 212-730-2846', 2, '281948402275457660', '407 Bank Street Apartment 11, New York, NY 10014, United States', '1990-05-28', 0, 0, 'nelsofr', '2000-10-21', 'frances3', '2021-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS797262375559', '田村玲奈', 1, '+1 212-118-8552', 3, '246427730560487748', '832 Wooster Street Suite 24, New York, NY 10012, United States', '1990-08-24', 0, 0, 'tamuraren7', '2014-03-21', 'rtamura', '2003-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS658336836945', '内田陽菜', 0, '+86 173-8551-6149', 2, '126829476538925635', 'No.9 building, 151 Shennan Ave, Futian District, Shenzhen, China', '1986-03-18', 0, 0, 'hinauc', '2008-10-15', 'hinauch', '2015-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS391150499516', '苗明詩', 1, '+81 80-0740-6176', 0, '497471570719624985', '日本東京中央区銀座三丁目12番10号10号室', '1990-08-17', 0, 0, 'miumings7', '2011-11-12', 'mmingsze', '2016-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS452736389726', '菅原葵', 0, '+86 174-8056-8628', 2, '068833365695292922', 'Room 18, 242 Huanqu South Street 2nd Alley, Dongguan, China', '1987-06-04', 0, 0, 'aoi905', '2020-11-01', 'sugawaraaoi', '2009-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS935286599805', '村田涼太', 1, '+86 21-4665-0611', 2, '196792626282933988', '2F, 494 Binchuan Rd, Minhang District, Shanghai, China', '1991-06-12', 0, 0, 'ryotmurat913', '2019-07-10', 'rmura', '2015-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS285850119871', '新井凛', 0, '+81 52-708-3850', 3, '911841175048081533', '36-kai, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-12-18', 0, 0, 'ar7', '2013-07-20', 'arair', '2018-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS115299667113', '葉慧琳', 0, '+86 10-789-5842', 2, '662979590661745294', 'No.6 building, 504 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-03-04', 0, 0, 'waily511', '2013-01-16', 'wailam7', '2017-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS983313220431', 'Martha Schmidt', 0, '+1 330-489-3450', 4, '889817212436491917', '221 Collier Road Apt 20, Akron, OH 44320, United States', '1995-12-17', 0, 0, 'martha3', '2014-11-23', 'ms6', '2014-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS872704860483', '井上美咲', 0, '+86 10-5904-1906', 1, '716568897625726561', '中国北京市海淀区清河中街68号796号华润大厦27室', '1985-08-15', 0, 0, 'miinoue', '2001-11-09', 'mii', '2018-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS364381679964', '洪家強', 0, '+1 718-886-3760', 1, '664345813456525290', '651 Bergen St Suite 35, Brooklyn, NY 11217, United States', '1988-02-06', 0, 0, 'kakeunghung7', '2006-06-01', 'kakeung1', '2012-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS712382038545', '佐藤花', 1, '+81 3-6720-0458', 4, '376334501598225217', '日本東京港区東新橋一丁目5番2号47号室', '1997-04-19', 0, 0, 'satoh6', '2011-09-26', 'hanas1968', '2018-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS000702787232', '馮明', 0, '+1 838-479-5567', 1, '223081969310553191', '916 Lark Street Suite 8, Albany, NY 12210, United States', '1996-03-03', 0, 0, 'fmi', '2013-03-04', 'funming', '2012-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS771214003101', 'Karen Williams', 0, '+86 168-1809-9883', 1, '744025611165766586', 'Room 1, 418 Lefeng 6th Rd, Zhongshan, China', '1997-04-27', 0, 0, 'wikar', '2006-03-12', 'kwilliams', '2016-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS520842891489', '松田一輝', 1, '+44 7857 474866', 2, '262458096835835462', 'Flat 44, 46 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1996-04-15', 0, 0, 'mikki', '2013-09-21', 'ikkimatsu', '2020-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS336948804232', '丸山美羽', 0, '+86 195-3582-1029', 1, '987106455579624720', '中国北京市西城区复兴门内大街85号48室', '1994-08-10', 0, 0, 'maruyamami325', '2004-08-16', 'mimar', '2000-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS995725923015', '任祖兒', 1, '+81 80-4305-0241', 3, '040126741850241995', '43F, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-07-31', 0, 0, 'choyeey6', '2012-08-01', 'yam12', '2007-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS109791885333', '孟晓明', 1, '+86 178-0561-1926', 3, '135288569927523720', 'No.28 building, 192 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-02-25', 0, 0, 'xiameng1029', '2014-01-28', 'mxi', '2010-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS362132598622', '杜秀英', 0, '+86 755-650-8944', 3, '598200446510149979', '中国深圳龙岗区学园一巷740号10栋', '1991-06-05', 0, 0, 'duxiuy', '2000-09-01', 'xiuydu', '2004-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS712365302857', '苑明', 0, '+86 169-1104-1060', 0, '818572841150797599', '中国成都市锦江区红星路三段573号1楼', '1988-12-23', 0, 0, 'ymin', '2019-12-07', 'mingyuen', '2019-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS344195990427', '鈴木陸', 0, '+86 181-6243-3327', 1, '465592557525339986', '24F, 804 Tianhe Road, Tianhe District, Guangzhou, China', '1988-07-06', 0, 0, 'rikusuzuki', '2005-04-09', 'riku10', '2006-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS666581732849', '森詩乃', 1, '+86 163-7624-0171', 3, '499865704944275807', 'Room 10, 451 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-10-01', 0, 0, 'moshino', '2000-08-08', 'shinom6', '2018-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS217105258741', '魏宇宁', 0, '+1 212-345-6600', 2, '909029463464059538', '272 Bank Street Suite 38, New York, NY 10014, United States', '1987-11-22', 0, 0, 'weiyu1020', '2020-08-16', 'wei3', '2012-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS353249489466', '藤原陽太', 1, '+86 193-6755-9018', 3, '893343984623083005', 'Room 26, 135 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1990-03-15', 0, 0, 'yotafujiw1940', '2015-07-29', 'yotafuj1', '2014-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS018686436896', '村田詩乃', 0, '+81 70-6372-3182', 0, '447446907982142950', '日本東京港区東新橋一丁目5番4号16号室', '1990-09-10', 0, 0, 'muratashino3', '2019-07-13', 'shinm', '2000-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS779315901339', '山崎結翔', 0, '+86 769-635-2311', 3, '802115890594385996', 'No.43 building, 297 Shanhu Rd, Dongguan, China', '1989-12-05', 0, 0, 'yyamazaki88', '2005-11-14', 'yyuito6', '2008-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS882907615951', 'Brian Ward', 1, '+44 7959 422937', 3, '454615204216011704', 'Unit 9, Oxford Eco Centre, 826 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-11-07', 0, 0, 'brianw', '2019-06-17', 'brward612', '2014-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS967470527369', 'Rita Marshall', 0, '+81 80-5252-1082', 0, '690414376220597536', '日本なごやし北区楠味鋺三丁目80番3号39階', '1996-05-13', 0, 0, 'marshallri', '2013-01-31', 'mrita2', '2017-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS866057090210', '冯詩涵', 0, '+81 80-7734-4399', 2, '359767025109859729', 'Rm. 13, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-18', 0, 0, 'shihf', '2001-08-25', 'feng10', '2012-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS250974096946', 'Janet Reyes', 1, '+1 312-258-0379', 1, '536846808418374640', '357 Rush Street Suite 11, Chicago, IL 60611, United States', '1994-08-21', 0, 0, 'rjan', '2001-02-01', 'janetreyes', '2008-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS101804245507', '邱宇宁', 1, '+44 7146 750044', 1, '175767205196542657', 'No.30 Main building, 882 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-09-27', 0, 0, 'qiuyuni', '2014-04-07', 'yuniqiu', '2018-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS465540849335', '楊浩然', 1, '+81 90-4249-0595', 2, '363241895155178392', 'Rm. 50, 6-1-10, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1994-02-05', 0, 0, 'yeunghoyin', '2000-10-22', 'hoyinyeun', '2013-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS503545439681', 'Douglas Martin', 0, '+44 (116) 518 4156', 3, '639342334558825426', 'Flat 47, 24 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1985-01-19', 0, 0, 'dougmartin4', '2012-04-21', 'mdougl10', '2021-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS837982703400', '區發', 1, '+81 66-466-9719', 1, '133435906818769616', '39F, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1994-02-25', 0, 0, 'fau62', '2019-02-20', 'aufat', '2008-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS948734113215', '劉永權', 1, '+1 718-298-8085', 1, '959867448872549394', '109 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-01-31', 0, 0, 'lauwk99', '2001-12-17', 'wingkuenl', '2007-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS209948872993', '武田明菜', 1, '+44 5183 444083', 4, '286788591924163962', 'Unit 30, Oxford Eco Centre, 375 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-24', 0, 0, 'takakina', '2005-01-11', 'takeakin', '2018-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS687469834310', '福田花', 0, '+81 66-751-7803', 4, '693402596382782522', '43F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1999-02-12', 0, 0, 'hanfukuda7', '2002-02-01', 'hanafuku', '2012-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS247653261135', '松田美月', 0, '+86 155-8934-7344', 1, '383371504712519335', '中国东莞坑美十五巷203号华润大厦28室', '1994-06-23', 0, 0, 'mam', '2004-10-12', 'mitsukim', '2009-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS989041947133', '山崎陸', 0, '+81 90-1469-3328', 1, '311925988945940796', '日本おおさかし西成区出城一丁目1番19号34階', '1991-09-03', 0, 0, 'rikuya1941', '2008-09-25', 'yamazakiriku513', '2000-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS909990311227', '刘云熙', 0, '+81 70-3805-7425', 3, '375569420983133037', 'Rm. 6, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-03-07', 0, 0, 'yunxiliu6', '2007-10-07', 'liyunx', '2004-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS396691738435', 'Emily Rose', 0, '+81 90-8074-0283', 2, '692159002457024274', '日本なごやし熱田区千年二丁目5番7号32階', '1996-10-01', 0, 0, 'emilrose', '2013-08-24', 'emilyr', '2007-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS544888141888', '贾杰宏', 0, '+86 20-6502-0825', 0, '628793173050270914', '中国广州市白云区小坪东路342号11栋', '1989-08-15', 0, 0, 'jj311', '2000-08-29', 'jiaj', '2001-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS093700576160', '桜井拓哉', 1, '+81 70-3976-0380', 1, '962376284586714058', '日本札幌豊平区豊平三条十三丁目3番7号47階', '1996-04-29', 0, 0, 'takuyasakurai', '2007-11-18', 'takuya1', '2018-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS461003284817', '梅朝偉', 0, '+81 90-5667-0828', 2, '290571307079277495', '日本おおさかし西成区天神ノ森二丁目1番3号10階', '1997-03-07', 0, 0, 'muichiuwai', '2003-04-15', 'chiuwaimui', '2021-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS549799338661', '阎子异', 1, '+86 173-0265-3955', 1, '083099022836444149', '中国成都市锦江区人民南路四段170号12栋', '1988-08-09', 0, 0, 'ziyiyan', '2013-03-25', 'ziyiya', '2009-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS963509029402', '何嘉伦', 1, '+81 66-057-7169', 0, '735939156664993680', 'Rm. 19, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-10-12', 0, 0, 'jialhe6', '2017-08-19', 'hejial', '2019-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS301503303418', '狄明', 1, '+81 3-7046-6037', 2, '051938992650525515', '日本東京港区東新橋一丁目5番12号37階', '1998-03-31', 0, 0, 'ti51', '2011-07-15', 'mingt', '2019-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS026357928062', '有村凛', 0, '+1 718-329-3587', 2, '835957003105612377', '929 1st Ave Apartment 17, Brooklyn, NY 11220, United States', '1991-03-28', 0, 0, 'arimura201', '2020-06-25', 'arimura106', '2015-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS633418721960', 'Carrie Aguilar', 0, '+81 52-487-9474', 3, '180303636114814388', 'Rm. 50, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1994-07-15', 0, 0, 'aca1', '2021-05-01', 'aguilarcarri117', '2009-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS065461692632', 'Charles Coleman', 0, '+44 (20) 2484 7564', 0, '547232230045477806', 'Flat 31, 648 Hanover Street, London, W1S 1YD, United Kingdom', '1996-01-21', 0, 0, 'colemancharles', '2004-01-05', 'charlescol', '2002-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS208376322230', '朱云熙', 1, '+86 755-170-5409', 2, '280615599549326552', '13F, 680 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-09-22', 0, 0, 'zhu1109', '2016-02-16', 'yunxiz1008', '2017-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS640122004270', '前田蒼士', 0, '+44 (1865) 20 0600', 2, '941827984215949317', 'No.17 Main building, 189 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-08-23', 0, 0, 'aoshi3', '2004-12-18', 'aoshimaeda', '2020-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS786850709722', '菅原明菜', 0, '+1 213-150-3148', 0, '933326987921176221', '897 Alameda Street Suite 41, Los Angeles, CA 90002, United States', '1987-08-20', 0, 0, 'sugawara1', '2011-03-28', 'akinasu', '2017-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS889772357168', '郝子韬', 0, '+86 193-7104-8299', 4, '339235761706874480', '中国北京市東城区東直門內大街824号华润大厦19室', '1987-10-19', 0, 0, 'hazitao7', '2018-10-31', 'zitaoha8', '2019-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS419942271561', 'Theresa Young', 1, '+1 213-894-5687', 4, '406780292861912003', '114 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1994-06-03', 0, 0, 'theresayoung10', '2019-09-16', 'theresayoung12', '2008-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS439625445721', '汪嘉伦', 1, '+86 28-8011-4596', 2, '128706550392358703', 'Room 12, CR Building, No.997, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-04-16', 0, 0, 'wjialun', '2019-04-19', 'jialunwa', '2014-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS497803542157', '王子韬', 1, '+81 52-607-8478', 4, '032849429756981715', '日本なごやし瑞穂区河岸町四丁目20番5号39階', '1998-12-21', 0, 0, 'wanzitao', '2009-11-28', 'wzit', '2012-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS507706536547', '苏安琪', 1, '+81 3-6025-0337', 0, '126704713381513899', '日本東京品川区東五反田五丁目2番16号3号室', '1990-04-01', 0, 0, 'anqi72', '2021-07-15', 'su528', '2021-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS354292362900', '苑杰倫', 1, '+1 838-478-1507', 3, '199236301565698215', '224 State Street Suite 38, Albany, NY 12203, United States', '1990-09-03', 0, 0, 'yuechiehlun5', '2008-12-29', 'yuechieh3', '2018-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS740839287169', 'Eugene Martinez', 0, '+86 145-3966-1075', 1, '946925051679646013', '中国广州市越秀区中山二路272号华润大厦31室', '1989-09-16', 0, 0, 'eugenemart', '2013-02-09', 'em423', '2017-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS024803893695', '福田絢斗', 1, '+81 90-7013-2586', 2, '084632233007498681', '6-kai, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1985-10-11', 0, 0, 'fukuda1116', '2015-07-21', 'afukuda328', '2008-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS265234870998', 'Bruce Fisher', 0, '+81 66-845-0596', 2, '793927836875533350', '日本おおさかし平野区加美東四丁目9番9号47階', '1992-03-22', 0, 0, 'fishbruc315', '2015-05-23', 'bfisher55', '2009-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS691112037848', 'Edith Fisher', 0, '+86 21-549-2698', 3, '123425616243114467', '9F, 826 Binchuan Rd, Minhang District, Shanghai, China', '1998-08-27', 0, 0, 'editf', '2011-07-18', 'fied', '2011-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS520467152140', '太田玲奈', 0, '+81 66-386-3862', 3, '796918443598788021', '日本おおさかし西成区天神ノ森二丁目1番19号14号室', '1988-07-21', 0, 0, 'rota', '2014-07-13', 'renot', '2003-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS003650380243', '郭安娜', 1, '+1 614-682-8073', 0, '296142109289941169', '424 Diplomacy Drive Apt 16, Columbus, GA 43228, United States', '1997-01-06', 0, 0, 'kwok73', '2021-12-30', 'onna1948', '2006-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS232250925264', '伊藤大輔', 0, '+1 212-859-4861', 1, '849496586775942621', '888 West Houston Street Suite 11, New York, NY 10014, United States', '1996-06-10', 0, 0, 'itd1217', '2010-09-26', 'daisuke10', '2004-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS031423842455', '長谷川美羽', 1, '+81 74-049-4783', 3, '184977750861914108', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-06-16', 0, 0, 'hmiu71', '2013-07-21', 'hasmiu89', '2005-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS818682511097', '松田葉月', 1, '+81 66-451-4870', 3, '521647702697244250', '12-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1987-08-08', 0, 0, 'matsuda1', '2010-02-22', 'matha', '2008-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS992352854837', '郭慧珊', 1, '+44 (151) 700 8654', 2, '178302842915916310', 'Block 49, 306 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-05-19', 0, 0, 'waisan68', '2015-08-15', 'wskwok', '2021-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS899599601592', '汪岚', 0, '+81 90-6613-7862', 3, '017449587519982197', '17-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-08-27', 0, 0, 'wanglan', '2019-02-20', 'wl7', '2015-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS708764058791', '杜致远', 0, '+44 (1223) 54 9107', 4, '488657101248975790', 'Flat 34, 207 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-05-12', 0, 0, 'zdu', '2006-05-19', 'duz', '2015-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS634262644469', '盧志明', 0, '+1 718-480-8718', 0, '122349053270703540', '381 Columbia St Apt 49, Brooklyn, NY 11231, United States', '1996-11-18', 0, 0, 'lo1962', '2003-01-20', 'lcm', '2021-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS829147065150', '工藤愛梨', 1, '+1 312-309-8500', 3, '531187344087681123', '651 Rush Street Apt 23, Chicago, IL 60611, United States', '1997-01-19', 0, 0, 'kairi', '2011-08-18', 'kudo1', '2015-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS288936197884', '姜杰宏', 0, '+86 755-8926-2500', 4, '403838429003159536', '中国深圳龙岗区学园一巷647号17室', '1996-10-05', 0, 0, 'jiejian', '2004-03-31', 'jiehongj', '2021-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS917759024170', '宮本桜', 1, '+81 80-0756-9017', 0, '333452027622435330', '日本おおさかし東住吉区東田辺三丁目27番4号9階', '1994-02-15', 0, 0, 'sakuramiya718', '2014-01-18', 'smiya3', '2011-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS225123483673', '钱杰宏', 1, '+86 755-2713-2002', 3, '943854798302318976', 'No.21 building, 733 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-08-22', 0, 0, 'qian5', '2006-07-29', 'jiehongq', '2019-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS689853608079', '原田健太', 0, '+86 149-6906-6713', 2, '242929068241393185', '36F, 899 Shennan Ave, Futian District, Shenzhen, China', '1995-03-12', 0, 0, 'harada506', '2002-12-06', 'haradkenta', '2021-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS293142921788', '楊家輝', 0, '+1 330-157-7015', 3, '135635133514716657', '57 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1998-08-26', 0, 0, 'kafaiyeung414', '2007-03-05', 'kafai1104', '2008-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS332842758433', '梁云熙', 1, '+44 5890 679973', 0, '867099261887567906', 'Flat 3, 840 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-06-23', 0, 0, 'yunxilia1', '2012-08-20', 'liangy', '2001-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS277354039998', '譚浩然', 1, '+1 718-094-2697', 2, '310145633316082951', '260 Bergen St Apt 20, Brooklyn, NY 11217, United States', '1985-11-10', 0, 0, 'tahy', '2000-12-31', 'tamhy44', '2002-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS454118778671', '坂本絢斗', 0, '+86 165-1856-4130', 1, '189751561084708191', '中国中山京华商圈华夏街707号23栋', '1998-04-14', 0, 0, 'ayatsakamoto', '2002-08-17', 'sakamotoayat', '2008-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS665044882602', 'Russell Stone', 1, '+1 838-625-0046', 0, '543367588354474357', '949 Central Avenue Suite 23, Albany, NY 12206, United States', '1997-11-08', 0, 0, 'stru118', '2005-12-08', 'russ', '2017-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS597138086672', '萧子异', 1, '+86 28-076-9677', 3, '304202884084580825', 'Room 30, CR Building, 575 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1997-04-30', 0, 0, 'ziyixiao6', '2015-03-22', 'ziyxiao4', '2015-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS226612466125', '山口玲奈', 0, '+44 5779 589367', 1, '546474846717975632', 'Block 13, 199 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-04-07', 0, 0, 'yaren01', '2005-03-17', 'renayamaguchi', '2020-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS182828784404', '江慧珊', 0, '+86 20-840-8224', 4, '148549153040549965', '21F, 97 Tianhe Road, Tianhe District, Guangzhou, China', '1996-09-10', 0, 0, 'kongws', '2015-06-25', 'kws', '2012-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS249284012749', '朱國權', 1, '+86 171-8341-5423', 2, '677784335376941336', 'No.46 building, 835 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-09-07', 0, 0, 'chukwokkuen4', '2020-09-28', 'kwokch809', '2006-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS116412212830', '區小慧', 1, '+44 7058 315916', 4, '527769296885223937', 'Flat 28, 788 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-04-07', 0, 0, 'siuwaiau6', '2016-10-20', 'ausiu', '2009-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS486682036651', '蔡力申', 0, '+81 70-1426-1888', 2, '787708024560651865', '日本ならし学園南三丁目9番9号30号室', '1987-06-27', 0, 0, 'choi2', '2015-03-12', 'choiliksun2', '2010-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS378232587866', '吳詩君', 1, '+81 70-0169-3494', 0, '013476453571560632', '日本ならし学園南三丁目9番18号38号室', '1986-08-13', 0, 0, 'ng123', '2007-02-28', 'szekwan2', '2007-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS642221964279', '許國明', 0, '+44 (116) 058 4348', 3, '502196674560662432', 'No.34 Main building, 401 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-03-07', 0, 0, 'kwokminghui', '2015-05-31', 'kmhui59', '2016-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS093366992251', '竹内陽太', 0, '+81 90-3849-7089', 3, '790831979785658625', '日本ならし大和郡山市本庄町一丁目1番3号6階', '1989-09-10', 0, 0, 'yota9', '2017-04-08', 'takeuyot', '2017-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS124644302639', '江璐', 0, '+1 614-745-7221', 3, '712389031956970849', '312 East Alley Suite 31, Columbus, GA 43201, United States', '1991-01-24', 0, 0, 'ljiang', '2009-03-07', 'jianglu', '2001-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS279581781876', '劉慧琳', 1, '+86 162-0196-8287', 3, '684828019754649249', 'No.6 building, 945 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-04-17', 0, 0, 'lawailam', '2014-08-26', 'lau5', '2007-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS032480265485', '斉藤聖子', 1, '+81 70-8980-9484', 3, '673404940071202169', '20-kai, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1991-05-30', 0, 0, 'seikosait', '2013-12-17', 'saito1951', '2003-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS085921285133', '方朝偉', 1, '+44 7269 300737', 4, '430237122297161402', 'Unit 6, Oxford Eco Centre, 628 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-01-03', 0, 0, 'cwfong', '2017-10-06', 'cwfong', '2019-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS247635521352', '有村美緒', 0, '+44 (161) 181 2345', 3, '752342500332909952', 'Block 30, 160 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-01-16', 0, 0, 'arimi14', '2006-11-20', 'arimurami', '2003-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS001291879607', '胡晓明', 0, '+81 80-4334-9247', 0, '848679754159005508', '14F, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-08-02', 0, 0, 'xiaoming9', '2018-08-10', 'hux', '2012-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS090738353165', '周國明', 0, '+81 52-747-7333', 1, '178745701747295371', 'Rm. 3, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1992-10-27', 0, 0, 'kmchow', '2019-07-15', 'chow64', '2005-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS219531557674', '上野光', 0, '+81 70-2138-2782', 1, '770887459684664459', '日本なごやし守山区瀬古東二丁目171番17号29階', '1998-06-02', 0, 0, 'uenohikaru', '2004-05-09', 'hu47', '2018-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS939184203048', '阎晓明', 1, '+86 151-8320-6354', 1, '826534650748866279', '中国中山天河区大信商圈大信南路29号华润大厦22室', '1992-12-01', 0, 0, 'yanx223', '2018-07-20', 'yaxiaoming', '2000-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS012605414431', '汤子韬', 0, '+81 3-0591-4801', 3, '288416250295672461', '48-kai, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-08-06', 0, 0, 'tanzi', '2000-12-22', 'zitang', '2007-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS357989819587', '鄭家玲', 0, '+86 28-930-5624', 2, '505350261636236502', 'Room 22, 251 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-05', 0, 0, 'klcheng', '2017-09-05', 'chekaling', '2012-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS527621757465', '曹國權', 1, '+81 66-878-6816', 1, '938071456611939383', 'Rm. 12, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1987-03-10', 0, 0, 'cho1', '2012-09-07', 'chokw62', '2006-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS407129379974', '梁子韬', 1, '+1 213-162-1406', 0, '949196865939210596', '527 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-01-17', 0, 0, 'liangzitao1125', '2018-11-15', 'zil', '2003-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS081534425818', '罗宇宁', 1, '+81 52-912-7138', 2, '240127094336885039', '日本なごやし北区楠味鋺三丁目80番4号34階', '1990-12-31', 0, 0, 'ly10', '2018-09-07', 'yuningluo1115', '2008-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS850437187012', 'Peggy Aguilar', 0, '+86 178-5309-9143', 1, '865832533125570666', 'Room 38, CR Building, 476 Kengmei 15th Alley, Dongguan, China', '1991-12-10', 0, 0, 'peggyag', '2004-02-14', 'agpeg406', '2006-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS960168532707', 'Lois Jenkins', 1, '+1 330-729-0310', 3, '947979526638082603', '839 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1997-05-07', 0, 0, 'jlois', '2004-09-12', 'loisjenkins1230', '2000-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS694972725641', '桜井七海', 0, '+81 11-486-6256', 3, '297832720489259477', '31F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-12-05', 0, 0, 'sakunanami', '2016-02-27', 'sakurainanami', '2003-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS458234094395', '高發', 1, '+44 7986 245793', 1, '013149050388977191', 'No.33 Main building, 99 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-01-05', 0, 0, 'kaofat', '2002-10-20', 'kaofa3', '2008-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS198781334816', '村田健太', 0, '+81 90-7096-9084', 3, '311639712257677892', 'Rm. 33, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-05-11', 0, 0, 'kmurata', '2011-08-01', 'muratak9', '2011-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS899172636357', '中山陽菜', 0, '+86 755-4795-4930', 2, '263034993948933594', 'Room 26, CR Building, 865 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-10-15', 0, 0, 'hinana', '2001-04-10', 'hina3', '2003-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS246555736771', '小島陽太', 1, '+81 80-2854-5512', 4, '825784148665224808', '3-kai, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-10-02', 0, 0, 'yotkojima1127', '2014-05-07', 'yk1019', '2001-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS871658024770', '上田光莉', 1, '+86 10-9484-8859', 2, '538708928014188445', 'No.43 building, 991 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-10-26', 0, 0, 'uehikari', '2017-08-18', 'hikaue', '2021-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS452582844778', 'Miguel Bailey', 1, '+86 147-1873-2980', 1, '513375312846270755', '中国成都市成华区玉双路6号454号24栋', '1986-05-19', 0, 0, 'mbailey', '2009-10-03', 'migubailey47', '2013-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS679066237397', '胡麗欣', 0, '+81 11-575-6036', 1, '812185610886775741', '日本札幌豊平区豊平三条十三丁目3番11号22階', '1989-08-27', 0, 0, 'wulaiyan', '2021-01-13', 'laiyanwu1103', '2013-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS872679476549', '橋本光', 1, '+81 52-623-7278', 2, '730941674342399003', '日本なごやし北区楠味鋺三丁目80番1号15階', '1996-05-02', 0, 0, 'hashimotoh221', '2020-01-12', 'hikaruhashimoto', '2020-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS515278569756', 'Rachel Gray', 1, '+86 10-2984-5572', 1, '477196410252459230', 'No.16 building, 489 Sanlitun Road, Chaoyang District, Beijing, China', '1989-12-07', 0, 0, 'grayrachel209', '2003-10-25', 'rgray7', '2018-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS106751933564', 'Edith Black', 1, '+81 66-262-1369', 3, '865274589526465954', '25-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-01-26', 0, 0, 'blaced72', '2015-07-01', 'blackedith', '2001-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS893073823892', '蘇頴思', 1, '+86 769-2166-5860', 2, '851578102803117239', '中国东莞坑美十五巷929号华润大厦4室', '1996-01-02', 0, 0, 'sowi4', '2022-01-24', 'wingszes', '2004-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS022109966490', '石睿', 1, '+81 80-8180-6303', 0, '033209631274678769', '日本なごやし熱田区千年二丁目5番20号17号室', '1986-07-09', 0, 0, 'shiru', '2009-02-19', 'shrui', '2012-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS955022707718', 'Clifford Wood', 1, '+1 614-286-5106', 1, '460663665270463962', '738 East Cooke Road Apartment 8, Columbus, GA 43214, United States', '1988-02-27', 0, 0, 'cliffordwood', '2005-07-16', 'woodc', '2010-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS614234281412', '鄺德華', 0, '+1 213-240-0322', 2, '031361287533429222', '833 Wall Street Suite 43, Los Angeles, CA 90003, United States', '1997-08-22', 0, 0, 'twkwong115', '2011-11-04', 'takkw1944', '2010-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS729424296448', '孫家玲', 1, '+86 769-636-5477', 3, '716786294124130033', '中国东莞东泰五街97号27栋', '1995-06-28', 0, 0, 'hsuan2', '2011-02-20', 'kaling907', '2002-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS044795576678', 'Henry Collins', 0, '+86 21-263-3025', 2, '327485309394940508', 'Room 5, CR Building, 664 Jianxiang Rd, Pudong, Shanghai, China', '1986-03-12', 0, 0, 'henrycollins629', '2006-12-14', 'collins1010', '2021-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS278463537650', '長谷川架純', 1, '+44 5446 201589', 2, '899906691438318497', 'Block 12, 39 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-04-01', 0, 0, 'khasegawa', '2020-09-23', 'hasegawa1973', '2002-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS494630575601', '村上陽菜', 1, '+86 10-8587-8139', 2, '835657593169946769', 'Room 38, 732 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-10-19', 0, 0, 'murakamih', '2013-02-14', 'murakamih', '2004-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS860040261304', '金安琪', 0, '+86 165-5200-8551', 0, '125544533476680016', 'No.2 building, 288 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-08-07', 0, 0, 'aj10', '2006-03-04', 'jinanqi', '2018-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS079573000741', '黄睿', 0, '+81 3-3127-5640', 1, '107463190707913919', '日本東京千代田区丸の内一丁目6番7号13階', '1992-11-24', 0, 0, 'ruihuang5', '2014-04-04', 'huangrui', '2017-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS094421189633', '上野陸', 0, '+86 155-3468-5298', 2, '340902915252336425', '中国深圳罗湖区清水河一路621号42栋', '1992-06-23', 0, 0, 'ueno53', '2019-09-11', 'rikuen', '2011-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS322540745056', 'Janice Sanchez', 0, '+86 21-0807-6471', 2, '051747287089795058', 'Room 27, 624 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-06-01', 0, 0, 'janicsanchez4', '2001-12-11', 'jas', '2009-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS940276484464', '清水和真', 1, '+81 11-585-3752', 4, '370209077108511113', '45-kai, 13-3-1 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-07-02', 0, 0, 'shkazuma', '2006-11-02', 'kazumashimizu509', '2001-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS728732553552', 'Sara Salazar', 0, '+81 3-8536-4619', 0, '275668724747618182', '日本東京品川区東五反田五丁目2番8号34号室', '1992-06-12', 0, 0, 'salazarsara', '2002-03-12', 'sarasala', '2003-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS581420049781', '青木百恵', 1, '+86 178-3061-0623', 2, '072457362605267265', '中国东莞环区南街二巷37号华润大厦21室', '1991-08-13', 0, 0, 'aoki10', '2020-12-15', 'am6', '2020-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS867292977239', '孔詩涵', 1, '+81 70-3803-6985', 4, '768034409208574238', '4F, 3-27-20 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-01-03', 0, 0, 'konshihan', '2012-11-05', 'shihkon', '2019-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS329470674373', '向德華', 0, '+81 52-810-0629', 2, '525373591304210933', 'Rm. 20, 14 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-01-23', 0, 0, 'takwahheung', '2015-08-21', 'takwahh', '2007-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS937538373564', 'Gerald Fernandez', 0, '+81 52-880-6412', 0, '839463238761153952', '日本なごやし守山区瀬古東二丁目171番10号20階', '1992-12-06', 0, 0, 'geralfer', '2008-08-25', 'ferngerald01', '2020-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS085865514038', '方發', 0, '+86 28-015-8584', 2, '510256787840128495', '中国成都市成华区双庆路581号7栋', '1989-09-23', 0, 0, 'fongfa', '2012-01-23', 'fatfong', '2005-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS418131717004', 'Shannon Weaver', 0, '+1 212-467-4610', 3, '399041018964314388', '638 Bank Street Apartment 10, New York, NY 10014, United States', '1989-11-18', 0, 0, 'shannonweav', '2017-03-15', 'weavershannon10', '2003-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS942960633516', '宋致远', 1, '+86 20-730-7911', 1, '978933921145912307', '中国广州市越秀区中山二路408号16栋', '1992-01-28', 0, 0, 'zhiyuan55', '2006-02-23', 'zhis3', '2020-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS310702927725', '尹云熙', 0, '+44 5309 079269', 1, '345333930270571134', 'No.24 Main building, 245 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-08-12', 0, 0, 'yunxi98', '2011-06-17', 'yunxi08', '2015-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS878458841394', '吕杰宏', 1, '+81 70-1576-7865', 3, '772095562617547671', '8-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-30', 0, 0, 'jil10', '2003-01-21', 'jilu1973', '2001-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS418347453357', 'Joyce Sanchez', 1, '+81 90-1473-6284', 1, '629420852732702112', '7F, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1988-08-27', 0, 0, 'sanchezj', '2014-01-03', 'joycesanchez', '2016-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS526589190335', '江秀英', 1, '+81 70-1642-4266', 2, '196001843374703940', '日本おおさかし平野区加美東四丁目9番17号8階', '1990-01-30', 0, 0, 'xiuying2005', '2008-12-09', 'xiuyingjia85', '2012-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS192388604014', '今井一輝', 0, '+44 (1865) 90 3716', 3, '966429444165835686', 'Unit 19, Oxford Eco Centre, 279 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-12-06', 0, 0, 'ikimai9', '2017-08-02', 'imaikki606', '2012-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS302509606480', '小川光莉', 1, '+81 66-942-4189', 4, '761924053859799948', '日本おおさかし西成区出城一丁目1番19号28階', '1986-06-06', 0, 0, 'ogawahikar', '2004-08-29', 'oh1995', '2021-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS493221359715', 'Judy White', 0, '+81 74-862-9240', 3, '267427437022405761', '9F, 3-9-17 Gakuenminami, Nara, Japan', '1996-01-03', 0, 0, 'judy3', '2017-08-14', 'judywhite', '2001-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS976016097908', 'Willie Soto', 0, '+86 160-6823-2740', 2, '627664616030954516', '中国北京市西城区复兴门内大街161号华润大厦5室', '1991-06-15', 0, 0, 'sowil', '2011-12-09', 'swillie', '2002-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS678947198860', 'Norma Carter', 0, '+86 170-9818-6741', 0, '395884416607886898', '中国北京市延庆区028县道353号16楼', '1987-12-23', 0, 0, 'cartnorma52', '2015-07-05', 'carnorma', '2008-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS964966434486', 'Jessica Stevens', 1, '+44 5242 467658', 1, '995774503106666153', 'Flat 7, 991 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-10-15', 0, 0, 'jstevens', '2017-07-09', 'sjess', '2017-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS853536013497', '原聖子', 0, '+44 5523 569360', 3, '649048079050222435', 'Flat 31, 757 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-02-28', 0, 0, 'harase', '2004-09-16', 'hara1975', '2015-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS882660105021', 'Carmen Taylor', 1, '+44 (151) 783 9818', 3, '428654739026049771', 'Block 38, 200 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-04-03', 0, 0, 'tcarmen524', '2002-07-24', 'taylor113', '2013-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS162145318545', '孔杰宏', 1, '+86 20-817-5675', 3, '469351963621991270', '中国广州市越秀区中山二路246号31栋', '1987-09-08', 0, 0, 'kong4', '2021-05-04', 'jiehong428', '2008-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS203386347610', 'Marilyn Chavez', 1, '+81 52-788-2549', 1, '992281393789699350', '日本なごやし北区楠味鋺三丁目80番6号7階', '1989-02-27', 0, 0, 'marilynchav', '2002-12-22', 'marilyn1223', '2003-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS540734076155', 'George White', 0, '+1 213-366-3407', 1, '652747937708365311', '381 Grape Street Apt 22, Los Angeles, CA 90002, United States', '1990-04-18', 0, 0, 'george77', '2005-02-04', 'whitegeorge', '2000-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS982083895802', '呂榮發', 0, '+1 212-737-8951', 0, '058441548315455167', '222 West Houston Street Suite 47, New York, NY 10014, United States', '1991-10-17', 0, 0, 'lwf9', '2007-03-28', 'wflui', '2007-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS266554952841', 'Nathan Holmes', 1, '+81 80-0321-0873', 4, '364429945658993795', '日本なごやし守山区瀬古東二丁目171番13号34号室', '1989-08-07', 0, 0, 'holmn1', '2013-02-19', 'holmesn', '2010-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS011636316186', '李震南', 0, '+1 718-325-2337', 1, '494958337872541023', '282 Columbia St Suite 27, Brooklyn, NY 11231, United States', '1992-07-20', 0, 0, 'lizhennan', '2008-09-04', 'lizh', '2015-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS317510557734', 'Anne Diaz', 0, '+81 80-8210-1185', 3, '605565037021827638', '42-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1990-11-27', 0, 0, 'dia1212', '2012-06-23', 'annediaz', '2004-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS263084384142', 'Lillian Jones', 0, '+86 21-559-9011', 2, '473681253167626784', 'Room 5, 37 Jianxiang Rd, Pudong, Shanghai, China', '1993-06-12', 0, 0, 'jol7', '2005-02-10', 'lillianj', '2005-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS317733151118', '高橋樹', 1, '+81 70-2299-0482', 1, '011857658842734310', '48F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-08-14', 0, 0, 'takitsuki', '2007-03-07', 'it9', '2022-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS364193298071', '斎藤架純', 1, '+86 139-0561-0967', 3, '771181517086485336', '中国中山天河区大信商圈大信南路256号46室', '1994-05-28', 0, 0, 'kasumi8', '2000-12-11', 'kasumis', '2016-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS073215254620', '魏杰宏', 1, '+81 70-8083-4541', 0, '346594917137892044', '日本札幌豊平区豊平三条十三丁目3番18号7号室', '1998-07-17', 0, 0, 'wjiehong2008', '2016-09-06', 'weiji20', '2015-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS247686198112', '吴子韬', 0, '+81 52-514-0807', 0, '875474015492257944', '日本なごやし北区楠味鋺三丁目80番9号43階', '1992-02-18', 0, 0, 'wuz205', '2020-04-29', 'zwu', '2007-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS110837240314', '方惠妹', 0, '+44 5346 566915', 1, '440465022301585884', 'Block 19, 222 Maddox Street, London, W1S 1PU, United Kingdom', '1985-05-05', 0, 0, 'fong208', '2005-07-19', 'huimeifong6', '2007-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS148382159552', '董璐', 0, '+86 755-785-7581', 2, '095728470190673835', 'No.28 building, 665 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-03-15', 0, 0, 'dong2', '2019-02-09', 'dlu6', '2019-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS142065953311', '黎秀英', 0, '+44 (151) 150 1844', 1, '313459972667925963', 'Unit 30, Oxford Eco Centre, 435 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1985-09-12', 0, 0, 'xiuyingli', '2011-03-18', 'lx10', '2010-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS144174320833', 'Anthony Harrison', 1, '+81 70-8703-5629', 1, '372137063145817468', '日本なごやし守山区瀬古東二丁目171番2号22号室', '1993-09-16', 0, 0, 'harrisonanthony7', '2014-05-28', 'harrisona', '2020-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS186128912113', '赵子异', 1, '+86 755-7452-2161', 3, '949765680482774682', 'Room 36, CR Building, 474 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-03-10', 0, 0, 'ziyi9', '2012-08-30', 'zziy', '2018-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS294523138297', '邓璐', 1, '+86 132-8683-4462', 4, '118315000222577368', '23F, 857 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-12-27', 0, 0, 'denglu', '2001-09-19', 'deng708', '2002-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS230076475636', '宮本花', 1, '+81 3-1606-5583', 3, '025228004266674373', '日本東京千代田区丸の内一丁目6番11号39階', '1998-07-05', 0, 0, 'miyamotohan91', '2006-05-07', 'hana93', '2019-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS651711590838', 'Dennis Crawford', 1, '+81 90-0647-8076', 2, '391366113865643815', 'Rm. 44, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-03-21', 0, 0, 'crd', '2022-02-12', 'dennc4', '2013-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS943582382501', '顧惠妹', 0, '+1 212-585-8349', 1, '666573412220122767', '701 West Houston Street Suite 29, New York, NY 10014, United States', '1998-02-24', 0, 0, 'hmk', '2020-08-30', 'ku3', '2011-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS689636337026', '崔家輝', 0, '+44 7634 077068', 3, '635396951674858728', 'No.44 Main building, 699 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-08-26', 0, 0, 'choikafai', '2005-09-15', 'kafaichoi', '2005-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS112896203682', '程云熙', 1, '+86 21-4097-2421', 3, '361300602823982823', '中国上海市浦东新区橄榄路643号48楼', '1988-02-14', 0, 0, 'chyun', '2010-03-05', 'yunxi1944', '2009-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS728510233982', 'Joel Gonzalez', 0, '+86 755-498-6487', 3, '772654410527941774', '中国深圳福田区深南大道629号10号楼', '1991-05-19', 0, 0, 'joel77', '2016-09-19', 'joegonz', '2007-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS059474893897', '钟子异', 0, '+86 139-9458-9777', 2, '698137898629947880', '中国上海市闵行区宾川路653号华润大厦37室', '1998-08-26', 0, 0, 'ziz1020', '2014-06-08', 'zhongziyi4', '2016-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS603326164840', '福田彩乃', 0, '+86 10-487-6083', 2, '403180353031276868', '中国北京市延庆区028县道773号8室', '1997-07-16', 0, 0, 'ayafukuda40', '2010-03-10', 'ayano5', '2002-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS363391455264', '遠藤葵', 0, '+44 5928 737280', 1, '784856093534698059', 'Unit 16, Oxford Eco Centre, 377 Portland St, Manchester, M1 3LA, United Kingdom', '1988-09-13', 0, 0, 'endoaoi', '2012-05-26', 'endoaoi', '2001-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS539037958502', '岡田拓哉', 1, '+1 718-717-2785', 0, '662587390031394597', '534 Columbia St Apartment 9, Brooklyn, NY 11231, United States', '1990-07-13', 0, 0, 'takuyaokada13', '2016-01-10', 'tokada503', '2009-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS048845748368', '李詩涵', 1, '+1 213-845-7377', 2, '535266545761006418', '455 Figueroa Street Apartment 44, Los Angeles, CA 90037, United States', '1994-11-12', 0, 0, 'lishihan', '2007-07-19', 'lishi', '2004-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS581356997455', '菅原美咲', 1, '+86 20-6195-8440', 1, '750150010832610491', '中国广州市越秀区中山二路640号40楼', '1991-08-19', 0, 0, 'sugami2', '2021-01-30', 'missugawara', '2007-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS510291850539', '曾岚', 0, '+86 175-8218-8425', 3, '469369694640624540', '中国上海市浦东新区橄榄路51号45楼', '1989-02-27', 0, 0, 'lanz', '2012-11-26', 'zl8', '2016-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS175600003389', '邹震南', 0, '+81 3-4960-5172', 4, '331253604488845420', '日本東京千代田区丸の内一丁目6番1号13階', '1993-08-27', 0, 0, 'zhennan9', '2003-12-23', 'zouz', '2001-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS617473884673', '郭杰宏', 1, '+1 213-471-4676', 1, '953700939497771112', '837 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1998-01-11', 0, 0, 'jieg', '2015-10-05', 'guojiehong48', '2012-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS765428620147', '戚明', 1, '+81 52-498-0807', 2, '168660029919070946', '日本なごやし瑞穂区河岸町四丁目20番13号17号室', '1992-07-30', 0, 0, 'mingchic', '2020-08-18', 'ming6', '2009-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS988202105042', 'Pauline Kim', 0, '+1 330-626-2298', 2, '215607325119997753', '783 Ridgewood Road Suite 43, Akron, OH 44321, United States', '1991-02-05', 0, 0, 'kimpau5', '2011-03-16', 'kpa4', '2016-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS378450195904', 'Joshua Rodriguez', 0, '+81 3-0660-7774', 3, '921207336566214966', '日本東京千代田区丸の内一丁目6番6号9階', '1993-11-21', 0, 0, 'joshuarodriguez', '2018-04-02', 'josrodriguez', '2012-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS775873836443', 'Kathleen Cox', 1, '+86 20-342-5968', 0, '533410653640942428', '中国广州市海珠区江南西路643号11栋', '1985-09-25', 0, 0, 'kathcox', '2014-07-23', 'coxkathleen', '2007-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS412959816979', 'Marcus Gardner', 1, '+44 (1223) 64 7027', 0, '084070369377107987', 'Unit 42, Oxford Eco Centre, 638 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-08-10', 0, 0, 'marcus1019', '2000-07-13', 'marcusgardner', '2006-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS770956805231', '中野花', 1, '+86 140-3149-5576', 1, '335388787323510443', '中国成都市锦江区红星路三段925号11室', '1985-05-25', 0, 0, 'hnakano', '2007-07-23', 'hanan', '2020-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS553357687541', 'Catherine Hunt', 0, '+86 755-979-8986', 2, '817280687289721108', '中国深圳龙岗区布吉镇西环路274号28楼', '1991-04-16', 0, 0, 'catherine709', '2009-04-25', 'catherine1', '2013-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS595922690494', '林梓軒', 1, '+86 175-6243-8460', 1, '275324440199971895', '中国上海市浦东新区健祥路966号29楼', '1995-06-07', 0, 0, 'lth', '2009-11-18', 'lam74', '2010-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS152219332630', '柴田陽太', 1, '+81 90-0150-3418', 1, '484019097772774898', '日本なごやし北区楠味鋺三丁目80番4号41号室', '1991-08-23', 0, 0, 'yoshibata', '2001-10-23', 'yoshibata7', '2019-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS554085921559', 'Rose Herrera', 0, '+1 614-903-0974', 3, '149419400928294550', '113 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1995-06-01', 0, 0, 'herreraro', '2005-04-05', 'rher414', '2017-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS627170698942', '任梓軒', 0, '+81 11-332-8755', 4, '132288668477401017', '日本札幌豊平区豊平三条十三丁目3番15号33階', '1995-02-06', 0, 0, 'tszhin1', '2007-06-11', 'thyam', '2015-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS416587596470', '薛詩涵', 0, '+81 11-425-2382', 4, '691900664889871775', '41-kai, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-01-06', 0, 0, 'shihx910', '2008-12-03', 'sxue1215', '2017-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS924035290147', '應梓晴', 0, '+81 70-3249-8496', 4, '281221243693031208', 'Rm. 47, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1992-11-29', 0, 0, 'tszchingying17', '2018-10-08', 'ying4', '2002-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS606548901378', 'Nathan Hall', 1, '+81 70-9170-1245', 3, '835870420870005484', '日本おおさかし東住吉区東田辺三丁目27番6号14階', '1994-09-19', 0, 0, 'nathah2', '2011-10-28', 'hallna1995', '2015-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS989466236401', '羅志明', 0, '+86 10-523-0542', 2, '293698252593515507', '中国北京市东城区东单王府井东街468号5栋', '1985-07-09', 0, 0, 'lo1', '2004-11-07', 'lochiming', '2015-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS265283225111', 'Daniel Owens', 0, '+86 198-8645-7620', 2, '383141717297549569', 'Room 13, 16 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-10-06', 0, 0, 'danieowen82', '2017-05-08', 'owensdaniel5', '2005-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS973102323935', '山下七海', 0, '+86 10-435-4075', 4, '489900720306353474', '中国北京市西城区复兴门内大街405号3楼', '1995-09-22', 0, 0, 'nanamy', '2021-06-22', 'nanamiyamashita', '2001-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS562989408003', '姜晓明', 0, '+86 171-7451-7614', 3, '027240280219158218', '中国上海市浦东新区健祥路355号9楼', '1993-04-27', 0, 0, 'jxiaoming', '2015-05-05', 'jiangx7', '2021-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS403092347202', '龙杰宏', 1, '+1 213-953-2113', 3, '751988498360519442', '400 Sky Way Apartment 43, Los Angeles, CA 90043, United States', '1999-01-22', 0, 0, 'longj', '2001-06-15', 'jilon', '2005-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS082514894930', '陈云熙', 1, '+86 10-818-9660', 1, '516068147008953453', 'Room 10, CR Building, 760 Yueliu Rd, Fangshan District, Beijing, China', '1989-04-01', 0, 0, 'chen2008', '2015-08-01', 'ychen', '2012-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS374205176113', '曾晓明', 1, '+1 213-373-9133', 2, '959737020496949077', '851 Alameda Street Apartment 47, Los Angeles, CA 90002, United States', '1994-10-18', 0, 0, 'zx1', '2013-12-09', 'zenxiaoming45', '2015-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS812839751752', 'Peggy Johnson', 0, '+81 90-7488-2266', 3, '538943019686536697', '日本なごやし熱田区千年二丁目5番19号43階', '1986-05-26', 0, 0, 'johnsp', '2021-06-19', 'johnsonpeg', '2010-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS276351114934', '林蓮', 1, '+86 165-7742-6122', 3, '198024440133112793', 'Room 5, No. 261, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-03-19', 0, 0, 'hayashi1022', '2010-12-24', 'renh', '2003-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS871984143900', '三浦聖子', 1, '+81 52-971-3002', 0, '959963325022915055', '日本なごやし守山区瀬古東二丁目171番2号4階', '1991-12-28', 0, 0, 'seikom', '2006-08-19', 'seiko725', '2002-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS290045643670', '阎子韬', 1, '+44 7289 463727', 3, '458767097767092279', 'Unit 21, Oxford Eco Centre, 78 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-04-08', 0, 0, 'yanzita', '2011-09-09', 'zitaoyan1216', '2014-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS515218898722', '鄭思妤', 1, '+81 80-5908-0129', 2, '214730090261199825', '日本東京中央区銀座三丁目12番14号36階', '1998-09-02', 0, 0, 'chengszeyu1', '2019-03-29', 'szeyu68', '2015-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS180893943710', '段岚', 0, '+86 183-6224-5390', 3, '141605410603969470', 'Room 36, CR Building, 278 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-09-14', 0, 0, 'dlan', '2011-12-04', 'lan12', '2012-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS528767429566', '傅曉彤', 0, '+86 21-7491-5348', 1, '916335074933722402', 'Room 33, 14 Ganlan Rd, Pudong, Shanghai, China', '1990-10-14', 0, 0, 'htfu95', '2001-04-18', 'htf', '2002-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS709740203191', '孔致远', 1, '+81 74-807-3922', 1, '165481282843057655', '43-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1997-09-27', 0, 0, 'zhikong318', '2017-09-04', 'kongzhiyuan61', '2013-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS195566386211', '翁德華', 0, '+44 (121) 833 9979', 1, '571857726940992820', 'Unit 26, Oxford Eco Centre, 27 New Street, Birmingham, B2 4DB, United Kingdom', '1985-05-23', 0, 0, 'takwah1952', '2003-11-11', 'twyu', '2003-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS496317997035', 'Peter Flores', 0, '+1 838-771-9228', 4, '453423467124975628', '584 State Street 3rd Floor, Albany, NY 12203, United States', '1993-08-11', 0, 0, 'peter42', '2022-02-05', 'petflores', '2009-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS622775036682', '范子韬', 1, '+86 20-0968-7548', 3, '768565810517294577', '中国广州市海珠区江南西路335号47楼', '1993-01-14', 0, 0, 'fzitao', '2011-08-23', 'fanzitao', '2001-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS010935672658', '顾嘉伦', 1, '+1 838-126-7916', 0, '027330457628487873', '607 State Street Apartment 42, Albany, NY 12203, United States', '1998-09-29', 0, 0, 'guj', '2002-09-04', 'gujial', '2007-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS857563775351', '佐々木美羽', 1, '+86 134-6105-7945', 0, '851340746960650341', 'No.4 building, 500 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-08-23', 0, 0, 'sasaki4', '2005-06-16', 'sasakmiu', '2014-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS398883355317', '萧秀英', 0, '+86 755-2932-7154', 1, '147317184655342751', '中国深圳福田区景田东一街924号16栋', '1988-06-14', 0, 0, 'xiaoxiuying', '2012-05-25', 'xiuyingxiao', '2006-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS625449778390', 'Steve Graham', 1, '+44 5165 713400', 3, '677497646738858954', 'No.14 Main building, 128 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-10-27', 0, 0, 'grahas', '2017-10-25', 'grahams48', '2009-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS682470688639', '金子韬', 1, '+81 66-591-2106', 4, '831020562143208935', 'Rm. 49, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1986-06-08', 0, 0, 'zitjin', '2008-01-24', 'zitaojin', '2019-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS457545804388', '中山和真', 1, '+81 74-083-7949', 3, '769676489265971306', '49-kai, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-01-01', 0, 0, 'kazun', '2015-12-15', 'nkazuma', '2002-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS535947738269', '叶子异', 0, '+86 28-2005-9133', 2, '988028941039257332', '中国成都市成华区双庆路621号27楼', '1986-12-11', 0, 0, 'yziy1989', '2012-05-13', 'yziyi', '2014-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS093710834380', '佘慧敏', 0, '+1 213-606-7897', 3, '387402824900939167', '132 Grape Street Suite 30, Los Angeles, CA 90002, United States', '1992-01-09', 0, 0, 'shehwaiman', '2015-03-26', 'waimans', '2004-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS894980065045', '江宇宁', 0, '+81 52-499-6117', 3, '310882063828933878', '29F, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1996-11-28', 0, 0, 'yjian', '2016-12-30', 'jy2', '2020-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS466349602881', 'Jeff Hicks', 0, '+86 760-4485-2883', 2, '797854513325120956', 'No.23 building, 586 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-03-31', 0, 0, 'jhic', '2006-03-22', 'jeffh46', '2003-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS756122943719', '駱明詩', 1, '+86 20-5461-6586', 2, '582092417885799534', 'No.33 building, 201 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-01-04', 0, 0, 'mslok', '2014-08-25', 'mslok', '2021-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS956222597141', '黃梓軒', 1, '+86 180-5711-1973', 2, '061522884444821597', 'Room 42, 709 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-09-24', 0, 0, 'thwong', '2017-03-28', 'thwon90', '2017-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS403542526279', '鄭心穎', 1, '+44 5780 637600', 1, '258365959295121698', 'Flat 39, 647 New Street, Birmingham, B2 4DB, United Kingdom', '1988-09-06', 0, 0, 'sumwingcheng1130', '2002-01-23', 'chengsw', '2009-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS059717890675', '蔡思妤', 1, '+86 10-1681-3584', 1, '521824070917148369', '15F, 677 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-05-22', 0, 0, 'chosy', '2010-12-17', 'choi924', '2009-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS589062126243', '關安琪', 1, '+81 3-8916-9663', 1, '524816618138972537', '日本東京中央区銀座三丁目12番16号32号室', '1994-09-26', 0, 0, 'onkayk', '2009-11-12', 'kwanonkay', '2005-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS418800124628', '藤井蒼士', 1, '+86 20-236-7806', 2, '098520829517585633', 'No.40 building, 987 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-04-15', 0, 0, 'aosfuji', '2000-06-12', 'faoshi', '2017-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS273907951372', '姚安娜', 1, '+81 90-9260-1878', 1, '225182902161124800', '日本なごやし北区楠味鋺三丁目80番12号7階', '1991-11-02', 0, 0, 'yeowon2017', '2017-04-29', 'yeoonna', '2019-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS687803334775', '戴心穎', 1, '+1 212-463-6746', 0, '118205144458434359', '129 Fifth Avenue Apt 32, New York, NY 10017, United States', '1995-10-09', 0, 0, 'swda', '2002-10-14', 'swdai', '2004-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS251992253166', '中村大和', 1, '+81 80-8645-2091', 2, '065368836509467426', '45F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1990-04-11', 0, 0, 'yamatona', '2020-02-17', 'yamatonak507', '2004-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS973557115599', 'Deborah Adams', 0, '+81 80-8667-4746', 2, '339979536058134051', '日本札幌豊平区豊平三条十三丁目3番13号46階', '1985-12-19', 0, 0, 'dadams', '2018-03-03', 'adamsd59', '2010-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS349974745166', '段嘉伦', 1, '+86 760-6730-5233', 3, '001587881943849390', '中国中山乐丰六路494号39室', '1989-11-04', 0, 0, 'duanjialun', '2020-03-11', 'duanj', '2014-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS231993515548', '赵岚', 1, '+81 80-8008-1687', 4, '805429970155472803', '日本おおさかし西成区天神ノ森二丁目1番5号31号室', '1990-10-22', 0, 0, 'lanz', '2018-11-20', 'zlan', '2013-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS025962823495', 'Christine Jimenez', 1, '+44 5860 338063', 0, '592142377324114330', 'No.42 Main building, 61 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-06-22', 0, 0, 'christinej', '2006-11-25', 'chji314', '2000-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS581323111092', '楊杰倫', 1, '+81 90-3144-1086', 1, '186558625216166847', '41-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-04-08', 0, 0, 'yeung428', '2015-03-02', 'chiehlunyeung108', '2018-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS354479065321', '橋本蒼士', 0, '+86 769-815-8793', 3, '709132329160415039', '中国东莞东泰五街155号48号楼', '1995-07-22', 0, 0, 'hashiaos10', '2008-09-26', 'aoshha', '2006-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS496187253866', 'Bruce Moore', 1, '+81 70-5252-8757', 0, '309963589678974552', '41-kai, 3-9-6 Gakuenminami, Nara, Japan', '1996-05-02', 0, 0, 'moore120', '2014-03-09', 'brumoo', '2011-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS709353426578', '高德華', 0, '+81 80-4063-2426', 1, '891704329926773178', 'Rm. 38, 3-19-20 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-03', 0, 0, 'takwahkao403', '2006-01-22', 'kaotakwah', '2004-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS005215713553', '叶震南', 1, '+81 70-2537-4326', 3, '231703434891817790', '日本東京渋谷区代々木二丁目3番20号26号室', '1994-04-23', 0, 0, 'yezhennan', '2008-07-23', 'ye67', '2015-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS586685313648', '小野悠人', 1, '+1 718-975-8444', 1, '305655200596860286', '465 Nostrand Ave Apt 14, Brooklyn, NY 11216, United States', '1996-12-22', 0, 0, 'yono', '2001-01-13', 'onoyuto47', '2008-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS703939325537', 'Juan Jordan', 0, '+86 755-848-4724', 2, '856546957315285254', '中国深圳福田区深南大道262号27栋', '1993-03-20', 0, 0, 'jj9', '2020-12-12', 'jordanjuan4', '2009-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS504495151202', '房天樂', 0, '+86 755-6531-3482', 2, '572694711928655381', 'Room 2, CR Building, 67 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-08-11', 0, 0, 'fotl719', '2016-06-21', 'ftl', '2009-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS784835041465', '江子韬', 0, '+81 80-6492-9422', 2, '463809734210168503', '日本東京渋谷区代々木二丁目3番11号31階', '1991-01-08', 0, 0, 'jzit', '2019-04-08', 'zjiang', '2004-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS495971593691', '吳朝偉', 0, '+86 755-121-4190', 1, '486174277347992465', '中国深圳罗湖区田贝一路706号华润大厦31室', '1985-01-30', 0, 0, 'ngcw', '2011-11-16', 'chiuwaing', '2006-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS934187582300', 'Justin Ferguson', 1, '+44 (161) 382 3026', 3, '853364740147464037', 'No.3 Main building, 585 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-08-23', 0, 0, 'ferguju5', '2011-03-13', 'justin1207', '2010-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS934676203916', '谷口涼太', 1, '+81 52-923-0348', 1, '545898485394317458', '46-kai, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1988-11-21', 0, 0, 'ryottaniguchi2', '2021-08-05', 'tanir224', '2010-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS965125964113', '岩崎紗良', 0, '+1 838-171-8233', 1, '852267364067478578', '763 Lark Street Apt 48, Albany, NY 12210, United States', '1990-02-28', 0, 0, 'sarai923', '2016-05-01', 'iwasakisara', '2018-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS699838632455', '赵云熙', 1, '+1 838-681-6673', 0, '781945934826217704', '56 State Street Suite 21, Albany, NY 12203, United States', '1996-04-01', 0, 0, 'yunxizhao6', '2004-01-22', 'zhaoyunxi1031', '2000-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS354604295670', '邵德華', 0, '+81 70-3365-6207', 0, '318523556534794624', '11F, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-10-05', 0, 0, 'takwah11', '2015-07-14', 'siutakwah', '2012-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS239568190793', '中島絢斗', 0, '+86 28-058-3783', 2, '490302960666517477', 'No.11 building, 633 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1991-01-29', 0, 0, 'ayatonaka', '2010-07-16', 'nakajima48', '2010-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS371970051754', '林家輝', 1, '+44 (121) 009 5095', 3, '950070194528662737', 'Flat 2, 379 New Street, Birmingham, B2 4DB, United Kingdom', '1993-03-16', 0, 0, 'kfl10', '2007-11-23', 'lakafai', '2020-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS542455847002', '金子桜', 0, '+86 21-2595-5351', 4, '235251274965386146', 'No.24 building, 570 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-04-18', 0, 0, 'sak', '2013-02-22', 'ksak', '2003-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS094943374071', 'Gregory Garza', 1, '+86 194-5525-8449', 2, '370678199214201377', '46F, 620 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-06-13', 0, 0, 'garza127', '2018-08-31', 'gregogarza', '2009-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS650988732454', '汪朝偉', 1, '+81 90-0671-9906', 1, '999465171024226978', '日本札幌豊平区豊平三条十三丁目3番10号22階', '1987-06-28', 0, 0, 'wongcw', '2005-05-02', 'chiuwaiwong', '2019-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS122907547402', '馬慧嫻', 1, '+86 164-1763-0614', 2, '625431562746546732', '中国北京市延庆区028县道298号华润大厦44室', '1985-11-29', 0, 0, 'mawh', '2021-05-18', 'mawaihan8', '2019-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS125939160312', 'Cindy Medina', 1, '+44 5657 980830', 1, '791855571822368009', 'Block 4, 452 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-23', 0, 0, 'medina1121', '2009-02-25', 'mcin', '2010-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS433646013011', '江詩涵', 0, '+86 178-1351-7523', 0, '641087565094754360', 'Room 18, CR Building, 979 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-06-14', 0, 0, 'jiang71', '2002-06-03', 'jishihan', '2018-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS527553816141', 'Kevin Weaver', 0, '+1 614-476-7472', 1, '706131170717212216', '782 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1989-11-27', 0, 0, 'weake', '2018-01-02', 'wkev923', '2015-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS002688853177', 'Henry Ellis', 0, '+86 10-569-5600', 1, '794628303071178293', '中国北京市西城区复兴门内大街548号5室', '1992-03-17', 0, 0, 'ellis7', '2011-10-09', 'ellish5', '2015-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS761277164021', 'Julia Gomez', 1, '+1 838-154-5842', 2, '655584688419473912', '292 Central Avenue Apartment 42, Albany, NY 12206, United States', '1989-06-02', 0, 0, 'gomejulia', '2001-10-10', 'julia1019', '2007-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS836259106330', '江浩然', 1, '+44 5458 123367', 0, '436537988427207525', 'Unit 2, Oxford Eco Centre, 967 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-07-29', 0, 0, 'hyk', '2006-10-18', 'hyko1971', '2017-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS402959228506', '田村舞', 1, '+1 614-358-4839', 1, '759080960243754408', '181 Wicklow Road Apartment 14, Columbus, GA 43204, United States', '1985-01-15', 0, 0, 'tmai70', '2020-10-27', 'maitam202', '2010-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS570258302145', 'David Schmidt', 0, '+81 3-4791-0602', 1, '092040016197744013', '日本東京港区東新橋一丁目5番18号33階', '1997-06-12', 0, 0, 'schdavi', '2013-05-19', 'ds10', '2007-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS957476935164', 'Jeremy Butler', 0, '+86 134-6005-8747', 3, '665851554876152198', '中国广州市白云区小坪东路857号22楼', '1995-12-28', 0, 0, 'jbut', '2012-09-27', 'jeremybutl', '2004-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS354869737955', 'Ryan Morales', 0, '+86 136-9518-2030', 1, '139077816642812761', '中国北京市海淀区清河中街68号729号6楼', '1987-02-09', 0, 0, 'mryan8', '2006-10-03', 'moraryan', '2005-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS105072993701', 'Annie Mills', 0, '+81 3-6215-9809', 2, '739508918906554003', '日本東京港区東新橋一丁目5番3号44号室', '1989-09-07', 0, 0, 'annimi', '2020-04-25', 'manni9', '2017-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS388237935266', 'Luis Dunn', 1, '+86 160-1507-8868', 3, '935209182272204123', '中国广州市天河区天河路214号华润大厦7室', '1992-03-12', 0, 0, 'ludunn', '2005-07-23', 'luisdunn1121', '2003-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS990426112597', '青木百花', 1, '+86 10-966-4150', 1, '979489645032087259', 'Room 49, 624 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-06', 0, 0, 'momoaoki', '2003-08-04', 'momoka306', '2012-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS024087947750', 'Terry Morris', 1, '+86 28-4864-5377', 0, '625794916345196376', 'Room 43, No. 586, Shuangqing Rd, Chenghua District, Chengdu, China', '1988-08-27', 0, 0, 'terrymorris110', '2013-08-23', 'morrterry42', '2021-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS819285887594', '佘永發', 0, '+86 195-7159-7704', 0, '448371762443428022', '中国成都市成华区二仙桥东三路119号4栋', '1989-01-27', 0, 0, 'wingfats', '2007-08-15', 'swin1', '2008-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS250073221111', 'Bryan Soto', 1, '+86 166-2228-6890', 2, '575495237612400188', 'No.47 building, No. 253, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-02-19', 0, 0, 'soto3', '2021-07-06', 'bryan18', '2010-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS811886381589', '曾嘉欣', 0, '+1 312-007-4075', 4, '567896869931543743', '554 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1997-05-04', 0, 0, 'tsang95', '2020-12-24', 'tsangky', '2020-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS658858286362', '高家強', 1, '+86 10-359-4039', 1, '400937787151506354', '中国北京市房山区岳琉路366号10号楼', '1990-09-12', 0, 0, 'kakakeung', '2007-06-04', 'kkk', '2016-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS753067231093', '段睿', 0, '+81 11-594-7780', 0, '584819167104988582', '日本札幌中央区宮の森四条六丁目1番6号38号室', '1995-02-16', 0, 0, 'duanr8', '2015-12-15', 'duan5', '2005-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS976786530648', 'Irene Gray', 1, '+86 173-3320-9723', 3, '284803494932023015', '中国成都市成华区双庆路232号华润大厦36室', '1986-04-09', 0, 0, 'irenegray00', '2006-08-05', 'grairene', '2019-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS622658585354', '清水悠人', 1, '+1 718-439-3278', 0, '147545860670717186', '815 Bergen St Apt 9, Brooklyn, NY 11217, United States', '1997-10-17', 0, 0, 'yutos', '2007-04-16', 'shy', '2005-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS669530182209', '藍志明', 1, '+81 52-670-6533', 0, '590073667541759493', '日本なごやし守山区瀬古東二丁目171番4号36号室', '1991-06-23', 0, 0, 'lcm', '2007-02-27', 'cmlam7', '2015-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS138770835644', '駱家輝', 1, '+81 52-496-6117', 4, '717404329891081090', '日本なごやし熱田区千年二丁目5番12号30階', '1988-08-31', 0, 0, 'kafai3', '2019-04-02', 'lok72', '2004-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS861518347021', '應祖兒', 0, '+1 718-342-8019', 3, '427753974657022709', '810 1st Ave Suite 32, Brooklyn, NY 11220, United States', '1987-08-11', 0, 0, 'chying', '2021-08-30', 'choyeeying5', '2019-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS833726538948', '田中一輝', 0, '+81 74-527-5234', 1, '796581416512381603', '39F, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1985-01-21', 0, 0, 'itan10', '2013-05-26', 'ikkitanaka518', '2020-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS352641379149', '孫明詩', 1, '+81 52-760-8991', 2, '290648912080979103', '10F, 20 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-09-11', 0, 0, 'mingszehs', '2013-08-14', 'msh', '2002-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS803901938432', 'Micheal Wells', 1, '+86 755-756-7157', 2, '360188726863370009', 'No.9 building, 21 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-01-08', 0, 0, 'micheal83', '2000-09-14', 'wmi5', '2006-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS070426846843', '許頴璇', 1, '+81 90-3113-0110', 4, '144322262320473674', '29-kai, 1-7-6 Saidaiji Akodacho, Nara, Japan', '1990-05-15', 0, 0, 'wingsuen78', '2019-01-30', 'huiws2004', '2015-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS789235548515', 'Sheila Flores', 0, '+44 (1223) 26 1876', 2, '133994965180310875', 'No.38 Main building, 621 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-09-08', 0, 0, 'flores1111', '2018-07-04', 'floresheila', '2009-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS286283258798', 'Angela Russell', 0, '+86 21-3714-2104', 4, '703092736671586640', 'Room 24, CR Building, 733 Binchuan Rd, Minhang District, Shanghai, China', '1996-03-31', 0, 0, 'angelrussell816', '2001-12-02', 'russella', '2021-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS818679927508', '呂志遠', 1, '+81 90-3456-7152', 0, '294210826559772492', '日本東京港区東新橋一丁目5番16号45階', '1989-02-27', 0, 0, 'cyl', '2000-06-17', 'cylui', '2002-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS417816748157', '谷青雲', 0, '+81 11-268-4620', 2, '039779251123483403', 'Rm. 13, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-01-16', 0, 0, 'kcw', '2001-08-26', 'chingwankoo', '2007-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS384864450783', '蔡明', 1, '+86 21-233-3280', 3, '698191529837183183', '9F, 286 Jianxiang Rd, Pudong, Shanghai, China', '1996-07-13', 0, 0, 'mingch1026', '2011-09-22', 'choiming', '2012-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS604664432827', '房杰倫', 0, '+86 20-364-0372', 1, '989847182452168465', '中国广州市白云区小坪东路799号19号楼', '1987-12-10', 0, 0, 'clfo', '2017-11-24', 'focl10', '2006-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS777699453261', '沈杰宏', 0, '+81 66-770-7390', 1, '887025881755109840', '日本おおさかし東住吉区東田辺三丁目27番12号46号室', '1988-08-09', 0, 0, 'jiehong1', '2010-10-28', 'shenjieho', '2020-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS810750176321', '小林大輔', 1, '+86 185-7980-1015', 1, '953825803578592382', 'Room 30, CR Building, 975 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-01-10', 0, 0, 'daisuke4', '2014-01-16', 'kobayashidai', '2007-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS165588650347', '魏睿', 0, '+81 74-024-0468', 1, '359226639941368313', 'Rm. 45, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1996-12-10', 0, 0, 'ruwe703', '2010-09-11', 'rui1968', '2001-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS350461443606', '谷口七海', 0, '+81 52-890-4956', 2, '973330683895073413', '日本なごやし瑞穂区河岸町四丁目20番5号40階', '1997-05-02', 0, 0, 'nanamt', '2006-02-17', 'tananami', '2011-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS238330398557', '莫仲賢', 0, '+81 3-6174-1318', 2, '467202219757837861', '25-kai, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-10-15', 0, 0, 'cymo2', '2017-11-17', 'mokcy', '2009-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS364207775599', '湯詠詩', 0, '+86 21-6597-2917', 2, '452606100113453281', '中国上海市浦东新区健祥路93号26楼', '1993-05-02', 0, 0, 'wingszeton', '2004-08-05', 'tongws', '2011-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS408166481429', '錢思妤', 1, '+86 21-212-1230', 0, '232215210721761857', '中国上海市浦东新区健祥路401号32号楼', '1992-02-06', 0, 0, 'szeyuchin', '2014-05-12', 'chinsy', '2005-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS391293390060', '吳思妤', 1, '+86 160-8610-0872', 3, '286306642740890769', '中国成都市成华区二仙桥东三路220号12号楼', '1996-04-26', 0, 0, 'ngsy', '2004-08-16', 'ngszeyu', '2007-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS415580662263', 'Philip Moore', 1, '+86 769-252-2726', 4, '684230604488640273', 'Room 44, CR Building, 988 Dongtai 5th St, Dongguan, China', '1985-06-28', 0, 0, 'philip3', '2017-10-25', 'moorephilip1977', '2010-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS248918572756', '大塚樹', 1, '+86 20-0675-2783', 2, '910012901551214191', '中国广州市海珠区江南西路56号华润大厦42室', '1995-04-06', 0, 0, 'otsukitsuki', '2020-07-25', 'itsuko730', '2019-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS002099528215', '清水明菜', 1, '+44 (116) 378 3111', 1, '160744243045349078', 'Flat 21, 770 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1989-06-30', 0, 0, 'shimizuakina', '2017-09-05', 'akinashimizu', '2009-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS296903806910', '山本詩乃', 1, '+86 130-7289-6383', 2, '928931535047444379', '20F, 673 Kengmei 15th Alley, Dongguan, China', '1992-03-04', 0, 0, 'yamamotoshin529', '2004-01-06', 'yamamotoshino1207', '2009-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS094931951484', '文朝偉', 1, '+81 52-325-2384', 3, '556052042158310967', '19-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1994-01-01', 0, 0, 'chiuwaiman4', '2005-08-11', 'cwman', '2001-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS064706099430', '岡田光', 1, '+81 70-5181-8266', 3, '928922666145009134', '13F, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1986-03-01', 0, 0, 'okadahik', '2014-01-30', 'ho830', '2013-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS472750552386', '房梓軒', 1, '+86 21-1687-2626', 4, '734276528811629263', '中国上海市黄浦区淮海中路299号2室', '1994-12-08', 0, 0, 'fongth', '2008-01-26', 'tszhinfong', '2020-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS371518738344', '陆睿', 0, '+81 74-033-9021', 3, '986951434006495673', '日本ならし西大寺赤田町一丁目7番13号10号室', '1993-12-21', 0, 0, 'lu5', '2001-06-07', 'lu8', '2000-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS585675124133', '郭浩然', 1, '+86 28-845-8787', 2, '121565097890417859', 'Room 11, CR Building, No.769, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-09-24', 0, 0, 'kwokhoyin', '2009-07-01', 'hoyinkwo', '2005-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS702681789775', '谢安琪', 0, '+44 5936 962389', 4, '731405871141287032', 'No.23 Main building, 73 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-10-12', 0, 0, 'xieanq', '2017-04-10', 'xieanqi', '2006-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS580364070712', '村上蒼士', 1, '+81 52-102-3808', 3, '189663142249241934', '日本なごやし北区清水三丁目19番5号19階', '1987-07-12', 0, 0, 'muraa', '2020-11-10', 'murakaoshi', '2005-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS934753128863', '吳家強', 0, '+44 (1223) 93 3117', 0, '399860450783531846', 'Block 27, 128 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-04-02', 0, 0, 'ngkk', '2006-12-03', 'ngkk1974', '2020-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS598056343471', '酒井凛', 0, '+1 614-652-2723', 1, '394817886923190411', '824 East Alley Apt 4, Columbus, GA 43201, United States', '1987-12-18', 0, 0, 'sakairin', '2021-06-29', 'rinsak', '2004-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS201368485152', 'Tony Walker', 0, '+81 74-044-1464', 2, '902263262537566056', '11F, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1993-04-16', 0, 0, 'watony', '2014-12-16', 'tonywalker', '2013-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS627569247986', '山本七海', 0, '+86 170-8489-9652', 4, '832688812602143035', '中国深圳罗湖区清水河一路257号19号楼', '1999-02-10', 0, 0, 'nanyamam', '2003-05-12', 'yamnan', '2016-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS976175947910', 'Ann Gutierrez', 1, '+86 20-869-8394', 2, '892583049751060837', 'No.22 building, 61 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-05-20', 0, 0, 'gutierrez57', '2009-03-18', 'gutierrez7', '2002-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS400172520747', '葉志明', 1, '+1 212-462-6327', 2, '836915398121579374', '125 West Houston Street Suite 48, New York, NY 10014, United States', '1998-09-29', 0, 0, 'chimingyip', '2008-02-29', 'chiming7', '2016-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS493891812631', '毛宇宁', 0, '+1 212-197-2561', 1, '197292065190100804', '22 West Houston Street Apartment 42, New York, NY 10014, United States', '1991-09-21', 0, 0, 'yunim', '2011-02-27', 'maoyuni114', '2009-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS516938730875', '太田翼', 0, '+44 (20) 9762 0977', 1, '393637155391083616', 'Block 45, 334 Maddox Street, London, W1S 1PU, United Kingdom', '1992-01-04', 0, 0, 'ota9', '2014-04-10', 'tsubasaota', '2004-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS709706522280', '蔡安琪', 1, '+1 212-465-7937', 2, '635360808720023197', '754 Wooster Street Apt 8, New York, NY 10012, United States', '1989-10-28', 0, 0, 'anqicai602', '2020-08-24', 'canqi', '2005-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS238349762105', '村上凛', 1, '+86 193-2172-6882', 2, '930920506078351166', 'No.32 building, 450 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-01-22', 0, 0, 'murin2', '2007-04-09', 'murakamiri00', '2016-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS180024239807', '山崎海斗', 1, '+86 28-559-9571', 2, '090745733372951444', '中国成都市成华区二仙桥东三路570号12号楼', '1988-03-02', 0, 0, 'yamazakikaito', '2002-01-27', 'yakai', '2006-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS352076605323', '顾岚', 0, '+1 312-376-4991', 4, '196648679962122727', '797 Rush Street Apt 36, Chicago, IL 60611, United States', '1998-01-24', 0, 0, 'gu98', '2019-10-05', 'lan2', '2021-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS138898465805', '阎致远', 0, '+86 160-3137-9713', 3, '915805331470780908', 'No.48 building, 734 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-02-16', 0, 0, 'yazhiyuan', '2002-09-09', 'zy54', '2000-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS236645626547', '刘詩涵', 0, '+86 28-0171-6818', 3, '310694416505514676', 'No.26 building, 629 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1996-06-27', 0, 0, 'shihan14', '2000-04-21', 'lish06', '2003-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS990766630552', '石子异', 1, '+81 66-995-8907', 0, '306476329389969065', '日本おおさかし西成区出城一丁目1番4号26階', '1992-11-10', 0, 0, 'ziyishi', '2013-10-05', 'shziy', '2015-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS414296731316', '黎浩然', 1, '+44 (1223) 88 1525', 2, '218582352550647823', 'Block 49, 764 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-05-31', 0, 0, 'lai127', '2000-12-14', 'hoyinl', '2004-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS026734248337', 'Karen Howard', 0, '+44 (121) 353 7946', 3, '545908178784497770', 'No.1 Main building, 831 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-07-11', 0, 0, 'howard619', '2014-11-17', 'howardk97', '2011-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS666252086835', 'Danielle Smith', 1, '+44 (151) 783 8254', 2, '632238331799388097', 'Flat 12, 985 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-02-04', 0, 0, 'smithdanielle', '2007-12-25', 'smitdani', '2009-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS945858034003', '阎詩涵', 0, '+81 80-7740-1944', 3, '417354936832970060', '40-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1995-07-14', 0, 0, 'yashihan7', '2021-10-10', 'shihany', '2005-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS648390323838', '山下百恵', 0, '+1 330-007-3569', 1, '372796652753324024', '383 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-08-29', 0, 0, 'momoeyamashita6', '2004-02-22', 'momyamashita', '2009-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS487620595084', '伍曉彤', 0, '+86 192-6969-6896', 3, '664804982433716293', '中国北京市房山区岳琉路303号8楼', '1997-12-27', 0, 0, 'hiutungng', '2001-07-21', 'nhiutung', '2009-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS019503083721', '曾慧珊', 1, '+81 70-9343-9139', 2, '252854150302174301', '日本おおさかし西成区天神ノ森二丁目1番17号46階', '1992-03-23', 0, 0, 'twaisan', '2010-07-22', 'waisantsa', '2010-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS576606708761', '河野涼太', 1, '+1 330-960-2435', 2, '160372358370599734', '494 Riverview Road Apt 43, Akron, OH 44313, United States', '1990-03-09', 0, 0, 'ryotak', '2019-10-19', 'ryotakono', '2004-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS906666974883', '苏睿', 0, '+44 (1865) 48 3543', 3, '328111296645296452', 'No.39 Main building, 632 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-12-22', 0, 0, 'ruis83', '2015-01-10', 'ruisu', '2017-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS640877631022', 'Francis Cook', 0, '+86 10-9288-5517', 1, '224354670706278057', '中国北京市西城区复兴门内大街315号32栋', '1998-05-25', 0, 0, 'frcoo709', '2009-05-18', 'francis5', '2021-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS402672638253', '小山拓哉', 1, '+81 66-053-6825', 3, '789670198419565945', '日本おおさかし西成区天神ノ森二丁目1番19号41階', '1994-09-29', 0, 0, 'takuyko', '2002-06-09', 'koyamat3', '2002-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS190613321145', 'Amber Murphy', 1, '+44 7715 316273', 2, '734032201182737661', 'Flat 10, 441 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-06-24', 0, 0, 'ambermurphy', '2016-07-17', 'ambemurph66', '2021-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS792224336558', '田宇宁', 0, '+86 10-9760-5143', 1, '541500860776888935', 'Room 1, CR Building, 349 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-12-23', 0, 0, 'yuningtia4', '2020-06-14', 'yunint', '2016-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS252098096124', '林睿', 1, '+44 (1865) 39 4140', 2, '700832612182828544', 'Flat 1, 128 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-04-27', 0, 0, 'ruilin', '2004-09-24', 'linrui2018', '2006-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS616901821077', 'Diane Anderson', 1, '+1 614-913-5262', 2, '238351504309345565', '513 Wicklow Road Suite 24, Columbus, GA 43204, United States', '1991-06-05', 0, 0, 'diane928', '2011-02-04', 'diane4', '2019-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS717765492216', '何國明', 1, '+81 66-993-7907', 1, '945513152662069609', '日本おおさかし東住吉区東田辺三丁目27番12号28階', '1998-05-10', 0, 0, 'kmho', '2007-02-18', 'kwokmingho8', '2018-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS305387509434', 'Marvin Herrera', 0, '+81 90-0088-2650', 1, '559698524945861234', '日本東京品川区東五反田五丁目2番4号26階', '1986-06-06', 0, 0, 'marvin1', '2004-02-04', 'herrera423', '2000-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS709943924359', '任杰宏', 1, '+1 213-044-1763', 3, '381024371075775261', '263 Sky Way Apt 3, Los Angeles, CA 90043, United States', '1997-03-05', 0, 0, 'jren6', '2012-07-31', 'rjiehong55', '2016-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS770674136943', '尹永發', 1, '+81 66-590-7037', 2, '500306682847082215', '36F, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-01-14', 0, 0, 'yiwingfat123', '2017-12-07', 'wingfatyin5', '2017-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS282606517471', '伊藤葉月', 0, '+1 312-222-4392', 1, '015841344367098178', '195 Rush Street Apt 13, Chicago, IL 60611, United States', '1997-12-30', 0, 0, 'itohaz', '2003-07-24', 'ihaz', '2010-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS158568514578', '佘詩君', 1, '+81 74-555-3809', 3, '884140757249339177', '3-kai, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-23', 0, 0, 'szesheh94', '2007-10-21', 'sksheh', '2006-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS720302838315', '何富城', 0, '+1 718-011-4589', 3, '619345339583611501', '431 1st Ave Apt 32, Brooklyn, NY 11220, United States', '1994-07-17', 0, 0, 'hofs423', '2017-01-29', 'hofushing', '2016-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS734460363741', 'Gregory Nichols', 0, '+86 21-0786-7451', 1, '202426086096887507', '22F, 972 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-06-18', 0, 0, 'gregory502', '2002-06-29', 'nicholsgregory', '2018-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS516807850764', '楊慧珊', 0, '+81 80-7425-0066', 3, '341349552728522673', '日本なごやし北区清水三丁目19番1号17階', '1993-01-10', 0, 0, 'waisanyeun62', '2008-01-01', 'yeunws', '2006-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS566792935945', '三浦和真', 1, '+81 66-173-1923', 3, '830459272254857069', '49-kai, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1985-07-31', 0, 0, 'kazuma06', '2009-07-25', 'kazumamiur', '2019-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS935469126965', '陶睿', 1, '+81 70-5719-2058', 3, '965184756989126851', '日本おおさかし平野区加美東四丁目9番20号40階', '1995-01-17', 0, 0, 'taor', '2006-01-22', 'taor', '2010-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS017244227839', '邱宇宁', 0, '+81 11-672-3001', 3, '265634985033808877', '日本札幌豊平区豊平三条十三丁目3番1号27号室', '1995-12-09', 0, 0, 'yuning2', '2005-04-22', 'yuqiu511', '2018-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS734294823061', '冯睿', 1, '+44 (20) 9658 4432', 3, '796275357071812377', 'Unit 20, Oxford Eco Centre, 645 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-19', 0, 0, 'fengru', '2007-05-06', 'ruifeng', '2021-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS738719110362', '梁杰宏', 1, '+81 52-169-6911', 3, '659816956402256211', '日本なごやし北区清水三丁目19番18号15号室', '1990-08-15', 0, 0, 'lianjieho10', '2003-05-19', 'jiehonglian', '2013-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS941926841764', 'Susan Myers', 1, '+81 90-9941-5135', 3, '565203491561734407', '42-kai, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-10-24', 0, 0, 'smyers', '2016-07-12', 'susan817', '2000-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS182364185874', '和田翼', 0, '+44 (1865) 90 9367', 0, '322014012369655256', 'Block 20, 484 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-05-27', 0, 0, 'tswada1024', '2012-05-16', 'wadat', '2013-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS986102415166', '工藤涼太', 1, '+81 52-510-1082', 2, '609533410978347338', '日本なごやし北区清水三丁目19番14号29階', '1987-12-20', 0, 0, 'kudryo7', '2019-09-06', 'ryota6', '2007-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS286951455991', '金子异', 0, '+81 70-5167-7430', 2, '632762044547778214', 'Rm. 40, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-30', 0, 0, 'ziyiji1983', '2016-11-28', 'jzi', '2012-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS953290695395', 'Grace Aguilar', 1, '+81 80-1083-0964', 0, '758099831024686598', '50F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1998-10-22', 0, 0, 'aguilgrace', '2000-11-15', 'aguilar224', '2019-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS125982090521', 'Rose Cooper', 0, '+1 330-397-7211', 2, '648746752006375205', '915 West Market Street Suite 46, Akron, OH 44333, United States', '1992-10-25', 0, 0, 'cooperr410', '2010-09-10', 'rosecooper', '2013-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS520976200907', '杉山大地', 1, '+86 153-7328-0703', 3, '017286434178275016', '中国成都市成华区玉双路6号719号华润大厦30室', '1999-02-14', 0, 0, 'sugd', '2019-04-16', 'sdaic', '2002-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS957931247860', '汪秀英', 1, '+44 (116) 155 7532', 3, '438684594641906438', 'Unit 31, Oxford Eco Centre, 746 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-01-14', 0, 0, 'xiuyiwang9', '2017-03-11', 'wangxiuying', '2011-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS296183366277', 'Bryan Bell', 1, '+44 5094 990041', 1, '059950456917731896', 'Flat 15, 500 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-03-18', 0, 0, 'bryan65', '2001-03-20', 'bell4', '2017-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS342068448873', '萧致远', 0, '+86 10-6004-1859', 4, '869357713428572995', 'No.49 building, 126 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-01-15', 0, 0, 'zhixiao9', '2004-07-04', 'xiaoz714', '2005-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS756813290947', '金子明菜', 0, '+44 5795 074652', 2, '865376920997969283', 'No.25 Main building, 394 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-09-25', 0, 0, 'akinakaneko', '2000-04-11', 'kanekoakina', '2009-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS324935360107', '河野美羽', 0, '+86 197-8195-3932', 3, '028768361234618960', '中国深圳福田区景田东一街710号华润大厦48室', '1996-03-14', 0, 0, 'kono10', '2007-11-26', 'miuk41', '2015-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS823167645102', '餘發', 1, '+44 (151) 642 7793', 1, '014516024772855586', 'Block 18, 199 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-08-12', 0, 0, 'fyue1', '2006-05-20', 'fayue518', '2021-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS839813124613', 'Tracy Ford', 1, '+81 70-6774-8274', 0, '434798794514317982', '日本札幌白石区菊水三条五丁目2番6号35階', '1987-04-13', 0, 0, 'tracy7', '2013-05-22', 'fotracy', '2018-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS508975652973', '雷安琪', 0, '+1 330-692-8084', 4, '852741506465529466', '232 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-07-11', 0, 0, 'anqile8', '2000-04-28', 'anqilei', '2020-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS489968655366', '松本美羽', 0, '+81 11-161-3843', 0, '306183547554443870', '23F, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-07-29', 0, 0, 'miumatsu', '2020-11-04', 'matsumotomi', '2014-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS640170307956', '翁國權', 1, '+81 80-7156-6128', 1, '908286592095638032', '日本札幌豊平区豊平三条十三丁目3番13号32階', '1996-07-10', 0, 0, 'yunkwo812', '2008-05-24', 'yungkwokk', '2011-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS754093171596', '孫家文', 1, '+44 5718 786535', 2, '213214636369556374', 'Block 9, 288 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-02-25', 0, 0, 'hsuakm92', '2021-01-08', 'kamanh1', '2019-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS425135411419', '袁安琪', 1, '+86 186-5293-0400', 1, '799507067364124258', '中国北京市西城区复兴门内大街357号35室', '1994-08-27', 0, 0, 'anqiy', '2019-07-19', 'yuan5', '2020-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS981083585039', '郭秀文', 1, '+86 755-240-2612', 1, '431525945512943727', 'No.26 building, 31 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-09-04', 0, 0, 'kwok1114', '2005-05-31', 'sauman6', '2015-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS764264902215', 'Jean Porter', 1, '+44 (151) 837 5948', 0, '763470922783862328', 'Unit 3, Oxford Eco Centre, 925 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-02-28', 0, 0, 'pje', '2014-06-17', 'pjean121', '2015-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS871841477161', '中川美月', 1, '+86 755-044-2562', 2, '224182853124618352', 'Room 45, 492 Shennan Ave, Futian District, Shenzhen, China', '1995-11-26', 0, 0, 'nakagmits', '2017-01-12', 'nakamitsuki41', '2014-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS005185634077', '許慧嫻', 0, '+86 20-9606-5104', 0, '422674847280485177', 'Room 29, CR Building, 919 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-11-11', 0, 0, 'waihanhui2005', '2010-11-21', 'huwh', '2001-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS478281391971', '陶子异', 0, '+86 186-3747-0831', 0, '888792070142469812', 'Room 39, 747 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1994-01-06', 0, 0, 'taoz', '2001-09-05', 'ziyitao', '2016-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS413702462864', '常岚', 0, '+1 614-324-4240', 3, '633210734438777420', '776 East Alley Apartment 19, Columbus, GA 43201, United States', '1997-09-20', 0, 0, 'lan1001', '2006-12-24', 'chal', '2020-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS683248225850', '蒋睿', 1, '+1 212-976-9880', 0, '708285254672857616', '809 Bank Street Suite 25, New York, NY 10014, United States', '1992-12-18', 0, 0, 'rui79', '2002-05-23', 'rj9', '2017-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS028649900712', '傅晓明', 0, '+1 718-306-1122', 3, '822969907230278661', '349 Flatbush Ave Suite 43, Brooklyn, NY 11225, United States', '1986-09-11', 0, 0, 'fuxiaoming', '2011-04-10', 'xiaomingfu2', '2017-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS186115883850', '韩子异', 1, '+81 3-5082-0192', 3, '054179366658078585', '日本東京品川区東五反田五丁目2番2号25号室', '1990-08-25', 0, 0, 'hanziyi', '2002-05-24', 'ziyi1122', '2008-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS833144262410', '斎藤一輝', 1, '+81 66-025-0935', 2, '455746993699469488', '37-kai, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-08-04', 0, 0, 'isaito', '2020-12-30', 'ikksaito', '2015-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS019191005086', '渡部愛梨', 1, '+81 80-0291-4766', 2, '545086734855797012', '日本おおさかし東住吉区東田辺三丁目27番18号35階', '1994-02-14', 0, 0, 'wairi2000', '2020-09-30', 'watanairi1999', '2005-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS467076650340', 'Timothy Torres', 0, '+1 212-343-0856', 3, '899589891156696760', '413 Fifth Avenue Suite 14, New York, NY 10017, United States', '1988-09-02', 0, 0, 'timottorre', '2021-08-23', 'timothyt', '2004-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS497465453092', '宮崎優奈', 0, '+1 614-214-4405', 1, '356710505701510181', '381 Diplomacy Drive Apartment 2, Columbus, GA 43228, United States', '1996-03-23', 0, 0, 'miyazakiyun', '2020-12-04', 'miyazakiyu', '2022-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS257186007623', '梁子异', 0, '+81 11-782-2830', 2, '214728976811868367', '日本札幌白石区菊水三条五丁目2番2号39階', '1987-11-28', 0, 0, 'ziyi1', '2004-04-30', 'liangziyi', '2019-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS754201204945', '汤秀英', 0, '+44 (1865) 52 0182', 3, '489833220091184667', 'No.14 Main building, 442 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-05-11', 0, 0, 'xiuyta', '2000-12-21', 'xiuyingta', '2011-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS605820190176', '汪子异', 0, '+44 5203 676537', 1, '935804483237476998', 'Flat 16, 752 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-05-02', 0, 0, 'ziywang', '2008-04-03', 'wanziyi', '2018-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS190603311134', 'Frank Reynolds', 0, '+86 176-4250-1076', 0, '687682307786727655', '中国成都市锦江区人民南路四段769号华润大厦9室', '1990-07-06', 0, 0, 'frankreynolds2', '2014-10-04', 'frankr', '2004-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS632074864209', '方致远', 1, '+1 614-231-4768', 2, '639409813239044366', '383 East Cooke Road Suite 17, Columbus, GA 43214, United States', '1998-06-04', 0, 0, 'zhiyuan104', '2019-12-02', 'fanzhiy3', '2012-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS223716845197', '高木海斗', 0, '+81 11-567-7958', 2, '340262261428488764', '日本札幌厚別区上野幌一条二丁目1番6号10階', '1996-01-14', 0, 0, 'takagik', '2003-03-17', 'takagikait4', '2018-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS477851281290', '松本海斗', 0, '+44 (116) 894 4469', 1, '978475317146678374', 'No.48 Main building, 707 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-06-19', 0, 0, 'matsumotokaito81', '2020-01-22', 'matsumotokaito506', '2008-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS156209319235', '向震南', 1, '+81 70-7600-8473', 1, '476770409858758007', '21F, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-12-07', 0, 0, 'xianzhenn', '2015-10-10', 'zxia', '2021-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS840715713828', 'Laura Brown', 1, '+81 70-8736-6487', 2, '897145274614802553', '日本なごやし北区清水三丁目19番14号22階', '1992-08-20', 0, 0, 'bla', '2009-09-19', 'brownl', '2004-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS978372997512', '菊地舞', 1, '+81 52-172-4552', 2, '901506672843143478', '日本なごやし瑞穂区河岸町四丁目20番13号48階', '1985-12-24', 0, 0, 'makiku105', '2002-08-03', 'maiki', '2012-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS944043536926', 'Dorothy Hicks', 0, '+81 52-273-8642', 0, '139488558147014281', '日本なごやし瑞穂区河岸町四丁目20番2号22階', '1992-02-04', 0, 0, 'hdor', '2018-12-08', 'hicks17', '2019-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS632272247252', '吴璐', 0, '+1 212-195-6915', 4, '000758277438298804', '518 West Houston Street Apartment 39, New York, NY 10014, United States', '1991-10-21', 0, 0, 'wlu00', '2005-12-05', 'luwu', '2020-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS453446280014', '胡慧敏', 1, '+1 614-708-1376', 3, '247421730955053864', '400 Tremont Road Suite 3, Columbus, GA 43212, United States', '1988-04-08', 0, 0, 'waiman720', '2013-08-05', 'wuwaiman', '2012-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS807828713594', '清水紗良', 0, '+81 66-038-8796', 2, '462018145606975487', '27-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1993-08-05', 0, 0, 'saras1', '2021-10-19', 'ss2', '2007-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS494914445863', 'Lawrence Diaz', 0, '+86 28-6854-2320', 3, '996064771341413285', 'Room 50, 118 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1996-03-26', 0, 0, 'diaz1992', '2003-08-15', 'diazlawrence', '2011-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS064733641076', '戚國賢', 1, '+81 3-2902-2130', 1, '645014514726982513', '4-kai, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-07-27', 0, 0, 'chky1996', '2020-02-25', 'kwokyinc', '2007-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS139702719335', '李子韬', 1, '+81 11-028-7211', 2, '607592447711669113', '日本札幌豊平区豊平三条十三丁目3番20号11階', '1987-06-29', 0, 0, 'zital', '2004-05-01', 'li45', '2008-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS826109435293', 'Andrew Bell', 0, '+44 (151) 674 1321', 3, '235072216469245886', 'No.36 Main building, 152 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-08-05', 0, 0, 'andrew10', '2012-11-04', 'abe', '2021-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS159938935057', '徐家玲', 0, '+44 (151) 799 9193', 3, '543844444723123043', 'Block 37, 260 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-05-02', 0, 0, 'kaling1220', '2003-10-19', 'tsui2', '2016-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS364953226365', '松田花', 0, '+81 74-483-2382', 2, '981529773625059052', 'Rm. 38, 3-9-10 Gakuenminami, Nara, Japan', '1993-07-21', 0, 0, 'hana315', '2020-07-18', 'hanamatsuda48', '2005-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS506593070510', '程璐', 0, '+1 838-779-7397', 2, '675232448296528209', '908 Central Avenue Apartment 2, Albany, NY 12206, United States', '1991-05-15', 0, 0, 'clu6', '2020-04-27', 'chengl', '2001-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS112334336729', 'Melvin Wood', 0, '+86 132-8089-4634', 3, '677933262133503993', 'No.21 building, 636 028 County Rd, Yanqing District, Beijing, China', '1986-05-12', 0, 0, 'melvinwood1987', '2017-05-14', 'wm8', '2011-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS378396758954', 'Leroy Robinson', 1, '+86 163-7208-6010', 3, '708168259238799840', '中国中山乐丰六路383号2栋', '1991-07-06', 0, 0, 'robinsonleroy', '2015-03-19', 'rler', '2007-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS663903117464', '谢宇宁', 1, '+81 11-278-0438', 2, '948570607747513200', 'Rm. 24, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-03-13', 0, 0, 'yuninx4', '2000-04-25', 'xie1', '2015-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS540945832966', '程子韬', 1, '+1 838-774-3039', 3, '457683274826156456', '512 Lark Street Apartment 21, Albany, NY 12210, United States', '1997-08-03', 0, 0, 'chzi205', '2015-01-16', 'zitachen', '2010-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS504966212928', '袁致远', 0, '+81 3-6820-3491', 4, '456848047841143114', 'Rm. 3, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-05-08', 0, 0, 'yuan9', '2019-04-30', 'yzhiyu', '2013-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS480926650965', '傅致远', 1, '+81 52-054-8548', 2, '795775430843480475', '日本なごやし北区清水三丁目19番2号12階', '1991-08-23', 0, 0, 'zhiyuanf', '2022-01-10', 'fuz', '2009-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS059884728111', '邵秀文', 1, '+1 614-952-3583', 3, '206869444001527135', '211 Wicklow Road Apartment 37, Columbus, GA 43204, United States', '1993-07-24', 0, 0, 'sism', '2001-10-10', 'smsiu2016', '2021-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS257021837588', '傅子异', 1, '+44 7324 763896', 1, '238267942253446485', 'Unit 13, Oxford Eco Centre, 705 Portland St, Manchester, M1 3LA, United Kingdom', '1988-03-01', 0, 0, 'fziyi', '2008-12-29', 'ziyifu', '2001-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS037303585536', '曹心穎', 0, '+1 212-390-0635', 1, '820960839358867861', '988 Bank Street 3rd Floor, New York, NY 10014, United States', '1988-01-23', 0, 0, 'cho9', '2019-05-18', 'chosumwing49', '2012-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS824979984176', '田村大和', 1, '+44 (1223) 70 1514', 0, '697193715138930843', 'Unit 9, Oxford Eco Centre, 540 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1985-08-24', 0, 0, 'tyamato', '2004-01-08', 'yamato3', '2001-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS891755497763', '向俊宇', 1, '+1 718-871-8901', 1, '171285087394009745', '330 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1990-08-29', 0, 0, 'chunyu223', '2000-02-25', 'cyheu', '2010-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS832534530065', '廖明詩', 0, '+81 80-4005-3715', 4, '515524172673340186', 'Rm. 3, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-06-19', 0, 0, 'mingszeliao', '2012-02-01', 'liao1', '2009-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS881425371977', 'Fred Murphy', 0, '+44 7438 467003', 2, '309217528947805677', 'Unit 24, Oxford Eco Centre, 429 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-08-14', 0, 0, 'murphyfred', '2006-12-13', 'murphyfred2004', '2006-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS320378477380', '近藤翼', 0, '+86 169-4038-6965', 2, '457090729226828576', 'Room 27, CR Building, 554 Dongtai 5th St, Dongguan, China', '1996-07-18', 0, 0, 'tk9', '2009-01-26', 'kondot', '2010-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS390026857389', 'Marie Rose', 0, '+44 7072 269090', 4, '599992165294239148', 'Unit 48, Oxford Eco Centre, 327 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-09-19', 0, 0, 'marie8', '2013-01-21', 'rosemarie318', '2003-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS468776006495', '徐慧儀', 1, '+81 11-165-7016', 3, '554797834001269705', '10F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-04-24', 0, 0, 'waiyee806', '2014-08-23', 'tsuiwaiyee', '2018-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS876324726691', '吉田涼太', 1, '+1 213-683-7427', 1, '415478308587917010', '725 Grape Street Apt 49, Los Angeles, CA 90002, United States', '1990-07-09', 0, 0, 'ryota530', '2021-09-06', 'yoshidar727', '2000-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS555813752333', '秦致远', 0, '+86 142-7376-6970', 3, '473687920438145598', 'No.36 building, 974 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-01-20', 0, 0, 'zhiyuanq56', '2016-04-15', 'zhiyuanqin', '2006-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS122786461769', '房國明', 1, '+81 3-4322-7488', 0, '077475020071224544', '18F, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-02-28', 0, 0, 'kmfong56', '2010-09-29', 'kmfong1025', '2013-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS315445068714', '松本美咲', 1, '+81 52-000-0907', 3, '288506510316257338', '13F, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1996-07-31', 0, 0, 'matsumoto1', '2002-03-07', 'matsumoto1014', '2016-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS697325112201', '姚秀英', 0, '+86 147-1661-7245', 1, '459299063028575055', '中国北京市海淀区清河中街68号660号46栋', '1986-08-09', 0, 0, 'yaoxi', '2019-03-09', 'yaox7', '2017-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS875619467660', '方晓明', 1, '+81 70-7676-8421', 1, '455717952589143472', '9-kai, 3-9-15 Gakuenminami, Nara, Japan', '1995-12-20', 0, 0, 'fanxiao', '2014-02-18', 'fang10', '2007-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS254295920062', 'Mark Stone', 1, '+86 139-6198-0069', 3, '916931541499576128', 'No.16 building, 635 Kengmei 15th Alley, Dongguan, China', '1997-05-29', 0, 0, 'maston', '2021-04-27', 'mark89', '2020-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS881544692040', '邹岚', 1, '+81 80-1115-9932', 2, '007519111625184075', 'Rm. 11, 3-9-14 Gakuenminami, Nara, Japan', '1990-12-06', 0, 0, 'zoulan', '2011-02-19', 'lanzou', '2008-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS211197753781', '高橋陽太', 0, '+1 838-389-4031', 1, '539258677664242940', '353 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-10-30', 0, 0, 'yota3', '2015-03-22', 'takahashiyo407', '2020-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS469348039878', '贺子韬', 1, '+81 70-4014-4059', 3, '159706121331698303', '19F, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-05-16', 0, 0, 'hez', '2001-07-24', 'hezitao', '2020-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS242214427294', 'Rita Tucker', 0, '+81 52-624-0341', 3, '086856493220432660', '日本なごやし熱田区千年二丁目5番3号41階', '1985-05-14', 0, 0, 'rtucker', '2021-12-17', 'tuckerrit', '2010-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS492941202257', 'Catherine Jones', 1, '+1 213-880-8214', 1, '421246290190871107', '884 S Broadway Apt 40, Los Angeles, CA 90015, United States', '1995-11-11', 0, 0, 'cathjones', '2020-12-06', 'jones411', '2016-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS605733671483', 'Dennis Cruz', 0, '+86 167-1231-3863', 1, '381442171722785834', '中国成都市成华区玉双路6号53号华润大厦14室', '1987-01-01', 0, 0, 'cruzdennis', '2017-01-04', 'dennis7', '2000-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS882403793923', '汪裕玲', 0, '+81 66-073-9530', 2, '229602609426452136', '日本おおさかし東住吉区東田辺三丁目27番18号28階', '1991-11-07', 0, 0, 'wonyl', '2014-09-03', 'wongyl', '2006-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS448584198945', '黎頴思', 1, '+81 74-033-3776', 1, '421558406830912743', '28-kai, 3-9-6 Gakuenminami, Nara, Japan', '1996-08-13', 0, 0, 'laiwingsze62', '2005-06-05', 'wingsze1', '2005-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS724361358239', '苗頴思', 0, '+81 80-1426-1639', 0, '673535385036530987', '3-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-04', 0, 0, 'miuws', '2019-02-23', 'wsmiu63', '2015-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS864293256297', '駱杰倫', 0, '+86 142-7247-9137', 0, '606777251114432210', '中国上海市浦东新区健祥路368号3楼', '1991-02-22', 0, 0, 'chiehlun2006', '2007-04-29', 'lchiehlun', '2005-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS917377806720', 'Lori Wagner', 1, '+86 769-0848-9521', 3, '734550967045778729', '中国东莞环区南街二巷305号43楼', '1995-12-19', 0, 0, 'loriwagner9', '2013-07-04', 'loriwagner311', '2012-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS689092674627', '杨晓明', 0, '+86 28-9793-5619', 1, '082667204342972507', '中国成都市成华区玉双路6号79号华润大厦12室', '1985-12-05', 0, 0, 'yx818', '2021-03-08', 'yxi20', '2004-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS225491142103', '平野彩乃', 0, '+81 74-383-0338', 2, '061103723108532547', '日本ならし大和郡山市本庄町一丁目1番15号1号室', '1992-05-14', 0, 0, 'hiranoayano', '2018-09-21', 'hiranoayano', '2014-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS753037016202', '村田花', 1, '+81 90-0403-4209', 1, '642248887861249887', '日本ならし西大寺赤田町一丁目7番6号11階', '1988-09-13', 0, 0, 'muratah12', '2001-10-18', 'murahana', '2006-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS656615194763', 'Miguel Watson', 1, '+86 176-8929-4367', 1, '619483266044894953', '中国深圳福田区深南大道115号45号楼', '1989-10-12', 0, 0, 'miguel4', '2006-05-28', 'mwatso3', '2016-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS360142914692', 'Michael Chen', 0, '+81 66-218-5145', 2, '242423329285066031', '日本おおさかし西成区天神ノ森二丁目1番2号1階', '1989-08-22', 0, 0, 'chen2006', '2004-09-14', 'chenm', '2013-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS580655539515', '藤家明', 0, '+86 187-6106-7854', 4, '169543495103695626', 'No.20 building, 182 028 County Rd, Yanqing District, Beijing, China', '1987-02-16', 0, 0, 'kmt', '2005-11-27', 'tangkm6', '2012-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS560865956331', '段岚', 1, '+86 198-2313-2568', 0, '719558918257156224', '中国上海市浦东新区健祥路868号华润大厦14室', '1991-04-12', 0, 0, 'landua330', '2017-11-25', 'ldua1230', '2009-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS511376419070', '房詠詩', 1, '+44 (1865) 17 3780', 4, '866302747579076885', 'Flat 29, 138 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-23', 0, 0, 'fongwingsze4', '2001-10-02', 'wingszefong1219', '2008-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS958059565130', '松本蒼士', 0, '+44 (116) 881 1337', 2, '434586085245246497', 'Block 27, 468 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-09-16', 0, 0, 'maoshi', '2008-03-27', 'maos', '2005-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS319945816737', '郑睿', 1, '+81 3-7019-4019', 3, '633665930716917949', '日本東京中央区銀座三丁目12番5号49階', '1992-05-15', 0, 0, 'rui922', '2013-12-11', 'zheng86', '2009-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS310875857091', '原大和', 0, '+1 213-989-0201', 2, '729913359717192031', '527 Figueroa Street Apt 19, Los Angeles, CA 90037, United States', '1994-01-07', 0, 0, 'harayama', '2018-12-02', 'yamathara', '2003-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS974171060727', 'Sara Martinez', 1, '+81 80-9985-0920', 3, '509800832989072854', '50F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-06-02', 0, 0, 'saramartinez6', '2000-11-17', 'mars', '2016-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS644499264994', '夏晓明', 0, '+44 7942 041944', 1, '306955076488330877', 'Unit 33, Oxford Eco Centre, 278 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-07-22', 0, 0, 'xix', '2001-01-06', 'xxiaom9', '2002-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS296914474566', 'Roger Mendoza', 0, '+1 718-480-2533', 2, '033826703652551907', '544 Bergen St Suite 45, Brooklyn, NY 11217, United States', '1994-09-25', 0, 0, 'mer', '2011-05-31', 'mendoza1', '2017-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS461134333372', '藤田明菜', 1, '+1 330-495-5024', 1, '380932483666052592', '240 Riverview Road Apartment 4, Akron, OH 44313, United States', '1998-06-19', 0, 0, 'fujitakina', '2004-04-16', 'fakina1961', '2012-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS516304900093', '田中大地', 1, '+44 (161) 931 1155', 2, '348668265698764331', 'No.1 Main building, 568 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-07-13', 0, 0, 'tdaichi', '2006-01-22', 'daichit', '2008-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS241752115568', '武安琪', 0, '+81 11-815-9801', 2, '992337972011851986', '日本札幌厚別区上野幌一条二丁目1番13号7号室', '1990-03-09', 0, 0, 'anqi131', '2000-10-03', 'anqiwu', '2020-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS121311275954', '鈴木聖子', 1, '+1 838-125-0715', 3, '385710864163518803', '501 Broadway Apartment 46, Albany, NY 12207, United States', '1996-02-15', 0, 0, 'suzukisei2', '2008-02-12', 'seiks', '2017-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS152532586493', 'Rhonda Ellis', 1, '+86 760-508-7873', 2, '483789249017996815', 'No.6 building, 981 Lefeng 6th Rd, Zhongshan, China', '1994-04-24', 0, 0, 'rhonellis4', '2003-09-08', 'ellisrhonda73', '2015-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS193307989954', 'Nicholas Nguyen', 0, '+86 20-9510-6497', 1, '219561469708203107', 'No.45 building, 580 Jiangnan West Road, Haizhu District, Guangzhou, China', '1985-01-24', 0, 0, 'nn301', '2014-06-13', 'nguyni97', '2017-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS973745215188', '贺詩涵', 1, '+86 760-426-8853', 3, '055121516255615175', '37F, 956 Lefeng 6th Rd, Zhongshan, China', '1985-04-20', 0, 0, 'shihanhe', '2014-04-04', 'shihe', '2011-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS169741395613', '小野百花', 1, '+81 90-6001-2185', 3, '195420577985509829', '35-kai, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-06-12', 0, 0, 'momoka629', '2011-06-12', 'momokono', '2015-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS243420980958', '古天樂', 1, '+86 755-329-8191', 1, '200333808746197270', 'Room 30, CR Building, 492 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-04-17', 0, 0, 'tinlokk', '2014-02-03', 'tlku', '2014-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS105807285100', 'Aaron Wood', 1, '+86 10-041-3703', 4, '147416317266957507', '中国北京市朝阳区三里屯路448号43室', '1991-08-18', 0, 0, 'aaronwood6', '2017-12-08', 'aaronwo501', '2019-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS935202390496', '袁子异', 0, '+81 90-2102-4415', 3, '293371082758522210', 'Rm. 49, 6-1-12, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-11-09', 0, 0, 'yuziy', '2004-08-06', 'yuanzi', '2006-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS214157941789', '高木美羽', 1, '+86 28-5209-7572', 0, '727334209622062316', '中国成都市成华区玉双路6号460号18栋', '1985-11-15', 0, 0, 'miu6', '2010-08-06', 'miu1012', '2017-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS482491058629', '佐々木紗良', 1, '+86 194-0594-4443', 3, '503990665726486332', 'No.25 building, 119 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-03-12', 0, 0, 'sasara708', '2002-11-23', 'ssa6', '2000-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS440141253970', '孟秀英', 0, '+81 80-0602-4782', 0, '231740689728173910', 'Rm. 50, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-06-27', 0, 0, 'xiuyingmeng1007', '2001-01-26', 'meng326', '2016-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS353764847446', '姜祖兒', 1, '+86 10-7034-0739', 3, '782865465484776821', 'No.40 building, 553 028 County Rd, Yanqing District, Beijing, China', '1996-10-22', 0, 0, 'changcy', '2013-05-25', 'chch', '2000-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS686261590889', 'Leslie Griffin', 1, '+81 70-6430-1990', 1, '510752537878988624', '23F, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1988-05-16', 0, 0, 'lg5', '2011-03-25', 'griffinleslie', '2014-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS874473935366', '苑麗欣', 1, '+86 755-7440-2272', 3, '024755118085518866', '中国深圳罗湖区田贝一路456号31号楼', '1997-11-04', 0, 0, 'laiyanyuen16', '2017-04-12', 'yuenlaiyan', '2009-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS638063114057', 'Phillip Gutierrez', 0, '+86 160-7496-5591', 2, '711504930929291704', 'No.9 building, 491 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-02-25', 0, 0, 'gutiphillip', '2011-05-08', 'philgu10', '2006-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS486956887961', '严睿', 0, '+1 213-174-8993', 0, '606603437331095771', '782 Grape Street Apt 36, Los Angeles, CA 90002, United States', '1988-11-14', 0, 0, 'ruiya1', '2011-07-17', 'ryan204', '2003-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS227272642998', 'Manuel Kelly', 0, '+81 70-3168-8940', 3, '061674901507170646', 'Rm. 43, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-03-03', 0, 0, 'manuk1', '2011-08-12', 'kellm6', '2020-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS063226725502', '林家文', 0, '+81 90-6364-8626', 4, '482057050073834331', '19F, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-10', 0, 0, 'kmla', '2020-01-27', 'kmlam312', '2006-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS104433937284', '王祖兒', 0, '+86 165-7268-7888', 2, '949690582566606475', '中国广州市天河区天河路526号8栋', '1994-05-10', 0, 0, 'woncy', '2000-08-21', 'choyeewong', '2011-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS337225434694', '工藤瑛太', 1, '+81 80-8981-5206', 2, '611166581123284482', 'Rm. 39, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-08-09', 0, 0, 'kudeita516', '2012-02-27', 'eita9', '2008-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS208914623840', 'Anne Turner', 1, '+86 143-8102-6985', 1, '234134446116167818', '中国北京市東城区東直門內大街772号25室', '1987-12-05', 0, 0, 'antu', '2002-11-22', 'anne3', '2006-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS616679412256', 'Frederick Cole', 1, '+44 7223 722054', 2, '100151667785037113', 'No.29 Main building, 613 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-09-10', 0, 0, 'fco', '2010-11-25', 'fc706', '2001-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS616008505073', 'Jonathan Garza', 1, '+86 21-9503-5876', 4, '775430098859638217', '中国上海市徐汇区虹桥路452号26号楼', '1986-06-14', 0, 0, 'garzajonathan', '2009-07-30', 'jonatgarz813', '2014-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS588230988228', '文慧嫻', 1, '+81 80-8428-6448', 2, '401488577124437106', '40F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-10-19', 0, 0, 'whman', '2006-03-15', 'manwh527', '2019-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS509230709930', 'Randall Kelley', 1, '+81 11-362-2792', 3, '386017317459964654', 'Rm. 32, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-04', 0, 0, 'kellrand', '2010-10-05', 'kr4', '2004-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS087605615793', '狄永發', 1, '+81 3-1315-1510', 2, '181893780307331800', '日本東京港区東新橋一丁目5番20号29階', '1990-02-07', 0, 0, 'wingfat805', '2006-11-23', 'tiwingfat84', '2010-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS053630244707', 'Troy Graham', 1, '+1 212-680-7478', 0, '584492265409065170', '711 Wooster Street Suite 9, New York, NY 10012, United States', '1989-10-07', 0, 0, 'graham803', '2019-04-17', 'troyg13', '2007-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS140493064377', '原大地', 1, '+86 769-5858-2187', 1, '131896366075612540', 'Room 16, 988 Huanqu South Street 2nd Alley, Dongguan, China', '1993-10-12', 0, 0, 'daichi6', '2007-04-19', 'daichih', '2005-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS518261844199', '佘頴璇', 0, '+44 7527 336458', 2, '840617685253974310', 'Flat 19, 322 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1998-03-30', 0, 0, 'wsshe', '2021-04-01', 'wssheh3', '2013-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS457292475200', '谭子异', 1, '+81 11-584-8444', 0, '527989919893543101', '日本札幌豊平区豊平三条十三丁目3番7号38号室', '1986-08-02', 0, 0, 'tan713', '2007-07-08', 'ziyita', '2015-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS764160199655', '唐致远', 0, '+81 52-533-7831', 2, '830529126288602171', '日本なごやし北区楠味鋺三丁目80番17号10階', '1997-05-27', 0, 0, 'tangz', '2013-03-19', 'tangzhiyu', '2017-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS454847843170', '姜安娜', 0, '+86 146-6146-0248', 1, '401826824898266849', 'Room 1, CR Building, 960 028 County Rd, Yanqing District, Beijing, China', '1993-02-25', 0, 0, 'changon', '2013-06-25', 'conna8', '2009-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS206293283958', '有村和真', 1, '+81 70-0051-9948', 1, '437798906835956627', '4-kai, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-07-15', 0, 0, 'kazumaarimu', '2008-12-21', 'kazumaar', '2010-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS078393214052', '史岚', 0, '+1 614-968-9636', 3, '745810108839504550', '265 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1986-03-21', 0, 0, 'lshi', '2008-09-03', 'shi127', '2019-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS814131393566', '古霆鋒', 1, '+44 5720 278220', 1, '173173630886297367', 'No.3 Main building, 370 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-11-16', 0, 0, 'tingfungku', '2012-12-02', 'tingfungku', '2003-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS477213918154', '陶子韬', 1, '+44 (1223) 07 7452', 2, '350995741551580851', 'Unit 35, Oxford Eco Centre, 374 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-05-02', 0, 0, 'zitaot', '2008-04-25', 'tazitao', '2019-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS823819540522', '馬慧敏', 0, '+81 80-5967-6026', 3, '262160246292530919', '日本なごやし守山区瀬古東二丁目171番6号41号室', '1990-07-09', 0, 0, 'wmma7', '2016-03-20', 'mawm', '2013-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS067791888357', '梅心穎', 0, '+1 838-667-4610', 0, '554554026236803439', '820 Broadway Suite 49, Albany, NY 12207, United States', '1995-03-07', 0, 0, 'swmui', '2003-12-11', 'muisw3', '2003-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS954514395861', '廖詩涵', 1, '+1 330-826-1555', 2, '661481964474644011', '5 Fern Street Suite 24, Akron, OH 44307, United States', '1990-01-11', 0, 0, 'shihan5', '2014-03-12', 'shihanliao', '2009-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS856166006767', '河野光', 0, '+86 20-778-0025', 2, '163736391608879157', 'No.4 building, 356 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-08-21', 0, 0, 'konohikaru82', '2014-11-26', 'konohi9', '2008-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS312309097192', 'Mildred Wallace', 1, '+81 74-170-1451', 3, '060018236988846919', '日本ならし学園南三丁目9番8号41号室', '1992-05-04', 0, 0, 'walm', '2007-08-04', 'wallacemildred5', '2019-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS021562533908', '徐致远', 1, '+1 312-771-8935', 3, '949881678926882327', '256 Pedway Apartment 32, Chicago, IL 60601, United States', '1992-08-16', 0, 0, 'xz525', '2004-06-15', 'xuzhiyuan', '2021-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS685341451428', 'Dale Griffin', 1, '+81 70-5213-8915', 1, '955067127588143072', '日本東京渋谷区代々木二丁目3番5号19階', '1986-03-02', 0, 0, 'griffin3', '2017-08-16', 'griffinda93', '2004-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS287121830955', '石川光', 0, '+81 3-6879-3357', 2, '100491229918022524', '日本東京渋谷区代々木二丁目3番16号23階', '1998-11-02', 0, 0, 'ishikawa4', '2012-04-26', 'ishikawahikaru', '2009-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS100267659694', '大野大輔', 1, '+86 155-4287-0904', 3, '131463790263934079', '中国中山天河区大信商圈大信南路513号37栋', '1985-12-26', 0, 0, 'onod5', '2003-11-09', 'daisukeono', '2012-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS307445530936', '阮志明', 1, '+44 (20) 7285 7176', 1, '859137112131857942', 'Flat 38, 945 Maddox Street, London, W1S 1PU, United Kingdom', '1996-11-28', 0, 0, 'yuencm', '2019-09-14', 'ychiming', '2002-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS038169402193', 'Martha Roberts', 1, '+81 3-3058-9036', 4, '726316883798089519', '日本東京中央区銀座三丁目12番3号46号室', '1986-04-08', 0, 0, 'martrobe', '2015-02-05', 'martha9', '2008-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS710597593125', '樊朝偉', 1, '+86 168-1013-2799', 1, '786593028081446376', '中国北京市東城区東直門內大街518号9栋', '1993-09-14', 0, 0, 'fancw', '2013-04-20', 'chiuwaif', '2008-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS465048983556', '于子韬', 1, '+1 614-730-1504', 3, '396773428214078832', '223 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-06-24', 0, 0, 'zitaoyu', '2016-09-29', 'zitaoyu6', '2019-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS803482236493', '薛睿', 1, '+81 70-7007-0972', 1, '262651379365031313', '48-kai, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-10-21', 0, 0, 'rxue7', '2008-07-09', 'ruix', '2005-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS788032328586', '黃慧嫻', 0, '+81 74-508-6939', 1, '814413455043341540', '3F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-02-19', 0, 0, 'wonwh', '2016-06-16', 'waihan1942', '2009-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS578614801548', 'Ellen Snyder', 0, '+81 3-1852-5560', 2, '001698780797809279', '日本東京中央区銀座三丁目12番3号49階', '1990-08-17', 0, 0, 'els15', '2010-07-29', 'ellensnyd1218', '2017-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS963812491861', '文裕玲', 0, '+1 838-539-0537', 2, '030307788377783091', '169 Central Avenue Apt 33, Albany, NY 12206, United States', '1985-03-01', 0, 0, 'manyuling', '2009-02-16', 'manyuling', '2000-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS157394885530', '木下瑛太', 1, '+81 90-1827-9948', 0, '669942569730822075', '日本札幌中央区宮の森四条六丁目1番4号6階', '1989-06-20', 0, 0, 'kinoshita414', '2001-08-23', 'kinoshitae809', '2002-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS577007108981', '田中健太', 0, '+86 171-5565-6942', 3, '896347479699283467', 'Room 26, CR Building, 886 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-10-12', 0, 0, 'tanaka3', '2006-03-31', 'kentatana421', '2009-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS290895312977', 'Craig Campbell', 0, '+81 66-220-0870', 0, '069407526459200306', '日本おおさかし西成区出城一丁目1番2号2号室', '1993-03-23', 0, 0, 'cacraig42', '2007-05-01', 'campbellcra', '2006-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS301938978756', '蔡秀英', 0, '+86 10-049-8520', 2, '980529085335124334', '中国北京市延庆区028县道87号7号楼', '1997-06-18', 0, 0, 'caxiuying8', '2005-10-11', 'xicai', '2003-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS019211237051', '戴宇宁', 0, '+81 3-4824-0262', 0, '375718793533290490', '17F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-08-04', 0, 0, 'dayuning', '2018-10-25', 'yuning97', '2016-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS778516483915', 'Daniel Dunn', 1, '+81 3-3709-4178', 2, '361580527376861719', '4F, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-12-05', 0, 0, 'dunn05', '2005-03-11', 'duda', '2006-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS503796432760', 'Emma Dixon', 1, '+81 80-4634-0915', 2, '424513298605857722', '40-kai, 1-5-7, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-09-21', 0, 0, 'dixon1993', '2021-06-05', 'dem', '2019-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS228776109589', '薛天榮', 0, '+86 188-1716-9730', 2, '280596560104089121', 'Room 43, CR Building, 614 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-01-16', 0, 0, 'tinwings', '2006-12-27', 'twsit', '2020-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS744568628560', 'Linda Wells', 1, '+81 70-4804-9048', 2, '693433996253872064', '15F, 1-7-17 Saidaiji Akodacho, Nara, Japan', '1989-12-17', 0, 0, 'lindawell', '2014-12-23', 'wells1989', '2020-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS169668708793', '贺云熙', 0, '+81 52-967-6770', 3, '923121226224864056', 'Rm. 20, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1985-01-28', 0, 0, 'yunxi1', '2018-09-21', 'heyunxi', '2006-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS192715922898', '吕璐', 0, '+81 70-9338-5974', 4, '310043928883453811', '日本東京渋谷区代々木二丁目3番16号18階', '1998-12-24', 0, 0, 'lulu', '2000-07-19', 'lu407', '2006-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS961792935296', '龙璐', 1, '+81 74-103-6787', 3, '685312890226719599', '日本ならし西大寺赤田町一丁目7番12号13号室', '1996-05-16', 0, 0, 'lonlu', '2009-11-02', 'longlu', '2011-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS380227572092', 'Wayne Sullivan', 0, '+81 3-1850-1025', 4, '966690468295294478', '21-kai, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-04-10', 0, 0, 'wayne1', '2009-08-27', 'sullivanwayne118', '2014-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS163957883358', '池田瑛太', 0, '+44 5235 853235', 3, '290393004798241863', 'Flat 28, 738 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-04-08', 0, 0, 'ikeda1', '2006-12-29', 'ikedaei', '2012-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS347419464638', 'Amber Holmes', 1, '+81 3-3345-0544', 1, '387821284268101336', '日本東京港区東新橋一丁目5番14号33階', '1992-03-23', 0, 0, 'amber2013', '2014-10-03', 'holmesamber621', '2011-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS125730358385', '唐詩涵', 0, '+1 312-181-4767', 2, '270381671471543918', '36 Pedway Apartment 19, Chicago, IL 60601, United States', '1985-02-22', 0, 0, 'tshi53', '2013-06-13', 'shihan818', '2016-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS590847569755', '罗宇宁', 0, '+81 90-0688-3389', 3, '646407276747326028', '12F, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-10-14', 0, 0, 'yuninglu', '2019-05-16', 'ly5', '2001-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS805520640216', '方家強', 0, '+81 70-3533-6584', 1, '953144418601856318', '39F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-24', 0, 0, 'kakeuf612', '2007-07-06', 'fong7', '2013-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS661923335799', '傅宇宁', 0, '+86 160-2723-6743', 2, '140547413294540520', 'Room 10, 830 Lefeng 6th Rd, Zhongshan, China', '1998-03-26', 0, 0, 'fu2', '2002-10-06', 'fyuning', '2008-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS851105960106', 'Andrea Ortiz', 0, '+86 755-143-1957', 0, '288036519670947786', 'No.28 building, 532 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-07-28', 0, 0, 'ortandrea10', '2005-03-14', 'ortizandrea3', '2008-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS105272809852', '蘇永權', 0, '+86 176-4263-5825', 1, '703570055463633648', 'No.13 building, 386 028 County Rd, Yanqing District, Beijing, China', '1996-06-21', 0, 0, 'sowingkuen1014', '2007-11-15', 'sowk', '2013-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS022151959848', 'Shirley Hernandez', 0, '+1 213-306-5124', 2, '379709236106705164', '663 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1989-11-29', 0, 0, 'shirleyhernandez131', '2021-09-27', 'shirleyhern619', '2000-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS127510418872', '林惠妹', 1, '+81 52-667-2185', 2, '879436649656294908', '日本なごやし熱田区千年二丁目5番9号42階', '1988-01-21', 0, 0, 'huimei93', '2011-07-29', 'lahuimei', '2020-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS134220291883', '野口美羽', 1, '+1 212-307-5932', 3, '387023471706268262', '639 Wooster Street 3rd Floor, New York, NY 10012, United States', '1985-11-29', 0, 0, 'nogucmiu3', '2006-12-05', 'miunoguchi3', '2017-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS984874592128', '李秀英', 1, '+86 755-102-9818', 1, '224341593157574502', 'Room 39, 820 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-15', 0, 0, 'xiuying7', '2017-03-27', 'lixiuying', '2005-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS110744717067', '徐國賢', 1, '+86 755-981-1830', 2, '585071692318410537', '中国深圳龙岗区布吉镇西环路457号24楼', '1994-08-16', 0, 0, 'kwokyin2002', '2001-04-02', 'tskwokyin', '2018-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS674772214120', 'Lee Perez', 1, '+1 838-192-5663', 2, '438516171842102769', '554 State Street Apt 2, Albany, NY 12203, United States', '1999-02-16', 0, 0, 'lee8', '2017-08-01', 'perelee', '2000-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS393030227963', 'Bobby West', 0, '+1 330-593-8334', 0, '169861411876807194', '762 Riverview Road Apartment 6, Akron, OH 44313, United States', '1998-02-18', 0, 0, 'web', '2002-04-21', 'webobby2011', '2014-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS839291016345', '曹仲賢', 0, '+86 755-493-1700', 2, '089942831222414300', '中国深圳龙岗区布吉镇西环路101号9号楼', '1987-05-26', 0, 0, 'chungyinc', '2020-04-21', 'ccy', '2017-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS249684948228', 'Patricia Stewart', 1, '+81 90-4472-4530', 1, '495386192958141628', '42F, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-19', 0, 0, 'patricia1995', '2020-04-30', 'patricia203', '2012-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS522168431760', 'Victor Sullivan', 0, '+81 11-536-8920', 4, '591372927540851461', '35F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-11-28', 0, 0, 'victorsullivan9', '2021-02-08', 'sullivic', '2014-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS156506503435', '贾致远', 0, '+81 74-168-7722', 2, '401798583047971473', '日本ならし西大寺赤田町一丁目7番9号37号室', '1988-11-02', 0, 0, 'zhiyujia611', '2009-07-09', 'jiazhiyuan1', '2001-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS641950060929', 'Jeffery Wilson', 0, '+81 11-920-7800', 3, '363144817533711457', '日本札幌白石区菊水三条五丁目2番2号20階', '1990-09-15', 0, 0, 'wilj', '2017-09-08', 'wilsonjeffery', '2005-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS604326643308', '孫家輝', 1, '+1 718-517-3128', 1, '807001036446648342', '766 Columbia St Suite 50, Brooklyn, NY 11231, United States', '1995-11-09', 0, 0, 'hsuan73', '2006-01-05', 'hkafai', '2007-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS096812907642', '唐天榮', 0, '+81 70-0378-7992', 3, '039381880413109744', '日本なごやし瑞穂区河岸町四丁目20番19号18階', '1991-11-23', 0, 0, 'twtong63', '2007-12-16', 'tongtinwing', '2002-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS037440747866', '黎俊宇', 1, '+81 11-353-2951', 1, '154754793827196072', '49F, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-07-30', 0, 0, 'lchunyu', '2017-11-14', 'lachunyu', '2002-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS687446768944', '朱霆鋒', 1, '+44 (151) 451 8573', 2, '417764918138826780', 'No.42 Main building, 509 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-08-24', 0, 0, 'tingfchu54', '2014-02-17', 'ctf', '2010-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS454254641202', 'Jane Phillips', 1, '+81 70-8375-2027', 2, '170383888202892222', '27F, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-11-11', 0, 0, 'janephill1960', '2021-05-24', 'janephillips', '2017-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS898431735530', '钱子韬', 1, '+86 188-8833-5276', 2, '565069240669209527', '中国深圳罗湖区清水河一路866号45室', '1999-02-20', 0, 0, 'zq1990', '2005-04-13', 'qzitao10', '2013-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS890605049957', '苑安琪', 0, '+86 28-9092-2266', 2, '762820875673406830', '6F, 563 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-01-15', 0, 0, 'onkayyuen', '2010-04-02', 'okyuen', '2010-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS764632823367', '汪杰倫', 1, '+81 70-6781-7062', 2, '514781068727876389', '27F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1990-09-14', 0, 0, 'clwong', '2009-03-09', 'chiehwong47', '2019-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS822271191439', '三浦絢斗', 1, '+81 74-784-8319', 0, '689859578237953098', '日本ならし大和郡山市本庄町一丁目1番9号39階', '1997-10-11', 0, 0, 'aymiura2', '2015-08-07', 'ayatom', '2008-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS557555534301', '梁子异', 1, '+81 74-989-3614', 1, '371343018134584469', 'Rm. 30, 3-9-8 Gakuenminami, Nara, Japan', '1987-08-10', 0, 0, 'ziyiliang', '2007-04-29', 'ziyiliang2', '2021-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS601643666047', 'Anita Bell', 0, '+86 10-118-8012', 0, '042669710059631336', '中国北京市西城区西長安街964号22栋', '1992-04-19', 0, 0, 'beanita', '2019-10-14', 'bellan', '2006-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS970926134946', 'Thelma Chen', 0, '+86 20-2162-9822', 1, '614359228359985720', '中国广州市白云区小坪东路736号35栋', '1985-12-22', 0, 0, 'chethelm219', '2009-12-26', 'tc78', '2019-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS461153781320', '山下美咲', 1, '+86 184-6087-8778', 4, '604409419458276282', 'No.3 building, 76 Yueliu Rd, Fangshan District, Beijing, China', '1992-07-15', 0, 0, 'misakiyam', '2017-03-12', 'yamisaki', '2017-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS525628564974', 'Jacob Munoz', 0, '+81 80-8535-9971', 1, '018168250920644343', '日本札幌白石区菊水三条五丁目4番16号22階', '1999-02-17', 0, 0, 'munozjacob', '2015-12-19', 'jacob1128', '2010-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS606384188786', 'Diana Garcia', 1, '+81 52-466-2315', 1, '417288347940425948', '28F, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1991-07-15', 0, 0, 'dianagar2', '2018-02-18', 'gdiana', '2014-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS987541857438', '黄子异', 1, '+86 10-326-0714', 3, '310600926794309784', '中国北京市東城区東直門內大街228号23栋', '1995-04-12', 0, 0, 'ziyihuang', '2001-07-03', 'ziyihuang', '2018-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS169802888974', 'Jose Thomas', 1, '+1 718-769-0151', 1, '825718765823690954', '481 Columbia St Apartment 11, Brooklyn, NY 11231, United States', '1991-01-15', 0, 0, 'thomaj315', '2019-04-28', 'thomajose321', '2007-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS098939694662', '曹青雲', 1, '+81 11-221-1257', 0, '867252081036267414', '日本札幌中央区宮の森四条六丁目1番6号36階', '1985-07-25', 0, 0, 'cwc18', '2000-11-07', 'chochingwan316', '2005-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS594813413395', '藤家輝', 0, '+1 312-596-0887', 0, '846859273054801597', '187 Rush Street Apt 33, Chicago, IL 60611, United States', '1985-04-10', 0, 0, 'tangkaf', '2002-11-27', 'takafai', '2009-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS176215119177', '鄧頴璇', 1, '+1 330-234-2190', 3, '127507344616713207', '950 Collier Road Apartment 47, Akron, OH 44320, United States', '1996-09-18', 0, 0, 'tang1012', '2017-07-02', 'tangws4', '2003-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS841443391879', '應慧敏', 1, '+44 5206 020810', 3, '255255481393497292', 'Flat 40, 977 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-02-21', 0, 0, 'ywm2009', '2012-12-12', 'yingwm', '2019-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS387910730195', '毛云熙', 1, '+1 213-788-1750', 3, '020950622181394749', '66 Grape Street Apartment 47, Los Angeles, CA 90002, United States', '1995-03-06', 0, 0, 'mao07', '2003-09-03', 'maoy03', '2013-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS515915862398', '蕭慧儀', 1, '+81 80-3623-4034', 4, '555344975191941196', '日本おおさかし東住吉区東田辺三丁目27番11号33号室', '1989-06-16', 0, 0, 'waiyeesiu64', '2003-08-27', 'waiyee78', '2009-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS792339456460', '三浦架純', 1, '+86 755-2233-3645', 1, '333279824888672474', '中国深圳龙岗区布吉镇西环路387号8栋', '1998-10-19', 0, 0, 'kasumimiur', '2019-08-15', 'mika1950', '2021-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS568907482181', '毛嘉伦', 0, '+1 213-530-9467', 4, '731531127980970364', '188 S Broadway Apartment 50, Los Angeles, CA 90015, United States', '1988-12-01', 0, 0, 'mao1008', '2010-07-13', 'jialun41', '2012-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS370735670312', '呂明', 1, '+44 5990 703336', 2, '150288819376314434', 'Flat 25, 323 Maddox Street, London, W1S 1PU, United Kingdom', '1991-02-13', 0, 0, 'luim623', '2013-04-05', 'mlui17', '2022-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS183237196598', '毛詩涵', 1, '+86 150-8270-1847', 3, '283446682238759215', '中国广州市白云区机场路棠苑街五巷940号43栋', '1989-07-30', 0, 0, 'shihanm', '2017-08-17', 'maosh', '2012-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS377988295191', '樂天榮', 0, '+81 74-475-8029', 1, '016660217666864795', '日本ならし学園南三丁目9番11号33階', '1993-10-05', 0, 0, 'lok629', '2008-12-31', 'twlo66', '2017-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS102863739892', '夏詩涵', 0, '+1 330-146-5819', 2, '080921100253214555', '62 Collier Road Suite 36, Akron, OH 44320, United States', '1995-04-15', 0, 0, 'xias', '2014-06-01', 'shihaxi2', '2020-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS898730022420', '高木陸', 0, '+81 80-3182-2254', 3, '136866353434764250', '日本おおさかし平野区加美東四丁目9番12号13号室', '1996-05-18', 0, 0, 'riku50', '2012-03-13', 'takagiriku9', '2009-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS190593801626', '贾子异', 1, '+81 11-686-5750', 2, '928199798940449976', '10-kai, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-02-09', 0, 0, 'jia8', '2002-02-22', 'ziyi62', '2011-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS835431672611', '雷梓晴', 0, '+81 80-9940-6975', 2, '927682982446291378', '18-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-09-18', 0, 0, 'tcl', '2015-12-05', 'ltszching325', '2017-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS892743032625', '今井美咲', 0, '+81 11-937-0761', 3, '844837439303506782', '日本札幌厚別区上野幌一条二丁目1番17号16号室', '1985-05-26', 0, 0, 'misim', '2004-11-19', 'imisaki9', '2021-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS630739210175', '曹詠詩', 1, '+81 3-7778-3643', 1, '579167314745944129', 'Rm. 20, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1994-08-27', 0, 0, 'wingszecho1220', '2021-07-04', 'chows4', '2004-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS142421365268', '马嘉伦', 0, '+44 5657 487223', 1, '445554826310494469', 'No.10 Main building, 366 Maddox Street, London, W1S 1PU, United Kingdom', '1998-09-05', 0, 0, 'maji', '2006-08-14', 'jialunma715', '2014-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS888369274083', '冯云熙', 0, '+86 769-9958-3365', 1, '508944861716947642', '中国东莞坑美十五巷355号48号楼', '1997-03-25', 0, 0, 'yunxif66', '2005-09-18', 'fengy', '2014-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS946236593139', '錢家玲', 0, '+86 21-324-4941', 3, '215213093859730555', 'Room 21, 251 Jianxiang Rd, Pudong, Shanghai, China', '1988-10-23', 0, 0, 'chkl', '2003-10-13', 'ckl', '2019-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS880255835822', '橋本美月', 1, '+1 330-732-9950', 2, '516384738107655616', '612 Fern Street Apt 11, Akron, OH 44307, United States', '1991-05-24', 0, 0, 'hashimoto20', '2007-10-02', 'hashimotom', '2013-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS552544328315', '任梓軒', 1, '+44 (1865) 58 0751', 2, '826582396815281172', 'No.50 Main building, 234 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-09-28', 0, 0, 'yamth90', '2000-07-12', 'tszhin1957', '2005-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS984583504635', '孟宇宁', 1, '+86 130-8175-5448', 3, '613143862227107709', '中国北京市海淀区清河中街68号508号32楼', '1997-04-07', 0, 0, 'meyunin', '2006-07-01', 'yunimeng626', '2017-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS089894876437', 'Eleanor Rice', 0, '+44 5798 845745', 2, '116086211652045270', 'Block 34, 57 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-04-26', 0, 0, 'eleanrice110', '2004-10-15', 'eleanorrice721', '2009-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS754286133143', 'Jonathan Murray', 0, '+1 312-768-8826', 1, '319603053856939929', '28 Rush Street Apt 2, Chicago, IL 60611, United States', '1995-12-15', 0, 0, 'jonamurray', '2014-01-20', 'jmurray', '2011-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS492214480425', '關詠詩', 0, '+81 70-3466-1105', 1, '034984237228648358', '日本札幌清田区真栄四条五丁目19番12号15階', '1985-09-14', 0, 0, 'wingkwan', '2020-08-01', 'kwan5', '2013-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS389349688009', '萬詩君', 0, '+44 (121) 830 4334', 0, '447861340836594414', 'Flat 48, 360 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1987-04-07', 0, 0, 'skmeng', '2001-11-08', 'mengszekwan', '2002-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS626111497800', '胡晓明', 0, '+86 10-2157-5593', 0, '010233188964705723', '中国北京市房山区岳琉路526号4室', '1996-01-23', 0, 0, 'xiaominghu606', '2006-01-02', 'huxia', '2016-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS797761840411', 'Helen Reynolds', 1, '+86 191-6929-7299', 3, '639246771455904158', '中国北京市東城区東直門內大街749号31栋', '1989-03-07', 0, 0, 'rhele8', '2021-03-16', 'helenreynolds', '2012-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS128560311957', '金安琪', 0, '+81 90-2118-0395', 3, '211000941387905107', '8-kai, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-11-14', 0, 0, 'jinanqi6', '2020-10-19', 'jianqi', '2007-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS806356788385', '崔岚', 1, '+86 28-4175-9822', 2, '249988431797526001', '33F, 47 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-02-06', 0, 0, 'cuilan', '2014-08-21', 'lancu1999', '2011-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS076447682958', 'Billy Cruz', 1, '+1 838-784-5963', 1, '592082820610625621', '295 State Street Suite 10, Albany, NY 12203, United States', '1998-01-30', 0, 0, 'bcru', '2000-05-30', 'bilcr', '2008-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS381180778475', '郝宇宁', 1, '+81 66-578-7222', 3, '778640151101796269', '日本おおさかし近江堂一丁目7番12号23号室', '1996-04-11', 0, 0, 'hao91', '2018-12-10', 'yuning423', '2020-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS067467250111', '蔣發', 0, '+86 755-7000-8546', 4, '685210714756844762', '中国深圳罗湖区田贝一路670号43室', '1986-05-10', 0, 0, 'chf1946', '2021-03-27', 'fatchia88', '2015-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS144281371262', '小島美咲', 0, '+81 70-3568-0020', 1, '962315580440161728', 'Rm. 40, 5-2-7 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-09-18', 0, 0, 'kojimamisaki', '2019-08-19', 'kojima2', '2013-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS389204371749', '房慧珊', 1, '+86 185-9149-9177', 3, '187922190464029681', '中国成都市锦江区红星路三段17号29栋', '1994-02-06', 0, 0, 'wsfo59', '2006-02-04', 'waisanfong', '2000-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS284870758196', '區明詩', 1, '+86 132-1678-1774', 1, '195131113127621320', 'Room 7, CR Building, 944 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-07-14', 0, 0, 'au301', '2008-06-07', 'msau', '2016-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS481279156792', 'Todd Garza', 0, '+86 760-513-4274', 0, '327814296493016677', '中国中山天河区大信商圈大信南路114号华润大厦38室', '1987-07-01', 0, 0, 'gtodd', '2007-08-16', 'todd925', '2000-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS678891341474', '田璐', 0, '+1 614-660-1110', 3, '106089149759851524', '869 Wicklow Road Apartment 49, Columbus, GA 43204, United States', '1994-04-21', 0, 0, 'lu91', '2001-11-11', 'tialu', '2016-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS069367428104', '魏子异', 0, '+44 (1865) 68 6455', 2, '108081400861602775', 'Block 9, 224 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-10-15', 0, 0, 'ziwe', '2001-09-10', 'ziywei09', '2005-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS543954711261', '毛詩涵', 1, '+86 28-974-3597', 1, '252512159294433290', '中国成都市锦江区红星路三段416号4室', '1992-10-06', 0, 0, 'shihma', '2015-05-01', 'shihanmao', '2017-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS674106751831', '上田陽菜', 0, '+1 213-773-1186', 4, '859823088623306857', '611 Wall Street Apt 5, Los Angeles, CA 90003, United States', '1998-09-17', 0, 0, 'hina04', '2003-03-17', 'uhina', '2007-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS960088024667', 'Janet Bryant', 0, '+81 66-165-7500', 2, '962987494492176723', 'Rm. 46, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-06-02', 0, 0, 'janbryant2', '2001-09-07', 'bryant516', '2018-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS088167988618', '姚國賢', 0, '+81 3-8478-3945', 4, '531820218611558781', '26-kai, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1985-03-13', 0, 0, 'yeowky1986', '2003-06-12', 'yeky', '2019-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS904445060026', 'Diana Snyder', 1, '+86 192-4496-6338', 1, '320316175606439645', '3F, 707 Yueliu Rd, Fangshan District, Beijing, China', '1988-03-06', 0, 0, 'snyder6', '2012-02-12', 'snyderdiana', '2005-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS189878389424', 'Brenda Wilson', 1, '+86 10-0628-4203', 3, '436323736790271112', '22F, 517 West Chang''an Avenue, Xicheng District, Beijing, China', '1986-10-29', 0, 0, 'bwilson', '2009-11-13', 'brenda513', '2007-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS350620078153', '邓杰宏', 0, '+81 66-952-7492', 4, '385641706804114228', '日本おおさかし平野区加美東四丁目9番5号11階', '1988-11-17', 0, 0, 'denj', '2015-11-14', 'dengjiehong', '2012-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS313285071283', 'Tiffany Murray', 0, '+1 213-978-8326', 0, '918097502503531980', '364 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1996-01-07', 0, 0, 'tmurray', '2004-10-29', 'tmurray722', '2020-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS494295396864', '陆震南', 0, '+86 28-155-1423', 0, '181906157687293971', '中国成都市成华区玉双路6号52号38室', '1990-02-09', 0, 0, 'luz224', '2016-05-27', 'zhennan2002', '2018-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS958615009772', '蔡震南', 0, '+86 152-3389-2288', 3, '039138790909511806', '中国广州市海珠区江南西路656号19楼', '1991-06-10', 0, 0, 'caizhen1206', '2005-04-28', 'cazhe', '2002-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS936360954041', 'Frank Sullivan', 0, '+86 145-6947-9074', 0, '807411167454043355', 'Room 36, CR Building, 610 Binchuan Rd, Minhang District, Shanghai, China', '1992-12-21', 0, 0, 'sullivanfran88', '2010-03-23', 'frsullivan5', '2003-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS923114036120', '郭致远', 1, '+81 70-5887-7328', 0, '555818188521226534', '日本東京渋谷区代々木二丁目3番5号24階', '1999-02-20', 0, 0, 'guzhiyuan726', '2014-11-09', 'zhiyuan1124', '2008-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS377389578803', 'Leslie Foster', 0, '+86 10-325-0999', 3, '765913374288759168', 'Room 36, 267 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-08-31', 0, 0, 'foster4', '2002-01-01', 'foster130', '2016-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS544481652317', '丸山大輔', 1, '+44 7284 638719', 1, '775758853785975190', 'Block 22, 38 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-12-08', 0, 0, 'damaruyama65', '2000-02-06', 'daisuke413', '2009-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS667125109838', '金子紗良', 0, '+86 28-185-1501', 2, '407617780359904470', '中国成都市成华区双庆路580号39号楼', '1997-08-14', 0, 0, 'skan', '2008-12-11', 'kasara509', '2020-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS349989178709', '加藤彩乃', 1, '+1 838-465-1748', 1, '823602491824021900', '376 State Street Suite 32, Albany, NY 12203, United States', '1994-10-11', 0, 0, 'ayanokat', '2017-05-26', 'katoa', '2012-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS325014252841', '井上愛梨', 0, '+44 7195 713982', 3, '279051815230521800', 'No.33 Main building, 643 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1992-08-01', 0, 0, 'inoueairi8', '2016-04-23', 'airiino5', '2002-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS922390476136', 'Margaret Kelley', 1, '+86 160-6884-3295', 2, '646652352151188315', '中国广州市天河区天河路421号20栋', '1992-02-08', 0, 0, 'kelleymar', '2007-01-03', 'margaretkelley', '2008-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS942442335714', '尹志遠', 0, '+81 80-3775-2301', 4, '153226823250925426', 'Rm. 29, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-30', 0, 0, 'chiyuen9', '2017-05-09', 'ycy', '2011-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS915881213988', '毛惠妹', 0, '+44 (116) 023 7271', 2, '906411026414644828', 'Flat 19, 448 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-10-24', 0, 0, 'mhm', '2019-10-16', 'mohm', '2011-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS179143028579', '崔睿', 1, '+1 718-599-1684', 1, '130301540569777966', '64 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1997-01-22', 0, 0, 'ruicu6', '2002-07-04', 'ruicu17', '2004-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS997325419440', '鐘明', 1, '+86 161-2918-6886', 1, '765095369715015530', '中国中山京华商圈华夏街187号10室', '1995-05-12', 0, 0, 'mingchung', '2013-03-12', 'minchung', '2021-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS598873696116', '韦子韬', 0, '+81 90-1314-2489', 2, '405275213712278701', '日本ならし大和郡山市本庄町一丁目1番19号12号室', '1993-04-19', 0, 0, 'zitwei7', '2012-07-11', 'zitaowei8', '2006-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS116280864489', '彭宇宁', 0, '+44 7288 073087', 3, '655452385978682260', 'No.4 Main building, 127 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-03-11', 0, 0, 'peyunin', '2000-10-09', 'yunipeng311', '2010-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS883225448848', 'Judith Bailey', 0, '+86 769-072-8390', 0, '013343763525627981', '中国东莞坑美十五巷924号36号楼', '1997-05-04', 0, 0, 'bailey9', '2018-08-14', 'judithbailey', '2019-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS946256007000', '江麗欣', 0, '+81 11-507-5685', 3, '544622932383806887', '25-kai, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-07-20', 0, 0, 'lykon', '2012-06-29', 'konlaiyan', '2016-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS498834645771', 'John Barnes', 1, '+44 (1223) 44 2210', 3, '151045733656406581', 'Unit 30, Oxford Eco Centre, 632 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-15', 0, 0, 'bjohn', '2005-03-29', 'bjohn1205', '2014-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS827928051556', '戴安娜', 1, '+86 190-1854-3837', 1, '566568695226120184', '中国成都市锦江区人民南路四段597号7号楼', '1994-08-23', 0, 0, 'daon08', '2000-02-01', 'daionna724', '2013-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS483343410800', 'Jeffrey Burns', 1, '+1 614-915-2311', 1, '668281913098545935', '682 East Cooke Road Suite 23, Columbus, GA 43214, United States', '1997-01-04', 0, 0, 'jefb', '2015-02-13', 'buj', '2007-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS295392190655', '向嘉伦', 1, '+81 80-5671-0754', 2, '882697151257694055', '日本札幌厚別区上野幌一条二丁目1番7号35階', '1988-02-15', 0, 0, 'xiang8', '2006-06-15', 'xiangjialun1', '2021-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS940870221488', 'Curtis Taylor', 1, '+86 193-4779-7148', 1, '069546948088606719', 'Room 50, CR Building, 64 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-12-23', 0, 0, 'tc1', '2007-03-04', 'taylorcurti', '2021-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS483540330011', 'Anthony Woods', 1, '+81 80-9815-5580', 1, '050057139541873749', '日本なごやし北区楠味鋺三丁目80番17号49号室', '1986-02-20', 0, 0, 'anthowoods', '2011-10-16', 'wooanthony1209', '2011-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS762726519131', '山下聖子', 1, '+86 755-960-9397', 1, '155829614995226992', '中国深圳龙岗区布吉镇西环路259号42室', '1998-11-09', 0, 0, 'yamashitaseiko', '2011-06-06', 'yseik218', '2008-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS047793403923', '魏云熙', 1, '+81 11-024-4922', 3, '053029316528253187', 'Rm. 16, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-10-24', 0, 0, 'wyun5', '2002-09-30', 'yunwei', '2021-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS826156462565', '餘天榮', 0, '+1 838-219-7498', 0, '906939031320209626', '336 Lark Street Apartment 25, Albany, NY 12210, United States', '1992-09-27', 0, 0, 'twyu', '2014-03-14', 'yuetinwing', '2001-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS909968493916', 'Josephine Gonzales', 1, '+44 5386 016906', 4, '160951591663785953', 'No.2 Main building, 476 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-10-01', 0, 0, 'josephinegonza', '2001-08-08', 'gonjos', '2009-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS907838380957', '宮崎彩乃', 0, '+44 (20) 1863 7336', 2, '105755941634291675', 'No.19 Main building, 361 Pollen Street, London, W1S 1NG, United Kingdom', '1994-04-20', 0, 0, 'ayamiyazaki', '2014-04-25', 'miyazakiayano', '2008-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS961169385414', '竹内舞', 0, '+81 3-7368-1918', 3, '702482850057829809', '日本東京渋谷区代々木二丁目3番4号33階', '1993-06-30', 0, 0, 'takeuchimai9', '2006-07-09', 'tma', '2011-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS977147943280', '黎詩君', 1, '+81 11-116-7693', 4, '803939663077559711', '14-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-02-11', 0, 0, 'lai217', '2020-06-05', 'laisze', '2014-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS319952323807', '池田桜', 1, '+81 52-401-3323', 0, '694536075696548713', 'Rm. 38, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-06-24', 0, 0, 'sakuikeda', '2001-11-25', 'sakui2', '2018-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS844034154111', '竹内蓮', 1, '+86 10-7423-4007', 3, '643167507321784948', 'No.41 building, 93 FuXingMenNei Street, XiCheng District, Beijing, China', '1985-02-26', 0, 0, 'rentakeu202', '2004-10-09', 'ret209', '2003-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS332028919430', '樊慧琳', 0, '+81 3-5862-0397', 0, '840807471175935495', '23F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-01-20', 0, 0, 'wlf', '2008-12-02', 'fanwl', '2000-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS897685148091', '福田彩乃', 1, '+81 70-2268-1972', 0, '243604442873953912', '日本ならし学園南三丁目9番13号44号室', '1987-01-27', 0, 0, 'ayanof', '2013-12-09', 'fukuda61', '2002-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS461202752720', '张晓明', 0, '+44 7009 570367', 1, '310051035752828043', 'No.19 Main building, 334 New Street, Birmingham, B2 4DB, United Kingdom', '1986-02-15', 0, 0, 'xiaomingzhang51', '2013-12-15', 'xiaomz624', '2006-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS319770802232', 'Elaine Mendoza', 0, '+81 11-385-7764', 2, '243259403953555102', '48F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-08-25', 0, 0, 'elainem19', '2019-07-25', 'mendoela', '2007-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS500253440860', '内田玲奈', 1, '+86 156-8249-0387', 2, '918705522098397816', '49F, 820 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1999-01-03', 0, 0, 'renauchida', '2000-06-15', 'reuchida', '2020-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS022687413579', '應家強', 0, '+81 80-2287-7606', 1, '190489115528648942', '日本札幌白石区菊水三条五丁目2番5号27階', '1999-01-19', 0, 0, 'kakeungying', '2000-07-24', 'ykk9', '2010-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS626052463753', '田中美緒', 0, '+86 760-5001-8756', 4, '117900010634827067', '4F, 10 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-10-25', 0, 0, 'tmio1998', '2021-08-19', 'mita720', '2002-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS402888922785', '高國權', 0, '+81 11-516-2055', 3, '264772630659406515', '37-kai, 2-1-5 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-12-07', 0, 0, 'kakk620', '2009-06-13', 'kwokkkao', '2017-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS524924874962', '松本愛梨', 1, '+81 66-524-1475', 1, '525513413418763489', '13F, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1993-03-02', 0, 0, 'matsumoto406', '2012-10-19', 'matsumotoair', '2000-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS445988915442', '石田大和', 0, '+86 769-979-7397', 3, '173293789895659368', '中国东莞环区南街二巷402号43室', '1997-11-20', 0, 0, 'yamish3', '2017-02-28', 'yamatoishida4', '2003-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS599596623454', 'Catherine Mendoza', 1, '+86 769-2553-5176', 3, '548259687749768502', 'Room 48, CR Building, 189 Shanhu Rd, Dongguan, China', '1991-06-29', 0, 0, 'cmendoza', '2020-09-12', 'cathemend208', '2018-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS590456750799', 'Rose Carter', 0, '+81 90-3615-9306', 2, '694503305612920899', '日本札幌白石区菊水三条五丁目4番20号50階', '1994-01-07', 0, 0, 'crose', '2018-12-10', 'carterro2', '2007-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS063276573059', 'Christopher Mills', 0, '+86 134-9737-7142', 0, '535766811368956633', 'Room 29, 626 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-21', 0, 0, 'christopher1', '2018-06-18', 'mills5', '2018-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS107267411399', '武田光', 0, '+1 312-181-6575', 4, '795192199519135507', '822 Rush Street Apt 37, Chicago, IL 60611, United States', '1997-05-10', 0, 0, 'hikaru41', '2015-02-22', 'takeda118', '2009-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS105403919181', '中島彩乃', 0, '+44 5220 760091', 3, '127202303414585837', 'No.49 Main building, 363 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-09-23', 0, 0, 'anakaj', '2008-04-07', 'ayanon', '2006-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS002936696932', '何子韬', 0, '+81 70-7816-8318', 3, '379686536494448971', '20-kai, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1985-12-12', 0, 0, 'zitahe2004', '2007-10-27', 'hzitao2', '2017-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS027839123799', '盧淑怡', 0, '+86 132-0329-4971', 4, '414110302324047925', 'Room 22, 503 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-02-10', 0, 0, 'sukyeel', '2006-05-29', 'lsukyee', '2006-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS627504331484', '苏云熙', 0, '+1 213-063-2481', 3, '494145081727215025', '507 Sky Way Apt 21, Los Angeles, CA 90043, United States', '1985-03-14', 0, 0, 'yunxis1974', '2015-04-26', 'suyunx', '2003-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS388942513009', 'Edward Mason', 1, '+44 (1223) 62 5698', 3, '451419432736750740', 'Unit 18, Oxford Eco Centre, 431 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-03-28', 0, 0, 'masonedward', '2005-03-19', 'masoned', '2001-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS814623436085', '周國賢', 0, '+86 755-471-0866', 4, '433532175921442948', 'Room 32, 457 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-03-06', 0, 0, 'chowkwo98', '2009-10-10', 'kychow', '2000-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS600865336412', '石田蒼士', 0, '+44 7680 739595', 0, '387340406021877981', 'Flat 34, 591 New Street, Birmingham, B2 4DB, United Kingdom', '1994-03-04', 0, 0, 'isaoshi7', '2012-06-26', 'ishidaao', '2003-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS405830305003', '刘安琪', 1, '+44 (1223) 52 4485', 2, '086186347883706704', 'No.49 Main building, 602 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-10-20', 0, 0, 'al2016', '2005-01-26', 'liuan725', '2016-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS139883646161', 'Mary Myers', 1, '+1 212-645-5915', 1, '300635496226230522', '942 Fifth Avenue Apartment 32, New York, NY 10017, United States', '1986-05-04', 0, 0, 'marymy', '2010-07-29', 'marymyer', '2007-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS507517656314', '韦嘉伦', 1, '+44 5152 539821', 0, '663790439721048420', 'Unit 3, Oxford Eco Centre, 502 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-08-27', 0, 0, 'jwei', '2009-10-16', 'weijial', '2003-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS516753557473', 'Leonard Weaver', 0, '+44 5454 712151', 3, '106543642331417698', 'Block 21, 514 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-05-07', 0, 0, 'leoweave', '2020-12-03', 'lw3', '2003-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS207044330210', '任俊宇', 1, '+44 5500 633024', 4, '013557111696492394', 'Block 9, 416 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1994-10-22', 0, 0, 'chunyuya', '2009-03-22', 'cyy', '2009-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS415358453643', '韓梓晴', 0, '+81 80-9347-3535', 3, '964409471037107833', '日本ならし学園南三丁目9番3号22号室', '1998-09-08', 0, 0, 'hantszching', '2019-07-22', 'tszching7', '2013-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS353883034811', '史嘉伦', 0, '+86 176-1984-0979', 1, '398380135810485421', '中国广州市白云区机场路棠苑街五巷175号43楼', '1993-11-21', 0, 0, 'shijia1', '2001-12-16', 'jialuns', '2009-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS900414870025', '菅原蓮', 1, '+1 213-071-1851', 3, '136530316750894293', '857 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-10-18', 0, 0, 'rensug9', '2000-01-12', 'sugawara520', '2020-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS736452641365', '中島優奈', 1, '+1 213-030-0648', 3, '200078628457059926', '374 Alameda Street Apt 41, Los Angeles, CA 90002, United States', '1988-10-16', 0, 0, 'nyuna', '2012-03-06', 'nyuna', '2003-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS198552863386', '谭秀英', 1, '+86 10-8144-1428', 4, '675028842023196664', '中国北京市延庆区028县道733号8栋', '1987-01-13', 0, 0, 'xiuyingtan', '2016-07-27', 'xiuying6', '2010-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS472781877683', 'Sheila Gordon', 1, '+1 330-307-5566', 1, '909119466235011972', '380 Fern Street 3rd Floor, Akron, OH 44307, United States', '1987-07-27', 0, 0, 'sheigo', '2008-07-11', 'sheig00', '2002-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS557942969638', '尹永發', 1, '+81 66-117-1402', 2, '917602008826390466', '日本おおさかし西成区出城一丁目1番11号2階', '1998-10-25', 0, 0, 'wfyin98', '2020-12-12', 'wingfatyin', '2015-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS152308365217', '杜嘉伦', 0, '+81 74-644-1651', 4, '165550451795408877', '日本ならし学園南三丁目9番20号48号室', '1997-09-10', 0, 0, 'dujial', '2001-04-18', 'jidu401', '2014-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS825570754239', 'Bradley Hall', 1, '+81 3-0775-2762', 3, '980570448010506558', 'Rm. 16, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-10-07', 0, 0, 'halbradl', '2006-06-28', 'hallbradl', '2001-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS540509582177', '菊地花', 1, '+86 199-8705-2917', 0, '363161933764527536', '11F, 94 Shennan Ave, Futian District, Shenzhen, China', '1993-03-31', 0, 0, 'hanak', '2013-09-18', 'hana1117', '2009-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS219475381864', '井上光', 1, '+44 (1865) 08 3976', 0, '646828545957262245', 'Unit 43, Oxford Eco Centre, 555 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-06-28', 0, 0, 'hinoue78', '2018-10-21', 'inoue608', '2020-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS746859930292', '樊朝偉', 0, '+86 28-083-0973', 3, '364049145683544956', '中国成都市成华区二仙桥东三路448号4楼', '1997-12-28', 0, 0, 'fan623', '2002-07-23', 'chiuwaifa', '2016-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS774719555912', '王子异', 1, '+81 80-6638-0046', 1, '635697548748803797', '48-kai, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1996-06-14', 0, 0, 'wang67', '2015-05-11', 'ziyiwang', '2006-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS259720176019', '市川美月', 0, '+86 195-3577-1905', 0, '020619199363013900', 'Room 12, CR Building, 755 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-05-09', 0, 0, 'miichi407', '2019-04-12', 'im10', '2019-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS847942139072', '中山大和', 1, '+81 66-269-2513', 2, '811645171299187512', '33-kai, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-26', 0, 0, 'nakayamay210', '2001-12-10', 'yamatonakayama4', '2002-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS718399972021', '宣志明', 1, '+44 (151) 394 6560', 0, '158825020975854055', 'Flat 21, 309 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-05-11', 0, 0, 'hsuancm410', '2001-01-04', 'chiminghsua704', '2017-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS865505757000', '段璐', 1, '+81 70-6986-1697', 3, '644105001866011853', '33F, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-01-20', 0, 0, 'luduan', '2010-12-11', 'duan121', '2017-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS318981205175', '黃慧儀', 0, '+81 90-3405-6734', 2, '810756442195573897', '日本おおさかし西成区天神ノ森二丁目1番11号14階', '1989-04-05', 0, 0, 'waiyeewon226', '2005-05-28', 'wongwy5', '2013-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS801310669138', '李子异', 1, '+81 66-570-8061', 2, '431576862178523997', '日本おおさかし東住吉区東田辺三丁目27番8号16階', '1996-08-30', 0, 0, 'ziyili', '2018-10-17', 'ziyli1206', '2003-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS005499137177', '原葵', 1, '+86 10-5677-9705', 0, '987366726527379625', 'No.9 building, 947 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-04-04', 0, 0, 'aoihar904', '2002-06-21', 'harao', '2002-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS965421749278', '汪慧敏', 1, '+44 (20) 2080 9069', 0, '818094294587751578', 'No.4 Main building, 120 Hanover Street, London, W1S 1YD, United Kingdom', '1988-12-21', 0, 0, 'waiman2', '2006-05-05', 'wmwong111', '2010-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS950827552258', '余子异', 1, '+81 90-1631-8838', 4, '961307170469220656', '日本おおさかし西成区出城一丁目1番16号2階', '1996-06-03', 0, 0, 'ziyi830', '2018-10-11', 'yziyi620', '2001-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS774349637967', '斎藤七海', 1, '+86 10-6325-4084', 3, '377869620502773973', '中国北京市东城区东单王府井东街850号7号楼', '1989-12-09', 0, 0, 'nanasaito', '2005-02-15', 'ns86', '2009-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS097825399679', '姜宇宁', 1, '+81 11-537-2672', 1, '405215695226366975', '38-kai, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-09-08', 0, 0, 'yuningjiang', '2003-09-18', 'yuninj6', '2005-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS631906636124', '樊淑怡', 0, '+1 330-475-7556', 1, '666170455017172574', '863 Collier Road Apt 4, Akron, OH 44320, United States', '1987-11-04', 0, 0, 'syfan1971', '2003-06-30', 'sukyeefan', '2000-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS887631171891', 'Julia Gomez', 1, '+81 52-438-5067', 4, '562453685212091158', '日本なごやし北区清水三丁目19番15号11階', '1987-03-25', 0, 0, 'jugomez1', '2012-02-29', 'gojulia', '2003-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS363244971233', '樊浩然', 1, '+81 90-0342-0261', 4, '665043230953951288', '日本なごやし北区楠味鋺三丁目80番4号18階', '1985-06-14', 0, 0, 'hoyinfan', '2012-06-02', 'fan03', '2017-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS826532764592', '陶安琪', 1, '+44 (121) 093 2648', 3, '918402733200730957', 'Block 20, 606 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-10-21', 0, 0, 'taoa', '2014-01-18', 'anqitao', '2000-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS552694292708', 'Edna Moore', 1, '+86 769-4692-2701', 2, '310931775893711651', '中国东莞东泰五街338号华润大厦3室', '1989-09-18', 0, 0, 'emo512', '2010-11-06', 'mooreedn128', '2000-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS419433933677', '有村明菜', 0, '+81 11-529-2885', 1, '424039239899422990', 'Rm. 45, 13-3-16 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-12-11', 0, 0, 'akinaarimu', '2010-08-20', 'arimuakina6', '2015-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS753213954846', '佐藤拓哉', 1, '+1 718-161-5921', 3, '033112615360368972', '770 1st Ave Apartment 46, Brooklyn, NY 11220, United States', '1991-03-06', 0, 0, 'takuyasa', '2007-05-14', 'sattakuy', '2003-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS632010267478', '杨宇宁', 1, '+81 80-6128-8655', 1, '671366888237527459', '日本札幌白石区菊水三条五丁目2番9号11階', '1987-05-17', 0, 0, 'yuning7', '2016-06-29', 'yy8', '2013-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS442887204366', 'Linda Martin', 1, '+1 718-595-2133', 3, '913368921558898783', '329 1st Ave Apt 46, Brooklyn, NY 11220, United States', '1993-09-30', 0, 0, 'martinlind', '2016-07-30', 'mli', '2003-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS473636096736', '有村陽太', 0, '+44 5266 302450', 2, '225129444907972682', 'Unit 42, Oxford Eco Centre, 998 Pollen Street, London, W1S 1NG, United Kingdom', '1993-08-01', 0, 0, 'yoarim4', '2012-12-19', 'arimurayota3', '2006-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS994554924511', '岡本葵', 1, '+81 70-1042-6409', 1, '831097890827267506', '8F, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1990-02-13', 0, 0, 'okaoi1106', '2014-08-11', 'okamotoaoi', '2018-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS039464151912', '石田優奈', 1, '+1 213-706-8895', 3, '359092420951986185', '938 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-12-31', 0, 0, 'isyu', '2016-08-07', 'ishiyuna', '2010-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS327290476844', '横山拓哉', 0, '+81 52-883-1088', 2, '211617169747308450', '日本なごやし瑞穂区河岸町四丁目20番3号11階', '1988-06-25', 0, 0, 'yokoyamatakuya422', '2015-07-27', 'yota213', '2002-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS401561380270', 'Shirley Alvarez', 0, '+86 769-925-3468', 1, '288467447925308875', '中国东莞东泰五街29号14号楼', '1994-04-10', 0, 0, 'alvars', '2011-05-28', 'shalvar', '2005-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS840453945806', '麥嘉欣', 1, '+86 755-0329-7596', 3, '744381951877538571', 'Room 21, 523 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1985-01-07', 0, 0, 'makkaryan2012', '2003-03-15', 'kym109', '2010-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS144538914150', '毛嘉伦', 0, '+86 158-2858-4197', 3, '529804601428974434', 'Room 31, 528 Shennan Ave, Futian District, Shenzhen, China', '1998-10-14', 0, 0, 'jialun2', '2009-01-05', 'maojialun7', '2014-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS011481608257', '古安娜', 1, '+44 7930 258377', 0, '752822277466212499', 'Flat 47, 173 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-10-07', 0, 0, 'konna9', '2015-03-21', 'kuon', '2000-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS862971702336', '小島結翔', 0, '+81 11-654-7352', 3, '156034317684413319', '日本札幌白石区菊水三条五丁目4番19号16号室', '1990-01-18', 0, 0, 'yuito1996', '2006-06-18', 'kojiyuito', '2005-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS591138888115', '區家文', 0, '+1 614-569-4240', 3, '216464854012182941', '817 East Alley Apt 26, Columbus, GA 43201, United States', '1986-04-14', 0, 0, 'kma1215', '2014-01-31', 'aukaman', '2016-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS464877039234', '岡田桜', 0, '+81 11-654-2944', 1, '112220661729755339', '日本札幌中央区宮の森四条六丁目1番16号16号室', '1991-03-02', 0, 0, 'okadasakura704', '2009-07-17', 'okadasakur', '2017-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS496106244895', '高木明菜', 1, '+81 3-6756-9773', 4, '465367500635224882', '日本東京中央区銀座三丁目12番7号18階', '1990-02-07', 0, 0, 'takina98', '2018-07-02', 'akinataka', '2018-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS667569239164', '小野百花', 1, '+86 181-4183-0258', 0, '864022765571643993', '中国上海市徐汇区虹桥路567号32楼', '1993-12-21', 0, 0, 'momoka107', '2013-11-08', 'momokaon', '2009-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS166212276003', '谭睿', 1, '+86 21-698-6572', 2, '874626581089480762', '中国上海市浦东新区健祥路535号40室', '1998-07-29', 0, 0, 'rtan', '2015-10-21', 'rui428', '2009-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS464691892472', '宣祖兒', 1, '+44 (116) 458 6089', 3, '658697506293874088', 'Flat 21, 908 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1993-02-19', 0, 0, 'hsuan7', '2004-03-18', 'hsuan813', '2014-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS593564907579', '丁璐', 1, '+44 7506 635206', 4, '089742713722585474', 'No.27 Main building, 544 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-10-20', 0, 0, 'luding', '2013-10-15', 'ding1996', '2016-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS261483699443', '陶家明', 1, '+81 66-272-2838', 1, '713889901458425449', '日本おおさかし近江堂一丁目7番1号43階', '1994-04-02', 0, 0, 'taokm', '2015-04-27', 'kaming45', '2022-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS146441302531', '後藤拓哉', 0, '+44 7749 378484', 4, '966630398856192298', 'Unit 15, Oxford Eco Centre, 243 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-10-09', 0, 0, 'takugoto7', '2021-07-08', 'goto2', '2007-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS328883138128', 'Stephanie Jimenez', 0, '+86 10-559-9110', 4, '308955498934224125', 'Room 25, 900 Sanlitun Road, Chaoyang District, Beijing, China', '1998-12-14', 0, 0, 'stephanie6', '2011-01-11', 'sjimenez', '2019-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS945112440943', '任嘉伦', 1, '+86 139-3130-4186', 1, '281511683645355611', 'Room 43, 71 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-10-25', 0, 0, 'renjialun619', '2006-05-06', 'rjial9', '2008-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS986796922217', 'Thomas Diaz', 1, '+86 21-1350-8174', 4, '293665052536100981', '中国上海市浦东新区健祥路463号8楼', '1992-08-01', 0, 0, 'thomas9', '2011-06-21', 'diat', '2009-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS698216203487', 'Bobby Kennedy', 0, '+86 755-091-9973', 3, '955123760225112485', '中国深圳罗湖区清水河一路791号16栋', '1991-09-30', 0, 0, 'bobby1973', '2007-02-24', 'bobbykenne', '2001-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS539558142614', 'David Russell', 0, '+44 5339 662241', 2, '490722846053282227', 'Flat 32, 122 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-03-28', 0, 0, 'rdav720', '2014-01-05', 'davidru822', '2008-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS156099286064', '常震南', 0, '+86 755-360-1191', 2, '107068451681453503', 'Room 35, 37 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-01-28', 0, 0, 'zchang', '2016-09-17', 'chanzhennan', '2001-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS847536825139', '何睿', 1, '+86 135-9316-0516', 2, '192557455374077002', 'Room 13, CR Building, 639 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-09-29', 0, 0, 'ruhe', '2001-02-13', 'rui7', '2007-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS384460242903', 'Victor Edwards', 0, '+44 (151) 651 7037', 2, '437815385397467023', 'Unit 38, Oxford Eco Centre, 288 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-02-11', 0, 0, 'edvictor', '2004-06-08', 'edvictor49', '2007-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS054004692084', '蔡安琪', 1, '+81 70-4847-4922', 1, '576030804951458573', '日本おおさかし西成区出城一丁目1番9号11階', '1987-02-26', 0, 0, 'anqicai326', '2003-01-19', 'anqic86', '2003-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS775380926606', '原田蒼士', 0, '+1 718-900-8738', 4, '929068904831402319', '721 Nostrand Ave Apartment 36, Brooklyn, NY 11216, United States', '1991-07-15', 0, 0, 'aohara', '2012-06-09', 'aoshiharada', '2002-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS257650465845', 'Ann Hicks', 1, '+81 70-7375-4381', 3, '452439014009760871', '日本なごやし北区楠味鋺三丁目80番7号28階', '1989-06-12', 0, 0, 'hicksann', '2009-01-25', 'hicks88', '2011-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS207054100520', '严云熙', 0, '+1 212-574-6294', 2, '283982239018508415', '73 West Houston Street Apartment 35, New York, NY 10014, United States', '1995-07-31', 0, 0, 'yuyan', '2000-11-26', 'yyunxi', '2020-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS320797688453', '原田樹', 1, '+86 170-0779-6242', 3, '561187842990638687', '中国成都市成华区双庆路670号华润大厦47室', '1992-07-18', 0, 0, 'iharada', '2002-09-12', 'itsuh602', '2000-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS587430299720', 'Sara Taylor', 0, '+44 (161) 597 1802', 1, '515888573414873578', 'Flat 39, 107 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-10-30', 0, 0, 'tsara5', '2017-05-24', 'sarat', '2017-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS020031664140', 'Andrew Marshall', 1, '+86 163-3036-9261', 2, '295207908549013679', '中国广州市白云区小坪东路92号25室', '1985-02-27', 0, 0, 'amar', '2003-06-22', 'andrmarshall', '2010-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS275719381007', 'Jose Simpson', 1, '+44 (116) 688 6924', 3, '964632600904402983', 'Flat 9, 693 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-06-26', 0, 0, 'sjose318', '2018-10-26', 'joss', '2019-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS256482573654', '彭致远', 0, '+44 7222 128863', 3, '109207128638148759', 'Unit 32, Oxford Eco Centre, 187 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-06-15', 0, 0, 'pengzhiyu', '2008-08-28', 'zhipeng', '2003-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS516735686249', '山口聖子', 1, '+81 66-424-6240', 1, '609264263857420645', '22-kai, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-04-15', 0, 0, 'yamaguchis', '2014-11-10', 'syamaguchi10', '2016-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS544535325962', '段致远', 0, '+1 614-672-8008', 1, '022967658796205346', '124 Tremont Road Apt 18, Columbus, GA 43212, United States', '1995-06-16', 0, 0, 'zhd3', '2009-01-03', 'zhdua', '2011-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS776849283350', '伊藤陸', 0, '+1 838-395-0277', 1, '540649679644077946', '119 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1991-01-09', 0, 0, 'rikui2', '2006-03-13', 'riku53', '2005-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS311571626535', '江家明', 1, '+86 21-869-6450', 1, '987888962816089871', '中国上海市浦东新区橄榄路447号33号楼', '1997-03-18', 0, 0, 'kmk', '2018-04-04', 'kongkm', '2014-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS689691844132', '王致远', 1, '+44 5029 456701', 1, '280828064492090520', 'Block 2, 127 Portland St, Manchester, M1 3LA, United Kingdom', '1995-05-12', 0, 0, 'zhiw', '2008-05-05', 'wang5', '2021-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS554687270676', '陳惠妹', 0, '+1 213-785-8406', 0, '001490472684792787', '720 Sky Way Suite 47, Los Angeles, CA 90043, United States', '1993-01-13', 0, 0, 'chan212', '2010-03-04', 'chanhm', '2013-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS637953365100', '侯杰宏', 1, '+86 131-4595-1932', 1, '630752494135433393', '中国中山紫马岭商圈中山五路75号9楼', '1987-05-08', 0, 0, 'jiehonghou122', '2012-11-08', 'houjiehong', '2011-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS224504944102', 'Susan Thompson', 0, '+86 176-4196-8063', 1, '887563386586644510', 'Room 50, 873 Shennan Ave, Futian District, Shenzhen, China', '1991-04-22', 0, 0, 'thsusan', '2009-11-27', 'thompsonsusan', '2000-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS765767712147', '西村陽菜', 1, '+86 177-7359-7183', 2, '834894024099103786', 'No.13 building, 900 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-07-26', 0, 0, 'hinanishimura', '2021-02-11', 'nihina', '2009-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS430805900124', '木村花', 1, '+44 (161) 341 9881', 2, '165998491077062578', 'Unit 1, Oxford Eco Centre, 423 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-11-06', 0, 0, 'hana10', '2006-04-11', 'kh2', '2008-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS316446892995', '羅曉彤', 1, '+44 7117 983518', 1, '748403926843584143', 'No.39 Main building, 870 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-07-06', 0, 0, 'hiutunglo930', '2008-04-06', 'hiutung3', '2013-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS349946971883', '向杰宏', 0, '+44 5942 831930', 3, '344909809084622009', 'No.26 Main building, 967 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-03-10', 0, 0, 'jiehongxia5', '2001-07-22', 'xjiehong2', '2011-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS134145636498', '鈴木葉月', 0, '+86 760-654-9326', 3, '881488785584734903', 'No.10 building, 257 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-07-01', 0, 0, 'shazuki', '2012-03-15', 'hazuki97', '2013-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS526829684991', 'Kyle Myers', 0, '+44 7428 542841', 1, '351721863210991195', 'Block 17, 630 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-27', 0, 0, 'myerskyle', '2010-10-30', 'kyle9', '2021-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS043925516739', '王朝偉', 0, '+1 212-641-9443', 1, '676778571381452538', '376 Bank Street Apartment 37, New York, NY 10014, United States', '1988-02-13', 0, 0, 'cwwong', '2021-02-05', 'wcw', '2012-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS099433041048', '新井葉月', 0, '+81 3-7689-4595', 3, '640944508388295869', '43F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-05-02', 0, 0, 'araihaz', '2004-09-15', 'araihazuki', '2009-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS482197946986', 'Marvin Bell', 0, '+81 52-985-0451', 0, '986652871225987296', '日本なごやし北区清水三丁目19番17号10号室', '1987-06-28', 0, 0, 'marvin902', '2006-01-29', 'marvinbel', '2003-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS778716320245', '杉山美羽', 0, '+81 52-525-6653', 2, '294295948895247249', 'Rm. 17, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-13', 0, 0, 'smi', '2000-04-04', 'miusugiyama427', '2015-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS754747993187', '汤詩涵', 0, '+86 173-8545-4243', 1, '390903066051464156', 'Room 12, 517 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-05-27', 0, 0, 'shitang', '2001-07-17', 'shihatang', '2016-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS072744114729', '桜井葉月', 0, '+81 90-0455-6129', 2, '381616713013510784', '日本ならし大和郡山市本庄町一丁目1番17号12階', '1989-02-04', 0, 0, 'sakuraiha', '2011-01-10', 'hazs', '2018-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS252469265525', '钱詩涵', 1, '+86 760-6422-1540', 0, '541816347115796014', 'Room 42, CR Building, 62 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-08-08', 0, 0, 'qian1', '2007-08-28', 'qs529', '2013-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS948570799149', '王安娜', 0, '+81 52-433-5536', 2, '293773426774863323', '日本なごやし熱田区千年二丁目5番9号17号室', '1991-10-18', 0, 0, 'wonon', '2006-04-07', 'wonna8', '2018-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS354047050485', 'Steven Ruiz', 1, '+1 718-841-2922', 3, '838988277769167486', '216 Nostrand Ave Apt 11, Brooklyn, NY 11216, United States', '1987-02-05', 0, 0, 'str', '2001-11-25', 'ruizs', '2014-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS040677899443', '尹宇宁', 1, '+1 213-348-4743', 3, '277349371242394418', '920 S Broadway Apartment 50, Los Angeles, CA 90015, United States', '1995-09-10', 0, 0, 'yuny1951', '2015-10-22', 'yyin', '2016-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS720196194080', '清水花', 1, '+44 (121) 749 8884', 1, '072676122776960654', 'No.45 Main building, 158 New Street, Birmingham, B2 4DB, United Kingdom', '1997-08-18', 0, 0, 'shimizuha', '2003-08-20', 'has', '2012-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS653664699414', '關安琪', 0, '+81 11-500-4572', 3, '382678067735414111', '1F, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-07-21', 0, 0, 'onkay10', '2007-08-10', 'okkwan', '2008-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS506219224708', '森光莉', 0, '+44 (116) 913 8520', 4, '571993807545948888', 'Flat 7, 111 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-07-26', 0, 0, 'mori121', '2007-03-04', 'morihikar', '2009-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS358194602928', '小山舞', 0, '+81 80-2030-1151', 3, '173378354600311768', '日本札幌白石区菊水三条五丁目4番4号30階', '1993-04-24', 0, 0, 'koyamamai', '2005-01-28', 'maikoya911', '2005-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS433132266144', '中川樹', 0, '+44 5918 492961', 2, '897437166775802784', 'Flat 19, 477 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1996-08-06', 0, 0, 'nakagawaitsuki', '2003-12-20', 'nai', '2009-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS091795993377', 'Wendy Perez', 0, '+86 10-7290-0658', 4, '065024592333199373', '中国北京市东城区东单王府井东街866号34楼', '1994-10-28', 0, 0, 'pewend110', '2011-08-12', 'perewendy', '2013-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS168401031016', '贾嘉伦', 1, '+86 28-188-9701', 3, '382742868260347147', '中国成都市成华区双庆路629号17号楼', '1997-10-28', 0, 0, 'jjia', '2016-03-26', 'jj2020', '2018-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS982945528844', '長谷川海斗', 1, '+81 70-5330-0434', 1, '239595063579029076', 'Rm. 33, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-01-20', 0, 0, 'hasegawa411', '2020-04-27', 'kaitohasegawa', '2004-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS952050283836', '伍玲玲', 0, '+1 614-551-8588', 3, '860290455216713255', '374 East Alley Apartment 33, Columbus, GA 43201, United States', '1995-12-28', 0, 0, 'ling8', '2018-07-09', 'ngll', '2016-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS291265701687', '阎岚', 1, '+81 80-9363-1676', 2, '619189247162748438', '45F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-02-05', 0, 0, 'yalan', '2004-03-31', 'yanlan', '2003-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS362815282277', '黄子异', 0, '+86 146-2461-9002', 4, '966222778661868151', 'No.24 building, 999 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-11-19', 0, 0, 'huangzi', '2006-04-08', 'huangziyi202', '2013-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS543592689869', 'Heather Baker', 1, '+86 10-397-7999', 3, '164053550592604387', 'Room 36, CR Building, 794 Yueliu Rd, Fangshan District, Beijing, China', '1995-07-18', 0, 0, 'baker2004', '2019-03-19', 'heather1127', '2015-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS541581149197', '樂玲玲', 1, '+86 197-7762-2922', 4, '405537746148172784', '中国北京市西城区复兴门内大街356号华润大厦1室', '1990-12-15', 0, 0, 'linglinglok91', '2016-10-07', 'lingling10', '2011-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS343650492490', 'Ryan Cook', 0, '+86 174-1616-5614', 1, '854269217768440686', '中国广州市白云区小坪东路963号1栋', '1988-06-30', 0, 0, 'cryan', '2011-12-02', 'cook9', '2000-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS254706074553', '李秀英', 0, '+1 838-010-8083', 2, '824930274887744480', '936 Broadway Apt 2, Albany, NY 12207, United States', '1988-12-06', 0, 0, 'xiuyingli8', '2000-08-17', 'li7', '2014-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS042790765935', 'Allen Moreno', 1, '+86 28-9462-7462', 2, '113144838817023979', 'Room 42, CR Building, No.104, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1990-12-01', 0, 0, 'morenoalle1122', '2011-07-14', 'allmo', '2005-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS969244418254', '吳裕玲', 1, '+44 (1223) 28 4161', 1, '573244948852005379', 'Flat 5, 257 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-07-27', 0, 0, 'yuling93', '2020-05-14', 'yln', '2004-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS450639734799', '蕭慧珊', 0, '+1 838-353-0622', 0, '198761834111607515', '792 Central Avenue Apartment 11, Albany, NY 12205, United States', '1991-09-22', 0, 0, 'swaisan', '2016-12-18', 'waisan41', '2008-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS224507524198', '汪岚', 0, '+1 614-861-9352', 3, '256125822022893584', '438 East Cooke Road Apt 29, Columbus, GA 43214, United States', '1997-10-30', 0, 0, 'lanwang', '2018-12-07', 'wangl', '2017-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS649755572798', '孙晓明', 1, '+86 197-7790-8599', 3, '090242284371306701', 'No.5 building, 398 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-11-04', 0, 0, 'sunxiao66', '2008-03-02', 'sunxiao', '2009-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS819117768432', '渡部凛', 0, '+81 80-5223-7830', 4, '158248309012053288', 'Rm. 37, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-07-14', 0, 0, 'rinwat', '2019-09-30', 'rin8', '2001-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS833441461197', 'Bonnie Robertson', 0, '+1 614-995-7361', 0, '968152309844588405', '596 East Cooke Road Suite 27, Columbus, GA 43214, United States', '1986-05-13', 0, 0, 'brober', '2015-07-05', 'br5', '2020-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS839431600919', '甘志明', 0, '+81 3-4451-8817', 3, '724038770750246888', '日本東京品川区東五反田五丁目2番16号42号室', '1989-07-15', 0, 0, 'chimingkam', '2019-04-16', 'chiming87', '2001-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS793309826396', '雷嘉伦', 1, '+81 11-440-4304', 1, '685007680566611868', '29-kai, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-07-05', 0, 0, 'jialunlei1016', '2020-03-02', 'jialul207', '2002-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS693406939229', '梁明詩', 1, '+86 157-7501-6298', 1, '812967468548004911', 'Room 49, 829 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-01-16', 0, 0, 'mingszel', '2019-07-04', 'leung2003', '2019-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS792406649840', '孟云熙', 0, '+86 10-544-5457', 4, '380380468661146982', 'No.30 building, 619 West Chang''an Avenue, Xicheng District, Beijing, China', '1986-11-18', 0, 0, 'yunxi8', '2021-10-12', 'yunxi6', '2019-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS936118291514', '藤井舞', 0, '+81 90-1640-6874', 1, '357236867024812627', '38-kai, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-09-03', 0, 0, 'maifujii3', '2012-02-06', 'fujiima722', '2014-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS981266444759', '村田桜', 0, '+81 80-3134-8231', 1, '041600343048280600', '41F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-01-13', 0, 0, 'sakuramurata', '2002-04-05', 'sakmurata308', '2019-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS720201900305', 'Eric Weaver', 0, '+86 195-2352-0998', 0, '729502058936464621', '中国北京市東城区東直門內大街786号4室', '1992-06-01', 0, 0, 'weavere2', '2012-01-04', 'erweaver', '2009-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS097325953231', '毛秀英', 0, '+86 159-5220-4154', 2, '073333755581608961', '中国中山乐丰六路302号42栋', '1995-03-03', 0, 0, 'maox', '2003-07-27', 'xim', '2020-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS294086037504', '阎璐', 0, '+81 90-4026-2461', 1, '799491624678699500', '日本東京千代田区丸の内一丁目6番13号16階', '1994-08-10', 0, 0, 'yanl', '2011-06-09', 'lu1116', '2003-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS286021549004', '顧力申', 1, '+44 5972 079839', 3, '995814168578780412', 'Unit 7, Oxford Eco Centre, 264 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1987-07-04', 0, 0, 'liksun7', '2002-10-12', 'kuls612', '2021-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS332402773576', 'Harold Mendoza', 0, '+86 10-3759-8044', 1, '895477493098830885', '中国北京市西城区复兴门内大街569号11号楼', '1994-04-27', 0, 0, 'haroldmendoza2', '2013-07-18', 'mendozaharold', '2005-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS767016987266', '于子异', 0, '+81 90-5526-7802', 3, '925524194433834192', '39F, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1998-02-08', 0, 0, 'ziyiyu', '2008-02-28', 'zyu10', '2003-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS346721852361', '白國明', 0, '+44 7272 465973', 2, '727093654396302095', 'Block 34, 446 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-07-22', 0, 0, 'pakkwokming', '2019-11-06', 'kmpak', '2012-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS039090569189', '小川涼太', 1, '+86 146-6602-7615', 1, '043621552474441926', '30F, 408 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-07-16', 0, 0, 'ryota402', '2019-07-14', 'ryotaogawa10', '2013-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS231126870064', '樊慧嫻', 1, '+81 11-892-2929', 0, '679000272895590543', '日本札幌白石区菊水三条五丁目4番20号24号室', '1993-08-20', 0, 0, 'waihanfan', '2008-12-19', 'fawaihan', '2021-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS141200149100', '中森一輝', 0, '+81 3-0858-2726', 3, '862518199812958609', '日本東京千代田区丸の内一丁目6番14号15階', '1994-01-05', 0, 0, 'nakamik', '2000-11-22', 'nakamori05', '2018-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS313438970519', 'Mary Tran', 1, '+44 (20) 6586 5468', 3, '424399830508743985', 'Unit 1, Oxford Eco Centre, 960 Pollen Street, London, W1S 1NG, United Kingdom', '1990-03-05', 0, 0, 'tmary', '2014-08-28', 'marytran', '2012-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS350331310716', 'Julia Castillo', 1, '+1 614-570-0235', 2, '882376613915027848', '550 East Cooke Road Apt 50, Columbus, GA 43214, United States', '1988-09-05', 0, 0, 'jca1946', '2016-05-26', 'castilloj', '2000-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS051299914709', 'Richard Dunn', 0, '+1 212-829-0397', 4, '682658937725129780', '22 Wooster Street Apt 44, New York, NY 10012, United States', '1997-07-05', 0, 0, 'ricdunn730', '2004-10-19', 'dunnrichard', '2019-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS528800974767', '何岚', 1, '+44 7002 603116', 2, '904371280110926737', 'Block 42, 551 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-05-30', 0, 0, 'hl9', '2002-08-20', 'he8', '2011-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS558369030373', 'Leslie Vasquez', 1, '+81 90-2480-3435', 3, '363028668101210195', '日本おおさかし西成区天神ノ森二丁目1番5号42号室', '1987-10-12', 0, 0, 'vleslie624', '2021-02-17', 'vasqul', '2004-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS950631996493', '工藤桜', 0, '+1 838-772-0711', 3, '782698047072418469', '908 Broadway Suite 34, Albany, NY 12207, United States', '1990-01-02', 0, 0, 'sakurakudo1118', '2021-08-17', 'sakurakudo', '2007-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS293573392877', '蔡惠妹', 1, '+81 3-9598-3376', 0, '362053358650040590', '日本東京港区東新橋一丁目5番4号40号室', '1985-10-07', 0, 0, 'chuimei3', '2001-05-28', 'chm1126', '2003-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS749386024080', 'Diane Guzman', 0, '+81 74-542-3152', 1, '386574008292217755', '41-kai, 3-9-6 Gakuenminami, Nara, Japan', '1987-09-18', 0, 0, 'diane6', '2017-05-02', 'guzd', '2021-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS933052001515', '陈璐', 1, '+86 141-1494-9680', 4, '460001803584383755', '40F, 631 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-08-15', 0, 0, 'luche', '2003-10-31', 'luchen', '2006-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS556014836045', '邱慧敏', 0, '+86 20-691-1689', 4, '949082972893695475', 'Room 38, CR Building, 512 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-07-16', 0, 0, 'ywaiman808', '2010-06-19', 'wmyau', '2012-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS129805332851', '古慧琳', 0, '+44 7792 778101', 2, '725841325264031626', 'Block 17, 179 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-07-08', 0, 0, 'wailamku81', '2014-07-08', 'wlku', '2012-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS107277894934', '潘子异', 0, '+44 (1865) 01 7050', 3, '183225628657842368', 'Unit 23, Oxford Eco Centre, 571 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-04-08', 0, 0, 'panziyi', '2020-02-01', 'zpan', '2000-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS404978633859', '野村陽太', 1, '+86 196-4581-4859', 3, '889693968492170102', '中国深圳龙岗区布吉镇西环路603号43号楼', '1992-12-27', 0, 0, 'yonomura', '2019-01-11', 'nomyo', '2012-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS255245242211', '姜杰宏', 0, '+44 5678 806525', 2, '955857932621936787', 'Unit 15, Oxford Eco Centre, 22 Pollen Street, London, W1S 1NG, United Kingdom', '1995-11-08', 0, 0, 'jiangjiehong325', '2019-11-18', 'jiehong121', '2020-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS814973103949', '谷秀文', 0, '+44 7967 375862', 2, '199339069968623274', 'Flat 30, 520 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-12-26', 0, 0, 'ksauma', '2001-12-27', 'koosm9', '2006-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS439119492894', '木村美緒', 1, '+1 718-261-6300', 1, '317159020708406474', '927 1st Ave Apartment 39, Brooklyn, NY 11220, United States', '1991-07-12', 0, 0, 'mki', '2011-08-07', 'kimurmi', '2001-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS211015355609', '杜志遠', 1, '+81 80-5489-0609', 1, '592539471960921155', '日本東京千代田区丸の内一丁目6番9号50階', '1989-05-02', 0, 0, 'cht', '2005-05-07', 'tocy', '2003-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS390807436915', '中村和真', 1, '+81 90-3697-6525', 3, '189869543571097845', '日本なごやし守山区瀬古東二丁目171番16号5階', '1989-08-12', 0, 0, 'nakamura10', '2003-01-17', 'nka7', '2011-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS887230422514', '福田凛', 1, '+86 755-154-2751', 0, '638547894754264245', '中国深圳龙岗区学园一巷251号华润大厦30室', '1998-11-22', 0, 0, 'rinfuk8', '2001-08-12', 'rinf', '2013-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS475556802339', '董子异', 0, '+81 80-7164-5420', 0, '057566981784508535', 'Rm. 4, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-06-28', 0, 0, 'dongziyi', '2004-02-05', 'ziydong65', '2000-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS601006644036', '罗致远', 0, '+86 134-2940-2590', 4, '626545502362804261', '中国东莞环区南街二巷814号43栋', '1986-06-29', 0, 0, 'luozh', '2019-08-11', 'zlu', '2011-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS129536796936', '小川美咲', 1, '+1 614-199-5025', 4, '920942043086875234', '79 East Cooke Road Apt 50, Columbus, GA 43214, United States', '1989-12-02', 0, 0, 'misakio729', '2008-10-05', 'misakio14', '2019-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS506259060978', 'Randy Richardson', 1, '+86 755-260-1688', 4, '977153383615241442', 'Room 9, CR Building, 634 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-01-31', 0, 0, 'rr6', '2018-10-20', 'randyrich902', '2002-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS770487654145', '竹内桜', 1, '+81 80-2707-0174', 0, '258875321490730084', 'Rm. 4, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-12-26', 0, 0, 'takeuchisakura', '2002-06-16', 'sakutakeu10', '2015-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS537093861450', '太田美羽', 1, '+86 190-0319-7305', 3, '973844100017623285', 'Room 39, 364 Middle Huaihai Road, Huangpu District, Shanghai, China', '1992-06-20', 0, 0, 'miuota', '2009-12-26', 'otamiu2', '2010-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS285417603233', '张詩涵', 1, '+86 10-540-3339', 1, '433034381881327670', 'No.17 building, 343 Yueliu Rd, Fangshan District, Beijing, China', '1991-08-06', 0, 0, 'shihanzhang', '2003-08-04', 'szhang1', '2013-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS336234034553', '成榮發', 1, '+81 90-9416-5279', 2, '815522807228602830', '15F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1988-01-09', 0, 0, 'shinwingfat', '2006-06-28', 'wfs701', '2001-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS699503422850', '木村美月', 0, '+1 718-709-8567', 2, '596853740882547382', '982 Bergen St Apt 44, Brooklyn, NY 11217, United States', '1993-11-08', 0, 0, 'mitskimura713', '2015-08-29', 'kmitsu622', '2014-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS673559895735', '严嘉伦', 0, '+44 (151) 637 2603', 2, '007797562542561522', 'No.29 Main building, 526 Hanover St, Liverpool, L1 4AF, United Kingdom', '1985-07-05', 0, 0, 'jialun9', '2005-03-24', 'yajia', '2019-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS899078349113', '羅志明', 1, '+44 7370 867734', 3, '536653535130819120', 'Block 22, 327 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-09-19', 0, 0, 'lo16', '2006-06-27', 'locm', '2013-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS506396268841', '湯天榮', 0, '+44 5891 844142', 2, '733873934320960474', 'Block 1, 65 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-01-12', 0, 0, 'twto', '2006-04-27', 'tong828', '2000-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS341208366079', '劉心穎', 1, '+44 (161) 935 3278', 2, '665580397141286311', 'Flat 30, 345 Portland St, Manchester, M1 3LA, United Kingdom', '1996-06-17', 0, 0, 'swl', '2014-08-21', 'swlau', '2002-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS203246242335', '和田樹', 1, '+1 330-498-0709', 3, '407303931967782153', '432 Collier Road Apartment 14, Akron, OH 44320, United States', '1986-06-05', 0, 0, 'itswad3', '2007-08-08', 'iwada1999', '2021-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS642497963089', '石田愛梨', 0, '+1 614-229-6965', 4, '775704097388837946', '400 East Cooke Road Apartment 44, Columbus, GA 43214, United States', '1986-11-19', 0, 0, 'aiishida', '2005-02-15', 'aiishida20', '2018-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS861923427099', 'Robert Shaw', 1, '+81 11-686-9929', 1, '895923348354441281', '9-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-04-29', 0, 0, 'rshaw330', '2020-04-18', 'sr1230', '2014-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS875918494203', 'Anna James', 0, '+81 80-6237-4763', 1, '588561901455091983', '11F, 3-27-12 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-04-10', 0, 0, 'anna2', '2003-04-25', 'annajame', '2004-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS276949153898', '戴德華', 0, '+44 (121) 684 7754', 3, '059493718723721433', 'No.40 Main building, 772 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-03-08', 0, 0, 'dtakwah', '2003-11-27', 'dta', '2000-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS106572188126', '藤田舞', 1, '+86 10-4630-0505', 4, '861382632537683208', '2F, 415 West Chang''an Avenue, Xicheng District, Beijing, China', '1997-05-09', 0, 0, 'mai430', '2007-10-16', 'mfujita78', '2014-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS462838471298', '上野七海', 0, '+1 838-899-5206', 0, '875412319834597287', '939 Central Avenue Apt 9, Albany, NY 12205, United States', '1990-04-13', 0, 0, 'uenonanam', '2011-01-08', 'nanau', '2009-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS790212474748', 'Lillian Garcia', 1, '+86 10-472-6585', 4, '741436535647425316', '中国北京市西城区复兴门内大街582号19栋', '1996-11-09', 0, 0, 'lilliangarci', '2008-02-20', 'garcilillian', '2005-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS169102631418', '青木百恵', 0, '+81 52-703-9613', 4, '498512851463571705', '日本なごやし北区清水三丁目19番16号36階', '1991-03-02', 0, 0, 'momoe6', '2012-12-11', 'aokmom76', '2013-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS662523521282', '洪惠妹', 1, '+81 90-4484-5104', 0, '605410426151821572', '日本ならし学園南三丁目9番10号19号室', '1986-08-31', 0, 0, 'huimei03', '2011-09-02', 'hunghm2002', '2003-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS490097873650', 'Betty Diaz', 1, '+81 70-4491-2983', 1, '311002302176346003', '日本おおさかし西成区出城一丁目1番1号23号室', '1991-08-01', 0, 0, 'bdiaz', '2011-09-11', 'bettydi', '2001-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS246507884043', 'Earl Gibson', 0, '+1 213-297-2211', 3, '725638038748228818', '970 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1988-02-23', 0, 0, 'earlg4', '2015-07-10', 'gibsone', '2002-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS489093085292', 'Miguel Reynolds', 1, '+86 28-1728-0274', 1, '381657571893619733', 'Room 8, No.449, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-04-13', 0, 0, 'migureynolds', '2004-02-10', 'miguelreynolds403', '2013-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS837215216689', 'Kevin Reed', 0, '+81 11-631-0792', 3, '309238206070203208', '25-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-27', 0, 0, 'kevin9', '2009-06-11', 'reedkevin', '2018-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS416916093032', '薛子异', 0, '+44 5229 823094', 2, '135136675669284415', 'Block 3, 824 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-10-11', 0, 0, 'xuezi1996', '2004-12-24', 'xue215', '2004-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS165563664205', '龙睿', 1, '+86 755-2531-1081', 3, '961232886822519246', '23F, 332 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-02-10', 0, 0, 'rui114', '2016-12-28', 'loru', '2015-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS152573034286', '廖曉彤', 1, '+86 143-7143-8624', 2, '439496351039328465', '20F, 611 Kengmei 15th Alley, Dongguan, China', '1990-08-19', 0, 0, 'hiutungl', '2011-03-12', 'htliao', '2012-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS752972473565', '赵秀英', 1, '+86 21-316-0285', 0, '782029964466709193', '中国上海市浦东新区橄榄路435号31楼', '1993-07-12', 0, 0, 'xiz', '2001-06-08', 'xzhao', '2010-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS508625743818', '有村舞', 1, '+81 80-5368-9692', 1, '028159250572027420', '日本なごやし瑞穂区河岸町四丁目20番12号45号室', '1988-08-30', 0, 0, 'arim1947', '2004-02-24', 'maa', '2012-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS560293072431', '严安琪', 1, '+81 11-481-9990', 2, '642871216697963580', '日本札幌中央区宮の森四条六丁目1番11号19階', '1995-09-16', 0, 0, 'anqiyan', '2009-02-02', 'yan2004', '2017-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS046107150295', 'Lois Gomez', 1, '+81 74-290-0436', 3, '136849423613684281', '日本ならし大和郡山市本庄町一丁目1番1号7階', '1996-05-10', 0, 0, 'lois1013', '2014-04-01', 'logomez', '2005-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS505735949645', 'Terry Webb', 0, '+1 213-027-3635', 1, '114718811169983201', '954 Figueroa Street Apt 39, Los Angeles, CA 90037, United States', '1991-06-03', 0, 0, 'terry1103', '2007-03-10', 'webterry', '2007-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS887486326548', 'Rhonda Howard', 0, '+86 10-998-6119', 4, '319865616100435465', '中国北京市东城区东单王府井东街130号20栋', '1990-10-24', 0, 0, 'rhondahoward', '2009-04-11', 'rhohoward', '2012-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS740256744725', '林美羽', 1, '+44 7398 130835', 1, '872567198796493471', 'Unit 22, Oxford Eco Centre, 191 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-11-11', 0, 0, 'miuhayashi18', '2009-08-18', 'hayashimi', '2002-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS464725275859', '余杰宏', 1, '+86 176-3586-3975', 1, '921227720752361780', '中国中山乐丰六路298号华润大厦1室', '1991-05-22', 0, 0, 'yjiehong', '2014-09-07', 'yujiehong', '2016-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS934388937563', 'Thelma Nichols', 1, '+81 11-092-4788', 2, '328461410764589147', 'Rm. 40, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-05-04', 0, 0, 'nicthel', '2008-12-06', 'nth', '2001-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS530742552222', '袁云熙', 0, '+81 66-885-9076', 3, '523649316554075553', '日本おおさかし近江堂一丁目7番3号2階', '1995-10-11', 0, 0, 'yuan3', '2010-06-06', 'yunxi6', '2014-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS362179776080', '官志遠', 1, '+86 20-4180-4678', 1, '960278395220362097', '中国广州市白云区机场路棠苑街五巷246号华润大厦26室', '1988-12-13', 0, 0, 'chiyuenkoon', '2011-02-16', 'cykoon', '2004-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS933753726068', '杜子韬', 1, '+81 90-7896-1186', 1, '218184070771779094', '11-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-03-25', 0, 0, 'duzitao924', '2006-09-15', 'duzitao', '2010-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS164170392139', '張天榮', 1, '+81 3-7211-8943', 4, '912765277459411762', '日本東京渋谷区代々木二丁目3番10号1号室', '1988-11-07', 0, 0, 'chetw', '2015-06-15', 'cheung45', '2012-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS680429802197', '應國明', 0, '+86 198-2417-7994', 1, '518717636007185918', 'No.24 building, 183 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-12-19', 0, 0, 'kwokming229', '2003-12-21', 'yingkm1213', '2004-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS926033832823', 'Sylvia Cooper', 0, '+86 28-745-7067', 4, '232183241073927316', 'Room 40, No.232, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-09-20', 0, 0, 'coopersylvia', '2010-05-09', 'sylviacooper', '2001-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS804039270314', '杨杰宏', 1, '+81 66-688-4154', 1, '436410018241211952', '日本おおさかし平野区加美東四丁目9番19号45階', '1994-05-24', 0, 0, 'yangj', '2020-12-11', 'jiehongyang', '2008-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS670088056560', 'Frances Simpson', 0, '+1 213-462-6752', 2, '745276770630062165', '371 S Broadway Suite 18, Los Angeles, CA 90015, United States', '1994-06-08', 0, 0, 'francessimps917', '2006-02-19', 'simpsonfr', '2000-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS473732931754', '钱詩涵', 1, '+1 838-094-3690', 3, '654228724561916574', '674 Central Avenue Suite 48, Albany, NY 12206, United States', '1989-10-07', 0, 0, 'qian3', '2016-06-21', 'shiqian07', '2009-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS266670304935', 'Judy Brown', 1, '+81 70-9822-1892', 2, '531450001267330672', '日本札幌白石区菊水三条五丁目4番14号1階', '1998-04-18', 0, 0, 'judyb', '2018-12-23', 'brownjudy', '2019-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS178599490235', '贺晓明', 0, '+86 171-8950-3157', 4, '484161774990432322', '1F, 792 Binchuan Rd, Minhang District, Shanghai, China', '1988-04-09', 0, 0, 'xiaomhe', '2002-10-16', 'hexiaoming7', '2018-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS771968834065', 'Richard Patel', 0, '+44 (116) 547 2889', 2, '661890174810210922', 'No.13 Main building, 662 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-12-14', 0, 0, 'rp2011', '2006-05-08', 'richpate', '2018-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS735537483058', '横山美咲', 0, '+86 28-2100-3694', 1, '838027009143269298', 'No.26 building, No. 856, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-10-05', 0, 0, 'misakyokoyama4', '2010-03-20', 'miyokoyama', '2020-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS638744063943', '許國明', 0, '+1 212-697-7716', 3, '979683491188365863', '201 Fifth Avenue Suite 31, New York, NY 10017, United States', '1992-11-02', 0, 0, 'kmhui', '2012-02-12', 'kwokmingh5', '2018-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS522744933795', '高橋百花', 0, '+86 755-983-9204', 1, '843748893018336792', '中国深圳龙岗区布吉镇西环路821号1号楼', '1993-08-13', 0, 0, 'takahashim', '2009-12-20', 'momotaka502', '2004-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS285284802800', '夏子异', 0, '+81 52-084-9679', 0, '751432007602966583', '日本なごやし北区楠味鋺三丁目80番11号11階', '1989-02-27', 0, 0, 'xiziy', '2011-03-16', 'ziyixi', '2013-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS539753827675', '田裕玲', 1, '+86 10-512-4934', 2, '949187257655277332', 'Room 15, CR Building, 341 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-12', 0, 0, 'yulingtin', '2020-04-22', 'tinyl', '2005-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS604092524697', '今井結翔', 1, '+86 163-8977-1026', 3, '999371574509798579', '中国北京市朝阳区三里屯路580号34栋', '1986-02-15', 0, 0, 'imaiyuito', '2015-12-11', 'imaiyuito723', '2018-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS351548342883', '杜祖兒', 1, '+44 7192 064747', 1, '882636983626307460', 'No.42 Main building, 752 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-11-28', 0, 0, 'tochoyee612', '2004-01-17', 'to14', '2020-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS572727660840', '鈴木聖子', 0, '+81 11-131-7105', 3, '755489113300930300', '日本札幌白石区菊水三条五丁目2番9号12号室', '1992-12-15', 0, 0, 'suzukiseiko', '2018-10-01', 'seiksuzuki', '2020-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS878028078961', '太田陸', 0, '+1 213-112-7524', 2, '328940229520002693', '92 Sky Way Suite 46, Los Angeles, CA 90043, United States', '1985-09-15', 0, 0, 'riku1106', '2011-03-09', 'otar', '2018-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS991772247658', '古家明', 1, '+81 66-086-3896', 2, '155031638525240028', '日本おおさかし西成区出城一丁目1番13号50階', '1989-06-21', 0, 0, 'kmku', '2015-03-24', 'ku2', '2000-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS107679824521', 'Travis Hall', 1, '+86 28-0444-3207', 0, '122847513948991054', 'Room 17, 116 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-12-12', 0, 0, 'travishall', '2004-09-11', 'halltr', '2002-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS116795821584', '木村大和', 0, '+1 614-433-8891', 2, '091326626960799645', '209 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1997-10-05', 0, 0, 'yamatokimur2005', '2009-04-04', 'kiyamato6', '2008-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS481518802716', '徐宇宁', 0, '+81 80-5851-9250', 2, '533302328498192456', '日本おおさかし東住吉区東田辺三丁目27番19号26階', '1994-07-26', 0, 0, 'yuning10', '2019-02-08', 'yuxu', '2006-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS245613084364', 'Norman Young', 0, '+81 90-7156-7294', 2, '256540529979792296', '日本札幌白石区菊水三条五丁目4番11号7階', '1987-04-29', 0, 0, 'yonorman', '2006-08-05', 'norman1974', '2006-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS158825607865', 'Ricky Gonzales', 0, '+81 70-7989-3293', 4, '850646300343788975', '48-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-09-28', 0, 0, 'ricgonza', '2008-01-09', 'rg10', '2003-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS359675463418', '小野花', 1, '+86 755-3485-6660', 1, '499341206893468527', '中国深圳罗湖区蔡屋围深南东路330号14室', '1993-06-23', 0, 0, 'hanaono', '2000-05-25', 'hana3', '2008-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS279553571528', '徐子异', 1, '+86 145-4896-9897', 2, '850922322003267430', '中国成都市成华区双庆路744号华润大厦10室', '1992-12-23', 0, 0, 'zxu', '2012-03-03', 'ziyixu10', '2021-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS623490279421', 'Victoria Hayes', 0, '+1 213-395-4127', 1, '248188145818090509', '438 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1991-01-05', 0, 0, 'vich', '2013-06-22', 'victohayes', '2001-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS185486592997', '中島花', 1, '+81 66-845-1336', 0, '958958113301465171', 'Rm. 11, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1998-05-22', 0, 0, 'hana4', '2017-01-15', 'hnakajima', '2004-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS260621366486', '王國明', 0, '+86 769-991-0183', 1, '518747536761207880', '中国东莞环区南街二巷143号48栋', '1998-12-13', 0, 0, 'wokwokming7', '2003-05-16', 'wonkm', '2000-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS369688160960', '呂詠詩', 1, '+86 769-600-8010', 0, '239445111867319149', 'Room 41, CR Building, 60 Dongtai 5th St, Dongguan, China', '1996-05-30', 0, 0, 'luiws', '2008-12-09', 'luiws1964', '2015-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS274245660689', '黃梓軒', 1, '+1 718-750-9680', 3, '231479932913987855', '11 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1986-11-30', 0, 0, 'wtszhin', '2010-01-02', 'wongth', '2007-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS895509963501', '陶子异', 1, '+44 (1865) 56 1483', 3, '433307523289126708', 'Unit 42, Oxford Eco Centre, 345 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-01-06', 0, 0, 'zitao', '2020-12-05', 'taoziyi5', '2020-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS870345156966', '郭惠敏', 0, '+86 162-2374-1907', 4, '107648571415449915', 'No.30 building, 241 Sanlitun Road, Chaoyang District, Beijing, China', '1992-09-01', 0, 0, 'waik', '2002-03-02', 'kwokwm', '2010-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS491266334954', '薛子韬', 1, '+86 20-006-5161', 3, '949758423010077378', '中国广州市越秀区中山二路757号28栋', '1985-09-18', 0, 0, 'xzitao', '2018-09-05', 'xuezitao', '2007-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS307483303107', '楊家輝', 0, '+1 213-920-8359', 4, '046069498883500748', '528 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-09-10', 0, 0, 'kafaiyeung', '2012-04-21', 'yeung4', '2019-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS042958529761', 'Tony Salazar', 1, '+86 769-716-4182', 2, '378980671648543349', 'Room 37, CR Building, 349 Shanhu Rd, Dongguan, China', '1998-05-14', 0, 0, 'salazar407', '2018-09-07', 'salazar12', '2006-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS212925088907', '傅璐', 0, '+86 144-5186-7485', 1, '786719952208265846', '中国北京市房山区岳琉路935号华润大厦16室', '1985-12-27', 0, 0, 'lufu', '2002-10-22', 'lufu', '2008-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS490632364283', 'James Stone', 0, '+44 5372 790960', 2, '879367660197949825', 'No.43 Main building, 342 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1987-11-23', 0, 0, 'sj1982', '2007-02-11', 'stone7', '2015-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS582138301682', 'Glenn Ferguson', 1, '+86 161-2631-2892', 2, '847082094429291482', '中国广州市白云区机场路棠苑街五巷305号华润大厦24室', '1987-11-30', 0, 0, 'gleferguson', '2021-12-22', 'fg406', '2007-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS205170743757', '石岚', 0, '+86 21-3117-3226', 1, '314374060106293076', 'No.50 building, 387 Binchuan Rd, Minhang District, Shanghai, China', '1997-06-07', 0, 0, 'shilan', '2019-10-18', 'shilan5', '2005-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS182684639749', '龚詩涵', 1, '+81 70-1364-0680', 1, '014081598029263326', '8-kai, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-03-01', 0, 0, 'shihan6', '2010-02-17', 'gong07', '2021-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS649090755376', 'Timothy Hernandez', 1, '+44 5873 457703', 2, '126495028436004507', 'No.47 Main building, 273 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-05-27', 0, 0, 'hernandez10', '2006-01-15', 'hernandezt', '2009-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS834188090654', 'Amanda Fernandez', 0, '+1 212-503-7515', 3, '441360057298955181', '195 Fifth Avenue Suite 39, New York, NY 10017, United States', '1986-06-01', 0, 0, 'feramanda', '2001-12-15', 'fernandezamand', '2020-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS349612782165', '郑子韬', 0, '+86 180-2959-7317', 2, '119223041066816998', '中国北京市海淀区清河中街68号384号14楼', '1988-10-31', 0, 0, 'zzitao', '2013-11-24', 'zitaozheng419', '2015-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS573304365411', '池田大輔', 1, '+86 168-7822-7924', 3, '656293203482658813', 'Room 47, CR Building, 483 Huanqu South Street 2nd Alley, Dongguan, China', '1995-11-20', 0, 0, 'ikedd', '2004-02-29', 'daisikeda4', '2015-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS528505484276', '斎藤悠人', 1, '+1 213-822-7402', 1, '884082347921907711', '136 S Broadway Suite 36, Los Angeles, CA 90015, United States', '1997-12-13', 0, 0, 'yutsait76', '2013-02-03', 'yutos', '2003-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS001701022027', 'Bradley Wilson', 1, '+1 212-778-8161', 3, '719196787218997636', '147 Wooster Street Apartment 22, New York, NY 10012, United States', '1990-01-24', 0, 0, 'wilson822', '2014-04-08', 'wilsonbradley', '2020-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS540920045760', '邱子异', 0, '+86 755-665-8258', 0, '693905938370206998', '中国深圳福田区景田东一街687号27号楼', '1988-04-21', 0, 0, 'ziyi79', '2002-08-13', 'qiuzi', '2000-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS634981801619', 'Joshua Ryan', 0, '+81 80-9597-9265', 1, '704060192615970945', '15F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-09-10', 0, 0, 'joshry65', '2014-06-13', 'ryan1971', '2011-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS423602082418', '高橋聖子', 1, '+86 153-3170-1185', 3, '310989686216533307', '中国北京市西城区西長安街199号华润大厦37室', '1991-11-14', 0, 0, 'seikotak602', '2016-09-20', 'seikotakahashi', '2014-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS797034566511', '周子异', 0, '+86 157-3948-0221', 1, '296236033994830902', '中国上海市浦东新区健祥路707号50号楼', '1988-01-25', 0, 0, 'ziyizhou5', '2009-08-08', 'ziyzhou9', '2017-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS547705532974', '桜井愛梨', 1, '+86 28-125-5545', 2, '471847939686493936', '中国成都市成华区双庆路149号26楼', '1990-11-13', 0, 0, 'airisak', '2010-10-04', 'sakua', '2010-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS605063796695', '卢云熙', 0, '+1 213-336-6810', 2, '951314834298658142', '974 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1990-11-24', 0, 0, 'lu1942', '2020-10-20', 'lu1216', '2003-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS568645631413', '彭志遠', 0, '+86 136-4220-1075', 4, '851395901254311107', 'No.31 building, 137 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-02-17', 0, 0, 'pang522', '2015-09-25', 'pang228', '2001-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS547640787333', 'Beverly Fernandez', 0, '+81 90-9341-8656', 2, '915521484832698169', '9-kai, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-02-25', 0, 0, 'fernab2000', '2006-02-14', 'beverf', '2014-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS380945421560', '曾嘉伦', 0, '+81 3-0637-4243', 0, '389059611312449488', '日本東京千代田区丸の内一丁目6番20号22階', '1986-01-30', 0, 0, 'jiz', '2011-08-21', 'jzeng', '2018-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS857584426001', '林惠敏', 1, '+1 330-386-1962', 1, '018930168161025942', '359 Riverview Road Apt 46, Akron, OH 44313, United States', '1990-11-07', 0, 0, 'lamwaiman', '2001-12-03', 'lwaiman', '2015-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS832240538084', '葉詩君', 0, '+86 21-906-6865', 2, '380980428557879399', '14F, 132 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-18', 0, 0, 'yipszekwan50', '2001-11-09', 'szekwan95', '2018-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS018205285896', '内田瑛太', 0, '+1 213-821-1570', 3, '060921745415565228', '141 Sky Way Suite 49, Los Angeles, CA 90043, United States', '1997-10-05', 0, 0, 'ueita8', '2017-09-18', 'ucheita', '2021-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS078988239937', 'Philip Patel', 1, '+1 614-044-7162', 2, '479765460116683673', '377 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1986-04-25', 0, 0, 'patelphilip1975', '2010-10-28', 'philippate', '2011-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS167206020594', '上野悠人', 1, '+44 5942 794330', 2, '561982849024942856', 'Block 5, 467 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-01-21', 0, 0, 'ueyuto', '2006-01-13', 'yutou1124', '2021-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS414156679327', '孫慧敏', 0, '+86 755-4301-6761', 1, '024594950881489899', 'No.21 building, 836 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-09-19', 0, 0, 'waimanhsuan', '2002-05-25', 'wmhsuan929', '2005-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS776332595476', '樊家明', 0, '+44 7295 684005', 3, '643361445179242109', 'Unit 2, Oxford Eco Centre, 159 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1999-02-26', 0, 0, 'kafan', '2008-03-14', 'kamingfa', '2005-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS737239389806', '韦子韬', 1, '+86 197-6761-1602', 1, '066723736970216772', 'Room 46, CR Building, 463 Dongtai 5th St, Dongguan, China', '1988-04-20', 0, 0, 'weizitao84', '2007-09-09', 'wzi', '2009-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS194056675004', '山口涼太', 0, '+86 134-1124-2285', 0, '718365299082318561', 'Room 24, CR Building, 974 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-02-14', 0, 0, 'yamaguchiryota', '2002-11-20', 'ryotayamag7', '2015-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS173362584208', 'Edith Lewis', 1, '+44 7590 981886', 2, '672202119382852442', 'Flat 12, 423 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-06-24', 0, 0, 'lewiedi', '2000-02-26', 'edithlewis1944', '2002-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS934924511680', 'Arthur Myers', 0, '+44 (121) 348 1877', 1, '638081070838656336', 'Unit 23, Oxford Eco Centre, 156 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-10-03', 0, 0, 'myersarth', '2009-02-06', 'mya00', '2005-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS732205179461', '應青雲', 1, '+44 (121) 252 8322', 1, '369463108205730414', 'Flat 40, 516 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-08-26', 0, 0, 'yingcw5', '2008-01-29', 'chy', '2007-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS365341962540', '山下架純', 1, '+81 52-218-4216', 0, '227836839066346779', '日本なごやし熱田区千年二丁目5番6号50階', '1986-01-25', 0, 0, 'kasuy1', '2005-10-08', 'yamashitaka', '2018-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS333775709962', '莫睿', 0, '+81 11-211-1340', 4, '997383122993620429', '日本札幌豊平区豊平三条十三丁目3番3号41階', '1986-03-21', 0, 0, 'rumo6', '2002-12-31', 'rumo01', '2005-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS303325886803', '贾晓明', 1, '+86 769-0724-2942', 2, '671537156216909281', '中国东莞珊瑚路461号6号楼', '1998-03-08', 0, 0, 'jiaxiaoming', '2004-04-06', 'xiaomingjia', '2019-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS171638199050', '清水明菜', 1, '+81 70-3675-4111', 3, '437866671452748544', '47-kai, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1996-07-07', 0, 0, 'shimizuakina', '2017-10-27', 'shimizua', '2008-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS086536433702', '江睿', 1, '+81 66-464-2361', 0, '134981642030912314', '17F, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1986-05-24', 0, 0, 'ruij', '2006-04-29', 'jiang1003', '2001-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS583327562720', '區家玲', 1, '+86 138-1559-2226', 3, '244550812058643643', 'No.12 building, 682 Sanlitun Road, Chaoyang District, Beijing, China', '1989-05-20', 0, 0, 'kalinga', '2008-11-14', 'akl527', '2015-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS413913937666', 'Rodney Morales', 0, '+86 161-5781-7492', 2, '172543758349294244', '中国北京市海淀区清河中街68号964号16号楼', '1991-08-28', 0, 0, 'moralesrodn65', '2005-08-26', 'moralesrodney', '2002-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS859840828182', '狄秀文', 0, '+86 186-8018-6187', 4, '757832265433449492', '中国成都市成华区二仙桥东三路945号49栋', '1989-09-11', 0, 0, 'tisauman330', '2000-10-03', 'ti17', '2001-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS825899933395', '李詩涵', 1, '+1 838-897-9862', 3, '418652671262570751', '132 Central Avenue Apartment 21, Albany, NY 12205, United States', '1986-04-20', 0, 0, 'shihli', '2018-05-16', 'shihan1118', '2008-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS876299604301', 'Leslie Rice', 1, '+86 173-0772-3227', 2, '748149400238671881', '中国中山京华商圈华夏街318号2楼', '1985-07-15', 0, 0, 'ricel', '2008-07-30', 'rilesl', '2019-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS120180438394', '陈云熙', 1, '+1 838-678-7951', 2, '510578434568295727', '202 Central Avenue Apt 10, Albany, NY 12206, United States', '1989-09-02', 0, 0, 'yunxi52', '2019-09-05', 'chyu', '2001-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS038082644110', '楊潤發', 0, '+81 66-031-6615', 3, '065310835997179671', '日本おおさかし西成区出城一丁目1番3号27階', '1996-03-13', 0, 0, 'yeungyu424', '2001-10-18', 'yeungyunfat102', '2013-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS807846789668', 'Ruby Robertson', 1, '+1 213-091-4416', 3, '756705006772638546', '86 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-05-23', 0, 0, 'robertsonrub1012', '2017-12-11', 'rubyrobertson', '2021-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS412766369428', '郑致远', 0, '+81 74-937-3646', 1, '946170581875822660', '日本ならし大和郡山市本庄町一丁目1番14号8階', '1991-04-25', 0, 0, 'zhizh1950', '2019-12-19', 'zhezhiyuan', '2006-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS848716265973', '杨杰宏', 0, '+86 769-5901-4576', 0, '023180725563627407', 'Room 31, 447 Huanqu South Street 2nd Alley, Dongguan, China', '1993-01-09', 0, 0, 'jiey1225', '2012-08-15', 'jiehongyan', '2017-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS814649809896', 'Ruth Jordan', 1, '+44 7225 568903', 1, '587030498054983419', 'Unit 19, Oxford Eco Centre, 187 Regent Street, London, W1B 2LX, United Kingdom', '1988-07-03', 0, 0, 'jor9', '2021-07-06', 'jruth', '2000-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS324678153091', 'David Richardson', 0, '+81 70-7144-7418', 1, '151524339867455135', '日本東京渋谷区代々木二丁目3番3号5階', '1998-05-18', 0, 0, 'richardsondavid', '2000-08-22', 'richardsondavid113', '2014-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS809106783869', '姚頴思', 0, '+86 175-4820-1191', 1, '088352006096704680', '中国中山京华商圈华夏街912号32楼', '1985-05-21', 0, 0, 'yeowwingsze', '2018-11-06', 'wingsze4', '2017-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS254498391868', '蔣永權', 1, '+81 70-7867-0291', 2, '257928465124786941', '日本ならし西大寺赤田町一丁目7番6号10階', '1997-03-04', 0, 0, 'wingkuenchiang3', '2020-05-12', 'cwk', '2021-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS186819740392', '白慧敏', 1, '+86 10-7196-0231', 2, '258559331340830336', 'Room 30, CR Building, 495 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-04-17', 0, 0, 'pawm', '2019-08-25', 'wmp', '2021-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS902204826177', '山下聖子', 0, '+44 (116) 219 2009', 0, '979608547585020429', 'No.48 Main building, 721 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-25', 0, 0, 'yamashitase', '2021-12-02', 'yseiko9', '2006-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS656904915788', '酒井架純', 0, '+81 90-2032-6882', 3, '699410917247749723', '28-kai, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-01-11', 0, 0, 'sakai10', '2002-10-11', 'sakai77', '2000-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS070064707398', '向潤發', 0, '+81 80-4416-7122', 4, '462525998468059134', 'Rm. 22, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-07-06', 0, 0, 'yunfat10', '2010-03-31', 'heungyunfat', '2015-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS818721510094', 'Gloria Dixon', 1, '+81 52-050-9068', 2, '245548279435244393', 'Rm. 10, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-03-15', 0, 0, 'gloriadi16', '2021-01-15', 'dglo', '2010-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS927424660915', '方慧琳', 1, '+86 149-1129-3440', 3, '459110643322437840', '中国东莞环区南街二巷374号25栋', '1992-10-22', 0, 0, 'wailamfong1985', '2010-02-17', 'fong3', '2007-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS470871328555', '桜井葉月', 1, '+81 80-1569-7286', 2, '673914387664624341', '日本札幌清田区真栄四条五丁目19番16号44階', '1991-04-14', 0, 0, 'hazukisakurai109', '2000-11-06', 'sakuh', '2013-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS260341604624', '渡部凛', 0, '+81 66-902-5065', 2, '050323380835421559', '日本おおさかし東住吉区東田辺三丁目27番10号3階', '1993-10-07', 0, 0, 'watanaberin', '2015-06-05', 'watanaber', '2010-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS067234975571', '林青雲', 1, '+81 90-8338-1762', 0, '839802563433634464', '日本東京港区東新橋一丁目5番1号29階', '1995-12-09', 0, 0, 'lamchingwan', '2003-04-05', 'lamchingwan91', '2019-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS763055906940', '橋本大和', 0, '+81 80-1376-8408', 1, '608431624440430774', '26-kai, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-04-11', 0, 0, 'yamatohash', '2005-07-05', 'hyamat1105', '2010-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS947077868768', '钟秀英', 1, '+86 197-9533-4216', 0, '395994139938576715', '8F, 195 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-08-23', 0, 0, 'xiuying9', '2017-12-04', 'xiuyingz', '2014-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS262923772199', 'Joyce Edwards', 0, '+81 70-5381-9891', 1, '668140940738114589', 'Rm. 46, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-05', 0, 0, 'jedwa', '2015-10-07', 'joyce10', '2002-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS453132323952', '龚嘉伦', 1, '+1 213-356-8970', 3, '895807227054669174', '941 Wall Street Apt 15, Los Angeles, CA 90003, United States', '1985-02-08', 0, 0, 'jialungong', '2017-02-15', 'jialun608', '2012-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS407496851561', '何杰宏', 1, '+44 5132 717605', 0, '308702418358681719', 'No.29 Main building, 190 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-04-15', 0, 0, 'he925', '2011-02-20', 'jiehe', '2007-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS339912152841', '陶詩涵', 0, '+81 70-4186-4381', 1, '834766073650886247', '日本東京品川区東五反田五丁目2番1号36階', '1985-09-23', 0, 0, 'stao1989', '2020-07-13', 'shihant93', '2006-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS487836987026', '大野美緒', 0, '+81 74-917-8020', 4, '559689878067160809', '30-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-05-27', 0, 0, 'onmio1953', '2007-03-10', 'mioono', '2009-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS825297037729', '呂霆鋒', 0, '+1 838-823-9381', 2, '573247136396492828', '417 Broadway 3rd Floor, Albany, NY 12207, United States', '1997-06-12', 0, 0, 'ltingfung45', '2001-01-15', 'tingfungl', '2005-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS524811214704', '钱致远', 1, '+81 80-3671-7815', 1, '725051133270691067', '9-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1990-06-03', 0, 0, 'qianz9', '2009-01-05', 'zhiyuan9', '2002-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS805545711722', '冯安琪', 0, '+81 90-1965-8423', 3, '255188150740248959', '日本おおさかし西成区天神ノ森二丁目1番13号11号室', '1995-08-01', 0, 0, 'fenganqi', '2020-10-22', 'fenganq1117', '2007-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS856854351338', '方永發', 0, '+81 80-0937-1853', 3, '460978556147938717', 'Rm. 33, 1-6-3, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-02-19', 0, 0, 'wingfatfong10', '2016-12-02', 'wffong', '2019-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS050033434146', 'Robin Nelson', 0, '+86 165-9787-7350', 2, '177818171630424555', 'No.23 building, 48 Huanqu South Street 2nd Alley, Dongguan, China', '1987-01-26', 0, 0, 'robinn', '2009-05-17', 'robinnelson4', '2000-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS412930146656', 'Judy Ryan', 0, '+81 90-9090-8294', 3, '657160534262735986', '41-kai, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-07-21', 0, 0, 'ryanjudy', '2014-11-05', 'ryanj', '2008-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS897937570274', '伊藤聖子', 1, '+86 755-5670-7900', 0, '776052131940807004', 'Room 9, CR Building, 649 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1998-01-10', 0, 0, 'iseik64', '2004-06-01', 'ito4', '2006-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS582205584536', '姜宇宁', 0, '+1 312-218-9462', 0, '442171585193403353', '552 North Michigan Ave Apt 37, Chicago, IL 60611, United States', '1995-07-08', 0, 0, 'jiang13', '2018-05-01', 'yuningjiang1024', '2015-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS579543427093', '坂本桜', 1, '+1 213-880-5055', 3, '754951263692338242', '232 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-02-08', 0, 0, 'sakamoto7', '2001-05-09', 'sas', '2009-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS035064142326', '黃淑怡', 1, '+86 144-1651-0336', 4, '604648361580859422', '中国广州市海珠区江南西路416号华润大厦47室', '1995-07-27', 0, 0, 'sukyeewong1208', '2001-05-19', 'wongsukyee', '2013-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS353465473018', '應永發', 0, '+44 7265 855769', 2, '190164167481174221', 'Flat 17, 660 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-06-14', 0, 0, 'wingfaty', '2003-06-10', 'wfying7', '2007-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS460552835900', '池田七海', 0, '+81 52-440-1339', 2, '395177204186830278', 'Rm. 32, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1986-01-05', 0, 0, 'ikeda63', '2003-09-22', 'nani', '2017-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS961637992687', '容浩然', 0, '+44 (121) 299 1126', 1, '716144523982146891', 'Unit 14, Oxford Eco Centre, 352 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-03-18', 0, 0, 'yhy', '2002-06-01', 'hyyun', '2021-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS053623211343', '田中明菜', 1, '+86 172-4077-7745', 3, '551247780318053548', '中国北京市西城区西長安街188号35室', '1990-07-05', 0, 0, 'akina10', '2014-07-25', 'akintanaka', '2016-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS394737345500', '岡本架純', 1, '+81 90-2479-9125', 1, '432377697794375800', 'Rm. 50, 18 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-08-28', 0, 0, 'kasumi5', '2001-01-22', 'kasumiokam5', '2015-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS828012322623', '傅詩君', 0, '+81 52-923-9598', 3, '256096221255052552', '44-kai, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-08-10', 0, 0, 'fusk', '2010-03-03', 'szekwan07', '2002-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS906647968660', '市川舞', 1, '+86 21-1398-0187', 0, '475368634657552707', 'Room 44, 948 Ganlan Rd, Pudong, Shanghai, China', '1991-05-23', 0, 0, 'icm', '2000-02-19', 'ichmai', '2003-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS640519298171', '許浩然', 1, '+44 (1865) 35 6018', 2, '939628460262024511', 'No.18 Main building, 718 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-05-14', 0, 0, 'huhy4', '2011-08-24', 'hoyinhu7', '2010-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS981765584750', '秦杰宏', 1, '+1 213-355-2368', 3, '435541175904919021', '875 Grape Street Apt 8, Los Angeles, CA 90002, United States', '1990-11-17', 0, 0, 'jiehongqin', '2005-02-26', 'qin6', '2013-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS978291190748', '钟晓明', 0, '+81 70-2740-4514', 1, '137823018664804110', 'Rm. 46, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-05-29', 0, 0, 'zhong5', '2018-02-20', 'zxiaoming', '2004-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS571596153201', '石井美咲', 1, '+86 755-4882-9032', 3, '667887654223351541', 'Room 17, 858 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-04-03', 0, 0, 'misakiishii', '2009-10-07', 'misakiishi514', '2016-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS407286470880', '和田陽菜', 1, '+44 7255 070798', 3, '275760135787091637', 'Block 42, 714 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-10-29', 0, 0, 'wadah', '2011-08-06', 'wadhin516', '2017-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS896043411963', '尹杰宏', 1, '+44 (1223) 14 7914', 2, '321444356521316499', 'Block 47, 91 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1996-10-30', 0, 0, 'jiehoyin', '2012-05-17', 'yinjiehong', '2009-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS311903107073', '方頴思', 1, '+44 (151) 209 2765', 0, '546665608055844471', 'Flat 1, 120 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1995-11-05', 0, 0, 'fonwings4', '2003-01-07', 'wsfong', '2002-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS242002452509', 'Gloria Stone', 0, '+86 188-4751-7024', 4, '330101197149904344', 'Room 40, CR Building, 682 Shennan Ave, Futian District, Shenzhen, China', '1997-07-13', 0, 0, 'stonegloria02', '2013-05-14', 'stonegloria', '2019-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS217284451508', '顾宇宁', 0, '+86 197-8083-7010', 2, '721627137255374849', 'Room 19, 695 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-11-25', 0, 0, 'gu705', '2005-04-14', 'guyunin', '2017-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS891898037756', '今井詩乃', 0, '+86 10-9100-5216', 2, '384999055160103253', '中国北京市延庆区028县道342号华润大厦45室', '1986-03-05', 0, 0, 'shinoi1111', '2011-07-20', 'shinoimai4', '2016-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS056081864067', '森健太', 1, '+86 138-8616-3190', 4, '665806146357151114', 'No.23 building, 93 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-09-01', 0, 0, 'morike', '2006-03-04', 'morikenta', '2006-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS435281191302', '尹岚', 1, '+81 52-947-7197', 2, '203408924772486320', 'Rm. 36, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-17', 0, 0, 'lan1', '2016-09-17', 'yinlan', '2004-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS089397021981', '宮崎陸', 0, '+81 70-8774-9478', 1, '901497672257043322', 'Rm. 19, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1995-01-01', 0, 0, 'rikmi', '2018-06-11', 'miyazakirik', '2021-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS889058464189', '金子美羽', 0, '+1 838-321-1807', 3, '731679893061644147', '508 State Street Suite 11, Albany, NY 12203, United States', '1996-09-03', 0, 0, 'km1946', '2007-12-29', 'kanekomiu', '2021-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS549576021605', '叶云熙', 0, '+81 11-016-2444', 0, '245945433768977347', '日本札幌中央区宮の森四条六丁目1番14号47階', '1985-04-10', 0, 0, 'yeyunxi824', '2005-11-21', 'yeyun', '2015-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS811807673789', '河野明菜', 0, '+44 7256 872756', 0, '041947763682828714', 'Unit 7, Oxford Eco Centre, 899 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-10-28', 0, 0, 'kakina', '2003-01-15', 'konoakina', '2009-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS637944215968', 'Albert Fernandez', 0, '+81 80-6125-0520', 1, '666672047206973220', '日本なごやし守山区瀬古東二丁目171番19号26号室', '1996-04-16', 0, 0, 'alfern', '2018-10-03', 'fealbert122', '2000-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS709166710528', 'Jeff Peterson', 0, '+1 330-720-1900', 3, '971559850215142798', '442 Collier Road Suite 16, Akron, OH 44320, United States', '1993-03-01', 0, 0, 'peterson731', '2019-05-14', 'jpeterson', '2012-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS910270561476', '薛安琪', 0, '+86 184-5429-3702', 3, '260273517816017268', 'Room 14, CR Building, 138 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-12-13', 0, 0, 'anqi19', '2003-01-02', 'xua', '2003-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS487975356581', '林光', 1, '+81 90-2284-1490', 2, '102905243705104287', '16-kai, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1989-02-05', 0, 0, 'hayashi921', '2020-06-02', 'hayashih', '2014-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS807219905479', 'Anne Mendez', 0, '+81 74-127-1180', 4, '126389066987714308', '日本ならし西大寺赤田町一丁目7番15号7号室', '1995-03-03', 0, 0, 'am6', '2002-03-05', 'annemendez1987', '2018-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS367341192983', '麥祖兒', 1, '+81 11-856-1047', 2, '636899500464727706', 'Rm. 10, 5-2-18 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-04-23', 0, 0, 'choyee94', '2010-12-11', 'cym', '2017-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS731223483910', 'Billy Sanchez', 0, '+44 5760 059791', 4, '559809842674085932', 'Block 32, 921 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-01-28', 0, 0, 'sanchbilly', '2007-01-03', 'billysanchez', '2020-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS936194996222', 'Patrick Murray', 1, '+44 (151) 686 5351', 3, '764524697447282680', 'No.4 Main building, 346 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-18', 0, 0, 'patrick76', '2014-02-22', 'patrickmu', '2010-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS173095098161', 'Amanda Williams', 0, '+81 80-5001-7772', 0, '538832441106263477', '日本札幌豊平区豊平三条十三丁目3番14号24号室', '1998-06-07', 0, 0, 'amanda419', '2020-03-10', 'williamsaman', '2016-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS714956741678', '楊詠詩', 1, '+81 90-8221-7371', 1, '123896221397851053', 'Rm. 26, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-04-11', 0, 0, 'yeuwing1129', '2018-04-28', 'yeungws', '2008-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS413984363976', '蔡子韬', 0, '+44 (20) 6672 0431', 1, '075116614356514522', 'No.34 Main building, 915 Regent Street, London, W1B 2LX, United Kingdom', '1986-01-20', 0, 0, 'zitao715', '2013-03-03', 'zitaoca82', '2007-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS592219897758', '夏杰宏', 1, '+81 90-7123-7423', 1, '451734463389235917', '32F, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-05-31', 0, 0, 'jxia', '2000-12-03', 'xiajiehong', '2010-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS082133162533', 'Grace Gonzales', 0, '+81 11-564-0273', 0, '148554984743040284', '50F, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-06-30', 0, 0, 'gracegonz', '2015-07-29', 'gonzalesg', '2007-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS890884487752', '苗祖兒', 0, '+1 213-014-6878', 3, '999681920246856029', '120 Wall Street Apt 18, Los Angeles, CA 90003, United States', '1986-08-24', 0, 0, 'mchoyee', '2015-02-19', 'cymiu', '2013-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS384388004845', '山田花', 1, '+1 212-443-7370', 0, '469399544361493747', '813 Wooster Street Apt 33, New York, NY 10012, United States', '1985-06-15', 0, 0, 'yh212', '2007-02-14', 'hana96', '2001-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS696525993525', '馬永權', 0, '+81 52-111-9392', 2, '606413422461272770', '44F, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1995-06-07', 0, 0, 'ma1113', '2003-03-01', 'wingkuen10', '2014-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS519697721289', '松本拓哉', 1, '+44 5944 676852', 2, '881518277619625583', 'No.45 Main building, 472 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-08-25', 0, 0, 'matsumototakuya1029', '2013-01-31', 'takuyamatsumoto', '2020-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS742554496092', 'Annie Holmes', 0, '+81 3-2116-1071', 1, '543598167433790733', '日本東京中央区銀座三丁目12番3号47階', '1988-12-15', 0, 0, 'aholmes', '2016-03-16', 'annieholmes511', '2012-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS882850609943', 'Matthew Turner', 0, '+44 (151) 410 1199', 0, '681344890525221737', 'No.46 Main building, 412 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-07-28', 0, 0, 'turnemat515', '2012-07-10', 'turner6', '2000-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS243841347384', 'Sherry Woods', 0, '+86 755-221-1653', 1, '125442498522384271', '中国深圳龙岗区布吉镇西环路419号47栋', '1995-08-07', 0, 0, 'woodssherry', '2008-02-16', 'sherry1988', '2005-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS026982616517', '孟璐', 1, '+86 189-7909-2212', 1, '263058227029565295', '中国深圳龙岗区布吉镇西环路285号10室', '1989-03-23', 0, 0, 'meng7', '2009-05-25', 'lumeng', '2000-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS558258672435', '戴宇宁', 0, '+81 74-598-6575', 3, '657438609803374582', '日本ならし大和郡山市本庄町一丁目1番17号27号室', '1991-08-03', 0, 0, 'yuning4', '2001-11-22', 'ydai1996', '2021-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS849061004592', '鄧淑怡', 1, '+86 139-9730-5894', 2, '104438467796734637', '中国上海市浦东新区橄榄路116号华润大厦36室', '1986-05-07', 0, 0, 'sukyeetang', '2003-03-17', 'sytang', '2021-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS894509017856', '吳永發', 0, '+44 7687 180215', 4, '535942810678515877', 'Block 36, 162 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-11-02', 0, 0, 'wingfatng', '2005-03-11', 'ngwf614', '2004-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS214620889375', '關力申', 1, '+1 213-889-0897', 4, '296437624892511691', '416 Alameda Street Apartment 43, Los Angeles, CA 90002, United States', '1988-02-18', 0, 0, 'liksunkwan806', '2000-04-14', 'lskwan', '2006-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS120970792285', 'Craig Wallace', 1, '+81 90-9710-1349', 1, '152005076513799769', 'Rm. 13, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-04-27', 0, 0, 'craigwall', '2003-03-17', 'wallcraig', '2010-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS872761535856', '侯震南', 1, '+86 194-0377-3694', 1, '891792448401451952', 'No.16 building, 885 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-08-27', 0, 0, 'zhho2015', '2021-02-10', 'zhennanho7', '2011-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS941350243527', '石晓明', 0, '+81 3-6141-1882', 1, '610942357052165962', '日本東京渋谷区代々木二丁目3番1号43号室', '1995-01-27', 0, 0, 'xiaoming48', '2013-12-24', 'xis', '2015-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS945747200831', '戴睿', 0, '+86 10-2427-8146', 2, '290841444980306334', '中国北京市西城区西長安街725号4号楼', '1990-09-20', 0, 0, 'dru', '2009-10-17', 'dar', '2018-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS393621144756', '吴宇宁', 1, '+86 141-5069-7076', 2, '623907984459907852', 'Room 3, 641 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1993-07-22', 0, 0, 'wyuning', '2002-05-21', 'yuninwu', '2007-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS538840317183', '菊地葵', 1, '+86 175-7084-1349', 0, '988001016460713412', '中国北京市東城区東直門內大街850号26室', '1987-07-22', 0, 0, 'aoi4', '2016-07-21', 'aokikuchi5', '2021-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS080960926477', '井上瑛太', 0, '+44 (161) 136 6163', 3, '184970848310182420', 'Unit 27, Oxford Eco Centre, 637 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-12-30', 0, 0, 'inoue80', '2013-10-07', 'inoue1', '2021-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS803176132500', '洪慧嫻', 0, '+1 312-469-5319', 1, '099777930363646653', '775 Pedway Apt 17, Chicago, IL 60601, United States', '1997-05-28', 0, 0, 'waihan15', '2020-09-04', 'whhun', '2019-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS131470766486', '薛安琪', 0, '+81 66-989-2862', 0, '057443657826301717', '37-kai, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-11-11', 0, 0, 'xueanqi1948', '2002-04-15', 'anqixue', '2012-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS599965435370', '王心穎', 0, '+86 21-0893-0498', 3, '002061523249497743', '46F, 84 Ganlan Rd, Pudong, Shanghai, China', '1988-09-22', 0, 0, 'sumwingw9', '2005-09-19', 'wosw76', '2004-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS636074949844', 'Alice Flores', 0, '+1 213-653-3369', 3, '076317158117761527', '796 Grape Street Apt 13, Los Angeles, CA 90002, United States', '1990-12-24', 0, 0, 'alicefl82', '2016-01-19', 'floresalice129', '2013-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS788902159028', '魏秀英', 0, '+81 90-4703-8395', 1, '881564276634024047', '日本おおさかし近江堂一丁目7番4号40号室', '1995-07-10', 0, 0, 'weixiuying7', '2020-03-08', 'weix4', '2013-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS072027076704', '太田陸', 0, '+1 838-424-6414', 3, '820383508164297789', '429 Broadway Suite 39, Albany, NY 12207, United States', '1985-04-05', 0, 0, 'riku1963', '2001-11-13', 'rikuota', '2020-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS215967761565', '許慧敏', 0, '+86 161-0009-4307', 0, '897882387567143914', '中国北京市朝阳区三里屯路520号23栋', '1988-02-03', 0, 0, 'huiwaima', '2005-12-21', 'wmhui', '2013-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS062238915336', 'Tracy Nichols', 0, '+81 80-2071-3774', 3, '254647091729600399', 'Rm. 20, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-12-23', 0, 0, 'nicholstracy1', '2014-01-22', 'tracynichols5', '2019-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS275006231511', 'Patrick Olson', 1, '+86 158-6245-4341', 4, '176899531015124434', 'Room 39, CR Building, 345 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-06-09', 0, 0, 'olsonpatrick', '2017-12-13', 'olson108', '2003-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS780740996638', '蔡志明', 0, '+81 90-1762-8081', 2, '464607213511885177', 'Rm. 32, 3-9-19 Gakuenminami, Nara, Japan', '1986-02-11', 0, 0, 'chiming10', '2000-10-20', 'choicm48', '2014-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS381317775353', '蕭詠詩', 0, '+1 718-338-4311', 3, '094517298260783392', '566 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1993-06-01', 0, 0, 'wssiu', '2001-04-19', 'wssiu', '2007-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS884748870450', '岩崎明菜', 0, '+81 3-7832-6177', 3, '261866569577387572', 'Rm. 13, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-12-14', 0, 0, 'iwasaki2', '2017-02-02', 'akina2', '2013-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS598180276586', '顾晓明', 1, '+86 769-3797-0763', 2, '814514873440685403', 'No.2 building, 626 Shanhu Rd, Dongguan, China', '1998-11-01', 0, 0, 'xgu5', '2017-09-28', 'guxiaoming47', '2000-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS441166035777', '斎藤舞', 0, '+86 21-2437-2352', 2, '567546129816238519', '中国上海市闵行区宾川路478号华润大厦15室', '1989-04-06', 0, 0, 'saitoma', '2002-02-25', 'maisai', '2002-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS852462151126', 'Douglas Hicks', 0, '+86 10-957-7335', 2, '564470314071261520', '中国北京市西城区西長安街156号31号楼', '1993-07-03', 0, 0, 'douglashick', '2020-10-17', 'hdoug', '2015-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS037334711195', '山田結翔', 0, '+1 213-087-7026', 4, '951610288128186249', '68 Sky Way Apt 45, Los Angeles, CA 90043, United States', '1985-12-17', 0, 0, 'yamada58', '2011-02-05', 'yamadyu14', '2009-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS310044046141', 'Joshua Wells', 0, '+81 70-7310-0099', 1, '276295063505547078', '14F, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1998-09-05', 0, 0, 'wells08', '2005-07-28', 'wells1970', '2010-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS331316125778', '中森優奈', 0, '+81 66-103-9982', 3, '835142210304010090', '日本おおさかし東住吉区東田辺三丁目27番2号36階', '1994-12-25', 0, 0, 'yun1220', '2016-05-28', 'yunna', '2015-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS791202420367', '阮永權', 0, '+81 74-576-0891', 2, '533497485501511788', 'Rm. 5, 3-9-9 Gakuenminami, Nara, Japan', '1987-02-01', 0, 0, 'wingkuen321', '2015-01-12', 'wkyuen', '2005-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS215812403664', 'Rosa Mendoza', 1, '+81 52-508-1224', 1, '961676563010474070', '48F, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1999-02-18', 0, 0, 'rosam5', '2001-06-19', 'mendoros8', '2016-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS249593142369', 'Tracy Sullivan', 0, '+81 90-5664-6851', 1, '078588461289968660', '28-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-08-09', 0, 0, 'tracysu107', '2001-01-16', 'tsullivan', '2013-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS774791832022', '佘學友', 0, '+44 5759 897326', 0, '927939810712668891', 'Block 11, 42 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1999-01-14', 0, 0, 'hysheh', '2002-06-09', 'hokyau1972', '2018-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS196647418211', 'Sherry Tran', 0, '+81 90-8704-6572', 1, '656646236799230767', '日本なごやし瑞穂区河岸町四丁目20番3号15階', '1989-08-18', 0, 0, 'transher5', '2014-09-20', 'tran511', '2008-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS320039112979', 'Phyllis Anderson', 0, '+86 135-6381-8153', 3, '253853883954206289', '中国中山天河区大信商圈大信南路229号华润大厦43室', '1989-06-02', 0, 0, 'phanderson', '2007-11-15', 'phyllisande', '2008-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS482312937657', '徐杰宏', 0, '+81 90-2826-6278', 1, '325755070068057537', '35F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-02-04', 0, 0, 'jiehongxu', '2021-09-08', 'jiehong4', '2014-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS156477847036', 'Herbert Daniels', 0, '+44 7247 674888', 2, '518733120523167116', 'Unit 10, Oxford Eco Centre, 651 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-11', 0, 0, 'danherbert', '2021-06-28', 'herbertdaniels6', '2014-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS837169402160', '萧秀英', 1, '+1 212-212-7367', 2, '372294533235185276', '809 Canal Street 3rd Floor, New York, NY 10013, United States', '1998-06-26', 0, 0, 'xiuyingxiao1118', '2013-03-24', 'xiuyingxiao', '2016-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS665982834324', '钱璐', 1, '+81 74-033-7093', 1, '657317181679465999', '日本ならし大和郡山市本庄町一丁目1番16号2階', '1996-04-03', 0, 0, 'qialu', '2006-11-11', 'lu8', '2003-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS820078402693', '尹嘉伦', 0, '+81 70-3783-4333', 4, '195129892320966890', '日本ならし西大寺赤田町一丁目7番7号4階', '1998-10-28', 0, 0, 'jiay', '2021-04-14', 'jialunyi6', '2005-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS577483752390', '曾嘉伦', 1, '+81 74-643-0176', 1, '739619326977304461', '41F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1994-05-30', 0, 0, 'zeng606', '2009-06-13', 'zenjialun601', '2009-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS213944790721', '菊地拓哉', 0, '+81 80-9161-1525', 3, '797908685556181053', '日本なごやし瑞穂区河岸町四丁目20番5号3号室', '1990-10-20', 0, 0, 'takuyakiku', '2009-11-26', 'kikuchi10', '2000-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS171817228932', '廖家輝', 0, '+44 (116) 385 2186', 0, '889760195123755185', 'Unit 13, Oxford Eco Centre, 480 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1998-08-11', 0, 0, 'liaokafai', '2008-04-24', 'liao1979', '2005-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS204099320617', '高田拓哉', 1, '+1 330-123-9614', 2, '261829671136840228', '199 Fern Street Apartment 12, Akron, OH 44307, United States', '1995-07-04', 0, 0, 'takadatakuya', '2014-12-03', 'takadatakuy73', '2016-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS141417133703', '李致远', 1, '+86 152-0692-6084', 2, '518328826024069862', '中国成都市锦江区人民南路四段429号1楼', '1985-10-09', 0, 0, 'zhiyuanli54', '2011-07-06', 'zhiyli9', '2000-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS969818759925', '島田蓮', 0, '+44 (116) 358 9449', 2, '977403384179361948', 'Block 33, 449 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-09-09', 0, 0, 'renshimada', '2020-06-07', 'renshima', '2004-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS806865541473', '薛力申', 1, '+44 (161) 791 4792', 3, '232047099731758800', 'Block 27, 997 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-04-20', 0, 0, 'liksun823', '2000-12-13', 'liksunsit', '2018-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS307237827813', '翁安琪', 0, '+1 614-348-6540', 3, '163068635992927809', '849 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-12-24', 0, 0, 'yonkay', '2020-12-14', 'yok', '2017-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS872700225424', '徐璐', 0, '+86 155-2287-2743', 1, '358866161680868361', 'No.35 building, 520 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1992-05-20', 0, 0, 'lux', '2010-01-03', 'xlu', '2010-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS868366513247', '雷杰倫', 0, '+86 20-6147-6126', 3, '846806965588056052', 'Room 31, CR Building, 970 Jiangnan West Road, Haizhu District, Guangzhou, China', '1993-02-26', 0, 0, 'chiehlun11', '2000-06-15', 'clloui', '2021-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS997194124881', '程云熙', 0, '+1 330-582-6952', 1, '007512282103856993', '837 Collier Road Apartment 14, Akron, OH 44320, United States', '1995-01-02', 0, 0, 'yuncheng', '2000-07-29', 'yuch', '2010-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS102740983880', '山田光莉', 0, '+86 154-1120-7222', 4, '274328048584083312', '中国上海市浦东新区健祥路560号22室', '1987-03-15', 0, 0, 'hikyamad', '2011-08-29', 'hikayam', '2002-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS722808394813', '许嘉伦', 1, '+81 70-4812-8013', 2, '756348238598886046', '日本ならし学園南三丁目9番15号14階', '1997-04-01', 0, 0, 'xji824', '2013-03-21', 'jialuxu', '2018-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS637627312712', '邵力申', 0, '+81 70-1518-9715', 1, '462376655826347666', '43F, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1985-12-20', 0, 0, 'sliksun', '2008-11-25', 'siuliksun310', '2007-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS690783725206', '潘子韬', 0, '+81 3-5441-7708', 4, '897441206555311301', '49-kai, 1-6-10, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-26', 0, 0, 'zitao10', '2003-06-30', 'zipan', '2010-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS592776493333', '王璐', 1, '+86 147-8881-7768', 1, '543874922105021469', 'Room 22, CR Building, 872 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-11-09', 0, 0, 'wanglu', '2003-08-27', 'luwan', '2006-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS122106415643', '岩崎玲奈', 1, '+44 (161) 751 8272', 4, '355250409707380732', 'No.45 Main building, 987 Portland St, Manchester, M1 3LA, United Kingdom', '1985-08-23', 0, 0, 'iwasakire', '2013-01-15', 'iwasakirena2003', '2008-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS553365201464', '高天樂', 0, '+86 10-8274-0524', 1, '797352412089873587', '中国北京市房山区岳琉路53号华润大厦14室', '1991-06-25', 0, 0, 'kaotl', '2015-04-22', 'tinlok10', '2010-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS925681264669', 'Kevin Hall', 0, '+86 163-8624-5391', 3, '242702585744798373', 'Room 36, CR Building, 774 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-03-30', 0, 0, 'hak47', '2005-01-20', 'hallkevin9', '2004-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS144080825789', 'Jeffery Alvarez', 0, '+1 212-256-6002', 3, '429700092564827170', '912 Canal Street Apartment 38, New York, NY 10013, United States', '1993-06-25', 0, 0, 'jefferyalva2', '2015-08-05', 'alvarezj', '2016-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS920061191154', 'Emily Morales', 1, '+86 134-7716-5175', 2, '188139474120138564', '中国深圳龙岗区学园一巷932号华润大厦19室', '1997-09-29', 0, 0, 'emilymorales3', '2014-11-06', 'emilmora', '2017-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS998656271190', '小川明菜', 0, '+81 90-8661-7110', 2, '510213566587287590', 'Rm. 5, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-11-15', 0, 0, 'akinogawa', '2018-07-22', 'ogaakina89', '2016-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS307418201430', '贺嘉伦', 1, '+86 140-2028-6130', 1, '415518498390476478', '中国成都市成华区玉双路6号423号21号楼', '1990-03-28', 0, 0, 'heji', '2021-12-28', 'jialun807', '2018-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS961104917727', '遠藤拓哉', 1, '+81 52-147-6122', 0, '719185715190715963', '44F, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-03-06', 0, 0, 'takuya204', '2012-09-13', 'taendo10', '2007-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS043535465778', 'Edward Murphy', 1, '+86 184-5746-7206', 3, '301470865284645399', '中国中山天河区大信商圈大信南路413号7楼', '1995-06-26', 0, 0, 'edwardmu', '2021-11-06', 'mued', '2010-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS522432451851', '白家玲', 1, '+86 760-4464-3514', 4, '833599658041531156', 'Room 17, 960 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-05-16', 0, 0, 'pakali', '2001-03-18', 'pakaling', '2021-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS725973858701', '刘宇宁', 0, '+81 70-3413-1082', 4, '952607678692453320', '48F, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1996-09-01', 0, 0, 'yuliu', '2013-03-25', 'yunliu', '2002-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS674401278553', 'Jesse Flores', 1, '+86 20-725-3581', 3, '625653324540959289', '中国广州市天河区天河路111号华润大厦50室', '1998-02-08', 0, 0, 'jef413', '2003-04-16', 'fjesse205', '2003-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS513712400319', '薛子异', 1, '+81 70-3304-4350', 3, '740446072627750164', '46-kai, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-10-22', 0, 0, 'xziyi', '2010-01-07', 'ziyixu', '2009-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS084837764862', '任嘉伦', 0, '+86 21-1482-3850', 1, '871900440956241659', '中国上海市浦东新区健祥路644号40号楼', '1996-04-28', 0, 0, 'renjialun74', '2019-09-18', 'jr04', '2015-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS910424943803', '千葉光莉', 0, '+1 212-779-0173', 2, '213447120910578127', '839 Fifth Avenue Apartment 34, New York, NY 10017, United States', '1988-11-28', 0, 0, 'hikari227', '2012-06-30', 'chihikari', '2007-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS669517260235', '戚慧敏', 0, '+81 11-643-4340', 4, '954538549283677097', '36-kai, 5-4-1 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-03-05', 0, 0, 'waimanchic63', '2013-06-17', 'wmchic85', '2018-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS699286088914', '莫子韬', 0, '+44 (121) 980 3789', 0, '755232097149565291', 'Flat 18, 487 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-08-07', 0, 0, 'zmo', '2006-08-04', 'mozita', '2016-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS996715883786', '黎詩涵', 0, '+86 769-4378-1614', 3, '742797327401713062', '22F, 677 Dongtai 5th St, Dongguan, China', '1998-02-11', 0, 0, 'lis', '2003-10-15', 'ls2020', '2010-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS436975435006', '孫頴思', 1, '+81 90-8745-8242', 1, '243460655892481970', '日本東京中央区銀座三丁目12番18号10号室', '1998-04-28', 0, 0, 'wshsuan', '2008-11-16', 'hsuanwingsze', '2022-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS194236246298', '遠藤翼', 0, '+1 312-774-4346', 3, '682643088308676571', '526 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1985-04-28', 0, 0, 'endts', '2014-08-09', 'tsubasa9', '2008-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS133239842248', 'Douglas Carter', 1, '+81 80-0076-3299', 2, '158294127914663732', '31-kai, 5-4-18 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-06-20', 0, 0, 'douglas7', '2018-10-30', 'doc', '2016-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS758016120656', 'Richard Lopez', 0, '+81 80-4340-7962', 3, '660979831248246227', '日本ならし学園南三丁目9番8号47号室', '1989-12-10', 0, 0, 'lopricha', '2008-01-04', 'richardlopez', '2013-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS750253374054', '谷口大輔', 1, '+44 7880 533698', 3, '564124385746668727', 'Unit 36, Oxford Eco Centre, 477 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-08-14', 0, 0, 'taniguchidaisuke511', '2021-03-05', 'taniguchi8', '2000-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS734369043820', 'Cynthia Burns', 1, '+86 769-5176-3090', 1, '154814384493111273', '中国东莞东泰五街593号2楼', '1995-01-19', 0, 0, 'cynthiaburns95', '2010-10-29', 'cynthiaburns', '2014-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS174221478818', '山田大地', 1, '+86 769-8175-4047', 1, '334352204727546706', '中国东莞珊瑚路939号39楼', '1995-05-27', 0, 0, 'yamada1121', '2004-03-20', 'daicyamada1216', '2007-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS093121960468', '岡本葉月', 0, '+86 148-8721-8062', 3, '170445542595194558', 'No.49 building, 712 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1992-10-19', 0, 0, 'ohazuk7', '2022-02-19', 'okamotohazu', '2011-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS902834495619', '遠藤湊', 0, '+86 140-6935-3158', 3, '112298881262711128', '中国上海市闵行区宾川路997号3栋', '1994-01-01', 0, 0, 'miendo1991', '2004-02-08', 'endominato', '2020-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS767309136446', '孫惠敏', 1, '+86 196-7727-7236', 2, '686553419368271395', '中国广州市越秀区中山二路452号华润大厦17室', '1989-01-15', 0, 0, 'hwm8', '2005-06-27', 'wmhsuan', '2010-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS038765484173', '村上結翔', 0, '+1 212-335-0083', 0, '278823096093533725', '678 West Houston Street Apt 34, New York, NY 10014, United States', '1994-01-02', 0, 0, 'yuitomurakami', '2003-03-28', 'yuitom', '2014-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS012574128270', 'Sheila Warren', 1, '+81 80-7592-6888', 1, '756784421621449196', 'Rm. 40, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1990-03-08', 0, 0, 'sw4', '2010-12-04', 'sheilawar', '2010-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS389155266277', '许子异', 0, '+81 74-902-4613', 3, '391149476222267912', '日本ならし学園南三丁目9番1号36階', '1996-07-17', 0, 0, 'xuziyi', '2017-09-27', 'ziyixu', '2002-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS176637949123', '姚安琪', 0, '+81 52-692-8145', 4, '473569299473425307', '日本なごやし守山区瀬古東二丁目171番5号14階', '1996-05-16', 0, 0, 'anqiyao', '2009-08-16', 'anqiyao', '2010-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS902481403285', 'Pauline Ruiz', 0, '+44 (116) 057 8430', 3, '864717209929748657', 'Block 46, 391 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-09-12', 0, 0, 'paulinerui', '2001-01-09', 'paulineruiz', '2002-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS156999747763', '高田愛梨', 0, '+81 52-001-7155', 3, '007055589576663823', '46-kai, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1991-07-24', 0, 0, 'airit', '2000-03-05', 'airitakada223', '2001-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS564891554241', '金子异', 1, '+44 (161) 185 5057', 1, '907920144748860766', 'No.4 Main building, 451 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1988-01-23', 0, 0, 'jinziyi', '2015-02-11', 'ziyi73', '2013-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS177318848099', '近藤愛梨', 0, '+1 213-635-1458', 2, '662619024246968563', '846 S Broadway Apartment 36, Los Angeles, CA 90015, United States', '1992-11-22', 0, 0, 'kondoairi', '2013-06-05', 'kairi', '2001-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS125833152360', '莫慧珊', 0, '+44 (161) 078 7597', 1, '306617961415101422', 'Flat 19, 303 Portland St, Manchester, M1 3LA, United Kingdom', '1990-09-14', 0, 0, 'waisanmo1210', '2006-02-28', 'waisan9', '2009-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS353297346798', '杨宇宁', 1, '+1 212-760-1777', 1, '016109526506536076', '109 Bank Street Apt 7, New York, NY 10014, United States', '1991-05-26', 0, 0, 'yuninyan', '2016-02-20', 'yangy402', '2008-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS494532404300', '顧仲賢', 0, '+81 3-1970-8924', 3, '225268182283401254', '日本東京渋谷区代々木二丁目3番10号49号室', '1995-05-25', 0, 0, 'cyku', '2015-08-02', 'ku3', '2017-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS414703942083', '胡子韬', 1, '+1 614-070-1620', 2, '471455836713015856', '811 East Alley Apartment 33, Columbus, GA 43201, United States', '1990-06-17', 0, 0, 'hzitao', '2006-07-31', 'hu18', '2010-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS736206055127', '向家強', 1, '+81 70-5155-2572', 2, '960337886641214180', 'Rm. 42, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-06-17', 0, 0, 'kaheung', '2012-12-06', 'kkh3', '2018-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS370479400444', '村上陽太', 0, '+44 (1865) 75 1656', 1, '537661219887643060', 'Unit 47, Oxford Eco Centre, 521 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-09-01', 0, 0, 'yotmur51', '2009-04-06', 'murakami94', '2010-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS933072268614', '吕子异', 0, '+86 174-9011-0738', 3, '104197437821105145', 'No.23 building, 816 Kengmei 15th Alley, Dongguan, China', '1985-05-21', 0, 0, 'ziylu', '2016-05-03', 'zilu5', '2006-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS131365272532', '錢家強', 1, '+81 66-564-9538', 1, '887002400025347160', '日本おおさかし西成区天神ノ森二丁目1番8号41号室', '1988-04-23', 0, 0, 'kakeungchin7', '2011-10-07', 'chin07', '2017-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS778512905975', '葉家明', 0, '+86 197-7043-5381', 0, '660015617000326780', '中国东莞坑美十五巷241号华润大厦25室', '1990-07-19', 0, 0, 'kamingyip73', '2021-05-20', 'yka', '2001-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS933111613682', '毛家輝', 0, '+81 74-356-6202', 3, '674200772383578060', '日本ならし西大寺赤田町一丁目7番5号48階', '1992-09-04', 0, 0, 'kafaim', '2017-02-17', 'kafai86', '2014-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS261497918941', 'Alexander Reyes', 1, '+44 (151) 923 2812', 3, '778244674797162813', 'Block 6, 557 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-12-29', 0, 0, 'ralexander6', '2006-05-03', 'alexanderreyes', '2021-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS875048855753', 'Hazel Jones', 1, '+81 11-012-2944', 4, '210381948654016609', 'Rm. 37, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1987-04-01', 0, 0, 'jonesh20', '2001-11-26', 'johazel', '2020-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS114029397412', '橋本陽菜', 1, '+81 66-947-5472', 1, '531310895762311662', '41F, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1985-11-18', 0, 0, 'hinahas', '2015-08-16', 'hashhina64', '2011-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS582314656980', 'Debra Sullivan', 0, '+81 11-078-0144', 3, '804978015195747860', 'Rm. 42, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-04-19', 0, 0, 'debsullivan97', '2018-01-03', 'dsullivan', '2006-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS677269438409', '阮家強', 1, '+1 212-299-1432', 1, '577202457745980245', '128 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-12-26', 0, 0, 'kkyuen', '2019-12-09', 'ykakeung', '2016-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS693517340896', '葉詠詩', 1, '+86 21-128-0256', 2, '055972280103618949', '42F, 466 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-05-28', 0, 0, 'yipwings827', '2007-11-16', 'yipws', '2001-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS685254462779', '麥家輝', 1, '+81 3-6370-9078', 2, '547160542992608879', '日本東京中央区銀座三丁目12番18号19階', '1996-12-06', 0, 0, 'makkf', '2012-06-04', 'mak7', '2000-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS179586120914', 'Josephine Mcdonald', 1, '+81 3-9345-5011', 2, '152678982989348400', 'Rm. 19, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-06-09', 0, 0, 'josephine9', '2019-10-05', 'josephine48', '2013-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS360916474003', 'Clara Graham', 0, '+86 28-942-0338', 2, '938484540690197293', '中国成都市成华区玉双路6号335号华润大厦30室', '1995-10-23', 0, 0, 'graham99', '2017-08-25', 'clarag', '2019-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS837318111238', '島田美月', 1, '+86 20-412-2610', 1, '391438573783547293', '中国广州市越秀区中山二路598号13室', '1992-11-12', 0, 0, 'smitsuki', '2007-05-27', 'shimamitsu', '2003-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS454517590954', '菅原花', 0, '+86 157-1735-3144', 3, '055679191999259677', '中国深圳罗湖区清水河一路6号3栋', '1994-08-22', 0, 0, 'sugahana', '2017-09-10', 'hana7', '2014-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS554711046284', '邱岚', 1, '+86 196-9025-9239', 2, '823029260370637407', '26F, 619 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-05-15', 0, 0, 'qiulan', '2001-03-07', 'lanq912', '2016-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS583892902222', 'Sandra Nguyen', 1, '+1 213-820-5102', 3, '229002192262742060', '890 Wall Street Apt 50, Los Angeles, CA 90003, United States', '1985-09-14', 0, 0, 'sandnguyen', '2008-09-19', 'sandrang', '2018-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS516191785016', '汪震南', 1, '+86 10-3234-0729', 4, '709409002998656196', 'Room 44, CR Building, 201 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-02-05', 0, 0, 'zhennan622', '2021-06-10', 'zwan', '2007-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS608210167930', '邵云熙', 1, '+44 5899 907930', 2, '124665644243545460', 'No.3 Main building, 268 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-04-08', 0, 0, 'shaoyunx', '2013-09-05', 'syunxi', '2017-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS419959980723', '方慧珊', 0, '+1 838-996-5106', 2, '212322617659680144', '19 Lark Street Suite 24, Albany, NY 12210, United States', '1990-11-08', 0, 0, 'fongwaisa1229', '2013-04-23', 'fonwaisan525', '2002-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS929494539951', '钟璐', 0, '+86 190-0963-3561', 2, '427013879821137845', '中国上海市闵行区宾川路185号华润大厦42室', '1995-02-09', 0, 0, 'lu1995', '2012-02-17', 'zhonglu', '2008-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS398956460541', 'Sheila Ryan', 1, '+86 161-1018-4606', 4, '310830060213487051', '中国深圳罗湖区蔡屋围深南东路689号15室', '1985-03-31', 0, 0, 'sheilarya', '2009-06-04', 'ryansheila83', '2013-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS549550211553', 'Ray Stephens', 1, '+81 80-9565-0389', 0, '394682992218597600', '34-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1988-08-14', 0, 0, 'stephensra', '2021-10-10', 'rays', '2006-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS497139408978', 'Julie Stephens', 1, '+86 196-1359-8994', 3, '975011518450589607', '中国北京市海淀区清河中街68号405号4室', '1993-02-07', 0, 0, 'jstephens1', '2002-02-16', 'stephensjulie1', '2002-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS178666690569', '小林百花', 0, '+86 166-2288-7736', 2, '434103992569953073', 'No.18 building, 157 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-07-03', 0, 0, 'kobayashimomok', '2018-12-08', 'momok3', '2016-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS538057068057', 'Michelle Lopez', 0, '+86 145-7379-2092', 2, '340597107573631282', 'Room 50, CR Building, 438 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-02-13', 0, 0, 'lopez4', '2019-08-26', 'michelle4', '2017-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS030555064396', 'Jerry Collins', 1, '+86 760-3808-5356', 4, '376224394686622366', '中国中山乐丰六路644号32号楼', '1990-01-07', 0, 0, 'coljerr1117', '2009-08-14', 'jerry801', '2010-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS494564477014', '山本百恵', 0, '+81 90-3318-8398', 1, '906303536264000104', 'Rm. 10, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-12-08', 0, 0, 'yamamotomomoe', '2011-05-07', 'yamamotomomo', '2007-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS560028769378', 'Jessica Clark', 1, '+86 199-9086-1171', 2, '774590256190825074', '中国深圳龙岗区布吉镇西环路653号华润大厦40室', '1996-11-15', 0, 0, 'clajessica', '2009-08-16', 'clarkjessica', '2004-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS775222534967', '上田優奈', 1, '+44 7110 548335', 3, '755808651186051583', 'Block 4, 130 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-10-24', 0, 0, 'yunu7', '2000-11-01', 'ueyu', '2006-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS292171303723', '崔慧敏', 1, '+86 755-8141-2064', 0, '527420201743978552', '中国深圳罗湖区蔡屋围深南东路731号21楼', '1988-01-29', 0, 0, 'wmchoi4', '2003-03-01', 'wmchoi6', '2005-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS276739454638', '長谷川美咲', 1, '+81 70-9081-6571', 1, '078222958555103518', '日本東京渋谷区代々木二丁目3番16号4階', '1994-05-05', 0, 0, 'hami', '2000-09-02', 'mihase', '2008-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS147547267830', 'Keith Ellis', 1, '+86 132-1309-1533', 0, '113367407021791370', '12F, 784 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-03-19', 0, 0, 'keithellis51', '2008-01-12', 'keith6', '2005-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS476815624812', '尹子异', 0, '+81 11-701-5836', 3, '203636736861958566', '日本札幌中央区宮の森四条六丁目1番18号35号室', '1990-12-07', 0, 0, 'yiziy', '2018-05-07', 'yin1', '2005-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS397902906410', '石川蒼士', 0, '+81 90-6775-4931', 2, '156707147170402944', 'Rm. 20, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-11-03', 0, 0, 'aoshiishi10', '2005-11-01', 'iaoshi', '2008-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS156493127183', '西村陽菜', 1, '+44 5990 337729', 0, '387934528965120682', 'Unit 20, Oxford Eco Centre, 852 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-10-04', 0, 0, 'hinishimura', '2016-10-03', 'hnis', '2003-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS099740542067', 'Mario Tucker', 1, '+81 90-9014-6693', 2, '784448453100467767', '日本東京千代田区丸の内一丁目6番11号5階', '1998-07-10', 0, 0, 'tucm', '2004-12-23', 'matuc', '2003-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS572285918167', '段安琪', 1, '+1 614-323-3408', 1, '712739843453683052', '295 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-07-10', 0, 0, 'anqi1', '2002-10-24', 'anqi616', '2003-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS558662280794', '许詩涵', 1, '+81 3-0209-3219', 1, '135361997297631528', '日本東京品川区東五反田五丁目2番1号39階', '1993-03-13', 0, 0, 'shihxu', '2020-03-30', 'shihxu415', '2018-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS021403007080', '斉藤明菜', 0, '+81 11-986-2311', 3, '724847460673568292', '日本札幌白石区菊水三条五丁目4番13号26階', '1986-04-12', 0, 0, 'sa210', '2017-06-26', 'saiakina1983', '2003-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS447780742287', '谷口優奈', 0, '+86 151-3327-3051', 1, '627482881563055962', '中国广州市白云区机场路棠苑街五巷750号41号楼', '1987-06-09', 0, 0, 'tyuna53', '2005-12-05', 'yunta55', '2016-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS187644994476', '上田結翔', 1, '+81 90-8800-5396', 3, '452851203028643031', '42F, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-04-04', 0, 0, 'uedyuito09', '2017-11-26', 'ueday904', '2016-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS955591022663', '袁岚', 0, '+44 (20) 2034 5905', 2, '200970529211956776', 'Block 39, 551 Pollen Street, London, W1S 1NG, United Kingdom', '1997-07-25', 0, 0, 'yulan', '2004-07-04', 'lanyuan', '2012-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS394864317368', 'Julie Howard', 0, '+86 755-8442-1943', 3, '740227954560058208', '19F, 301 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-08-08', 0, 0, 'hojulie', '2014-07-13', 'julh', '2001-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS302518218700', '黎仲賢', 0, '+44 5722 467158', 3, '754620857737592395', 'No.13 Main building, 39 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-03-08', 0, 0, 'chungyinlai', '2010-04-29', 'laicy', '2008-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS532611350182', '江嘉伦', 1, '+86 170-8623-8463', 2, '774202500391334239', 'Room 25, 111 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-03-04', 0, 0, 'jialunji', '2002-12-18', 'jiang7', '2018-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS415819234373', '上野桜', 1, '+44 5653 337403', 2, '894636056780536382', 'Unit 14, Oxford Eco Centre, 628 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-03-18', 0, 0, 'us1', '2020-11-07', 'sakuraueno7', '2012-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS581606474471', '有村拓哉', 0, '+86 10-9144-8943', 2, '157161425980485896', '中国北京市西城区西長安街27号43室', '1990-07-21', 0, 0, 'arimurata', '2001-12-30', 'arimura85', '2005-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS675708840830', 'Ethel Lee', 0, '+86 133-8254-6312', 3, '319612364709551721', '5F, No. 256, Shuangqing Rd, Chenghua District, Chengdu, China', '1986-09-25', 0, 0, 'ethellee329', '2000-08-27', 'ethelee1', '2015-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS552008974749', '潘致远', 0, '+86 769-1285-7513', 4, '250711144219902834', '中国东莞坑美十五巷39号14室', '1989-02-07', 0, 0, 'panzhiyuan3', '2019-07-23', 'zhiyuanp', '2015-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS497035978910', 'Willie Hernandez', 1, '+44 (151) 646 2554', 4, '961560134249389949', 'No.29 Main building, 753 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-11-04', 0, 0, 'hewil8', '2001-05-03', 'hernandezwi512', '2016-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS832716887921', 'Lee Adams', 0, '+86 160-8527-1773', 3, '007546287096657019', '中国广州市越秀区中山二路980号25号楼', '1994-03-31', 0, 0, 'leeadams1009', '2020-12-24', 'leeadams07', '2007-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS597528622262', '坂本大輔', 1, '+1 212-032-6735', 4, '758864767935311347', '381 Wooster Street Suite 28, New York, NY 10012, United States', '1989-05-21', 0, 0, 'daisuke4', '2004-03-18', 'sakda', '2003-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS037933197854', '郑子韬', 1, '+86 769-529-6446', 2, '998571749943785516', '中国东莞珊瑚路933号华润大厦42室', '1994-02-03', 0, 0, 'zz6', '2020-09-23', 'zhengzita', '2015-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS191371406871', 'Nicole Owens', 0, '+1 330-616-9595', 1, '685371134735757734', '289 West Market Street 3rd Floor, Akron, OH 44333, United States', '1985-02-10', 0, 0, 'nicolowens', '2017-07-28', 'onicole75', '2013-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS738045249533', '容詩君', 0, '+86 139-6065-9534', 2, '591193643420913287', '47F, 63 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-12-17', 0, 0, 'szekwanyung', '2015-05-10', 'sky7', '2017-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS520163790785', '和田花', 1, '+86 10-9711-6257', 3, '779420817352242592', 'No.10 building, 892 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-06-23', 0, 0, 'hanawada419', '2001-05-07', 'wadahana', '2020-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS703975942935', '戴世榮', 1, '+1 312-382-1139', 2, '459547307108722550', '36 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1994-05-10', 0, 0, 'daisaiw79', '2019-02-06', 'dai4', '2000-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS683796151684', '严云熙', 1, '+81 52-590-4435', 0, '812267019376739775', '7F, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-07-06', 0, 0, 'yan1205', '2010-11-23', 'yyu9', '2008-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS150189316683', '苗朝偉', 0, '+44 (116) 571 9712', 0, '326066652134819436', 'Unit 34, Oxford Eco Centre, 767 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-05-16', 0, 0, 'miu2016', '2012-05-17', 'miu19', '2016-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS339330483737', '中野大和', 1, '+44 5865 475620', 3, '817624145617825471', 'Unit 19, Oxford Eco Centre, 272 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-03-12', 0, 0, 'nakanoy216', '2014-06-26', 'nakanyamato10', '2015-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS221941208473', 'Bernard Rodriguez', 1, '+1 213-152-0922', 1, '665253805774357390', '628 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1989-03-01', 0, 0, 'rbe4', '2007-09-27', 'bernardrodriguez9', '2004-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS543949208859', 'Vincent Ward', 0, '+86 10-0848-7273', 0, '023507242969370772', '中国北京市海淀区清河中街68号825号29号楼', '1994-08-14', 0, 0, 'ward6', '2003-08-19', 'vincent309', '2004-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS843057649853', 'Lawrence Daniels', 1, '+86 181-2517-1243', 1, '045778840566357963', 'Room 3, 838 Ganlan Rd, Pudong, Shanghai, China', '1996-06-07', 0, 0, 'daniels1974', '2019-12-09', 'lawrence3', '2018-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS736812446083', '藤家明', 1, '+1 212-340-7904', 3, '175535091662003550', '187 Bank Street Apt 6, New York, NY 10014, United States', '1986-07-23', 0, 0, 'kamintang', '2000-03-28', 'kamtang', '2018-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS392748506487', '余璐', 0, '+81 90-3399-2920', 0, '490984637754549651', '29-kai, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1999-01-10', 0, 0, 'yulu', '2011-04-11', 'yulu', '2011-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS237853619070', '沈嘉伦', 0, '+81 11-416-6080', 3, '753312440292627312', '日本札幌清田区真栄四条五丁目19番18号5号室', '1985-02-22', 0, 0, 'jshen', '2020-05-21', 'shen10', '2020-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS574042312972', '佐藤百花', 1, '+1 838-685-8115', 3, '669688661796415018', '630 Central Avenue Apartment 24, Albany, NY 12205, United States', '1986-05-01', 0, 0, 'momoka69', '2001-07-01', 'satom78', '2010-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS742637582817', '萧嘉伦', 0, '+1 213-695-2192', 3, '301673064333197317', '442 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-07-25', 0, 0, 'xiaojialun', '2014-09-10', 'xiao56', '2017-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS913717841037', 'Rachel Morales', 0, '+81 66-511-2432', 2, '983646478668045146', '日本おおさかし近江堂一丁目7番4号15号室', '1997-05-27', 0, 0, 'morrachel', '2002-10-25', 'moralesrachel', '2014-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS665715188560', '郭子韬', 0, '+86 769-5503-0037', 1, '520724055080403386', '18F, 907 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-26', 0, 0, 'gzitao9', '2003-04-15', 'guo92', '2008-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS767045727991', '松本花', 1, '+81 66-989-0389', 1, '251361847821399853', '25-kai, 2-1-10 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-03-21', 0, 0, 'hanamatsumoto', '2004-06-30', 'hana9', '2006-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS067460231893', '唐天榮', 1, '+81 70-9369-1185', 1, '820996769146950585', '日本ならし西大寺赤田町一丁目7番14号23階', '1997-08-06', 0, 0, 'tontw', '2018-04-02', 'tinwingtong', '2003-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS236206871007', '官思妤', 0, '+81 80-7696-4952', 3, '348845618204807413', '日本札幌豊平区豊平三条十三丁目3番12号30階', '1997-11-09', 0, 0, 'sykoo315', '2008-08-10', 'kszeyu', '2020-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS830797463921', '蕭力申', 1, '+81 90-5943-9877', 2, '656737733739522920', 'Rm. 3, 3-9-6 Gakuenminami, Nara, Japan', '1986-08-11', 0, 0, 'liksun9', '2016-06-30', 'liksunsiu1958', '2007-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS850070894844', 'Carolyn Gutierrez', 0, '+81 66-605-5161', 1, '508958346277619335', '日本おおさかし西成区出城一丁目1番17号24階', '1998-03-19', 0, 0, 'carolyn3', '2010-04-24', 'carolgutierrez', '2008-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS582709823685', '馬玲玲', 0, '+44 7856 047800', 3, '145696705455036976', 'Flat 45, 433 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-10-12', 0, 0, 'lingling1011', '2011-12-20', 'linglingma2', '2016-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS927374508777', 'Julia Cox', 1, '+81 90-3020-9054', 2, '632276740782346847', '6-kai, 6-1-10, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-02-08', 0, 0, 'juliacox', '2018-06-20', 'cox428', '2012-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS810713180913', '中村美緒', 1, '+86 138-2548-3145', 2, '825783618403708260', '中国深圳罗湖区田贝一路192号8楼', '1986-10-13', 0, 0, 'namio', '2005-08-12', 'nm4', '2020-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS813445000202', '甘頴思', 1, '+81 11-272-5311', 3, '216136789445423587', '44F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1999-01-07', 0, 0, 'wskam62', '2001-12-30', 'wingszekam', '2006-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS924701439498', 'Ruth Salazar', 0, '+81 66-795-3938', 1, '742132287132959865', '日本おおさかし西成区出城一丁目1番18号18階', '1995-02-21', 0, 0, 'rutsalazar', '2022-03-03', 'ruthsalaz', '2010-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS445381612897', '邵秀文', 0, '+86 21-4615-6249', 3, '001859634310752389', '中国上海市浦东新区健祥路92号25楼', '1997-02-13', 0, 0, 'ssauman', '2016-06-02', 'sisauman', '2020-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS920310278902', '程璐', 0, '+86 28-999-2917', 4, '892286447344825955', '中国成都市成华区玉双路6号900号43室', '1985-04-23', 0, 0, 'lucheng15', '2015-07-09', 'lu1007', '2020-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS632453865484', '向德華', 0, '+81 11-990-9848', 1, '483296686950420040', '日本札幌白石区菊水三条五丁目2番14号27階', '1997-04-13', 0, 0, 'takwahheung', '2004-04-21', 'heungtakwah', '2003-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS699649684072', '宣家強', 1, '+86 130-8523-3040', 0, '030840737430838328', 'No.28 building, 608 Shanhu Rd, Dongguan, China', '1991-12-03', 0, 0, 'hsuan829', '2017-08-25', 'kkhs', '2016-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS066458602632', 'Kathleen Ross', 1, '+86 755-836-3331', 3, '815502975539531818', '11F, 997 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-08-09', 0, 0, 'kathleenr', '2004-07-11', 'rosskath', '2000-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS743135333247', '江致远', 0, '+81 52-803-8463', 3, '449425343813189339', '日本なごやし北区清水三丁目19番2号31号室', '1993-01-16', 0, 0, 'jiaz', '2019-05-04', 'zhiyuanjia825', '2015-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS658174289840', '西村紗良', 0, '+86 755-3985-8332', 1, '497869458091081422', '28F, 811 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-10-14', 0, 0, 'nsara', '2013-02-25', 'nishsara', '2020-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS142829307916', '曾云熙', 0, '+1 330-222-5516', 0, '098667817799910445', '689 West Market Street 3rd Floor, Akron, OH 44333, United States', '1991-04-18', 0, 0, 'zenyun6', '2007-02-15', 'zeng103', '2019-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS173415691359', '張曉彤', 1, '+86 183-7773-1548', 3, '556261406114485131', '中国东莞珊瑚路174号46栋', '1993-06-13', 0, 0, 'cheung05', '2011-05-06', 'htcheung', '2013-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS391485309614', '陆云熙', 0, '+81 66-248-6556', 3, '840734739559205632', 'Rm. 48, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-06-29', 0, 0, 'yunxi923', '2008-09-18', 'luyunxi94', '2019-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS132331433764', '郭子异', 0, '+86 21-5908-5305', 1, '377740224920927152', '中国上海市徐汇区虹桥路675号3楼', '1998-06-19', 0, 0, 'zguo', '2008-12-18', 'guozi', '2010-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS257237577253', '宮崎美羽', 1, '+44 5284 947887', 0, '362571025072009250', 'Block 50, 974 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1986-02-01', 0, 0, 'miyamiu', '2021-05-24', 'miumiyazaki', '2012-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS592584665422', '井上陽太', 0, '+1 212-139-2456', 1, '618746279898029843', '991 Fifth Avenue Apt 30, New York, NY 10017, United States', '1993-01-15', 0, 0, 'inoueyot', '2002-05-06', 'yotai', '2005-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS389573540791', '駱嘉欣', 0, '+81 3-9153-2773', 1, '522658362748582152', '日本東京千代田区丸の内一丁目6番7号5階', '1993-06-25', 0, 0, 'lkaryan212', '2010-04-23', 'loky', '2010-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS834688611461', '盧慧珊', 0, '+81 11-441-0139', 3, '526831636907237917', '28F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-09-22', 0, 0, 'lo16', '2021-03-08', 'lo10', '2018-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS900677804770', 'Chris Sullivan', 0, '+1 213-120-2690', 0, '503205409714469763', '413 Figueroa Street Apt 14, Los Angeles, CA 90037, United States', '1991-02-06', 0, 0, 'sullivan1130', '2002-01-25', 'chrsul5', '2007-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS318350594931', '任潤發', 0, '+86 131-8125-6377', 2, '091162940876510544', '中国北京市东城区东单王府井东街702号18楼', '1986-03-31', 0, 0, 'yuyam8', '2018-01-06', 'yunfaty1', '2011-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS847641332686', '任頴思', 0, '+81 70-1235-4086', 0, '336880280476201568', '6F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-03-05', 0, 0, 'wingsze3', '2002-05-29', 'wsya', '2001-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS927852764144', 'Kelly Morgan', 0, '+86 160-5985-6567', 1, '295487892883439486', '中国深圳罗湖区清水河一路439号华润大厦2室', '1997-10-30', 0, 0, 'morgankelly6', '2013-06-17', 'kelly722', '2015-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS039625402835', 'Scott Myers', 1, '+86 28-4748-8948', 2, '483592329684392593', 'No.28 building, 660 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1999-02-19', 0, 0, 'myersscot', '2007-01-22', 'myerscott', '2016-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS755149358722', 'Sandra Henry', 0, '+86 769-466-5064', 3, '917869665795916085', '25F, 201 Kengmei 15th Alley, Dongguan, China', '1991-12-13', 0, 0, 'hsandra88', '2017-11-16', 'hsandr', '2015-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS748267788864', '崔青雲', 1, '+81 11-228-6114', 0, '207491111662278976', '31F, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-06-12', 0, 0, 'choichingwan', '2006-06-28', 'cwchoi', '2015-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS213108009664', '劉杰倫', 1, '+44 7580 676266', 3, '755715629486236059', 'Block 23, 310 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-01-13', 0, 0, 'chielau', '2012-01-09', 'chiehlunlau', '2010-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS682876203956', '王子韬', 1, '+86 161-4660-8306', 0, '130938815865109689', '28F, 414 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-09-22', 0, 0, 'wangzi8', '2008-02-01', 'zitaowang', '2004-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS728807231365', 'Martin Rice', 0, '+44 5606 079570', 3, '967774737091793925', 'Flat 22, 33 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-11-04', 0, 0, 'rmartin', '2004-10-07', 'rm63', '2000-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS827103170515', '麥志明', 0, '+86 769-715-0475', 1, '488929597340282936', 'Room 21, CR Building, 4 Huanqu South Street 2nd Alley, Dongguan, China', '1993-10-22', 0, 0, 'makcm', '2019-06-16', 'cmmak83', '2012-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS788386430938', '田村結翔', 1, '+44 7646 684541', 0, '842233890886594749', 'Flat 42, 57 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-01-19', 0, 0, 'tamurayuito', '2012-11-30', 'ytamu', '2003-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS149765592901', '柴田葵', 1, '+81 11-451-5503', 0, '305902901619532537', 'Rm. 44, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-23', 0, 0, 'shibata2012', '2001-12-15', 'aoishiba', '2007-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS737278927973', '苗梓軒', 0, '+1 838-740-9258', 1, '814976158376938527', '86 Central Avenue Apartment 18, Albany, NY 12206, United States', '1997-01-05', 0, 0, 'tszhin610', '2020-12-10', 'miuth927', '2004-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS529152346537', '翁天樂', 1, '+81 11-085-7506', 3, '195822726889046720', 'Rm. 39, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-04-19', 0, 0, 'yuntl', '2006-04-20', 'tlyung', '2006-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS571321643540', '雷青雲', 1, '+81 90-3411-1516', 1, '288676130295844629', '18-kai, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-12-24', 0, 0, 'chingwanloui', '2004-08-31', 'louiching1025', '2012-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS415815306818', '萬嘉欣', 0, '+86 157-6073-5259', 2, '160339240687460652', '中国上海市浦东新区健祥路236号11栋', '1993-06-08', 0, 0, 'kymeng', '2011-11-10', 'karyanmeng', '2002-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS312013642461', '中森聖子', 1, '+86 177-9646-0356', 1, '926840256832704721', 'No.16 building, 995 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-04-07', 0, 0, 'sn2008', '2020-12-31', 'snakamori109', '2006-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS769004796193', '武田陽菜', 1, '+44 5815 999085', 4, '397207725114825179', 'No.8 Main building, 943 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-02-02', 0, 0, 'hinatakeda', '2004-10-30', 'takeda2006', '2005-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS001465123508', '野村大地', 0, '+1 838-496-3485', 2, '941355233286384022', '408 Broadway 3rd Floor, Albany, NY 12207, United States', '1994-12-16', 0, 0, 'nomuradai10', '2015-03-20', 'daichi1015', '2014-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS492885610084', '黎睿', 0, '+86 197-9831-2575', 2, '948172431181729524', 'No.37 building, 235 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-11-23', 0, 0, 'liru9', '2000-08-06', 'ruili', '2006-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS720488932041', '鈴木湊', 0, '+1 838-332-7745', 1, '036016171191536952', '307 Lark Street Apartment 9, Albany, NY 12210, United States', '1990-11-25', 0, 0, 'minato2', '2014-04-16', 'minatosuzuki', '2008-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS812441312755', '餘家輝', 0, '+81 90-3468-4941', 2, '537230161527210154', '25F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-01-03', 0, 0, 'kafai713', '2005-05-28', 'kafaiyu', '2021-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS425304629164', '工藤凛', 0, '+86 132-0241-9295', 1, '739674432837669890', '中国深圳龙岗区学园一巷246号41号楼', '1986-11-19', 0, 0, 'rink', '2010-07-10', 'rink', '2006-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS324693240075', '中山聖子', 0, '+81 80-9893-9250', 0, '467122971535059118', '日本おおさかし西成区出城一丁目1番4号46階', '1996-09-23', 0, 0, 'nakayamas', '2018-09-10', 'nakaseik', '2000-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS732486867708', '柴田光', 1, '+86 160-9894-6874', 0, '968437972600019830', 'Room 46, 223 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-09-10', 0, 0, 'hikarushiba', '2004-01-30', 'hikash', '2012-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS398968887340', 'Dawn Wagner', 0, '+86 10-116-5942', 3, '693063793610655015', 'Room 14, CR Building, 3 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-12-22', 0, 0, 'wagnedawn', '2001-12-22', 'wagnerdawn', '2011-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS457664938474', '呂慧珊', 0, '+1 213-483-8009', 4, '909749417677844047', '170 Grape Street Apt 12, Los Angeles, CA 90002, United States', '1989-04-18', 0, 0, 'wslui', '2015-04-23', 'waisan19', '2000-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS773130869991', '後藤架純', 1, '+81 70-1316-0704', 2, '538727807657371968', '42-kai, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1991-12-30', 0, 0, 'gotok', '2009-01-15', 'gotoka', '2016-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS001491512135', '房志明', 0, '+86 10-312-9558', 1, '757997082308795736', '中国北京市延庆区028县道626号23号楼', '1985-04-30', 0, 0, 'fcm', '2020-06-05', 'fongchiming', '2001-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS943690773445', '崔力申', 0, '+1 614-383-4131', 3, '025946010193018570', '670 Tremont Road Apt 35, Columbus, GA 43212, United States', '1992-12-25', 0, 0, 'choiliksu1953', '2003-08-11', 'lschoi', '2020-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS979788477227', '蔡璐', 1, '+81 90-6702-3099', 3, '611812707639837487', '9-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-04-20', 0, 0, 'cailu', '2017-12-10', 'cai122', '2009-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS211000589433', 'Danny Moore', 1, '+81 70-0472-4046', 4, '104408117410132091', '2F, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-05-15', 0, 0, 'damoo1959', '2005-05-31', 'moored6', '2006-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS905408675535', '佐々木美緒', 0, '+81 66-231-3469', 3, '657421021692639255', '27F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-05-23', 0, 0, 'misasa', '2000-08-17', 'sasakmio', '2012-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS385265753063', '石川詩乃', 1, '+81 90-8038-0240', 4, '088456333586811128', '日本おおさかし平野区加美東四丁目9番15号2階', '1996-12-20', 0, 0, 'shino4', '2003-04-20', 'ishikawas1955', '2000-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS998698354461', 'Joshua Soto', 1, '+86 28-571-6304', 2, '656412241143342473', 'Room 38, 418 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-01-05', 0, 0, 'jossot', '2004-09-21', 'soto1118', '2005-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS732014015723', '山下舞', 1, '+86 168-2647-3729', 1, '233557519681718789', '20F, 105 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-03-13', 0, 0, 'myam', '2012-07-20', 'yamashitama', '2000-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS955787608577', '後藤百花', 1, '+86 760-8330-6602', 3, '615357777942549966', '4F, 932 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-04-26', 0, 0, 'momokag', '2002-04-07', 'goto72', '2006-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS372560479019', '島田瑛太', 1, '+81 70-2905-2283', 0, '122935020325004646', '40-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-12-29', 0, 0, 'es604', '2016-06-15', 'se1996', '2018-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS564284259552', 'Aaron Gardner', 1, '+81 66-597-4014', 3, '202456259820389477', '日本おおさかし平野区加美東四丁目9番12号44号室', '1993-09-29', 0, 0, 'aarongardner', '2000-06-15', 'gardner58', '2008-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS417733398583', '山口大地', 1, '+44 5419 932456', 2, '618504903834610536', 'No.3 Main building, 577 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-12-23', 0, 0, 'yamaguchidaichi', '2015-03-02', 'daichiyama', '2020-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS893260578414', 'Herbert Hunt', 1, '+86 153-5110-3822', 2, '885067318972247054', 'No.49 building, 406 Dongtai 5th St, Dongguan, China', '1997-08-03', 0, 0, 'herbhunt', '2022-01-07', 'herberthunt9', '2013-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS439893245132', '市川光莉', 0, '+81 70-1866-2609', 0, '854188734539622960', 'Rm. 7, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1992-08-27', 0, 0, 'hikichi', '2012-03-20', 'ichikawahikar609', '2001-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS824288426998', 'Bruce Holmes', 1, '+86 769-1938-7897', 4, '422943542160928779', 'Room 3, 765 Dongtai 5th St, Dongguan, China', '1985-10-17', 0, 0, 'brhol17', '2012-04-24', 'bruceho', '2019-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS567561364304', '郭明', 0, '+81 66-254-4367', 3, '447130107425404931', '日本おおさかし平野区加美東四丁目9番4号49階', '1995-08-23', 0, 0, 'kmi5', '2019-03-22', 'mkwok', '2017-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS428935256343', '遠藤陽太', 1, '+1 614-998-6099', 1, '375842366407261361', '527 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1987-11-24', 0, 0, 'endyota', '2015-10-07', 'yota41', '2018-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS716782933342', '大野美羽', 0, '+1 614-212-9876', 1, '660690898284060456', '730 Tremont Road Suite 25, Columbus, GA 43212, United States', '1995-11-06', 0, 0, 'miuono', '2020-07-04', 'onmiu', '2020-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS811485327454', '向曉彤', 1, '+86 152-6868-2132', 2, '884247626824149631', '中国成都市成华区双庆路898号13室', '1989-01-23', 0, 0, 'heunghiutung', '2020-08-15', 'heung1120', '2012-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS209898777297', 'Tony Kennedy', 0, '+86 20-2141-6184', 2, '364346271346258960', '20F, 366 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-05-31', 0, 0, 'kennedyto2', '2000-04-12', 'tokennedy9', '2001-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS426078641027', '陳秀文', 0, '+1 718-003-2536', 3, '298658303901339248', '887 Bergen St Apt 2, Brooklyn, NY 11217, United States', '1996-04-01', 0, 0, 'saumanchan10', '2017-12-10', 'chansauman', '2006-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS767283869296', '黄岚', 1, '+44 7824 656069', 1, '274927608239498337', 'No.40 Main building, 4 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-08-02', 0, 0, 'hul86', '2009-12-11', 'lh711', '2012-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS492972523730', 'Crystal Grant', 1, '+44 (161) 996 6368', 3, '914565709919941714', 'Block 16, 192 Portland St, Manchester, M1 3LA, United Kingdom', '1997-04-12', 0, 0, 'cgr', '2011-08-19', 'cgrant', '2007-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS645132470522', '松井陽太', 1, '+86 10-7572-5308', 4, '143792974476124473', '中国北京市西城区复兴门内大街315号40楼', '1994-12-21', 0, 0, 'matsuiyota', '2002-07-09', 'matsyota1991', '2012-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS202175531177', '戴心穎', 1, '+81 66-641-9754', 2, '987831347458467223', '日本おおさかし東住吉区東田辺三丁目27番8号7階', '1995-10-19', 0, 0, 'sumwing3', '2012-02-28', 'daisw8', '2004-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS363364973550', '應安娜', 1, '+1 213-458-5271', 3, '808993345370235872', '511 S Broadway Apartment 1, Los Angeles, CA 90015, United States', '1997-12-18', 0, 0, 'ony', '2004-12-16', 'onnaying', '2012-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS785041048108', '胡岚', 1, '+81 66-629-8559', 3, '602572984772646024', '日本おおさかし東住吉区東田辺三丁目27番2号40階', '1988-07-19', 0, 0, 'lahu418', '2004-12-02', 'hu904', '2003-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS416706065405', '薛璐', 0, '+86 174-9269-6549', 3, '684058980684461110', '24F, 345 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-03-07', 0, 0, 'lxu', '2018-08-26', 'xue2', '2014-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS972534833387', '雷詩涵', 0, '+44 7426 353048', 4, '700032282286587665', 'Block 23, 156 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-04-22', 0, 0, 'leishi91', '2001-07-13', 'lei430', '2020-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS973049230374', '唐安琪', 0, '+81 3-1192-7258', 3, '452674383083111651', '40F, 2-3-14 Yoyogi, Shibuya-ku, Tokyo, Japan', '1995-12-10', 0, 0, 'tanganqi', '2020-08-01', 'anqit6', '2015-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS952638756338', '尹子韬', 0, '+81 3-3442-9853', 1, '956913782414616934', '日本東京港区東新橋一丁目5番18号13号室', '1994-07-30', 0, 0, 'yizit', '2019-06-07', 'yinzita1940', '2002-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS996226503117', 'Norman Stevens', 1, '+44 7702 505690', 2, '045800627253064413', 'Unit 20, Oxford Eco Centre, 376 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-04-03', 0, 0, 'stevens77', '2007-02-18', 'stevenorm319', '2010-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS080391971134', 'Gary Daniels', 0, '+1 838-517-3369', 2, '821347589067719845', '436 Lark Street Apartment 7, Albany, NY 12210, United States', '1997-01-02', 0, 0, 'gary57', '2007-12-23', 'gary1015', '2009-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS425766068039', '周頴思', 1, '+81 80-9634-0931', 1, '624539842988240014', '日本東京中央区銀座三丁目12番7号31階', '1989-09-27', 0, 0, 'chowwingsze', '2004-07-22', 'wingchow2', '2009-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS658368177831', '侯秀英', 0, '+81 80-5855-5933', 2, '587693183124702959', '日本札幌白石区菊水三条五丁目2番6号10階', '1995-02-10', 0, 0, 'xiuyinghou', '2012-04-26', 'xihou', '2003-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS532010083835', 'Christina Cooper', 1, '+44 5164 979931', 1, '618581631205543263', 'No.44 Main building, 705 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-04-27', 0, 0, 'cchristina', '2017-12-15', 'christinacoope4', '2004-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS457081656670', '餘詩君', 0, '+86 144-7828-6381', 2, '809449932778637972', 'No.9 building, 356 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-04-10', 0, 0, 'yusk', '2017-10-13', 'sky', '2012-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS369757128206', '鈴木大地', 0, '+1 212-989-6856', 1, '854443589633631118', '323 Fifth Avenue Suite 10, New York, NY 10017, United States', '1991-10-26', 0, 0, 'daichisuzu', '2018-05-29', 'suzuki5', '2007-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS411601961743', '張頴璇', 1, '+44 (1223) 07 1138', 2, '468606215914261766', 'No.16 Main building, 851 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-12-17', 0, 0, 'cheungws512', '2004-08-26', 'wsche84', '2020-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS777033599178', 'Edwin Gonzales', 1, '+86 10-0393-4859', 4, '010224734019368208', 'No.15 building, 567 Sanlitun Road, Chaoyang District, Beijing, China', '1997-04-30', 0, 0, 'gonzalesedw9', '2004-03-30', 'edwgonzales', '2012-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS596135389934', 'Donna Grant', 0, '+86 20-652-3055', 2, '629724170922624287', '中国广州市天河区天河路355号49楼', '1988-12-13', 0, 0, 'donng', '2011-08-13', 'donnag', '2006-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS859501634842', 'Frederick Davis', 1, '+44 5921 207560', 2, '845215275548377589', 'No.16 Main building, 160 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-09-12', 0, 0, 'davfrederick5', '2006-01-08', 'frederickdavis', '2012-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS318570054156', '梁璐', 0, '+81 90-6982-6743', 3, '075986391578427917', '日本ならし大和郡山市本庄町一丁目1番14号25階', '1990-01-21', 0, 0, 'liang7', '2002-11-01', 'lu91', '2014-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS479331074636', '張明', 1, '+81 70-6127-1750', 1, '577740845925777375', 'Rm. 17, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1995-11-02', 0, 0, 'cheuming', '2022-01-30', 'cming330', '2013-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS914486065735', '錢家明', 1, '+86 183-7618-0251', 2, '620165848357312994', '中国北京市西城区西長安街828号18室', '1991-06-25', 0, 0, 'chkaming', '2015-08-17', 'kmchi', '2000-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS145893957437', '陆詩涵', 0, '+1 838-852-5334', 3, '069395309865072517', '371 Central Avenue Apt 8, Albany, NY 12206, United States', '1988-05-29', 0, 0, 'lus8', '2019-10-06', 'lu6', '2012-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS127388830810', 'Elaine Diaz', 0, '+1 614-317-0419', 1, '265589475886630470', '923 Tremont Road Apt 5, Columbus, GA 43212, United States', '1994-06-13', 0, 0, 'diaelaine', '2010-12-05', 'diaz724', '2009-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS612537285750', '伍心穎', 0, '+44 5135 131649', 2, '159042183486519972', 'No.12 Main building, 738 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-10-14', 0, 0, 'sumwingng', '2012-01-17', 'ngsw', '2017-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS377716519168', '鐘慧嫻', 1, '+44 7513 025452', 3, '343508933029799358', 'Block 40, 578 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-01-03', 0, 0, 'waihanc', '2003-05-08', 'waichung1991', '2001-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS562141342393', 'Rita Ferguson', 0, '+44 7814 553931', 2, '044920559417228935', 'Unit 37, Oxford Eco Centre, 197 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-09-18', 0, 0, 'rita1983', '2020-11-27', 'ritafe8', '2016-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS870421179407', '原田涼太', 0, '+86 21-8740-1307', 3, '715845951187141503', 'No.49 building, 884 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-08-16', 0, 0, 'ryoh', '2013-01-05', 'ryota12', '2003-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS049743385049', '赵安琪', 1, '+86 153-0182-8800', 4, '532891137828498681', '中国北京市西城区复兴门内大街692号10号楼', '1993-08-17', 0, 0, 'anqi1123', '2005-04-23', 'azh', '2008-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS195800340472', 'Willie Torres', 1, '+1 718-104-3894', 2, '958752275276862382', '568 Columbia St Apartment 45, Brooklyn, NY 11231, United States', '1996-12-24', 0, 0, 'willietorr', '2015-10-13', 'wtorres', '2007-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS477306469006', '江子异', 0, '+44 (151) 470 2602', 0, '870231842935933147', 'No.36 Main building, 671 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-12-27', 0, 0, 'ziyi76', '2016-06-10', 'ziyijiang', '2015-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS578479210174', '李睿', 1, '+1 213-551-5416', 1, '679578769678170454', '348 S Broadway Suite 22, Los Angeles, CA 90015, United States', '1993-09-30', 0, 0, 'lir1989', '2006-11-01', 'rl74', '2017-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS965995474918', '石川優奈', 1, '+86 28-566-5346', 2, '254573048552312814', 'Room 14, 532 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-08-30', 0, 0, 'iy716', '2001-11-14', 'ishikaway', '2017-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS019768605407', '梁永權', 1, '+81 11-900-2497', 4, '506865523593918374', '日本札幌豊平区豊平三条十三丁目3番16号18階', '1992-04-24', 0, 0, 'wkleu8', '2014-05-02', 'wkleu', '2018-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS534580518108', '马震南', 0, '+44 7874 101452', 3, '967926201467601390', 'Flat 27, 681 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-09-10', 0, 0, 'ma10', '2002-04-04', 'mazhennan', '2016-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS895435566435', '麥梓晴', 0, '+86 167-8024-4723', 1, '533717732991685112', 'Room 13, No.929, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-09-26', 0, 0, 'tszchingmak1209', '2006-07-23', 'tcm1982', '2019-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS177222642208', 'Virginia Jones', 1, '+81 90-7663-5811', 3, '764913301819669842', '日本なごやし熱田区千年二丁目5番5号14号室', '1998-05-27', 0, 0, 'virjones', '2011-06-12', 'jovirginia', '2002-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS664152495222', '傅震南', 1, '+86 769-554-6438', 3, '184208894082199586', '中国东莞东泰五街539号2号楼', '1986-08-20', 0, 0, 'zhf1972', '2021-04-17', 'zhennanfu', '2006-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS601272072001', 'Dennis Parker', 1, '+44 5670 003139', 4, '758408378724964423', 'Unit 1, Oxford Eco Centre, 814 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-07-28', 0, 0, 'dennisparker', '2007-08-21', 'parker1959', '2003-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS059824649705', '余子异', 0, '+86 21-743-3262', 2, '028278562649268722', 'No.42 building, 424 Middle Huaihai Road, Huangpu District, Shanghai, China', '1985-06-04', 0, 0, 'yu8', '2002-01-07', 'yuzi1213', '2019-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS105249710389', '邵天樂', 1, '+81 90-7282-2748', 2, '145214242363180679', '日本なごやし北区清水三丁目19番12号41階', '1995-12-10', 0, 0, 'siutl', '2002-02-13', 'siutinlok', '2020-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS298643407083', '岡田美咲', 1, '+1 213-120-3033', 4, '378150504163803873', '862 Sky Way Apt 41, Los Angeles, CA 90043, United States', '1994-01-05', 0, 0, 'misaok', '2004-04-04', 'mokada108', '2017-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS240745684992', '姜杰倫', 1, '+81 11-955-2387', 4, '103287743769102166', '日本札幌厚別区上野幌一条二丁目1番7号47階', '1990-03-23', 0, 0, 'chang9', '2002-04-04', 'changchiehlun6', '2007-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS845546859914', 'Mark Harrison', 1, '+81 80-5162-2459', 2, '316323041155981387', '18-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1990-02-19', 0, 0, 'mh4', '2012-10-27', 'markharrison1965', '2018-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS056541762960', '曾仲賢', 1, '+86 21-6846-6646', 4, '919590107349814883', 'No.16 building, 893 Binchuan Rd, Minhang District, Shanghai, China', '1991-01-02', 0, 0, 'cytsang', '2012-06-16', 'tsch', '2021-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS493670027142', 'Alan Jackson', 1, '+44 7466 654772', 1, '614402083177107535', 'No.9 Main building, 210 Pollen Street, London, W1S 1NG, United Kingdom', '1993-04-14', 0, 0, 'jacksonal', '2015-04-20', 'alanjackson', '2012-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS555377241603', '孙璐', 0, '+86 20-104-5814', 0, '031977951214549370', '中国广州市白云区小坪东路57号华润大厦10室', '1998-02-19', 0, 0, 'sun1209', '2021-07-21', 'lus', '2000-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS726134114423', '龚嘉伦', 1, '+81 80-2309-9499', 4, '501411614308145193', '日本東京港区東新橋一丁目5番15号6号室', '1991-06-26', 0, 0, 'gong97', '2007-06-19', 'gongjialun', '2011-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS691897302375', '毛璐', 1, '+1 312-182-5858', 1, '719734450292655440', '518 Pedway Apartment 27, Chicago, IL 60601, United States', '1998-03-27', 0, 0, 'lu7', '2007-07-08', 'lu47', '2008-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS963038226051', 'Willie Freeman', 0, '+1 838-669-0918', 1, '005246162625191632', '585 State Street Suite 15, Albany, NY 12203, United States', '1990-05-17', 0, 0, 'freemanwillie', '2016-06-27', 'freeman1128', '2019-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS646741084737', '桜井架純', 0, '+81 90-0125-6865', 2, '999021041314638735', '日本東京渋谷区代々木二丁目3番2号27階', '1995-03-18', 0, 0, 'kasakurai7', '2010-03-06', 'saka', '2002-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS814557939060', 'Jose Adams', 0, '+44 (116) 599 7800', 2, '390641069674314293', 'No.45 Main building, 772 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-01-30', 0, 0, 'ajo726', '2009-07-30', 'adamsjose5', '2006-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS295578429997', 'Joel Munoz', 0, '+1 213-970-0080', 1, '573307569340981371', '27 Sky Way Apartment 7, Los Angeles, CA 90043, United States', '1989-04-04', 0, 0, 'jm7', '2000-09-22', 'joelmun', '2015-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS735403570955', '佘慧嫻', 1, '+81 52-138-1157', 3, '332207530951505636', 'Rm. 28, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1998-06-11', 0, 0, 'shewh', '2014-04-20', 'shehwaihan', '2005-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS941763761340', 'Josephine Ruiz', 1, '+81 74-374-4965', 3, '220217943011580834', 'Rm. 19, 1-7-20 Saidaiji Akodacho, Nara, Japan', '1988-12-17', 0, 0, 'ruizjosephine3', '2003-06-29', 'rujosephine', '2019-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS719737077555', '楊永權', 0, '+86 28-589-4618', 3, '833463417635699254', 'No.30 building, 198 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1986-07-01', 0, 0, 'wky7', '2013-06-27', 'yewingkuen', '2021-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS889526085672', '阿部陸', 1, '+81 70-2754-1309', 2, '449352944941291608', '3-kai, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-05-26', 0, 0, 'ariku', '2004-08-28', 'aberiku', '2014-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS338044287474', 'Henry Stephens', 1, '+86 21-1410-7937', 2, '691121146318448784', 'No.22 building, 85 Binchuan Rd, Minhang District, Shanghai, China', '1994-03-12', 0, 0, 'sh414', '2011-11-14', 'stephens9', '2005-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS037708975963', 'Nicholas Ortiz', 0, '+81 74-432-1029', 0, '384239995665337213', '22-kai, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1998-10-03', 0, 0, 'nicholasort', '2020-12-03', 'ortiz8', '2020-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS373474079017', '井上紗良', 1, '+1 838-216-7326', 1, '196990765406773745', '772 Lark Street Suite 8, Albany, NY 12210, United States', '1996-06-19', 0, 0, 'sara115', '2000-12-18', 'is1955', '2012-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS626600453674', '斉藤百花', 0, '+44 (121) 446 5864', 3, '335758868009474713', 'Flat 1, 859 New Street, Birmingham, B2 4DB, United Kingdom', '1986-05-11', 0, 0, 'momokasait', '2015-07-22', 'smomoka73', '2014-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS919481572710', '尹晓明', 0, '+86 132-0822-9824', 1, '504432643376653674', '中国中山紫马岭商圈中山五路486号华润大厦4室', '1985-04-15', 0, 0, 'yinxiaoming13', '2020-03-01', 'yix', '2002-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS899317316937', '袁震南', 1, '+81 3-9088-4893', 2, '925991692753709008', '日本東京中央区銀座三丁目12番14号39階', '1993-07-29', 0, 0, 'zhennyua8', '2001-10-20', 'zhenyua', '2005-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS474101520966', '林翼', 1, '+86 187-0398-5306', 2, '375727497614959143', 'Room 43, 206 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-05-28', 0, 0, 'hayashi1208', '2006-01-11', 'hayashits', '2003-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS483329021793', '千葉瑛太', 1, '+1 614-971-2308', 4, '018148255309498873', '318 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1996-08-21', 0, 0, 'eitachi4', '2003-05-20', 'eitach1026', '2003-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS419089038984', 'Luis Barnes', 0, '+86 175-6723-9059', 1, '887563283030795353', '中国中山天河区大信商圈大信南路874号38号楼', '1997-01-13', 0, 0, 'barneluis2', '2015-09-01', 'luisb', '2013-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS130369651712', 'Amber Scott', 1, '+81 66-112-5986', 3, '596240717438918809', '45F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-01', 0, 0, 'amberscott', '2012-11-23', 'ascott', '2007-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS381990463654', '河野和真', 1, '+81 52-405-0427', 3, '768481562525576914', '日本なごやし瑞穂区河岸町四丁目20番2号25階', '1991-03-05', 0, 0, 'kk8', '2012-02-18', 'kono719', '2004-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS870250594679', '遠藤百花', 1, '+44 (151) 155 1536', 2, '489627453847873822', 'Unit 40, Oxford Eco Centre, 918 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-06-08', 0, 0, 'endomo', '2006-02-10', 'momoke515', '2000-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS819354864575', '孫梓軒', 0, '+44 (116) 415 3530', 1, '901819143133502548', 'Flat 17, 40 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1986-02-16', 0, 0, 'thhsua', '2001-11-08', 'tszhinhs', '2011-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS077293760447', '姚國賢', 1, '+1 330-986-4109', 1, '109510457669132556', '497 Ridgewood Road Apartment 4, Akron, OH 44321, United States', '1992-09-23', 0, 0, 'kwokyinyeow9', '2006-11-20', 'kwokyinyeow', '2002-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS794898541980', '田中詩乃', 1, '+81 80-1245-7524', 1, '257053603743743145', '日本ならし西大寺赤田町一丁目7番5号8階', '1996-04-10', 0, 0, 'tshino2', '2016-06-09', 'tashino', '2010-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS115512813252', '野村桜', 0, '+1 838-885-5547', 2, '268184404385328515', '884 Central Avenue Apartment 42, Albany, NY 12205, United States', '1993-03-04', 0, 0, 'nomuras4', '2012-06-06', 'nsa', '2018-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS106146454761', '新井美月', 1, '+44 (151) 786 0053', 1, '728301100462211516', 'No.48 Main building, 796 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-06-30', 0, 0, 'mitsuki99', '2020-04-19', 'mitsa', '2012-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS396442021283', 'Kyle Mendez', 1, '+86 20-156-4859', 1, '503351198678608600', '32F, 712 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-03-19', 0, 0, 'mendez2007', '2019-11-20', 'kylemen2', '2007-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS085082661550', '蔡祖兒', 0, '+81 3-8627-5346', 1, '018649210860035548', '21-kai, 3-15-18 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-22', 0, 0, 'choichoyee', '2004-10-26', 'choichoyee', '2013-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS210232775804', '溫學友', 1, '+81 90-7237-1272', 1, '042556056204404948', '日本ならし西大寺赤田町一丁目7番9号8階', '1998-06-20', 0, 0, 'wanhy525', '2018-08-02', 'hokyauwan', '2001-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS563875011574', '阿部結翔', 0, '+86 769-1163-8894', 2, '673272571520595708', 'No.18 building, 420 Kengmei 15th Alley, Dongguan, China', '1990-06-01', 0, 0, 'ay708', '2018-09-17', 'yuitoabe', '2012-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS424114040193', '田心穎', 1, '+86 21-202-1334', 0, '646820791926212114', 'No.19 building, 788 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-05-06', 0, 0, 'tin92', '2000-03-12', 'sumwing711', '2015-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS998171163972', 'Diana Guzman', 0, '+44 7268 671056', 2, '590379535620294696', 'No.41 Main building, 774 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-10-01', 0, 0, 'dianguzman77', '2011-07-06', 'diag', '2016-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS265305803626', 'Cynthia King', 0, '+1 614-131-5424', 2, '878496133454212733', '965 Diplomacy Drive Apartment 34, Columbus, GA 43228, United States', '1987-08-13', 0, 0, 'kingc88', '2003-10-07', 'kingcynth', '2009-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS984625293663', '袁曉彤', 1, '+86 10-4645-5117', 4, '288884218112208537', '中国北京市东城区东单王府井东街201号39室', '1998-11-19', 0, 0, 'htyuen', '2007-04-24', 'yuehiutung128', '2004-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS001344013384', 'Jesus Kim', 1, '+86 10-2012-8089', 4, '057862369052651933', '43F, 650 028 County Rd, Yanqing District, Beijing, China', '1989-06-22', 0, 0, 'kj2012', '2003-08-11', 'jesuskim10', '2017-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS387427209546', '斉藤葵', 1, '+44 7971 148378', 3, '016311995515853103', 'No.41 Main building, 234 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-02-20', 0, 0, 'aos', '2005-09-29', 'asa', '2018-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS068565979060', '曹嘉伦', 1, '+86 10-743-2460', 2, '312908328929444324', 'Room 42, CR Building, 760 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-04-15', 0, 0, 'jialunca7', '2003-03-11', 'caojialun', '2018-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS423282915557', '向梓晴', 1, '+86 755-5773-4405', 4, '674541338361292322', '中国深圳罗湖区田贝一路878号华润大厦23室', '1995-04-01', 0, 0, 'tch', '2006-06-20', 'heungtszching', '2007-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS140981180835', 'Brian Rodriguez', 0, '+86 21-5728-5463', 1, '580630337936332949', '中国上海市闵行区宾川路891号39栋', '1996-06-23', 0, 0, 'brianrod1', '2020-07-16', 'rodriguezbrian', '2020-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS315090552987', '藤原絢斗', 1, '+1 614-153-5733', 3, '007984223194721448', '936 Tremont Road Suite 10, Columbus, GA 43212, United States', '1986-09-24', 0, 0, 'fujiwaraaya705', '2001-02-08', 'afuji819', '2010-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS736691581540', '严晓明', 0, '+1 838-720-5606', 1, '705381271521699511', '832 Broadway 3rd Floor, Albany, NY 12207, United States', '1990-09-24', 0, 0, 'yxiao603', '2019-02-15', 'yanxiaoming', '2000-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS574161206131', 'Chris Sanders', 0, '+86 20-1808-2155', 0, '027966256267520336', 'Room 44, 437 Tianhe Road, Tianhe District, Guangzhou, China', '1993-06-07', 0, 0, 'chsan', '2010-06-27', 'sandec', '2021-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS534115736597', 'Anna Webb', 1, '+44 7398 010074', 0, '766991360759658689', 'Unit 3, Oxford Eco Centre, 609 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-04-19', 0, 0, 'wanna', '2017-01-20', 'webbanna', '2015-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS821050874211', 'Amy Hawkins', 0, '+44 (1223) 51 2404', 3, '471283057491568468', 'Block 35, 54 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-12-02', 0, 0, 'hamy', '2011-06-22', 'amhawkins66', '2000-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS956636073763', '程安琪', 1, '+44 (1865) 48 5475', 3, '445937778596755442', 'Unit 26, Oxford Eco Centre, 877 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1985-04-09', 0, 0, 'anqic', '2002-11-07', 'cheng711', '2020-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS528236574872', 'Pamela Lopez', 1, '+44 (1223) 22 0549', 1, '187942762766018349', 'Block 7, 858 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-08-11', 0, 0, 'lopezpam9', '2020-11-16', 'lop', '2013-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS076233037432', '毛惠妹', 0, '+44 5948 289808', 0, '920585608804649211', 'Flat 34, 778 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-02-16', 0, 0, 'mohm', '2010-08-09', 'huimei56', '2012-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS895597562509', '唐云熙', 0, '+86 20-5021-9877', 1, '994147248145925941', 'No.46 building, 745 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-06-22', 0, 0, 'tangyunxi', '2020-11-22', 'yunxitang127', '2017-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS247965682063', '龚詩涵', 0, '+86 10-259-4968', 2, '153683285594286739', 'Room 23, 221 Yueliu Rd, Fangshan District, Beijing, China', '1992-01-27', 0, 0, 'gs4', '2001-11-17', 'gonshihan', '2007-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS542377550248', '钟杰宏', 1, '+81 11-112-8137', 2, '393463999920839130', '29F, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-12-12', 0, 0, 'zhjieho7', '2018-10-29', 'zhonjieho1971', '2008-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS541449773343', 'Michelle Carter', 1, '+81 11-041-9716', 4, '963740791491888399', '日本札幌白石区菊水三条五丁目2番3号46階', '1995-09-14', 0, 0, 'cartemic', '2008-03-07', 'mcarter816', '2012-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS123467435677', '小島百恵', 0, '+86 197-3904-9333', 3, '164061185685892647', '中国成都市成华区二仙桥东三路122号32号楼', '1999-02-08', 0, 0, 'momok208', '2000-05-20', 'momkojim', '2011-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS504234386972', '安藤彩乃', 1, '+86 760-0671-5126', 3, '818007829199702460', 'No.33 building, 118 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-01-27', 0, 0, 'andayano1993', '2001-07-26', 'ando10', '2020-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS177116431049', '赵云熙', 1, '+86 191-9251-7495', 0, '878097152536206332', '19F, 197 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-12-13', 0, 0, 'yzhao', '2005-12-16', 'yuzha329', '2021-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS099291349136', '鄺俊宇', 0, '+1 838-847-7925', 0, '451363779709085684', '363 Lark Street Suite 32, Albany, NY 12210, United States', '1994-10-11', 0, 0, 'kwong1976', '2007-12-28', 'kwoncy', '2001-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS060625258005', '黎詩涵', 0, '+81 3-3814-1418', 3, '220632326950428146', '日本東京千代田区丸の内一丁目6番11号40号室', '1996-11-14', 0, 0, 'shihanli108', '2018-09-29', 'lishiha', '2018-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS291285937069', '徐嘉欣', 1, '+81 80-2770-3291', 3, '641494543572409491', '39F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-12-13', 0, 0, 'tsuikaryan', '2010-05-27', 'kytsui4', '2009-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS607193615593', '韩宇宁', 0, '+86 133-5071-5853', 4, '624878427528648865', '中国北京市房山区岳琉路108号44栋', '1986-10-24', 0, 0, 'hanyuning129', '2004-12-08', 'hanyunin', '2001-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS454880756485', 'Carol Marshall', 1, '+81 11-493-0960', 3, '006385214731879558', '日本札幌清田区真栄四条五丁目19番10号15号室', '1991-03-23', 0, 0, 'marshall1979', '2016-03-26', 'marshcarol9', '2013-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS998920467805', '鈴木優奈', 0, '+81 52-289-9683', 1, '821017672177519043', '日本なごやし熱田区千年二丁目5番1号25号室', '1985-12-02', 0, 0, 'suzukiyu', '2007-04-25', 'suzuki4', '2018-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS557960078408', 'Harold Barnes', 0, '+81 52-483-8814', 3, '447610856384863974', '日本なごやし北区楠味鋺三丁目80番1号10階', '1992-12-01', 0, 0, 'haroldbarnes', '2006-06-02', 'bharold8', '2010-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS552395171365', 'Annie Hughes', 0, '+81 90-9071-1266', 1, '168123843490271293', '日本東京品川区東五反田五丁目2番13号28号室', '1995-05-11', 0, 0, 'annie2020', '2016-08-20', 'anniehughes', '2016-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS772640909309', '張家文', 0, '+81 66-814-0734', 1, '019429163690786293', '日本おおさかし西成区出城一丁目1番17号50号室', '1998-03-26', 0, 0, 'kmche', '2018-02-24', 'kmcheung', '2011-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS030932900997', 'Brenda Mills', 0, '+86 10-1445-6223', 3, '049349171128363189', '中国北京市延庆区028县道903号9号楼', '1992-07-29', 0, 0, 'brmill', '2007-07-03', 'millsbrenda', '2011-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS757283907519', 'Mildred Evans', 0, '+44 (161) 668 5329', 3, '647758030432862219', 'No.13 Main building, 446 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-14', 0, 0, 'mildred211', '2011-11-23', 'evam', '2015-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS632334014398', '呂青雲', 1, '+81 66-850-4472', 2, '874786863649841786', 'Rm. 6, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-11-20', 0, 0, 'cwlui06', '2021-08-14', 'luicw202', '2002-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS884035848090', 'Kathryn Coleman', 0, '+44 5843 392836', 2, '423851443790380384', 'Unit 17, Oxford Eco Centre, 785 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-06-26', 0, 0, 'kathryn4', '2020-03-27', 'colemankath17', '2005-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS180635679581', '江宇宁', 1, '+1 614-807-6736', 2, '148752018500809552', '33 East Cooke Road Apartment 23, Columbus, GA 43214, United States', '1986-07-02', 0, 0, 'jyun', '2005-05-23', 'yjiang', '2022-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS909456359637', '邓宇宁', 1, '+44 (20) 7795 4899', 4, '081694749964359870', 'Flat 6, 886 Regent Street, London, W1B 2LX, United Kingdom', '1992-11-21', 0, 0, 'yunind', '2009-03-30', 'yundeng', '2006-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS195214394264', 'Anita Moore', 0, '+81 74-161-4563', 1, '624547911351374194', '日本ならし西大寺赤田町一丁目7番4号28階', '1994-07-19', 0, 0, 'moanita228', '2002-04-16', 'moore5', '2019-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS122635587200', 'Brandon Washington', 0, '+1 718-568-4951', 0, '800855491118057366', '639 Nostrand Ave Apt 24, Brooklyn, NY 11216, United States', '1989-12-03', 0, 0, 'bwashi', '2007-08-08', 'brandonw', '2003-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS920554918217', '邵嘉伦', 1, '+44 7073 473493', 2, '279152348140584464', 'Block 17, 645 Regent Street, London, W1B 2LX, United Kingdom', '1990-10-26', 0, 0, 'shaojialun', '2000-12-05', 'shao7', '2015-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS400610788593', '野村樹', 0, '+1 718-321-1625', 2, '140253887344578098', '275 Flatbush Ave Apartment 41, Brooklyn, NY 11225, United States', '1996-05-17', 0, 0, 'itsukinomura', '2010-02-11', 'nitsuki', '2010-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS594467770726', '叶秀英', 0, '+86 140-6250-6356', 3, '786267769559123903', '中国深圳龙岗区布吉镇西环路547号3楼', '1994-05-24', 0, 0, 'xiuying224', '2012-03-22', 'xiuying16', '2000-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS528329839727', '藤田拓哉', 1, '+81 80-0614-4759', 1, '213312883300663330', '日本東京品川区東五反田五丁目2番20号26階', '1986-09-15', 0, 0, 'takuyafu77', '2008-01-07', 'takuyaf109', '2011-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS948439257204', 'Rhonda Flores', 0, '+86 198-4369-0542', 2, '857165425006716166', '中国中山京华商圈华夏街866号28室', '1995-11-28', 0, 0, 'rhondaflor2000', '2014-04-09', 'flores82', '2011-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS979829817244', '鐘慧嫻', 1, '+86 28-8879-2544', 4, '980869092787725033', '中国成都市锦江区红星路三段972号华润大厦26室', '1990-03-13', 0, 0, 'wachung', '2002-06-09', 'waihanc831', '2013-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS864108491188', 'Allen Stewart', 1, '+81 52-994-0788', 2, '333877854542525945', 'Rm. 4, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-02-24', 0, 0, 'sallen501', '2014-04-25', 'allen9', '2008-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS016992891085', '柴田涼太', 0, '+86 191-4485-8401', 1, '788704310163521867', '中国东莞东泰五街185号45室', '1989-07-03', 0, 0, 'shibataryota', '2000-05-01', 'ryotshibata', '2012-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS452745162368', '藤田玲奈', 1, '+81 90-9634-6221', 1, '767080554577014196', '日本ならし大和郡山市本庄町一丁目1番7号20階', '1989-06-25', 0, 0, 'rena4', '2019-08-15', 'fujitarena', '2000-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS132715492744', 'Mike Mendoza', 1, '+44 7113 242054', 4, '729371789088539144', 'Unit 39, Oxford Eco Centre, 562 Regent Street, London, W1B 2LX, United Kingdom', '1995-09-30', 0, 0, 'mikem', '2014-09-14', 'mendoza1211', '2015-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS678647084901', '麥思妤', 0, '+44 7134 137050', 3, '872744566754575541', 'Block 10, 338 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-03-24', 0, 0, 'szeyum', '2012-12-19', 'symak06', '2015-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS502231696207', '狄國明', 0, '+86 156-1576-7029', 3, '743657409274476088', '中国北京市西城区复兴门内大街315号5号楼', '1985-05-28', 0, 0, 'ti2', '2016-11-28', 'tikm10', '2002-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS038809329312', '森田架純', 0, '+44 5918 064573', 2, '081146689712060320', 'Block 36, 318 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-08-08', 0, 0, 'kmorita', '2011-06-07', 'kasumimo', '2005-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS607941836002', '武子异', 1, '+86 162-2797-1459', 1, '311088743998647879', '中国上海市浦东新区橄榄路921号18室', '1990-06-11', 0, 0, 'wuz9', '2017-10-19', 'wuzi', '2002-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS359594326172', '青木大輔', 0, '+1 718-829-2439', 0, '289931701887928763', '806 Nostrand Ave Apt 32, Brooklyn, NY 11216, United States', '1985-01-03', 0, 0, 'aodaisuke', '2014-12-21', 'aoki9', '2000-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS466096323947', '陆安琪', 1, '+86 10-4358-9310', 0, '879215792680718364', 'No.19 building, 421 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-08-07', 0, 0, 'luanqi', '2010-03-25', 'anqilu', '2006-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS557080082801', '吕杰宏', 0, '+81 90-9311-6179', 2, '613601592432712101', '日本札幌清田区真栄四条五丁目19番7号24階', '1986-01-25', 0, 0, 'ljiehong', '2007-07-21', 'jiehong2', '2002-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS911866413870', 'Julie Murray', 0, '+86 181-4808-8024', 3, '754976078949238513', '中国北京市西城区复兴门内大街440号49号楼', '1985-08-06', 0, 0, 'julie2003', '2003-11-29', 'murray20', '2017-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS180059598517', '傅慧琳', 1, '+1 212-537-3660', 3, '348679810305210624', '299 Fifth Avenue Apt 35, New York, NY 10017, United States', '1986-10-08', 0, 0, 'waifu5', '2011-02-02', 'wlfu', '2020-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS580400876959', '廖頴思', 1, '+1 212-756-5782', 0, '273382887606295479', '614 Canal Street Apartment 45, New York, NY 10013, United States', '1990-02-13', 0, 0, 'liaowingsze', '2021-11-29', 'liaows', '2003-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS136973631952', 'Kyle Moore', 0, '+81 11-660-7240', 2, '582709801800496459', '日本札幌清田区真栄四条五丁目19番15号3号室', '1992-02-25', 0, 0, 'km203', '2000-04-01', 'mook1030', '2004-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS177539463747', '馮小慧', 0, '+44 (20) 3071 6948', 1, '835795381627208897', 'Flat 23, 351 Maddox Street, London, W1S 1PU, United Kingdom', '1988-07-20', 0, 0, 'fungsiuwai', '2018-10-10', 'fung1109', '2015-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS826381780916', '蒋杰宏', 0, '+86 147-2199-3948', 1, '210252180004149004', '中国广州市海珠区江南西路134号13号楼', '1995-08-17', 0, 0, 'jiehongjia', '2014-01-19', 'jijiang13', '2018-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS971260132678', '伍德華', 0, '+44 5454 298335', 3, '499745031586831421', 'No.2 Main building, 917 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-10-07', 0, 0, 'twng6', '2016-03-21', 'ngtakwah82', '2008-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS374841176697', '元慧嫻', 0, '+1 838-249-1834', 2, '601281303828236575', '159 State Street Suite 27, Albany, NY 12203, United States', '1995-12-10', 0, 0, 'waihan1978', '2009-10-17', 'whyu', '2016-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS315654444284', 'Marie Cole', 1, '+81 3-4037-6697', 0, '552125891857548530', '日本東京千代田区丸の内一丁目6番6号26階', '1986-02-13', 0, 0, 'colema', '2011-02-03', 'cole6', '2021-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS998516674370', 'Sandra Spencer', 0, '+86 28-8688-0767', 3, '118839958993248033', '中国成都市成华区双庆路948号48栋', '1988-11-24', 0, 0, 'spencers', '2014-09-06', 'spencersan', '2007-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS714970781385', 'Aaron Simpson', 1, '+86 10-091-5089', 0, '779630333670315253', '中国北京市東城区東直門內大街229号36室', '1995-04-07', 0, 0, 'aarosimpson405', '2021-02-18', 'saaron9', '2012-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS845500676468', '馮心穎', 0, '+1 838-038-1578', 1, '665556223688989839', '326 Lark Street Apartment 37, Albany, NY 12210, United States', '1992-09-02', 0, 0, 'swfung428', '2014-09-02', 'swfung', '2012-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS016754950608', '汪云熙', 1, '+81 11-038-6874', 3, '976764571980917836', '49F, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-09-13', 0, 0, 'wangyunxi417', '2003-09-07', 'yunxiwang', '2018-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS300035614460', '千葉瑛太', 0, '+86 769-7924-9159', 2, '925834584759037591', 'Room 48, CR Building, 779 Shanhu Rd, Dongguan, China', '1996-09-29', 0, 0, 'eita6', '2015-09-23', 'echib5', '2006-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS190961063704', '岡田結翔', 0, '+44 (151) 019 6424', 1, '293406645683189430', 'Block 13, 466 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-02-11', 0, 0, 'yuito715', '2017-01-19', 'yuitookad', '2000-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS601985814532', '姚嘉伦', 1, '+86 28-877-7940', 3, '871723647730141478', '中国成都市锦江区红星路三段736号24号楼', '1997-11-16', 0, 0, 'yjialun', '2008-02-14', 'jyao311', '2010-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS820004710609', '邹子异', 1, '+86 156-9072-3682', 0, '796341939277808310', '中国上海市浦东新区健祥路4号6楼', '1997-04-19', 0, 0, 'ziyi807', '2021-09-20', 'zouziyi', '2016-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS010645857337', '任秀英', 0, '+86 769-309-7056', 3, '649946991171352870', '中国东莞珊瑚路138号39栋', '1993-04-04', 0, 0, 'rxiuying', '2021-11-26', 'ren86', '2007-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS176427852875', 'Victoria Butler', 0, '+1 614-921-2475', 2, '200813448564037381', '817 East Alley Apt 39, Columbus, GA 43201, United States', '1987-01-27', 0, 0, 'butlevictoria', '2019-01-28', 'victoriabutler204', '2012-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS610928875733', '蘇裕玲', 0, '+44 5320 685683', 3, '947247106332104695', 'Flat 31, 191 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-10-09', 0, 0, 'syl5', '2004-06-15', 'syl', '2005-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS554481706752', '長谷川健太', 1, '+86 28-8074-9609', 4, '455600897067889496', '中国成都市成华区双庆路948号19室', '1988-06-18', 0, 0, 'hasegawa2', '2017-10-13', 'kentahaseg94', '2015-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS937344654568', '馬麗欣', 1, '+81 66-271-3275', 2, '587617005105194813', 'Rm. 2, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1991-03-06', 0, 0, 'maly', '2008-12-08', 'laiyan9', '2016-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS773505909440', '山口美羽', 0, '+86 755-0833-6574', 3, '165011846812132033', '中国深圳罗湖区蔡屋围深南东路79号华润大厦30室', '1997-11-26', 0, 0, 'miyamaguchi1960', '2019-02-01', 'yamaguchi86', '2020-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS678136889997', '鄭梓晴', 0, '+81 74-556-7841', 3, '393731680049588879', 'Rm. 17, 3-9-10 Gakuenminami, Nara, Japan', '1997-10-31', 0, 0, 'tszchingc91', '2003-06-21', 'cheng10', '2019-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS266370122702', '呂家明', 0, '+81 70-1602-6113', 2, '707208765133788919', '日本東京渋谷区代々木二丁目3番20号7階', '1988-11-17', 0, 0, 'lui10', '2013-02-13', 'luikm', '2020-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS714902134738', '毛岚', 0, '+44 (151) 429 2409', 2, '248925368246269867', 'Block 36, 511 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-04-23', 0, 0, 'lma', '2005-08-16', 'maolan', '2004-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS851905064779', '阿部一輝', 0, '+81 74-706-6022', 2, '688665194893921810', '27F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1988-03-12', 0, 0, 'ikkiabe', '2008-10-18', 'ikkabe', '2008-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS339695744240', '汤云熙', 1, '+86 28-3891-5189', 4, '493412641579388448', 'No.49 building, 770 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-07-18', 0, 0, 'yunxitang1006', '2000-08-17', 'yutang', '2006-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS713489246041', 'Cheryl Meyer', 1, '+81 3-8910-8051', 0, '649529232475166817', '日本東京渋谷区代々木二丁目3番5号33階', '1986-02-23', 0, 0, 'meyer1120', '2020-07-03', 'meyerc623', '2001-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS464969726947', '卢宇宁', 1, '+44 7640 321855', 1, '276134921903335948', 'No.50 Main building, 84 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-09-24', 0, 0, 'yuning420', '2005-04-20', 'luyun12', '2012-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS227170429684', '伊藤拓哉', 1, '+81 52-394-8768', 2, '580035159043208967', '日本なごやし北区清水三丁目19番15号18階', '1998-12-11', 0, 0, 'itot56', '2003-10-24', 'itotaku730', '2008-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS691493115516', '曹惠妹', 1, '+44 (151) 955 0363', 3, '479878275631455620', 'Flat 45, 691 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-06-24', 0, 0, 'chohm1981', '2004-04-01', 'huimeicho', '2007-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS795290128812', '吳天榮', 1, '+86 141-0292-5724', 0, '218383309893379968', '中国广州市越秀区中山二路974号华润大厦1室', '1996-10-09', 0, 0, 'ng917', '2014-08-06', 'ngtinwing6', '2016-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS017740215589', '江嘉伦', 1, '+44 (116) 338 1442', 3, '992239524094505000', 'Flat 24, 354 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-12-04', 0, 0, 'jiangj503', '2010-12-15', 'jialunj', '2007-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS340129518867', '房天榮', 1, '+44 (1223) 91 5012', 1, '187075439028142652', 'No.27 Main building, 938 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1989-05-10', 0, 0, 'fongtinwing', '2012-05-25', 'fongtinwi1214', '2013-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS109853089324', '郭玲玲', 1, '+81 52-887-9261', 2, '773849442462738693', '日本なごやし瑞穂区河岸町四丁目20番3号3階', '1998-09-13', 0, 0, 'kwokll7', '2008-11-15', 'kwok4', '2017-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS921223757300', 'Esther Hernandez', 1, '+86 769-805-0089', 3, '669109159649780004', '中国东莞东泰五街987号9号楼', '1992-09-02', 0, 0, 'hernaes02', '2000-03-09', 'hernandezesther', '2017-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS920565726312', 'Lori Wilson', 0, '+86 142-3921-4517', 2, '176024087673286580', 'No.24 building, 910 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-09-18', 0, 0, 'wilsolor', '2021-01-16', 'wilson2', '2008-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS782294698665', '坂本愛梨', 1, '+86 10-7203-9392', 3, '607259056182819181', 'No.21 building, 542 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-12-15', 0, 0, 'sairi', '2019-04-05', 'sakamotoai', '2000-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS483175744816', '雷杰宏', 1, '+81 66-342-2642', 3, '465573327634914621', '21-kai, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1991-03-12', 0, 0, 'jlei', '2015-11-20', 'lei4', '2007-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS224607986825', '長谷川愛梨', 1, '+1 330-929-0872', 3, '192291079624449047', '54 Collier Road Apt 13, Akron, OH 44320, United States', '1991-04-07', 0, 0, 'hairi8', '2020-11-22', 'hairi2', '2019-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS906342248098', 'Melvin Phillips', 0, '+44 (161) 488 7166', 2, '250966336360534388', 'Unit 24, Oxford Eco Centre, 480 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-02-22', 0, 0, 'phillipsmelvin', '2019-01-18', 'phillips11', '2015-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS384581280343', '何睿', 1, '+81 66-646-1706', 2, '132198823926261441', '28-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1988-09-28', 0, 0, 'rhe81', '2000-04-28', 'he10', '2021-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS844033866617', 'Gregory Hill', 1, '+44 (161) 795 8861', 2, '176914191856832241', 'Block 47, 261 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-12-13', 0, 0, 'hill16', '2018-07-13', 'hgrego', '2019-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS511917544750', 'Annie Weaver', 0, '+86 21-650-6647', 2, '261900198770824548', 'Room 22, 630 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-01-22', 0, 0, 'weaverann4', '2020-04-01', 'anniewe', '2018-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS707997968340', '今井瑛太', 1, '+86 769-041-1276', 1, '047905552882334168', '22F, 941 Kengmei 15th Alley, Dongguan, China', '1992-12-14', 0, 0, 'imaieita721', '2007-10-10', 'imaieit', '2001-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS837381656713', '池田聖子', 0, '+86 28-1512-5680', 4, '114854170123830967', '中国成都市成华区玉双路6号674号3号楼', '1990-10-22', 0, 0, 'seiko02', '2002-08-05', 'ikedaseiko', '2013-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS730707559591', '坂本絢斗', 1, '+81 90-5366-4018', 2, '273422470643771647', '日本札幌豊平区豊平三条十三丁目3番6号21階', '1986-04-03', 0, 0, 'saayato', '2021-03-11', 'ayatosa1009', '2019-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS369689654190', 'Nathan Garcia', 1, '+86 760-160-1973', 3, '031030412832917528', '中国中山紫马岭商圈中山五路177号7栋', '1989-04-08', 0, 0, 'garcia9', '2003-07-08', 'nag', '2011-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS404062345306', '房國榮', 0, '+86 760-0159-8766', 1, '338844862186977516', '中国中山京华商圈华夏街424号48室', '1993-06-26', 0, 0, 'kwfon', '2013-12-05', 'fongkw', '2021-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS457121649260', '岩崎架純', 0, '+44 (161) 000 1667', 3, '731986447865655518', 'Unit 38, Oxford Eco Centre, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-03-07', 0, 0, 'iwasakikasumi911', '2012-01-10', 'kiwasaki', '2001-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS779017312365', '高嘉伦', 0, '+81 90-1666-7684', 3, '366583924459723180', '日本札幌厚別区上野幌一条二丁目1番20号46号室', '1988-02-29', 0, 0, 'jialugao8', '2012-11-09', 'gaoj7', '2020-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS221550041172', 'Josephine Barnes', 0, '+81 52-891-4760', 2, '542360023204345020', '9-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-03-15', 0, 0, 'barnesjosephine', '2001-09-16', 'jbarnes', '2005-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS764700622817', 'Phillip Perry', 0, '+86 184-7530-1717', 1, '586479493501777606', 'No.29 building, 898 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-10-13', 0, 0, 'perrph', '2014-10-01', 'phillipperr302', '2003-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS482597733164', '黎發', 0, '+81 80-9720-5093', 4, '266449927904533863', '10-kai, 3-9-2 Gakuenminami, Nara, Japan', '1985-03-30', 0, 0, 'laif415', '2022-02-24', 'laf2', '2004-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS593687099927', '佐々木美咲', 0, '+86 760-2690-9403', 2, '829594995556793830', 'Room 4, 881 Lefeng 6th Rd, Zhongshan, China', '1985-01-05', 0, 0, 'msasak1949', '2010-11-27', 'misasaki722', '2020-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS999861868226', '杜岚', 0, '+81 52-243-7131', 2, '153332288878052906', '日本なごやし熱田区千年二丁目5番6号35階', '1991-05-28', 0, 0, 'dulan', '2010-12-13', 'lan1119', '2010-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS930267399366', '松本花', 0, '+81 80-7689-2067', 0, '048380737760628087', '1-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-03-26', 0, 0, 'hanmatsumoto', '2002-10-23', 'matsumoto729', '2018-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS548010325561', '上野大地', 1, '+86 10-3836-6627', 1, '410949162501223172', '8F, 948 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-06-24', 0, 0, 'dueno', '2005-06-16', 'daichiuen', '2016-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS256746489672', '鄺世榮', 1, '+44 7626 920080', 3, '272376070035753626', 'Unit 37, Oxford Eco Centre, 260 Hanover Street, London, W1S 1YD, United Kingdom', '1989-03-15', 0, 0, 'kwonsw9', '2004-03-26', 'saiwingkwong12', '2009-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS308903937295', '韦杰宏', 1, '+86 170-3487-8505', 0, '218819527093723752', '中国中山天河区大信商圈大信南路372号华润大厦44室', '1990-07-18', 0, 0, 'jiwe4', '2005-05-17', 'jiehong1979', '2008-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS411099573588', '佘曉彤', 0, '+86 150-7854-5945', 0, '361615776117536575', '中国东莞环区南街二巷985号华润大厦23室', '1986-11-09', 0, 0, 'hiutungsheh1975', '2006-02-25', 'hts', '2003-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS797576572299', '廖子异', 0, '+86 10-989-0225', 4, '987033040394267516', '中国北京市朝阳区三里屯路951号41号楼', '1992-10-23', 0, 0, 'liaoziyi626', '2012-07-28', 'ziyili', '2019-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS178262815731', '邵慧嫻', 0, '+86 28-4336-5544', 3, '327824845055116901', '17F, No. 256, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-10-10', 0, 0, 'siu2007', '2019-02-08', 'whsiu428', '2001-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS977277867807', '傅淑怡', 1, '+81 80-0799-4453', 1, '054274971255485358', '5-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-03-29', 0, 0, 'fsy207', '2018-10-05', 'fu41', '2018-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS452833678779', '韓天榮', 0, '+86 755-287-8345', 3, '560710117920351444', '中国深圳龙岗区布吉镇西环路853号12楼', '1991-06-01', 0, 0, 'tinwing2', '2021-12-27', 'tinwing308', '2004-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS936448647904', '文詠詩', 1, '+1 718-606-6281', 2, '270784676561303545', '36 Bergen St Apt 10, Brooklyn, NY 11217, United States', '1998-08-31', 0, 0, 'wsman', '2018-09-13', 'wingsze311', '2001-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS286526453024', '雷永權', 1, '+86 20-486-5456', 1, '674714625667846498', '中国广州市天河区天河路22号25栋', '1988-09-03', 0, 0, 'wingkuenloui4', '2020-09-30', 'lowingkuen5', '2006-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS417663908925', '尹梓軒', 1, '+86 182-5577-1909', 3, '904856017750637324', 'Room 23, CR Building, 328 028 County Rd, Yanqing District, Beijing, China', '1988-01-24', 0, 0, 'thy', '2008-01-01', 'tszhinyin', '2000-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS133456150746', '汪岚', 1, '+86 760-541-4113', 4, '133420705891097206', 'No.14 building, 738 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-11-24', 0, 0, 'lanwa65', '2022-03-05', 'wanlan', '2007-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS380837346122', 'Lawrence Allen', 0, '+44 5456 022201', 3, '315740854188275189', 'Unit 24, Oxford Eco Centre, 480 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-09-24', 0, 0, 'lawrenceallen', '2008-02-29', 'lawrence326', '2011-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS827998956826', '姚詠詩', 1, '+86 168-2287-1103', 3, '394436324536689631', '中国成都市成华区玉双路6号581号42楼', '1990-07-22', 0, 0, 'wsy', '2003-05-02', 'yws', '2000-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS457298459926', '高家強', 1, '+44 5511 766485', 3, '436587038186256274', 'Block 27, 141 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-11-27', 0, 0, 'kakeungkao', '2000-06-28', 'kakeung326', '2007-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS700391092892', 'Ethel Patel', 0, '+86 755-3461-1311', 2, '216667416826090849', 'No.21 building, 721 Shennan Ave, Futian District, Shenzhen, China', '1997-01-31', 0, 0, 'ethelp', '2013-04-20', 'ethelpatel', '2018-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS189994835326', '苏安琪', 1, '+81 52-858-9105', 3, '158557102257842822', 'Rm. 39, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1995-07-21', 0, 0, 'anqis', '2016-10-06', 'anqis6', '2019-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS755170796363', '傅志遠', 1, '+1 213-078-8756', 1, '126120957627113456', '297 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-03-28', 0, 0, 'chiyfu414', '2003-12-12', 'fu3', '2004-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS152830602720', '余子韬', 0, '+86 20-8336-0967', 0, '221716509315537160', '中国广州市白云区小坪东路388号17室', '1997-07-07', 0, 0, 'zityu', '2015-05-16', 'zitaoyu', '2006-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS662362322895', '袁秀文', 1, '+81 80-4913-6987', 2, '232498541809685929', '日本東京港区東新橋一丁目5番16号31階', '1996-09-03', 0, 0, 'ysauman87', '2001-07-07', 'sauman1004', '2012-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS255945832277', '廖梓晴', 0, '+44 5979 512810', 0, '380554382062630675', 'No.12 Main building, 393 New Street, Birmingham, B2 4DB, United Kingdom', '1993-04-30', 0, 0, 'tcl', '2005-07-13', 'liatszching', '2002-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS361847716228', '任志遠', 1, '+86 178-1523-0931', 3, '279802036049583265', '中国上海市浦东新区健祥路51号46号楼', '1991-06-23', 0, 0, 'chiyuenyam10', '2007-01-31', 'cyyam', '2005-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS339406966964', '田詠詩', 1, '+44 (151) 593 6476', 4, '451593532623730160', 'No.44 Main building, 318 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1990-05-04', 0, 0, 'wingszetin905', '2001-08-20', 'tinws8', '2013-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS198486040061', 'Phyllis Romero', 1, '+81 80-3970-3727', 1, '126525883169633219', '日本札幌白石区菊水三条五丁目4番8号27階', '1992-05-30', 0, 0, 'phyllis5', '2009-03-03', 'romerop50', '2004-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS613172648308', '木村凛', 0, '+44 (161) 955 3136', 4, '127957991907135380', 'Flat 47, 246 Portland St, Manchester, M1 3LA, United Kingdom', '1994-08-20', 0, 0, 'kimura6', '2004-04-07', 'rin7', '2007-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS493391850778', '劉永發', 0, '+44 (1865) 35 4259', 4, '740335830584807214', 'Flat 48, 666 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-01-01', 0, 0, 'lwf', '2010-07-18', 'wingfatla', '2001-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS998600677023', '樂曉彤', 1, '+81 3-7107-7637', 1, '051914468291191061', '1-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-10-04', 0, 0, 'lok7', '2003-10-03', 'hiutlok9', '2003-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS450314588196', '邱俊宇', 1, '+44 (20) 0688 4795', 2, '672303017294709582', 'Flat 13, 964 Regent Street, London, W1B 2LX, United Kingdom', '1994-03-23', 0, 0, 'cyya9', '2009-04-16', 'chunyuyau2', '2012-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS183881465398', '坂本美月', 0, '+86 28-3815-8090', 2, '617088283561635480', 'No.20 building, No.671, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-12-22', 0, 0, 'mitsukisaka1014', '2017-06-15', 'smi8', '2005-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS294227670441', '狄志明', 0, '+86 167-4465-9971', 3, '350642376141637552', '中国深圳福田区景田东一街615号25栋', '1989-11-01', 0, 0, 'ticm', '2016-04-23', 'ticm56', '2007-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS599401073677', '野口光', 1, '+81 80-5268-0592', 4, '865810777773851174', '29-kai, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1986-05-07', 0, 0, 'noh', '2021-05-24', 'noguchih42', '2021-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS316540509523', 'Robin Nelson', 1, '+81 3-7697-7712', 3, '101108749296033814', '日本東京千代田区丸の内一丁目6番5号13階', '1996-05-31', 0, 0, 'nrobin', '2001-10-07', 'rnels', '2021-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS540634501175', '黎宇宁', 1, '+44 (161) 483 7216', 2, '256134058356495270', 'No.25 Main building, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1998-04-21', 0, 0, 'liy1945', '2002-06-04', 'liyuning10', '2006-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS969554203386', 'Theresa Wilson', 0, '+81 80-2766-3370', 2, '795839993921055931', '33-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-28', 0, 0, 'theresawils', '2008-05-31', 'theresawilson', '2003-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS173421392598', '罗震南', 1, '+81 52-262-1225', 2, '944256893473737221', '20-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-10-19', 0, 0, 'zhennan2', '2015-01-19', 'zhenl', '2016-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS746927659274', '山崎湊', 1, '+86 199-9968-9019', 2, '554392138477289138', 'Room 10, CR Building, 569 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-11-23', 0, 0, 'yamami', '2002-12-20', 'yamazmi', '2004-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS760280937163', '蒋晓明', 1, '+44 5233 600743', 3, '223439861853668507', 'Unit 10, Oxford Eco Centre, 625 Pollen Street, London, W1S 1NG, United Kingdom', '1988-11-02', 0, 0, 'jiang3', '2002-01-26', 'xiaomingj6', '2016-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS816291559888', '蕭詩君', 0, '+1 838-820-3219', 2, '787308900629824759', '580 Broadway Suite 45, Albany, NY 12207, United States', '1998-01-17', 0, 0, 'siu87', '2017-05-24', 'szekwansiu', '2017-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS598714522857', 'Rhonda Coleman', 1, '+81 80-5423-6880', 1, '170997013028731226', '19F, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-01-26', 0, 0, 'coleman49', '2000-11-23', 'rhondacoleman', '2010-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS769831113844', '千葉美緒', 0, '+81 3-1151-1757', 2, '635340167189931125', '日本東京港区東新橋一丁目5番14号39階', '1987-10-30', 0, 0, 'mc3', '2013-07-08', 'chiba1220', '2002-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS666705533829', '應玲玲', 1, '+81 70-1986-3798', 4, '155882374943255921', '44F, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-07-22', 0, 0, 'yinglingling8', '2011-03-02', 'yingll', '2015-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS752831961245', '袁力申', 0, '+81 80-3572-0552', 1, '402916984026089107', '21F, 6 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1999-02-20', 0, 0, 'lsyue05', '2008-03-08', 'yuenliksun', '2006-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS960562111914', '石川一輝', 1, '+81 3-6587-2808', 1, '142025123790331092', 'Rm. 9, 1-6-4, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-03-01', 0, 0, 'iikk', '2018-06-17', 'ikishik', '2019-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS673167301179', '萬潤發', 1, '+81 70-3847-8999', 2, '003999316738239391', '12F, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-07-16', 0, 0, 'yunfatmeng', '2003-06-12', 'myf', '2020-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS974537700209', '冯璐', 0, '+81 11-243-6311', 2, '116257063564596950', '日本札幌白石区菊水三条五丁目2番10号17階', '1992-06-15', 0, 0, 'feng525', '2019-07-31', 'fenl', '2012-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS005793612197', '菊地葉月', 0, '+86 178-2720-0452', 0, '714571122709697685', '中国中山京华商圈华夏街715号华润大厦3室', '1992-12-11', 0, 0, 'hazuki820', '2019-02-08', 'kikuchihaz', '2006-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS426772176665', 'Bradley Peterson', 1, '+81 70-3369-6247', 3, '418855577953624088', 'Rm. 50, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1985-02-27', 0, 0, 'petersonbrad2', '2019-11-19', 'peterson4', '2019-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS174233245527', '伊藤悠人', 0, '+81 90-9267-8431', 1, '749449141936855315', '日本東京渋谷区代々木二丁目3番7号23階', '1994-11-02', 0, 0, 'itoy', '2006-11-25', 'yutito', '2021-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS298392672654', '潘睿', 1, '+1 718-333-4798', 3, '460938593647088276', '947 Bergen St Apt 19, Brooklyn, NY 11217, United States', '1992-06-24', 0, 0, 'panr42', '2010-11-08', 'rup', '2019-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS733290771296', '鄭永發', 1, '+86 20-569-5813', 0, '539855229263662649', '中国广州市白云区小坪东路933号华润大厦6室', '1985-07-31', 0, 0, 'wfch68', '2012-10-13', 'wingfatcheng6', '2018-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS552647771864', '唐云熙', 1, '+44 (1865) 00 2895', 2, '256287860783092721', 'Flat 21, 657 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-01-27', 0, 0, 'tayun96', '2014-08-15', 'tangyu1230', '2010-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS173806627333', '郭永發', 1, '+86 190-1972-2669', 1, '697016319382303305', '27F, 390 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-01-19', 0, 0, 'kwokwf', '2002-02-23', 'wingfatkwok', '2005-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS258219650521', '曹梓晴', 0, '+86 10-781-7139', 2, '474957951417122700', '中国北京市西城区复兴门内大街158号28室', '1993-06-27', 0, 0, 'tszchingc', '2016-12-01', 'tccho', '2020-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS184604849383', '加藤大和', 1, '+81 66-640-2465', 1, '135218028622962067', '日本おおさかし東住吉区東田辺三丁目27番7号28階', '1987-05-20', 0, 0, 'yamkato412', '2018-01-08', 'yamatkato9', '2000-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS845399348904', '向嘉欣', 0, '+1 838-732-9312', 3, '889831813278712115', '220 State Street 3rd Floor, Albany, NY 12203, United States', '1985-03-18', 0, 0, 'heung3', '2018-08-30', 'hky', '2010-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS454446180283', '彭慧琳', 0, '+44 (1223) 13 5842', 2, '334205865025193503', 'Unit 13, Oxford Eco Centre, 671 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-04-11', 0, 0, 'wailampang', '2015-04-07', 'wlpan48', '2001-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS644134927915', '原田明菜', 1, '+86 28-594-6705', 1, '181368648286640952', '中国成都市成华区二仙桥东三路633号4栋', '1998-11-16', 0, 0, 'haradaakina', '2020-06-11', 'haradakina', '2014-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS954023192560', '毛家玲', 1, '+1 614-489-2526', 1, '014503143387539624', '58 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1986-10-11', 0, 0, 'kaling603', '2019-04-15', 'kalingmo907', '2019-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS117619576073', 'Ashley Davis', 1, '+81 3-5373-2625', 3, '090271235942764710', '日本東京品川区東五反田五丁目2番8号46階', '1993-12-13', 0, 0, 'ashley52', '2008-09-21', 'ashley5', '2008-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS798034788937', '原和真', 1, '+1 330-026-4316', 2, '311866737219031023', '55 West Market Street Apartment 5, Akron, OH 44333, United States', '1988-01-19', 0, 0, 'hara5', '2001-08-10', 'harak', '2018-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS218769550086', 'Randy Gray', 0, '+81 70-0896-2515', 3, '516066086584641977', '47-kai, 1-1-18 Deshiro, Nishinari Ward, Osaka, Japan', '1996-06-28', 0, 0, 'grayrandy', '2019-12-24', 'grayran', '2021-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS446578849814', '宣明', 0, '+86 28-4875-0052', 1, '923990749504575172', '中国成都市成华区双庆路715号40室', '1986-07-27', 0, 0, 'hsuanming4', '2004-11-08', 'minghsua', '2015-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS447271566638', '徐潤發', 0, '+81 90-5288-5426', 3, '611903221041140207', '13F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-10-02', 0, 0, 'yunfat06', '2017-02-21', 'tsuiyunfa119', '2017-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS521164235680', '盧慧敏', 1, '+86 760-770-1632', 0, '295798991663832759', '中国中山天河区大信商圈大信南路194号41栋', '1995-08-26', 0, 0, 'lowaim9', '2012-01-12', 'lwm', '2008-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS843253289470', 'Joe Webb', 1, '+1 614-151-9521', 1, '796090608027356718', '357 Wicklow Road Apartment 3, Columbus, GA 43204, United States', '1997-01-08', 0, 0, 'joe12', '2019-10-06', 'joewebb', '2017-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS032333404334', '藤原光莉', 1, '+81 70-1479-7104', 1, '611436422280656132', '23F, 4-9-9 Kamihigashi, Hirano Ward, Osaka, Japan', '1985-05-23', 0, 0, 'fujhi', '2013-02-08', 'fujiwarah11', '2004-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS528656988813', '佐々木舞', 0, '+81 52-979-2007', 3, '647706629336450493', 'Rm. 5, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1996-03-31', 0, 0, 'smai', '2010-01-06', 'sama3', '2006-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS453701018941', 'Diana Patel', 0, '+1 614-792-5128', 3, '797574258573255698', '660 East Cooke Road Suite 13, Columbus, GA 43214, United States', '1987-01-19', 0, 0, 'patel727', '2012-03-23', 'patel7', '2012-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS155812189310', '渡辺大和', 0, '+81 90-0105-6148', 2, '471477936364186670', '日本おおさかし西成区出城一丁目1番8号38号室', '1997-06-09', 0, 0, 'sayamato', '2004-10-25', 'yamasato', '2019-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS725819561840', '苑發', 0, '+44 (161) 336 1757', 4, '646833148643246732', 'Unit 18, Oxford Eco Centre, 284 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-02-07', 0, 0, 'yuenfat', '2008-06-12', 'fat6', '2015-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS422855812622', 'Eddie Hill', 1, '+86 198-7001-2782', 3, '717881741998302908', 'No.5 building, 589 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-08-15', 0, 0, 'ehil10', '2006-06-29', 'eddiehill2', '2002-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS486550797346', '小野玲奈', 0, '+1 838-591-7010', 2, '820849824378926144', '449 Lark Street Apt 49, Albany, NY 12210, United States', '1986-02-21', 0, 0, 'rena61', '2012-03-30', 'ono97', '2005-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS175558540172', 'Tammy Meyer', 0, '+86 760-4788-9156', 1, '906082497744518860', 'No.33 building, 529 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1992-10-07', 0, 0, 'tammy625', '2007-04-08', 'tm15', '2013-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS719390887865', '朱玲玲', 1, '+86 182-4345-7073', 0, '253650258217507905', '15F, 83 028 County Rd, Yanqing District, Beijing, China', '1996-01-17', 0, 0, 'chull97', '2019-12-31', 'linglingchu', '2015-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS452484199320', '曾天樂', 1, '+81 90-6457-1549', 3, '725337188541178127', '日本なごやし北区清水三丁目19番17号13階', '1992-08-31', 0, 0, 'tstinl506', '2000-01-06', 'tlt', '2005-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS221803188644', '傅永權', 0, '+44 7973 901875', 2, '460390465388570821', 'No.37 Main building, 381 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-15', 0, 0, 'fuwk', '2019-04-08', 'wkf', '2020-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS663276492517', '吳明詩', 1, '+86 173-2563-6963', 1, '018459528976491246', '中国北京市延庆区028县道937号1号楼', '1989-07-10', 0, 0, 'msng406', '2016-09-06', 'mingszen', '2002-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS744917969582', '叶杰宏', 0, '+86 156-8610-2240', 1, '724845352736270712', 'No.24 building, 890 Sanlitun Road, Chaoyang District, Beijing, China', '1992-06-09', 0, 0, 'jieye', '2002-09-01', 'jiehong4', '2019-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS836934003254', '崔子异', 1, '+81 11-116-3190', 3, '269969944284481291', '日本札幌厚別区上野幌一条二丁目1番6号41階', '1991-12-30', 0, 0, 'cuiziy', '2005-01-28', 'cuziyi', '2004-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS835795026328', '盧家文', 1, '+44 (1865) 53 7088', 1, '234792746484507082', 'Block 50, 375 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-04-12', 0, 0, 'kaman5', '2018-09-18', 'kamanlo', '2008-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS469423098712', '周慧珊', 0, '+86 150-8206-9003', 2, '449051381300214904', '中国广州市越秀区中山二路450号5楼', '1995-06-27', 0, 0, 'chowaisa', '2010-11-01', 'wschow', '2010-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS114724978382', '増田湊', 0, '+86 755-6533-1975', 4, '753565354330690802', '中国深圳罗湖区蔡屋围深南东路604号8号楼', '1987-05-23', 0, 0, 'masudaminat4', '2007-05-06', 'minatmasuda', '2013-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS954864047322', 'Mary Tran', 0, '+86 155-3022-4962', 3, '428022526361208692', 'No.23 building, 253 Lefeng 6th Rd, Zhongshan, China', '1986-05-31', 0, 0, 'tmary', '2009-01-04', 'tran1959', '2009-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS896952752816', '郑杰宏', 0, '+86 147-7695-4621', 4, '370270266507033116', '31F, 612 Middle Huaihai Road, Huangpu District, Shanghai, China', '1999-03-03', 0, 0, 'jiehongzh', '2019-04-06', 'zhjiehong109', '2015-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS962717554873', 'Frederick Schmidt', 0, '+44 (20) 5879 2759', 2, '579730995071425941', 'No.3 Main building, 838 Pollen Street, London, W1S 1NG, United Kingdom', '1986-01-05', 0, 0, 'sfrederick', '2017-08-17', 'schmidtf', '2004-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS960212601121', '小林海斗', 0, '+81 80-9193-6533', 0, '555019550448436410', '19-kai, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1986-04-29', 0, 0, 'kaitokobayashi', '2019-04-08', 'kkaito', '2014-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS569545339394', '朱力申', 0, '+81 3-7048-3966', 4, '675125112442285314', '17-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-10-07', 0, 0, 'liksunch', '2019-05-12', 'chu1', '2010-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS576312611802', '金子陽菜', 0, '+86 133-6864-4396', 2, '538307474988158056', '中国深圳福田区景田东一街771号30栋', '1994-04-15', 0, 0, 'hikan', '2019-11-27', 'kanekohi', '2020-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS448480379728', 'Leroy Bell', 1, '+86 176-2297-8812', 2, '964517119098878478', '中国成都市成华区玉双路6号679号1栋', '1995-01-01', 0, 0, 'bellle8', '2012-08-17', 'belll', '2000-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS365550095153', '蔡梓晴', 1, '+81 70-9819-2704', 0, '699870752296014321', '日本札幌清田区真栄四条五丁目19番15号49号室', '1995-12-21', 0, 0, 'choitc', '2021-08-06', 'ctc', '2012-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS112679846872', '高云熙', 1, '+81 70-3742-6333', 3, '095968485164725757', '日本なごやし瑞穂区河岸町四丁目20番11号12階', '1995-02-08', 0, 0, 'gaoyunxi1003', '2015-03-02', 'gaoy', '2017-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS450623946500', 'Curtis Hill', 1, '+86 155-1540-7058', 4, '524287810283305072', 'Room 48, 799 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-05-30', 0, 0, 'curtihill721', '2014-02-22', 'ch8', '2012-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS902765647554', 'Carlos Shaw', 0, '+86 10-6671-5944', 3, '646966547491210296', 'No.40 building, 347 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-10-09', 0, 0, 'shawcarlos', '2003-06-17', 'carlossha', '2008-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS217744316838', '杜致远', 0, '+81 3-3512-2046', 1, '013761604284969306', '37-kai, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-06-20', 0, 0, 'duzhiy', '2016-09-10', 'zhiydu1972', '2022-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS033586844502', '大塚結翔', 1, '+86 21-819-8004', 0, '953358289884612027', '中国上海市闵行区宾川路731号32楼', '1996-03-10', 0, 0, 'yuitoot', '2011-10-13', 'yotsuka', '2002-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS158388379715', '萧睿', 0, '+81 11-710-4476', 3, '505172752605033181', '日本札幌厚別区上野幌一条二丁目1番1号46階', '1986-03-06', 0, 0, 'ruxiao', '2005-02-14', 'ruix10', '2010-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS460840824271', '龙嘉伦', 1, '+44 7790 510124', 4, '553284859094141513', 'No.20 Main building, 241 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1994-07-03', 0, 0, 'longji', '2001-06-19', 'long6', '2017-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS481980564916', 'Edward Gardner', 0, '+86 769-550-0763', 3, '860431815218912590', 'Room 22, 287 Dongtai 5th St, Dongguan, China', '1994-01-19', 0, 0, 'edwardgardner', '2009-08-17', 'gardneredwar', '2006-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS639608593095', '平野光', 1, '+1 718-707-6740', 3, '314007884388286940', '948 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1997-04-06', 0, 0, 'hhikaru5', '2002-07-24', 'hirano5', '2008-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS062598053891', 'Hazel Barnes', 1, '+44 (161) 569 6866', 1, '965781177067871960', 'No.23 Main building, 233 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-04-16', 0, 0, 'barnesh', '2009-12-27', 'habar', '2007-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS108455791952', '顧頴璇', 1, '+86 178-4058-0962', 4, '369426741032427625', '中国上海市浦东新区健祥路254号34号楼', '1986-08-02', 0, 0, 'kuwingsuen', '2006-11-06', 'wingsuenku', '2021-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS275189503599', '佘天榮', 0, '+81 70-0873-4780', 3, '215406737356769460', '日本おおさかし東住吉区東田辺三丁目27番14号37号室', '1985-01-01', 0, 0, 'shehtin2', '2003-04-25', 'stw', '2007-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS927869670470', '孔震南', 1, '+81 80-6002-0272', 3, '004190757928651187', 'Rm. 48, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-09-09', 0, 0, 'zhennk1979', '2005-02-08', 'kzh', '2020-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS153717760722', '謝頴思', 1, '+1 330-212-9193', 1, '553377315157593743', '150 Riverview Road Suite 5, Akron, OH 44313, United States', '1991-06-13', 0, 0, 'tsws', '2002-04-11', 'tse426', '2007-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS137915212432', '丁云熙', 0, '+44 (1223) 44 1114', 0, '624355400147720228', 'Unit 14, Oxford Eco Centre, 618 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-04-20', 0, 0, 'yunxidi9', '2017-02-08', 'yunxi1128', '2017-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS242966128523', '常嘉伦', 0, '+86 10-2744-8747', 1, '320185593105800505', 'No.22 building, 835 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-02-21', 0, 0, 'changjial1', '2003-10-12', 'jc1940', '2008-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS124227110409', '黃玲玲', 0, '+86 143-4235-3209', 1, '162389369695807047', 'Room 5, 807 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-12-25', 0, 0, 'linglingwong', '2012-01-02', 'llwong9', '2015-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS363981854537', '廖宇宁', 0, '+44 5778 749650', 2, '628166237342692587', 'Flat 3, 58 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-05-03', 0, 0, 'yuninl1122', '2017-11-30', 'yliao1', '2004-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS735084964871', '龚杰宏', 1, '+1 312-862-6965', 2, '466660962120387389', '110 North Michigan Ave Suite 50, Chicago, IL 60611, United States', '1995-11-28', 0, 0, 'jiehonggo', '2004-03-14', 'jg1201', '2013-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS486657454843', '杨嘉伦', 0, '+86 187-1993-0722', 2, '741445693010800618', 'Room 37, CR Building, 833 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-12-28', 0, 0, 'jiayang', '2014-07-17', 'jy205', '2017-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS067827073321', '西村凛', 1, '+86 755-5597-2116', 1, '719459599342275674', '9F, 531 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-09-11', 0, 0, 'rinnishi', '2018-04-12', 'nishimura1023', '2005-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS940552323971', 'Arthur Gibson', 1, '+1 312-457-9959', 3, '788580823903700650', '998 North Michigan Ave Apt 36, Chicago, IL 60611, United States', '1994-12-09', 0, 0, 'gibsar', '2015-09-25', 'giarthur', '2012-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS422957925634', 'Esther Rodriguez', 1, '+44 5127 391677', 1, '584143998827126609', 'Unit 3, Oxford Eco Centre, 22 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-04-22', 0, 0, 'rodresther', '2022-01-03', 'resther', '2012-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS604918506145', '森光', 1, '+44 7621 240845', 3, '284051098456607749', 'No.2 Main building, 771 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-02-16', 0, 0, 'morihik', '2006-06-27', 'hmori', '2005-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS550833584171', 'Joshua Gonzalez', 0, '+1 718-150-7074', 3, '754433851831372363', '855 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1994-02-21', 0, 0, 'jog', '2005-02-27', 'gonzalez2', '2007-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS295666618030', '佘家玲', 0, '+81 66-269-4698', 1, '834516305474401728', '22-kai, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1991-04-01', 0, 0, 'klsheh', '2004-01-18', 'shehka504', '2007-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS672431604782', '藤田大輔', 0, '+86 153-1031-2396', 3, '317828636893686065', '2F, 752 Jianxiang Rd, Pudong, Shanghai, China', '1990-12-04', 0, 0, 'daifujita10', '2008-09-24', 'fujitada', '2007-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS232758022034', 'Jonathan Jones', 0, '+86 21-541-3886', 2, '776841289372692234', 'No.32 building, 819 Ganlan Rd, Pudong, Shanghai, China', '1986-10-11', 0, 0, 'joj9', '2014-07-18', 'jojones50', '2020-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS575337095221', '長谷川涼太', 0, '+81 70-9384-2595', 4, '621563535560088182', '17F, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1989-03-21', 0, 0, 'rhase02', '2002-06-11', 'ryotahaseg', '2018-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS564860220336', '西村美月', 0, '+86 171-1168-9230', 3, '652703292305127723', '12F, 861 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-07-25', 0, 0, 'nishimits', '2013-06-26', 'mitsuki3', '2012-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS724599910294', '菊地紗良', 1, '+81 70-1712-6132', 3, '185916878385410926', 'Rm. 17, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-12-03', 0, 0, 'ksara56', '2014-09-05', 'skikuchi11', '2002-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS824101200715', '马云熙', 1, '+81 74-056-2028', 2, '737084279401376351', '46F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-08-29', 0, 0, 'mayunxi', '2001-08-20', 'mayunxi5', '2017-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS686747924849', '熊震南', 0, '+86 189-6336-5633', 3, '953731027095045478', 'Room 27, CR Building, 626 Jianxiang Rd, Pudong, Shanghai, China', '1986-02-11', 0, 0, 'zhexiong', '2018-07-20', 'xiongz9', '2013-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS165737444678', '森美咲', 0, '+1 213-140-4551', 1, '345247415173940821', '763 Wall Street Apt 49, Los Angeles, CA 90003, United States', '1994-11-28', 0, 0, 'misamori', '2004-06-11', 'morimi', '2008-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS468160690967', '林湊', 1, '+81 11-084-7367', 1, '076257573278355290', 'Rm. 46, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-02-05', 0, 0, 'minato70', '2006-01-16', 'hayashiminato', '2014-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS505732741735', 'Louise Sanchez', 1, '+44 (1223) 22 9358', 3, '340561899684629158', 'Block 1, 227 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-08-31', 0, 0, 'sanchlouise', '2021-05-31', 'lsanch', '2008-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS849096952622', '方秀英', 1, '+81 11-411-0021', 4, '948490059400855504', '20-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-12-17', 0, 0, 'fangxi709', '2001-09-09', 'fxiuying7', '2019-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS695162803258', '橋本百恵', 0, '+81 80-3805-1742', 0, '659889235032423895', '日本なごやし守山区瀬古東二丁目171番7号14階', '1987-08-31', 0, 0, 'momoehashi5', '2011-09-28', 'hashimotomomo606', '2019-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS435275741799', 'Thelma Cook', 1, '+81 90-5747-4309', 2, '320873866183262157', '2F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1987-07-10', 0, 0, 'cookthel', '2017-03-02', 'thelc6', '2014-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS182372282889', '渡辺樹', 0, '+1 312-683-3421', 1, '270788126323875545', '132 Rush Street Apartment 36, Chicago, IL 60611, United States', '1997-02-02', 0, 0, 'sato1966', '2012-04-30', 'itsuki73', '2000-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS015547847865', '刘杰宏', 1, '+81 70-0541-9242', 2, '538185443368846924', 'Rm. 28, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-01-20', 0, 0, 'jiehong6', '2017-06-10', 'jiehongl', '2016-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS149018571592', '段璐', 0, '+1 838-335-9154', 0, '861496826686385483', '442 Lark Street Suite 34, Albany, NY 12210, United States', '1991-09-04', 0, 0, 'dulu6', '2009-02-08', 'duan1', '2014-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS082489596513', 'Dennis Flores', 0, '+86 20-063-7271', 2, '050605057558041282', 'Room 12, 30 Tianhe Road, Tianhe District, Guangzhou, China', '1989-12-08', 0, 0, 'denniflo', '2000-03-20', 'flordennis', '2000-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS544950982935', '戴永發', 0, '+1 614-685-0648', 2, '033626706204891996', '510 East Cooke Road Suite 21, Columbus, GA 43214, United States', '1993-03-09', 0, 0, 'daiwingfat', '2001-05-31', 'daiwingfat', '2014-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS014461231185', '村上涼太', 0, '+81 90-9885-6150', 3, '912682771753586320', '49F, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-02-06', 0, 0, 'ryotamurak', '2020-08-27', 'ryotamurakami', '2017-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS697169244252', '王晓明', 0, '+1 213-629-9879', 3, '055608962745321583', '606 Grape Street Apartment 40, Los Angeles, CA 90002, United States', '1994-10-20', 0, 0, 'wang709', '2011-07-16', 'wanx', '2008-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS590489047482', '楊發', 0, '+86 28-219-1104', 1, '075849196807348678', '中国成都市锦江区人民南路四段930号4室', '1989-10-29', 0, 0, 'yeungf', '2000-01-17', 'fatyeun', '2015-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS750111326127', '杉山海斗', 0, '+81 52-332-9970', 2, '781249388760309085', '日本なごやし守山区瀬古東二丁目171番11号48階', '1996-10-17', 0, 0, 'sugiyamakaito9', '2017-02-28', 'sugka5', '2006-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS745737831652', '村田玲奈', 1, '+44 7013 525104', 2, '567795573806003923', 'Flat 43, 18 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-03-14', 0, 0, 'renamurata9', '2019-03-22', 'renamurata8', '2019-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS689117202863', '袁子异', 0, '+1 212-314-8957', 3, '235759757153399560', '256 Canal Street Apartment 16, New York, NY 10013, United States', '1986-10-27', 0, 0, 'yuaz54', '2011-02-10', 'zyuan10', '2008-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS111824385245', '廖璐', 1, '+86 134-3888-6683', 3, '959168243576055323', 'Room 2, 659 Lefeng 6th Rd, Zhongshan, China', '1995-02-24', 0, 0, 'lilu', '2016-07-20', 'liaolu3', '2006-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS805191546762', 'Angela Cole', 1, '+81 74-959-6217', 1, '289012775829447924', 'Rm. 19, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-10-12', 0, 0, 'angec89', '2011-04-04', 'angela123', '2016-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS670505043172', 'Louise Webb', 1, '+81 80-2074-8464', 4, '398292364617588574', '日本東京千代田区丸の内一丁目6番15号40階', '1990-02-16', 0, 0, 'weblouise', '2006-07-04', 'louise17', '2019-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS665212733199', '斉藤百恵', 1, '+86 28-594-8306', 0, '419093608342218297', '23F, 79 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-07-03', 0, 0, 'mosa', '2003-12-03', 'momosa', '2011-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS445931280461', '姚仲賢', 1, '+86 175-8711-8390', 2, '965278984218416130', '28F, 878 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-09-14', 0, 0, 'chungyinyeow605', '2000-07-26', 'yeowchungyin', '2015-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS436009568561', '廖杰宏', 1, '+81 80-5354-9950', 0, '025906354518699198', '2-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-09-01', 0, 0, 'liaj', '2016-04-03', 'liao2', '2016-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS107234930177', '韩晓明', 0, '+44 (1223) 40 1928', 3, '861306630720720851', 'Flat 2, 755 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-07-20', 0, 0, 'hanxiao', '2015-01-21', 'han3', '2017-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS892699946691', 'Chad Allen', 0, '+81 11-793-0677', 3, '723192403297290400', '日本札幌清田区真栄四条五丁目19番5号35階', '1995-01-21', 0, 0, 'allen7', '2016-03-13', 'allench', '2007-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS702969508870', '丁宇宁', 0, '+1 312-967-9635', 0, '017494934642492078', '669 Rush Street Suite 40, Chicago, IL 60611, United States', '1992-07-26', 0, 0, 'yuning421', '2019-09-15', 'dingyuning', '2019-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS695259945052', '张璐', 0, '+86 168-3012-8645', 2, '369457960878788611', '中国成都市成华区玉双路6号475号44号楼', '1987-09-19', 0, 0, 'luzhang7', '2021-10-19', 'luzhan47', '2000-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS836717221375', '元仲賢', 0, '+44 5490 684016', 1, '306171176600929296', 'Block 20, 110 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-04-02', 0, 0, 'cyy607', '2004-09-08', 'yucy71', '2000-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS241289941462', '和田一輝', 0, '+86 760-361-9119', 0, '674446351993320450', '中国中山紫马岭商圈中山五路735号42号楼', '1998-04-11', 0, 0, 'wada6', '2006-06-20', 'wada1', '2015-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS742894838359', '鄺裕玲', 1, '+86 161-5801-5547', 3, '644874862325222442', 'Room 10, 428 Yueliu Rd, Fangshan District, Beijing, China', '1996-08-20', 0, 0, 'kwoyl1221', '2005-07-09', 'yulingkwon', '2004-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS286233004695', '盧慧嫻', 1, '+44 (151) 966 8498', 2, '098379113108493261', 'Flat 30, 749 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-04-24', 0, 0, 'lowh6', '2005-04-19', 'lwaihan62', '2013-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS086593550043', '村上光莉', 0, '+81 11-280-9396', 2, '715746501060073760', '日本札幌厚別区上野幌一条二丁目1番4号46階', '1989-01-01', 0, 0, 'hikarimurakami', '2021-06-24', 'hikarm', '2007-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS069309038460', '吕晓明', 0, '+86 755-165-4369', 2, '389346389566727105', 'Room 38, 512 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-07-03', 0, 0, 'xiaomingl716', '2018-07-03', 'xiaoml', '2006-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS841623540675', '柴田架純', 1, '+81 66-650-9374', 4, '708730864164717880', '49-kai, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1988-11-05', 0, 0, 'kashiba', '2001-04-12', 'skasumi', '2017-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS855883534664', '陶杰宏', 1, '+44 (116) 991 8776', 3, '901112345754372476', 'Flat 12, 525 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-07-14', 0, 0, 'jit10', '2002-07-25', 'jiehong731', '2019-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS903509196584', '江子异', 0, '+86 10-631-3233', 1, '622109293336476534', 'Room 39, CR Building, 441 Yueliu Rd, Fangshan District, Beijing, China', '1987-04-22', 0, 0, 'jiangziyi', '2011-05-28', 'jianziyi', '2012-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS771866512809', '萬詩君', 1, '+81 66-850-7824', 2, '281146815640921318', '10-kai, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-06-29', 0, 0, 'skmeng', '2001-10-16', 'szekwanmeng', '2005-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS522918736446', '吳朝偉', 0, '+86 177-8368-2350', 2, '184984840549388438', '中国北京市西城区西長安街832号18号楼', '1991-03-04', 0, 0, 'cwng', '2018-11-19', 'ng306', '2006-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS243674001239', '傅國明', 0, '+86 20-761-2162', 1, '735607837322371105', 'Room 22, CR Building, 133 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-03-01', 0, 0, 'kwokmingfu', '2005-05-03', 'kwokming5', '2007-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS239058233572', '吴岚', 1, '+44 (161) 724 2859', 2, '847466308631665650', 'No.38 Main building, 340 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-05-11', 0, 0, 'lanwu', '2009-05-26', 'lanwu1', '2004-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS989465046414', 'Virginia Mills', 0, '+44 5022 426700', 3, '871220261308356132', 'Flat 44, 115 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-10-11', 0, 0, 'virginiamills828', '2002-10-28', 'virginia10', '2013-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS381154449023', '王惠妹', 0, '+44 (20) 1147 3698', 3, '015746761335605158', 'Flat 22, 326 Maddox Street, London, W1S 1PU, United Kingdom', '1991-08-17', 0, 0, 'wonhuimei', '2002-09-09', 'hmwong', '2009-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS575064097860', 'Sharon Lopez', 0, '+86 183-4151-4062', 2, '499016688729495347', '中国成都市成华区双庆路88号32室', '1996-08-28', 0, 0, 'los', '2017-03-31', 'sharon929', '2003-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS814992382117', '狄國權', 1, '+86 141-1302-6828', 0, '187569066676333136', 'Room 45, 125 Dongtai 5th St, Dongguan, China', '1987-10-25', 0, 0, 'tikwok', '2012-03-22', 'tikwokkuen', '2021-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS862269734160', 'Rhonda Warren', 1, '+86 196-2794-6605', 4, '759397526275966875', '中国成都市成华区二仙桥东三路807号1号楼', '1997-06-11', 0, 0, 'rhonda514', '2016-10-17', 'rwarren', '2018-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS192724865271', '尹杰宏', 0, '+1 330-780-9149', 4, '278283644355301930', '929 Ridgewood Road Apartment 1, Akron, OH 44321, United States', '1987-01-17', 0, 0, 'jyin221', '2017-11-04', 'jy511', '2002-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS433730497504', '大野百花', 0, '+86 21-763-9052', 2, '877613446732206085', '中国上海市浦东新区健祥路547号19室', '1993-10-17', 0, 0, 'onomomo2', '2002-09-03', 'onomomoka47', '2016-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS718844023511', 'Mary Salazar', 0, '+86 190-0369-5956', 2, '071078949547174734', '中国深圳福田区景田东一街784号23室', '1997-09-09', 0, 0, 'marysalazar', '2017-08-03', 'marysalaz1007', '2020-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS956892492091', '萬慧珊', 1, '+81 90-3961-6943', 0, '584844767826437653', '22F, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-10-30', 0, 0, 'mengws', '2006-09-09', 'mengws119', '2005-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS419480517778', '坂本拓哉', 0, '+81 70-7852-1894', 2, '860278042483520995', '23-kai, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-06-01', 0, 0, 'takuyasa', '2013-08-16', 'sakamototak823', '2020-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS809461943943', '汪震南', 1, '+86 172-6474-7346', 1, '720248886060591060', '中国广州市天河区天河路146号34楼', '1987-08-11', 0, 0, 'wang6', '2005-01-01', 'zhennan901', '2008-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS139210781396', '羅玲玲', 1, '+86 134-3053-0751', 0, '243003218390693860', '中国北京市西城区西長安街165号华润大厦37室', '1988-02-16', 0, 0, 'lolingling', '2002-12-19', 'lolingling', '2010-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS685533066562', '原田詩乃', 1, '+1 213-447-2246', 3, '099193015886612210', '102 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-12-11', 0, 0, 'shino1230', '2007-08-12', 'hashin', '2009-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS468536978619', 'Julie Johnson', 1, '+86 755-2702-3729', 1, '095057097724789552', '中国深圳罗湖区蔡屋围深南东路896号华润大厦13室', '1999-01-03', 0, 0, 'johnsjuli9', '2003-02-12', 'juliejohnson', '2016-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS180636816812', '高青雲', 1, '+81 80-7697-0422', 3, '000010837954332535', '37F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-12-27', 0, 0, 'chingwankao1020', '2018-11-24', 'cwk', '2018-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS799632771447', '叶子韬', 0, '+86 755-813-8880', 2, '724487197199924234', 'Room 23, 472 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-05-03', 0, 0, 'yezitao6', '2000-04-13', 'ye1995', '2012-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS832823731853', '傅志遠', 0, '+86 174-0471-0245', 2, '431644907148327696', '中国北京市东城区东单王府井东街423号41楼', '1996-05-06', 0, 0, 'fuchiyuen', '2000-11-20', 'chiyuenfu', '2003-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS807794940732', '林俊宇', 0, '+1 838-052-5608', 4, '061988872037853563', '903 State Street Apt 16, Albany, NY 12203, United States', '1998-11-02', 0, 0, 'cylam', '2018-09-02', 'lacy', '2019-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS956198840755', 'Robert Myers', 1, '+86 176-9830-4441', 3, '273678507191645351', '49F, 518 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-05-04', 0, 0, 'robmyer', '2003-03-23', 'robert6', '2002-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS593841170678', '朱宇宁', 1, '+86 150-3763-4534', 4, '253591626931355651', '中国成都市锦江区红星路三段576号27栋', '1993-10-04', 0, 0, 'zhuyuni', '2003-09-30', 'yuningzhu90', '2018-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS405590604209', '有村樹', 1, '+86 148-1663-2028', 3, '325172468546255076', '中国深圳福田区景田东一街386号28室', '1995-03-28', 0, 0, 'itsukiarim', '2014-11-17', 'itsukia', '2016-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS763207842930', '應國賢', 0, '+81 52-665-5881', 4, '571592023425095732', '日本なごやし北区楠味鋺三丁目80番15号13階', '1985-04-01', 0, 0, 'yingkwokyin7', '2012-06-28', 'kyyin2', '2015-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS462474222669', 'Norma Warren', 0, '+1 838-317-7606', 2, '961750926536489096', '429 Central Avenue Apt 39, Albany, NY 12205, United States', '1990-01-31', 0, 0, 'warren315', '2018-02-08', 'norwar', '2012-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS863715399558', '戴致远', 1, '+86 755-087-1670', 4, '468894845473576303', '中国深圳龙岗区布吉镇西环路409号29号楼', '1996-08-11', 0, 0, 'dazhiyu', '2000-03-27', 'zhid4', '2008-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS201386322508', '市川花', 1, '+44 (1223) 28 5990', 4, '134383147077814402', 'Flat 20, 958 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-11-07', 0, 0, 'ichikawahana509', '2020-12-23', 'hanaichikawa', '2004-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS898070582892', '小山美月', 1, '+86 136-3186-3125', 2, '995021913659453361', 'Room 38, CR Building, 905 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-03-05', 0, 0, 'mitsukoyam4', '2016-01-05', 'mitsuk', '2020-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS980082286295', '曹榮發', 0, '+86 137-5664-7668', 1, '138352737024469893', '中国成都市锦江区红星路三段390号华润大厦29室', '1989-08-25', 0, 0, 'chowf', '2019-06-04', 'wingfat616', '2005-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS177966458613', 'Scott Scott', 0, '+81 90-7600-6122', 4, '529289709855719698', '日本札幌厚別区上野幌一条二丁目1番7号25階', '1995-12-22', 0, 0, 'scott1', '2007-11-18', 'scottscott', '2016-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS564128127888', '鐘嘉欣', 1, '+81 80-3168-7780', 2, '189162433645569975', '43-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-12-02', 0, 0, 'chungky1110', '2007-06-02', 'kychu04', '2008-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS468971262089', '程嘉伦', 1, '+1 718-123-9058', 2, '453668077681700698', '613 Flatbush Ave Apartment 37, Brooklyn, NY 11225, United States', '1995-08-05', 0, 0, 'chengjialun', '2005-01-26', 'jialun1971', '2010-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS295205222162', 'Kathy Cruz', 0, '+1 212-728-2194', 2, '648881006010185241', '322 West Houston Street 3rd Floor, New York, NY 10014, United States', '1996-02-27', 0, 0, 'cruzkat', '2000-04-13', 'kc614', '2002-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS901631999485', '沈睿', 0, '+81 74-647-5913', 4, '550408090528626435', '32-kai, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1989-11-20', 0, 0, 'shenrui', '2019-03-05', 'shenru', '2002-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS012965557228', '沈宇宁', 1, '+44 5164 172762', 0, '598602122048249641', 'No.23 Main building, 384 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-01-23', 0, 0, 'sheyuning', '2009-07-18', 'shyuning12', '2004-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS469170853523', '張慧琳', 0, '+86 28-331-3160', 2, '067089754097691616', '中国成都市成华区双庆路250号10室', '1985-12-31', 0, 0, 'cheung616', '2004-10-17', 'wailamc1204', '2007-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS482121017961', '蒋岚', 0, '+44 (161) 921 5541', 1, '239328914517981309', 'Block 10, 637 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1991-08-01', 0, 0, 'jiangla7', '2008-10-11', 'lanjian', '2006-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS551507206784', 'Phyllis Taylor', 1, '+86 20-281-4074', 4, '649118062078579749', 'No.26 building, 542 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-01-05', 0, 0, 'phyllt', '2019-04-19', 'taphyll', '2016-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS912723101049', '朱家明', 1, '+86 10-6007-7347', 1, '098129245979419501', '21F, 904 West Chang''an Avenue, Xicheng District, Beijing, China', '1995-07-20', 0, 0, 'kamingchu00', '2019-10-06', 'chukm', '2003-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS309537075376', 'Amber West', 0, '+1 838-054-9168', 0, '910043496743375590', '394 State Street Apartment 21, Albany, NY 12203, United States', '1990-03-06', 0, 0, 'wamber1109', '2004-09-30', 'west825', '2016-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS431750997645', '孟致远', 1, '+1 213-598-8793', 0, '320380283176387944', '744 Alameda Street Suite 5, Los Angeles, CA 90002, United States', '1986-06-29', 0, 0, 'zhiymeng', '2011-11-29', 'mzhiyuan', '2018-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS171130970563', '馬永發', 0, '+86 20-641-7860', 1, '099287152990833024', '中国广州市天河区天河路490号35楼', '1990-01-06', 0, 0, 'mawingfat1221', '2004-01-01', 'wingfat1', '2012-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS562918184086', '青木舞', 0, '+44 5548 716988', 1, '908286316948128238', 'Flat 3, 535 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-03-09', 0, 0, 'maiao211', '2012-09-22', 'maiao', '2013-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS724382581208', '翁安娜', 0, '+86 138-2112-1443', 4, '492066464205421160', '中国北京市東城区東直門內大街90号8栋', '1994-08-07', 0, 0, 'yung128', '2005-07-03', 'onnay', '2001-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS002805327382', '菅原翼', 1, '+81 52-436-9822', 2, '009555188860777558', '日本なごやし守山区瀬古東二丁目171番10号28階', '1988-07-11', 0, 0, 'sugtsubasa', '2012-03-07', 'sugawaratsu40', '2021-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS230776145422', '藤秀文', 1, '+86 21-5757-0979', 0, '231877133731229912', '中国上海市浦东新区健祥路493号38楼', '1996-09-25', 0, 0, 'tangsm', '2009-10-13', 'tasm211', '2013-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS255782468644', 'Russell Griffin', 0, '+86 180-0488-0430', 2, '451101433064573919', 'No.26 building, 670 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-06-14', 0, 0, 'russellgriffin1976', '2017-01-07', 'russgri4', '2003-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS795263862776', 'Leslie Mitchell', 1, '+86 160-2274-5239', 4, '113531347450360417', 'Room 47, 267 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-03-22', 0, 0, 'leslmi1942', '2021-09-02', 'mitchellleslie1955', '2009-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS861732859283', '邹子韬', 0, '+81 66-007-0694', 1, '289133835739544437', '日本おおさかし近江堂一丁目7番10号23号室', '1997-01-08', 0, 0, 'zouzitao60', '2021-02-07', 'zizou', '2005-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS857684092050', '斉藤架純', 0, '+86 162-2120-4283', 1, '174365360557745442', '20F, 55 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-09-01', 0, 0, 'saika1979', '2015-05-11', 'saikasumi63', '2017-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS201663986868', '和田彩乃', 0, '+44 (116) 922 2341', 2, '628984910172168391', 'Block 44, 471 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-09-13', 0, 0, 'ayanowad', '2007-06-12', 'waayano5', '2005-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS854040616239', '酒井海斗', 0, '+1 838-194-5233', 1, '654435075261170573', '448 Broadway Apartment 32, Albany, NY 12207, United States', '1990-12-28', 0, 0, 'kaitos', '2014-10-17', 'sakaikaito', '2019-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS580391321847', '汤子异', 1, '+86 191-7203-3613', 4, '262101805415932993', '中国东莞坑美十五巷455号16楼', '1992-04-30', 0, 0, 'tangzi', '2016-11-23', 'zitang', '2007-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS388366833983', '中森陽菜', 0, '+81 52-063-8147', 1, '150979124150553781', '日本なごやし熱田区千年二丁目5番19号46階', '1985-11-01', 0, 0, 'hinanakamori3', '2002-03-04', 'hinakamori', '2004-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS376325327679', 'Kimberly Richardson', 0, '+81 66-981-8445', 4, '022247378214483831', '日本おおさかし西成区天神ノ森二丁目1番16号20階', '1989-12-02', 0, 0, 'rickimbe', '2019-08-18', 'krich', '2011-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS383707526938', '邱志遠', 1, '+1 718-353-7469', 3, '774863466169327249', '260 1st Ave Apartment 23, Brooklyn, NY 11220, United States', '1992-09-22', 0, 0, 'yau711', '2001-03-30', 'yauchiyuen57', '2019-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS586902021436', '前田悠人', 0, '+44 7933 451533', 4, '226988145016866159', 'Unit 35, Oxford Eco Centre, 519 New Street, Birmingham, B2 4DB, United Kingdom', '1989-02-23', 0, 0, 'ymaed', '2005-10-07', 'maeyuto', '2017-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS371131521293', '斎藤優奈', 0, '+86 175-1577-2769', 4, '024301085250822465', '中国上海市浦东新区橄榄路233号41栋', '1991-11-04', 0, 0, 'saitoyuna', '2008-03-16', 'ysaito', '2007-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS676303157310', '姜嘉伦', 0, '+44 7181 299416', 4, '563304835544703678', 'Flat 25, 183 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-03-10', 0, 0, 'jj7', '2020-05-12', 'jiangjialun', '2012-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS601461056390', '谭宇宁', 1, '+86 181-3385-2491', 3, '527892531822988654', '中国东莞东泰五街744号33室', '1989-02-03', 0, 0, 'yuningtan', '2009-09-06', 'yuningt', '2006-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS512195501983', '車發', 1, '+81 66-796-3950', 3, '315207262503597733', '日本おおさかし西成区天神ノ森二丁目1番10号3階', '1995-09-14', 0, 0, 'cfat3', '2011-05-09', 'chefat503', '2007-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS553801531699', 'Kathryn Rice', 1, '+1 330-382-9807', 3, '127958498073035773', '649 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1985-01-01', 0, 0, 'ricekathryn1023', '2007-03-31', 'kathrice83', '2002-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS886847423478', '小島陽太', 0, '+86 28-153-9667', 2, '348159525091521807', 'Room 23, CR Building, 756 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-10-04', 0, 0, 'kojima204', '2003-02-12', 'yotakojima', '2016-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS757568385455', '湯嘉欣', 0, '+44 (151) 047 8303', 4, '986767500403075333', 'Block 30, 460 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1990-02-13', 0, 0, 'kyton7', '2000-03-02', 'tongkaryan229', '2008-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS372913084492', '野村愛梨', 0, '+1 213-530-0765', 2, '388074860739804860', '556 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1990-07-30', 0, 0, 'nomuraair', '2011-11-25', 'airin', '2005-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS390376417641', '金子愛梨', 0, '+81 74-380-7818', 1, '106206788843735861', 'Rm. 40, 3-9-13 Gakuenminami, Nara, Japan', '1986-08-05', 0, 0, 'airka5', '2008-10-31', 'airikaneko1112', '2004-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS412128521658', '戚青雲', 0, '+86 146-3933-0344', 3, '777840372977495261', '44F, 505 Ganlan Rd, Pudong, Shanghai, China', '1992-01-17', 0, 0, 'cwchic', '2014-05-01', 'chicchingwan', '2005-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS972732511519', '竹内湊', 1, '+1 212-378-5804', 3, '876618450057832237', '361 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1994-01-05', 0, 0, 'tmina2', '2014-10-08', 'takeuchi217', '2018-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS808765150020', 'Miguel Marshall', 0, '+86 769-1921-6241', 1, '220274034810269621', '10F, 560 Shanhu Rd, Dongguan, China', '1995-10-25', 0, 0, 'migumarshall', '2013-10-12', 'miguelmars', '2011-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS515454638867', '蔣明詩', 0, '+81 3-0903-9902', 1, '783845656728273900', 'Rm. 11, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-06-23', 0, 0, 'mschiang1', '2006-05-12', 'mingszech401', '2005-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS002045062632', 'Virginia Edwards', 1, '+86 165-1832-1168', 0, '475318061498772202', '中国中山京华商圈华夏街470号12室', '1989-09-28', 0, 0, 'virgiedwards', '2019-11-21', 'virginiaedwards05', '2001-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS504180669886', 'Rita Wilson', 1, '+86 10-599-1470', 4, '979471832006058627', '中国北京市朝阳区三里屯路455号2楼', '1993-12-06', 0, 0, 'wilsorit', '2018-08-10', 'wirita', '2020-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS114525486678', '雷天榮', 0, '+1 312-952-7261', 1, '502628891257433405', '501 Pedway Suite 23, Chicago, IL 60601, United States', '1991-03-22', 0, 0, 'twloui1107', '2020-03-04', 'twlo', '2009-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS235492618841', '郭秀英', 0, '+1 718-400-1187', 2, '363745874748414442', '992 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1991-03-08', 0, 0, 'xiuyingg101', '2019-01-31', 'gxiu1', '2019-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS663408717369', '前田蓮', 1, '+86 189-4659-4063', 3, '995397463405206450', '中国北京市延庆区028县道493号25楼', '1987-09-18', 0, 0, 'rmaeda508', '2008-12-29', 'maeren', '2016-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS699360813049', '元安娜', 0, '+86 755-9167-6350', 2, '632918002160462671', 'No.30 building, 973 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-04-13', 0, 0, 'onyu', '2021-09-25', 'onna720', '2016-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS460060170757', '陶思妤', 1, '+86 195-1991-5831', 1, '851656864245423161', 'Room 12, CR Building, 691 Lefeng 6th Rd, Zhongshan, China', '1990-01-08', 0, 0, 'syt', '2003-04-11', 'syt', '2003-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS815189788265', '梁震南', 1, '+1 213-852-2810', 2, '237988962606491631', '793 Figueroa Street Apartment 42, Los Angeles, CA 90037, United States', '1998-04-18', 0, 0, 'zhennan1941', '2015-05-28', 'zhennanliang95', '2005-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS536241953620', '田村大和', 0, '+81 70-9442-4810', 3, '016553920962475834', '33-kai, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-14', 0, 0, 'yamatota', '2003-12-18', 'tamuray', '2006-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS231938610780', '毛子异', 1, '+86 153-1523-7679', 2, '244797474166879421', 'Room 2, 456 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-05-21', 0, 0, 'ziyi1968', '2004-05-07', 'mao7', '2008-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS916657981235', 'Patricia Salazar', 0, '+81 90-1237-1860', 3, '982290858208104400', 'Rm. 7, 3-9-18 Gakuenminami, Nara, Japan', '1994-06-20', 0, 0, 'patricia1', '2005-07-17', 'patrsala', '2012-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS464045268402', '薛秀文', 0, '+86 760-3769-4785', 1, '405826353705257756', 'No.34 building, 560 Lefeng 6th Rd, Zhongshan, China', '1997-10-05', 0, 0, 'sit3', '2010-03-17', 'ssm', '2019-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS058608771151', 'Helen Hawkins', 1, '+86 21-7180-4799', 1, '942906501283710864', 'Room 8, 896 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-09-01', 0, 0, 'hawkih', '2008-09-18', 'helenhaw', '2017-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS835093309781', '陶心穎', 1, '+86 192-0319-4498', 0, '227217450557236512', 'No.15 building, 875 Huanqu South Street 2nd Alley, Dongguan, China', '1994-02-15', 0, 0, 'taosw', '2007-01-12', 'taosw2', '2005-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS839844060382', '段杰宏', 0, '+86 186-1449-6152', 1, '011998994735884904', 'Room 1, CR Building, 137 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-11-13', 0, 0, 'jied', '2014-09-17', 'duanji', '2012-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS014784221101', '汪岚', 0, '+86 10-0296-2193', 0, '248929497416187544', '中国北京市朝阳区三里屯路144号23室', '1992-10-01', 0, 0, 'lawan85', '2016-09-17', 'wangl', '2001-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS058812640718', '高世榮', 0, '+86 760-5759-9135', 2, '156770309318560628', '中国中山京华商圈华夏街690号20号楼', '1996-05-31', 0, 0, 'kaosw1966', '2018-07-21', 'saiwingkao630', '2003-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS480056129173', 'Harry Munoz', 1, '+44 5844 901791', 1, '403656830709736771', 'Unit 16, Oxford Eco Centre, 525 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-12-08', 0, 0, 'mha', '2017-04-12', 'harry915', '2018-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS942059867839', 'Clifford Martinez', 0, '+81 11-890-0073', 3, '710963339013173376', '33F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-09-10', 0, 0, 'martinezc', '2011-02-19', 'mclifford', '2007-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS782724017306', '斉藤陸', 0, '+44 7380 355046', 3, '616133965030487765', 'Block 2, 69 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-06-17', 0, 0, 'sr1952', '2006-04-30', 'saito1015', '2013-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS074517658244', '尹慧嫻', 1, '+81 70-1413-2186', 1, '282600229447836280', 'Rm. 9, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-05-15', 0, 0, 'whyin201', '2015-05-22', 'waihanyin', '2004-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS958224980507', '森美羽', 1, '+86 170-3951-1090', 4, '432073344527609503', '中国上海市闵行区宾川路180号华润大厦1室', '1990-10-10', 0, 0, 'morimiu628', '2002-10-12', 'miu112', '2003-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS921394718193', '段晓明', 0, '+81 90-1940-6046', 2, '764913009233157642', '36F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-05-07', 0, 0, 'xiaoming1988', '2014-08-21', 'xiaod11', '2011-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS191614822164', '島田陽菜', 1, '+86 199-4006-4041', 1, '559059975780689093', 'No.17 building, 947 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-06-20', 0, 0, 'shimada3', '2002-11-25', 'shimhina16', '2011-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS086787536952', '王安娜', 1, '+86 21-374-0151', 3, '283675773194553258', '中国上海市黄浦区淮海中路272号42楼', '1993-03-05', 0, 0, 'onwong', '2004-10-30', 'onwong313', '2021-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS468106189095', '前田結翔', 0, '+86 180-1984-9290', 3, '185475444761189120', '中国北京市海淀区清河中街68号424号6楼', '1998-04-28', 0, 0, 'maedayuito', '2008-02-18', 'maeda7', '2019-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS342720147780', 'Josephine Nguyen', 1, '+81 52-376-0266', 1, '280018461908559210', '日本なごやし瑞穂区河岸町四丁目20番5号20階', '1991-10-06', 0, 0, 'josephine8', '2003-10-24', 'njosephine9', '2005-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS917755890181', '陶震南', 1, '+81 90-1201-0832', 3, '767269425741793309', '5F, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-05-23', 0, 0, 'zhenta', '2018-09-09', 'ztao927', '2008-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS766295857204', '姚發', 1, '+1 838-565-9562', 2, '765631874311682726', '341 Central Avenue Apartment 29, Albany, NY 12206, United States', '1991-12-15', 0, 0, 'yefat', '2004-02-17', 'faty', '2001-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS536390848471', '酒井百恵', 0, '+1 213-133-9880', 1, '955826071448154349', '180 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-04-24', 0, 0, 'sakamom', '2013-07-04', 'sakamomoe', '2007-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS053651065682', '吕云熙', 1, '+81 74-155-6402', 3, '492698949713249938', '5F, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-10-11', 0, 0, 'luyunxi', '2020-02-20', 'ylu06', '2017-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS981241318088', '廖國權', 1, '+44 5054 086766', 2, '781889685198016816', 'Block 28, 956 Regent Street, London, W1B 2LX, United Kingdom', '1998-08-05', 0, 0, 'kkliao1963', '2012-06-06', 'kkliao', '2010-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS652506188262', 'Herbert Robertson', 1, '+86 20-158-7508', 4, '521157907113469740', 'No.7 building, 600 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-04', 0, 0, 'robertsonhe', '2005-03-11', 'herbertrobe', '2000-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS131416466362', 'Evelyn Herrera', 0, '+44 7297 226164', 4, '857215120964326033', 'No.12 Main building, 942 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-06-22', 0, 0, 'herreraevelyn225', '2018-12-29', 'evelyherre9', '2008-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS652304138380', '李睿', 0, '+86 190-5233-1562', 2, '538634436183754325', 'Room 29, CR Building, 568 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-12-23', 0, 0, 'lir', '2008-05-23', 'rui510', '2005-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS190492707666', '和田陽太', 1, '+1 838-983-0227', 2, '795962250344493869', '446 Broadway 3rd Floor, Albany, NY 12207, United States', '1990-04-14', 0, 0, 'yotawada2013', '2014-08-17', 'waday', '2019-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS983929058666', '中山大和', 1, '+81 90-3161-9925', 1, '734178750150661248', '日本おおさかし西成区出城一丁目1番3号31号室', '1993-03-22', 0, 0, 'ynakayama97', '2004-07-01', 'yamatonakayama', '2012-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS676356723665', 'Terry Myers', 1, '+81 66-938-7923', 2, '315009450707076214', '日本おおさかし西成区天神ノ森二丁目1番2号48階', '1997-12-05', 0, 0, 'myers69', '2002-06-02', 'terry3', '2007-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS116861592052', '市川健太', 0, '+86 143-0751-4555', 2, '646421160421794144', 'No.34 building, 446 Shanhu Rd, Dongguan, China', '1986-12-03', 0, 0, 'ichikawak', '2012-01-31', 'kenta10', '2001-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS236820514026', '樂梓軒', 0, '+86 28-2871-4663', 0, '044277716279695655', 'No.36 building, 635 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-01-24', 0, 0, 'thlo', '2007-03-04', 'thlok', '2004-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS436949020003', '成家文', 1, '+81 80-6730-3012', 4, '397394655428570154', '30-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1994-04-25', 0, 0, 'kmshing', '2021-02-12', 'kamas', '2000-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS231590937661', 'Melvin Torres', 0, '+44 (116) 855 9764', 1, '597986749348522753', 'Unit 2, Oxford Eco Centre, 878 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-01-08', 0, 0, 'metor', '2006-07-06', 'melvin1228', '2000-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS912990568104', '田明', 1, '+1 718-646-6198', 3, '511933693913636372', '539 Bergen St Apartment 30, Brooklyn, NY 11217, United States', '1985-01-29', 0, 0, 'ming719', '2005-09-15', 'tinm802', '2014-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS683269588573', '韓青雲', 0, '+81 80-3812-6018', 1, '373493535423732316', '日本おおさかし平野区加美東四丁目9番7号43号室', '1995-07-01', 0, 0, 'chingwan721', '2012-10-19', 'cwhan8', '2009-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS955711632980', 'Raymond Russell', 1, '+81 74-557-0605', 2, '536339701735267051', 'Rm. 3, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1999-01-29', 0, 0, 'russeraymond', '2006-06-08', 'rayruss', '2009-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS607485626947', '杨岚', 0, '+44 (1865) 44 1645', 2, '624589138147355815', 'Unit 37, Oxford Eco Centre, 72 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-11-28', 0, 0, 'yanglan827', '2005-09-22', 'lanyang', '2018-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS185228719091', '戴宇宁', 1, '+44 7038 980249', 0, '656839627480665652', 'No.42 Main building, 801 Maddox Street, London, W1S 1PU, United Kingdom', '1996-09-12', 0, 0, 'dyuning710', '2003-05-12', 'dai1978', '2021-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS537583030303', 'Raymond Thompson', 1, '+86 20-200-8742', 0, '936003810642680764', 'No.33 building, 562 Tianhe Road, Tianhe District, Guangzhou, China', '1986-12-21', 0, 0, 'rathompson', '2012-03-02', 'raymt', '2006-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS173824377161', '黎晓明', 0, '+44 (161) 866 5738', 2, '510919995558445186', 'Flat 12, 232 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-06-06', 0, 0, 'lixiaoming1015', '2011-05-06', 'xiaomingli', '2008-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS687856501089', '何安琪', 0, '+81 80-7324-6329', 1, '801122919597594384', '21-kai, 2-5-3 Chitose, Atsuta Ward, Nagoya, Japan', '1994-02-14', 0, 0, 'ahe', '2002-11-30', 'heanqi', '2008-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS652878407281', '野村大地', 0, '+86 137-3134-9802', 1, '177172521103179181', '中国北京市东城区东单王府井东街280号47室', '1995-12-10', 0, 0, 'dan', '2020-09-13', 'daichinomura', '2021-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS669919375922', '杜杰宏', 0, '+86 181-5371-2089', 2, '828798137463231210', '中国中山京华商圈华夏街680号47号楼', '1998-04-02', 0, 0, 'duji', '2017-04-02', 'dujiehong', '2009-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS773416761397', '吕嘉伦', 0, '+44 5246 315045', 3, '401135673964876975', 'Block 39, 325 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-01-18', 0, 0, 'luj', '2000-12-10', 'lj80', '2008-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS488784049403', '柴田大地', 0, '+86 10-2048-7395', 2, '383178946880639319', '中国北京市東城区東直門內大街573号21室', '1989-01-13', 0, 0, 'daichishi', '2018-11-30', 'sdaichi94', '2002-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS407748172002', '苗小慧', 1, '+86 755-272-6586', 1, '046637994871582918', '26F, 351 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-02-24', 0, 0, 'miu3', '2002-10-12', 'misiuwai', '2009-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS664729145587', '余宇宁', 1, '+81 80-4043-6726', 1, '057924563592488205', '日本ならし学園南三丁目9番8号32階', '1991-01-25', 0, 0, 'yuningyu', '2021-05-21', 'yuy', '2003-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS723731534533', 'Stanley Robertson', 1, '+81 74-697-1337', 2, '057698343426974604', '日本ならし西大寺赤田町一丁目7番19号6階', '1988-05-16', 0, 0, 'robertson8', '2014-04-17', 'stanleyro923', '2013-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS916196066146', 'Barbara Stevens', 0, '+81 74-283-1554', 0, '207615795348963121', 'Rm. 35, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-11-21', 0, 0, 'barbara6', '2000-09-24', 'stevensbarbara', '2009-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS357129132559', '白志遠', 0, '+44 (20) 0211 9905', 4, '869910647779466186', 'Unit 21, Oxford Eco Centre, 209 Pollen Street, London, W1S 1NG, United Kingdom', '1992-08-15', 0, 0, 'pak607', '2013-12-28', 'pakchiy925', '2014-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS935125687834', '木村葉月', 1, '+81 11-326-7153', 3, '767642969398503076', '42F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-12', 0, 0, 'kimura4', '2011-08-20', 'kimuraha', '2005-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS927871398515', '中森愛梨', 0, '+81 80-3082-2306', 3, '380603573960122944', '5F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-12-02', 0, 0, 'airin228', '2007-07-24', 'nakairi', '2020-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS136538228352', '方家強', 0, '+86 159-9776-2160', 2, '711097963888453753', 'Room 11, CR Building, 208 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-10-24', 0, 0, 'kakeungf7', '2004-03-07', 'kakeungfo', '2020-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS009612662465', '河野桜', 1, '+44 (116) 518 2941', 2, '567935595123541463', 'Unit 1, Oxford Eco Centre, 50 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-09-03', 0, 0, 'konosakura', '2020-03-19', 'sakura4', '2008-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS998558483590', '龚璐', 0, '+44 5844 551802', 3, '735444200276663446', 'No.2 Main building, 635 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-10-03', 0, 0, 'lugong', '2017-11-09', 'glu', '2016-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS412719605617', 'Judy Gibson', 1, '+44 7323 564685', 1, '889820283018042006', 'Block 4, 226 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-09-04', 0, 0, 'judygibs908', '2017-03-01', 'judygib', '2020-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS646837059442', '何致远', 0, '+1 614-920-9545', 2, '622926631135288271', '392 East Cooke Road Suite 48, Columbus, GA 43214, United States', '1987-10-16', 0, 0, 'he96', '2010-08-09', 'zhiyuh', '2006-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS588520851710', '孙安琪', 1, '+1 718-282-6353', 2, '117677405781599162', '949 Bergen St Suite 39, Brooklyn, NY 11217, United States', '1987-07-03', 0, 0, 'anqi1964', '2011-02-15', 'suanqi112', '2019-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS712234989234', '松井玲奈', 0, '+81 80-1875-2846', 4, '436080652735331387', 'Rm. 12, 2-5-19 Chitose, Atsuta Ward, Nagoya, Japan', '1992-09-04', 0, 0, 'rmatsu5', '2017-12-06', 'matsurena', '2015-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS690547299596', '武宇宁', 1, '+81 70-6579-4868', 1, '898261182770930099', '日本札幌厚別区上野幌一条二丁目1番14号48号室', '1996-11-21', 0, 0, 'wu127', '2016-12-22', 'yuning1981', '2012-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS678192108357', '湯國權', 1, '+86 175-1250-5872', 4, '847875655244560954', '中国深圳福田区景田东一街37号15室', '1995-08-21', 0, 0, 'tong85', '2008-03-09', 'tonkk1009', '2021-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS078312106932', '孫學友', 0, '+86 28-7792-0057', 4, '931229126804835082', '中国成都市成华区双庆路933号7栋', '1986-08-17', 0, 0, 'hsuan83', '2014-10-23', 'hsuanhy4', '2012-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS309260205021', '福田詩乃', 1, '+81 70-0267-1325', 2, '946704463229551591', '日本ならし西大寺赤田町一丁目7番6号35階', '1987-05-03', 0, 0, 'fukshin', '2013-10-31', 'fuksh', '2009-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS136846715844', '小野拓哉', 1, '+81 80-2387-4898', 0, '392330917548388049', '日本おおさかし近江堂一丁目7番15号42階', '1987-05-08', 0, 0, 'takuya4', '2010-12-14', 'takuyao', '2004-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS930517818957', 'Katherine Carter', 1, '+1 212-558-7940', 1, '073624819276968521', '131 West Houston Street Suite 4, New York, NY 10014, United States', '1992-03-18', 0, 0, 'katherine1954', '2000-07-05', 'carter8', '2001-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS808516642192', '許力申', 1, '+86 760-205-0164', 1, '616823114334512526', '中国中山京华商圈华夏街111号3号楼', '1997-03-06', 0, 0, 'lshu', '2011-11-08', 'hui10', '2006-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS375009520853', '陳淑怡', 0, '+81 3-6824-1663', 2, '352435356513397478', '47-kai, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-24', 0, 0, 'sycha1116', '2006-08-14', 'csukyee', '2021-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS139030583864', 'Jamie Fox', 0, '+81 11-842-8423', 4, '269407283508848373', '日本札幌厚別区上野幌一条二丁目1番18号38号室', '1998-02-11', 0, 0, 'fox828', '2020-10-26', 'jamie702', '2015-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS352442419956', '鄺詠詩', 0, '+86 185-5076-7615', 4, '227716746729824613', 'No.6 building, 50 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1991-01-19', 0, 0, 'wskwong', '2021-05-04', 'kwongws811', '2019-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS375588760015', 'Ethel Wright', 1, '+44 7665 224117', 1, '484853566000771374', 'Flat 46, 84 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-01-16', 0, 0, 'wriethel', '2014-03-17', 'ethew', '2002-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS269394424127', '张致远', 0, '+44 7403 715806', 2, '485156521195367982', 'Block 12, 459 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-09-21', 0, 0, 'zhz', '2007-06-23', 'zzhang1212', '2010-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS107591507251', 'Willie Henderson', 1, '+81 74-200-3535', 0, '942083177963381624', '日本ならし大和郡山市本庄町一丁目1番13号12階', '1989-02-05', 0, 0, 'hendew', '2002-03-29', 'willieh9', '2019-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS415193782858', '高慧儀', 0, '+81 52-864-6847', 3, '319752078397640721', '日本なごやし北区清水三丁目19番11号25号室', '1996-11-04', 0, 0, 'kao8', '2002-08-16', 'wykao', '2007-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS094216583705', 'Diane Nichols', 1, '+81 66-486-1238', 1, '803209476734065277', '日本おおさかし近江堂一丁目7番8号36階', '1997-03-21', 0, 0, 'dianichols', '2020-06-08', 'nd86', '2008-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS770473065073', '向發', 1, '+44 7674 248716', 4, '582131942810968179', 'No.4 Main building, 708 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-09', 0, 0, 'faheung', '2018-09-17', 'fath', '2017-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS463339087727', '方子异', 1, '+86 755-2672-1125', 4, '650146476286748606', '中国深圳龙岗区学园一巷895号11号楼', '1990-10-04', 0, 0, 'ziyif65', '2000-12-24', 'zifang1', '2007-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS844486510440', '森美咲', 0, '+81 70-8106-0863', 4, '846379068721824628', '日本札幌厚別区上野幌一条二丁目1番8号31号室', '1996-03-13', 0, 0, 'morimisaki', '2015-04-08', 'mormisa', '2009-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS835305913677', 'Jason Olson', 0, '+1 838-707-6525', 1, '506854795944224566', '290 Broadway Apartment 29, Albany, NY 12207, United States', '1989-08-11', 0, 0, 'olsonjason4', '2010-01-07', 'jolson', '2021-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS852435510896', '雷岚', 1, '+44 (116) 886 5547', 2, '952072172621013175', 'Block 35, 841 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-04-18', 0, 0, 'lalei', '2021-02-25', 'lanlei10', '2020-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS407866285442', '中島葵', 1, '+86 150-5384-0485', 3, '625287019456446240', 'Room 12, 617 028 County Rd, Yanqing District, Beijing, China', '1996-02-24', 0, 0, 'aoinakajima', '2019-02-21', 'nakajima126', '2004-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS519098991065', 'Clifford Kelly', 1, '+86 21-985-6181', 2, '659364327761428840', 'No.29 building, 956 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-06-25', 0, 0, 'cliffordkelly1983', '2019-07-03', 'clifford620', '2019-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS565429183019', '酒井蓮', 1, '+1 213-161-7741', 3, '142626982130130849', '371 S Broadway Apartment 21, Los Angeles, CA 90015, United States', '1993-11-24', 0, 0, 'rens', '2012-08-01', 'sakai810', '2016-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS066467885820', '桜井桜', 1, '+86 131-3110-7988', 0, '054939450304131542', '中国广州市海珠区江南西路855号46室', '1990-03-18', 0, 0, 'sakura10', '2010-09-11', 'saksakura', '2013-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS026582595776', '岡田陸', 1, '+81 11-441-5614', 3, '208304603472485694', '日本札幌中央区宮の森四条六丁目1番15号24階', '1989-05-19', 0, 0, 'riku2005', '2016-11-13', 'oriku1961', '2019-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS214182150222', 'Kim Washington', 0, '+44 (151) 270 7258', 3, '374179889968977085', 'Block 44, 800 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-01-16', 0, 0, 'kim10', '2008-06-20', 'kwashington', '2003-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS540251715555', 'Albert Hill', 0, '+81 74-980-9087', 0, '032448581287693922', '日本ならし西大寺赤田町一丁目7番6号10号室', '1998-10-10', 0, 0, 'hill45', '2003-12-25', 'hill1987', '2006-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS597424227955', 'Esther Lee', 1, '+86 175-5593-0128', 3, '622317126423278086', '中国广州市越秀区中山二路109号30栋', '1994-08-11', 0, 0, 'le1948', '2009-09-14', 'leeesthe', '2017-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS795287572581', 'Pauline Simpson', 0, '+81 70-0552-0333', 4, '454127985419585629', 'Rm. 6, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-08-21', 0, 0, 'simpson10', '2010-01-22', 'sipauline', '2006-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS241872081140', '蔡麗欣', 1, '+86 130-6755-8293', 3, '703893457604470422', 'Room 29, 168 Shanhu Rd, Dongguan, China', '1985-11-22', 0, 0, 'choilaiyan', '2012-11-26', 'choilaiyan1985', '2003-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS642652423335', 'Linda Sanchez', 0, '+81 80-7491-3846', 0, '108048713650111997', 'Rm. 41, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-19', 0, 0, 'lindas61', '2000-10-30', 'lindas2013', '2009-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS249934744924', '狄家文', 1, '+81 66-247-4334', 2, '105178909974709127', 'Rm. 20, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1989-01-23', 0, 0, 'tikm1940', '2013-12-01', 'tkaman101', '2003-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS449648028893', '文德華', 1, '+44 (161) 908 1347', 4, '860698133572998090', 'Block 6, 496 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-12-06', 0, 0, 'matakwah', '2010-11-15', 'man3', '2017-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS714120886939', '江發', 1, '+81 11-696-2203', 3, '134290568424604399', '日本札幌厚別区上野幌一条二丁目1番7号5階', '1988-02-16', 0, 0, 'konfat', '2005-04-27', 'kongfat', '2007-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS126126052871', '馮梓晴', 1, '+44 (1223) 99 6084', 4, '882035545639174044', 'Unit 10, Oxford Eco Centre, 263 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-08-29', 0, 0, 'tszchingfung', '2000-03-10', 'tszchfung', '2010-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS102451606882', 'Marvin Gutierrez', 0, '+81 66-813-5015', 1, '319811049377754171', '日本おおさかし西成区天神ノ森二丁目1番16号49階', '1993-02-25', 0, 0, 'mgutierrez50', '2013-03-20', 'gumar', '2010-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS323833951676', 'Monica Burns', 1, '+81 52-422-5885', 0, '805237174168390392', '日本なごやし瑞穂区河岸町四丁目20番12号41階', '1989-04-15', 0, 0, 'burnsmoni1969', '2018-09-25', 'mb217', '2016-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS767895689219', '韩子异', 1, '+81 11-846-3307', 3, '912671771702337983', '日本札幌白石区菊水三条五丁目2番14号46階', '1989-12-31', 0, 0, 'hanzi', '2006-01-12', 'hanziyi3', '2004-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS248681576698', 'Amy Reyes', 1, '+86 177-2266-0018', 1, '917683545362608387', '中国深圳罗湖区清水河一路819号28号楼', '1991-06-09', 0, 0, 'reyeamy1116', '2002-11-07', 'amreyes8', '2010-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS014622449260', '廖秀文', 0, '+86 194-7846-2910', 4, '766054673473642234', '32F, 952 Shanhu Rd, Dongguan, China', '1994-01-18', 0, 0, 'liasm52', '2014-05-01', 'saumanli', '2001-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS205970012200', '袁潤發', 1, '+81 70-7328-1208', 2, '190234400544434284', '30-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-02-10', 0, 0, 'yfyuen7', '2011-03-23', 'yunfaty', '2014-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS159689290582', '魏杰宏', 1, '+86 10-129-9503', 3, '937603757867013113', '中国北京市朝阳区三里屯路214号15室', '1995-08-02', 0, 0, 'jwei', '2016-08-28', 'jiehwei4', '2021-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS728348914479', '斎藤架純', 1, '+44 (116) 360 1360', 4, '082352645929024591', 'Flat 31, 430 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-09-07', 0, 0, 'saitok', '2018-06-28', 'saito1959', '2015-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS147283744469', '谷裕玲', 0, '+81 70-1367-5494', 4, '162313306064068969', '日本東京港区東新橋一丁目5番19号27階', '1993-12-04', 0, 0, 'yulingkoo7', '2004-01-21', 'yulikoo6', '2009-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS157597952634', '吉田海斗', 1, '+44 7304 692241', 1, '512890849509615750', 'Unit 8, Oxford Eco Centre, 581 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-04-30', 0, 0, 'kay', '2017-02-19', 'kaitoyoshida', '2003-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS449449642772', '毛家玲', 1, '+86 769-2067-3610', 3, '935831986330958002', '中国东莞珊瑚路501号50楼', '1997-10-17', 0, 0, 'klmo1219', '2003-04-21', 'mkl', '2005-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS734008708139', '姜詠詩', 0, '+44 7715 649167', 3, '526732197072015124', 'Flat 4, 164 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1998-06-22', 0, 0, 'wingsze99', '2021-07-19', 'wsc4', '2001-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS041015810603', '横山葉月', 0, '+44 7315 775146', 4, '756822897625979947', 'Flat 22, 698 Portland St, Manchester, M1 3LA, United Kingdom', '1998-09-22', 0, 0, 'yokoyhazuki', '2009-01-23', 'yhaz', '2011-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS346897775825', '河野美羽', 1, '+1 614-557-8063', 1, '913730577847392784', '94 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1997-10-11', 0, 0, 'miukono', '2003-11-15', 'miukono904', '2010-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS320736138767', '李嘉伦', 1, '+81 80-0734-7032', 3, '073208528527080114', '日本おおさかし西成区天神ノ森二丁目1番12号16階', '1985-04-30', 0, 0, 'lijialu1', '2005-08-04', 'jialli413', '2012-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS400583074415', 'Frederick Hernandez', 1, '+86 149-5629-4590', 1, '217322001311563377', '中国深圳罗湖区田贝一路583号24楼', '1995-07-04', 0, 0, 'frederick930', '2009-01-04', 'frederick1015', '2001-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS367175858981', '福田光', 0, '+86 760-827-1757', 1, '915929401299329814', '中国中山紫马岭商圈中山五路586号19楼', '1986-09-30', 0, 0, 'hikarfuku', '2021-04-17', 'hikarufukuda', '2005-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS434941703137', '關淑怡', 0, '+44 5143 649781', 0, '772572946014952944', 'No.25 Main building, 573 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-02-07', 0, 0, 'sykwan3', '2009-08-14', 'sukyeekw', '2017-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS571771906473', '長谷川美咲', 0, '+86 158-3553-7187', 2, '403579502236886550', 'Room 41, CR Building, 181 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-07-17', 0, 0, 'hasegawa7', '2010-10-07', 'mish1', '2008-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS272268998827', '石田葵', 0, '+86 152-8499-3377', 2, '834467024216000963', '中国广州市海珠区江南西路441号21楼', '1990-12-24', 0, 0, 'aoiishid', '2004-11-27', 'aoi82', '2011-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS106514956619', '江發', 1, '+1 312-279-4845', 2, '729772566590786352', '989 Pedway Apt 50, Chicago, IL 60601, United States', '1990-01-23', 0, 0, 'kong1953', '2014-06-21', 'fatkong1217', '2002-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS028348779836', '岩崎愛梨', 1, '+86 20-9302-7534', 4, '674653593770486855', '中国广州市越秀区中山二路744号5栋', '1995-08-07', 0, 0, 'iwasakiai', '2003-04-29', 'iairi', '2000-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS211842060324', 'Gerald West', 0, '+86 20-660-9224', 3, '655849421995569654', '中国广州市越秀区中山二路907号6栋', '1990-11-08', 0, 0, 'geraldwest', '2009-02-10', 'westg1995', '2003-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS716287338908', '鄧秀文', 0, '+44 7794 914268', 2, '704883836161000814', 'Block 13, 720 Maddox Street, London, W1S 1PU, United Kingdom', '1993-03-23', 0, 0, 'saumantan', '2008-05-03', 'saumantang', '2010-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS276954173864', 'Nicole Watson', 0, '+81 74-265-1589', 2, '160626020584732503', '日本ならし学園南三丁目9番19号21号室', '1998-02-06', 0, 0, 'nicolewatson8', '2003-10-24', 'nicole727', '2009-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS247148807544', 'Christina Long', 0, '+1 312-601-5828', 0, '146844085508826721', '752 North Michigan Ave Suite 17, Chicago, IL 60611, United States', '1996-11-12', 0, 0, 'chrilong', '2001-08-26', 'longchri04', '2004-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS700387651945', '常嘉伦', 1, '+86 148-1070-7356', 2, '540840525298550806', '6F, 274 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-09-24', 0, 0, 'changjialun', '2004-08-04', 'chajialun', '2016-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS589561805932', 'Lisa Crawford', 0, '+86 174-8914-3308', 0, '992378088248353097', '中国上海市浦东新区橄榄路302号37楼', '1991-07-13', 0, 0, 'lc5', '2012-05-26', 'lisa618', '2015-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS377428372872', '菅原凛', 1, '+1 614-461-0294', 1, '541312314111454147', '228 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-07-18', 0, 0, 'sugawarari816', '2015-08-10', 'sur311', '2010-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS285283474839', 'Adam Collins', 1, '+81 90-5755-1100', 1, '869243827346044784', '日本東京品川区東五反田五丁目2番17号41階', '1993-09-22', 0, 0, 'cadam8', '2006-12-29', 'coladam', '2014-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS089506521920', '崔嘉欣', 0, '+81 80-2983-1240', 0, '953798696377461512', '日本ならし大和郡山市本庄町一丁目1番11号1階', '1992-06-22', 0, 0, 'choi926', '2010-04-23', 'choi03', '2016-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS975585675913', '高木絢斗', 1, '+1 213-871-4422', 3, '284637431331106594', '143 Alameda Street Apartment 6, Los Angeles, CA 90002, United States', '1998-07-09', 0, 0, 'takagiayato1972', '2020-06-04', 'tay', '2003-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS100229729129', '安藤凛', 1, '+86 152-7999-2698', 3, '743032426610441892', '中国北京市朝阳区三里屯路495号50栋', '1997-07-27', 0, 0, 'ando6', '2003-02-16', 'rina', '2003-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS775613411169', '謝志明', 1, '+81 80-1571-3149', 2, '667457914919880072', 'Rm. 48, 1-7-9 Saidaiji Akodacho, Nara, Japan', '1994-04-09', 0, 0, 'chiming3', '2000-10-09', 'tscm9', '2000-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS123629177880', '杜明', 0, '+44 (1865) 45 6118', 2, '202926394247215252', 'No.23 Main building, 147 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-08-21', 0, 0, 'ming56', '2021-01-25', 'mingto', '2000-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS589592828719', '小川大地', 1, '+1 330-264-4351', 1, '949347170951386393', '768 West Market Street Apartment 41, Akron, OH 44333, United States', '1992-01-01', 0, 0, 'ogawadaichi', '2000-09-06', 'oda1', '2005-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS367773894051', 'Debbie Wood', 0, '+44 7861 796278', 3, '763976018650205949', 'No.41 Main building, 750 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-06-20', 0, 0, 'woodebbie', '2006-07-06', 'debbie7', '2004-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS980058511595', 'Keith Flores', 0, '+86 185-6625-6143', 3, '822673880314941805', 'Room 43, CR Building, 904 028 County Rd, Yanqing District, Beijing, China', '1996-06-14', 0, 0, 'florekeith711', '2016-03-21', 'kflores', '2020-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS599861313735', '杜惠敏', 1, '+44 5927 330245', 2, '475440083269628297', 'Unit 33, Oxford Eco Centre, 521 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-07-15', 0, 0, 'wmto', '2019-10-17', 'towm', '2007-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS576500804649', '金致远', 0, '+1 330-604-8566', 3, '716684943756970911', '809 Ridgewood Road Apt 12, Akron, OH 44321, United States', '1992-08-06', 0, 0, 'zj1991', '2014-11-23', 'zhiyuanjin', '2015-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS533900257417', '馮家強', 0, '+1 330-089-1711', 3, '293347148542473148', '357 Riverview Road Apt 6, Akron, OH 44313, United States', '1986-09-18', 0, 0, 'fung2', '2018-04-03', 'kakeung3', '2020-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS970295413445', '方睿', 1, '+1 330-099-5214', 0, '546516904148163385', '809 Collier Road Apt 45, Akron, OH 44320, United States', '1991-10-05', 0, 0, 'rfan10', '2005-01-21', 'fang1985', '2009-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS152963942860', 'Ronald Chavez', 1, '+86 21-3305-3725', 1, '463852893980335087', 'Room 44, 924 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-04-15', 0, 0, 'cron', '2015-10-07', 'ronald5', '2015-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS246666213008', '横山架純', 1, '+81 3-6303-1177', 3, '048615173327314049', '日本東京千代田区丸の内一丁目6番20号41階', '1991-09-06', 0, 0, 'ykas', '2009-09-28', 'yokkas79', '2010-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS110624129595', 'Kathleen Hill', 0, '+81 70-7060-4589', 0, '241408625743744283', '日本なごやし瑞穂区河岸町四丁目20番10号16階', '1988-10-10', 0, 0, 'hilk17', '2021-09-01', 'hkathleen', '2018-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS556808124291', '黄秀英', 1, '+86 147-6466-6115', 2, '112706974896978157', '37F, 524 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-10-08', 0, 0, 'xiuying6', '2007-09-12', 'xiuh', '2005-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS420479517667', '新井明菜', 0, '+81 80-2840-8973', 3, '183935403944950995', '1-kai, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-07-24', 0, 0, 'akinar', '2011-11-24', 'aakina', '2021-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS095901434702', '杜嘉伦', 1, '+81 52-509-8546', 3, '442752883445998623', '23F, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-23', 0, 0, 'dujialun1', '2004-04-27', 'jialud', '2004-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS183873690923', '卢杰宏', 0, '+1 718-108-1753', 2, '967475867638004108', '199 Nostrand Ave Apt 1, Brooklyn, NY 11216, United States', '1989-04-28', 0, 0, 'jielu', '2012-08-29', 'ljiehong', '2000-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS170865388452', '方宇宁', 1, '+81 80-9661-8058', 1, '716231417153819084', 'Rm. 6, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1990-03-06', 0, 0, 'yufang56', '2006-06-12', 'yuningfan7', '2017-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS800819353996', 'Joshua Mason', 1, '+86 760-7693-5672', 2, '218877332300154567', 'No.20 building, 554 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-01-07', 0, 0, 'joshuamason', '2017-02-23', 'mason9', '2021-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS194804609135', '郝嘉伦', 0, '+81 90-4106-9088', 3, '773115129078587424', '46-kai, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1997-03-09', 0, 0, 'jiha89', '2011-08-20', 'jihao1976', '2008-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS242779922778', 'Virginia Hughes', 1, '+86 145-3407-6496', 4, '236433708422675111', 'No.9 building, 135 028 County Rd, Yanqing District, Beijing, China', '1991-05-04', 0, 0, 'hvirginia', '2016-08-19', 'virginiahughe', '2003-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS272958684349', '向世榮', 0, '+86 142-9170-1120', 3, '742575083874294038', '27F, 387 Binchuan Rd, Minhang District, Shanghai, China', '1995-06-09', 0, 0, 'saiwingh', '2007-06-01', 'saiwing90', '2010-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS435688219804', '任安琪', 0, '+81 3-0278-5237', 1, '607494998511210343', '23F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-10-09', 0, 0, 'anqir', '2016-09-13', 'aren', '2019-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS972808581044', 'Kim Wilson', 0, '+86 149-4707-4416', 3, '146940527723080055', '中国上海市闵行区宾川路439号38栋', '1995-09-21', 0, 0, 'kimwilson6', '2013-11-10', 'wilsonkim', '2018-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS564905744094', '市川大和', 1, '+81 3-4596-9516', 2, '177675730978171483', '日本東京品川区東五反田五丁目2番17号19号室', '1999-01-25', 0, 0, 'ichikawayamato95', '2021-10-29', 'yamatoic', '2010-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS739173862427', 'Diane Shaw', 1, '+1 213-948-7513', 1, '723266252275140153', '805 Wall Street Suite 28, Los Angeles, CA 90003, United States', '1995-06-11', 0, 0, 'shawdiane3', '2018-04-23', 'dianeshaw', '2007-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS982039612984', 'Sarah Wood', 0, '+81 90-2092-6401', 0, '983355617509299496', 'Rm. 6, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-06-10', 0, 0, 'swo', '2013-05-07', 'wood708', '2006-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS746534719064', 'Stephen Morris', 0, '+1 212-477-6155', 1, '901404481332673483', '368 Fifth Avenue Apt 20, New York, NY 10017, United States', '1985-04-13', 0, 0, 'stepmor909', '2009-10-11', 'most9', '2009-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS297679649877', 'Kyle Gomez', 0, '+86 28-3569-1400', 3, '432578379249968430', '中国成都市锦江区红星路三段786号17栋', '1994-01-30', 0, 0, 'kgomez', '2005-02-09', 'kygomez9', '2011-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS349632904308', '遠藤健太', 0, '+44 7837 570033', 3, '943456444244968104', 'Block 35, 62 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-12-03', 0, 0, 'kente', '2021-11-22', 'kenend', '2010-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS744900757772', '後藤明菜', 0, '+86 20-5263-5635', 1, '046073566747364096', '中国广州市天河区天河路277号华润大厦38室', '1994-12-21', 0, 0, 'akig10', '2009-07-03', 'gotoakin', '2003-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS369989619883', '钟嘉伦', 0, '+81 70-0300-5542', 1, '176772146532627719', '日本おおさかし西成区天神ノ森二丁目1番6号11階', '1993-04-21', 0, 0, 'jialuzhong304', '2006-10-05', 'jialuz10', '2006-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS141438658927', '鐘志遠', 0, '+81 52-219-1054', 1, '395133995179290211', '日本なごやし熱田区千年二丁目5番10号33階', '1987-01-05', 0, 0, 'chiyuenchung1102', '2016-11-02', 'chiyuen04', '2002-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS195503544147', '馮詩君', 0, '+86 193-5264-8182', 0, '251166037127809330', '中国上海市浦东新区橄榄路493号46号楼', '1998-05-13', 0, 0, 'szekwanfu223', '2018-06-28', 'fung4', '2003-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS171580150861', '佘天樂', 1, '+44 (116) 006 3676', 2, '402015175784740538', 'Unit 46, Oxford Eco Centre, 438 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-05-05', 0, 0, 'shehtl', '2012-02-27', 'shtl223', '2006-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS061836532407', '錢國權', 1, '+81 90-2630-8790', 1, '990841141170889496', '日本おおさかし西成区出城一丁目1番7号2号室', '1995-10-04', 0, 0, 'chin7', '2018-08-18', 'chinkwokkuen', '2017-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS673152151194', '曾璐', 1, '+81 11-375-0209', 3, '360382622907583054', '日本札幌白石区菊水三条五丁目2番2号42階', '1990-10-22', 0, 0, 'zenglu', '2012-05-04', 'luzeng509', '2007-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS872885312904', '甘永發', 0, '+81 70-7085-2227', 3, '613105576879710750', '32-kai, 5-19-9 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-12-15', 0, 0, 'kawf3', '2021-09-20', 'kamwingfat', '2007-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS534331644138', '甘慧敏', 1, '+44 (161) 279 9843', 1, '104226158292735391', 'Unit 47, Oxford Eco Centre, 897 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-24', 0, 0, 'kam86', '2021-10-07', 'kamwaiman', '2001-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS491994085075', 'Shirley Kelley', 0, '+86 190-9985-4841', 2, '218113819817870534', '中国广州市白云区机场路棠苑街五巷730号25号楼', '1993-04-20', 0, 0, 'kelshirl5', '2015-02-01', 'shirley108', '2000-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS029097007880', '谭宇宁', 1, '+44 5569 152096', 4, '745455427304198075', 'Unit 23, Oxford Eco Centre, 565 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-04-08', 0, 0, 'ytan59', '2017-05-23', 'yunitan2', '2018-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS671106169074', '郝睿', 0, '+81 70-5700-3787', 3, '525554587248708375', '日本東京港区東新橋一丁目5番10号8階', '1992-10-09', 0, 0, 'ruiha', '2000-06-19', 'ruihao', '2000-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS349754354896', '刘子异', 0, '+81 70-8844-9847', 2, '061857748403875900', '19F, 4-9-11 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-10-05', 0, 0, 'ziyili69', '2014-01-21', 'liuzi220', '2003-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS856880931814', 'Joyce Hamilton', 1, '+81 90-8901-7614', 0, '489180205289483521', '日本東京品川区東五反田五丁目2番13号28階', '1995-11-28', 0, 0, 'joycehami', '2020-06-25', 'joycehamilton', '2020-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS453900510074', '毛安琪', 1, '+81 11-084-2018', 0, '706849492041525472', '日本札幌清田区真栄四条五丁目19番7号27号室', '1989-04-30', 0, 0, 'anqi4', '2012-05-31', 'am14', '2015-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS959208486068', '宣永發', 0, '+1 614-600-9066', 3, '333666718374368146', '431 Tremont Road Apartment 24, Columbus, GA 43212, United States', '1995-07-15', 0, 0, 'hsuawf', '2014-12-23', 'wingfathsuan3', '2016-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS230043700707', '袁曉彤', 0, '+81 70-2276-4379', 3, '399829780492109327', '18F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-10-03', 0, 0, 'yuen1', '2007-02-21', 'hiutungyue14', '2001-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS207493160768', '曹天榮', 0, '+81 70-3255-4898', 4, '698394112498866930', '21-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-07-07', 0, 0, 'ctw7', '2004-01-05', 'cho1961', '2018-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS048340141755', 'Carlos Bryant', 0, '+86 21-788-1237', 2, '393994656126914342', '中国上海市黄浦区淮海中路452号15号楼', '1985-04-11', 0, 0, 'bryantcarlo', '2003-10-14', 'cabr506', '2020-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS662733634383', '狄秀文', 1, '+86 10-7368-9995', 2, '020937628925165511', '中国北京市東城区東直門內大街971号华润大厦17室', '1990-09-01', 0, 0, 'sati58', '2020-01-16', 'smti', '2021-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS820734086931', '孟宇宁', 1, '+86 760-562-0634', 4, '417122518954847259', 'No.25 building, 844 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-03-27', 0, 0, 'mengy5', '2018-07-28', 'ymeng', '2008-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS179475143146', '任晓明', 1, '+86 140-0980-9048', 0, '589918456296264642', 'Room 18, 353 Jianxiang Rd, Pudong, Shanghai, China', '1994-09-24', 0, 0, 'xren', '2017-10-11', 'rxiaoming210', '2009-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS752000909133', '内田美緒', 0, '+81 52-440-9961', 1, '539206184753882319', 'Rm. 35, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-03-17', 0, 0, 'miouchi8', '2006-07-06', 'miouchid1956', '2012-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS018577723608', '金子明菜', 1, '+44 (1223) 33 8517', 0, '045909080397355182', 'Flat 9, 710 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-11-19', 0, 0, 'akinakanek1231', '2019-01-11', 'akina51', '2014-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS579657861046', '黄宇宁', 1, '+86 21-679-2853', 2, '670970528425573205', 'No.18 building, 315 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-04-12', 0, 0, 'yuning1002', '2016-12-30', 'huangyu', '2016-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS122460765469', '中森舞', 0, '+81 70-4552-5419', 2, '482429374566719011', '2-kai, 3-9-13 Gakuenminami, Nara, Japan', '1985-08-09', 0, 0, 'mainaka', '2009-04-19', 'mai824', '2005-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS054490299130', '中島葉月', 0, '+86 174-1311-7294', 2, '229749169490421941', '中国中山天河区大信商圈大信南路624号5室', '1988-06-12', 0, 0, 'hazunaka', '2002-06-12', 'hazuki807', '2010-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS100430863616', '西村美咲', 0, '+86 20-9045-4506', 2, '981925593335887304', 'Room 4, CR Building, 170 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-10-04', 0, 0, 'mnishimura', '2016-03-05', 'nishimuram', '2007-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS952681714573', 'Victoria Edwards', 1, '+86 10-295-8901', 1, '125076565723524057', '中国北京市西城区西長安街772号华润大厦15室', '1995-01-22', 0, 0, 'edwards10', '2008-07-23', 'victoria00', '2019-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS137962258123', '胡玲玲', 0, '+1 614-691-1163', 3, '751515696532245002', '391 Wicklow Road Apartment 12, Columbus, GA 43204, United States', '1988-12-26', 0, 0, 'linglingwu', '2019-07-20', 'linglingwu', '2005-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS684024797118', '叶子韬', 1, '+44 (1865) 83 6870', 2, '699512171270176975', 'Block 17, 892 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-04-30', 0, 0, 'zity', '2004-10-26', 'ziye', '2013-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS898008920261', '萬祖兒', 1, '+81 52-506-3996', 0, '720132789780531756', '6-kai, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1992-07-18', 0, 0, 'meng43', '2004-02-04', 'mengchoyee', '2021-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS710335938199', '吉田瑛太', 0, '+81 66-831-1662', 4, '023881877743155779', '日本おおさかし西成区天神ノ森二丁目1番16号27号室', '1993-01-05', 0, 0, 'yoshidae', '2006-06-09', 'yoshida5', '2000-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS924879007910', '卢岚', 0, '+81 90-4300-7572', 4, '847133505521262141', '日本東京品川区東五反田五丁目2番6号50階', '1994-01-31', 0, 0, 'lulan', '2005-01-20', 'lu10', '2017-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS387189562919', '崔國賢', 1, '+86 182-0814-5899', 3, '550693749118425839', 'No.3 building, 173 Sanlitun Road, Chaoyang District, Beijing, China', '1994-04-10', 0, 0, 'kwokyincho', '2005-12-05', 'kwokyinchoi1', '2016-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS349782172087', '孫浩然', 1, '+86 143-4977-7667', 3, '574975816927064165', 'Room 34, 414 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-12-18', 0, 0, 'hsuanhoyin59', '2009-07-17', 'hhoyin', '2000-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS253738740854', '渡部明菜', 0, '+81 70-0171-6081', 3, '286390126238525937', '23F, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-12-16', 0, 0, 'akina5', '2001-09-17', 'akinw', '2011-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS136252351297', 'William West', 1, '+1 213-529-9185', 3, '177661588055049047', '186 Wall Street Suite 23, Los Angeles, CA 90003, United States', '1995-09-20', 0, 0, 'wilwes', '2020-05-03', 'wewilliam03', '2000-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS524281520163', '顧秀文', 1, '+1 614-972-5925', 1, '544516059759355395', '165 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1996-06-21', 0, 0, 'kusauman', '2002-12-23', 'saumank', '2013-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS354022683180', 'Aaron Moore', 1, '+86 21-1213-8760', 3, '650475338295332275', 'Room 16, CR Building, 677 Jianxiang Rd, Pudong, Shanghai, China', '1997-12-06', 0, 0, 'aaronm', '2001-09-04', 'aaronmoore', '2000-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS972965225705', '雷仲賢', 0, '+1 614-363-7157', 2, '861853460797670395', '137 East Alley Suite 45, Columbus, GA 43201, United States', '1990-07-28', 0, 0, 'lchungyin', '2009-12-30', 'cyloui09', '2019-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS283526468836', 'Jacqueline Alvarez', 0, '+86 146-2496-5583', 2, '658706177443586752', 'Room 14, CR Building, 140 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-05-23', 0, 0, 'jacqualvarez2', '2002-12-10', 'jacquelineal', '2012-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS060395442574', '山田健太', 0, '+86 10-024-1091', 0, '391111618414330099', '30F, 368 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-04-11', 0, 0, 'yamadakenta6', '2005-11-20', 'kyamada', '2007-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS515077825073', '傅天榮', 1, '+1 213-624-2299', 1, '208206569865659508', '87 Wall Street Apartment 43, Los Angeles, CA 90003, United States', '1985-09-07', 0, 0, 'tinwingfu814', '2019-04-10', 'fu2012', '2012-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS806522238994', 'Clarence Ryan', 1, '+86 755-1228-0884', 0, '247797615284512277', '中国深圳龙岗区学园一巷789号35室', '1994-01-09', 0, 0, 'ryanclar1958', '2008-12-19', 'ryanclar', '2002-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS218501774153', '邹睿', 1, '+81 90-1484-5625', 2, '837232326062612483', '22F, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-10-03', 0, 0, 'zoru', '2017-08-01', 'zourui89', '2007-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS429673792604', '楊富城', 1, '+81 74-802-6286', 1, '293098596481192126', '日本ならし西大寺赤田町一丁目7番15号12号室', '1994-08-20', 0, 0, 'yeungfus', '2019-06-21', 'fsyeung85', '2001-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS843326685481', '野村優奈', 1, '+1 330-123-5621', 1, '756578005763800499', '325 Fern Street Suite 39, Akron, OH 44307, United States', '1996-11-19', 0, 0, 'yunanomura', '2017-01-23', 'nomurayun1024', '2013-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS271361814296', '蘇朝偉', 1, '+81 3-7455-2937', 2, '934760668796327055', '29-kai, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-04-08', 0, 0, 'schiuwai2', '2002-06-15', 'cwso', '2021-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS741415493636', 'Luis Mason', 1, '+81 70-8676-8104', 2, '018399252003227861', 'Rm. 7, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1988-04-20', 0, 0, 'luismas', '2008-03-29', 'masonlui', '2017-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS667855755632', '尹致远', 0, '+81 52-827-2284', 1, '706368249033200417', '日本なごやし熱田区千年二丁目5番10号29階', '1985-08-22', 0, 0, 'yin801', '2019-08-11', 'zhyin', '2018-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS589675148732', '陶家明', 0, '+86 163-9550-6542', 1, '744310805465312896', 'Room 41, 271 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1997-06-18', 0, 0, 'tao89', '2016-06-29', 'takm', '2010-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS471034615180', '佐々木美羽', 1, '+81 70-2169-7062', 2, '316477921989276326', 'Rm. 14, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-12-11', 0, 0, 'sasakm', '2008-12-27', 'sasami', '2005-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS041027445504', 'Virginia Webb', 0, '+86 10-881-1138', 3, '728993862316057620', 'No.48 building, 8 Yueliu Rd, Fangshan District, Beijing, China', '1991-07-27', 0, 0, 'webb6', '2002-11-15', 'virgwebb1017', '2016-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS265221481722', '任璐', 0, '+81 70-7595-4796', 4, '185282957988005846', '38-kai, 5-19-11 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-09-15', 0, 0, 'renlu', '2011-04-25', 'renlu10', '2019-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS331725823183', '野村海斗', 0, '+86 197-0081-9593', 3, '212367697505839839', 'Room 16, CR Building, 268 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-11-26', 0, 0, 'nomurkaito3', '2014-02-06', 'nomk', '2013-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS357178946193', '高田和真', 1, '+44 (1865) 72 2108', 0, '302636204668500173', 'No.5 Main building, 991 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-10-21', 0, 0, 'kazutakada9', '2013-07-23', 'tk1951', '2015-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS963737046179', '木下美羽', 0, '+81 70-4319-6840', 1, '261587809521491085', '日本なごやし守山区瀬古東二丁目171番19号11号室', '1997-07-29', 0, 0, 'kinosmi', '2007-05-09', 'kinomi3', '2007-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS544741472772', '上野詩乃', 1, '+81 90-3283-0330', 4, '685137591355861224', 'Rm. 48, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-10-11', 0, 0, 'ueno9', '2010-12-27', 'ueno1973', '2018-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS767994409540', '石川蒼士', 1, '+44 5818 842399', 4, '601219371765850409', 'Unit 41, Oxford Eco Centre, 799 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-07-22', 0, 0, 'aoshiishik', '2009-09-29', 'ishikawa505', '2015-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS688584817307', 'Monica Gomez', 0, '+1 330-926-9450', 0, '678974130554966999', '327 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-02-23', 0, 0, 'gomezmonica', '2001-01-18', 'monicag', '2002-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS379421909936', '宮崎翼', 0, '+44 5401 827019', 2, '758023610668287614', 'Block 48, 572 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-06-02', 0, 0, 'tsubami', '2010-02-07', 'miyazakits7', '2005-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS319901889548', 'Judy Sanders', 1, '+1 614-081-3488', 3, '191512054623654558', '663 Wicklow Road Apt 4, Columbus, GA 43204, United States', '1994-05-17', 0, 0, 'sjudy', '2015-12-09', 'sanders69', '2014-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS247879078953', '官朝偉', 0, '+44 5028 025160', 1, '123627485897276070', 'Flat 50, 165 Portland St, Manchester, M1 3LA, United Kingdom', '1992-07-05', 0, 0, 'cwkoo', '2002-01-22', 'cwkoon526', '2006-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS130510044544', '渡辺玲奈', 0, '+1 330-586-3870', 0, '493969963889341772', '851 Riverview Road Suite 50, Akron, OH 44313, United States', '1991-08-27', 0, 0, 'rena6', '2007-10-31', 'rena6', '2021-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS016586308748', '徐慧儀', 0, '+86 760-6139-7958', 1, '330447553842117800', '中国中山乐丰六路127号21室', '1993-01-24', 0, 0, 'tsui44', '2021-09-18', 'waiyet', '2015-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS129203055616', 'Lee Owens', 0, '+81 3-4272-6399', 4, '604663585341131313', '日本東京渋谷区代々木二丁目3番15号42号室', '1996-11-14', 0, 0, 'leeowen', '2011-08-11', 'owlee', '2014-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS443816137777', 'Michelle Harris', 1, '+86 186-3713-7642', 1, '830289604000263994', '中国北京市东城区东单王府井东街285号20室', '1985-08-25', 0, 0, 'michelle113', '2005-04-24', 'micheharris1978', '2012-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS796089705288', '萬安琪', 1, '+1 718-158-6367', 3, '234672464498008474', '772 Bergen St Suite 21, Brooklyn, NY 11217, United States', '1995-01-22', 0, 0, 'onkayme', '2005-04-16', 'mengonkay83', '2006-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS669776741696', 'Miguel Coleman', 1, '+81 80-4242-2256', 1, '486835019362781884', 'Rm. 15, 3-9-10 Gakuenminami, Nara, Japan', '1990-06-17', 0, 0, 'colemanm', '2010-08-11', 'miguelcoleman', '2010-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS192846102523', '渡辺美羽', 1, '+1 718-907-4619', 3, '023387571598324163', '676 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-07-27', 0, 0, 'miu9', '2019-11-24', 'satm', '2008-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS088050586087', '田村百恵', 0, '+81 80-0077-4022', 2, '905291881171543621', '日本札幌中央区宮の森四条六丁目1番9号17号室', '1996-06-23', 0, 0, 'momoet1031', '2016-08-15', 'tamurm', '2020-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS314592948806', 'Lillian Mason', 1, '+81 80-0185-0053', 1, '263099722544285058', '日本東京港区東新橋一丁目5番10号40階', '1986-03-19', 0, 0, 'malilli', '2008-04-27', 'masolillian1009', '2014-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS277183289855', '吳學友', 1, '+86 144-8017-9613', 2, '092232916537218984', 'No.46 building, 226 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-09-10', 0, 0, 'nghokyau', '2005-11-05', 'hyng7', '2019-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS595577542165', 'Anne Long', 0, '+81 70-4973-5173', 2, '992298799762083236', '日本東京港区東新橋一丁目5番7号37階', '1989-05-05', 0, 0, 'annelong', '2000-12-20', 'annel630', '2018-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS418778838114', '武宇宁', 0, '+86 755-7870-5920', 4, '388115969550389624', 'Room 37, CR Building, 147 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-06-17', 0, 0, 'wuyuning', '2010-07-08', 'yuwu225', '2005-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS572034001047', '坂本明菜', 1, '+44 7543 656957', 3, '814690011630557318', 'Block 7, 237 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-05-29', 0, 0, 'akisa', '2010-05-05', 'sakamoto6', '2002-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS477931890595', 'Henry Patterson', 0, '+81 70-6848-6716', 2, '328997790589693686', '日本東京品川区東五反田五丁目2番6号40階', '1991-12-27', 0, 0, 'hep', '2009-03-06', 'pattersonh', '2003-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS161909742125', '段宇宁', 0, '+1 614-776-8161', 3, '967731355400116593', '379 Wicklow Road Apt 19, Columbus, GA 43204, United States', '1991-07-25', 0, 0, 'yuning121', '2009-04-20', 'duanyu8', '2002-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS923622515096', 'George Rodriguez', 1, '+86 20-691-5705', 4, '575038395132177399', '32F, 55 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-03-08', 0, 0, 'grodriguez', '2003-03-03', 'rodriguezgeorg17', '2006-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS132556386553', '孔嘉伦', 0, '+81 74-628-1455', 1, '968576274589210876', '日本ならし学園南三丁目9番19号45階', '1985-05-25', 0, 0, 'jialukong308', '2002-05-18', 'jiakon5', '2014-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS391321359030', '顾嘉伦', 0, '+1 213-942-6875', 4, '407111072622814621', '122 S Broadway Suite 7, Los Angeles, CA 90015, United States', '1995-11-22', 0, 0, 'jiag', '2009-01-09', 'gu122', '2021-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS265202834978', '王璐', 1, '+81 11-289-5747', 3, '712460003287910709', '2F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-04-23', 0, 0, 'wang58', '2011-10-21', 'luwang', '2009-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS021315397880', '工藤健太', 1, '+81 70-0120-1892', 2, '611513591994919695', '10-kai, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1986-02-27', 0, 0, 'kuk3', '2007-06-16', 'kudok', '2018-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS140112066764', '梁子韬', 0, '+81 70-6771-8229', 0, '476305602149775824', '日本おおさかし平野区加美東四丁目9番10号9号室', '1988-10-07', 0, 0, 'lizit5', '2010-12-27', 'zliang', '2019-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS929967569702', 'Mildred Harris', 0, '+86 169-2806-4470', 1, '510916493473464703', '中国成都市成华区双庆路902号17楼', '1997-05-19', 0, 0, 'mildrha', '2010-10-22', 'mildredha2000', '2009-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS694541755236', '蔣梓軒', 0, '+1 213-459-1467', 4, '045587182860059743', '363 Figueroa Street Apt 1, Los Angeles, CA 90037, United States', '1988-10-21', 0, 0, 'chiatszhin813', '2000-07-16', 'tszhinchiang3', '2020-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS584145863389', '杜祖兒', 1, '+86 20-2552-2124', 3, '704170471263823017', '中国广州市白云区机场路棠苑街五巷260号31栋', '1987-03-08', 0, 0, 'choyee1222', '2001-05-01', 'choyeeto822', '2009-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS537958643320', '森田陸', 1, '+81 66-397-9907', 2, '698767523624599688', '日本おおさかし東住吉区東田辺三丁目27番14号7号室', '1991-06-27', 0, 0, 'moritariku3', '2009-09-19', 'riku8', '2016-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS991476638351', '杉山翼', 1, '+44 7611 146387', 1, '426154991431022494', 'Unit 13, Oxford Eco Centre, 793 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-08-24', 0, 0, 'sugitsubasa1', '2006-01-25', 'stsubasa', '2015-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS284761129948', '大塚蓮', 0, '+44 (161) 899 5102', 4, '500107047106403616', 'No.37 Main building, 475 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-01-13', 0, 0, 'reno4', '2001-01-17', 'ren1201', '2006-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS388456757743', 'Irene Morales', 1, '+81 90-0838-4667', 0, '249562968523424785', '42F, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-09-26', 0, 0, 'irenemorales', '2015-07-07', 'mirene1204', '2018-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS080788686887', '董云熙', 0, '+81 70-5067-6019', 3, '248240208680822939', '日本なごやし北区清水三丁目19番16号45階', '1997-12-05', 0, 0, 'yunxdong83', '2005-06-30', 'yundo513', '2012-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS457958179400', 'Joan Evans', 0, '+86 173-9687-7029', 2, '753352627752132596', 'No.36 building, 198 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-12-06', 0, 0, 'ejoa', '2007-11-21', 'joe', '2014-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS499470970004', '洪霆鋒', 1, '+86 192-9705-1415', 4, '500514120323543164', '中国北京市西城区复兴门内大街221号42栋', '1996-03-12', 0, 0, 'tingfunghung', '2020-10-08', 'hungtingfung7', '2005-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS082351152568', '黃玲玲', 0, '+81 52-961-2715', 2, '658357353342302411', '日本なごやし北区楠味鋺三丁目80番12号19号室', '1993-01-22', 0, 0, 'linglingwong3', '2016-03-01', 'wong49', '2002-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS642175414221', '馬麗欣', 1, '+86 137-7919-0162', 4, '823136170640205465', '中国深圳福田区景田东一街427号37室', '1998-12-18', 0, 0, 'laiyanma', '2013-10-28', 'lym', '2001-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS587409105056', '岡本美緒', 0, '+44 5159 488675', 3, '702784899789135810', 'No.13 Main building, 508 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-02-09', 0, 0, 'mioo', '2006-10-28', 'okamotomio', '2021-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS159650379704', '杨致远', 0, '+1 838-302-4424', 3, '207077698960927044', '724 Central Avenue Suite 13, Albany, NY 12206, United States', '1988-06-19', 0, 0, 'yang2', '2014-12-26', 'yanz', '2003-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS899892443898', '武子韬', 1, '+86 10-9690-3812', 1, '014621112469055696', '39F, 640 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-11-28', 0, 0, 'wu7', '2007-09-15', 'zitwu', '2003-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS202552622353', '胡岚', 1, '+44 7195 209244', 2, '083308586474872919', 'Flat 28, 844 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-12-08', 0, 0, 'hlan', '2009-10-12', 'hl1010', '2014-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS945571669474', '熊睿', 1, '+86 755-6184-1155', 0, '256876330989463015', '中国深圳福田区深南大道274号华润大厦23室', '1994-07-03', 0, 0, 'ruixiong329', '2011-07-30', 'xiorui', '2021-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS447874488703', '加藤光莉', 1, '+1 312-889-8836', 3, '552230293219737012', '324 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1998-10-25', 0, 0, 'hikka', '2013-02-25', 'khikari', '2006-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS425664858529', '尹嘉伦', 1, '+1 213-910-6262', 0, '019393669981559677', '540 S Broadway Apt 42, Los Angeles, CA 90015, United States', '1991-12-06', 0, 0, 'yin1124', '2012-04-12', 'yjial', '2014-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS090555201966', '黄睿', 1, '+81 70-1311-6097', 2, '311965922702130247', '28F, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-02-05', 0, 0, 'hru', '2020-01-30', 'rui16', '2008-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS613446993299', '容麗欣', 1, '+86 760-3691-1253', 2, '444495015885186087', '中国中山天河区大信商圈大信南路469号华润大厦36室', '1994-04-19', 0, 0, 'yungly5', '2006-08-24', 'yunglaiyan3', '2005-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS209143523978', '鄭杰倫', 1, '+86 755-6434-8979', 1, '551073623556354068', 'No.16 building, 95 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-06-30', 0, 0, 'cheng1127', '2019-03-13', 'chchiehlun', '2009-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS363690321465', 'Julia Stone', 0, '+81 70-2695-4763', 0, '507959768591098684', '日本ならし西大寺赤田町一丁目7番10号9階', '1986-12-07', 0, 0, 'stonjul', '2015-11-01', 'stonej4', '2014-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS862544176284', '莫志明', 0, '+86 760-119-3967', 3, '043948059995803538', '中国中山紫马岭商圈中山五路531号27楼', '1993-05-25', 0, 0, 'mokcm', '2005-11-27', 'chiming10', '2002-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS428300739929', '藤國明', 0, '+1 213-475-4587', 2, '598822808739326467', '943 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-05-19', 0, 0, 'tangkm', '2011-01-12', 'kmtang1983', '2020-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS583871553122', '严子异', 0, '+81 11-660-1222', 1, '902975927970404901', 'Rm. 35, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-04-05', 0, 0, 'yziy3', '2005-09-06', 'yanzi411', '2014-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS487597927884', '増田結翔', 0, '+86 21-5500-8898', 2, '978544228769407069', 'No.45 building, 108 Jianxiang Rd, Pudong, Shanghai, China', '1992-07-13', 0, 0, 'masudayui425', '2003-02-21', 'yuitomasuda112', '2011-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS159205734977', '任秀英', 0, '+1 330-250-0783', 0, '240732210968080212', '613 Collier Road Apartment 10, Akron, OH 44320, United States', '1995-01-01', 0, 0, 'xiuyingren', '2016-09-10', 'renxiuying', '2004-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS721514198754', '加藤優奈', 1, '+44 7638 566157', 0, '461686902097995968', 'Flat 43, 478 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1990-04-10', 0, 0, 'kato816', '2006-01-08', 'yunkat', '2001-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS664466573591', 'Earl Lopez', 1, '+86 159-3062-0613', 2, '970480776157915895', 'Room 18, CR Building, 779 Shennan Ave, Futian District, Shenzhen, China', '1992-08-03', 0, 0, 'earllopez', '2018-06-27', 'lopez2000', '2016-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS747426512405', '石田大和', 1, '+86 769-8092-1262', 1, '954743841034877474', 'Room 36, 327 Kengmei 15th Alley, Dongguan, China', '1994-11-29', 0, 0, 'yamishida', '2020-09-17', 'yamatoish', '2004-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS370616752373', 'Benjamin Lewis', 0, '+1 330-287-4369', 0, '036550644780429811', '542 Fern Street 3rd Floor, Akron, OH 44307, United States', '1986-11-19', 0, 0, 'benjamin1966', '2011-07-01', 'lewisbenjamin', '2008-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS794939808858', '苑祖兒', 0, '+86 176-6318-2943', 1, '363563171586823994', '中国广州市天河区天河路894号2号楼', '1985-03-14', 0, 0, 'cyyuen', '2019-04-16', 'yuency', '2006-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS276117096620', '餘頴思', 0, '+1 330-442-5996', 1, '436156680880001147', '123 Riverview Road Apartment 33, Akron, OH 44313, United States', '1990-03-25', 0, 0, 'yuews', '2017-06-07', 'wingsze5', '2016-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS638533225245', '譚榮發', 0, '+44 7632 994600', 2, '518044966000068068', 'Flat 23, 435 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-02-05', 0, 0, 'tamwf401', '2017-06-17', 'tam1989', '2001-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS075448023818', '小野愛梨', 0, '+81 70-7504-8504', 3, '832940271797330312', '16-kai, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-17', 0, 0, 'aono05', '2007-04-12', 'airi3', '2010-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS927930344539', '鄭潤發', 1, '+1 718-763-8911', 1, '371137794897320564', '158 Columbia St Apt 24, Brooklyn, NY 11231, United States', '1993-02-27', 0, 0, 'chengyunfat', '2014-02-12', 'yunfatche', '2017-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS797024501700', 'Alice Ryan', 1, '+44 5013 294450', 4, '627049423749005343', 'No.9 Main building, 459 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-12-31', 0, 0, 'rya', '2004-02-07', 'alicryan', '2009-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS375483330998', '戴云熙', 0, '+44 5621 470675', 2, '061468450070461237', 'Unit 45, Oxford Eco Centre, 985 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-09-09', 0, 0, 'daiyunxi', '2016-03-01', 'daiy53', '2001-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS544904765451', '阿部美羽', 1, '+86 28-7171-8912', 1, '845652105127370753', '中国成都市成华区玉双路6号749号38栋', '1991-05-19', 0, 0, 'miua', '2011-01-03', 'miua', '2021-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS819312202820', '井上瑛太', 0, '+81 3-2047-2461', 1, '749864624439467309', '日本東京品川区東五反田五丁目2番3号36階', '1994-03-25', 0, 0, 'inoueita', '2011-09-03', 'inoueei', '2008-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS602343132605', '周發', 1, '+86 158-4692-3339', 2, '999713503507965011', '中国中山乐丰六路339号21栋', '1993-06-26', 0, 0, 'fachow', '2008-12-15', 'chowfat', '2020-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS401696332868', 'Brian Smith', 0, '+1 312-966-0454', 3, '959049623260984562', '750 Pedway Apartment 6, Chicago, IL 60601, United States', '1995-05-12', 0, 0, 'brian9', '2002-08-27', 'sb1229', '2005-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS396766563854', '董岚', 0, '+86 21-4511-1980', 3, '359796742960569314', '18F, 156 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-05-08', 0, 0, 'lando10', '2003-05-14', 'dla', '2015-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS399627117380', '薛曉彤', 0, '+81 66-203-9229', 2, '572346645037449013', '日本おおさかし東住吉区東田辺三丁目27番7号5階', '1993-02-08', 0, 0, 'siht8', '2020-09-20', 'sithiutung10', '2018-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS295814129296', '阮心穎', 1, '+86 150-3097-2327', 4, '769486867079471317', 'No.49 building, 629 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-12-29', 0, 0, 'yuen2', '2004-01-30', 'sumwing2', '2015-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS281395444947', '元浩然', 1, '+86 20-0327-4783', 3, '866525154363699635', '中国广州市海珠区江南西路869号4室', '1993-03-29', 0, 0, 'hoyin515', '2002-07-04', 'yuen10', '2010-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS987947814707', '李家輝', 1, '+86 186-2266-4820', 1, '497839410890568638', '中国上海市闵行区宾川路428号7栋', '1987-03-28', 0, 0, 'lee2', '2013-11-06', 'lee1962', '2019-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS596289072330', '方璐', 1, '+44 (161) 181 8607', 2, '390591702443425935', 'Flat 8, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-04-07', 0, 0, 'lufang', '2006-08-23', 'lufan', '2015-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS420317904632', 'Danielle Price', 0, '+81 66-062-4716', 4, '697875905476147434', 'Rm. 13, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-07-31', 0, 0, 'danieprice1023', '2018-11-04', 'danprice1230', '2013-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS834298107646', '叶子异', 1, '+1 312-615-4232', 4, '402940729874941672', '426 Pedway Suite 28, Chicago, IL 60601, United States', '1988-11-14', 0, 0, 'ziyi60', '2005-02-16', 'ziyiye', '2012-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS239268078936', 'Cynthia Perez', 1, '+86 189-0033-3387', 1, '696865557423701938', '中国广州市天河区天河路278号5号楼', '1988-06-03', 0, 0, 'cyper', '2011-09-25', 'perecynt3', '2000-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS532362706521', '陆岚', 0, '+81 80-3075-7102', 3, '768864305215262195', '15-kai, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-10-10', 0, 0, 'lulan', '2022-02-28', 'lan9', '2012-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS970768183075', '侯致远', 0, '+86 137-7961-6248', 2, '169319714142283640', 'No.47 building, 700 Jianxiang Rd, Pudong, Shanghai, China', '1988-05-29', 0, 0, 'zhiyuhou1003', '2004-04-30', 'zhiyuan5', '2010-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS524928541772', '藤潤發', 0, '+86 162-1504-0704', 4, '257079800250236714', '中国深圳福田区景田东一街637号42栋', '1985-12-22', 0, 0, 'yunfat711', '2017-06-23', 'yunfat72', '2000-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS703240312602', '橋本大輔', 0, '+86 196-1627-7451', 4, '287157065025702117', 'Room 40, 160 Dongtai 5th St, Dongguan, China', '1998-06-29', 0, 0, 'daisuhashi', '2007-12-19', 'hasdaisuke1942', '2005-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS520990582729', '松田美緒', 1, '+86 20-0306-7005', 3, '522471190826936308', 'Room 45, CR Building, 227 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-09-30', 0, 0, 'miom45', '2013-01-01', 'matsudamio1202', '2017-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS695491745654', '山崎愛梨', 1, '+81 11-542-3366', 1, '795375690591902240', '日本札幌白石区菊水三条五丁目2番20号41階', '1991-06-09', 0, 0, 'airiy', '2000-03-10', 'airiyamazaki', '2014-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS650933036118', 'Troy Harris', 1, '+81 80-6126-0394', 1, '054063342203207012', '45-kai, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-09-20', 0, 0, 'troy1115', '2004-03-20', 'troyha', '2008-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS671191770709', '阿部翼', 1, '+44 5043 023118', 1, '604087764802331754', 'Unit 4, Oxford Eco Centre, 415 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-11-14', 0, 0, 'at306', '2014-04-06', 'abe42', '2012-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS715425806603', 'Brenda Castillo', 0, '+81 70-2463-1861', 1, '895782924899696465', '9-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-03-24', 0, 0, 'castillo9', '2000-02-28', 'brenda80', '2021-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS559382581828', '伍梓軒', 0, '+86 769-792-9584', 3, '452514350318619023', '中国东莞坑美十五巷83号17号楼', '1993-05-03', 0, 0, 'thng', '2007-09-12', 'thng', '2012-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS288238065458', '千葉蓮', 1, '+86 138-8810-6696', 3, '800727976417123437', 'Room 39, CR Building, 577 Lefeng 6th Rd, Zhongshan, China', '1991-05-02', 0, 0, 'renchi703', '2005-10-28', 'ren70', '2002-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS471763636426', 'Joe Jordan', 1, '+81 70-0767-6917', 3, '039148866032341477', '日本札幌中央区宮の森四条六丁目1番13号43階', '1987-04-29', 0, 0, 'jordanjoe', '2021-03-21', 'joe9', '2021-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS773248927948', '秦晓明', 1, '+86 28-2255-1340', 1, '309503498931451198', '中国成都市锦江区红星路三段752号华润大厦28室', '1992-02-09', 0, 0, 'xiaoming1', '2006-02-23', 'qinx', '2015-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS584705693986', '任子韬', 0, '+81 90-3992-1710', 3, '627091055170393042', '日本なごやし北区清水三丁目19番10号22階', '1999-01-28', 0, 0, 'ren9', '2008-08-25', 'renzita', '2021-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS657168148091', 'Louise Smith', 0, '+81 70-4070-7484', 1, '025866797794080950', '日本なごやし熱田区千年二丁目5番3号26階', '1989-04-29', 0, 0, 'lous604', '2011-08-18', 'smithl10', '2000-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS680686742343', '藤井悠人', 0, '+1 614-385-0245', 4, '009122672579389590', '150 East Alley Apartment 33, Columbus, GA 43201, United States', '1995-01-07', 0, 0, 'fujy66', '2007-04-12', 'yuto7', '2002-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS778369856166', '吉田結翔', 0, '+44 (121) 622 9821', 1, '534092445215576628', 'Flat 12, 443 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-11-28', 0, 0, 'yoyuito', '2007-07-09', 'yoshyuito', '2006-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS138512514524', 'Earl Boyd', 1, '+86 21-336-3289', 3, '073117186871337298', 'Room 27, CR Building, 244 Ganlan Rd, Pudong, Shanghai, China', '1986-01-24', 0, 0, 'eb5', '2020-03-18', 'earlb', '2005-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS982172053660', '野口翼', 0, '+81 90-7530-3323', 1, '193317077992595607', '日本東京渋谷区代々木二丁目3番11号43階', '1987-04-07', 0, 0, 'tsubasanoguchi', '2003-08-18', 'tsnog819', '2012-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS764735896281', '黄宇宁', 0, '+44 (121) 090 6272', 4, '693155942691746963', 'Block 4, 372 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-05-03', 0, 0, 'yunihuang8', '2014-09-02', 'huangyuning4', '2010-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS821268337458', '薛宇宁', 0, '+1 330-505-2043', 4, '923941512446256388', '623 West Market Street Suite 10, Akron, OH 44333, United States', '1997-03-10', 0, 0, 'yuning10', '2019-07-30', 'yuningxue', '2002-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS425484950483', '錢頴思', 1, '+44 (1223) 70 1744', 0, '096253814610210392', 'No.15 Main building, 477 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-06-30', 0, 0, 'wingsze10', '2019-06-16', 'cwingsze', '2000-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS233469384578', 'Joan Wallace', 0, '+81 70-2462-9200', 4, '815188697376489549', '日本なごやし北区楠味鋺三丁目80番12号50階', '1990-10-08', 0, 0, 'waljo9', '2013-06-07', 'joanwallace', '2008-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS294339056955', '山下美月', 0, '+86 20-416-3566', 3, '426136108183551897', 'No.22 building, 70 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1992-01-23', 0, 0, 'yamashitamits', '2017-12-26', 'mitsukiyamashita', '2019-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS788605417103', 'Chris Crawford', 0, '+86 167-8682-2695', 2, '107043950686696901', '中国深圳龙岗区布吉镇西环路867号29号楼', '1994-09-27', 0, 0, 'crawford11', '2003-12-15', 'chris707', '2007-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS590643404722', 'Dorothy Scott', 1, '+86 755-078-2681', 2, '430332832584286546', '中国深圳龙岗区布吉镇西环路679号华润大厦6室', '1998-09-11', 0, 0, 'dorothy1210', '2004-05-13', 'dscott10', '2009-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS155504967202', 'Diane Fox', 0, '+44 (116) 400 3905', 1, '233387395644486747', 'No.4 Main building, 885 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-03-06', 0, 0, 'diane54', '2013-04-03', 'fod', '2013-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS593266651266', '蔣德華', 1, '+1 838-085-0135', 4, '363029781056769612', '255 Lark Street Apartment 3, Albany, NY 12210, United States', '1997-08-15', 0, 0, 'takwahc', '2019-11-09', 'takwah20', '2002-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS463032163147', '谭晓明', 0, '+86 10-5878-1456', 3, '940087817504216588', '中国北京市朝阳区三里屯路394号40楼', '1994-03-27', 0, 0, 'xiaomt', '2014-08-17', 'tanxi1962', '2016-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS605557170412', '有村葵', 0, '+1 213-512-3661', 1, '716743392218480381', '227 Sky Way Suite 7, Los Angeles, CA 90043, United States', '1999-01-03', 0, 0, 'aoiarim', '2020-08-27', 'ara18', '2005-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS568016744636', 'Paul Soto', 0, '+81 66-623-2331', 3, '928547244819022090', '13-kai, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-03-10', 0, 0, 'ps47', '2014-09-25', 'sopaul8', '2021-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS596954273350', 'Alan Howard', 1, '+81 70-1177-4796', 0, '042880472902167206', '日本おおさかし西成区出城一丁目1番14号50階', '1994-10-26', 0, 0, 'alahoward', '2006-12-07', 'ahoward', '2020-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS295042532353', '關梓晴', 1, '+86 769-4095-8871', 3, '757830946784898383', 'No.30 building, 986 Kengmei 15th Alley, Dongguan, China', '1988-06-12', 0, 0, 'tszching56', '2006-10-12', 'tckwan', '2014-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS494756276488', '邵睿', 1, '+1 330-184-2257', 4, '201273801107223572', '346 West Market Street Suite 28, Akron, OH 44333, United States', '1990-05-18', 0, 0, 'shaor', '2018-05-21', 'srui', '2016-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS750818726769', '谭睿', 1, '+44 (1865) 11 8005', 0, '749195267075976731', 'Flat 15, 454 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-10-03', 0, 0, 'tar', '2011-07-17', 'tan1989', '2002-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS243068603561', '前田光', 1, '+86 28-497-0024', 3, '200388912581094956', '中国成都市成华区玉双路6号676号7室', '1986-08-05', 0, 0, 'maedahikar', '2008-09-23', 'hikarumaed', '2000-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS316194250607', 'Nathan Chavez', 1, '+1 213-983-6553', 3, '796457750433015857', '640 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-03-04', 0, 0, 'natchavez4', '2004-09-11', 'nac', '2014-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS776722612158', '孫家明', 0, '+81 70-8949-1374', 4, '644665245906354178', '31F, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1993-01-14', 0, 0, 'kamingh', '2017-04-09', 'kamingh10', '2010-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS235172976085', 'Sharon Myers', 1, '+44 (116) 690 0588', 3, '074291177153448109', 'Unit 45, Oxford Eco Centre, 89 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-12-04', 0, 0, 'sharon9', '2002-04-07', 'sharon8', '2007-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS453066630481', '岩崎葵', 0, '+81 90-1939-8289', 2, '698071485690043474', '日本なごやし熱田区千年二丁目5番4号19階', '1985-10-06', 0, 0, 'aoi513', '2017-09-27', 'aiwa', '2021-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS257902035952', '黎富城', 1, '+44 7287 751270', 3, '093289483834239864', 'Flat 14, 411 New Street, Birmingham, B2 4DB, United Kingdom', '1996-03-29', 0, 0, 'fushingla', '2001-11-28', 'lfu', '2011-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS832080380848', '坂本陸', 1, '+1 718-556-1543', 2, '479743908974737756', '125 Nostrand Ave Apartment 40, Brooklyn, NY 11216, United States', '1988-02-08', 0, 0, 'sakamri', '2015-10-26', 'sriku', '2001-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS047925562324', '常嘉伦', 0, '+86 179-8011-2868', 1, '558565499386083961', 'Room 8, 326 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-04-12', 0, 0, 'chang605', '2004-12-13', 'chjialu52', '2021-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS416637826293', '宮崎蓮', 1, '+44 5481 490248', 1, '178045432380966604', 'Flat 49, 591 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1996-02-13', 0, 0, 'miyren7', '2010-09-11', 'renmiyazaki93', '2000-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS458385659233', '原蒼士', 1, '+44 5163 511259', 4, '604249718199917555', 'Block 33, 624 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-06-11', 0, 0, 'hara1', '2004-12-11', 'aoshi5', '2020-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS168557480603', '駱祖兒', 1, '+1 838-783-7845', 2, '688784035855822656', '896 State Street Apt 17, Albany, NY 12203, United States', '1997-06-26', 0, 0, 'locy8', '2011-05-17', 'choyee7', '2003-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS835961359220', 'Wayne Nguyen', 1, '+44 (116) 907 7793', 4, '444570620155435812', 'Block 43, 401 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-07-30', 0, 0, 'nwayne14', '2009-04-20', 'nguyen903', '2001-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS129447125255', '洪學友', 0, '+44 (1865) 96 0702', 3, '547197512449330352', 'Block 30, 864 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-06-08', 0, 0, 'hokyau5', '2019-02-07', 'hokyau2006', '2010-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS574622602827', 'Alice Powell', 1, '+81 80-0815-1469', 1, '731769836046750331', '日本札幌豊平区豊平三条十三丁目3番18号16号室', '1993-02-19', 0, 0, 'apowell', '2002-08-16', 'alicepowell', '2018-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS519838521374', '今井大輔', 1, '+86 135-3624-3447', 1, '989470399985390216', '中国上海市闵行区宾川路526号27室', '1993-11-09', 0, 0, 'imaidaisuke15', '2013-03-25', 'imaidaisuke1', '2009-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS777516913887', '谷口樹', 1, '+44 (116) 576 4554', 2, '508282602162586629', 'Unit 14, Oxford Eco Centre, 851 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-08-04', 0, 0, 'taniitsuki921', '2019-07-18', 'itsuktaniguchi', '2011-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS067671612608', 'Louis King', 0, '+81 66-359-8133', 2, '306348372224461311', '日本おおさかし平野区加美東四丁目9番13号15号室', '1993-10-03', 0, 0, 'kl68', '2003-09-14', 'louis907', '2003-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS395017253209', '清水湊', 1, '+81 11-366-9550', 2, '886017535495339449', '日本札幌白石区菊水三条五丁目2番19号41階', '1997-11-19', 0, 0, 'shimizumin65', '2003-02-08', 'smina3', '2013-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS506947257578', 'Carmen Jackson', 1, '+44 (20) 8627 2679', 3, '352279730896919216', 'No.29 Main building, 678 Hanover Street, London, W1S 1YD, United Kingdom', '1997-01-09', 0, 0, 'jcarmen', '2021-12-23', 'jcarmen10', '2010-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS639265540978', '斎藤架純', 0, '+81 80-4004-4531', 2, '287723510125330734', '23F, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-12-24', 0, 0, 'saitkasumi', '2020-07-20', 'saito530', '2021-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS366046346252', '長谷川葵', 0, '+44 (151) 199 9076', 3, '111834140128501998', 'Unit 1, Oxford Eco Centre, 511 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-10-15', 0, 0, 'hasegawaao', '2012-04-30', 'hasegawaaoi4', '2001-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS658238193073', '有村紗良', 0, '+44 (151) 486 7290', 0, '134195498257850259', 'Block 40, 503 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-07-06', 0, 0, 'arimura4', '2001-07-31', 'sara55', '2014-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS989704584143', 'Matthew Jones', 0, '+86 21-337-0740', 1, '051676114167650629', '34F, 183 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-04-26', 0, 0, 'matthewjones', '2003-04-06', 'jmatthew2012', '2007-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS589801774706', '袁秀文', 1, '+81 80-4244-1774', 2, '348998731789928874', '33-kai, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-28', 0, 0, 'yuensm90', '2001-12-19', 'yuen1', '2000-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS013355682564', '阿部湊', 0, '+1 838-624-5146', 4, '117940042560772374', '67 Central Avenue Apt 32, Albany, NY 12206, United States', '1992-03-20', 0, 0, 'abemin309', '2019-11-22', 'minabe', '2002-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS152753369625', '毛子韬', 1, '+44 5084 566273', 0, '282829780293565776', 'Unit 17, Oxford Eco Centre, 932 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-09-24', 0, 0, 'zitm2007', '2007-09-30', 'zitamao4', '2005-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS371050162712', '小野愛梨', 0, '+1 614-471-6230', 0, '775354988328940254', '575 East Alley Apartment 27, Columbus, GA 43201, United States', '1991-09-30', 0, 0, 'ono52', '2004-02-15', 'airion', '2006-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS291848573438', '罗宇宁', 0, '+44 5559 352126', 3, '023356882002792470', 'Unit 38, Oxford Eco Centre, 947 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1995-05-22', 0, 0, 'yuningluo', '2003-10-22', 'yuningl', '2007-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS867979803380', 'Eleanor Woods', 0, '+86 28-053-5743', 1, '784830121333771411', 'Room 35, No. 528, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-12-11', 0, 0, 'woodselea', '2005-10-13', 'woodse', '2013-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS461876627891', '姚國榮', 1, '+86 28-688-5855', 3, '487911867713898842', '中国成都市锦江区红星路三段613号华润大厦29室', '1986-10-06', 0, 0, 'yeowkw', '2009-09-01', 'ykw', '2011-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS423554102802', '森田結翔', 1, '+86 136-6827-4688', 1, '060756532471297741', 'Room 48, CR Building, No.166, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-11-22', 0, 0, 'moryui', '2006-01-16', 'moyuit117', '2013-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS462606044403', '韩秀英', 0, '+81 74-587-0988', 3, '434908854111359952', '日本ならし西大寺赤田町一丁目7番6号16階', '1999-01-11', 0, 0, 'haxiu5', '2019-05-14', 'xiuying912', '2015-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS599093633266', 'Victoria Bennett', 1, '+44 5217 770146', 2, '961208644202572536', 'Flat 22, 568 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-03-15', 0, 0, 'victoriabenne', '2019-03-20', 'victoriab', '2021-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS002078529169', '關家輝', 1, '+81 80-2860-6820', 4, '549629640425325860', '31-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-12-28', 0, 0, 'kfkwan423', '2009-09-18', 'kkafai7', '2004-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS032168944142', 'Pauline Robertson', 1, '+1 614-512-2367', 1, '285680935444997290', '966 Diplomacy Drive Apt 17, Columbus, GA 43228, United States', '1989-02-23', 0, 0, 'prober', '2012-04-28', 'paulrober331', '2007-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS472059588511', '小林蒼士', 0, '+81 66-101-9763', 0, '473280137189600712', '日本おおさかし近江堂一丁目7番6号13号室', '1985-11-16', 0, 0, 'aoshi1988', '2005-04-27', 'akobayashi', '2015-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS183786303296', 'Craig Johnson', 1, '+86 190-2193-4516', 1, '634871740439568203', '中国上海市徐汇区虹桥路304号28室', '1995-09-09', 0, 0, 'johnsoncraig', '2015-05-23', 'craigjohnson', '2000-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS533113745745', '溫嘉欣', 0, '+1 718-242-2049', 1, '579104704120219330', '479 Nostrand Ave Apt 45, Brooklyn, NY 11216, United States', '1994-04-08', 0, 0, 'waky5', '2005-01-23', 'wankarya2', '2006-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS861295503109', '周梓晴', 1, '+86 180-2626-9864', 1, '507272223775442096', 'No.7 building, 164 Tianhe Road, Tianhe District, Guangzhou, China', '1987-06-17', 0, 0, 'tszchingch', '2005-10-18', 'tszchingcho', '2006-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS279298019987', '贺晓明', 1, '+86 180-9436-7944', 3, '782009404857461655', 'No.41 building, 418 Binchuan Rd, Minhang District, Shanghai, China', '1988-06-04', 0, 0, 'xiaominghe', '2014-04-10', 'hxi808', '2019-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS955942308018', 'Luis Rose', 1, '+86 755-088-6372', 4, '824963326247069628', '中国深圳福田区景田东一街985号11号楼', '1994-11-07', 0, 0, 'luisro', '2004-06-26', 'roselui4', '2006-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS393967953700', '梅學友', 1, '+44 (151) 814 2060', 3, '647588453900168794', 'No.35 Main building, 748 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-05-15', 0, 0, 'hymui', '2016-10-02', 'hokyaumui8', '2014-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS589574756733', '福田樹', 0, '+86 755-3903-6948', 1, '524719729942671906', '中国深圳罗湖区田贝一路782号50栋', '1996-12-27', 0, 0, 'itsuki7', '2000-01-04', 'fitsuk60', '2013-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS610461732497', '叶詩涵', 0, '+81 74-756-9259', 1, '984035752230885407', '日本ならし西大寺赤田町一丁目7番10号22階', '1985-02-20', 0, 0, 'yes', '2001-11-14', 'ye327', '2016-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS107403894640', '范云熙', 0, '+86 21-226-4606', 1, '153297770615996354', 'Room 19, 783 Ganlan Rd, Pudong, Shanghai, China', '1998-02-20', 0, 0, 'yunxifan', '2003-01-31', 'yfan', '2003-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS096857438048', '邵家輝', 0, '+86 151-2353-4839', 0, '248348312881948483', 'Room 4, 890 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-07-22', 0, 0, 'skf8', '2004-10-09', 'kfsiu4', '2010-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS253728379058', '田詩君', 1, '+81 11-484-7681', 3, '945977663669287727', '日本札幌中央区宮の森四条六丁目1番5号5号室', '1992-09-06', 0, 0, 'szekwan907', '2020-10-06', 'tinsk1956', '2020-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS716792237303', 'Pamela Grant', 1, '+1 312-097-6806', 1, '864546885462830540', '813 Rush Street Apt 13, Chicago, IL 60611, United States', '1998-03-15', 0, 0, 'grant83', '2019-07-17', 'pamelgrant4', '2020-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS665530054281', '渡辺光莉', 1, '+81 70-6672-9384', 3, '487986596733063647', '18F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1988-02-15', 0, 0, 'hikarsa', '2018-08-25', 'hikasato', '2022-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS484931151227', 'Jose Ferguson', 0, '+86 10-5379-6587', 4, '483053433859626559', 'Room 7, CR Building, 874 028 County Rd, Yanqing District, Beijing, China', '1989-03-26', 0, 0, 'jose3', '2003-06-15', 'jfer', '2000-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS891683922147', '田村大和', 1, '+1 312-081-7861', 4, '364239218727885344', '738 Pedway Apartment 10, Chicago, IL 60601, United States', '1996-05-19', 0, 0, 'tyamato87', '2015-07-31', 'tyamato5', '2010-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS757527695544', '盧家強', 0, '+81 66-679-1956', 4, '253018022725420929', 'Rm. 2, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-02-20', 0, 0, 'kakeung4', '2018-01-15', 'lkk', '2015-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS230212837820', 'William Daniels', 0, '+1 838-402-1234', 3, '491864659094230393', '44 Broadway Suite 22, Albany, NY 12207, United States', '1997-02-23', 0, 0, 'daniels6', '2014-04-02', 'wdanie', '2009-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS242648518470', '中川涼太', 0, '+44 5223 658254', 4, '469457414910434853', 'Flat 38, 442 Maddox Street, London, W1S 1PU, United Kingdom', '1990-11-27', 0, 0, 'ryotanakagawa1948', '2019-08-28', 'ryn', '2014-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS354255593740', '萧睿', 0, '+81 90-3220-3696', 3, '482234344039300635', '日本東京千代田区丸の内一丁目6番6号23階', '1985-12-04', 0, 0, 'ruixiao', '2014-02-22', 'rxiao54', '2001-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS399113165124', '邓嘉伦', 1, '+81 11-230-4684', 1, '301109307835516782', '日本札幌清田区真栄四条五丁目19番15号30号室', '1985-07-02', 0, 0, 'dengjialun', '2013-06-08', 'jid', '2011-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS931807249261', 'Eva Castillo', 1, '+81 80-8408-5484', 3, '778320980512445223', '日本札幌厚別区上野幌一条二丁目1番9号13号室', '1988-08-30', 0, 0, 'evac', '2018-02-03', 'ec67', '2017-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS237104022156', '松田光', 0, '+86 755-117-9869', 3, '322606380872179316', '中国深圳罗湖区清水河一路109号27栋', '1997-01-23', 0, 0, 'himatsuda', '2005-06-26', 'hikarumatsuda', '2021-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS961289075320', '丁子韬', 0, '+44 (161) 120 3415', 2, '241905193818085624', 'Unit 12, Oxford Eco Centre, 798 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-05-17', 0, 0, 'dingz', '2012-08-19', 'dzitao113', '2010-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS532014055523', '萬發', 1, '+86 20-7792-2473', 0, '739582399670806255', 'No.47 building, 928 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-05-24', 0, 0, 'fatme91', '2020-08-04', 'mefat', '2016-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS216524403258', '萧嘉伦', 0, '+81 3-8195-8025', 4, '363059064828989099', '29F, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-05-29', 0, 0, 'jialuxiao414', '2016-12-17', 'jialunxiao', '2019-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS605479690520', '姚震南', 0, '+81 74-785-3799', 2, '267235645315018155', '13-kai, 3-9-15 Gakuenminami, Nara, Japan', '1998-09-13', 0, 0, 'zhennany', '2005-03-08', 'yaoz1', '2002-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS122370656934', 'Christina Jackson', 1, '+81 90-8832-5890', 1, '853788757309709320', '日本札幌白石区菊水三条五丁目2番16号39号室', '1987-12-30', 0, 0, 'christinajackson', '2017-10-17', 'christinajacks', '2012-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS125700600215', '元慧珊', 1, '+44 7423 141260', 4, '190281182728857766', 'No.19 Main building, 487 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1999-01-26', 0, 0, 'waisan1990', '2012-11-23', 'yuenws1946', '2021-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS305524881452', 'Bruce Stone', 1, '+86 138-6202-1697', 1, '983342039773019793', '中国北京市房山区岳琉路691号47号楼', '1987-05-16', 0, 0, 'stonebruce', '2013-06-12', 'brucstone', '2010-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS761485392288', '龚云熙', 0, '+86 138-5172-6436', 2, '855187716035073044', '中国中山京华商圈华夏街35号36号楼', '1985-12-02', 0, 0, 'gong903', '2006-02-28', 'yunxigo', '2008-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS130667629080', 'Henry Gonzalez', 0, '+86 136-4390-4855', 3, '425572637836209347', 'No.28 building, 225 Yueliu Rd, Fangshan District, Beijing, China', '1987-04-15', 0, 0, 'gonzalez2', '2020-08-29', 'gonhenr', '2008-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS721850575557', 'Kathryn Ruiz', 0, '+1 213-518-4022', 4, '946416877844831678', '541 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-08-01', 0, 0, 'kathrruiz', '2018-10-29', 'ruizkathryn', '2004-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS702565868385', '馬俊宇', 1, '+86 191-6541-7212', 2, '330304281425637110', 'Room 17, CR Building, 677 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-08-02', 0, 0, 'ma915', '2012-10-27', 'macy1967', '2017-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS200548373147', 'Carol Snyder', 1, '+81 74-655-6511', 0, '089250217771208964', '日本ならし西大寺赤田町一丁目7番3号10階', '1986-10-04', 0, 0, 'snydercaro', '2015-11-09', 'casn', '2020-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS128379189213', '菊地愛梨', 1, '+81 90-9263-6803', 3, '800627584266559550', '日本ならし大和郡山市本庄町一丁目1番16号48階', '1998-05-30', 0, 0, 'kikair', '2010-12-04', 'kikuairi7', '2016-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS887104595329', 'Nathan Hernandez', 1, '+1 212-523-4926', 0, '348977934425921277', '51 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1986-03-11', 0, 0, 'hnatha5', '2008-04-30', 'hna67', '2003-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS524295732792', 'Brandon Turner', 1, '+81 80-0206-6517', 1, '332732868120462633', 'Rm. 16, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-04-18', 0, 0, 'bturn19', '2016-09-18', 'turnerbrandon', '2007-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS580950499694', '谢睿', 0, '+1 213-114-9956', 1, '446478187524699503', '981 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-03-29', 0, 0, 'xr620', '2016-03-04', 'rxie', '2019-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS850438249161', '原田七海', 0, '+1 838-888-3313', 1, '607129983783162273', '739 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1995-10-11', 0, 0, 'hn6', '2017-04-28', 'haradanan', '2008-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS182598717891', '余秀英', 0, '+1 614-813-2540', 2, '625337495934716772', '976 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-06-03', 0, 0, 'xy3', '2014-06-19', 'xiuy', '2013-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS156031352710', 'Marie Wells', 0, '+81 90-8861-6247', 2, '253058305869001701', '48F, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-05-11', 0, 0, 'marie53', '2017-01-28', 'mawells', '2001-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS135771163864', '有村詩乃', 1, '+86 140-0973-6829', 0, '626687917825598474', 'Room 13, 46 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-10-03', 0, 0, 'arishi', '2021-03-02', 'ashino', '2000-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS697116435367', '于晓明', 1, '+86 173-2795-2562', 0, '192691298545129256', 'No.48 building, 585 Xiaoping E Rd, Baiyun , Guangzhou, China', '1987-11-09', 0, 0, 'yux', '2008-05-20', 'yxiaoming', '2004-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS432534597215', '邵慧儀', 1, '+44 5035 610506', 2, '075816899139009565', 'Flat 40, 269 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-08-20', 0, 0, 'siwy', '2007-06-01', 'swaiyee1218', '2019-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS534609644735', '宣祖兒', 0, '+81 11-399-6961', 2, '744170439026498822', '46F, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-09-19', 0, 0, 'choyee1975', '2004-02-16', 'hsuancy10', '2006-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS932056133538', 'Thomas Russell', 0, '+1 718-154-2841', 2, '451612705160904553', '337 Bergen St Apartment 17, Brooklyn, NY 11217, United States', '1992-01-19', 0, 0, 'thomaru317', '2002-04-22', 'thomasr', '2013-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS555567292212', 'Donna Simmons', 0, '+86 172-0516-8982', 2, '634757640140307358', 'Room 42, No. 104, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-07-04', 0, 0, 'donnasimmo', '2010-09-15', 'dons79', '2008-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS892509347692', 'Phyllis Tucker', 1, '+44 (1223) 23 9154', 0, '173758617476135120', 'Unit 14, Oxford Eco Centre, 145 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-02-03', 0, 0, 'tuckerph5', '2019-09-25', 'tuckephy1024', '2001-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS916679300577', '罗璐', 1, '+86 28-122-3139', 4, '373427223754080910', '中国成都市锦江区人民南路四段13号29号楼', '1993-11-12', 0, 0, 'luolu529', '2009-01-23', 'luo1008', '2005-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS537122493813', '彭家明', 1, '+81 52-245-3838', 1, '215991988595643107', '日本なごやし守山区瀬古東二丁目171番14号50階', '1990-04-20', 0, 0, 'pkm10', '2001-07-08', 'kamingpang84', '2002-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS646375704959', 'Gladys Moore', 0, '+86 28-486-8583', 0, '196467251809805777', '中国成都市成华区玉双路6号110号28楼', '1986-02-09', 0, 0, 'gladysmoore', '2011-08-25', 'mooreg', '2016-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS875864927618', '太田玲奈', 0, '+81 11-833-0038', 3, '881094917078229969', '42F, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-04-19', 0, 0, 'renao', '2012-10-26', 'rena508', '2012-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS981229963663', '谭云熙', 0, '+81 90-7110-1223', 3, '712488051618399080', '日本おおさかし東住吉区東田辺三丁目27番18号26階', '1987-05-23', 0, 0, 'tan1006', '2006-10-11', 'tanyunx4', '2000-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS704582811285', '柴田花', 1, '+81 70-6732-1455', 1, '711185760069036152', '36-kai, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-06-01', 0, 0, 'hanas1', '2008-08-10', 'hanashi', '2002-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS806802471886', '方淑怡', 0, '+1 330-073-7555', 3, '829006391750218063', '118 Ridgewood Road Apt 46, Akron, OH 44321, United States', '1990-09-18', 0, 0, 'fongsy9', '2007-03-07', 'sukyee51', '2002-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS199149091653', '鄺淑怡', 1, '+86 132-5793-8230', 4, '303094356128765168', 'Room 36, 273 FuXingMenNei Street, XiCheng District, Beijing, China', '1995-09-13', 0, 0, 'syk', '2011-04-15', 'syk', '2003-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS855994794871', '吕宇宁', 1, '+44 7187 650287', 1, '988782502908900049', 'Unit 47, Oxford Eco Centre, 594 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-03-18', 0, 0, 'lu1130', '2018-02-26', 'lyunin', '2010-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS697085559981', '上田湊', 1, '+81 3-5621-6466', 1, '496153629324040868', '日本東京港区東新橋一丁目5番14号32号室', '1995-05-14', 0, 0, 'uemina', '2021-09-03', 'minatou', '2015-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS796920737912', '宮崎優奈', 1, '+1 213-609-7832', 0, '405203327657426551', '525 S Broadway Suite 37, Los Angeles, CA 90015, United States', '1990-06-18', 0, 0, 'ym44', '2012-12-06', 'miyazaki10', '2017-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS321642492088', 'Shannon Nelson', 1, '+86 769-5656-4283', 1, '408515650833168768', 'No.18 building, 795 Huanqu South Street 2nd Alley, Dongguan, China', '1992-05-31', 0, 0, 'nelshannon', '2003-06-13', 'shannon76', '2020-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS065962587153', '村上百花', 0, '+81 11-948-1560', 2, '624236108224306088', '6-kai, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-10-11', 0, 0, 'momokam3', '2003-04-22', 'murakamimo', '2017-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS865898611888', '刘子韬', 1, '+81 66-780-6561', 1, '905790759622211587', '日本おおさかし近江堂一丁目7番2号45階', '1987-06-26', 0, 0, 'liuzitao', '2000-02-09', 'liuzit4', '2003-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS393017337405', '谷口一輝', 0, '+81 3-8964-3810', 0, '454592505182313120', '日本東京中央区銀座三丁目12番8号14階', '1991-01-13', 0, 0, 'ikki611', '2012-03-13', 'ikkitani', '2002-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS565353672181', '杜秀英', 1, '+81 80-0898-1802', 2, '808980114995647830', '日本なごやし北区清水三丁目19番7号16階', '1992-02-25', 0, 0, 'dux', '2016-08-22', 'xdu3', '2018-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS028456004813', '薛子异', 1, '+86 21-952-7848', 3, '958793342539139617', 'Room 43, 786 Binchuan Rd, Minhang District, Shanghai, China', '1994-03-20', 0, 0, 'zxu2', '2017-03-04', 'xueziyi', '2019-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS152777140107', '内田陸', 1, '+86 28-3947-6386', 2, '016626040902353834', 'No.45 building, No. 701, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-09-08', 0, 0, 'uchidr', '2013-10-22', 'riuch84', '2008-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS945060409767', '岡田陽太', 1, '+81 66-210-1919', 0, '700523391413778593', '34-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1991-05-31', 0, 0, 'okada72', '2005-01-01', 'okada6', '2017-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS025111154251', '島田葵', 1, '+1 614-608-5797', 4, '440694148219712282', '632 Wicklow Road Suite 31, Columbus, GA 43204, United States', '1992-02-09', 0, 0, 'shimadaaoi', '2003-05-18', 'aos1225', '2016-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS670494399695', '吕杰宏', 1, '+86 21-6305-8309', 3, '577084537226403862', '中国上海市徐汇区虹桥路197号11室', '1991-03-10', 0, 0, 'ljiehong7', '2011-12-29', 'lj329', '2005-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS745926956392', 'Phillip Bailey', 1, '+86 10-3822-5683', 0, '014978647008713040', '中国北京市东城区东单王府井东街293号26室', '1995-10-20', 0, 0, 'bailep', '2002-11-12', 'phillip7', '2011-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS676638429286', '潘嘉伦', 0, '+86 137-1735-0351', 1, '959783029787541182', '中国成都市成华区双庆路407号41号楼', '1990-07-05', 0, 0, 'jpan89', '2014-07-03', 'paj', '2000-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS404547107203', '崔震南', 0, '+86 769-9785-0236', 4, '496921540770021403', '中国东莞东泰五街767号39号楼', '1995-01-26', 0, 0, 'cuizhennan', '2010-04-03', 'zhenncui', '2020-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS789898064084', '石田美羽', 1, '+1 213-154-2542', 1, '828143607186253730', '924 Alameda Street Apartment 23, Los Angeles, CA 90002, United States', '1988-07-06', 0, 0, 'miuish1029', '2007-07-27', 'ishidam', '2002-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS697397944774', 'Sara Miller', 1, '+44 5626 937558', 4, '373182515417971482', 'Flat 10, 682 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-09-17', 0, 0, 'saramiller2', '2022-01-28', 'saramiller', '2020-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS155602528522', '谢璐', 1, '+81 90-7509-9709', 1, '429963627484989496', '日本なごやし北区楠味鋺三丁目80番1号48号室', '1991-04-30', 0, 0, 'lux', '2005-11-10', 'luxie', '2008-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS412187881830', '韓頴思', 0, '+1 213-155-5820', 2, '747996802960639381', '240 Grape Street Apartment 10, Los Angeles, CA 90002, United States', '1999-02-14', 0, 0, 'wingszehan', '2001-02-20', 'han75', '2016-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS203765309192', 'Joyce Hawkins', 0, '+86 10-246-0380', 3, '586172932407595390', 'No.24 building, 312 028 County Rd, Yanqing District, Beijing, China', '1987-04-09', 0, 0, 'joycehawkins12', '2001-09-11', 'joycha118', '2017-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS440248634995', '王曉彤', 0, '+44 7292 150604', 3, '284263616305757495', 'Flat 31, 27 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-05-09', 0, 0, 'hiutungwo', '2014-06-19', 'htwong1968', '2018-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS402192108858', '邱宇宁', 0, '+86 164-2178-6982', 3, '502391095491797797', '中国深圳罗湖区清水河一路590号40楼', '1993-06-28', 0, 0, 'yuningqiu2014', '2015-09-19', 'yuning7', '2001-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS357311875180', '竹内涼太', 1, '+81 66-086-2177', 3, '157676489391646955', '日本おおさかし西成区出城一丁目1番9号3号室', '1994-05-01', 0, 0, 'takeuchi209', '2013-04-18', 'ryottak', '2010-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS290343091649', '鄺力申', 0, '+81 70-9146-9041', 1, '686967290335095384', '10F, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1986-03-03', 0, 0, 'lskwong75', '2016-04-19', 'kwongls3', '2005-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS855209255911', '莫宇宁', 1, '+86 755-0513-6416', 3, '575171314865327322', '中国深圳龙岗区布吉镇西环路436号14号楼', '1987-07-16', 0, 0, 'myuning1006', '2019-08-03', 'yuningmo', '2012-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS125787466743', '劉學友', 1, '+86 769-379-7858', 4, '991897990942541480', 'No.11 building, 939 Shanhu Rd, Dongguan, China', '1998-06-20', 0, 0, 'lau712', '2014-04-10', 'lauhy602', '2010-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS308754707132', 'Leroy Morgan', 0, '+86 169-8340-6022', 4, '619722520157816605', 'No.11 building, 588 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-08-08', 0, 0, 'leroymorgan1104', '2006-04-01', 'lemorgan117', '2013-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS184460890528', '徐璐', 0, '+81 70-8061-7062', 3, '588985507559420679', '40F, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-02-10', 0, 0, 'luxu', '2001-08-06', 'luxu1007', '2011-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS073505664738', '羅天榮', 0, '+81 90-5311-9487', 1, '245797901819820677', '日本なごやし北区楠味鋺三丁目80番4号34号室', '1989-02-01', 0, 0, 'lotw', '2010-06-27', 'lo1107', '2014-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS807519089263', '苏震南', 0, '+86 130-7424-4563', 0, '263331927353084238', '中国深圳福田区深南大道200号12号楼', '1990-05-03', 0, 0, 'suzhennan', '2007-09-26', 'szhennan', '2020-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS499308246525', '宮崎美咲', 0, '+81 11-730-8788', 1, '612874622996744840', '日本札幌白石区菊水三条五丁目4番12号31階', '1987-06-09', 0, 0, 'miyazm', '2007-09-19', 'misakmiyazaki', '2008-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS498348449754', '中森聖子', 1, '+81 11-033-1300', 3, '772617299136309068', 'Rm. 5, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-04-11', 0, 0, 'snaka', '2008-11-16', 'ns103', '2001-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS566091973742', 'Douglas Mason', 1, '+86 755-8384-5254', 3, '439546068995135044', '15F, 170 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-06-14', 0, 0, 'masdougl', '2009-12-04', 'masondouglas', '2017-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS802787603862', '吉田光', 1, '+86 165-7230-4215', 1, '927883221532116801', 'No.12 building, 726 Ganlan Rd, Pudong, Shanghai, China', '1989-04-17', 0, 0, 'hyosh', '2014-12-18', 'hikaruyoshida', '2000-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS723902785468', '中川玲奈', 1, '+86 10-196-4364', 4, '805655785245569657', 'No.17 building, 371 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-04-10', 0, 0, 'rena', '2019-10-13', 'rena831', '2012-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS151598629322', '徐杰宏', 1, '+86 194-1307-6314', 1, '634652391633804843', 'No.46 building, 332 Tianhe Road, Tianhe District, Guangzhou, China', '1991-01-09', 0, 0, 'jiehongxu', '2014-12-31', 'jiehongxu1965', '2020-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS235447702859', '邱安琪', 1, '+86 760-365-6915', 0, '025424892845114686', '中国中山紫马岭商圈中山五路223号38号楼', '1989-12-29', 0, 0, 'anq', '2005-07-01', 'qian', '2020-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS996447728218', '潘云熙', 0, '+86 160-5313-8344', 2, '657568544797507503', 'Room 7, CR Building, 552 Jianxiang Rd, Pudong, Shanghai, China', '1991-06-16', 0, 0, 'pyunxi01', '2016-10-02', 'pyu10', '2004-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS500009691581', '木下聖子', 1, '+1 330-418-9958', 0, '489866243228465159', '918 Ridgewood Road Apartment 30, Akron, OH 44321, United States', '1997-04-03', 0, 0, 'seiko9', '2011-03-20', 'kinoshitaseiko801', '2021-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS900346424707', '工藤美緒', 0, '+86 760-7698-2112', 3, '546174138745537644', '中国中山乐丰六路903号华润大厦37室', '1986-11-21', 0, 0, 'kudo45', '2007-09-05', 'kmi', '2008-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS195056736995', '佐野光莉', 0, '+81 11-333-8004', 0, '478987540785124026', '26-kai, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-09-21', 0, 0, 'sanohikari', '2019-03-20', 'sano7', '2020-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS772667970426', '工藤美咲', 0, '+44 5127 022420', 3, '224536308768398050', 'No.50 Main building, 597 Pollen Street, London, W1S 1NG, United Kingdom', '1986-09-07', 0, 0, 'misakikud', '2018-08-20', 'miskudo', '2009-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS480543754080', '李學友', 1, '+1 330-577-3362', 2, '895110522236403636', '481 Collier Road Suite 11, Akron, OH 44320, United States', '1985-02-23', 0, 0, 'hylee1', '2017-11-30', 'lehy', '2013-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS042064719296', '森玲奈', 1, '+81 80-8294-6771', 1, '940002441146302658', '日本なごやし北区清水三丁目19番13号12階', '1985-08-15', 0, 0, 'morre', '2018-03-07', 'morir09', '2000-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS563488032631', '曹詩涵', 1, '+44 5172 485985', 2, '951378040156393756', 'Flat 8, 976 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-11-30', 0, 0, 'cshi48', '2002-04-30', 'shihancao811', '2010-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS517428574680', 'Gregory Castro', 0, '+86 760-5486-0513', 3, '540100259448723400', '中国中山紫马岭商圈中山五路368号35室', '1985-11-16', 0, 0, 'castro202', '2014-09-13', 'gregorycas57', '2009-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS348150769452', 'Deborah Wells', 1, '+81 80-6848-7659', 4, '891312666670798150', 'Rm. 29, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1992-03-01', 0, 0, 'wellsdebo', '2005-03-23', 'deborwells', '2020-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS387185712177', 'Marjorie Diaz', 0, '+44 5892 298918', 3, '934084168819181968', 'Unit 48, Oxford Eco Centre, 570 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-06-22', 0, 0, 'diaz1109', '2016-05-11', 'dmarjo', '2002-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS164113205499', '河野詩乃', 0, '+86 187-8305-2788', 3, '245445985178315757', 'Room 7, 323 Shennan Ave, Futian District, Shenzhen, China', '1986-09-14', 0, 0, 'shinoko6', '2007-06-22', 'konoshin2', '2004-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS352959408864', '钟詩涵', 1, '+1 718-281-5168', 1, '550234101983147061', '596 Bergen St Apt 7, Brooklyn, NY 11217, United States', '1987-11-24', 0, 0, 'shihzhong', '2016-02-05', 'zhongs', '2004-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS455436282815', '魏岚', 1, '+1 330-877-2789', 2, '358810007119411696', '269 Ridgewood Road Apt 27, Akron, OH 44321, United States', '1995-07-15', 0, 0, 'lw127', '2011-04-22', 'lwei', '2016-02-29'); -INSERT INTO "public"."userinfo" VALUES ('TS566858003836', '羅玲玲', 1, '+1 212-606-4733', 0, '027523214485528152', '644 Wooster Street Suite 16, New York, NY 10012, United States', '1988-03-21', 0, 0, 'loll1001', '2006-09-23', 'lilo7', '2016-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS689404493880', 'Cynthia Green', 0, '+86 134-0267-2213', 1, '567087896216523165', 'Room 50, CR Building, 627 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-02-09', 0, 0, 'cynthgreen', '2010-07-14', 'cynthiagreen9', '2001-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS023382180753', 'Russell Nguyen', 0, '+86 163-7435-7091', 3, '827504432022877327', 'Room 35, CR Building, 510 Shanhu Rd, Dongguan, China', '1990-03-28', 0, 0, 'ngurussell', '2000-09-26', 'nrussell', '2004-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS771004966359', '中川蓮', 0, '+81 90-0511-5396', 3, '625287676582850844', '日本ならし西大寺赤田町一丁目7番18号20号室', '1995-09-25', 0, 0, 'renn8', '2005-12-14', 'rnak5', '2018-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS042743689888', '太田百花', 1, '+44 (151) 931 8235', 4, '289218057908203873', 'Block 7, 240 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-12-22', 0, 0, 'otamomoka10', '2012-02-27', 'omomoka', '2017-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS174898553021', '木村結翔', 0, '+1 330-849-4653', 2, '309628696419812538', '138 Ridgewood Road Apartment 40, Akron, OH 44321, United States', '1986-01-10', 0, 0, 'kimura95', '2020-08-31', 'kimuray', '2005-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS017978423783', '山下百花', 0, '+44 (161) 420 9593', 2, '319926056336317602', 'Block 44, 648 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-08-01', 0, 0, 'yamashitamomoka', '2006-06-28', 'momoka93', '2007-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS771044729577', 'Nathan Marshall', 1, '+44 7138 003227', 3, '128088427213345187', 'Block 47, 639 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1995-01-22', 0, 0, 'nathamarshall', '2018-03-21', 'marshallnatha8', '2021-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS332543661990', 'Deborah Mendez', 1, '+81 90-4625-0166', 4, '371846621913051831', 'Rm. 20, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-09-06', 0, 0, 'deborahm', '2010-01-22', 'mendde', '2020-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS753124462611', '蔡璐', 1, '+86 196-9889-6489', 3, '848977449461174191', '中国中山京华商圈华夏街905号30栋', '1992-03-17', 0, 0, 'clu306', '2000-05-20', 'cailu310', '2014-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS632420640258', '唐朝偉', 1, '+81 52-900-1216', 2, '236834614536902456', '20F, 5 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-01-13', 0, 0, 'tochiuwai15', '2010-02-21', 'toncw7', '2002-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS954429290477', '廖仲賢', 1, '+86 148-9663-2018', 4, '066496058220177300', 'No.27 building, 606 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1993-11-02', 0, 0, 'chungyinli', '2005-03-13', 'liaocy1106', '2020-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS702383735853', '胡子韬', 0, '+1 213-294-9173', 4, '748256855801711651', '215 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1988-02-19', 0, 0, 'zitaohu', '2013-02-03', 'zitaohu', '2013-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS798346069849', '工藤大地', 1, '+81 11-674-4937', 2, '924805094856219221', '7-kai, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-02-16', 0, 0, 'kdaichi', '2015-03-23', 'daichikudo62', '2003-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS757981619747', 'Adam White', 0, '+86 10-175-0466', 2, '034731990029177257', 'Room 28, 546 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-03-23', 0, 0, 'adamw', '2000-10-25', 'whiteadam8', '2001-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS032346530300', '江杰宏', 0, '+86 755-729-5661', 1, '314166829375634990', '中国深圳福田区景田东一街617号14栋', '1986-09-04', 0, 0, 'jiehoji1001', '2004-03-18', 'jiehong329', '2006-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS004486754241', '田致远', 1, '+1 614-126-9143', 0, '160918752473148514', '55 Diplomacy Drive Apt 10, Columbus, GA 43228, United States', '1989-11-30', 0, 0, 'zhiyuan1994', '2007-05-01', 'tiazhi1944', '2020-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS774094116447', '酒井瑛太', 1, '+86 20-964-3078', 2, '187397354816544423', 'No.24 building, 726 Tianhe Road, Tianhe District, Guangzhou, China', '1991-05-01', 0, 0, 'esak', '2002-12-24', 'eita2006', '2008-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS845436928242', '武璐', 0, '+1 718-390-7518', 0, '357932442049264395', '733 Flatbush Ave Apartment 12, Brooklyn, NY 11225, United States', '1993-11-27', 0, 0, 'wulu', '2017-02-17', 'wul1', '2009-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS615449298713', 'Micheal Robinson', 0, '+44 (151) 371 4342', 2, '281958231371766233', 'No.11 Main building, 747 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-09-26', 0, 0, 'robinsonm1230', '2015-12-14', 'robinson1006', '2002-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS441565929532', '卢睿', 0, '+86 755-1610-0833', 1, '528064142127192917', '中国深圳罗湖区蔡屋围深南东路824号30楼', '1994-09-13', 0, 0, 'lurui', '2014-09-01', 'lu502', '2012-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS788809205470', '松田悠人', 1, '+86 755-165-6986', 0, '338676361165073770', '中国深圳罗湖区蔡屋围深南东路233号10号楼', '1996-10-11', 0, 0, 'ym2011', '2004-02-25', 'matsudayu2', '2001-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS621533007739', '孔子韬', 0, '+86 28-0397-4739', 3, '449292711370775608', 'No.1 building, 490 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-05-09', 0, 0, 'zitaoko', '2004-12-25', 'zkong', '2018-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS785143139560', '崔杰宏', 1, '+86 755-7792-7665', 3, '466764026255219289', 'No.11 building, 287 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1996-09-05', 0, 0, 'cuij', '2009-07-08', 'cuijiehong08', '2014-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS675661306328', 'Jeffery Jones', 0, '+1 330-561-6243', 2, '484102559860107996', '656 Collier Road Suite 11, Akron, OH 44320, United States', '1996-03-07', 0, 0, 'jefferyjones', '2011-12-23', 'jonesj10', '2004-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS042054090890', '青木大地', 0, '+1 838-485-3249', 1, '357284897793196740', '705 Central Avenue Apt 29, Albany, NY 12205, United States', '1996-06-14', 0, 0, 'aodaichi6', '2001-05-05', 'daichi69', '2007-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS154974026539', 'Deborah Nelson', 1, '+86 769-0444-5765', 3, '061942850041536192', '中国东莞坑美十五巷182号34号楼', '1986-08-25', 0, 0, 'dnelson', '2016-05-06', 'debne', '2008-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS094952181503', '村田凛', 0, '+44 5798 620299', 3, '417386027645833248', 'Unit 2, Oxford Eco Centre, 406 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-06', 0, 0, 'mri69', '2020-11-17', 'rinmurata', '2017-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS649097969089', '村上彩乃', 0, '+81 90-7893-6225', 1, '542573613245951411', '日本札幌白石区菊水三条五丁目4番8号33階', '1996-09-26', 0, 0, 'murakami3', '2000-04-14', 'mayan', '2010-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS332633242829', '石井樹', 0, '+86 760-004-1676', 3, '529901010032821935', 'No.35 building, 429 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-01-15', 0, 0, 'ishiits', '2005-05-25', 'iish1106', '2014-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS596432727205', 'Ellen Salazar', 0, '+44 5465 305053', 1, '835638443537821932', 'Flat 2, 227 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1991-06-02', 0, 0, 'salazar1202', '2015-05-25', 'ellensalazar', '2005-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS126615337969', 'Carmen Robertson', 0, '+86 10-850-9751', 1, '801491667110586329', '中国北京市西城区西長安街203号48室', '1998-06-05', 0, 0, 'carr', '2003-03-23', 'robertsoncarmen', '2012-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS815326214248', '内田明菜', 1, '+81 90-0768-3821', 4, '185213230797613845', '日本おおさかし近江堂一丁目7番17号4階', '1996-03-29', 0, 0, 'uchidakina', '2001-02-08', 'uchida827', '2003-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS974826408668', '苗慧儀', 0, '+81 66-973-3395', 3, '376199886793320252', '日本おおさかし東住吉区東田辺三丁目27番19号26階', '1987-02-06', 0, 0, 'miuwaiyee', '2018-04-21', 'miuwaiyee1', '2009-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS547380603964', 'Louise Mason', 0, '+81 52-271-8579', 3, '746847254291243808', 'Rm. 29, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-10-07', 0, 0, 'mlouise02', '2003-07-03', 'mlouise', '2021-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS223158980819', '阿部湊', 0, '+1 213-348-3341', 2, '237125353518090294', '767 Sky Way Apt 13, Los Angeles, CA 90043, United States', '1986-08-18', 0, 0, 'abeminato', '2002-10-02', 'minatoab', '2007-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS042828085376', '石井美咲', 0, '+81 11-701-9980', 2, '426091670345595177', '日本札幌豊平区豊平三条十三丁目3番13号37階', '1988-07-22', 0, 0, 'misishii', '2007-01-15', 'misakishii83', '2002-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS470807768437', 'Matthew Stewart', 0, '+81 11-620-8205', 4, '335989528375679595', '日本札幌白石区菊水三条五丁目2番2号1階', '1995-10-20', 0, 0, 'matthewstewart', '2021-01-30', 'stewamatthew', '2020-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS045942846967', '邱朝偉', 0, '+44 (116) 865 4166', 4, '986982181390437927', 'No.34 Main building, 941 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-06-10', 0, 0, 'chiuwai7', '2002-02-19', 'ycw1', '2010-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS080763254270', '蔡慧琳', 0, '+1 614-136-4837', 2, '863060042244668840', '353 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-06-21', 0, 0, 'choi2', '2012-06-30', 'choiwl926', '2020-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS593697685567', '樊心穎', 1, '+86 28-4798-3726', 3, '438338350599565754', '中国成都市成华区二仙桥东三路736号华润大厦11室', '1994-06-15', 0, 0, 'fsu', '2014-11-01', 'fan7', '2010-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS960619597785', '黎曉彤', 1, '+86 769-2943-3050', 2, '986366286939493179', '中国东莞珊瑚路702号45号楼', '1995-03-09', 0, 0, 'hiutunglai', '2008-04-24', 'htl', '2015-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS844188971124', 'Wayne Graham', 0, '+86 21-411-1677', 0, '335559486674437456', 'No.3 building, 913 Jianxiang Rd, Pudong, Shanghai, China', '1988-01-05', 0, 0, 'grahw', '2018-10-01', 'grw8', '2000-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS404370306539', '吳天樂', 1, '+44 (116) 166 7966', 3, '245670714508283003', 'Block 14, 331 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-10-23', 0, 0, 'tinlokn', '2002-03-16', 'tinlok405', '2011-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS061845030256', '關明', 0, '+86 179-3318-3440', 2, '880397804359542077', 'No.3 building, 343 Shennan Ave, Futian District, Shenzhen, China', '1987-04-13', 0, 0, 'kwanmi', '2000-06-23', 'mingkwan', '2000-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS241409253527', '中森舞', 1, '+81 66-564-8814', 2, '834068422959747752', '日本おおさかし平野区加美東四丁目9番6号24号室', '1986-04-05', 0, 0, 'nakamorima5', '2003-09-15', 'nmai', '2002-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS285303730624', '馮慧珊', 0, '+86 145-1845-0507', 1, '327156589499856907', '中国上海市闵行区宾川路507号17号楼', '1996-01-23', 0, 0, 'fws', '2011-09-23', 'wsfung', '2002-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS376051934171', '黃惠妹', 1, '+81 80-7380-4090', 3, '218244439910925096', '日本おおさかし西成区出城一丁目1番9号33号室', '1997-10-20', 0, 0, 'huw', '2015-09-12', 'hmwon', '2013-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS710894499013', '宣國榮', 1, '+86 21-9229-7730', 3, '258602865486886350', '中国上海市闵行区宾川路756号36室', '1996-02-23', 0, 0, 'kwhsuan523', '2004-09-28', 'kwh', '2017-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS508160786395', '杜慧琳', 0, '+44 (151) 186 5207', 2, '109082423956327623', 'Flat 2, 294 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-12-11', 0, 0, 'wlto', '2021-10-29', 'towl812', '2017-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS182597858623', '邱杰宏', 1, '+44 5588 346679', 4, '668705607412417708', 'No.3 Main building, 20 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-02-15', 0, 0, 'jieqiu', '2014-09-25', 'qiujieh', '2018-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS131010560542', 'Amanda Graham', 0, '+1 718-835-1505', 2, '101469032793331883', '343 Flatbush Ave Suite 42, Brooklyn, NY 11225, United States', '1999-01-08', 0, 0, 'graham2003', '2006-04-03', 'amandagraham', '2016-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS557743620624', 'Luis Murphy', 1, '+86 755-0339-7226', 3, '719435219984217586', 'Room 37, CR Building, 736 Shennan Ave, Futian District, Shenzhen, China', '1998-07-29', 0, 0, 'luismurphy', '2015-08-01', 'murphl2018', '2007-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS639489882446', '吕嘉伦', 0, '+86 21-4622-8774', 2, '931553840862673614', '37F, 892 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-12-31', 0, 0, 'lu129', '2004-03-12', 'lj1', '2020-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS514770346591', '韓慧嫻', 1, '+81 90-0031-8546', 3, '497083071838389726', '日本札幌中央区宮の森四条六丁目1番5号26階', '1990-02-24', 0, 0, 'hawh2', '2011-05-22', 'hanwh9', '2019-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS300796758982', '萬家強', 1, '+81 11-314-1766', 4, '997655497592113865', 'Rm. 13, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-05-04', 0, 0, 'mengkk', '2009-03-05', 'meng627', '2000-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS285711434209', 'Christopher Nelson', 0, '+44 (1865) 94 1474', 0, '076203463435520999', 'No.28 Main building, 863 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-21', 0, 0, 'chrne', '2006-11-04', 'nelson408', '2003-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS727653088364', '秦璐', 1, '+81 3-5844-5494', 1, '411974340809123799', '日本東京千代田区丸の内一丁目6番6号37階', '1990-04-14', 0, 0, 'qilu', '2002-06-16', 'qinlu', '2014-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS222704104300', 'Antonio Martin', 1, '+86 147-5316-9898', 3, '973914369604413239', 'No.2 building, 63 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-02-18', 0, 0, 'martinantonio', '2018-12-02', 'antomartin', '2011-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS921779923677', '江頴思', 1, '+81 52-062-0664', 3, '238268299989144283', '日本なごやし北区清水三丁目19番13号42階', '1994-07-02', 0, 0, 'wingszekong', '2010-11-27', 'wskong', '2017-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS148257942174', '贺子异', 1, '+81 80-0450-6360', 3, '891836574173395295', '43F, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-05-04', 0, 0, 'he220', '2010-05-10', 'zhe', '2005-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS833302069764', '陆岚', 0, '+44 (1865) 22 3554', 3, '360416123467341563', 'Flat 30, 267 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-06-16', 0, 0, 'llu', '2019-12-08', 'lal', '2003-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS852185125193', '曾杰宏', 0, '+86 146-1095-2250', 2, '847286923375380821', 'No.34 building, 648 Shanhu Rd, Dongguan, China', '1989-10-19', 0, 0, 'jiehong211', '2010-02-24', 'jzeng', '2020-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS196449177962', 'Ellen Morgan', 1, '+81 70-1465-8305', 1, '515565603693356101', '日本ならし大和郡山市本庄町一丁目1番5号37階', '1993-07-03', 0, 0, 'morgellen', '2018-02-04', 'morel7', '2009-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS360233244798', '杨岚', 1, '+44 (116) 909 8334', 3, '172250788291014054', 'Block 43, 294 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-06-03', 0, 0, 'yanlan328', '2021-11-17', 'laya', '2009-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS874854901327', 'Carrie Washington', 1, '+86 21-196-6142', 2, '875074641970515705', '中国上海市黄浦区淮海中路490号华润大厦29室', '1990-12-16', 0, 0, 'carriwash', '2020-08-08', 'carwashi4', '2013-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS707422443367', '梁秀文', 0, '+86 187-6669-3362', 3, '429188841983572501', 'No.16 building, 371 Tianhe Road, Tianhe District, Guangzhou, China', '1993-04-15', 0, 0, 'leung3', '2005-02-24', 'smleung2', '2006-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS365456147073', '藤原百花', 0, '+81 11-940-0669', 3, '364024262589519464', 'Rm. 25, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-07-03', 0, 0, 'momokaf', '2022-01-30', 'momofu', '2006-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS373834643103', '莫云熙', 0, '+1 213-452-7710', 1, '385878357737214381', '780 Sky Way Apt 11, Los Angeles, CA 90043, United States', '1987-07-13', 0, 0, 'moyunx46', '2002-04-01', 'yumo', '2021-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS984837722414', '小野美羽', 1, '+86 156-3601-2862', 1, '375006587680305801', '16F, 463 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-02-02', 0, 0, 'miuon605', '2018-02-12', 'ono1', '2002-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS588492532186', '苗明詩', 0, '+1 718-888-8346', 4, '222254361593888311', '738 Columbia St Apartment 39, Brooklyn, NY 11231, United States', '1995-06-13', 0, 0, 'mingszemi', '2015-12-23', 'mingszemi2', '2018-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS876904219192', '甘心穎', 0, '+81 70-0767-8116', 1, '987156695366656735', '17F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-06-05', 0, 0, 'sumkam66', '2020-09-14', 'sumwingkam3', '2016-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS728104753846', 'Joseph Nguyen', 0, '+86 28-267-9055', 1, '538082164215823764', 'No.40 building, No.60, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-01-18', 0, 0, 'josen2', '2015-05-26', 'jonguyen', '2018-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS070085847636', 'Jack Diaz', 1, '+86 130-2741-9162', 0, '672376619118870066', '中国成都市锦江区人民南路四段440号华润大厦47室', '1995-09-12', 0, 0, 'jackdia', '2017-03-30', 'dijack911', '2013-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS431328787227', '井上美月', 0, '+44 5926 525402', 2, '577181695693743286', 'Block 22, 696 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-02-22', 0, 0, 'mitsukiin', '2011-07-29', 'imitsuki', '2012-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS130667980094', '西村百花', 1, '+44 7195 716449', 0, '387705847407560515', 'Unit 3, Oxford Eco Centre, 534 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-05-26', 0, 0, 'nishimomoka', '2004-06-26', 'nim', '2004-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS009120833718', 'Walter Rodriguez', 0, '+44 (1223) 36 1051', 3, '098819085508114018', 'Unit 35, Oxford Eco Centre, 184 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-01-07', 0, 0, 'walrodr57', '2016-12-27', 'rodriguez5', '2015-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS703173184445', 'April Aguilar', 1, '+86 131-8881-4930', 0, '559645132494912578', 'Room 16, CR Building, 126 Hongqiao Rd., Xu Hui District, Shanghai, China', '1988-11-20', 0, 0, 'aprilagu10', '2009-07-05', 'aprilagu', '2020-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS421611015379', '木村瑛太', 0, '+81 80-7689-3089', 3, '955735769840145020', '日本おおさかし近江堂一丁目7番16号7号室', '1988-12-02', 0, 0, 'eitakimura', '2015-10-23', 'kimueit92', '2009-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS796648571359', '竹内葵', 0, '+1 330-124-8873', 3, '673742600971711831', '48 Collier Road Apt 24, Akron, OH 44320, United States', '1991-02-05', 0, 0, 'takeuchi07', '2020-01-12', 'takeuchi6', '2015-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS669129627751', '張天樂', 0, '+81 3-8056-7478', 1, '154666458899574063', '日本東京千代田区丸の内一丁目6番1号46号室', '1995-06-11', 0, 0, 'chetl', '2002-11-20', 'cheungtinlok', '2001-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS040154627127', '森陸', 0, '+86 153-1815-7686', 3, '987010897688163993', '中国成都市锦江区人民南路四段442号19号楼', '1992-04-04', 0, 0, 'mori49', '2016-05-12', 'rm79', '2016-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS055025218951', '近藤一輝', 0, '+86 10-9103-1227', 1, '858855111534296792', '中国北京市海淀区清河中街68号774号25号楼', '1994-12-17', 0, 0, 'ikkikondo323', '2000-10-09', 'ikkondo', '2019-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS416991389347', 'Sharon Soto', 1, '+44 (1223) 41 5651', 4, '874192849111552811', 'No.41 Main building, 713 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-06-03', 0, 0, 'sharon42', '2003-08-26', 'sharso919', '2020-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS262465440661', '高浩然', 0, '+1 213-129-1156', 2, '045080337772519994', '213 Figueroa Street Apt 40, Los Angeles, CA 90037, United States', '1995-02-08', 0, 0, 'kaohy', '2005-01-11', 'hoyin4', '2020-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS922332013539', 'Katherine Ryan', 1, '+86 162-1605-4281', 4, '499796661413430361', '中国深圳罗湖区蔡屋围深南东路4号32室', '1996-03-08', 0, 0, 'kathryan513', '2001-07-30', 'katherinerya', '2012-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS418414748332', '袁子异', 0, '+86 755-4697-0995', 1, '453729343520608629', '21F, 139 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-12-17', 0, 0, 'ziyiyuan620', '2014-06-19', 'yuan1988', '2020-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS164382934266', '汪睿', 0, '+81 80-2525-2738', 2, '053415493141816504', '日本おおさかし平野区加美東四丁目9番19号13階', '1986-12-29', 0, 0, 'wangrui2000', '2005-02-26', 'ruiwang99', '2002-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS379735246061', '原田健太', 0, '+44 (151) 605 1006', 2, '098214623567436740', 'Unit 9, Oxford Eco Centre, 75 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-02-01', 0, 0, 'keharada', '2015-06-29', 'kentaharada405', '2002-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS265330296022', '韦震南', 0, '+81 90-3848-8855', 3, '972644699736422383', '日本東京港区東新橋一丁目5番5号34階', '1996-06-15', 0, 0, 'weizh17', '2006-03-13', 'wei914', '2007-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS957548109411', '工藤葵', 1, '+86 189-3609-9637', 0, '541046309296920951', '中国北京市东城区东单王府井东街494号39室', '1987-04-10', 0, 0, 'kudo8', '2010-08-14', 'kudo7', '2020-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS327399767269', '中島七海', 1, '+81 70-1586-7408', 1, '249880191676480924', '日本なごやし瑞穂区河岸町四丁目20番18号44階', '1992-08-15', 0, 0, 'nakajiman1218', '2003-03-25', 'nakajimananami9', '2000-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS733292519149', '杜世榮', 0, '+81 3-9357-8049', 4, '869079691789581118', '日本東京港区東新橋一丁目5番13号35階', '1998-04-09', 0, 0, 'swt', '2002-02-09', 'tosw', '2018-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS525133489053', 'Mario Vasquez', 0, '+44 7495 921322', 4, '646433153749062129', 'No.37 Main building, 921 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-10-28', 0, 0, 'mariovasquez', '2007-06-24', 'vamario119', '2010-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS773388958098', 'Amber Murray', 0, '+81 80-9114-3865', 1, '073724213181199303', '47-kai, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-01-29', 0, 0, 'muramb', '2011-07-20', 'ambmurray', '2017-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS458407226490', '余子韬', 0, '+81 52-348-5489', 1, '096293414233339230', '15F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1994-09-23', 0, 0, 'yuzitao3', '2000-08-21', 'yuz6', '2020-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS214850362164', '卢杰宏', 0, '+86 20-1040-1479', 3, '122453342157565483', '中国广州市越秀区中山二路585号华润大厦26室', '1987-06-25', 0, 0, 'jieholu', '2003-10-14', 'lujiehong', '2001-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS025919873427', '酒井瑛太', 1, '+1 213-487-0588', 3, '691638075534722907', '748 Alameda Street Apt 25, Los Angeles, CA 90002, United States', '1989-05-27', 0, 0, 'eitasakai1227', '2019-12-24', 'eita1943', '2015-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS434792780682', 'April Morgan', 1, '+86 159-4484-4980', 3, '605966227827021304', '中国深圳龙岗区学园一巷690号17栋', '1988-07-15', 0, 0, 'aprilmor47', '2004-08-29', 'morga5', '2005-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS260281074384', 'Barbara Soto', 0, '+86 174-8698-8717', 2, '146512588395568745', '中国深圳罗湖区清水河一路880号20号楼', '1997-07-29', 0, 0, 'bso', '2019-09-27', 'barbarasoto', '2015-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS631509921817', '雷淑怡', 1, '+86 10-3690-5518', 0, '058264204538677268', 'No.40 building, 537 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-11-23', 0, 0, 'lousy', '2014-09-02', 'lsy99', '2021-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS800925910668', '苑頴思', 1, '+81 90-4810-1686', 0, '742542228435215381', '日本札幌白石区菊水三条五丁目4番17号8号室', '1995-05-13', 0, 0, 'yuen212', '2009-09-29', 'yuews', '2018-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS523454086852', '罗子韬', 1, '+81 3-1193-3449', 3, '372037857158856528', '日本東京品川区東五反田五丁目2番3号36号室', '1989-06-26', 0, 0, 'ziluo', '2016-12-05', 'zitaoluo', '2007-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS749617197371', 'Cheryl Long', 0, '+81 66-880-5621', 3, '639541490248778308', '日本おおさかし東住吉区東田辺三丁目27番19号40階', '1993-10-01', 0, 0, 'long911', '2011-04-22', 'cheryl918', '2002-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS964349967860', '許曉彤', 0, '+81 90-7728-2005', 0, '825112250083729787', '日本ならし西大寺赤田町一丁目7番9号13階', '1989-08-01', 0, 0, 'hiutunghui', '2006-04-28', 'huiht', '2000-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS766450792097', '餘祖兒', 0, '+1 212-834-8240', 3, '439159392250871688', '461 Canal Street Suite 40, New York, NY 10013, United States', '1985-07-11', 0, 0, 'choyeeyu5', '2021-04-12', 'cyyue', '2021-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS730740804426', 'Rose Martinez', 1, '+1 212-878-7246', 3, '451669230353836266', '409 West Houston Street Apartment 3, New York, NY 10014, United States', '1992-03-21', 0, 0, 'mr76', '2021-12-01', 'mar', '2005-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS649428325424', 'Monica Allen', 0, '+1 330-198-1697', 1, '625727760333624127', '17 Fern Street Apartment 44, Akron, OH 44307, United States', '1993-01-15', 0, 0, 'am701', '2014-11-07', 'monicaallen', '2014-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS912785544054', 'Bobby Sullivan', 1, '+86 142-6518-2736', 2, '718290288542624472', '中国成都市成华区双庆路766号华润大厦20室', '1996-10-07', 0, 0, 'sullbobby', '2021-09-08', 'bobbysull', '2000-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS678030144094', '上田凛', 1, '+1 312-863-4331', 4, '985835276179578653', '519 Rush Street Apt 33, Chicago, IL 60611, United States', '1987-04-27', 0, 0, 'ueda924', '2000-07-31', 'uedrin', '2018-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS751919533998', 'Alfred Evans', 1, '+86 10-3790-5368', 1, '637230574218141862', 'No.45 building, 45 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-01-23', 0, 0, 'evansa4', '2005-06-19', 'evans520', '2019-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS365207976518', 'Andrew Murphy', 0, '+81 3-4765-6407', 3, '653887458556214611', '34F, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-02-13', 0, 0, 'murphy1988', '2009-12-12', 'murandrew', '2005-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS826600738821', 'Walter Morales', 0, '+86 138-3101-0421', 3, '778301724304014531', '中国上海市浦东新区橄榄路501号27室', '1995-08-26', 0, 0, 'wm531', '2010-12-23', 'walter713', '2001-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS758828007127', '夏秀英', 0, '+44 (1865) 96 0407', 2, '609587861410485151', 'Unit 28, Oxford Eco Centre, 590 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-04-26', 0, 0, 'xiaxiuy1976', '2006-05-14', 'xiaxiu', '2005-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS659732904536', '駱曉彤', 0, '+1 718-556-0212', 4, '018289347579473262', '21 Bergen St Apartment 24, Brooklyn, NY 11217, United States', '1989-03-09', 0, 0, 'htlok76', '2013-03-19', 'htlok', '2011-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS723423264985', 'Arthur Vasquez', 1, '+86 21-1206-0065', 3, '664948958456085359', '中国上海市徐汇区虹桥路374号46楼', '1996-05-13', 0, 0, 'vaarthu', '2017-04-02', 'vaarthur11', '2020-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS009484412613', '孙秀英', 0, '+86 28-780-7832', 1, '418053108722003593', '中国成都市成华区玉双路6号34号华润大厦38室', '1988-10-12', 0, 0, 'xisun', '2012-05-02', 'xisun', '2000-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS827093603663', 'Jacqueline Gibson', 1, '+81 70-9815-5094', 2, '148052214384334217', '日本ならし学園南三丁目9番13号41階', '1996-09-25', 0, 0, 'jacgibson', '2011-09-11', 'gibsj', '2007-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS504296616472', '蘇慧珊', 1, '+81 3-8426-5946', 2, '085960022944365533', '日本東京千代田区丸の内一丁目6番2号6階', '1997-09-07', 0, 0, 'sows1122', '2018-09-30', 'wsso702', '2013-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS509250273923', 'Gregory Bennett', 0, '+81 66-821-0215', 3, '613686296105502004', '日本おおさかし平野区加美東四丁目9番18号19号室', '1987-03-10', 0, 0, 'benngregory1998', '2021-10-04', 'bengregory02', '2011-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS168555457562', 'Grace Powell', 0, '+1 213-186-3772', 1, '047332859218939456', '403 Wall Street Apt 14, Los Angeles, CA 90003, United States', '1992-03-26', 0, 0, 'powegrace', '2010-02-19', 'gpowell', '2021-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS673124874467', '宮本一輝', 0, '+81 90-4030-1978', 0, '124894592514082451', '日本なごやし北区楠味鋺三丁目80番15号17階', '1993-06-06', 0, 0, 'miyamoto45', '2022-01-19', 'miyamoto1968', '2004-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS108856955843', '容嘉欣', 1, '+1 213-895-2286', 2, '986692484582393573', '687 Wall Street Apartment 7, Los Angeles, CA 90003, United States', '1991-10-16', 0, 0, 'yunkaryan4', '2005-09-19', 'karyan906', '2003-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS389283611355', '邱安琪', 1, '+44 (1223) 41 4486', 0, '212952643074065388', 'Flat 40, 752 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-08-22', 0, 0, 'okyau', '2007-01-18', 'okya', '2001-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS768588253192', 'David Perry', 1, '+86 145-2959-8595', 1, '933932612055405683', '中国上海市黄浦区淮海中路314号50号楼', '1987-03-15', 0, 0, 'david1940', '2012-07-31', 'perrydavid', '2004-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS469389759109', '丸山結翔', 0, '+81 70-4022-2293', 1, '536557627074497687', '31F, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-13', 0, 0, 'myuito', '2020-10-27', 'maruyamayuit', '2015-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS163973416140', '清水悠人', 0, '+1 212-918-5294', 3, '194730573473962001', '502 West Houston Street Apt 42, New York, NY 10014, United States', '1995-05-22', 0, 0, 'shimizu1986', '2014-03-20', 'shiyuto1942', '2004-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS982975053392', '盧玲玲', 0, '+44 5481 568467', 3, '761657365526261588', 'Flat 5, 138 New Street, Birmingham, B2 4DB, United Kingdom', '1994-11-15', 0, 0, 'lllo2', '2012-08-02', 'linglingl', '2010-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS343531109450', '森田彩乃', 1, '+1 718-047-6435', 2, '611778262581918677', '197 Columbia St Apt 44, Brooklyn, NY 11231, United States', '1992-05-03', 0, 0, 'aym88', '2012-11-21', 'morita93', '2005-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS145674013198', 'Tracy Diaz', 0, '+81 66-531-4894', 4, '997827268750373247', '日本おおさかし近江堂一丁目7番3号24階', '1990-07-24', 0, 0, 'diaztracy', '2006-08-01', 'tracy716', '2012-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS281272405809', 'Edna Simmons', 0, '+81 11-249-3943', 2, '320703891232238375', '日本札幌豊平区豊平三条十三丁目3番1号2階', '1995-04-30', 0, 0, 'simmoed', '2006-08-31', 'edna206', '2017-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS482166103292', '盧慧嫻', 1, '+81 90-7534-1482', 4, '641771569154197339', '日本なごやし熱田区千年二丁目5番16号26階', '1996-04-13', 0, 0, 'lowh220', '2020-01-03', 'lowh5', '2019-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS593958808834', '羅家文', 1, '+86 10-589-8938', 2, '635139071877031731', '中国北京市东城区东单王府井东街321号11栋', '1998-02-19', 0, 0, 'kaman116', '2007-01-14', 'kamanl', '2012-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS980745118421', 'Esther White', 1, '+81 80-3947-4921', 2, '127657674628541263', '日本ならし学園南三丁目9番18号44階', '1986-09-19', 0, 0, 'esther724', '2000-04-01', 'estherwhite', '2006-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS311209057915', '藍浩然', 1, '+86 170-8407-1440', 2, '871376409217768937', 'No.9 building, 882 East Wangfujing Street, Dongcheng District , Beijing, China', '1998-05-25', 0, 0, 'hyl7', '2009-05-16', 'hoyin5', '2016-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS704155730583', '成頴璇', 0, '+86 167-0742-9719', 0, '699720540355435036', '中国广州市越秀区中山二路827号8室', '1993-05-25', 0, 0, 'wssh', '2008-06-30', 'shing629', '2010-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS964999331044', '魏子异', 0, '+86 192-6516-5919', 1, '033803361719353760', '中国广州市海珠区江南西路509号5楼', '1991-05-03', 0, 0, 'weiz', '2017-03-02', 'ziyi302', '2019-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS167000392080', '譚學友', 1, '+81 3-0097-9740', 0, '345423456364299869', '20F, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-12-29', 0, 0, 'hokytam75', '2000-04-25', 'tam8', '2000-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS587926105581', 'Benjamin Nguyen', 1, '+86 755-120-5040', 3, '241286402904423877', '19F, 558 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1987-02-23', 0, 0, 'benguyen', '2013-10-25', 'nguyen17', '2001-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS429418556093', '坂本陽菜', 0, '+44 (1865) 49 7736', 3, '983281868175710680', 'No.47 Main building, 696 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-09', 0, 0, 'sakahina324', '2016-04-24', 'sahina', '2018-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS111150586277', '曾永發', 0, '+44 7708 958714', 3, '612480702814567372', 'Unit 14, Oxford Eco Centre, 446 Regent Street, London, W1B 2LX, United Kingdom', '1992-03-19', 0, 0, 'tsangwingfat', '2000-05-12', 'tsangwf', '2006-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS926822235677', '湯詩君', 1, '+81 70-4262-0417', 3, '439193731050329538', '日本なごやし熱田区千年二丁目5番18号25階', '1986-05-18', 0, 0, 'skto', '2020-10-05', 'szekwanto', '2004-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS761098241471', '尹璐', 0, '+81 52-302-8280', 1, '431124459427275960', '日本なごやし瑞穂区河岸町四丁目20番19号35階', '1998-03-08', 0, 0, 'yl9', '2014-08-08', 'luy', '2012-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS804797002823', '薛詩涵', 1, '+44 7327 080562', 3, '164837171111190181', 'No.16 Main building, 475 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-05-06', 0, 0, 'shihanxue', '2008-03-26', 'shihanxue8', '2014-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS804013940317', 'Jeremy White', 1, '+86 28-2560-9473', 1, '777088165249263685', '中国成都市成华区双庆路20号41楼', '1987-12-04', 0, 0, 'whitejeremy1952', '2015-11-14', 'white75', '2015-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS434854349683', '韦云熙', 1, '+44 (116) 436 2497', 2, '053576330490115171', 'Flat 22, 927 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-27', 0, 0, 'yunxi1107', '2007-03-23', 'yunxi216', '2018-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS938116378761', '韩云熙', 0, '+1 330-254-2884', 1, '057467669322831474', '739 West Market Street 3rd Floor, Akron, OH 44333, United States', '1992-06-02', 0, 0, 'yunxihan', '2020-03-08', 'hany923', '2007-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS882480359601', '馮富城', 1, '+1 312-129-9085', 2, '535270100127224972', '890 Pedway Apartment 32, Chicago, IL 60601, United States', '1988-09-17', 0, 0, 'fsfu', '2016-11-18', 'fungfushing', '2020-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS936629157946', '夏詩涵', 1, '+86 28-337-7649', 3, '327404892115512664', '中国成都市成华区二仙桥东三路831号7号楼', '1994-07-19', 0, 0, 'xiashi904', '2018-07-06', 'xiashi', '2013-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS334653810321', '史晓明', 1, '+81 90-3185-4612', 0, '327916813831963780', '日本札幌豊平区豊平三条十三丁目3番7号26階', '1987-10-03', 0, 0, 'shix', '2016-09-05', 'xiaomingshi5', '2019-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS194409035718', '遠藤和真', 1, '+1 213-660-0133', 2, '711008757620256802', '742 S Broadway Apartment 46, Los Angeles, CA 90015, United States', '1993-07-30', 0, 0, 'kazumae2', '2002-10-23', 'kazumaen', '2011-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS997091987431', '福田海斗', 0, '+86 10-8653-1076', 0, '888545486674274388', '中国北京市海淀区清河中街68号615号华润大厦39室', '1993-08-20', 0, 0, 'kaf1990', '2015-03-10', 'kaitof', '2013-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS166342868140', 'Melissa Russell', 0, '+44 5471 733523', 3, '228947708612074970', 'Flat 35, 832 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-11-17', 0, 0, 'melissa40', '2005-08-29', 'russellme03', '2004-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS354038704960', '毛睿', 0, '+1 838-406-4257', 2, '599494337932129161', '655 State Street Apartment 25, Albany, NY 12203, United States', '1986-03-06', 0, 0, 'maorui1', '2007-06-08', 'rm217', '2005-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS272281246271', '孔璐', 0, '+44 7352 951919', 4, '903636450461434075', 'No.47 Main building, 440 Regent Street, London, W1B 2LX, United Kingdom', '1994-04-04', 0, 0, 'lukong701', '2020-09-20', 'konglu', '2019-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS148632059377', 'Carolyn Carter', 0, '+86 10-3258-0157', 4, '792989943602091175', '中国北京市东城区东单王府井东街999号40楼', '1991-05-21', 0, 0, 'carolyncarte', '2006-08-29', 'carolyn8', '2005-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS271788223025', '甘小慧', 0, '+1 330-229-1109', 2, '504376544480312645', '259 Riverview Road Apartment 4, Akron, OH 44313, United States', '1990-05-22', 0, 0, 'kamsw2019', '2008-09-30', 'kamsi', '2009-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS533684477723', '陆睿', 0, '+86 159-4170-9082', 3, '218021428086035353', 'Room 24, CR Building, 853 Sanlitun Road, Chaoyang District, Beijing, China', '1987-08-03', 0, 0, 'lu9', '2014-12-25', 'rui410', '2010-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS399077975897', '上野瑛太', 0, '+86 28-488-3661', 1, '921578820510207900', '中国成都市锦江区红星路三段789号4楼', '1990-01-20', 0, 0, 'ueita9', '2011-02-26', 'ueita1941', '2012-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS286093605061', '關德華', 1, '+86 755-101-4341', 1, '011172067472149988', 'No.1 building, 544 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-12-19', 0, 0, 'kwan526', '2018-02-15', 'kwan1963', '2021-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS386259588370', 'Beverly Rose', 1, '+86 180-7421-6187', 3, '580698464155459664', 'No.29 building, 498 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-02-07', 0, 0, 'beverlyros41', '2016-03-11', 'beverlyr620', '2004-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS386096400513', '遠藤聖子', 1, '+1 312-135-1299', 3, '298868379464046239', '572 Rush Street Suite 50, Chicago, IL 60611, United States', '1990-10-16', 0, 0, 'sendo', '2020-07-09', 'seikoendo', '2009-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS156578155311', '近藤桜', 1, '+86 10-248-6771', 3, '696306593740055292', 'Room 5, 985 Yueliu Rd, Fangshan District, Beijing, China', '1988-03-14', 0, 0, 'kondosakur', '2010-09-23', 'kondosakura', '2019-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS480011706790', '顧永發', 1, '+44 7375 897254', 2, '130491203679476212', 'No.35 Main building, 206 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-09-18', 0, 0, 'kuwf9', '2011-11-08', 'kuwf', '2009-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS432069144698', 'Martha Gibson', 0, '+44 (116) 806 8980', 4, '604842887819901901', 'Flat 24, 645 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-11-14', 0, 0, 'gibsonm', '2022-02-06', 'marthg', '2007-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS345509318209', '戚惠敏', 1, '+86 136-6787-3279', 2, '354973523876597242', 'No.11 building, 818 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-11-27', 0, 0, 'waiman318', '2012-04-08', 'waiman920', '2019-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS468074844344', '關慧儀', 1, '+81 70-9196-7140', 2, '851610052461238628', '日本なごやし北区清水三丁目19番3号15号室', '1995-06-25', 0, 0, 'kwanwaiyee42', '2014-12-22', 'kwwy', '2003-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS909836468279', '溫俊宇', 1, '+86 28-4459-2884', 2, '121307241586754360', '9F, No. 196, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-06-30', 0, 0, 'chunyuwan84', '2009-01-14', 'chunyuwa82', '2011-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS399385622448', '伊藤海斗', 1, '+81 70-7131-7400', 1, '003427132468295926', '30F, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-07-17', 0, 0, 'kaito85', '2004-10-26', 'ito609', '2005-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS298085406126', '曹睿', 1, '+81 90-8118-7215', 3, '513585459706180931', '日本おおさかし西成区出城一丁目1番8号12階', '1996-09-30', 0, 0, 'crui', '2001-06-30', 'rucao1993', '2006-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS274829332272', '陳詠詩', 1, '+81 3-5589-3803', 2, '357543742741465099', '42-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-09', 0, 0, 'cws', '2019-08-24', 'wingszechan51', '2007-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS717557526953', '池田樹', 0, '+86 130-1374-9505', 0, '818635956828910988', '中国深圳龙岗区布吉镇西环路63号45栋', '1993-09-21', 0, 0, 'ii7', '2017-12-30', 'itsukikeda402', '2010-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS046533791112', 'Willie Hamilton', 1, '+81 11-746-5469', 3, '116132145198725329', '日本札幌豊平区豊平三条十三丁目3番16号31階', '1991-09-14', 0, 0, 'hamiw', '2010-02-24', 'willieham', '2000-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS515848161534', '大塚樹', 0, '+1 614-698-6999', 4, '685208870477497343', '943 Tremont Road Apartment 6, Columbus, GA 43212, United States', '1989-02-01', 0, 0, 'oitsuk', '2012-06-30', 'otsuka3', '2005-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS933910866970', '傅慧珊', 0, '+86 21-8424-4755', 4, '366031498941673887', '中国上海市浦东新区橄榄路583号华润大厦49室', '1996-06-08', 0, 0, 'waisan404', '2000-03-20', 'fwaisan', '2021-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS622346795891', '鄧志遠', 1, '+81 80-3461-7053', 0, '532535381305481200', 'Rm. 12, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-03-17', 0, 0, 'tangcy531', '2010-02-21', 'cyt518', '2019-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS574352877068', '韩宇宁', 1, '+81 70-3738-9231', 3, '640745476906925875', '17F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-11-20', 0, 0, 'hanyuning1', '2015-05-04', 'hany1206', '2019-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS553148860880', '後藤大和', 0, '+1 212-712-6961', 2, '728809978942629835', '973 West Houston Street 3rd Floor, New York, NY 10014, United States', '1992-02-15', 0, 0, 'gotoy', '2006-03-02', 'gotoyamato9', '2007-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS945938088555', '田家輝', 0, '+1 614-122-7967', 3, '736648633729676964', '571 East Alley Apt 15, Columbus, GA 43201, United States', '1993-01-29', 0, 0, 'tinkafai', '2021-06-29', 'tikafai', '2015-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS788330743775', 'Martin Gordon', 0, '+1 718-136-7037', 2, '943691481679466682', '361 Columbia St Suite 33, Brooklyn, NY 11231, United States', '1993-03-05', 0, 0, 'martingor3', '2021-09-18', 'gordon2014', '2001-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS351287684821', '史云熙', 0, '+44 5704 262970', 1, '495156974158283236', 'No.20 Main building, 643 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-08-06', 0, 0, 'yshi94', '2014-03-17', 'yunxshi120', '2006-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS501978549300', '林明', 0, '+86 10-8227-5616', 3, '838704221632604440', '中国北京市東城区東直門內大街833号35室', '1990-03-17', 0, 0, 'lami805', '2001-10-13', 'minglam', '2012-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS447114672909', '谢致远', 0, '+86 192-5733-3206', 3, '296696751332104095', '中国北京市朝阳区三里屯路584号39室', '1998-03-18', 0, 0, 'zhxie', '2016-12-10', 'xie03', '2012-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS598818430024', '阮梓軒', 0, '+1 718-633-2100', 3, '899218362483332319', '260 1st Ave Apartment 15, Brooklyn, NY 11220, United States', '1994-05-23', 0, 0, 'yuentszhin', '2006-08-28', 'thyuen705', '2014-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS165479366511', '叶睿', 1, '+81 11-407-3734', 3, '911971848661731692', 'Rm. 41, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-11-18', 0, 0, 'yerui1009', '2008-06-14', 'ye516', '2002-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS539058457541', '中川光', 0, '+81 90-9545-6976', 3, '999765494347543610', '50F, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1998-03-20', 0, 0, 'nakagawa424', '2002-11-11', 'nakagawah', '2019-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS052043805230', 'Benjamin Schmidt', 0, '+44 7019 274747', 2, '540382160036220711', 'Unit 17, Oxford Eco Centre, 484 Portland St, Manchester, M1 3LA, United Kingdom', '1987-11-15', 0, 0, 'benjamin1950', '2013-01-02', 'bes', '2021-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS393215310289', 'Steven Bell', 1, '+86 164-1157-4371', 0, '887787919949946679', '中国深圳龙岗区学园一巷108号14号楼', '1989-10-02', 0, 0, 'stevbe', '2014-02-26', 'besteven715', '2015-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS101389552492', '區明詩', 1, '+86 755-208-2699', 2, '651329178996740188', '30F, 309 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-05-08', 0, 0, 'mingszea', '2000-09-05', 'mingsze92', '2000-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS752912335489', 'Ricky Richardson', 1, '+81 80-8981-1049', 4, '750467114745636968', '27-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-10-21', 0, 0, 'richardsonri', '2020-01-20', 'ricky6', '2002-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS048242199490', '桜井彩乃', 1, '+81 90-8808-4260', 2, '889179887347679514', 'Rm. 11, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1989-01-12', 0, 0, 'sakurayano', '2014-02-05', 'sakurai715', '2016-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS486529159895', 'Debbie Dunn', 0, '+81 90-5543-0518', 3, '572620110581963227', '35F, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-12-24', 0, 0, 'debbiedu', '2000-09-20', 'dedu', '2008-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS373641050442', 'Kyle Kennedy', 0, '+81 52-766-6894', 4, '054352929799328000', '19F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-07-12', 0, 0, 'kenkyle1023', '2019-08-21', 'kenk10', '2007-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS902404073568', 'Sean Wood', 1, '+81 90-6296-5140', 3, '409707832108804356', '日本おおさかし西成区出城一丁目1番3号32階', '1997-09-01', 0, 0, 'sean806', '2009-04-05', 'seanw15', '2002-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS160017088528', '林子韬', 1, '+81 66-648-2099', 1, '580572063285912297', '日本おおさかし西成区天神ノ森二丁目1番4号19階', '1995-06-08', 0, 0, 'lizi', '2003-12-22', 'zlin', '2007-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS551434435133', '于云熙', 1, '+81 70-4219-6974', 3, '200870724065259564', '日本おおさかし平野区加美東四丁目9番7号20号室', '1988-12-22', 0, 0, 'yunxiyu1983', '2019-05-06', 'yy210', '2009-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS675212163821', '藍國明', 0, '+81 70-6498-2969', 2, '122881741246729893', '20-kai, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-12-18', 0, 0, 'kmla', '2004-01-31', 'lamkwokming86', '2003-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS435881584899', '阎秀英', 0, '+86 21-9596-7297', 1, '400925168908788242', '中国上海市黄浦区淮海中路858号34栋', '1995-07-07', 0, 0, 'yxiuyi', '2005-12-02', 'yanxiuyi1', '2021-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS599967407096', '松井和真', 1, '+86 10-237-0146', 0, '617165316502525218', '中国北京市房山区岳琉路784号华润大厦46室', '1995-12-29', 0, 0, 'mkazu', '2008-09-11', 'mkazuma40', '2002-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS908961559994', '谢秀英', 0, '+86 195-2042-5433', 2, '962612738632417961', 'Room 29, 262 Sanlitun Road, Chaoyang District, Beijing, China', '1998-02-09', 0, 0, 'xie820', '2021-06-04', 'xxiuying4', '2012-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS430809845208', '宮崎湊', 0, '+81 52-919-5587', 3, '492183049704518133', '日本なごやし守山区瀬古東二丁目171番10号20階', '1988-11-26', 0, 0, 'minamiyazaki', '2005-12-07', 'minato60', '2001-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS024500569607', '谭宇宁', 0, '+86 21-4912-5856', 2, '221004716366410905', '22F, 394 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-04-05', 0, 0, 'yuningta', '2006-06-11', 'tayuning', '2005-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS303548048913', '鄺榮發', 0, '+81 70-2694-0487', 0, '556651967556327959', 'Rm. 15, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-10-28', 0, 0, 'wingfatkw', '2018-03-03', 'wingfatk1988', '2020-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS752898446377', '朱志遠', 0, '+81 74-481-2863', 3, '435430131333545648', '日本ならし西大寺赤田町一丁目7番17号20階', '1993-11-04', 0, 0, 'chiyuenchu2', '2020-07-01', 'chiyuenchu', '2005-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS394471628087', 'Brenda Snyder', 1, '+81 74-351-0081', 2, '865988770848712503', 'Rm. 31, 3-9-16 Gakuenminami, Nara, Japan', '1998-11-10', 0, 0, 'snyder18', '2009-10-21', 'brenda113', '2002-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS976362358658', 'Lois Hicks', 0, '+1 212-000-9600', 2, '354127912160950536', '176 Canal Street Suite 16, New York, NY 10013, United States', '1991-04-14', 0, 0, 'lh331', '2020-10-22', 'hicks12', '2009-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS186428937906', '有村愛梨', 1, '+81 66-196-6024', 0, '213592290513549070', '日本おおさかし西成区出城一丁目1番16号21階', '1998-05-01', 0, 0, 'arimuraairi4', '2008-08-24', 'airarimura', '2011-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS487946365387', '山本樹', 0, '+81 3-4638-3853', 1, '382971380690282829', 'Rm. 34, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1998-03-16', 0, 0, 'itsuki10', '2012-03-23', 'yamamotoit', '2005-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS451700800981', '马震南', 0, '+81 70-7843-7615', 3, '232567887361026441', '日本なごやし北区清水三丁目19番4号6階', '1992-02-06', 0, 0, 'zhennan9', '2017-04-29', 'zhennan2', '2018-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS156301457447', '常云熙', 1, '+86 190-4823-3056', 0, '487241022099874916', 'No.24 building, 322 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-09-08', 0, 0, 'yunxichang03', '2010-05-11', 'chayunxi', '2018-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS536473038931', '張俊宇', 0, '+1 213-289-7053', 3, '345580629841821193', '699 Wall Street Apt 45, Los Angeles, CA 90003, United States', '1986-05-11', 0, 0, 'chunyucheung1012', '2015-08-04', 'chunyucheung', '2013-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS675407157605', 'Evelyn Torres', 0, '+86 10-4991-9674', 3, '240905678306147337', 'No.37 building, 563 028 County Rd, Yanqing District, Beijing, China', '1996-01-13', 0, 0, 'torres105', '2010-11-29', 'torreve1', '2009-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS132991256200', '袁思妤', 0, '+86 28-3771-8679', 4, '532605827855199642', 'Room 21, CR Building, 65 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-06-09', 0, 0, 'yuensy9', '2021-10-11', 'yuensy5', '2003-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS827884822040', '戴云熙', 1, '+44 (161) 758 3690', 0, '999512623906712004', 'Block 3, 592 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-02-20', 0, 0, 'yud4', '2008-11-08', 'daiyu', '2015-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS097473096995', '鄭浩然', 1, '+44 7838 407052', 1, '780342574414767948', 'Block 24, 876 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-11-03', 0, 0, 'chenghoyin', '2006-02-12', 'hoyinchen', '2015-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS108276791903', '福田美羽', 0, '+86 151-8021-5557', 0, '811709008625370604', '中国深圳罗湖区清水河一路555号25号楼', '1996-06-24', 0, 0, 'fukmiu', '2021-02-12', 'fukumiu', '2004-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS203747798976', '盧青雲', 1, '+86 188-1475-8344', 2, '907344889801540384', 'Room 47, 500 Shennan Ave, Futian District, Shenzhen, China', '1986-04-11', 0, 0, 'lo1116', '2017-04-23', 'chingwanlo', '2010-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS957125188656', '柴田美月', 0, '+86 21-547-3234', 2, '532521753718873702', 'Room 45, CR Building, 601 Ganlan Rd, Pudong, Shanghai, China', '1990-05-31', 0, 0, 'mitsuki2', '2002-02-17', 'mishi7', '2009-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS757431110401', '崔云熙', 0, '+86 165-9542-0911', 3, '384318030305943610', 'Room 18, CR Building, 863 Shennan Ave, Futian District, Shenzhen, China', '1995-07-26', 0, 0, 'cuiyunxi408', '2007-11-03', 'yunxi65', '2016-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS988312311343', '侯宇宁', 0, '+81 3-4250-2992', 1, '672010969107018242', '日本東京品川区東五反田五丁目2番15号21号室', '1986-11-25', 0, 0, 'yhou', '2016-04-04', 'yunhou', '2013-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS288020259419', '梅心穎', 0, '+81 80-4145-6603', 3, '887923629552230616', '日本札幌豊平区豊平三条十三丁目3番5号43号室', '1986-04-12', 0, 0, 'muisumwing1', '2004-01-03', 'swm', '2002-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS076847501462', 'Joseph Kelley', 0, '+86 189-9350-2182', 1, '857074137728986411', '46F, 350 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-07-13', 0, 0, 'kelley5', '2004-11-28', 'kelleyjoseph', '2011-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS783057519254', '林震南', 0, '+44 (20) 5704 6440', 1, '723886429287594421', 'Unit 46, Oxford Eco Centre, 909 Regent Street, London, W1B 2LX, United Kingdom', '1996-12-03', 0, 0, 'zlin', '2019-12-31', 'zhenl', '2007-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS029001532919', 'Tiffany Ramirez', 0, '+44 (1223) 38 6953', 3, '035911496084725543', 'Unit 5, Oxford Eco Centre, 124 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-08-27', 0, 0, 'tiffanyr', '2013-03-12', 'tiffanyramirez', '2021-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS045165218417', '黎致远', 0, '+44 (1223) 52 3845', 2, '841440954533445787', 'Flat 14, 369 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-10-17', 0, 0, 'zhiyuan1203', '2018-09-07', 'lizhiyuan', '2019-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS655013815303', '柴田舞', 1, '+1 213-091-5523', 4, '463083064946568810', '218 S Broadway Suite 21, Los Angeles, CA 90015, United States', '1995-04-11', 0, 0, 'shibatama', '2017-07-19', 'shmai8', '2004-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS255054963679', '刘致远', 0, '+44 (1865) 47 7471', 1, '154848842666444747', 'No.14 Main building, 168 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-12-03', 0, 0, 'zhiyuanliu', '2007-10-28', 'zliu', '2011-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS798259643308', '馬杰倫', 0, '+81 80-0569-3258', 1, '955409779323089219', 'Rm. 23, 3-27-2 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-10-27', 0, 0, 'clma40', '2012-09-29', 'chiehlunma', '2012-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS677585625876', '白思妤', 0, '+86 10-9502-8848', 1, '284621422647098777', 'Room 32, CR Building, 709 Yueliu Rd, Fangshan District, Beijing, China', '1996-09-28', 0, 0, 'sypak', '2001-02-15', 'sypak', '2021-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS628405783259', '段璐', 1, '+81 74-123-7896', 2, '313039077701698189', '15-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-03-06', 0, 0, 'lud45', '2010-10-14', 'ludu95', '2004-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS123668906931', '有村涼太', 0, '+44 (161) 571 0434', 0, '605864829694987669', 'Flat 17, 427 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-04-01', 0, 0, 'ryota6', '2022-01-30', 'ryotarimu6', '2006-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS329516923135', '柴田凛', 1, '+86 149-7177-2864', 2, '697701321855261008', '中国上海市闵行区宾川路161号1号楼', '1986-03-23', 0, 0, 'shibatarin', '2004-01-25', 'rinshibata', '2019-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS193042797672', 'Pauline Wilson', 1, '+86 769-884-1369', 0, '916324550154506131', 'Room 50, 327 Huanqu South Street 2nd Alley, Dongguan, China', '1991-11-28', 0, 0, 'wilson921', '2002-05-22', 'wilsopauline1114', '2012-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS583440544769', '小島彩乃', 0, '+81 52-893-1883', 2, '401143443267588320', '日本なごやし北区楠味鋺三丁目80番20号49階', '1998-12-03', 0, 0, 'kojayano', '2013-04-01', 'aykojima1986', '2003-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS099822397806', '福田紗良', 1, '+86 20-7724-8767', 3, '747002181553231713', '中国广州市越秀区中山二路492号27楼', '1985-11-21', 0, 0, 'fukuda321', '2019-11-05', 'sarafukuda', '2001-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS858349185900', 'Eva Harrison', 1, '+86 28-709-0142', 0, '065965379080124091', 'No.19 building, No. 185, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-11-14', 0, 0, 'eva1946', '2004-07-24', 'hareva821', '2012-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS941957765035', '蒋睿', 0, '+44 (116) 889 9749', 3, '039608985458630091', 'No.48 Main building, 354 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-01-09', 0, 0, 'ruijia403', '2008-12-24', 'jiang3', '2019-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS348132661507', 'Mark Grant', 1, '+44 7600 731456', 2, '320863079935647186', 'No.18 Main building, 699 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-04-05', 0, 0, 'grmark', '2003-11-06', 'mark118', '2019-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS583693815189', '梁安琪', 1, '+81 70-1430-6294', 2, '183542009278569948', '日本東京渋谷区代々木二丁目3番6号26階', '1989-06-21', 0, 0, 'leungonk7', '2019-03-16', 'okleu', '2007-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS433723655423', '鄧朝偉', 0, '+86 10-429-2372', 4, '065929599954552001', '中国北京市西城区西長安街569号华润大厦28室', '1997-02-11', 0, 0, 'chiuwaitan3', '2001-01-11', 'chiuwaitan', '2008-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS713904774755', '曹家輝', 1, '+1 614-091-8128', 2, '429757544456492161', '927 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-10-17', 0, 0, 'kfcho71', '2010-09-11', 'kafai9', '2011-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS395933094559', 'Sheila Ortiz', 0, '+81 74-742-7473', 3, '158838368323301824', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-11-29', 0, 0, 'sort5', '2018-06-22', 'ortiz1207', '2001-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS529327841822', '邵嘉伦', 0, '+86 20-6695-7513', 1, '125257672063856317', 'Room 46, CR Building, 795 Tianhe Road, Tianhe District, Guangzhou, China', '1996-10-08', 0, 0, 'jialunsh', '2012-08-04', 'jshao', '2020-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS212363034561', 'Chris Nichols', 0, '+81 70-6917-8777', 2, '230475995139269657', 'Rm. 49, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-10-15', 0, 0, 'chrisnich', '2002-12-23', 'chris605', '2005-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS359212122207', '高晓明', 1, '+81 66-971-9776', 2, '216884047054700994', '46F, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1997-08-02', 0, 0, 'xiaominggao1116', '2013-05-11', 'xiaga1230', '2016-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS894894422308', '邱安琪', 0, '+81 52-602-8307', 3, '359325333606060227', '2-kai, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1990-07-02', 0, 0, 'qa8', '2017-12-11', 'anqiqiu1', '2004-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS520171727404', '高霆鋒', 1, '+81 80-6584-0950', 1, '687309768115971907', '日本東京中央区銀座三丁目12番13号11階', '1988-04-17', 0, 0, 'kaotingfung', '2014-03-17', 'tingfung6', '2012-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS433088432373', '後藤百花', 1, '+44 7267 411560', 1, '263319738173921613', 'Flat 47, 270 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-04-15', 0, 0, 'gotomomoka', '2022-02-15', 'gotomom', '2020-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS093584489034', '江璐', 1, '+86 20-5659-9086', 2, '853638504110805437', '中国广州市越秀区中山二路409号19栋', '1990-09-17', 0, 0, 'jianglu', '2021-09-07', 'jlu6', '2015-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS652687969134', '森田悠人', 1, '+81 74-759-3576', 4, '321046903414849853', '日本ならし学園南三丁目9番10号50階', '1996-07-13', 0, 0, 'myuto', '2019-02-28', 'moriyut', '2002-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS266836122944', '馮世榮', 1, '+86 20-228-2862', 3, '186740698884018392', '中国广州市白云区机场路棠苑街五巷361号12室', '1986-01-09', 0, 0, 'funsw01', '2003-03-20', 'saiwingfung', '2016-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS132284769978', '刘宇宁', 0, '+86 135-6394-9502', 3, '465979238888107877', '中国北京市東城区東直門內大街592号华润大厦42室', '1987-04-07', 0, 0, 'liu66', '2020-01-12', 'yuningl115', '2018-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS822504396884', 'Ernest Smith', 0, '+86 139-8648-6044', 1, '380835627661338983', 'Room 12, No. 5, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-06-02', 0, 0, 'esmith', '2007-08-28', 'ernestsmith9', '2012-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS083817346575', '駱裕玲', 0, '+1 614-696-3060', 2, '894560273417434920', '208 Wicklow Road Suite 39, Columbus, GA 43204, United States', '1995-09-30', 0, 0, 'lok1106', '2022-02-14', 'loyl', '2002-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS324074793921', '横山瑛太', 1, '+1 312-862-2396', 3, '993120572403445197', '532 North Michigan Ave Apt 26, Chicago, IL 60611, United States', '1996-07-22', 0, 0, 'eitay', '2019-08-02', 'yokoyama1', '2006-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS197164170685', 'Phyllis Crawford', 0, '+44 7709 850725', 2, '406298025031593752', 'Flat 16, 50 Hanover Street, London, W1S 1YD, United Kingdom', '1991-07-15', 0, 0, 'phylliscraw', '2005-12-29', 'crawford403', '2002-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS425359893631', 'Mario Bennett', 0, '+1 614-769-6934', 3, '731615367246332095', '621 East Alley 3rd Floor, Columbus, GA 43201, United States', '1987-01-26', 0, 0, 'bm4', '2018-04-21', 'bennema40', '2015-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS957523385184', '姜璐', 1, '+81 3-1406-2707', 1, '487652513089040617', '13F, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-10-24', 0, 0, 'jlu', '2012-12-10', 'jianlu', '2006-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS404827901315', '任發', 0, '+81 90-8787-6184', 1, '212464693153033471', 'Rm. 2, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1996-09-18', 0, 0, 'yafat4', '2010-05-21', 'fatyam2004', '2009-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS181511431129', '官德華', 1, '+86 192-9904-0685', 1, '147331324447967187', 'Room 21, 334 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-02-08', 0, 0, 'takwah75', '2016-07-29', 'kootw5', '2014-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS059527609132', 'Jack Ross', 1, '+44 (116) 180 7266', 2, '717537672916508118', 'Flat 25, 329 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-06-01', 0, 0, 'rjac603', '2015-06-09', 'jackross123', '2006-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS598383611639', 'Robin Nguyen', 1, '+86 161-5374-1056', 3, '845021729331991313', '中国深圳龙岗区学园一巷233号华润大厦6室', '1990-02-20', 0, 0, 'nguyenro', '2021-08-19', 'robng2', '2017-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS082779631533', 'Irene Williams', 0, '+86 755-045-0612', 4, '715356869994392551', '34F, 567 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-18', 0, 0, 'wilirene62', '2002-03-18', 'irenewilliams', '2009-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS747254938537', '工藤結翔', 0, '+81 70-1945-6065', 3, '943839933903367043', '日本東京品川区東五反田五丁目2番17号19階', '1993-02-15', 0, 0, 'yuitoku', '2017-02-25', 'kudoyui407', '2011-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS627431423487', '上田桜', 0, '+81 90-8192-3286', 1, '849634078928086661', '日本なごやし北区清水三丁目19番2号6階', '1992-06-06', 0, 0, 'ueda05', '2019-12-09', 'sakura64', '2015-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS928237044995', '杨嘉伦', 0, '+86 21-2137-2272', 1, '194376651540974946', '45F, 177 Jianxiang Rd, Pudong, Shanghai, China', '1991-03-06', 0, 0, 'jialunyang', '2001-02-07', 'yangjia', '2009-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS139353256733', '萧致远', 0, '+81 11-172-6904', 3, '664941684898035008', 'Rm. 46, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-02-26', 0, 0, 'xiao220', '2005-08-21', 'xiz', '2020-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS855152408545', '袁惠妹', 0, '+44 7862 930343', 3, '769201409717704421', 'Block 25, 117 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1988-11-01', 0, 0, 'yuehuimei418', '2001-09-04', 'huimeiy', '2014-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS781972681241', 'Tiffany Flores', 0, '+81 3-0933-4047', 1, '495269827794187729', '日本東京中央区銀座三丁目12番2号33階', '1998-12-17', 0, 0, 'tiffaflores74', '2008-04-01', 'tiffaflore2', '2015-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS726941046616', '马璐', 1, '+44 7571 670328', 3, '931286864413019237', 'Block 3, 891 Portland St, Manchester, M1 3LA, United Kingdom', '1990-11-19', 0, 0, 'malu', '2000-02-14', 'luma', '2014-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS539022053466', '斎藤優奈', 1, '+81 74-769-9669', 2, '901403880656749182', '日本ならし大和郡山市本庄町一丁目1番10号35階', '1992-04-23', 0, 0, 'saito5', '2011-06-04', 'yunsaito', '2000-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS060065069612', '楊慧珊', 1, '+81 90-3784-9341', 2, '376904672177335857', '48F, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-11-22', 0, 0, 'waisan3', '2012-05-15', 'wsyeung', '2011-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS405727659370', '雷嘉伦', 0, '+44 5747 132597', 2, '871852602134377670', 'Block 11, 804 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-12-22', 0, 0, 'leij', '2007-04-03', 'jil', '2002-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS423564033962', '蒋嘉伦', 0, '+86 21-4369-6066', 3, '684050088064986559', 'Room 23, 223 Binchuan Rd, Minhang District, Shanghai, China', '1988-08-08', 0, 0, 'jjialun9', '2016-05-20', 'jialunjia', '2009-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS687678325468', '卢晓明', 1, '+86 755-062-7305', 2, '376650814972267136', 'Room 40, CR Building, 741 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-03-08', 0, 0, 'xiaomlu', '2003-11-09', 'xiaoming4', '2002-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS063803102659', 'Victor Williams', 1, '+81 70-1335-0161', 3, '503353471077890506', '日本札幌白石区菊水三条五丁目2番10号15階', '1986-10-11', 0, 0, 'victor4', '2004-06-30', 'victor03', '2009-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS428215657346', '金震南', 0, '+81 11-599-7893', 2, '355393306490562067', 'Rm. 4, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-10', 0, 0, 'zhjin914', '2012-06-15', 'zhennanjin', '2013-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS783523809824', '湯家玲', 0, '+1 838-332-9561', 4, '743588771671651676', '26 Central Avenue Suite 18, Albany, NY 12205, United States', '1986-05-07', 0, 0, 'kalington5', '2007-05-10', 'tongkaling', '2017-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS030401675580', '莫岚', 1, '+81 66-348-5093', 0, '312966100831431354', '日本おおさかし東住吉区東田辺三丁目27番16号50階', '1997-01-09', 0, 0, 'lamo', '2013-08-18', 'molan53', '2012-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS729127856209', '平野蓮', 0, '+1 330-476-3792', 2, '047459243329132859', '394 Riverview Road Apartment 31, Akron, OH 44313, United States', '1989-12-27', 0, 0, 'ren2017', '2005-02-05', 'renhirano67', '2016-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS309528886253', '武田優奈', 1, '+44 (20) 3243 2623', 4, '196144964251838783', 'Unit 30, Oxford Eco Centre, 867 Maddox Street, London, W1S 1PU, United Kingdom', '1999-02-08', 0, 0, 'yut', '2009-03-04', 'yuntakeda', '2002-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS887690909680', '竹内優奈', 0, '+86 195-4486-3738', 3, '065673038731078172', '中国上海市浦东新区健祥路512号2楼', '1986-06-13', 0, 0, 'yuna6', '2015-06-04', 'takeuchi1975', '2001-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS053039422696', '松本詩乃', 0, '+81 80-5469-4873', 4, '257012297851306959', '33F, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-02-08', 0, 0, 'matshino', '2006-02-08', 'matsumotoshino', '2003-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS515538341386', '汪朝偉', 0, '+81 3-2542-9680', 0, '632746191998205923', '日本東京港区東新橋一丁目5番9号6階', '1998-05-01', 0, 0, 'cwwo', '2010-10-05', 'wong97', '2013-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS038685078064', '汪秀文', 0, '+86 10-6568-3027', 2, '129705569947472077', '中国北京市朝阳区三里屯路76号22楼', '1998-05-02', 0, 0, 'smwong', '2008-09-21', 'wongsm', '2001-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS360606484661', '内田彩乃', 1, '+86 153-0311-9882', 3, '309308850899110651', '中国上海市黄浦区淮海中路465号23室', '1990-05-03', 0, 0, 'ayanouchida', '2007-10-01', 'uchidaayano328', '2022-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS073678543899', '阎致远', 1, '+44 5450 760251', 3, '170656907827645391', 'No.32 Main building, 494 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-08-28', 0, 0, 'yaz', '2008-04-17', 'zhiyuan17', '2021-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS299528901691', '中森和真', 1, '+81 90-2550-5948', 4, '624168365881234427', '10F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-11-25', 0, 0, 'nakamori3', '2007-04-05', 'kazuma4', '2017-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS451402702955', '莫慧嫻', 0, '+81 90-6162-0634', 3, '308490904698028718', '日本なごやし瑞穂区河岸町四丁目20番9号39号室', '1998-03-19', 0, 0, 'mwaihan9', '2007-09-02', 'wamok1', '2008-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS672293721973', '甘永發', 1, '+81 70-5440-1521', 3, '638473589840522251', 'Rm. 47, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-07-16', 0, 0, 'kwf92', '2008-02-02', 'kamwf2', '2006-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS192927356169', 'Sherry Perez', 1, '+86 199-3795-1357', 1, '352541640130582011', 'Room 16, 875 Binchuan Rd, Minhang District, Shanghai, China', '1993-04-14', 0, 0, 'perezsherr9', '2018-08-31', 'sherryperez216', '2007-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS429684132064', 'Brenda Kelley', 0, '+86 155-8315-2993', 4, '805493447911260332', 'No.30 building, 556 Huanqu South Street 2nd Alley, Dongguan, China', '1993-12-21', 0, 0, 'brendak', '2003-08-04', 'brenda6', '2021-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS678526237712', '呂慧嫻', 1, '+81 80-3750-7208', 0, '532303168123044967', '21F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-05', 0, 0, 'lwa9', '2017-01-09', 'waihan86', '2018-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS519667515654', '高橋舞', 1, '+81 70-0634-1727', 1, '421984020709373134', 'Rm. 41, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-05-18', 0, 0, 'takahashi03', '2020-10-23', 'tmai', '2004-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS838556527160', '工藤明菜', 1, '+86 181-4106-3037', 1, '573342863790510674', '6F, 454 Huanqu South Street 2nd Alley, Dongguan, China', '1988-04-13', 0, 0, 'akinakudo', '2021-06-20', 'ak9', '2002-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS462810693594', '成力申', 0, '+86 28-8192-9124', 4, '002548171148604200', '中国成都市成华区二仙桥东三路165号47栋', '1990-01-02', 0, 0, 'sls604', '2001-05-04', 'liksunshin', '2008-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS543274039376', '菅原悠人', 0, '+86 755-2444-8150', 1, '970935417374913161', '中国深圳福田区景田东一街302号42号楼', '1994-01-30', 0, 0, 'sugawaray', '2015-11-26', 'sugawara3', '2009-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS028614323437', '黃裕玲', 0, '+86 755-861-4982', 2, '280555267284848162', 'Room 45, CR Building, 22 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1987-04-16', 0, 0, 'yuling9', '2002-08-06', 'ylwo', '2010-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS643116501240', '石田紗良', 1, '+81 70-4443-2080', 2, '842977170650300995', '日本おおさかし西成区出城一丁目1番16号12階', '1990-11-07', 0, 0, 'isara', '2016-08-27', 'saraishida', '2009-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS178152850542', 'Anne Martinez', 1, '+86 10-371-0993', 3, '446070159969985081', 'Room 2, 597 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-03-09', 0, 0, 'maran', '2014-01-29', 'martinez909', '2015-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS730382088061', '邱惠敏', 0, '+44 7380 360127', 3, '729952225926212809', 'No.35 Main building, 640 Regent Street, London, W1B 2LX, United Kingdom', '1990-11-12', 0, 0, 'yauwm', '2014-01-21', 'waimyau2', '2005-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS193102936180', '車朝偉', 1, '+81 70-9602-9513', 4, '569441723180755789', '30-kai, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-01-26', 0, 0, 'cwche', '2014-07-07', 'chiuwai2020', '2016-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS526026886024', '苏晓明', 1, '+44 7876 063001', 2, '871045730746744050', 'Flat 28, 781 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-27', 0, 0, 'xiaomingsu', '2014-01-21', 'xiaoming71', '2004-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS022329090123', '野村陽菜', 1, '+1 614-285-0924', 2, '370558737725254722', '199 East Cooke Road Apt 1, Columbus, GA 43214, United States', '1996-09-09', 0, 0, 'nomura95', '2015-06-21', 'hino', '2002-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS581701346607', '雷璐', 1, '+81 3-0554-6263', 0, '536933824263384623', '日本東京渋谷区代々木二丁目3番8号37階', '1991-10-17', 0, 0, 'leilu', '2015-12-19', 'lule', '2001-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS934762959432', '加藤蒼士', 0, '+81 66-185-2440', 2, '338177374913608110', '日本おおさかし近江堂一丁目7番20号23号室', '1989-03-25', 0, 0, 'aoshikato', '2003-12-07', 'aoshikato', '2010-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS276812578416', '潘致远', 0, '+86 143-8483-9933', 2, '333190562413021441', 'No.34 building, 436 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-03-08', 0, 0, 'panzhiyu2', '2020-05-05', 'zhiyupa', '2003-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS758929711349', 'Eleanor Myers', 0, '+1 838-221-4235', 2, '552230140913709286', '560 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1990-01-31', 0, 0, 'eleanormyers', '2016-11-24', 'eleanormyer', '2017-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS303214417587', '彭岚', 1, '+86 194-4333-7465', 4, '592574618149782553', '中国东莞珊瑚路685号9楼', '1998-04-17', 0, 0, 'pelan', '2018-02-10', 'pela9', '2015-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS974607729365', '太田美月', 1, '+86 156-6379-4826', 1, '390703281436994596', '中国广州市白云区小坪东路369号3室', '1993-09-28', 0, 0, 'mo2013', '2003-03-12', 'otamitsuki', '2013-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS999958050468', 'Kevin Anderson', 0, '+81 74-337-6657', 2, '023380118943893644', '日本ならし学園南三丁目9番1号33階', '1995-02-15', 0, 0, 'anderke', '2014-04-26', 'ak01', '2006-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS002466319882', '萧杰宏', 0, '+86 28-405-5542', 4, '735700143488494406', '中国成都市锦江区红星路三段556号12栋', '1990-11-08', 0, 0, 'xiaojie504', '2004-08-22', 'xiaojieh610', '2000-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS602402225886', 'Thomas Allen', 0, '+81 11-822-6095', 3, '658811266603209196', '日本札幌清田区真栄四条五丁目19番19号1階', '1994-02-09', 0, 0, 'allenthomas', '2019-05-31', 'allen517', '2003-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS673228812826', 'Joel Sanchez', 1, '+81 70-8455-5438', 1, '890545714207075028', '日本ならし学園南三丁目9番11号23階', '1990-11-23', 0, 0, 'josanchez9', '2008-12-28', 'sanchezjo', '2008-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS919706398051', '谷力申', 0, '+1 213-442-3202', 3, '981010754640301259', '825 Wall Street Apartment 44, Los Angeles, CA 90003, United States', '1998-08-07', 0, 0, 'liksunkoo', '2006-01-15', 'lsk804', '2012-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS683202249381', '坂本架純', 0, '+86 755-224-2860', 2, '839008983041122836', '22F, 519 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-06-07', 0, 0, 'sak', '2008-02-19', 'sakamoto3', '2009-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS630711184097', '丁震南', 0, '+44 (116) 465 9074', 3, '173576285614036288', 'Flat 32, 897 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-09-22', 0, 0, 'dingzhennan', '2014-07-22', 'ding4', '2001-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS206474590396', '前田大和', 0, '+86 176-7376-4288', 3, '330358881217987196', '中国广州市海珠区江南西路229号13楼', '1986-07-19', 0, 0, 'maeday', '2019-05-29', 'yamatomaed112', '2015-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS330566834476', '小野樹', 1, '+86 193-3377-1970', 4, '175418133135378972', 'Room 11, 151 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-04-30', 0, 0, 'onoit1', '2021-08-09', 'itono', '2010-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS004950190325', '唐浩然', 1, '+81 70-2556-8918', 3, '269447959274025407', '日本なごやし北区楠味鋺三丁目80番8号6階', '1992-07-02', 0, 0, 'tonghoyin', '2008-03-30', 'hoyin1959', '2010-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS773362982817', '邵小慧', 0, '+44 (1223) 95 7041', 3, '287787029764266131', 'No.4 Main building, 665 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-02-19', 0, 0, 'siusw', '2005-07-25', 'siusiuwai', '2008-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS442976874764', '邱明詩', 1, '+86 20-8087-0957', 3, '822794845824210463', 'No.2 building, 388 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-05-04', 0, 0, 'ymingsze1943', '2008-12-10', 'mingsze627', '2008-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS998023095977', 'Leslie Gray', 1, '+86 755-492-8750', 4, '478757011021696409', '中国深圳福田区景田东一街863号28楼', '1994-10-26', 0, 0, 'lesliegra214', '2015-06-23', 'lgr', '2004-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS048902925384', '山本聖子', 0, '+81 80-0537-1590', 1, '348095337945369133', 'Rm. 5, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1994-02-01', 0, 0, 'seikoy', '2005-10-22', 'yseiko', '2015-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS932839075068', 'Eugene Reed', 0, '+86 28-0379-4358', 3, '964907033475887444', 'Room 10, CR Building, 926 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-07-27', 0, 0, 'reedeug', '2021-01-01', 'reedeu8', '2007-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS836554219043', 'Jamie Nguyen', 0, '+1 330-013-9651', 4, '259593859730724744', '388 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-10-05', 0, 0, 'jnguy', '2010-12-23', 'njamie', '2008-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS902003873333', '黎永發', 1, '+44 (121) 276 4239', 2, '114043696647359274', 'Block 17, 839 New Street, Birmingham, B2 4DB, United Kingdom', '1987-06-25', 0, 0, 'wingfat4', '2003-04-23', 'lwingfat603', '2003-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS249994736091', '工藤美月', 1, '+44 7079 662096', 2, '871099467151180337', 'Block 14, 491 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-03-23', 0, 0, 'mitk', '2009-02-13', 'kudomits5', '2006-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS237435964994', 'Joseph Fox', 0, '+81 70-4912-0240', 0, '715941193354670753', '7-kai, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-12-18', 0, 0, 'joseph325', '2018-03-28', 'fojose220', '2011-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS054053239838', '韦震南', 1, '+86 21-9717-0534', 0, '317072763421708098', 'Room 31, 676 Ganlan Rd, Pudong, Shanghai, China', '1987-02-22', 0, 0, 'zhennanwei1951', '2002-08-08', 'zhennan2', '2004-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS949741086593', '蘇國權', 0, '+81 74-921-3851', 1, '813253259340785575', '日本ならし西大寺赤田町一丁目7番1号7階', '1989-08-27', 0, 0, 'sokwokkuen3', '2018-05-17', 'kwokkuen10', '2014-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS100882429440', '田中光', 1, '+81 74-614-1136', 3, '073910137463322724', '49F, 3-9-18 Gakuenminami, Nara, Japan', '1994-12-18', 0, 0, 'th3', '2000-06-29', 'hikaruta', '2021-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS044490310463', '森陸', 0, '+81 80-4428-8893', 1, '740318458396158859', '日本札幌厚別区上野幌一条二丁目1番13号38号室', '1992-09-30', 0, 0, 'rikum1', '2006-12-05', 'moririku', '2017-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS684640229750', 'Carol Fernandez', 1, '+81 70-3571-9717', 2, '748780933780124441', '33-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-03-10', 0, 0, 'fcarol3', '2021-01-05', 'carol8', '2002-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS777856004553', '廖天樂', 1, '+81 52-494-6914', 1, '816543767958660428', 'Rm. 46, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-14', 0, 0, 'ltinlok', '2000-08-19', 'tinlokliao6', '2008-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS799771692390', 'Katherine Alexander', 1, '+86 167-5484-1346', 1, '745015709672114623', '9F, 57 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1997-09-14', 0, 0, 'alexakatherine909', '2002-01-22', 'alekath1998', '2002-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS933029004966', '杉山陸', 1, '+86 10-9896-9831', 1, '686612321472646151', 'Room 15, 772 028 County Rd, Yanqing District, Beijing, China', '1995-06-11', 0, 0, 'sugiyama45', '2011-09-12', 'sriku7', '2013-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS959144937898', '元明', 1, '+1 330-248-3955', 1, '308088692409206080', '755 Fern Street Suite 12, Akron, OH 44307, United States', '1999-01-28', 0, 0, 'yuen07', '2016-03-06', 'ming1207', '2022-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS651799753475', '錢永權', 0, '+1 718-734-2216', 2, '422458616353971047', '910 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1987-05-16', 0, 0, 'chinwk', '2002-07-15', 'chinwingkuen74', '2006-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS008674795180', '鄺祖兒', 1, '+44 (151) 960 5739', 1, '258416274062927167', 'Unit 34, Oxford Eco Centre, 923 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1986-06-20', 0, 0, 'choyeekwong97', '2010-12-23', 'choyeekwong6', '2002-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS236121770156', '伊藤彩乃', 0, '+81 66-519-2821', 1, '598206319946415500', '日本おおさかし西成区出城一丁目1番3号19号室', '1988-01-12', 0, 0, 'itayano', '2005-03-30', 'ayanoito514', '2015-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS276980509005', 'Matthew Olson', 1, '+1 838-236-7936', 0, '792816742762277819', '859 Lark Street 3rd Floor, Albany, NY 12210, United States', '1995-02-03', 0, 0, 'olson1029', '2011-03-19', 'olsomatthew', '2005-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS997469915418', 'Eva Stevens', 0, '+44 5889 430154', 2, '606297026990163612', 'No.28 Main building, 491 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-03-30', 0, 0, 'stevense', '2019-06-21', 'steveva01', '2000-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS186596397511', 'Laura Ross', 1, '+81 66-040-7946', 4, '511495395879831064', '日本おおさかし東住吉区東田辺三丁目27番20号11階', '1988-04-19', 0, 0, 'laur', '2020-04-09', 'rosslaur', '2005-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS837169428179', '蔣浩然', 0, '+44 (116) 649 9193', 1, '580015190094848357', 'Unit 28, Oxford Eco Centre, 505 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-02-17', 0, 0, 'chianhy10', '2004-06-02', 'chianhy', '2014-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS183001517071', '上野悠人', 0, '+1 212-401-7729', 3, '415358802602187913', '213 Fifth Avenue Apt 2, New York, NY 10017, United States', '1992-02-15', 0, 0, 'yutou', '2005-01-05', 'uenoyut', '2006-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS744578124523', '石云熙', 1, '+44 5136 109032', 3, '650013960267403293', 'Flat 2, 534 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-11-26', 0, 0, 'shi610', '2015-08-08', 'shi7', '2001-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS409191066816', '龚子异', 0, '+86 194-0281-1099', 1, '487369525981157164', 'Room 24, CR Building, 783 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-03-30', 0, 0, 'ziygong60', '2008-05-14', 'gziyi8', '2010-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS853914363244', '许震南', 1, '+86 10-1588-5600', 4, '002612820150942032', 'No.48 building, 706 028 County Rd, Yanqing District, Beijing, China', '1985-02-21', 0, 0, 'xzhenn1112', '2006-06-25', 'zhennan1104', '2009-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS144511388397', '石田一輝', 1, '+86 159-2439-4786', 0, '782277546220448225', '中国深圳龙岗区学园一巷988号华润大厦13室', '1990-06-20', 0, 0, 'ishida9', '2015-06-02', 'ishida922', '2002-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS674089679414', '上田大輔', 0, '+86 151-2844-4645', 0, '568853780525121775', 'No.18 building, 58 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-01', 0, 0, 'daisukeueda', '2009-12-18', 'uedaisuke1', '2014-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS701292482771', '沈子异', 1, '+81 90-3206-5133', 1, '020989274275730218', '日本ならし大和郡山市本庄町一丁目1番20号34階', '1989-01-22', 0, 0, 'ziyish', '2015-11-18', 'sziyi', '2019-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS380306718118', '谢子异', 0, '+86 20-1309-4975', 3, '325449407481054913', '中国广州市越秀区中山二路426号8楼', '1996-03-12', 0, 0, 'xziyi507', '2005-11-30', 'xizi', '2009-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS492093754195', 'Tracy Mendez', 0, '+1 212-786-5652', 4, '043761288583198801', '912 West Houston Street Suite 22, New York, NY 10014, United States', '1994-11-11', 0, 0, 'mendezt12', '2009-07-18', 'tracyme', '2019-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS398275784295', '宣志明', 0, '+81 90-2317-1302', 3, '730353222065824641', '日本ならし学園南三丁目9番11号15階', '1986-10-26', 0, 0, 'chiming83', '2011-03-28', 'hsuacm', '2013-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS904313360592', 'Carlos Graham', 1, '+86 131-7433-5939', 2, '532654085380942640', 'No.48 building, 50 028 County Rd, Yanqing District, Beijing, China', '1997-11-17', 0, 0, 'carlograham512', '2005-01-03', 'carlosgra1986', '2015-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS326801397903', '加藤翼', 1, '+1 213-663-5985', 3, '751051946773270835', '63 Sky Way Apt 29, Los Angeles, CA 90043, United States', '1989-11-04', 0, 0, 'tsubasakato420', '2014-04-12', 'kattsubasa', '2019-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS989117856275', 'Louis Ortiz', 0, '+86 755-182-0539', 2, '994990300692846132', '中国深圳罗湖区清水河一路468号15栋', '1995-02-11', 0, 0, 'louisort', '2008-03-22', 'ortizlouis', '2002-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS999327192087', '村上悠人', 1, '+1 212-998-1814', 0, '062934602229981380', '771 Fifth Avenue Suite 46, New York, NY 10017, United States', '1991-05-29', 0, 0, 'yutomurakami', '2005-09-04', 'murakami71', '2002-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS227541589379', '朱致远', 0, '+86 174-4470-1822', 3, '816761881135992620', 'No.2 building, 885 Dongtai 5th St, Dongguan, China', '1998-08-16', 0, 0, 'zhiyuanzhu', '2009-02-12', 'zzhu4', '2018-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS860839939362', '向詩涵', 1, '+81 52-029-6290', 2, '578747911074648271', '33F, 2-5-6 Chitose, Atsuta Ward, Nagoya, Japan', '1991-04-08', 0, 0, 'xiangshihan', '2011-03-05', 'xiang95', '2000-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS325158564266', '江裕玲', 1, '+86 760-7847-1328', 4, '564447661521618591', 'Room 16, 38 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-06-22', 0, 0, 'ylkong4', '2007-12-21', 'kyuling10', '2021-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS797575456006', '潘杰宏', 0, '+81 11-347-2948', 3, '283622212922941387', '日本札幌豊平区豊平三条十三丁目3番9号13号室', '1995-06-11', 0, 0, 'panji202', '2005-08-25', 'pan11', '2012-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS039969993849', '毛家玲', 1, '+86 10-2250-7280', 3, '706774269203418739', '中国北京市東城区東直門內大街401号华润大厦35室', '1994-05-03', 0, 0, 'kalmo', '2018-02-05', 'kalingmo42', '2021-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS180765548608', '太田百花', 1, '+81 80-9044-0312', 1, '166587150799935190', '1F, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-04-22', 0, 0, 'moot6', '2015-10-04', 'mota', '2004-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS076595461905', '彭云熙', 0, '+81 70-8462-2659', 2, '229899434367601526', '日本おおさかし近江堂一丁目7番1号2号室', '1986-10-06', 0, 0, 'pengyunxi', '2021-07-28', 'peng1', '2004-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS931798452195', '菅原葵', 1, '+81 66-940-7229', 3, '860641871871380989', '11F, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1992-06-28', 0, 0, 'aoi506', '2007-11-30', 'sugawaraaoi', '2001-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS720409854121', '鐘世榮', 0, '+81 74-171-7487', 4, '199374733784289961', '日本ならし大和郡山市本庄町一丁目1番3号9階', '1995-06-14', 0, 0, 'saiwingch1996', '2003-05-08', 'saiwing10', '2005-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS218538307321', '侯云熙', 1, '+1 213-538-5635', 4, '812467399808501260', '177 Wall Street Suite 15, Los Angeles, CA 90003, United States', '1998-12-18', 0, 0, 'yuho10', '2007-05-13', 'hou1110', '2014-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS804438427622', '刘秀英', 1, '+1 330-241-6315', 3, '064246100962066291', '15 Ridgewood Road Apt 31, Akron, OH 44321, United States', '1994-11-02', 0, 0, 'xiuying6', '2012-06-14', 'liu9', '2004-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS660528463547', 'Clara Murphy', 0, '+81 52-573-5455', 3, '066376866634464300', '日本なごやし瑞穂区河岸町四丁目20番7号9階', '1989-02-26', 0, 0, 'murcl', '2005-05-30', 'murpclara5', '2019-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS784162353190', '范云熙', 0, '+44 7600 686201', 1, '564125145131793386', 'Block 33, 532 New Street, Birmingham, B2 4DB, United Kingdom', '1986-04-03', 0, 0, 'yunxfa', '2006-05-17', 'fanyunxi', '2000-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS849618025064', '林結翔', 1, '+1 212-038-1837', 2, '442432146077686833', '230 Canal Street Apt 44, New York, NY 10013, United States', '1992-08-01', 0, 0, 'yuitoh', '2000-03-22', 'yuito10', '2010-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS356954657409', '渡辺大和', 1, '+81 80-8767-2935', 0, '093910373993639340', '日本ならし西大寺赤田町一丁目7番19号9階', '1989-07-02', 0, 0, 'yamato313', '2006-06-23', 'yamatosa', '2001-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS399796470689', '向岚', 0, '+81 3-8028-0549', 2, '804802469724348532', '42-kai, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-02-26', 0, 0, 'lx5', '2014-03-17', 'lanxian513', '2006-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS425466948961', '狄裕玲', 1, '+44 (151) 488 8719', 2, '964700181552950408', 'Unit 46, Oxford Eco Centre, 532 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-01-27', 0, 0, 'tyul', '2000-08-26', 'ti328', '2008-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS445235564434', '孫思妤', 1, '+1 718-367-5533', 0, '151919417225439070', '687 Bergen St Suite 15, Brooklyn, NY 11217, United States', '1989-08-29', 0, 0, 'hsuansy49', '2010-08-03', 'hsuan7', '2005-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS274861574684', 'Christina Scott', 1, '+44 (116) 572 1777', 0, '185083906297787378', 'Unit 2, Oxford Eco Centre, 984 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-10-31', 0, 0, 'scchris', '2011-04-26', 'scottchri2015', '2006-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS171390055267', '古慧琳', 0, '+86 132-0704-2815', 4, '904136570008179248', 'No.2 building, 423 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-03-03', 0, 0, 'wailamku2', '2014-02-10', 'kwailam75', '2015-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS919946744259', 'Randy Foster', 1, '+86 150-3225-1994', 3, '679379318344521917', 'Room 39, 548 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-05-05', 0, 0, 'randyfoster', '2007-01-21', 'randy4', '2004-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS049454709282', 'Randy Williams', 0, '+86 162-7647-1802', 1, '054410264134325222', 'No.14 building, 62 Yueliu Rd, Fangshan District, Beijing, China', '1988-12-16', 0, 0, 'williams126', '2013-09-27', 'willr', '2002-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS677392281497', '廖青雲', 0, '+81 3-9318-7314', 4, '141107309353704216', '31-kai, 1-6-3, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-02-06', 0, 0, 'liaochingwan2', '2014-10-03', 'liao10', '2017-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS163267860293', '贺杰宏', 0, '+81 80-6708-3344', 4, '826178651733386809', '3-kai, 3-27-12 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-02-25', 0, 0, 'jiehhe', '2017-12-27', 'jiehong922', '2017-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS654722582283', 'Albert Reynolds', 1, '+86 142-2378-7624', 0, '541897227594418941', 'No.20 building, No. 270, Shuangqing Rd, Chenghua District, Chengdu, China', '1995-04-22', 0, 0, 'alberreynolds', '2001-10-21', 'realber', '2013-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS075186226852', '曾永權', 0, '+86 168-1925-6793', 3, '668060152178965294', 'No.24 building, 283 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-05-05', 0, 0, 'twingkuen', '2006-08-01', 'witsan3', '2014-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS598747120081', '中山陸', 1, '+86 20-976-8126', 4, '735693923499447116', 'No.15 building, 870 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-11', 0, 0, 'riku1', '2009-09-21', 'rnak1963', '2003-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS557970582159', 'Paul Holmes', 1, '+1 838-639-9111', 2, '689665763252226904', '609 Lark Street 3rd Floor, Albany, NY 12210, United States', '1998-11-29', 0, 0, 'holmpa4', '2008-10-17', 'paul79', '2021-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS896728158659', '山崎健太', 1, '+81 66-902-9202', 1, '812447743534510825', '日本おおさかし東住吉区東田辺三丁目27番4号15号室', '1996-07-12', 0, 0, 'kya', '2021-06-29', 'kentayamazaki514', '2005-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS437315230963', 'Kimberly Gibson', 1, '+86 755-292-4778', 3, '224127877757273186', '中国深圳罗湖区田贝一路149号36号楼', '1998-08-14', 0, 0, 'kimberlyg702', '2000-05-27', 'kimberlyg', '2001-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS967244110634', 'Jeffery Peterson', 1, '+86 760-4875-7563', 1, '446435463220661307', '中国中山京华商圈华夏街512号13室', '1990-12-25', 0, 0, 'pjeffery', '2010-04-06', 'jefferypeter', '2003-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS314826717400', '青木美羽', 0, '+81 80-5402-1099', 4, '897060018118807062', '日本なごやし北区清水三丁目19番2号23階', '1994-12-21', 0, 0, 'aokimi', '2002-06-07', 'am3', '2009-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS858902899376', '田中大地', 0, '+86 769-329-7018', 1, '567497210639210276', '中国东莞珊瑚路685号39栋', '1998-02-16', 0, 0, 'daichitanaka', '2016-12-27', 'daict93', '2018-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS182739813511', '小川海斗', 1, '+86 146-1211-4020', 1, '186998461516264339', '17F, 218 Ganlan Rd, Pudong, Shanghai, China', '1997-11-28', 0, 0, 'okai', '2000-05-12', 'ogakaito', '2019-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS980190424329', '馮浩然', 1, '+81 80-9326-5161', 0, '052741247274923435', '43-kai, 1-7-8 Omido, Higashiosaka, Osaka, Japan', '1988-11-19', 0, 0, 'fung1955', '2008-01-08', 'hyf2', '2013-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS055808090526', '马秀英', 1, '+86 760-3991-8051', 2, '804457588607512087', '中国中山乐丰六路68号4号楼', '1996-04-15', 0, 0, 'xma19', '2013-08-23', 'maxiuy', '2015-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS089771196516', '羅家文', 0, '+44 5005 751835', 2, '708448534087938605', 'Block 28, 759 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-01-05', 0, 0, 'kamanl', '2002-11-13', 'kmlo6', '2019-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS511340036341', 'Ricky Gray', 1, '+81 70-2398-2704', 1, '597433501879344952', 'Rm. 35, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-11', 0, 0, 'grayrick', '2007-08-08', 'gray6', '2004-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS447256505201', '王詩涵', 1, '+44 7352 063404', 4, '416380819355495924', 'No.40 Main building, 467 Maddox Street, London, W1S 1PU, United Kingdom', '1987-06-19', 0, 0, 'shihanwang7', '2019-01-21', 'wanshih', '2013-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS635636015615', '邵惠敏', 1, '+81 11-853-2677', 0, '506823826739422525', '27F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-06-17', 0, 0, 'siuwm', '2000-12-10', 'siwaiman', '2007-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS898609752420', '鄧心穎', 0, '+44 (1865) 13 3587', 3, '892226298620370869', 'Block 49, 464 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-02', 0, 0, 'tangsw', '2002-01-08', 'swtang', '2018-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS799668373718', '青木陸', 1, '+81 70-5223-8174', 1, '929553978580572091', '35-kai, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-07-25', 0, 0, 'rikuao', '2016-07-14', 'rikua', '2009-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS339244005878', '秦璐', 1, '+1 614-440-6814', 0, '820882589404512766', '378 East Cooke Road Apt 36, Columbus, GA 43214, United States', '1998-02-23', 0, 0, 'qinl', '2000-12-03', 'luqin', '2004-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS374063887628', 'Bonnie Scott', 0, '+86 755-6483-2680', 1, '936072323243147836', '中国深圳福田区深南大道945号18栋', '1994-09-05', 0, 0, 'scottbonnie', '2012-06-16', 'scott6', '2015-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS882413056593', '李詩涵', 0, '+44 7735 728631', 0, '635851208627518360', 'No.2 Main building, 473 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-05-08', 0, 0, 'lshi3', '2004-12-20', 'shihli', '2006-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS805335258890', 'Victor Morgan', 0, '+86 769-5406-8726', 1, '171415490035590627', '中国东莞坑美十五巷279号17栋', '1989-10-11', 0, 0, 'morganvicto', '2012-11-26', 'victormorga', '2006-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS371464639695', 'Jacqueline Hicks', 1, '+81 70-2822-4429', 0, '871143860848292197', '日本おおさかし近江堂一丁目7番17号7階', '1989-04-02', 0, 0, 'hicks2014', '2006-04-22', 'hicksjacqu', '2006-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS801315378133', '高橋凛', 0, '+81 90-3292-1741', 1, '283377752629781035', '17F, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-06-02', 0, 0, 'tr422', '2014-11-28', 'takri', '2003-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS174497641519', '井上美羽', 1, '+81 70-5508-1805', 4, '475717580940758760', '日本札幌白石区菊水三条五丁目2番13号48階', '1998-02-03', 0, 0, 'inouemiu', '2001-03-13', 'miuinoue', '2013-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS667261906435', 'Phillip Gonzales', 0, '+81 66-870-9171', 1, '642818674211142097', '日本おおさかし西成区出城一丁目1番6号10階', '1996-05-05', 0, 0, 'philg', '2017-03-20', 'gonzalesphil63', '2015-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS033137060413', '河野美月', 0, '+81 80-8187-6859', 3, '659118690505686716', '日本おおさかし東住吉区東田辺三丁目27番13号5号室', '1997-08-13', 0, 0, 'komi', '2012-09-26', 'komitsuki', '2017-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS263328970255', 'Patrick Jones', 1, '+81 80-7564-8233', 2, '476343072448527294', '日本なごやし北区楠味鋺三丁目80番10号21号室', '1986-12-30', 0, 0, 'pajo', '2016-06-03', 'jonespat', '2000-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS060432825836', '高安琪', 0, '+81 80-0158-5195', 0, '334209169553969056', '日本ならし大和郡山市本庄町一丁目1番20号27階', '1989-03-27', 0, 0, 'angao', '2018-05-21', 'gao617', '2018-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS722932281104', 'Willie Garcia', 0, '+1 838-706-5657', 0, '727344808542925631', '445 Lark Street Apartment 31, Albany, NY 12210, United States', '1995-08-01', 0, 0, 'wgarc', '2019-07-18', 'willie18', '2015-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS811079448976', 'Leroy Gonzales', 0, '+86 185-1567-4594', 3, '884474265375528027', '中国成都市成华区双庆路726号33室', '1998-03-11', 0, 0, 'leroygonzales', '2019-02-17', 'gonzlero', '2012-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS193035066332', '柴田結翔', 1, '+86 755-336-7137', 1, '771457958912469939', '中国深圳罗湖区清水河一路935号14号楼', '1990-10-16', 0, 0, 'yuito105', '2012-03-17', 'yuitoshib', '2009-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS371703260128', 'Cindy Clark', 0, '+81 80-9472-0257', 4, '341637933685392832', '43F, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-11-19', 0, 0, 'cindy52', '2003-08-09', 'clark1022', '2002-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS665981052661', '何致远', 1, '+86 152-1445-2172', 1, '617606985463366149', '中国东莞东泰五街141号32楼', '1997-11-04', 0, 0, 'zhiyuan9', '2003-09-29', 'zhe', '2019-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS471783732718', '宮崎優奈', 1, '+44 7077 762005', 3, '940071775715434973', 'No.32 Main building, 218 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-08-09', 0, 0, 'yuna7', '2013-01-19', 'yunam1', '2021-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS632992187005', '于睿', 0, '+86 197-6566-0341', 2, '062142152930218461', '19F, 210 Sanlitun Road, Chaoyang District, Beijing, China', '1995-10-15', 0, 0, 'ruiyu', '2002-11-09', 'yrui', '2019-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS872858219225', '安藤光莉', 0, '+81 80-3661-8201', 4, '796048644562749750', '36-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-16', 0, 0, 'andhika', '2002-09-03', 'hikari1', '2004-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS156454772321', '苗詩君', 0, '+1 718-298-5970', 1, '609176676853421917', '546 Nostrand Ave Suite 8, Brooklyn, NY 11216, United States', '1997-11-30', 0, 0, 'skmiu5', '2021-06-05', 'miszekwan', '2007-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS046070360735', '陆子韬', 0, '+81 70-5390-3765', 1, '305602972529819488', '日本東京品川区東五反田五丁目2番14号19号室', '1994-11-15', 0, 0, 'zitaol1130', '2000-03-30', 'zitaolu3', '2016-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS652095351180', '龚睿', 0, '+86 21-808-9331', 2, '560243050271281260', '28F, 921 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-27', 0, 0, 'ruig520', '2006-08-30', 'rgong', '2011-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS029498403915', '石田大地', 0, '+81 11-888-9595', 3, '139102699112450799', '日本札幌中央区宮の森四条六丁目1番9号25階', '1987-02-03', 0, 0, 'ishidadaichi', '2019-02-07', 'daichii', '2010-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS508309418009', 'Harry Wright', 0, '+86 182-5052-5735', 0, '697048915328672646', '中国北京市東城区東直門內大街117号华润大厦40室', '1996-02-22', 0, 0, 'harwright87', '2010-08-16', 'harryw', '2012-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS243501000564', '向發', 1, '+86 192-1981-0568', 0, '938426226952496592', '中国成都市成华区双庆路241号华润大厦7室', '1985-12-22', 0, 0, 'fheung', '2007-01-28', 'fath3', '2011-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS547427659189', '鐘慧琳', 0, '+86 28-9421-1079', 1, '224353650589225449', 'Room 34, No.696, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-14', 0, 0, 'wlc', '2014-09-08', 'chungwailam', '2007-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS953146373267', '杨子韬', 0, '+81 3-5773-1933', 4, '469451783917275754', 'Rm. 25, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-05-19', 0, 0, 'yangzit', '2016-03-02', 'yangzitao2', '2007-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS449331951572', 'Daniel Williams', 0, '+81 11-285-3353', 3, '649804214587304192', '16-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-05-23', 0, 0, 'wdaniel5', '2016-12-31', 'daniewill', '2020-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS881006819910', '杨秀英', 1, '+86 174-7278-2725', 0, '799728861852006017', '中国深圳福田区景田东一街448号9室', '1988-03-03', 0, 0, 'xiuyang46', '2014-03-25', 'xiuyingyang', '2021-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS288608131897', '菊地蒼士', 0, '+44 (1223) 40 9155', 2, '663411933126718719', 'Flat 8, 1 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-08-27', 0, 0, 'aoshikikuchi1', '2004-04-03', 'aoshik1209', '2003-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS770889377855', '島田玲奈', 1, '+44 5122 467564', 1, '408728912562167883', 'No.37 Main building, 205 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-02-19', 0, 0, 'rena10', '2008-01-16', 'res508', '2000-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS941777965542', '鈴木優奈', 0, '+81 52-802-5260', 4, '680191111247481115', '日本なごやし守山区瀬古東二丁目171番5号6階', '1985-01-05', 0, 0, 'suzuyuna5', '2011-01-28', 'suzuki3', '2004-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS731440957641', '谷明', 0, '+44 5706 854093', 2, '333388284752898626', 'No.44 Main building, 660 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-01-04', 0, 0, 'mikoo', '2017-09-26', 'koom', '2005-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS996930368990', 'Diane Tucker', 0, '+44 (1223) 41 1942', 2, '368368296301425009', 'Block 2, 719 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-12-04', 0, 0, 'diane6', '2014-01-28', 'tuckerdiane', '2001-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS098548707778', '鄧慧琳', 0, '+81 80-3417-2677', 2, '015077237488130254', '日本東京品川区東五反田五丁目2番1号23階', '1998-07-28', 0, 0, 'wltan', '2016-01-05', 'twailam61', '2016-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS140117850503', '范致远', 0, '+86 150-6271-8485', 2, '030312687852114138', 'No.6 building, 572 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1996-07-08', 0, 0, 'zhfa', '2001-06-01', 'zhiyfan74', '2009-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS836204989461', '松本聖子', 0, '+86 177-5177-7041', 2, '762674219918679367', 'No.37 building, 109 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-05-28', 0, 0, 'seikmatsumoto', '2011-02-17', 'seikmatsumoto', '2002-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS089951068080', '清水光', 1, '+81 80-4581-6017', 2, '366937053281278010', '39-kai, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1995-07-05', 0, 0, 'hikashimizu8', '2006-08-22', 'hikash78', '2010-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS261742989387', 'Tracy Lewis', 1, '+44 (151) 615 5987', 2, '437543718380196036', 'No.15 Main building, 373 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-03-30', 0, 0, 'ltracy', '2001-05-24', 'lewistrac2020', '2008-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS409800863350', '馬仲賢', 0, '+44 (1865) 92 0343', 1, '980894460581723142', 'Flat 3, 738 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-03-27', 0, 0, 'chum', '2000-01-12', 'mcy', '2021-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS520755747501', 'Anthony Fernandez', 0, '+44 7710 200866', 0, '845791615989067969', 'Block 6, 937 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-11-04', 0, 0, 'fan531', '2001-02-25', 'anthonyfe', '2001-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS219140963088', '阿部結翔', 0, '+1 838-556-7171', 0, '854407410562590952', '155 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1986-10-19', 0, 0, 'yuitoabe55', '2009-01-16', 'yuitoa', '2010-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS255736186255', '陶致远', 0, '+86 168-1642-7556', 3, '326484462736695250', '中国广州市白云区小坪东路56号华润大厦16室', '1991-12-29', 0, 0, 'zhiyuanta1007', '2011-02-19', 'zhtao', '2017-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS043622641416', 'Wayne Burns', 1, '+86 152-7173-3864', 3, '780868493337511882', 'Room 13, CR Building, 461 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-07-22', 0, 0, 'wayne602', '2004-01-18', 'burnsway', '2014-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS736178831756', '林國賢', 1, '+81 11-556-9497', 1, '427125576610365950', '日本札幌厚別区上野幌一条二丁目1番9号40階', '1989-01-21', 0, 0, 'kwokyin1992', '2004-09-10', 'kwolam67', '2001-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS652842474316', 'Robert Porter', 0, '+81 70-0099-2932', 0, '040005760186476028', '36-kai, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-06-12', 0, 0, 'porter506', '2019-07-07', 'porterr521', '2008-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS515269416768', '史秀英', 1, '+1 213-318-4548', 1, '216034652644381108', '328 Figueroa Street Suite 3, Los Angeles, CA 90037, United States', '1996-04-24', 0, 0, 'xiuyishi', '2019-08-04', 'xis14', '2011-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS613742561883', 'Anita Moreno', 1, '+44 5639 241874', 3, '542455569654125191', 'Unit 12, Oxford Eco Centre, 406 Maddox Street, London, W1S 1PU, United Kingdom', '1994-09-17', 0, 0, 'anitamoreno60', '2016-11-24', 'amore', '2019-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS950211292690', '胡睿', 0, '+86 28-810-5386', 4, '659609834942954110', '中国成都市成华区双庆路639号40室', '1993-06-12', 0, 0, 'ruh619', '2006-09-30', 'hurui', '2014-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS462458638431', '和田聖子', 0, '+1 838-456-6005', 2, '468619936361111827', '449 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-07-29', 0, 0, 'seiko18', '2015-07-23', 'seikowada1988', '2004-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS589964922847', '向安琪', 0, '+81 90-6199-6206', 3, '122869325286628868', 'Rm. 22, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1994-05-23', 0, 0, 'anqix1218', '2007-09-29', 'anqixiang', '2020-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS704777072986', '中山玲奈', 0, '+86 151-4113-5579', 3, '856418573426228042', 'Room 28, CR Building, 836 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-01-30', 0, 0, 'rnakayama', '2007-09-27', 'renan1982', '2005-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS404743645896', '邱秀英', 0, '+86 21-5442-8536', 3, '788612658202782605', 'Room 36, 348 Ganlan Rd, Pudong, Shanghai, China', '1988-11-03', 0, 0, 'xqiu', '2002-11-27', 'qiuxiu', '2019-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS923985111822', '渡辺彩乃', 1, '+81 90-3526-6631', 2, '249797287389132347', '日本ならし学園南三丁目9番20号24階', '1991-03-03', 0, 0, 'ays228', '2002-12-23', 'asato05', '2014-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS990575288326', '程杰宏', 0, '+1 212-503-7314', 1, '004777377773180210', '93 Wooster Street Apartment 48, New York, NY 10012, United States', '1991-06-13', 0, 0, 'cheng816', '2018-03-01', 'chj', '2005-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS219461308316', '藤井詩乃', 0, '+1 718-899-4612', 1, '301583455575044424', '974 Columbia St Apt 9, Brooklyn, NY 11231, United States', '1990-10-09', 0, 0, 'fushino', '2000-08-28', 'shinof', '2012-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS548451484576', '孙睿', 0, '+81 80-5488-4680', 0, '018507030906610676', '日本おおさかし近江堂一丁目7番6号16階', '1989-06-06', 0, 0, 'sunr00', '2012-08-15', 'sunrui', '2011-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS833798720459', '佐野瑛太', 0, '+86 168-7006-5631', 0, '516920581563940905', '中国深圳福田区景田东一街326号42楼', '1985-10-12', 0, 0, 'eita106', '2010-05-29', 'eitasano', '2002-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS797905027167', '近藤和真', 0, '+81 90-5821-2641', 1, '282679225280274130', '日本札幌白石区菊水三条五丁目4番7号19階', '1990-01-08', 0, 0, 'kazumakondo2', '2007-04-22', 'kazkondo81', '2014-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS650344031021', 'Marjorie Nguyen', 1, '+86 21-122-9482', 4, '488714866273368590', '中国上海市黄浦区淮海中路101号6栋', '1991-09-14', 0, 0, 'marngu627', '2013-05-07', 'marjong', '2013-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS620843381024', '呂頴璇', 1, '+86 21-9918-1828', 2, '151097010405413758', '中国上海市黄浦区淮海中路320号50号楼', '1992-04-04', 0, 0, 'wingsuenlui', '2002-07-23', 'wingsuen91', '2010-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS440076721956', '内田葵', 0, '+81 70-2616-5843', 1, '385612844242716398', '日本おおさかし近江堂一丁目7番20号47階', '1991-01-25', 0, 0, 'uchidaaoi9', '2005-07-29', 'aouchi', '2014-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS047851858710', '容梓軒', 1, '+44 (121) 100 5659', 1, '408806358695145512', 'Block 14, 258 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-06-11', 0, 0, 'tszhin402', '2000-10-09', 'yung5', '2015-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS358697637850', 'Bruce Meyer', 1, '+81 66-782-8622', 1, '234579398377984676', '日本おおさかし平野区加美東四丁目9番20号28階', '1995-01-17', 0, 0, 'brucm222', '2002-05-29', 'brucemeyer1204', '2004-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS595751084968', '熊杰宏', 0, '+81 3-9429-9927', 3, '812259041420476183', '日本東京中央区銀座三丁目12番6号42階', '1996-06-19', 0, 0, 'jiehoxiong3', '2011-12-28', 'xij', '2009-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS832710327576', '橋本翼', 1, '+86 21-0914-5084', 1, '834858815932542092', '中国上海市徐汇区虹桥路579号48楼', '1992-07-17', 0, 0, 'tsubasahashi', '2009-08-08', 'hashimoto54', '2013-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS996550983855', '顧淑怡', 0, '+86 10-790-0579', 3, '284128429591017697', 'No.30 building, 312 028 County Rd, Yanqing District, Beijing, China', '1988-02-06', 0, 0, 'sukyeeku', '2003-09-01', 'sukyeeku8', '2012-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS831697559354', '吕宇宁', 0, '+81 80-3978-1523', 1, '832794140638560510', 'Rm. 6, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-03-30', 0, 0, 'luy', '2009-01-07', 'lu7', '2021-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS381852556217', '任睿', 1, '+81 90-8255-8639', 2, '583224214232831150', '28F, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-11-23', 0, 0, 'rui41', '2005-05-28', 'ruire', '2020-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS079594031304', '胡致远', 1, '+86 755-4222-7667', 1, '888341897564058837', 'No.7 building, 316 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-02-18', 0, 0, 'zhu1114', '2010-01-26', 'huzhiyuan', '2017-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS040117234256', '李頴璇', 0, '+81 74-672-2815', 2, '175851185454239007', '日本ならし学園南三丁目9番4号41階', '1985-07-24', 0, 0, 'wingsuenlee10', '2021-12-29', 'leews52', '2015-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS197680213635', '周致远', 0, '+1 330-234-7935', 1, '304703760288116863', '9 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1987-07-09', 0, 0, 'zhiyuan515', '2001-07-27', 'zhou4', '2011-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS213936080397', '佐野涼太', 1, '+86 146-6259-5898', 2, '249462745659158725', '中国成都市成华区双庆路994号44栋', '1994-05-20', 0, 0, 'ryosan', '2009-04-18', 'sanoryo', '2016-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS142150509714', '松井架純', 1, '+81 66-834-3760', 3, '934345211049865522', '日本おおさかし西成区出城一丁目1番13号33階', '1996-02-27', 0, 0, 'kasumi5', '2010-07-21', 'matsui601', '2021-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS159294627516', '郝岚', 0, '+44 (161) 383 5976', 1, '547130535443850879', 'Block 6, 668 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-10-02', 0, 0, 'lahao', '2014-01-04', 'lahao', '2013-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS620275554117', '謝淑怡', 1, '+1 330-003-7001', 1, '944372734381840882', '321 West Market Street Apt 5, Akron, OH 44333, United States', '1998-06-19', 0, 0, 'sukyeets63', '2002-07-26', 'tsesukyee1206', '2003-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS148108759337', '曾安琪', 1, '+86 197-7642-8110', 1, '122247434080327905', '中国深圳罗湖区田贝一路856号32室', '1991-11-15', 0, 0, 'anqz8', '2022-01-20', 'zenan226', '2001-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS303130935677', '小島健太', 1, '+86 152-7043-0573', 1, '242591682393091537', '37F, 291 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-11-05', 0, 0, 'kentakojima', '2019-10-04', 'kojkenta4', '2018-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS002010507645', 'Amy Ferguson', 0, '+81 74-431-6435', 4, '343279316885886152', 'Rm. 11, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-05-30', 0, 0, 'af316', '2020-10-02', 'fergusonamy', '2000-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS429874496034', '加藤詩乃', 1, '+86 142-7596-7207', 1, '218322497925693888', '中国广州市白云区机场路棠苑街五巷643号华润大厦45室', '1988-08-15', 0, 0, 'katoshino', '2016-12-28', 'kato5', '2020-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS703385231092', '朱安琪', 1, '+86 10-266-8131', 1, '329763149581339587', '23F, 370 Sanlitun Road, Chaoyang District, Beijing, China', '1996-07-13', 0, 0, 'zhua', '2015-03-27', 'anqizhu6', '2004-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS064812721415', '傅岚', 0, '+81 52-566-6815', 2, '835200322430816475', '11F, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1989-11-14', 0, 0, 'lanfu', '2020-08-02', 'lafu59', '2001-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS250114313064', 'Tiffany Grant', 1, '+86 10-3348-9753', 0, '328971012195443623', 'Room 18, CR Building, 627 West Chang''an Avenue, Xicheng District, Beijing, China', '1987-11-19', 0, 0, 'granttiffany908', '2012-09-04', 'granttiffany', '2021-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS806112609203', '萬慧儀', 1, '+1 330-642-0099', 0, '413799434834959162', '732 Ridgewood Road Apartment 45, Akron, OH 44321, United States', '1991-10-25', 0, 0, 'waiyee45', '2014-12-14', 'waiyeem', '2006-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS656685967263', 'Pamela Thompson', 1, '+81 66-710-1681', 3, '280594141699810456', '46F, 3-27-2 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1996-01-04', 0, 0, 'thomppamela816', '2001-08-31', 'thompsonp', '2021-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS526791868381', '曾璐', 1, '+1 212-714-9042', 3, '687607870014720171', '903 Bank Street 3rd Floor, New York, NY 10014, United States', '1990-02-17', 0, 0, 'zenl', '2008-10-24', 'zengl', '2000-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS676388282955', '郑宇宁', 1, '+81 66-685-9591', 0, '804750429929243260', 'Rm. 28, 2-1-10 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-05-16', 0, 0, 'zyun826', '2006-01-09', 'zyu', '2004-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS813619988963', '菅原架純', 0, '+81 3-5146-5354', 2, '825809362448446490', 'Rm. 16, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-06-08', 0, 0, 'kasumisug6', '2009-03-23', 'kasugawara90', '2016-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS524251826582', '任慧嫻', 1, '+44 (116) 789 3509', 1, '616808773002709831', 'No.46 Main building, 885 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-05-04', 0, 0, 'yamwaihan', '2016-09-22', 'yamwaihan4', '2016-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS037395935476', 'Wayne Bennett', 0, '+1 213-936-6461', 1, '171357424140799035', '760 Figueroa Street Apartment 48, Los Angeles, CA 90037, United States', '1987-05-10', 0, 0, 'wayne907', '2018-06-10', 'bennwayn', '2010-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS453007756981', 'Kimberly Lewis', 1, '+86 172-8505-7120', 3, '917448402815389044', 'Room 14, CR Building, 889 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1994-03-18', 0, 0, 'lkimbe', '2006-07-29', 'kimbl', '2021-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS442748532656', '原田花', 1, '+81 90-9875-7985', 3, '415666905550824197', '46-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1985-06-13', 0, 0, 'hhar', '2020-07-22', 'haha', '2010-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS782920197798', '中村大和', 1, '+81 11-797-7167', 4, '281680741248325935', '16-kai, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-12-01', 0, 0, 'yamato1021', '2006-06-24', 'nyam', '2012-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS281276099914', '山崎玲奈', 1, '+1 330-729-6990', 2, '288182439574780626', '695 Fern Street Apartment 5, Akron, OH 44307, United States', '1996-03-29', 0, 0, 'renayam7', '2016-09-08', 'ryama', '2017-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS583995666669', '石晓明', 0, '+81 90-0917-1231', 2, '789630488437557111', 'Rm. 16, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1993-11-07', 0, 0, 'shixiaom', '2015-11-14', 'xshi', '2002-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS970898573075', 'Aaron Washington', 0, '+86 28-302-2899', 1, '642049734596243985', '中国成都市锦江区人民南路四段636号23号楼', '1992-11-09', 0, 0, 'aaronw63', '2001-05-11', 'washingtonaa404', '2012-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS906918968159', '林陸', 1, '+1 718-947-7771', 2, '228005404834828890', '494 1st Ave Apt 5, Brooklyn, NY 11220, United States', '1998-07-08', 0, 0, 'har', '2022-01-28', 'hayasrik2', '2005-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS779734966774', '严詩涵', 0, '+81 70-2136-6959', 3, '385750700102518783', '日本ならし大和郡山市本庄町一丁目1番12号6号室', '1991-10-25', 0, 0, 'yanshihan', '2003-11-17', 'shihany917', '2008-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS029756721222', '張學友', 0, '+81 3-2532-4558', 2, '665085601199758723', '10F, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1988-12-26', 0, 0, 'hyc', '2002-01-18', 'hokyau61', '2001-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS698351689714', 'Carlos Mills', 1, '+1 838-256-6912', 2, '140314986195635514', '307 Central Avenue Apartment 28, Albany, NY 12206, United States', '1997-07-09', 0, 0, 'millsc', '2008-10-19', 'cm11', '2014-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS086005363018', '吕致远', 0, '+86 28-663-0065', 3, '545714778362014483', '中国成都市锦江区红星路三段74号48室', '1988-09-21', 0, 0, 'luzhiyu', '2015-11-12', 'luzhiyu', '2000-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS214539947697', '上野美月', 1, '+1 212-780-9453', 2, '170885462347745914', '760 Fifth Avenue Suite 47, New York, NY 10017, United States', '1992-01-24', 0, 0, 'mitsukiueno814', '2005-05-26', 'uem825', '2009-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS310715537734', '韦晓明', 0, '+86 196-9466-2553', 4, '421829811251531107', '中国上海市黄浦区淮海中路895号18号楼', '1995-07-13', 0, 0, 'xiaw1108', '2020-09-23', 'xiaowei06', '2015-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS644003796289', 'Anita Vargas', 0, '+86 755-0626-1463', 2, '608706507019181831', '中国深圳龙岗区布吉镇西环路371号华润大厦16室', '1992-09-02', 0, 0, 'vargasanita8', '2000-01-29', 'vargas54', '2002-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS930343064891', '萧睿', 0, '+81 90-2936-6761', 3, '240113204333363227', '日本札幌中央区宮の森四条六丁目1番20号10階', '1995-02-27', 0, 0, 'ruxia607', '2011-03-01', 'xr2000', '2003-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS365599035900', '侯子异', 1, '+1 614-826-1033', 4, '795920250405075320', '483 East Cooke Road Suite 42, Columbus, GA 43214, United States', '1990-01-27', 0, 0, 'hou1985', '2021-03-31', 'ziyi51', '2008-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS900493942171', '安藤美羽', 1, '+1 838-420-8714', 2, '867282672756095393', '269 State Street Apartment 1, Albany, NY 12203, United States', '1994-02-01', 0, 0, 'ando60', '2004-08-10', 'miuando', '2022-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS893951524665', '岩崎愛梨', 0, '+86 10-7368-3684', 4, '217904087347903643', 'Room 10, 874 Yueliu Rd, Fangshan District, Beijing, China', '1991-03-13', 0, 0, 'iwasakiai', '2003-02-14', 'iairi', '2016-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS362105759736', 'Shannon Rice', 1, '+81 11-404-5563', 1, '157230013718263650', '6-kai, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-06-19', 0, 0, 'riceshannon', '2002-06-03', 'shr6', '2015-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS877463794585', '山崎陸', 1, '+44 5830 291441', 1, '976511360212684503', 'Unit 35, Oxford Eco Centre, 244 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-01-27', 0, 0, 'yamazakiriku', '2014-03-30', 'riku51', '2007-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS621895790752', 'Alice Young', 1, '+1 330-063-8051', 3, '161086484948719596', '884 Riverview Road Suite 8, Akron, OH 44313, United States', '1985-08-12', 0, 0, 'ya74', '2007-01-14', 'yalice', '2013-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS555263678773', '金子葵', 0, '+44 (20) 1610 9014', 4, '794031942395220949', 'Block 35, 417 Maddox Street, London, W1S 1PU, United Kingdom', '1987-12-21', 0, 0, 'aoikaneko302', '2004-08-26', 'kaneko1', '2017-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS495383560667', '村上七海', 0, '+86 28-753-1956', 3, '005073974555048142', '中国成都市成华区二仙桥东三路749号14楼', '1991-12-31', 0, 0, 'murakaminanami', '2013-10-20', 'mn717', '2007-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS247700196382', '今井優奈', 0, '+81 3-0975-0435', 2, '203904525900479430', '日本東京千代田区丸の内一丁目6番11号32号室', '1997-01-17', 0, 0, 'yunai', '2018-10-13', 'imai501', '2012-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS193717648097', 'Ann Rice', 1, '+44 5981 623932', 1, '923945527062315912', 'Unit 9, Oxford Eco Centre, 288 New Street, Birmingham, B2 4DB, United Kingdom', '1990-03-05', 0, 0, 'arice', '2012-03-17', 'riceann05', '2003-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS746153856377', '中野詩乃', 1, '+1 718-859-5108', 1, '990587857953650282', '435 Columbia St Apartment 44, Brooklyn, NY 11231, United States', '1989-11-11', 0, 0, 'nakanoshino7', '2018-03-16', 'nakanoshi', '2019-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS083419887418', '馬永權', 0, '+44 (161) 720 3250', 2, '494256300064093408', 'Flat 36, 241 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-03-26', 0, 0, 'ma613', '2003-10-24', 'wingkuen05', '2000-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS625055504202', 'Willie Murphy', 1, '+1 718-973-4071', 2, '467881063742670721', '748 Flatbush Ave Suite 23, Brooklyn, NY 11225, United States', '1998-07-09', 0, 0, 'willie89', '2021-10-14', 'williemurphy', '2015-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS569021882417', '鄭俊宇', 0, '+1 312-276-8594', 3, '359674714976057345', '658 Pedway Suite 30, Chicago, IL 60601, United States', '1994-12-28', 0, 0, 'cyc', '2001-06-14', 'cheng10', '2015-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS577274487221', '杜宇宁', 1, '+86 28-2156-6113', 2, '906116946189575775', '中国成都市成华区玉双路6号719号18栋', '1998-12-19', 0, 0, 'yundu', '2001-09-04', 'duyunin', '2018-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS342660938156', '藤井蒼士', 0, '+1 312-502-1943', 4, '110930313804873681', '30 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1997-04-03', 0, 0, 'aoshi85', '2002-06-16', 'aoshifuji', '2009-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS290414877373', '小林拓哉', 0, '+44 7645 777492', 1, '140852098856970523', 'Block 3, 874 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-12-05', 0, 0, 'ktak5', '2010-10-08', 'takuya8', '2006-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS191298080787', 'Nancy Smith', 0, '+1 213-176-0102', 3, '248898615904988515', '402 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1987-06-03', 0, 0, 'smithn6', '2007-06-01', 'nsmith', '2002-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS442675075759', '朱璐', 0, '+86 144-0909-1254', 2, '248521160067494253', '中国北京市延庆区028县道141号26楼', '1995-08-13', 0, 0, 'zhl74', '2011-02-19', 'zhu4', '2003-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS336003797126', 'Crystal Flores', 0, '+81 52-300-1594', 2, '808282210367438077', '25-kai, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-16', 0, 0, 'crystflore8', '2005-03-21', 'flores113', '2009-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS724142565023', '于杰宏', 0, '+86 760-274-8446', 3, '206269887676290011', 'Room 45, CR Building, 96 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-06-30', 0, 0, 'yu1027', '2012-06-10', 'yjie', '2010-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS866015599921', '韩嘉伦', 0, '+86 164-2756-8002', 2, '055235125584999513', '中国成都市成华区玉双路6号743号22号楼', '1992-08-10', 0, 0, 'han15', '2004-10-17', 'jialunha', '2018-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS913831467705', '高橋湊', 0, '+44 5599 208041', 2, '265181222644930353', 'Unit 13, Oxford Eco Centre, 273 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-10-07', 0, 0, 'mitakahashi', '2019-03-22', 'takminato', '2004-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS646041964750', '丸山海斗', 1, '+81 70-0397-6941', 3, '686359311204576462', '22F, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-04-01', 0, 0, 'maruyamak', '2014-04-20', 'maruyamakaito92', '2006-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS791857555501', 'Sherry Tran', 0, '+86 769-854-8415', 2, '614085584127081713', '21F, 311 Kengmei 15th Alley, Dongguan, China', '1995-09-29', 0, 0, 'sherry10', '2008-04-16', 'shetr9', '2019-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS170912012649', '佐野七海', 1, '+86 755-287-3143', 3, '614951643572262236', '中国深圳福田区景田东一街559号41栋', '1988-08-21', 0, 0, 'nasano68', '2020-04-24', 'sannanami98', '2006-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS929916021995', '甘家文', 1, '+86 190-5152-7262', 1, '220415672697000269', '中国北京市延庆区028县道418号24楼', '1998-03-05', 0, 0, 'kmkam01', '2007-12-27', 'kamankam', '2010-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS887245643526', 'Joshua West', 1, '+1 213-300-5934', 2, '955685865819532189', '342 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-03-01', 0, 0, 'wejoshua', '2009-07-17', 'joshuwest', '2016-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS636203447436', '吳明詩', 0, '+81 3-0662-1464', 3, '689227281788538098', '日本東京港区東新橋一丁目5番18号34号室', '1991-12-28', 0, 0, 'msng9', '2007-08-19', 'mingszeng1', '2002-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS470107836019', 'Lucille White', 1, '+1 213-775-3961', 4, '726524751560218552', '420 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-06-17', 0, 0, 'whitelucille', '2020-06-25', 'lucillewh', '2018-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS731253429349', '邵宇宁', 1, '+86 10-4305-3619', 1, '599993735677314373', '14F, 58 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-10-25', 0, 0, 'shaoyuning9', '2021-08-07', 'yunins', '2003-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS587479998089', '林架純', 1, '+86 183-9749-5382', 0, '547732407425969818', 'No.32 building, No.637, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-05-25', 0, 0, 'hayashi422', '2008-11-03', 'khayas1959', '2003-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS213726695288', '黎惠敏', 0, '+86 192-4205-7916', 4, '723811287067891462', 'No.37 building, 18 Kengmei 15th Alley, Dongguan, China', '1985-01-07', 0, 0, 'laiwaima', '2013-12-09', 'lawm', '2021-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS517731519936', '洪俊宇', 0, '+86 179-4800-4808', 0, '031485754890998071', 'Room 17, CR Building, 918 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-11-26', 0, 0, 'hungchunyu8', '2018-11-17', 'hucy818', '2001-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS601069641200', 'Ray Wells', 0, '+81 52-227-5826', 3, '339619810644853058', '日本なごやし北区楠味鋺三丁目80番9号25階', '1991-06-26', 0, 0, 'raw', '2019-08-10', 'raywells10', '2014-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS893873265739', 'Connie Morgan', 1, '+81 52-415-7391', 3, '346522934828534694', 'Rm. 11, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1993-10-29', 0, 0, 'mc416', '2012-12-28', 'morganconnie2003', '2016-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS581600480119', 'Patricia Burns', 0, '+86 10-0618-6369', 4, '957990088019993110', '中国北京市朝阳区三里屯路251号33栋', '1988-06-03', 0, 0, 'burnspa', '2002-12-21', 'burnspatr614', '2008-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS914645246844', '有村舞', 1, '+1 718-565-4387', 1, '443288849105643862', '967 Columbia St Apartment 31, Brooklyn, NY 11231, United States', '1986-04-05', 0, 0, 'maiarim', '2020-03-08', 'arimura527', '2017-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS132042755820', '鈴木海斗', 0, '+81 52-853-5107', 1, '898148571267571795', '16-kai, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-12', 0, 0, 'suzuki18', '2010-04-02', 'ksuzu', '2002-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS126473044967', 'John White', 1, '+81 3-7885-4388', 1, '196791468293598883', '日本東京渋谷区代々木二丁目3番8号21号室', '1992-05-18', 0, 0, 'jwhite', '2007-05-23', 'white48', '2020-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS738463136124', '小島美月', 1, '+81 70-6829-4415', 3, '074864174160327402', '日本札幌中央区宮の森四条六丁目1番7号50号室', '1996-08-20', 0, 0, 'kojima915', '2006-05-03', 'mitsukikoji1940', '2019-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS967842072148', '陶震南', 0, '+81 90-6331-1274', 3, '880443648205343689', '22-kai, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-08-09', 0, 0, 'tazhennan1123', '2013-02-01', 'zhta', '2015-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS007228502162', '林致远', 1, '+1 213-194-7300', 1, '768843456031122651', '724 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1998-03-18', 0, 0, 'zhiyli50', '2021-11-08', 'zhiyuanlin', '2000-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS711726210986', '阮頴璇', 0, '+86 20-8113-6531', 2, '929827728344066161', 'No.20 building, 802 Xiaoping E Rd, Baiyun , Guangzhou, China', '1994-05-18', 0, 0, 'yuen1', '2005-10-24', 'yuen5', '2014-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS143292012353', '崔永發', 0, '+81 3-6082-1723', 3, '379977709206389959', '日本東京渋谷区代々木二丁目3番13号21階', '1990-02-12', 0, 0, 'chowi514', '2016-07-30', 'choiwf', '2017-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS223943055280', '區安娜', 1, '+44 (151) 345 6051', 4, '075076071336649486', 'Block 35, 941 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-05-07', 0, 0, 'onau48', '2010-12-04', 'aonna66', '2002-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS282878466043', '许晓明', 1, '+86 755-3249-6521', 1, '213586262511089966', '中国深圳福田区景田东一街494号34楼', '1990-10-05', 0, 0, 'xuxiaoming', '2013-11-17', 'xiaoming2', '2019-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS039763714987', '千葉湊', 0, '+44 (1865) 19 8855', 3, '801320976407233728', 'Flat 33, 382 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1991-09-07', 0, 0, 'minato3', '2011-11-18', 'minachiba', '2011-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS038240260070', '姜詩涵', 0, '+44 7540 109790', 4, '569447405867579154', 'Unit 16, Oxford Eco Centre, 85 Regent Street, London, W1B 2LX, United Kingdom', '1988-04-07', 0, 0, 'jiangs', '2010-08-20', 'jiashihan', '2016-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS628764442478', '姜杰宏', 0, '+81 52-876-3015', 1, '629524602130161117', '15F, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-10-04', 0, 0, 'jiejian', '2001-11-27', 'jiehjiang7', '2014-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS270255284968', 'Peter Long', 0, '+81 70-0911-7245', 1, '846183011809094919', '日本札幌豊平区豊平三条十三丁目3番15号34号室', '1996-10-05', 0, 0, 'peterlong', '2020-04-12', 'pelong', '2001-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS862167748909', '陆子异', 1, '+86 156-2526-0504', 1, '062946345397534446', 'Room 36, 432 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-10-19', 0, 0, 'luz1029', '2000-07-09', 'lziyi', '2013-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS823231117413', '莫致远', 1, '+81 74-251-4305', 2, '434765871425399640', '11-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1997-10-16', 0, 0, 'zmo', '2000-05-07', 'mozhiy', '2002-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS645645723385', '任心穎', 0, '+81 74-852-2227', 3, '684415437924001770', '日本ならし大和郡山市本庄町一丁目1番6号13階', '1991-09-02', 0, 0, 'sumwing3', '2000-11-17', 'yam9', '2012-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS205848048694', '丸山詩乃', 0, '+81 52-015-8664', 3, '096542851630565149', '日本なごやし北区楠味鋺三丁目80番14号21号室', '1986-04-21', 0, 0, 'marushino', '2003-07-31', 'shm', '2003-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS262788261236', '高思妤', 0, '+81 3-3196-2385', 1, '559752758528306396', '25-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-12-21', 0, 0, 'sykao', '2011-06-30', 'kao10', '2005-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS012746515264', '市川和真', 0, '+81 11-959-6952', 1, '345629007678152026', '39-kai, 5-4-8 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-12-17', 0, 0, 'ichikawa8', '2021-04-19', 'kazumaichik', '2017-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS721991838931', '魏晓明', 0, '+44 (20) 2601 7923', 3, '722903502217681018', 'Block 24, 869 Pollen Street, London, W1S 1NG, United Kingdom', '1989-03-06', 0, 0, 'xiaomingw', '2004-07-12', 'wexiaom', '2019-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS477872495650', '梅富城', 0, '+44 7898 640408', 1, '735105392509272188', 'No.42 Main building, 11 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-11-08', 0, 0, 'fushingmu', '2004-11-16', 'fushingmu814', '2003-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS547819670128', 'Eleanor Castro', 0, '+1 213-965-9314', 0, '608296923215359456', '295 Wall Street Apartment 8, Los Angeles, CA 90003, United States', '1993-03-13', 0, 0, 'castrele1998', '2002-04-03', 'castroeleanor8', '2009-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS880490838991', '原田花', 1, '+86 20-980-4569', 3, '862225879872517573', '中国广州市海珠区江南西路989号华润大厦17室', '1986-09-14', 0, 0, 'hahar', '2009-04-14', 'hana130', '2017-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS512123275266', 'Julia Lopez', 0, '+86 755-2759-3808', 1, '628985416179571074', 'No.27 building, 506 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1998-11-11', 0, 0, 'jullop76', '2014-03-31', 'lopez5', '2012-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS145789516667', '崔家玲', 1, '+81 70-7390-7941', 3, '044293327200334799', '42-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-05-20', 0, 0, 'kalingchoi9', '2013-10-23', 'kaling2003', '2017-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS448401180688', 'Walter Wallace', 0, '+1 213-168-7340', 4, '440994726052307933', '311 Sky Way Apt 25, Los Angeles, CA 90043, United States', '1987-05-18', 0, 0, 'wallaw', '2006-09-05', 'wallace9', '2013-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS929197663039', '安藤蒼士', 1, '+81 11-400-8834', 1, '246246151222006923', 'Rm. 29, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-27', 0, 0, 'aoshi9', '2001-12-31', 'andaoshi1222', '2021-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS289716103251', '程秀英', 0, '+81 11-710-5856', 4, '973590614157402755', '33-kai, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-08-01', 0, 0, 'xiuycheng1993', '2004-10-25', 'xcheng518', '2010-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS960481410484', 'Rodney Hunter', 1, '+86 10-860-3049', 3, '723330522614404613', 'Room 45, CR Building, 720 Yueliu Rd, Fangshan District, Beijing, China', '1989-07-15', 0, 0, 'rodh', '2001-09-29', 'hunterrodne', '2000-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS044257394985', '福田陸', 0, '+86 28-261-4098', 2, '390252270662854786', 'Room 34, No. 246, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-03-24', 0, 0, 'riku1', '2013-04-23', 'fukuriku', '2002-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS946064119804', '黃天榮', 1, '+1 614-729-7264', 1, '415218573008572184', '555 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1988-11-30', 0, 0, 'wtinwing1203', '2010-05-18', 'twwong', '2009-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS575337375179', '吴宇宁', 0, '+81 70-8680-0915', 2, '665440981984997373', '日本なごやし北区清水三丁目19番8号2階', '1998-05-11', 0, 0, 'ywu09', '2015-04-20', 'yunwu', '2015-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS296946605989', '唐詠詩', 0, '+81 90-7163-4968', 0, '379690005837630945', '日本なごやし守山区瀬古東二丁目171番5号14階', '1993-07-11', 0, 0, 'tongwingsze1968', '2021-07-02', 'tongwingsze4', '2001-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS434543260126', '岡田大輔', 0, '+44 7493 275567', 1, '850329309929281965', 'Block 24, 306 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-11-24', 0, 0, 'daisuke10', '2007-10-20', 'oda', '2021-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS218083649322', 'Kathy Shaw', 1, '+81 70-2989-3650', 0, '086060457010374610', '33-kai, 3-9-5 Gakuenminami, Nara, Japan', '1995-11-06', 0, 0, 'sk411', '2007-01-02', 'katshaw', '2006-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS111614692240', '陶睿', 0, '+1 614-782-5445', 3, '919240345362763176', '135 Wicklow Road Suite 14, Columbus, GA 43204, United States', '1993-11-07', 0, 0, 'ruitao', '2014-03-06', 'taru', '2012-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS634924426927', 'Grace Howard', 0, '+81 66-984-0600', 2, '728958061035263011', '32F, 2-1-17 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-05-10', 0, 0, 'hogr404', '2016-11-22', 'howagrace5', '2013-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS354159081777', '孙致远', 1, '+1 838-126-2508', 1, '000981643206581974', '217 Broadway Apartment 31, Albany, NY 12207, United States', '1998-04-16', 0, 0, 'sunzhiyuan1124', '2004-01-30', 'sz1972', '2019-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS515982486517', '于睿', 1, '+86 10-5696-9825', 3, '728670040508297329', '中国北京市东城区东单王府井东街796号华润大厦17室', '1996-09-19', 0, 0, 'yrui', '2007-03-30', 'ryu', '2008-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS172375039243', '夏子异', 0, '+81 90-5987-0197', 4, '254749698425177808', 'Rm. 29, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-12-23', 0, 0, 'ziyix219', '2021-12-23', 'xiaziyi', '2013-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS576494470030', 'Maria Smith', 0, '+1 212-788-3236', 2, '959367342405016547', '459 Canal Street Apartment 10, New York, NY 10013, United States', '1992-09-10', 0, 0, 'smithmaria', '2018-11-02', 'smith46', '2010-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS374280634423', 'Debra Patterson', 0, '+1 614-598-0652', 3, '082883220470613722', '417 East Alley Suite 4, Columbus, GA 43201, United States', '1985-11-06', 0, 0, 'depatterson9', '2018-11-22', 'debrapatterson', '2012-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS322849849694', '孙晓明', 0, '+81 66-737-9183', 1, '550706532983041981', '4F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-10-13', 0, 0, 'sunx2', '2002-09-10', 'xiaomingsun', '2011-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS619939331315', '高木美咲', 0, '+81 90-1633-4078', 0, '987335829157725641', '日本ならし西大寺赤田町一丁目7番14号35階', '1996-01-05', 0, 0, 'mistakagi', '2012-10-10', 'takagi2', '2001-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS068291668964', '邵詩君', 1, '+44 (116) 768 0264', 2, '979401273088706628', 'Block 7, 734 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-07-07', 0, 0, 'siusk', '2001-11-10', 'szekwansiu', '2010-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS479275073374', '清水彩乃', 0, '+81 90-5431-6777', 3, '107969773702326946', 'Rm. 23, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-06-11', 0, 0, 'shimizuayano', '2014-05-05', 'saya3', '2013-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS692280144342', '尹安琪', 0, '+86 180-6852-9562', 4, '289857662540146839', '中国北京市海淀区清河中街68号268号39号楼', '1987-01-23', 0, 0, 'yina708', '2017-06-14', 'anqiy403', '2020-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS981341933388', '菊地海斗', 1, '+44 7290 981520', 1, '169977296066419754', 'Unit 16, Oxford Eco Centre, 576 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-03-13', 0, 0, 'kikuchi3', '2011-09-23', 'kikuchi1', '2001-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS049353896643', '林璐', 0, '+81 90-6933-5036', 2, '220709098705934377', '日本おおさかし西成区天神ノ森二丁目1番19号7階', '1988-02-09', 0, 0, 'linlu', '2004-12-11', 'lulin', '2011-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS218074148383', '今井樹', 0, '+44 (1865) 79 8855', 4, '190207240369412388', 'Flat 50, 613 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-12-29', 0, 0, 'imi7', '2013-12-15', 'itimai20', '2000-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS578040740369', 'Eleanor Reynolds', 1, '+81 52-961-9885', 3, '917035399219113420', '15-kai, 4 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-02-07', 0, 0, 'erey80', '2020-08-29', 'reynolds9', '2010-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS061294215551', '佐々木大輔', 1, '+44 (151) 199 8547', 1, '663444402963709418', 'No.46 Main building, 840 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-03-22', 0, 0, 'sasakidaisuke', '2012-09-02', 'daisukesasaki18', '2004-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS606506357558', '汪秀文', 1, '+81 11-617-9843', 3, '418854500893637373', '日本札幌中央区宮の森四条六丁目1番11号31階', '1990-06-08', 0, 0, 'wsm', '2009-10-16', 'wong624', '2014-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS872510200247', '許仲賢', 0, '+81 70-6188-0035', 1, '295072822936314337', 'Rm. 5, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-05', 0, 0, 'chunhui', '2007-04-20', 'chunghui5', '2014-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS087201204867', 'Barry Powell', 1, '+1 718-866-2947', 2, '618691326404369697', '181 1st Ave Apt 6, Brooklyn, NY 11220, United States', '1993-07-12', 0, 0, 'powellba', '2017-01-25', 'powell1', '2017-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS076549118952', '孔秀英', 0, '+86 192-5329-5142', 0, '177214190762726010', '中国深圳罗湖区田贝一路201号45楼', '1986-10-28', 0, 0, 'xiukong', '2014-07-22', 'kong718', '2018-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS909563740336', '小島花', 0, '+81 52-487-3712', 3, '587768943741987849', '7-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-11-04', 0, 0, 'hanakojima', '2012-05-14', 'hanakojima', '2002-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS802737932671', 'Herbert Rice', 1, '+81 90-4487-9213', 1, '987917753554265341', '日本おおさかし東住吉区東田辺三丁目27番14号21号室', '1999-02-23', 0, 0, 'rh62', '2007-06-17', 'herbrice', '2001-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS799345823246', '田國賢', 0, '+86 20-782-7859', 2, '506286893905492172', 'No.23 building, 384 Tianhe Road, Tianhe District, Guangzhou, China', '1995-12-05', 0, 0, 'tin45', '2016-06-13', 'kwokyint', '2010-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS069925160357', '姜秀英', 0, '+81 80-0306-6062', 0, '839454134906109142', '5F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-04-12', 0, 0, 'jiangxiuying', '2013-09-29', 'jiangxiuy', '2000-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS509687835690', 'Julia Garcia', 0, '+81 11-125-3121', 0, '378795365297061128', '27F, 6-1-18, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-03-19', 0, 0, 'jgarcia55', '2000-11-29', 'garcijulia930', '2012-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS134510856502', '文惠敏', 1, '+86 755-101-5237', 2, '448529310843955630', '19F, 886 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-09-16', 0, 0, 'manwm4', '2020-05-22', 'waimanman', '2002-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS441195045015', '卢睿', 0, '+44 (1865) 08 9996', 0, '509017713007698137', 'No.22 Main building, 313 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-06-03', 0, 0, 'rlu6', '2003-08-29', 'lurui', '2018-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS026686072899', '陈杰宏', 1, '+86 176-4374-9490', 1, '722997114786800382', 'No.14 building, 458 Middle Huaihai Road, Huangpu District, Shanghai, China', '1993-05-07', 0, 0, 'cjiehong47', '2000-09-27', 'jiehong2', '2017-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS626944475229', '菅原蓮', 1, '+1 718-738-7184', 2, '574408859395523889', '426 Columbia St Suite 48, Brooklyn, NY 11231, United States', '1993-08-11', 0, 0, 'rsu810', '2015-08-04', 'sugawararen', '2000-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS993255219571', '狄頴璇', 0, '+81 52-299-7095', 3, '230357298511840972', '日本なごやし瑞穂区河岸町四丁目20番16号16階', '1992-07-22', 0, 0, 'wsti', '2015-11-13', 'wst9', '2008-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS335669397267', 'Randy Coleman', 1, '+44 (116) 614 1335', 2, '805632283677177552', 'Block 4, 800 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-06-17', 0, 0, 'randycoleman122', '2014-03-17', 'coleman401', '2019-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS928194121997', '羅麗欣', 1, '+1 213-964-6713', 4, '103094331422929048', '49 Sky Way Apt 4, Los Angeles, CA 90043, United States', '1998-09-10', 0, 0, 'laiyan53', '2001-01-04', 'lo908', '2001-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS180996849053', 'Gloria James', 0, '+81 80-9700-9045', 3, '873455033862886707', '日本東京品川区東五反田五丁目2番15号23階', '1987-02-28', 0, 0, 'gjam9', '2021-08-09', 'jagl', '2011-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS560898045515', 'Norman Castro', 1, '+81 90-9181-9574', 1, '814028507305885110', '日本おおさかし平野区加美東四丁目9番5号9階', '1994-08-04', 0, 0, 'normancastro', '2014-10-23', 'castrn', '2011-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS822712682581', '崔安琪', 0, '+81 52-060-1308', 3, '323213013943196523', '5-kai, 2-5-9 Chitose, Atsuta Ward, Nagoya, Japan', '1994-07-12', 0, 0, 'anqicui00', '2010-12-18', 'cuianqi626', '2010-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS992966653852', '遠藤明菜', 0, '+1 213-100-9023', 0, '940938526796130905', '328 Figueroa Street Apt 48, Los Angeles, CA 90037, United States', '1986-07-30', 0, 0, 'akina1984', '2015-03-24', 'enakina914', '2010-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS670588175854', 'Tiffany Simpson', 1, '+44 7585 221257', 3, '430053674939338898', 'Unit 9, Oxford Eco Centre, 604 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-06-13', 0, 0, 'tiffany3', '2004-05-07', 'sitiffany7', '2016-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS583426388920', 'Esther Kennedy', 1, '+81 80-3227-7153', 1, '153968675058654800', '35F, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1995-03-21', 0, 0, 'kennedyesther', '2016-01-10', 'estheke1226', '2003-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS572128348693', '三浦拓哉', 1, '+44 (116) 633 2894', 1, '195629363583766678', 'Unit 28, Oxford Eco Centre, 523 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1985-03-18', 0, 0, 'miurtak', '2009-08-26', 'takuymiura49', '2009-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS697033446611', '菅原悠人', 0, '+81 11-535-7097', 1, '501691939829726561', '日本札幌清田区真栄四条五丁目19番5号20階', '1992-05-18', 0, 0, 'yutsug1', '2018-06-24', 'yuto306', '2009-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS612482301914', '杜璐', 1, '+1 213-416-1312', 3, '766633480329633173', '918 Figueroa Street Apt 20, Los Angeles, CA 90037, United States', '1993-06-08', 0, 0, 'ldu', '2003-01-06', 'ldu', '2015-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS729624177274', 'Bernard Morgan', 0, '+86 175-0709-0060', 4, '072733105459042635', '中国北京市西城区西長安街995号27号楼', '1998-08-25', 0, 0, 'bernardmorgan1995', '2019-04-28', 'morganbernard', '2008-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS307168315016', '陆嘉伦', 0, '+86 142-8917-4994', 1, '431939267390999650', '中国深圳福田区景田东一街848号18室', '1992-10-08', 0, 0, 'luj', '2017-12-09', 'luj722', '2014-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS640987103604', '龙杰宏', 0, '+1 614-777-3159', 2, '668953495396433502', '792 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-07-24', 0, 0, 'jiehongl', '2021-04-13', 'ljieho', '2005-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS345906253733', '苏嘉伦', 0, '+1 213-793-8752', 1, '333351116063722632', '642 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1989-10-04', 0, 0, 'sujialun', '2017-10-28', 'suj', '2021-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS567974083998', 'Brian Cruz', 0, '+86 138-6912-9576', 3, '569397536449506195', '44F, 780 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-30', 0, 0, 'brian7', '2021-03-31', 'cruzbrian', '2007-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS829505649373', '武璐', 1, '+44 7040 751095', 1, '263913658471571965', 'Unit 2, Oxford Eco Centre, 960 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-02-03', 0, 0, 'lw1', '2013-05-16', 'wulu', '2010-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS918053326083', '宮崎蓮', 0, '+1 330-238-1300', 0, '306996754305022874', '869 West Market Street Suite 37, Akron, OH 44333, United States', '1991-10-13', 0, 0, 'miyaren6', '2016-06-14', 'miyazakiren', '2010-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS716613737587', 'Charles White', 1, '+86 21-4201-2224', 3, '521607421616863191', 'No.38 building, 790 Ganlan Rd, Pudong, Shanghai, China', '1996-03-16', 0, 0, 'charles711', '2017-10-18', 'white7', '2010-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS575489485684', '朱梓晴', 0, '+1 212-630-3279', 2, '380355600071610983', '714 Fifth Avenue Suite 46, New York, NY 10017, United States', '1995-03-10', 0, 0, 'tszchingch', '2013-09-28', 'tszchingchu', '2021-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS770303167897', '太田彩乃', 1, '+1 212-287-9425', 3, '631820121594694163', '3 Wooster Street 3rd Floor, New York, NY 10012, United States', '1997-09-17', 0, 0, 'otaayan', '2010-12-20', 'otayano4', '2017-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS149619937469', '苑國明', 0, '+86 20-422-0112', 0, '714781135737529768', '中国广州市天河区天河路789号17室', '1990-05-15', 0, 0, 'ykwokming923', '2019-03-18', 'ykwokming', '2005-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS629716369774', '谢岚', 1, '+44 5637 963468', 2, '943128572975914817', 'Flat 34, 116 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-03-04', 0, 0, 'lan223', '2012-07-10', 'lan7', '2005-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS543495528448', '千葉舞', 1, '+44 (1865) 66 0843', 4, '231516865018145377', 'Block 27, 906 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-09-14', 0, 0, 'chibamai', '2013-03-21', 'chibama', '2005-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS783217723106', 'Curtis Garza', 0, '+81 90-5367-3148', 2, '142902028406717762', '4-kai, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-04-16', 0, 0, 'garzcu50', '2005-01-16', 'garza220', '2021-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS885341316477', '郭浩然', 1, '+86 198-8843-0543', 2, '797334521159987713', 'No.10 building, 187 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-08-06', 0, 0, 'hykwok', '2011-11-01', 'hykwok', '2014-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS950506214999', '森田樹', 1, '+81 70-6138-3007', 2, '316691856830200631', '日本おおさかし平野区加美東四丁目9番7号6階', '1986-05-03', 0, 0, 'moritai', '2006-02-10', 'itsuki47', '2011-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS069361678262', 'Charlotte Chen', 0, '+86 21-527-9522', 3, '135924750895653774', 'No.9 building, 689 Jianxiang Rd, Pudong, Shanghai, China', '1990-04-18', 0, 0, 'chencharlotte5', '2006-04-16', 'chen8', '2004-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS758653057490', '薛秀英', 0, '+86 196-4530-0576', 1, '617420428523592390', '中国北京市朝阳区三里屯路118号30楼', '1993-06-09', 0, 0, 'xuexiuying7', '2021-10-22', 'xxue1973', '2010-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS397274219699', 'Eleanor Wilson', 1, '+86 165-9899-9212', 3, '526882934897885728', '3F, 956 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-03-21', 0, 0, 'welea2', '2019-02-18', 'eleawils7', '2018-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS404122804472', '李國權', 0, '+81 90-1119-8918', 3, '166681400685128908', 'Rm. 21, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-07-12', 0, 0, 'leekk', '2011-04-04', 'leekwokkuen', '2011-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS071225863270', '罗秀英', 1, '+1 838-469-5432', 3, '996019792113219661', '663 Lark Street Suite 12, Albany, NY 12210, United States', '1985-11-29', 0, 0, 'luo331', '2014-07-22', 'luoxiuying', '2015-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS030752584068', '崔詠詩', 1, '+1 213-033-8951', 3, '607201180538243528', '154 Figueroa Street Apt 31, Los Angeles, CA 90037, United States', '1993-09-26', 0, 0, 'chwingsze10', '2014-10-22', 'wsc', '2015-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS259282308822', '傅杰倫', 0, '+81 70-9088-4472', 2, '807727748972132623', '15F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-08-25', 0, 0, 'fuch', '2006-02-08', 'chiehlun7', '2002-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS944390218244', '高詩君', 1, '+86 755-946-5261', 0, '517117933150815892', 'No.26 building, 973 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-06-17', 0, 0, 'szeka', '2008-06-21', 'kaosk927', '2007-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS933970170936', '孟安琪', 0, '+86 165-3071-5500', 1, '216661141855183830', '7F, 956 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-12-05', 0, 0, 'anqi9', '2012-04-18', 'menga3', '2013-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS559963120879', '張仲賢', 0, '+44 5218 383854', 2, '517636296369035177', 'Unit 31, Oxford Eco Centre, 556 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-11-07', 0, 0, 'chungyinc7', '2013-01-14', 'checy', '2002-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS402139511070', '郝璐', 1, '+86 175-2092-1707', 0, '078282930227203549', '中国广州市海珠区江南西路690号24栋', '1993-08-15', 0, 0, 'lu10', '2008-06-25', 'lu3', '2004-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS514522279106', '樂仲賢', 0, '+1 213-437-1824', 1, '824976276773215885', '824 Alameda Street Apartment 32, Los Angeles, CA 90002, United States', '1993-05-29', 0, 0, 'cylok10', '2003-10-31', 'cylo', '2016-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS026224166185', '加藤桜', 1, '+81 66-001-8721', 4, '981603943262948665', 'Rm. 16, 4-9-5 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-01-31', 0, 0, 'sakura731', '2003-07-27', 'sakukato1957', '2014-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS027663105118', '加藤架純', 0, '+86 136-1200-5259', 0, '140871244483864000', '中国中山紫马岭商圈中山五路365号38栋', '1998-06-19', 0, 0, 'kasumi98', '2009-07-05', 'kato2014', '2007-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS943680237915', '邱永發', 1, '+44 (121) 775 3952', 0, '745433533406854755', 'Flat 22, 267 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-11-04', 0, 0, 'wfya', '2018-09-25', 'wingfatyau618', '2004-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS579663465954', '松本海斗', 1, '+44 (1223) 46 9550', 2, '845269890642104514', 'Block 36, 42 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-02-20', 0, 0, 'matkaito', '2006-03-12', 'matskai81', '2018-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS383544764840', '廖宇宁', 1, '+1 213-031-7736', 2, '994711524985100756', '299 S Broadway Suite 21, Los Angeles, CA 90015, United States', '1994-07-28', 0, 0, 'yliao', '2012-10-09', 'liao519', '2021-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS293359230526', '卢子韬', 0, '+86 10-5172-6953', 3, '213813221639924585', '中国北京市西城区复兴门内大街531号2室', '1985-08-08', 0, 0, 'zitaolu77', '2021-07-26', 'lzitao205', '2006-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS889213346328', '朱永權', 1, '+86 755-0646-6534', 1, '610448852512205246', 'Room 3, 769 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-10-09', 0, 0, 'cwing', '2017-05-28', 'cwingkuen', '2002-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS998935260361', '小川結翔', 0, '+86 151-3850-6843', 0, '482850341309874889', '中国深圳罗湖区田贝一路97号37楼', '1991-08-13', 0, 0, 'yuito1948', '2015-11-26', 'yuitoogawa731', '2003-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS154494923154', '沈子异', 1, '+86 755-004-8145', 3, '208711204550756116', '中国深圳龙岗区布吉镇西环路341号11室', '1991-12-25', 0, 0, 'ziysh2', '2020-05-26', 'szi507', '2011-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS984823281637', 'Sheila Murray', 1, '+81 90-7308-5670', 2, '819046279720007206', '日本札幌白石区菊水三条五丁目4番12号37階', '1995-03-18', 0, 0, 'musheila', '2013-05-08', 'mus', '2011-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS832963304917', 'Larry Evans', 0, '+44 5841 888874', 4, '498586090114743996', 'Block 10, 918 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-11-21', 0, 0, 'evanla72', '2004-10-26', 'evanslarr', '2019-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS856871120422', '中森大和', 1, '+86 10-8621-8307', 4, '500264960499361399', 'Room 6, 512 028 County Rd, Yanqing District, Beijing, China', '1990-11-21', 0, 0, 'ynaka8', '2001-09-07', 'yaman', '2021-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS639742036651', '林慧嫻', 0, '+1 718-649-6460', 2, '531570204642495913', '459 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1995-09-21', 0, 0, 'lamwh', '2000-10-27', 'lamwh', '2013-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS072726370142', '黎慧琳', 0, '+44 5785 660693', 1, '629976721274104256', 'No.47 Main building, 615 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1996-02-13', 0, 0, 'wailamlai', '2021-08-24', 'wllai804', '2012-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS477801492892', '薛永權', 1, '+1 213-597-4382', 1, '676028159090449836', '159 Alameda Street Apartment 16, Los Angeles, CA 90002, United States', '1993-11-27', 0, 0, 'winsit', '2008-07-09', 'sitwingkuen312', '2003-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS163650238595', '増田花', 1, '+86 755-853-0015', 3, '655412436325080043', '19F, 773 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-07-20', 0, 0, 'mash', '2019-06-05', 'mash', '2005-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS664919514575', 'Miguel Weaver', 1, '+86 191-8688-8902', 1, '418768198601561176', '中国中山乐丰六路676号50号楼', '1993-03-04', 0, 0, 'weavermig88', '2016-12-30', 'mweaver107', '2007-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS694636599394', 'Andrea Perry', 1, '+86 28-4097-3331', 0, '902510953975995667', 'No.24 building, 184 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-08-15', 0, 0, 'andrea621', '2016-05-23', 'andp', '2010-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS676685217716', '朱子异', 1, '+44 (161) 222 4687', 2, '326631916657883599', 'No.5 Main building, 848 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1998-04-16', 0, 0, 'zhuz85', '2000-01-14', 'ziyi16', '2017-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS785148923065', 'Peggy Ruiz', 0, '+44 5534 379862', 4, '625248823717814452', 'Flat 35, 164 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-06-25', 0, 0, 'ruizp10', '2002-01-30', 'peggyru218', '2016-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS203204518106', 'Robin Jordan', 1, '+1 213-559-8275', 0, '785929538564552071', '659 Figueroa Street Apt 36, Los Angeles, CA 90037, United States', '1997-02-20', 0, 0, 'robinj', '2005-01-30', 'jordan75', '2012-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS172216516765', '甘永權', 1, '+86 193-2866-4369', 4, '685355145669472254', '中国深圳龙岗区布吉镇西环路136号华润大厦13室', '1991-04-12', 0, 0, 'kamwk4', '2016-08-04', 'kwk', '2021-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS235624400705', '姜嘉伦', 0, '+44 7735 090217', 1, '985385931929941519', 'Flat 9, 686 Redfern St, Liverpool, L20 8JB, United Kingdom', '1996-12-24', 0, 0, 'jiangjialun3', '2012-10-14', 'jialunjia', '2008-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS306663908354', '張家明', 1, '+81 80-4270-2186', 1, '302793203468139225', 'Rm. 12, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1992-08-06', 0, 0, 'kmc729', '2020-03-02', 'kmche', '2018-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS501204494426', '近藤愛梨', 0, '+81 52-229-5314', 3, '970252541331249911', '日本なごやし守山区瀬古東二丁目171番7号8階', '1985-09-12', 0, 0, 'akondo', '2008-10-27', 'ka08', '2012-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS914569036694', '近藤彩乃', 0, '+44 7695 355391', 0, '268346841428151821', 'Unit 38, Oxford Eco Centre, 813 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-05-27', 0, 0, 'ayanoko', '2005-04-30', 'kondoayano', '2013-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS560854151307', '三浦桜', 1, '+81 80-0002-5519', 0, '686681305664275709', '日本札幌清田区真栄四条五丁目19番19号46階', '1990-06-04', 0, 0, 'sakuramiura', '2004-05-19', 'miurasakura', '2017-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS886723883205', '容秀文', 0, '+1 838-140-1714', 1, '437032667955967948', '541 Central Avenue Suite 3, Albany, NY 12205, United States', '1995-01-26', 0, 0, 'saumany', '2010-03-27', 'smyung9', '2003-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS183159575306', '谢宇宁', 0, '+86 145-8218-0576', 4, '254258243459093739', '中国中山京华商圈华夏街47号17室', '1986-12-30', 0, 0, 'yuning4', '2014-06-01', 'xieyu', '2007-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS745597110188', '伍秀文', 0, '+81 66-950-8907', 1, '835441923752030473', '日本おおさかし西成区天神ノ森二丁目1番2号6号室', '1988-12-27', 0, 0, 'smng07', '2008-08-24', 'ngsauman418', '2009-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS431061220758', 'Leonard Dunn', 0, '+81 66-101-8635', 3, '728721637099004395', '日本おおさかし西成区天神ノ森二丁目1番13号13階', '1995-09-12', 0, 0, 'leondunn', '2013-04-29', 'dunnleona1994', '2009-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS189482337135', '西村陽太', 1, '+44 5694 678901', 3, '074634970282985771', 'Block 49, 863 Hanover Street, London, W1S 1YD, United Kingdom', '1992-06-05', 0, 0, 'yotani1963', '2004-06-27', 'yotanishimura', '2004-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS438241882333', '陶杰宏', 0, '+81 66-862-0072', 0, '347791560949099170', '14F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-10-17', 0, 0, 'taojiehong', '2012-04-25', 'taj', '2012-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS014626671519', '鄧思妤', 0, '+81 11-262-9664', 0, '087978711526691892', 'Rm. 25, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-08-23', 0, 0, 'szeyu41', '2007-12-26', 'tang1', '2018-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS217865580970', '呂頴璇', 0, '+44 (1865) 33 4494', 2, '506377442554177379', 'Block 36, 135 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-08-16', 0, 0, 'luiwin1228', '2008-01-03', 'wslui', '2018-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS417743114408', '山本百恵', 1, '+1 212-280-0424', 2, '463983326766861749', '625 West Houston Street Apartment 29, New York, NY 10014, United States', '1985-12-19', 0, 0, 'momoeyamamoto', '2003-11-28', 'mya', '2006-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS580685005309', '汪子异', 1, '+86 170-7928-8946', 3, '591812004207526950', 'Room 21, CR Building, 391 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-03-27', 0, 0, 'ziyi1971', '2003-02-05', 'wang64', '2003-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS729813698004', '小林大輔', 1, '+86 166-4759-7121', 4, '727432885176568574', '中国广州市白云区机场路棠苑街五巷253号42栋', '1995-06-05', 0, 0, 'dak', '2020-08-03', 'kobadaisuke', '2003-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS054526770906', '曹頴璇', 1, '+1 838-456-9864', 1, '164401579546520481', '767 Broadway Suite 21, Albany, NY 12207, United States', '1990-02-22', 0, 0, 'wingsuencho', '2016-08-17', 'cho6', '2003-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS666801818922', '佐野和真', 0, '+81 70-1236-4622', 1, '026254636916010557', '日本おおさかし西成区天神ノ森二丁目1番15号32階', '1994-10-21', 0, 0, 'kazumas', '2015-04-01', 'sano12', '2017-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS156875245419', '千葉美月', 1, '+81 80-9449-9303', 2, '734799557241280120', '4-kai, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1988-04-11', 0, 0, 'chibamitsuki', '2016-02-09', 'mitsuki96', '2013-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS485154577007', '常秀英', 0, '+81 11-689-4446', 4, '387268232425922817', '21F, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-05-17', 0, 0, 'xiuyingcha603', '2019-10-26', 'changx8', '2005-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS000990028423', 'Leonard Jimenez', 0, '+86 144-6674-9346', 2, '405593665384450722', '中国上海市浦东新区橄榄路908号2栋', '1985-08-03', 0, 0, 'leojimenez', '2015-07-16', 'leonajimen', '2017-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS142920259790', '石川蓮', 0, '+44 (161) 373 0972', 1, '618002054082206013', 'Unit 18, Oxford Eco Centre, 178 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-07-25', 0, 0, 'iren1006', '2021-06-12', 'renishi1981', '2018-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS433516066326', '何富城', 0, '+86 755-073-7258', 2, '446490238945960161', '43F, 775 Shennan Ave, Futian District, Shenzhen, China', '1986-04-12', 0, 0, 'fushingho54', '2009-05-09', 'fushing6', '2001-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS551785262622', '黃德華', 0, '+81 90-3288-5175', 3, '238034377242593010', '27F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-03-19', 0, 0, 'wongtakwah419', '2003-05-21', 'wongtakwah9', '2017-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS035940218483', 'Roy Alvarez', 0, '+44 5719 852909', 2, '717008850525043804', 'Unit 17, Oxford Eco Centre, 81 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-21', 0, 0, 'royalvar', '2005-04-17', 'alvarez9', '2021-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS559547969307', 'Martha Jones', 0, '+81 70-1003-2053', 4, '359725654603576796', '39F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-01-30', 0, 0, 'jonesma601', '2007-11-26', 'marjones1968', '2014-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS861325979171', '青木葉月', 0, '+81 70-6744-3361', 1, '740480490443492266', 'Rm. 15, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-12-25', 0, 0, 'hazukiaoki', '2020-08-07', 'aohaz62', '2004-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS458042988457', '許潤發', 1, '+81 70-4025-6219', 4, '966017045290804196', '日本おおさかし近江堂一丁目7番9号47号室', '1996-12-21', 0, 0, 'yuhui', '2019-01-25', 'yfhui1997', '2000-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS011721677405', 'Jamie Kennedy', 1, '+86 195-9667-4481', 1, '006772263341605341', 'No.39 building, 625 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-12-10', 0, 0, 'kjami10', '2011-11-05', 'kennedy810', '2004-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS519322773451', '柴田瑛太', 0, '+44 5520 553666', 2, '434657078079110942', 'Block 1, 951 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-06-11', 0, 0, 'eitas604', '2021-06-27', 'eita8', '2014-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS638989952873', '杜頴璇', 1, '+81 74-021-9260', 1, '515348626786339526', '1-kai, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1991-08-18', 0, 0, 'wst', '2016-01-22', 'winto69', '2013-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS398434821173', '陶岚', 0, '+86 760-532-4594', 3, '859371254357304870', '中国中山乐丰六路959号华润大厦27室', '1997-08-26', 0, 0, 'taol929', '2015-06-16', 'lantao', '2017-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS013453867571', '姚睿', 0, '+44 (20) 4358 3563', 3, '177817942979771550', 'Flat 6, 417 Maddox Street, London, W1S 1PU, United Kingdom', '1996-08-07', 0, 0, 'ruiya4', '2003-07-10', 'yaorui', '2004-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS417365451346', 'Nicole Castro', 1, '+86 159-3962-8381', 1, '188500571455372434', '中国成都市锦江区红星路三段919号50室', '1988-09-05', 0, 0, 'ncas', '2001-04-30', 'nicoleca4', '2017-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS578858134907', 'Donald Gonzalez', 0, '+1 614-787-4962', 1, '674463682827872530', '339 Tremont Road Suite 36, Columbus, GA 43212, United States', '1988-08-02', 0, 0, 'gdonald6', '2013-02-25', 'gond624', '2016-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS815698895829', '周潤發', 0, '+86 755-055-1632', 0, '412702026267208175', 'Room 1, CR Building, 309 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-12-31', 0, 0, 'yunfatcho3', '2006-01-25', 'choyf1026', '2000-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS084552629725', '駱富城', 0, '+44 (161) 848 3649', 3, '046235470098658725', 'Block 3, 458 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-06-04', 0, 0, 'lok714', '2004-02-16', 'fushinglok', '2009-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS756430997808', '卢璐', 1, '+86 141-3059-9439', 4, '345487879513826539', 'Room 4, CR Building, 108 Shanhu Rd, Dongguan, China', '1998-05-23', 0, 0, 'llu', '2005-01-21', 'lulu4', '2017-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS966610673407', '段宇宁', 1, '+1 212-957-2909', 2, '786603944443040904', '424 Wooster Street Apartment 17, New York, NY 10012, United States', '1998-03-04', 0, 0, 'yunidu', '2000-11-27', 'yd9', '2019-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS560084272110', '木村桜', 1, '+81 80-7433-8775', 2, '079675094634244466', '30F, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-03-27', 0, 0, 'sakurak7', '2001-01-27', 'sakura515', '2004-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS758333964046', '盧俊宇', 0, '+81 52-820-9734', 2, '954693702760782690', 'Rm. 18, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1995-12-30', 0, 0, 'chunyu1004', '2017-07-24', 'chunyu1117', '2001-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS495899100777', 'George Hunt', 0, '+1 212-355-0121', 1, '521168980489924201', '844 West Houston Street Apt 35, New York, NY 10014, United States', '1985-12-02', 0, 0, 'hgeorge', '2006-09-19', 'huntgeo93', '2010-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS958420118285', 'Paul Jimenez', 1, '+81 66-848-4036', 2, '204648367413912649', '50F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1998-10-26', 0, 0, 'jimenezpau', '2005-03-07', 'jimenezpaul', '2019-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS769238458667', '向明詩', 0, '+44 5706 993181', 4, '990779614895437632', 'Flat 38, 212 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-01-09', 0, 0, 'heung10', '2009-12-21', 'mingsze723', '2000-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS439851340599', '工藤瑛太', 1, '+81 70-8978-5653', 2, '893696613703365649', '日本東京渋谷区代々木二丁目3番15号2階', '1995-09-25', 0, 0, 'eitakud2', '2011-12-25', 'eitak', '2006-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS768884968902', '钟晓明', 1, '+44 7904 525100', 3, '594291990629242171', 'Unit 17, Oxford Eco Centre, 974 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-08-09', 0, 0, 'xiaomz530', '2008-11-30', 'zhongxiaoming', '2009-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS590259743535', '高橋詩乃', 1, '+44 (121) 323 2663', 3, '803782879796198417', 'Flat 22, 412 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-03-05', 0, 0, 'tshino', '2005-04-30', 'shinotakah1225', '2020-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS932320147153', '前田大地', 0, '+86 760-633-2291', 1, '720948799527280536', '中国中山京华商圈华夏街541号华润大厦44室', '1993-01-31', 0, 0, 'daichimaeda', '2004-02-17', 'daichi93', '2014-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS522192649190', '许震南', 0, '+81 80-9918-9484', 1, '752521675922147280', '日本東京品川区東五反田五丁目2番6号29階', '1993-04-16', 0, 0, 'xu1229', '2001-04-20', 'zhxu2', '2021-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS677464654557', '周子韬', 0, '+1 213-146-4668', 3, '066991261998344731', '640 Wall Street Apartment 37, Los Angeles, CA 90003, United States', '1998-03-11', 0, 0, 'zhozitao1114', '2002-06-10', 'zz212', '2004-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS097167912503', '今井花', 0, '+86 151-6455-1429', 2, '311799564282318492', 'Room 17, 940 Shanhu Rd, Dongguan, China', '1998-10-25', 0, 0, 'hanaima123', '2001-07-08', 'hana2', '2008-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS097786074261', 'Frederick Carter', 1, '+1 213-735-5598', 2, '126744280072506618', '267 Grape Street Apt 33, Los Angeles, CA 90002, United States', '1991-12-22', 0, 0, 'carter1115', '2008-07-25', 'frederickcarter2', '2010-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS804068918975', '渡部美咲', 1, '+86 28-293-7103', 1, '115674777999118750', '中国成都市锦江区红星路三段139号37栋', '1994-02-12', 0, 0, 'misawatanabe', '2000-11-24', 'watamisaki', '2003-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS423639791107', '成曉彤', 0, '+86 769-216-8786', 0, '020616089046874179', 'Room 30, CR Building, 355 Dongtai 5th St, Dongguan, China', '1987-01-28', 0, 0, 'htshing91', '2010-12-08', 'shiutu', '2013-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS402701426864', '湯發', 1, '+86 142-1521-2952', 3, '525999184916298946', '中国北京市东城区东单王府井东街999号43室', '1993-06-26', 0, 0, 'tongfat', '2020-03-18', 'tongfat', '2002-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS728658466411', '翁家輝', 1, '+86 175-5414-6465', 1, '132079332719257852', '中国成都市成华区二仙桥东三路832号28栋', '1996-07-03', 0, 0, 'kafaiyung', '2021-08-31', 'kfyung', '2005-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS147683004878', '加藤光莉', 0, '+86 185-7038-0609', 4, '352320084921955775', '中国北京市西城区西長安街451号13楼', '1988-08-28', 0, 0, 'hikat', '2002-08-04', 'katohikari', '2019-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS560035258024', 'Brian Gray', 1, '+1 213-965-6584', 0, '396766175111305232', '769 Alameda Street Apt 28, Los Angeles, CA 90002, United States', '1993-09-17', 0, 0, 'graybrian8', '2011-12-27', 'brg', '2011-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS798517900178', 'Larry Hunt', 1, '+1 838-978-9082', 3, '276158682779291800', '197 Lark Street 3rd Floor, Albany, NY 12210, United States', '1998-04-03', 0, 0, 'huntl', '2006-07-09', 'larry8', '2007-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS951432330947', '赵子异', 0, '+44 7258 468879', 0, '854240497452217023', 'Flat 27, 399 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-12-29', 0, 0, 'zhaoziyi1104', '2011-01-15', 'zhaoziyi1124', '2003-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS035528012163', '段致远', 1, '+44 7293 999623', 2, '603656336612411271', 'Block 35, 392 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1991-04-16', 0, 0, 'zhiydua10', '2005-08-10', 'zhiydua', '2002-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS641137379279', 'Juan Castro', 0, '+86 755-436-6108', 3, '573674353773674594', '22F, 605 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-08-02', 0, 0, 'castro49', '2010-01-20', 'casju1107', '2000-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS899207445942', 'Shirley Moore', 0, '+81 66-784-4410', 3, '893581996250468891', '5F, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-02-14', 0, 0, 'shirm', '2007-05-28', 'moore7', '2006-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS987563581243', 'Scott Stone', 1, '+86 755-2913-5615', 1, '343489138834211531', '中国深圳罗湖区蔡屋围深南东路60号1栋', '1996-06-03', 0, 0, 'scottsto', '2005-08-13', 'ssco04', '2012-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS466961990715', '和田蒼士', 1, '+81 66-577-1725', 2, '056158758211670740', '日本おおさかし西成区出城一丁目1番10号46号室', '1990-07-23', 0, 0, 'wadaoshi', '2015-08-31', 'aoshiw1221', '2021-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS240685895855', '翁永權', 1, '+86 769-896-5980', 1, '939198276301127306', 'Room 50, CR Building, 605 Huanqu South Street 2nd Alley, Dongguan, China', '1991-01-05', 0, 0, 'wingkuen4', '2007-10-25', 'yungwk3', '2013-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS598629283276', '遠藤陸', 1, '+81 70-7158-6634', 3, '326419947439419878', 'Rm. 14, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-02-22', 0, 0, 'endoriku17', '2011-11-12', 'riku712', '2009-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS435235658232', '石秀英', 1, '+1 330-271-4782', 4, '190485028121706289', '837 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-09-27', 0, 0, 'xiuyingshi', '2010-01-31', 'xiuyingshi', '2003-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS594282775165', 'Craig Kelly', 1, '+44 (116) 215 2612', 0, '863840667321803785', 'No.50 Main building, 825 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-12-09', 0, 0, 'kelly7', '2019-08-22', 'ckelly', '2021-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS327657571096', '何嘉欣', 1, '+81 80-4182-1981', 1, '031056917835565219', '日本札幌白石区菊水三条五丁目4番15号42階', '1998-06-30', 0, 0, 'hoky7', '2014-08-18', 'kyho', '2021-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS733280412962', '曾子韬', 1, '+44 (121) 550 8138', 0, '710415870662924928', 'Flat 24, 652 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1988-12-16', 0, 0, 'zz2', '2020-08-07', 'zzitao2', '2000-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS267162148805', 'Donald Butler', 0, '+86 10-701-6924', 2, '634585001441548149', '33F, 815 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-03-01', 0, 0, 'butdonald', '2018-07-14', 'butdo2', '2014-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS503164045882', '方震南', 0, '+1 718-746-4949', 1, '092252608456758570', '864 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1998-07-02', 0, 0, 'fazhennan83', '2000-07-22', 'fangzhe', '2020-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS740153607188', '汪頴璇', 1, '+86 193-9601-6742', 0, '869190339048889781', '中国北京市延庆区028县道318号48室', '1993-04-05', 0, 0, 'wingsuenwong98', '2007-12-10', 'wingsuenw', '2017-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS834165301308', '錢學友', 1, '+44 (161) 541 5309', 2, '982865456916628613', 'Flat 11, 677 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-08-02', 0, 0, 'chinhokyau', '2004-05-26', 'hychin', '2002-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS590617663467', '邱家玲', 0, '+86 199-5893-2073', 2, '718767613097754111', '中国深圳龙岗区学园一巷899号47号楼', '1989-06-07', 0, 0, 'yau7', '2006-01-29', 'yaukaling', '2016-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS275053318034', '高橋美羽', 1, '+86 188-0553-0775', 3, '959241040339963675', 'Room 6, CR Building, 25 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-10-10', 0, 0, 'takahashimi', '2020-01-12', 'miutak7', '2009-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS774139510180', '杨詩涵', 1, '+44 7218 575889', 4, '160172811678847484', 'Block 39, 328 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-02-16', 0, 0, 'shihan2006', '2011-10-06', 'yashiha', '2016-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS595395307423', '林安琪', 1, '+81 52-924-5876', 3, '267942618735927882', '日本なごやし守山区瀬古東二丁目171番7号24階', '1991-06-02', 0, 0, 'ali7', '2011-06-22', 'anqi907', '2005-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS716886242160', '高橋優奈', 0, '+81 66-046-5284', 1, '741228554952094206', '41F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-29', 0, 0, 'takahashi72', '2001-05-24', 'yunatakahashi', '2011-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS088981571213', '龙詩涵', 0, '+1 212-080-4974', 1, '225260373213006807', '802 Fifth Avenue Suite 21, New York, NY 10017, United States', '1988-07-13', 0, 0, 'shl', '2007-09-19', 'lons211', '2010-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS448564380511', 'Wendy Jordan', 0, '+81 80-8441-6998', 1, '212696969294596731', '日本東京中央区銀座三丁目12番1号17号室', '1990-10-05', 0, 0, 'wendyjordan', '2019-09-27', 'jordanwendy', '2019-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS439994680817', '汪震南', 1, '+1 330-048-5366', 1, '819211119535428176', '356 Riverview Road Suite 12, Akron, OH 44313, United States', '1993-07-14', 0, 0, 'wangz', '2016-11-25', 'zhennanw', '2014-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS831079175053', '小林光莉', 1, '+1 614-875-4368', 2, '815063543133180842', '495 Diplomacy Drive Apartment 24, Columbus, GA 43228, United States', '1985-02-05', 0, 0, 'kobayashi2', '2011-05-16', 'koh1202', '2021-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS646331213911', '斉藤光', 1, '+86 169-8327-7053', 2, '395902068493076186', '中国深圳龙岗区布吉镇西环路521号11楼', '1990-10-27', 0, 0, 'hisait', '2019-01-02', 'hisa', '2021-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS451280390015', '柴田健太', 1, '+86 10-5318-9393', 1, '377360329702756217', '中国北京市東城区東直門內大街174号华润大厦19室', '1991-07-09', 0, 0, 'shibatake59', '2004-04-25', 'keshibata', '2021-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS301687908784', '石川愛梨', 1, '+81 52-550-8258', 4, '236932678816869866', '日本なごやし熱田区千年二丁目5番12号14階', '1988-12-01', 0, 0, 'airi84', '2018-01-10', 'ishairi01', '2008-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS935610015395', '和田舞', 0, '+44 5412 886104', 1, '007811971413889181', 'No.27 Main building, 771 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-28', 0, 0, 'mai62', '2021-05-17', 'mai98', '2000-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS674205402413', '朱惠妹', 0, '+86 21-973-1720', 1, '453018220658202074', 'Room 21, CR Building, 380 Binchuan Rd, Minhang District, Shanghai, China', '1985-09-13', 0, 0, 'chu1230', '2006-01-29', 'chuhuimei', '2016-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS392814571019', '雷嘉伦', 1, '+81 66-814-2523', 3, '556270307031158573', '日本おおさかし東住吉区東田辺三丁目27番11号43階', '1996-09-29', 0, 0, 'jiallei1960', '2001-04-22', 'jialulei', '2019-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS839108202193', '河野大輔', 0, '+81 90-4438-0852', 0, '441242903790210795', 'Rm. 28, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-04-14', 0, 0, 'daiskono', '2016-10-03', 'daisukek', '2007-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS598372695876', '汪仲賢', 0, '+86 164-3630-0671', 0, '781936205940182773', 'No.39 building, 810 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-01-30', 0, 0, 'wcy', '2004-11-28', 'wongcy', '2003-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS634377725748', '林蒼士', 0, '+44 (121) 783 0468', 0, '786017744347083608', 'Flat 43, 953 New Street, Birmingham, B2 4DB, United Kingdom', '1993-06-03', 0, 0, 'hayashiaos', '2016-06-25', 'aoshi505', '2010-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS688716888515', 'Diane Cooper', 1, '+1 838-209-9039', 2, '067750005200946689', '60 Lark Street Apt 26, Albany, NY 12210, United States', '1993-04-09', 0, 0, 'diane54', '2009-07-14', 'diancooper99', '2019-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS931274720731', '黎岚', 1, '+44 (1223) 25 8997', 1, '307454806157784757', 'No.39 Main building, 938 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-03-12', 0, 0, 'lan5', '2005-04-15', 'll403', '2017-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS373153438201', '毛國賢', 1, '+86 755-725-0265', 1, '066332949724416576', '中国深圳龙岗区学园一巷130号4楼', '1998-12-11', 0, 0, 'mokwokyin', '2006-01-04', 'moky', '2012-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS275564597348', 'Mike Brooks', 1, '+86 189-9090-0886', 1, '924265061297939913', '中国中山紫马岭商圈中山五路444号24栋', '1997-08-09', 0, 0, 'mikebrooks3', '2008-10-29', 'brooks8', '2012-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS047609359851', '袁睿', 0, '+44 7394 123846', 2, '096065211633555262', 'Unit 26, Oxford Eco Centre, 355 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-07-24', 0, 0, 'ruyuan6', '2016-12-25', 'ryua', '2018-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS115059868440', '傅璐', 0, '+1 718-477-6686', 2, '635870698757728651', '677 Bergen St Apartment 32, Brooklyn, NY 11217, United States', '1996-07-24', 0, 0, 'lufu', '2017-05-27', 'lfu414', '2000-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS414389831404', '雷安琪', 1, '+81 70-7481-8627', 0, '749806691203596569', '24F, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-04-15', 0, 0, 'anle', '2009-01-05', 'alei', '2018-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS586918549375', 'Elaine Jackson', 0, '+86 144-1162-4184', 0, '756219019447048222', '中国中山乐丰六路757号28室', '1989-09-17', 0, 0, 'elainejackson10', '2000-10-28', 'ejackson8', '2020-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS947957093909', 'Luis Myers', 1, '+81 80-6400-9446', 1, '524681717554040847', '日本なごやし守山区瀬古東二丁目171番6号37号室', '1990-03-31', 0, 0, 'myersluis', '2013-11-23', 'luismye1994', '2006-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS358323283862', '侯嘉伦', 1, '+86 10-0339-5194', 4, '178760217425359918', '中国北京市西城区复兴门内大街414号12栋', '1987-10-05', 0, 0, 'jialun03', '2005-07-14', 'jho3', '2021-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS960370976865', '马詩涵', 0, '+1 213-691-2484', 3, '743275347534963580', '104 Wall Street Apartment 25, Los Angeles, CA 90003, United States', '1989-06-15', 0, 0, 'mas', '2000-04-12', 'mashiha', '2021-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS691311417193', '谷慧嫻', 0, '+81 90-9391-4837', 1, '715911355054082819', 'Rm. 17, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-11', 0, 0, 'waihan3', '2017-12-27', 'koowaihan16', '2022-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS520955528687', 'Bradley Owens', 0, '+86 21-1879-7181', 0, '276536436322010464', 'Room 5, CR Building, 698 Jianxiang Rd, Pudong, Shanghai, China', '1987-01-11', 0, 0, 'owensbradl1', '2017-12-12', 'bowens', '2020-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS595325540099', '阿部美羽', 0, '+86 769-8731-7523', 4, '703280683869018123', '中国东莞东泰五街158号17栋', '1995-05-03', 0, 0, 'miu68', '2010-08-27', 'miu2', '2021-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS077927049371', '顾岚', 1, '+86 21-352-9411', 3, '032001470647162579', '中国上海市浦东新区健祥路591号5栋', '1987-12-15', 0, 0, 'lan3', '2013-06-23', 'langu', '2019-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS638876436441', '新井蓮', 0, '+1 614-952-4587', 0, '291965112874019895', '272 Tremont Road Suite 45, Columbus, GA 43212, United States', '1990-10-01', 0, 0, 'araren', '2014-03-19', 'arren1', '2016-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS558669554874', '松田健太', 1, '+86 182-3657-4904', 4, '616047509882372823', '中国成都市锦江区人民南路四段564号25楼', '1985-06-14', 0, 0, 'matsuda49', '2021-07-30', 'mkent', '2001-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS374328414047', '严嘉伦', 1, '+44 7429 245421', 3, '145740332444159201', 'Block 25, 616 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-12-12', 0, 0, 'jiyan', '2007-03-21', 'jialuny', '2005-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS021666108629', '孔詩涵', 1, '+1 718-979-3741', 1, '781332196834652851', '6 Flatbush Ave Suite 45, Brooklyn, NY 11225, United States', '1997-04-10', 0, 0, 'shkong', '2021-06-03', 'kong4', '2000-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS991677920293', '今井美月', 1, '+86 755-0698-9472', 2, '273695334153319318', 'Room 39, CR Building, 547 Shennan Ave, Futian District, Shenzhen, China', '1992-02-24', 0, 0, 'imamitsuki70', '2019-06-12', 'imaimitsuki', '2009-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS323582319490', '呂朝偉', 0, '+81 80-6651-9134', 0, '698734512627118705', '日本おおさかし近江堂一丁目7番15号21号室', '1998-02-11', 0, 0, 'chiuwlu10', '2004-09-16', 'lcw1', '2002-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS905327306857', '溫榮發', 0, '+44 7620 320248', 3, '734348357070456571', 'Unit 38, Oxford Eco Centre, 395 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-02-09', 0, 0, 'wfw', '2016-08-18', 'wanwingfat420', '2020-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS305514069023', 'Lucille Mendez', 1, '+81 90-4817-4079', 1, '906466070165364962', '日本なごやし瑞穂区河岸町四丁目20番2号47号室', '1997-05-27', 0, 0, 'lucmendez', '2008-12-15', 'lucillemendez41', '2014-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS872745231220', '駱梓晴', 0, '+86 193-7521-2965', 1, '263102144737913704', 'No.48 building, 973 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-05-20', 0, 0, 'tclok715', '2005-02-07', 'loktc', '2008-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS916820545951', '有村陽太', 0, '+86 760-2299-1152', 2, '910026646773522950', '中国中山天河区大信商圈大信南路236号华润大厦47室', '1991-12-10', 0, 0, 'yarimura75', '2003-05-19', 'yotari', '2006-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS414257725426', '汪致远', 1, '+44 7310 519879', 4, '735547203572995921', 'Flat 34, 656 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-07-23', 0, 0, 'wzhi', '2009-02-17', 'zhiyuan3', '2001-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS181175328088', '中野大和', 1, '+81 90-2273-2565', 2, '228776327426807219', '日本札幌白石区菊水三条五丁目2番15号10号室', '1991-07-24', 0, 0, 'yamnakan318', '2014-12-08', 'nyam102', '2008-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS400352041984', 'Peggy Burns', 1, '+86 171-3001-8244', 4, '748430597726558458', '中国上海市浦东新区健祥路849号34室', '1988-08-14', 0, 0, 'peggyburns4', '2003-12-26', 'bpeggy', '2012-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS467600242928', 'Linda Morris', 1, '+86 28-912-7933', 4, '490504512117816952', '中国成都市成华区玉双路6号919号35楼', '1988-08-12', 0, 0, 'linda86', '2019-02-21', 'morrisl1962', '2009-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS595099157229', '戴天榮', 1, '+81 70-3146-4534', 2, '380360647726687411', '日本札幌豊平区豊平三条十三丁目3番1号31号室', '1985-10-17', 0, 0, 'twdai8', '2021-10-16', 'tinwing10', '2012-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS142712472389', '鈴木優奈', 1, '+86 10-542-6541', 3, '123240834155531984', '中国北京市西城区复兴门内大街32号41号楼', '1989-01-26', 0, 0, 'suyuna406', '2002-07-06', 'suzuki425', '2006-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS171743921321', '曹震南', 1, '+81 66-547-7596', 2, '536090173849027894', '日本おおさかし近江堂一丁目7番6号23号室', '1995-10-05', 0, 0, 'czhennan8', '2018-01-03', 'caoz403', '2003-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS580071392387', '梅發', 0, '+81 3-9648-9195', 3, '027734071837880676', '日本東京品川区東五反田五丁目2番15号11号室', '1995-07-02', 0, 0, 'fatmui', '2010-10-12', 'mfat', '2000-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS396339156159', '石安琪', 1, '+44 7960 964264', 0, '907928214007646629', 'Flat 48, 654 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-09-16', 0, 0, 'sanqi00', '2009-09-12', 'anqshi82', '2014-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS089188121871', '石璐', 0, '+44 (1865) 82 2191', 2, '639196742224649170', 'Unit 29, Oxford Eco Centre, 874 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-03-26', 0, 0, 'lus', '2001-08-14', 'slu707', '2011-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS273462020030', '郭詩涵', 0, '+86 10-7740-8839', 3, '029075426794844373', 'Room 32, 750 028 County Rd, Yanqing District, Beijing, China', '1990-09-11', 0, 0, 'gshih6', '2005-10-18', 'sg45', '2015-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS641722359800', '江安娜', 0, '+1 312-274-8290', 1, '399039656392033239', '293 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1991-05-28', 0, 0, 'koonna', '2004-07-22', 'kong10', '2012-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS067296419270', 'Julie Nelson', 0, '+81 70-7511-8014', 3, '729481639724513730', '4F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-05-19', 0, 0, 'julien4', '2013-02-04', 'nelsonjulie', '2012-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS743227369414', '魏岚', 1, '+81 70-6706-4402', 3, '623857609204872639', '日本おおさかし東住吉区東田辺三丁目27番12号13階', '1992-03-02', 0, 0, 'lanwei1129', '2015-04-06', 'lawei', '2011-05-19'); -INSERT INTO "public"."userinfo" VALUES ('TS210099040933', 'Phyllis Palmer', 0, '+1 614-837-5508', 2, '515638195394210326', '470 East Cooke Road Apt 3, Columbus, GA 43214, United States', '1988-06-05', 0, 0, 'palmphyllis', '2007-07-08', 'palmerphyl', '2002-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS045474789042', '千葉陽太', 1, '+86 190-9117-6772', 3, '999643086559547268', 'No.37 building, 47 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-10-03', 0, 0, 'chibay', '2004-03-05', 'chibayota67', '2002-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS722522368190', '房永發', 1, '+1 614-552-8285', 4, '202241451760979935', '377 East Cooke Road Suite 13, Columbus, GA 43214, United States', '1994-02-25', 0, 0, 'fwf', '2013-08-14', 'wingfat1103', '2020-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS589915207946', '三浦七海', 0, '+86 151-3935-8734', 3, '910596374956903756', 'No.40 building, 558 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-08-20', 0, 0, 'miura1976', '2000-09-20', 'nanamimiur2', '2015-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS046694041043', 'Albert Murray', 0, '+86 20-5085-5031', 4, '338249892093967553', 'No.21 building, 911 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-09-18', 0, 0, 'albertm313', '2003-06-15', 'albertmurr7', '2018-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS946327824313', '范子异', 0, '+86 10-8850-3943', 1, '810636958856029795', 'No.40 building, 56 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-12-14', 0, 0, 'ziyifan', '2018-05-16', 'ziyifa1', '2003-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS111381229948', '田嘉伦', 0, '+86 174-0098-7004', 3, '831030748844284167', '中国东莞环区南街二巷636号33号楼', '1985-01-01', 0, 0, 'tian1018', '2015-01-21', 'jialuntia', '2004-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS285750966340', '江杰宏', 1, '+1 614-860-5630', 2, '440167479915774023', '738 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-12-04', 0, 0, 'jjieh2', '2011-10-11', 'jiehong1126', '2007-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS757546574557', 'Sara Dixon', 0, '+1 718-995-7391', 1, '629549895200498158', '444 Bergen St Suite 10, Brooklyn, NY 11217, United States', '1988-01-05', 0, 0, 'sad', '2002-07-20', 'saradixon', '2006-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS627213282448', '宮本悠人', 0, '+1 312-697-9057', 3, '664012618743407168', '849 Pedway Suite 45, Chicago, IL 60601, United States', '1998-07-24', 0, 0, 'miyamoto304', '2004-09-29', 'yumiy', '2015-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS807194518325', '郭震南', 0, '+44 (20) 5868 8488', 3, '080929466375107831', 'Flat 31, 853 Maddox Street, London, W1S 1PU, United Kingdom', '1986-12-02', 0, 0, 'guozhennan2005', '2001-12-21', 'zhennan1', '2013-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS310710059505', 'Mark Scott', 1, '+81 11-636-0923', 1, '198516499428730858', '32-kai, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-11-25', 0, 0, 'scottma9', '2008-04-03', 'scmar8', '2009-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS810105754947', 'Cindy Gordon', 0, '+81 52-351-7418', 3, '953875721426399824', '日本なごやし瑞穂区河岸町四丁目20番1号10号室', '1995-05-07', 0, 0, 'gordoncindy', '2017-08-24', 'cingordon71', '2005-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS207798033995', '邵學友', 1, '+81 52-703-9028', 3, '154437447294769968', '日本なごやし瑞穂区河岸町四丁目20番7号14号室', '1990-08-06', 0, 0, 'siuhy810', '2012-02-20', 'hysi808', '2007-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS894676430297', '中村涼太', 1, '+81 80-2261-6239', 2, '121841261954603133', 'Rm. 16, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-11-26', 0, 0, 'ryota4', '2009-11-26', 'nakamurar1945', '2006-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS417426083082', 'Glenn Graham', 0, '+44 7758 108064', 2, '045190882321183358', 'Flat 43, 114 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-02-14', 0, 0, 'glenn404', '2018-08-03', 'glegrah', '2007-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS739445849859', '田國榮', 0, '+86 755-578-2433', 2, '279575150669813698', '中国深圳龙岗区学园一巷290号21楼', '1989-11-20', 0, 0, 'tin82', '2019-06-19', 'kwokwingti', '2016-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS768918411798', '郝致远', 0, '+81 74-420-3199', 4, '564887636843118793', 'Rm. 7, 3-9-17 Gakuenminami, Nara, Japan', '1991-10-12', 0, 0, 'haozhiy', '2009-01-21', 'zhiyuanhao69', '2021-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS504946963663', 'Barbara Hicks', 0, '+81 70-6048-9194', 3, '609956182763906932', '日本なごやし熱田区千年二丁目5番8号17階', '1988-09-20', 0, 0, 'hickbarbara', '2003-12-31', 'hbarbara622', '2012-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS407096167687', '野口大地', 1, '+81 90-9600-3434', 3, '088149114449881210', '日本なごやし守山区瀬古東二丁目171番7号19号室', '1990-10-24', 0, 0, 'daicnogu10', '2010-05-03', 'daicnoguc', '2012-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS389539040952', '唐秀文', 1, '+81 90-0097-6871', 4, '476435760093947107', '23F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1994-12-16', 0, 0, 'saumanto', '2005-05-05', 'smton', '2003-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS048151724732', '郭麗欣', 1, '+44 (161) 286 3109', 0, '133223585636922301', 'No.30 Main building, 108 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-12', 0, 0, 'lykwok7', '2022-03-01', 'lyk', '2010-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS158765185448', '任嘉伦', 1, '+1 212-495-0132', 1, '648792394192913669', '509 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1995-01-21', 0, 0, 'jire10', '2001-01-13', 'renj6', '2017-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS815648740949', 'Linda Reyes', 0, '+44 (161) 117 1985', 3, '587842792633871546', 'No.47 Main building, 52 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-08-27', 0, 0, 'lindareyes', '2003-12-29', 'lindar', '2003-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS965725255039', 'Deborah Aguilar', 0, '+1 718-806-6377', 2, '537746082855173678', '835 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1986-02-22', 0, 0, 'daguilar3', '2003-01-29', 'deborahaguilar51', '2001-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS578321225653', '孙致远', 0, '+1 330-033-6664', 3, '302549040786017030', '148 Collier Road Apt 11, Akron, OH 44320, United States', '1991-04-08', 0, 0, 'szhiyu', '2008-11-19', 'suz', '2002-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS794562505208', '木村聖子', 0, '+86 769-2434-8125', 3, '292664765674263937', '中国东莞环区南街二巷295号37楼', '1988-06-13', 0, 0, 'seikokimura', '2004-06-18', 'skimur5', '2020-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS499978986525', '加藤大和', 1, '+81 52-228-3628', 1, '338728826081369712', '日本なごやし瑞穂区河岸町四丁目20番10号40号室', '1985-12-16', 0, 0, 'ykat', '2020-09-30', 'yamatokato', '2015-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS659741965244', '萧云熙', 0, '+86 20-921-2474', 3, '671412862162540386', 'No.13 building, 898 Tianhe Road, Tianhe District, Guangzhou, China', '1994-02-16', 0, 0, 'xiaoyunxi', '2019-08-02', 'xiyunxi', '2020-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS025253436993', 'Marilyn Edwards', 0, '+44 (1223) 71 9123', 3, '727948300401424813', 'No.33 Main building, 526 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-11-14', 0, 0, 'maredwards1994', '2020-01-14', 'edwards73', '2004-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS062453680313', '鐘慧嫻', 0, '+81 70-1597-2236', 0, '444880946718275084', '8-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-04-29', 0, 0, 'chungwaihan', '2014-06-24', 'waihanch525', '2010-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS842105239739', 'Anthony Mills', 1, '+44 (1865) 19 7135', 0, '432140188827100342', 'No.29 Main building, 638 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-11-26', 0, 0, 'amills', '2020-11-28', 'anthonymill901', '2005-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS375371540550', 'Leroy Hernandez', 1, '+1 213-670-2466', 1, '957570002725169550', '702 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1997-07-22', 0, 0, 'hernandezleroy', '2007-07-14', 'herl', '2015-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS071523642706', 'Timothy Hunt', 1, '+44 7064 906164', 1, '030978176375157770', 'Block 45, 693 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-10-04', 0, 0, 'huntt1971', '2011-09-01', 'timhun715', '2016-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS417380515934', '卢宇宁', 0, '+86 189-5833-1125', 1, '408839578743464076', 'No.30 building, 976 Kengmei 15th Alley, Dongguan, China', '1994-05-30', 0, 0, 'yulu', '2017-12-08', 'yunil1', '2017-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS388578488424', '崔詩君', 0, '+44 5651 521331', 0, '877021755816742810', 'No.6 Main building, 731 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-02-10', 0, 0, 'szekwanc513', '2003-08-06', 'choiszek', '2015-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS091351599289', '冯岚', 0, '+86 755-764-6184', 2, '975998375656731714', '中国深圳福田区景田东一街158号27楼', '1996-09-15', 0, 0, 'feng9', '2015-08-24', 'lanf52', '2017-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS400470168867', '韦子韬', 0, '+81 70-4642-2511', 2, '085084293495622580', '日本札幌白石区菊水三条五丁目4番17号25号室', '1987-10-01', 0, 0, 'zwei', '2007-12-06', 'zwe', '2018-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS187576633371', 'Angela Gutierrez', 0, '+1 312-497-6881', 1, '224808482711816149', '545 Pedway Apt 48, Chicago, IL 60601, United States', '1992-05-28', 0, 0, 'gutierrezangela', '2019-12-08', 'gutierrezangela620', '2015-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS080132761280', 'Mary Evans', 1, '+81 66-116-7669', 3, '096312155326992436', '日本おおさかし西成区出城一丁目1番6号2階', '1990-08-18', 0, 0, 'mary606', '2019-11-27', 'maeva', '2002-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS665318431594', '加藤拓哉', 1, '+81 11-370-8453', 2, '710981265985665880', 'Rm. 20, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-06-11', 0, 0, 'ktakuya', '2011-11-19', 'katot', '2019-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS146637278940', '柴田美咲', 1, '+86 162-9401-5837', 0, '702926338743362112', '中国深圳罗湖区田贝一路333号40室', '1991-11-07', 0, 0, 'shmisaki', '2020-01-03', 'mis4', '2010-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS257455238636', 'Gerald Daniels', 0, '+44 7772 382171', 3, '832537108169182243', 'Block 16, 409 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-05-01', 0, 0, 'gerald2017', '2010-09-19', 'daniels4', '2014-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS765177580650', '邱嘉伦', 1, '+81 70-1586-3581', 1, '481860817811229629', '日本札幌中央区宮の森四条六丁目1番4号43号室', '1996-06-06', 0, 0, 'jialuqiu', '2006-10-21', 'qiujialun61', '2020-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS794457105660', '萬家文', 1, '+81 11-342-0851', 2, '007228482233712565', '日本札幌厚別区上野幌一条二丁目1番13号16号室', '1999-03-01', 0, 0, 'mkm61', '2002-01-22', 'mengkm', '2013-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS090237434005', '梁子韬', 0, '+81 90-7427-5341', 2, '580625967152339606', '日本おおさかし西成区天神ノ森二丁目1番16号22階', '1995-10-03', 0, 0, 'zliang', '2018-12-29', 'zitliang', '2020-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS307042987912', '官祖兒', 0, '+44 7094 194801', 3, '638674825214759308', 'No.16 Main building, 235 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-24', 0, 0, 'choyee6', '2019-10-15', 'kocy', '2021-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS323456911597', '蔡安琪', 0, '+44 5809 336959', 2, '939736498909957510', 'Block 46, 438 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-01-07', 0, 0, 'okchoi', '2011-08-20', 'okch1956', '2018-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS011171832687', 'Alfred Mendez', 0, '+86 158-4906-1135', 3, '536398294164485367', '中国成都市成华区双庆路34号13号楼', '1995-03-14', 0, 0, 'mendez07', '2021-03-09', 'meal', '2009-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS351070842856', '島田海斗', 0, '+86 178-8325-7869', 2, '610099714518665375', '中国中山京华商圈华夏街388号4栋', '1993-09-21', 0, 0, 'kshima19', '2003-10-31', 'shik8', '2012-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS889011129501', 'Eugene Nguyen', 0, '+86 142-0940-7595', 3, '267786998452313098', '中国成都市成华区二仙桥东三路453号3栋', '1987-03-12', 0, 0, 'eugenenguyen11', '2006-05-20', 'ngeu', '2005-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS134324436159', 'Alexander Taylor', 0, '+86 755-660-5118', 1, '280559477666964582', '中国深圳龙岗区布吉镇西环路298号华润大厦13室', '1998-02-26', 0, 0, 'aletaylor', '2013-04-03', 'tayloa208', '2007-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS337646813530', '杉山拓哉', 1, '+86 157-6332-1624', 2, '066221544383407825', '中国深圳龙岗区学园一巷530号18室', '1998-02-09', 0, 0, 'sugiyamatakuya1027', '2015-01-09', 'sugiyamatakuya', '2019-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS266596528065', 'Bobby Cruz', 1, '+44 (116) 693 8664', 1, '114233369969047114', 'Unit 39, Oxford Eco Centre, 117 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-26', 0, 0, 'bobbycruz', '2001-05-18', 'cruz5', '2010-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS565074497010', 'Troy Gomez', 0, '+81 90-1314-4846', 1, '594945779361325361', 'Rm. 17, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-04-19', 0, 0, 'gometroy2', '2018-04-06', 'troy717', '2003-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS895376343018', '史杰宏', 1, '+44 (20) 1569 0703', 2, '645992383123406386', 'Flat 2, 722 Hanover Street, London, W1S 1YD, United Kingdom', '1989-02-21', 0, 0, 'sjieh', '2017-12-04', 'jiehongshi18', '2020-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS689844175894', 'George Fisher', 0, '+44 7444 542402', 2, '481472538948583906', 'Block 32, 997 New Street, Birmingham, B2 4DB, United Kingdom', '1989-08-20', 0, 0, 'fig', '2011-08-23', 'georgefishe74', '2003-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS959243787723', 'Mark Holmes', 1, '+86 10-5409-4027', 1, '975417672375441655', '22F, 225 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-03-05', 0, 0, 'mark03', '2001-01-14', 'markholmes511', '2007-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS961843846719', 'Jeffery Peterson', 1, '+44 (1223) 12 2593', 3, '497310211946590236', 'Unit 41, Oxford Eco Centre, 292 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-09-01', 0, 0, 'pjeffery', '2020-04-12', 'petj206', '2015-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS848748261963', 'Edward Wilson', 1, '+86 199-2995-9225', 2, '880249834829161980', '中国深圳龙岗区布吉镇西环路363号华润大厦11室', '1998-11-23', 0, 0, 'edward17', '2018-11-22', 'edwwi203', '2017-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS813461551556', '洪永權', 0, '+86 180-7236-9567', 0, '459569936983507942', '中国深圳龙岗区学园一巷290号36栋', '1992-08-04', 0, 0, 'winhung', '2008-09-07', 'huwingkuen', '2007-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS814423740134', 'Michael Rose', 0, '+1 213-926-5729', 4, '003949568543486177', '215 Figueroa Street Suite 44, Los Angeles, CA 90037, United States', '1997-11-13', 0, 0, 'rosm', '2008-01-07', 'microse831', '2008-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS739407933541', '佘梓軒', 0, '+81 66-603-1223', 0, '877662119071411250', 'Rm. 18, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-01-21', 0, 0, 'sheh1029', '2005-02-01', 'thshe', '2013-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS355141656666', '韓俊宇', 1, '+81 66-756-9158', 3, '439343295760428609', '日本おおさかし西成区出城一丁目1番3号49号室', '1997-05-07', 0, 0, 'hachunyu', '2008-09-18', 'han3', '2006-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS417421261515', '大野愛梨', 0, '+81 90-9767-5273', 3, '963081349352420022', 'Rm. 4, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-04-29', 0, 0, 'onoa2', '2007-03-30', 'oairi', '2006-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS037176221904', '石田架純', 1, '+44 7942 374912', 1, '880272143915412806', 'No.14 Main building, 899 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-02-11', 0, 0, 'ik1', '2019-03-03', 'isk', '2011-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS289528924299', 'Carrie Washington', 0, '+86 28-897-3164', 1, '997534198621367862', 'Room 36, 688 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-11-14', 0, 0, 'carriwashington', '2016-12-25', 'carriewashington', '2004-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS548211984143', '李家輝', 1, '+86 184-5100-7260', 1, '540419905317291646', '中国上海市黄浦区淮海中路297号35栋', '1997-06-29', 0, 0, 'kflee2', '2004-08-30', 'leekf808', '2010-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS307165440670', '中野愛梨', 1, '+86 28-4382-0834', 1, '713477601229684748', 'No.19 building, No. 215, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-03-30', 0, 0, 'nakai', '2021-12-08', 'nakanoai', '2017-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS164972196860', '许安琪', 0, '+81 90-6494-4332', 4, '797332197403379648', '45-kai, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-04', 0, 0, 'anxu416', '2005-09-17', 'anqi5', '2006-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS927882862707', '高田舞', 1, '+81 11-872-3685', 2, '806593566508808042', '日本札幌中央区宮の森四条六丁目1番15号26階', '1997-02-11', 0, 0, 'mai67', '2010-07-08', 'maitak4', '2006-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS102946586227', '小林悠人', 0, '+81 70-0618-3614', 4, '814416754990851914', '日本札幌白石区菊水三条五丁目4番16号34階', '1991-01-30', 0, 0, 'yuto07', '2008-06-23', 'kobayashiyut', '2001-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS752494104035', 'Peter Hunt', 1, '+44 (1223) 30 7619', 3, '514387473535980087', 'Block 28, 969 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1985-06-09', 0, 0, 'pethun', '2021-10-03', 'pethunt6', '2010-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS490231569698', '内田美緒', 1, '+86 158-0518-9832', 1, '048543783166935392', 'No.42 building, 657 Shennan Ave, Futian District, Shenzhen, China', '1994-01-17', 0, 0, 'miouchid3', '2018-03-23', 'miouchid', '2004-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS834145844288', '曹淑怡', 1, '+81 66-622-3434', 0, '528137174268283071', '日本おおさかし西成区天神ノ森二丁目1番11号1階', '1998-05-17', 0, 0, 'sukyc', '2001-09-30', 'sycho4', '2002-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS225810693349', '尹睿', 1, '+86 148-3589-7546', 2, '569659318702367398', 'No.26 building, 228 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-07-17', 0, 0, 'ruyin', '2002-06-06', 'ruiy', '2004-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS452653778280', '姜朝偉', 0, '+81 74-958-5478', 3, '417783194902411655', '日本ならし学園南三丁目9番10号34階', '1986-06-09', 0, 0, 'chang1220', '2007-05-02', 'chachiuwai', '2002-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS579898661153', '孟詩涵', 1, '+81 3-5298-3778', 3, '063973737451205349', '日本東京港区東新橋一丁目5番10号6号室', '1987-01-11', 0, 0, 'msh', '2005-02-16', 'mengshi2013', '2011-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS365731920651', '朱玲玲', 0, '+81 11-763-4035', 1, '205491403390773969', '日本札幌清田区真栄四条五丁目19番17号12階', '1997-03-13', 0, 0, 'llchu7', '2010-07-15', 'chulingling', '2001-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS895281707932', 'Jimmy Carter', 1, '+81 80-0246-6818', 3, '065726519904311066', '日本札幌白石区菊水三条五丁目4番18号8階', '1994-02-13', 0, 0, 'carterjimmy53', '2017-07-28', 'jimmyc', '2007-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS408267181991', 'Jennifer James', 1, '+81 3-5927-8047', 1, '411254015978741506', '日本東京品川区東五反田五丁目2番8号29階', '1997-10-02', 0, 0, 'jej9', '2001-07-05', 'james3', '2009-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS831273437729', 'Ricky West', 1, '+86 760-5095-5096', 3, '514253685023828125', 'Room 31, 74 Lefeng 6th Rd, Zhongshan, China', '1991-01-17', 0, 0, 'ricky7', '2016-08-25', 'ricky10', '2016-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS447403483591', '徐震南', 1, '+1 312-477-4424', 3, '751648928799727070', '307 Pedway Suite 47, Chicago, IL 60601, United States', '1991-04-02', 0, 0, 'xuz10', '2014-01-06', 'xuzhennan', '2014-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS505624582872', '韦璐', 1, '+81 80-6517-4021', 1, '301746372369071350', 'Rm. 40, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-01-25', 0, 0, 'weilu8', '2005-12-27', 'lu708', '2021-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS146524704275', '福田美緒', 0, '+86 148-5935-4286', 4, '619045513148559159', '中国中山天河区大信商圈大信南路967号华润大厦25室', '1991-10-30', 0, 0, 'fukudam', '2008-12-28', 'fukudam1114', '2012-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS744435099127', '松田桜', 1, '+86 136-4390-6367', 1, '366455362941698569', '34F, 740 Shanhu Rd, Dongguan, China', '1997-09-21', 0, 0, 'sakmatsuda824', '2006-10-11', 'sakura44', '2004-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS200594679152', '王慧珊', 1, '+44 (20) 7720 6164', 1, '936938113825098784', 'Block 28, 906 Hanover Street, London, W1S 1YD, United Kingdom', '1995-11-22', 0, 0, 'wswong', '2016-07-19', 'wswong1126', '2019-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS645485569361', '于云熙', 0, '+44 (151) 392 0650', 3, '828185912012807160', 'Flat 11, 953 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-11-22', 0, 0, 'yuyunxi10', '2013-01-01', 'yuy3', '2015-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS923926240467', 'Jeffrey Jones', 0, '+86 10-5546-3239', 0, '824765158111541225', 'No.3 building, 948 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-08-15', 0, 0, 'jeffj3', '2015-12-21', 'jeffjone2016', '2003-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS571390501498', '韓俊宇', 0, '+81 11-363-9974', 3, '999973663323495534', 'Rm. 6, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-04-23', 0, 0, 'chunyuhan66', '2020-06-14', 'hanchunyu', '2007-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS733613393802', '潘云熙', 1, '+81 90-3816-5817', 3, '502417783379856956', '19-kai, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-03-14', 0, 0, 'pan321', '2011-07-22', 'pany', '2005-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS317279774254', '马嘉伦', 0, '+44 5793 917506', 2, '416288124005341934', 'Flat 9, 295 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-09-28', 0, 0, 'jialun75', '2018-10-20', 'jialunma531', '2004-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS319048746956', '車富城', 1, '+81 66-047-5166', 2, '949999454377143504', 'Rm. 19, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-01-25', 0, 0, 'fushing7', '2007-07-31', 'che02', '2008-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS893830126829', '樂潤發', 0, '+86 20-8619-3130', 1, '486012723233618757', 'No.31 building, 13 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-03-22', 0, 0, 'lokyunfat62', '2017-12-24', 'loyf', '2003-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS780621743282', '姜杰宏', 1, '+81 52-354-6797', 1, '416845670476987427', '日本なごやし北区楠味鋺三丁目80番1号35階', '1996-10-14', 0, 0, 'jji48', '2002-06-14', 'jiangji57', '2015-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS093331775648', 'Carolyn Gardner', 0, '+44 (1865) 69 3623', 3, '793654395860191951', 'Block 48, 104 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-01-04', 0, 0, 'cgar', '2002-07-29', 'cag1206', '2008-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS143271565772', '薛詠詩', 1, '+1 718-602-5985', 3, '458385751099458437', '771 Bergen St Apartment 32, Brooklyn, NY 11217, United States', '1998-11-23', 0, 0, 'wingszesit', '2016-01-14', 'wingsze79', '2004-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS491886728373', 'Annie Lee', 0, '+44 (1223) 55 3440', 0, '241073278599039350', 'Flat 12, 839 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-03-14', 0, 0, 'annie10', '2003-07-19', 'leea7', '2021-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS616351005574', '中森湊', 1, '+44 (1223) 69 3621', 4, '623433896966651296', 'Flat 22, 496 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-07-21', 0, 0, 'nakamoriminato1', '2011-08-29', 'mn4', '2018-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS281680283735', '山口樹', 1, '+44 (1223) 30 0197', 2, '562365360883031683', 'Flat 16, 211 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-06-19', 0, 0, 'itsukiy', '2012-05-19', 'yamaitsuki', '2008-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS516667639458', 'Eric Lopez', 0, '+1 213-105-1964', 4, '469046122071055507', '495 S Broadway Suite 30, Los Angeles, CA 90015, United States', '1999-03-04', 0, 0, 'elopez', '2012-08-21', 'elopez', '2013-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS849385203276', '侯子异', 1, '+81 3-8740-5628', 2, '091918038879000191', '日本東京中央区銀座三丁目12番3号19階', '1997-12-07', 0, 0, 'zho', '2012-09-09', 'hziyi70', '2008-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS142834206352', 'Rebecca Brooks', 1, '+44 5082 754783', 4, '394548640750848429', 'Block 2, 182 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-11-19', 0, 0, 'rb7', '2000-12-28', 'rebecbro4', '2011-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS299223273127', 'Danielle Griffin', 0, '+44 (20) 8771 3103', 4, '922101881222291560', 'Block 49, 549 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-07', 0, 0, 'danielle1994', '2008-12-19', 'griffin8', '2013-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS592782105551', 'Theresa Wilson', 1, '+1 718-079-2308', 3, '396095539359630835', '910 Bergen St Apt 24, Brooklyn, NY 11217, United States', '1989-08-24', 0, 0, 'wthe', '2016-07-12', 'wilson1004', '2019-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS433936943844', '元國榮', 1, '+81 11-775-7886', 0, '998719721332840523', '1F, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-11-30', 0, 0, 'yukw', '2005-10-28', 'yuenkwo', '2010-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS034304365095', 'Curtis Chen', 1, '+44 7908 364477', 2, '027990067882931276', 'No.43 Main building, 780 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-10-23', 0, 0, 'chencurtis3', '2004-07-15', 'chencurtis10', '2020-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS804640585647', '向岚', 1, '+81 3-3285-8027', 3, '118633416829472529', '30F, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1998-06-23', 0, 0, 'xianlan', '2004-07-13', 'lan4', '2000-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS300688399938', '邱家玲', 0, '+1 838-768-9734', 1, '858487140143509976', '347 Broadway Apartment 40, Albany, NY 12207, United States', '1992-02-08', 0, 0, 'kalingyau00', '2019-07-18', 'yaukaling4', '2018-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS345967191428', '近藤葉月', 0, '+86 760-8304-8930', 1, '990469692888327659', 'Room 44, CR Building, 25 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-05-21', 0, 0, 'kondo8', '2007-04-20', 'hazuki8', '2015-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS667605787679', '程璐', 1, '+81 66-649-6876', 1, '408188793084311797', '45F, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1987-02-27', 0, 0, 'lucheng9', '2012-06-05', 'lucheng', '2017-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS687505246810', '蕭天樂', 1, '+1 312-059-7841', 0, '757621517735012558', '316 Rush Street Suite 36, Chicago, IL 60611, United States', '1986-12-03', 0, 0, 'tinloks', '2003-06-26', 'siutinlok', '2022-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS623979728612', '沈岚', 0, '+44 (1865) 94 8601', 2, '911704282451828012', 'Unit 45, Oxford Eco Centre, 330 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-04-03', 0, 0, 'lanshen4', '2011-05-27', 'lan1012', '2009-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS938906276337', '王俊宇', 1, '+1 212-656-3708', 4, '205875935937160135', '262 Bank Street Apt 7, New York, NY 10014, United States', '1997-01-04', 0, 0, 'chunyuwon', '2015-10-14', 'wong50', '2015-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS299493201803', '胡子异', 0, '+86 136-6147-9519', 3, '210052109806599588', '中国中山紫马岭商圈中山五路447号11楼', '1988-06-14', 0, 0, 'ziyi81', '2011-07-19', 'zihu', '2003-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS902177073925', 'Margaret Tran', 0, '+1 212-327-9440', 0, '561601022439405637', '108 Wooster Street Apartment 42, New York, NY 10012, United States', '1996-04-23', 0, 0, 'margarettran', '2000-06-16', 'tmarga', '2018-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS037419865427', 'Arthur Gonzalez', 1, '+81 11-419-9065', 2, '681279415139336910', '5F, 5-19-4 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-09-20', 0, 0, 'arthurgonzalez', '2008-07-12', 'arthugonzalez', '2001-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS825880023753', '蘇家玲', 0, '+1 312-203-4586', 4, '739970030853517973', '690 Pedway Apt 32, Chicago, IL 60601, United States', '1988-05-20', 0, 0, 'sokali', '2017-02-08', 'kaso', '2008-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS271378021951', '袁國賢', 1, '+1 212-609-3774', 1, '191039657947555482', '52 Wooster Street Apartment 35, New York, NY 10012, United States', '1989-08-13', 0, 0, 'kwokyiny54', '2012-01-23', 'kwokyiny', '2014-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS171068314966', '郭曉彤', 1, '+86 168-6000-7557', 1, '054810875530572146', 'No.3 building, 805 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1997-01-25', 0, 0, 'hiutungkw10', '2003-09-20', 'hiutungkwo3', '2002-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS565961551516', '桜井詩乃', 0, '+81 74-757-0321', 4, '494186942689927518', '2-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-09-05', 0, 0, 'shsakurai', '2000-03-24', 'ssakur6', '2010-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS067013272551', '桜井彩乃', 1, '+86 755-552-5236', 4, '489431614322040510', 'Room 2, CR Building, 258 Jingtian East 1st St, Futian District, Shenzhen, China', '1985-11-24', 0, 0, 'sakuraia', '2002-05-14', 'aysaku', '2012-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS954986428012', '石田蒼士', 0, '+1 213-350-4573', 4, '727732871012994724', '41 Sky Way Suite 32, Los Angeles, CA 90043, United States', '1985-01-01', 0, 0, 'ishidaos', '2010-11-30', 'aoishida', '2005-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS028156898789', '龙子异', 0, '+44 (121) 464 5906', 3, '872816823623545038', 'Unit 35, Oxford Eco Centre, 837 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-08-22', 0, 0, 'ziylong', '2009-06-25', 'long01', '2012-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS220353248087', '加藤蒼士', 0, '+44 (116) 534 4378', 2, '011152526631382364', 'Block 35, 174 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-10-30', 0, 0, 'akato616', '2013-01-25', 'kaaoshi', '2000-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS344826470327', '戚學友', 0, '+1 213-757-7718', 3, '655440850177235685', '202 Figueroa Street Apt 33, Los Angeles, CA 90037, United States', '1988-02-29', 0, 0, 'hychic', '2018-03-10', 'hychic1967', '2002-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS153883538890', '李晓明', 0, '+86 190-4821-3472', 3, '163909730562697790', '中国北京市东城区东单王府井东街836号华润大厦34室', '1989-02-06', 0, 0, 'lixiaoming', '2011-12-19', 'xiaomingli', '2010-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS993074553444', '汪震南', 1, '+81 90-8142-9122', 1, '525556523335661425', '日本東京中央区銀座三丁目12番3号26階', '1997-06-18', 0, 0, 'zhew1026', '2009-03-13', 'zhenwang6', '2020-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS996997213269', 'Carlos Walker', 1, '+81 52-683-0546', 1, '990632174657813712', '日本なごやし北区楠味鋺三丁目80番5号43階', '1991-04-15', 0, 0, 'carlowalker', '2013-06-20', 'carlos9', '2016-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS595383739963', 'Aaron James', 1, '+86 769-3596-4717', 0, '074549490405680009', '35F, 505 Kengmei 15th Alley, Dongguan, China', '1985-09-18', 0, 0, 'jamesaaron', '2003-07-10', 'jamesaaron1994', '2018-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS078696254837', '范子韬', 1, '+86 177-2943-1432', 3, '960787540563531156', '中国东莞东泰五街97号13楼', '1985-12-14', 0, 0, 'zfan728', '2020-12-14', 'zitfan', '2015-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS134620500140', 'Marilyn Collins', 1, '+81 74-127-5603', 4, '035504993780025475', '32-kai, 1-7-12 Saidaiji Akodacho, Nara, Japan', '1986-08-22', 0, 0, 'collmarilyn2', '2011-12-11', 'marilync5', '2021-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS639714781543', 'Bruce Watson', 1, '+86 164-3564-7061', 2, '197771848331101688', '中国深圳龙岗区布吉镇西环路277号20号楼', '1987-04-15', 0, 0, 'watsbruce', '2000-01-12', 'watsbruce320', '2011-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS349035366340', '元霆鋒', 1, '+44 (161) 513 3311', 2, '513325503697963401', 'No.5 Main building, 676 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-10-27', 0, 0, 'tfyuen68', '2014-06-23', 'tingfungyuen', '2021-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS243324052325', '朱詩涵', 0, '+86 28-9517-0861', 1, '626624836974822819', '中国成都市锦江区人民南路四段421号26室', '1987-07-06', 0, 0, 'zhush1987', '2017-04-01', 'szhu', '2015-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS871397642902', 'Nicole Porter', 1, '+1 718-251-0752', 2, '478956803314845235', '621 Nostrand Ave Apartment 8, Brooklyn, NY 11216, United States', '1998-12-28', 0, 0, 'pnicole', '2021-03-06', 'porternicol3', '2006-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS439261083379', '黃國榮', 1, '+86 10-607-5207', 2, '798715825536128637', 'No.15 building, 856 West Chang''an Avenue, Xicheng District, Beijing, China', '1987-05-17', 0, 0, 'wong52', '2014-05-31', 'wonkw', '2010-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS749513184277', '横山聖子', 1, '+81 3-3740-2993', 1, '790568601012832029', 'Rm. 32, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-04-19', 0, 0, 'seyoko', '2001-02-03', 'yokoyama1001', '2012-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS780162176067', '向岚', 0, '+86 10-7810-0384', 1, '832434975076282828', '中国北京市海淀区清河中街68号261号25号楼', '1996-04-15', 0, 0, 'lanxiang', '2004-03-18', 'xiang9', '2018-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS078585096202', '唐嘉伦', 0, '+81 66-302-1908', 3, '258447759774065819', '日本おおさかし西成区出城一丁目1番16号36号室', '1987-05-28', 0, 0, 'tangjial', '2015-04-29', 'tangj90', '2018-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS521580844531', 'Sharon Mills', 1, '+81 11-037-3006', 3, '470879573513937264', '日本札幌厚別区上野幌一条二丁目1番1号1階', '1995-01-03', 0, 0, 'sharon8', '2019-05-12', 'shamills', '2017-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS393706182133', '杉山葉月', 0, '+86 21-0666-2145', 1, '416031417433516613', 'No.50 building, 346 Ganlan Rd, Pudong, Shanghai, China', '1996-09-17', 0, 0, 'sugiyamah', '2006-01-31', 'sugiyama718', '2019-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS497841441122', '胡嘉伦', 0, '+1 838-892-5501', 4, '633064496970889291', '559 Central Avenue Apartment 7, Albany, NY 12206, United States', '1997-02-23', 0, 0, 'hujialu2', '2000-06-10', 'hu9', '2011-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS300243121014', '村田優奈', 1, '+81 11-724-0150', 1, '815798084424704756', 'Rm. 31, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-06-11', 0, 0, 'murata7', '2001-11-14', 'muyuna', '2017-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS238283376314', '上田百恵', 1, '+86 148-4477-9272', 1, '893034571062082612', 'No.28 building, 65 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-02-04', 0, 0, 'momued', '2009-09-15', 'momoeueda2', '2005-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS050128907037', 'Jacob Fernandez', 0, '+81 70-6482-7717', 2, '133238851181449094', '日本ならし大和郡山市本庄町一丁目1番7号47階', '1995-09-28', 0, 0, 'ferjacob', '2002-04-11', 'jacobfern', '2020-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS448866463284', 'Barbara Foster', 1, '+86 168-3190-4212', 0, '171019939597476665', '中国中山紫马岭商圈中山五路448号42栋', '1986-08-19', 0, 0, 'barbara330', '2007-04-28', 'barbara3', '2006-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS866195319438', '福田蒼士', 1, '+44 (151) 919 0217', 4, '248227241694065554', 'Flat 32, 780 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-05-20', 0, 0, 'fukudaa6', '2005-05-18', 'aoshifuku', '2019-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS384003181175', 'Kathryn Grant', 0, '+81 52-740-4916', 1, '996459523572972208', '48F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1985-10-04', 0, 0, 'grantkath94', '2013-01-14', 'katgrant525', '2008-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS321818563777', '有村聖子', 0, '+86 148-0436-4812', 3, '421831172817390874', '中国广州市白云区小坪东路270号22楼', '1986-01-22', 0, 0, 'arimusei', '2020-09-08', 'arimuse', '2018-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS131776974943', 'Marvin Mitchell', 0, '+81 90-9601-5389', 2, '628057849507258538', '日本なごやし北区楠味鋺三丁目80番9号32号室', '1994-05-29', 0, 0, 'marvinmitchell', '2021-07-08', 'marvinmit1', '2002-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS136858448145', '贺詩涵', 1, '+44 (20) 8321 4736', 4, '134243948869344455', 'Flat 12, 590 Pollen Street, London, W1S 1NG, United Kingdom', '1994-08-06', 0, 0, 'hs9', '2020-09-26', 'she', '2011-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS691981980493', '汪云熙', 1, '+81 3-6585-4107', 1, '264505038843383621', '日本東京千代田区丸の内一丁目6番11号36階', '1995-08-30', 0, 0, 'wyunxi928', '2001-12-28', 'wany', '2009-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS026060346904', '谷富城', 1, '+81 52-191-3074', 2, '928444784895189042', '日本なごやし瑞穂区河岸町四丁目20番18号27階', '1994-03-21', 0, 0, 'fsko', '2015-12-02', 'fushingk', '2010-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS425405905496', 'Jamie Nelson', 1, '+1 212-407-2149', 2, '884697036083851116', '287 Fifth Avenue Suite 49, New York, NY 10017, United States', '1998-09-18', 0, 0, 'nelsjamie9', '2002-01-06', 'jamien5', '2011-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS235984230332', '増田翼', 1, '+81 3-3297-1455', 1, '123561684287973530', '日本東京品川区東五反田五丁目2番8号20階', '1990-05-05', 0, 0, 'tsmasuda8', '2004-01-14', 'mastsubasa', '2017-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS641924181763', '董震南', 1, '+44 5313 219152', 1, '973468679687249025', 'Flat 46, 528 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-12-31', 0, 0, 'dong929', '2017-03-04', 'dongzhennan', '2001-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS975192570674', 'Ryan Jenkins', 1, '+86 21-174-6857', 1, '446290526016127568', 'Room 45, 68 Binchuan Rd, Minhang District, Shanghai, China', '1988-09-25', 0, 0, 'jenkins1', '2003-01-07', 'jryan', '2004-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS317663782285', '伊藤玲奈', 0, '+81 3-4139-1805', 3, '028571548738108404', '5F, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-06-08', 0, 0, 'renito', '2010-05-02', 'ito68', '2006-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS836847529952', 'Barry Gonzales', 1, '+86 159-1465-1367', 2, '592680475907477612', '中国深圳福田区深南大道791号5楼', '1987-08-11', 0, 0, 'gonzba', '2003-01-02', 'gonzalesb2', '2011-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS955817718250', 'Bobby Baker', 0, '+44 (121) 795 5569', 4, '109178829282108561', 'Unit 18, Oxford Eco Centre, 129 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-12-25', 0, 0, 'bakerbobby', '2005-08-12', 'baker2', '2016-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS979916803988', '朱安琪', 1, '+86 760-248-5658', 1, '009603852426150940', '中国中山天河区大信商圈大信南路557号46楼', '1991-02-07', 0, 0, 'azhu601', '2005-11-09', 'zhu415', '2007-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS147685466299', '井上美月', 1, '+81 90-0295-3308', 1, '526577214266218156', '1F, 6-1-18, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-10-27', 0, 0, 'inouemits', '2021-12-09', 'mii', '2018-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS339028699521', '郭小慧', 0, '+86 178-2101-8076', 1, '603061770600401704', '中国成都市成华区玉双路6号403号1室', '1986-08-26', 0, 0, 'siuwaikwok7', '2011-10-04', 'kwoksiuwai', '2019-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS112652358767', 'Heather Jones', 0, '+81 80-7775-4207', 3, '797814525772667789', '日本ならし大和郡山市本庄町一丁目1番4号31階', '1997-07-26', 0, 0, 'heather1029', '2005-12-25', 'hjo', '2014-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS105927398013', '駱永發', 0, '+81 74-208-4785', 1, '050119058807487459', '日本ならし学園南三丁目9番18号5階', '1985-11-06', 0, 0, 'wfl', '2022-03-05', 'wingfatlo', '2014-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS040504128800', 'Jimmy Lee', 1, '+44 5368 042272', 2, '599991655277405900', 'No.6 Main building, 339 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-07-15', 0, 0, 'leejimmy', '2005-06-10', 'leejimmy1', '2012-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS719331976637', '贾睿', 0, '+86 20-902-1054', 1, '437143306449670355', '中国广州市白云区小坪东路418号38号楼', '1998-07-10', 0, 0, 'jia127', '2021-11-20', 'ruij', '2017-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS338434567100', '向浩然', 1, '+81 52-344-4936', 3, '540233242996224643', '2F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-02-06', 0, 0, 'hoyinheun', '2003-01-21', 'hoyin3', '2016-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS871886174837', '郝嘉伦', 0, '+1 213-380-3533', 2, '611021877989530536', '836 S Broadway Suite 15, Los Angeles, CA 90015, United States', '1997-12-16', 0, 0, 'jialunh1215', '2019-08-11', 'haoj117', '2011-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS461131226582', '車志遠', 1, '+86 10-4364-7828', 1, '505291126113624523', '中国北京市西城区西長安街231号42室', '1985-03-15', 0, 0, 'cyche', '2004-08-11', 'che324', '2008-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS132340523668', '范晓明', 1, '+1 330-269-7901', 3, '612445898631849077', '560 Fern Street 3rd Floor, Akron, OH 44307, United States', '1998-02-08', 0, 0, 'xiaomfan6', '2014-05-13', 'xiaomfa', '2011-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS377342407269', '高田樹', 0, '+81 11-534-1825', 2, '408110229271171898', '日本札幌清田区真栄四条五丁目19番8号12階', '1990-02-06', 0, 0, 'takadait', '2013-02-22', 'takitsuki', '2016-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS352665956128', '渡辺湊', 0, '+44 7267 730266', 1, '328865962831241676', 'Block 41, 984 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-07-12', 0, 0, 'minato9', '2019-10-31', 'sato9', '2000-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS827330427768', 'Glenn West', 0, '+86 21-419-6216', 1, '021569615517093292', '中国上海市浦东新区健祥路451号华润大厦42室', '1994-01-21', 0, 0, 'glennwe824', '2010-03-02', 'westg', '2004-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS013574852062', '彭小慧', 1, '+1 212-269-1015', 1, '110063914250311699', '788 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-10-19', 0, 0, 'psiuwai216', '2005-05-28', 'swpan66', '2015-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS861993122494', 'James Wagner', 1, '+81 3-9749-0525', 1, '055069278530327979', '日本東京港区東新橋一丁目5番18号49号室', '1992-10-21', 0, 0, 'jameswa', '2019-04-29', 'wagnjames', '2006-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS087200073562', '何裕玲', 0, '+86 139-4802-9031', 2, '332131009515581089', '18F, 437 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-02-24', 0, 0, 'yuling829', '2021-12-05', 'hoyl5', '2021-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS422307740192', 'Judith Holmes', 1, '+86 162-5997-0861', 1, '812465379214168725', 'No.29 building, 206 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-12-21', 0, 0, 'holmesjudith3', '2021-02-12', 'hj1', '2000-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS390924381528', '柴田大地', 1, '+86 167-3006-2131', 3, '700557935537088948', '中国上海市浦东新区橄榄路33号42号楼', '1991-08-05', 0, 0, 'sdaichi8', '2008-11-09', 'shibatadaich', '2002-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS140055836687', '中川光莉', 1, '+1 212-342-0453', 2, '625020318343221838', '725 Canal Street Suite 7, New York, NY 10013, United States', '1994-06-28', 0, 0, 'hikna', '2021-09-18', 'hikanaka69', '2017-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS273026266007', '冯子韬', 0, '+44 5075 333362', 1, '996844296980173952', 'Flat 23, 189 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1991-05-29', 0, 0, 'fengzit4', '2014-01-05', 'zitaofeng6', '2010-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS704767002272', '酒井美緒', 0, '+81 90-0524-8348', 3, '323730244804763370', '日本おおさかし近江堂一丁目7番16号34階', '1995-01-09', 0, 0, 'mio90', '2012-08-07', 'miosakai', '2003-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS564944782310', '上田陽菜', 1, '+86 165-2413-1300', 2, '375496600431699702', '25F, 527 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-06-21', 0, 0, 'hiueda', '2007-05-27', 'uedahina81', '2000-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS397306360568', 'Clifford Harrison', 1, '+86 173-3461-0631', 4, '375116143659462125', 'No.29 building, 161 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-07-26', 0, 0, 'harrisoncli2', '2002-02-07', 'charri', '2014-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS823978478555', 'Henry Wells', 0, '+86 20-3847-2761', 0, '658043025523367947', '中国广州市天河区天河路57号华润大厦44室', '1992-06-09', 0, 0, 'henryw', '2014-10-13', 'henrywell', '2007-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS022884163468', '井上葵', 1, '+1 614-656-4603', 2, '602818712406733462', '659 Tremont Road Apartment 43, Columbus, GA 43212, United States', '1995-09-08', 0, 0, 'inaoi4', '2016-01-25', 'aoiinoue', '2012-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS244305650189', '羅天榮', 0, '+86 138-7308-8808', 3, '667743716236106673', 'No.27 building, 588 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-12-02', 0, 0, 'lotw00', '2016-08-18', 'lotw1985', '2015-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS440079153990', '佘志明', 1, '+81 66-731-4612', 3, '982475053681889258', '日本おおさかし平野区加美東四丁目9番2号1階', '1995-03-20', 0, 0, 'sheh717', '2000-06-24', 'chiming516', '2015-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS375850543158', '顧家強', 0, '+81 52-171-1316', 4, '037156496349173450', '日本なごやし北区楠味鋺三丁目80番17号25階', '1986-07-07', 0, 0, 'kukakeung', '2020-07-07', 'kukakeung', '2017-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS845079385915', '菅原健太', 1, '+81 74-541-5251', 2, '738416157519629621', 'Rm. 37, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1991-04-02', 0, 0, 'sugawkenta', '2011-09-20', 'sugawara111', '2003-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS471918925049', '田中光', 1, '+1 213-303-5567', 4, '295952763293789631', '59 Alameda Street Suite 46, Los Angeles, CA 90002, United States', '1985-04-15', 0, 0, 'htanaka3', '2014-02-11', 'tanakah', '2010-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS740324433639', '叶岚', 1, '+1 838-441-7240', 3, '200946850314437070', '519 Lark Street Apt 27, Albany, NY 12210, United States', '1995-12-17', 0, 0, 'lanye1105', '2005-10-20', 'lanye', '2013-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS271744985915', '蔡天樂', 0, '+81 74-092-4506', 1, '088685275362575647', '17F, 3-9-20 Gakuenminami, Nara, Japan', '1994-06-11', 0, 0, 'tinlok212', '2010-01-21', 'choitl1207', '2014-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS208923149203', 'Antonio Rodriguez', 1, '+81 90-8844-0131', 1, '524386683910097182', '日本ならし学園南三丁目9番7号13階', '1986-04-17', 0, 0, 'antoniorodri1009', '2014-01-02', 'rodrantonio', '2020-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS152243116967', 'Beverly Lewis', 1, '+86 28-8795-2172', 2, '253404496377245783', '中国成都市成华区二仙桥东三路869号华润大厦35室', '1991-08-05', 0, 0, 'lewisbe10', '2010-02-07', 'bevelew1207', '2015-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS865698410759', '周慧敏', 1, '+81 90-9706-9673', 0, '177321295305330370', '日本なごやし熱田区千年二丁目5番3号45階', '1995-01-30', 0, 0, 'chowwaiman', '2005-01-28', 'chowwm', '2012-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS925573010076', 'Cindy Bryant', 1, '+86 197-7461-1234', 2, '584233423558306165', 'No.40 building, 595 Huanqu South Street 2nd Alley, Dongguan, China', '1992-12-13', 0, 0, 'cbry', '2021-06-30', 'cindybr1', '2004-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS829123708110', '余致远', 0, '+86 184-8038-6596', 2, '146765237782905715', '中国深圳福田区景田东一街105号38号楼', '1990-12-24', 0, 0, 'zhiyu8', '2004-02-13', 'yuzhi10', '2009-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS861594799079', '薛震南', 0, '+81 70-2199-3222', 1, '331783550824791879', '日本東京千代田区丸の内一丁目6番1号6号室', '1986-10-24', 0, 0, 'xuez', '2019-02-15', 'zhennanxue', '2004-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS742742593739', '加藤海斗', 0, '+81 52-327-9386', 2, '549221869365540957', '5F, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1986-12-14', 0, 0, 'kak1970', '2008-07-28', 'kk2', '2018-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS077345569634', '陈岚', 0, '+44 (151) 038 9765', 2, '641650030743256798', 'Block 48, 517 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-08-22', 0, 0, 'chenla', '2017-01-07', 'chenlan', '2007-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS659179713576', '周云熙', 1, '+81 52-368-5974', 2, '847942623469195257', '22-kai, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1988-02-24', 0, 0, 'yunxi101', '2018-09-25', 'yzhou205', '2009-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS044444309099', '車安琪', 0, '+81 66-277-6035', 2, '772217340004778665', 'Rm. 38, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1992-01-09', 0, 0, 'cheok86', '2016-02-11', 'che13', '2012-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS938909198006', '譚惠妹', 1, '+86 183-9203-2987', 4, '385892234488888731', 'No.33 building, 744 Ganlan Rd, Pudong, Shanghai, China', '1987-01-30', 0, 0, 'tamhm', '2022-03-04', 'tahu', '2020-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS722044982759', '莫云熙', 1, '+86 20-549-9570', 1, '984811192366688307', 'Room 27, 156 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-10-14', 0, 0, 'yunximo', '2020-03-05', 'moyu416', '2008-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS106478581971', '向安琪', 1, '+86 28-3664-3016', 1, '961025877226895830', 'No.39 building, No. 288, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-10-23', 0, 0, 'heungok1966', '2021-10-28', 'heunonkay9', '2018-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS563363413449', 'Cindy Hayes', 0, '+81 80-4638-1960', 3, '115460900502023398', '日本ならし西大寺赤田町一丁目7番2号10階', '1988-06-24', 0, 0, 'hayesc', '2014-10-06', 'hayecindy', '2001-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS088277194040', 'Amber West', 0, '+86 138-5462-8055', 0, '522251716684322667', 'No.28 building, 465 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-11-22', 0, 0, 'west65', '2013-12-15', 'westamber', '2005-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS417890073221', '甘麗欣', 1, '+81 52-555-4610', 0, '488881604563622533', '4-kai, 3-19-7 Shimizu, Kita Ward, Nagoya, Japan', '1998-01-06', 0, 0, 'kamly', '2006-02-12', 'laiyan51', '2010-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS327559709257', '曾致远', 1, '+81 74-903-3500', 2, '051661098253186562', 'Rm. 45, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1992-01-10', 0, 0, 'zhizeng', '2003-05-28', 'zengzhi1012', '2021-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS242115343280', '吳詩君', 0, '+81 11-897-1212', 2, '486188734380352067', 'Rm. 11, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-03-07', 0, 0, 'ng11', '2020-10-02', 'ng2', '2019-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS314699389179', '孟秀英', 1, '+86 28-445-9292', 4, '494308212543149268', 'Room 36, No.996, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-11-28', 0, 0, 'xm4', '2002-08-31', 'meng00', '2016-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS481883617522', '林思妤', 0, '+44 7952 068510', 0, '951753415764862011', 'Block 35, 201 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1992-09-26', 0, 0, 'sylam', '2008-11-06', 'lam5', '2006-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS239395224083', '姚璐', 1, '+44 (151) 680 9901', 2, '227705626341493086', 'Unit 23, Oxford Eco Centre, 296 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-05-24', 0, 0, 'yaolu', '2000-11-07', 'yaolu804', '2007-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS308404095496', '姜安琪', 0, '+81 80-2507-6932', 2, '916677325722779103', 'Rm. 23, 1-7-1 Omido, Higashiosaka, Osaka, Japan', '1992-05-02', 0, 0, 'okchang20', '2018-11-06', 'conkay', '2006-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS056119014823', 'Marilyn Sanders', 0, '+44 5108 828102', 4, '527927250374932400', 'Flat 49, 545 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-10-01', 0, 0, 'marisanders', '2005-01-22', 'marilynsanders', '2002-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS763818169453', '菊地百花', 0, '+86 760-5126-8410', 2, '781232338740151995', '24F, 789 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-01-20', 0, 0, 'momokakiku', '2005-06-30', 'kikumomoka', '2011-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS187329772460', '羅志明', 1, '+44 7490 727870', 1, '729190742999834226', 'Block 29, 509 Mosley St, Manchester, M2 3AQ, United Kingdom', '1988-04-14', 0, 0, 'locm', '2010-08-31', 'chimlo', '2006-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS422926199442', '田詩君', 1, '+44 (151) 526 6197', 1, '253807278896854905', 'Unit 16, Oxford Eco Centre, 471 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-08-15', 0, 0, 'tinsz', '2006-12-30', 'tsk', '2018-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS974370612581', 'Leroy Ross', 0, '+81 80-1007-4017', 2, '189507537802541132', 'Rm. 24, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-10-15', 0, 0, 'lros2', '2010-10-21', 'rossler6', '2019-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS494775064353', '官力申', 0, '+1 213-471-0675', 4, '927407909947560304', '626 Figueroa Street Apt 37, Los Angeles, CA 90037, United States', '1989-07-12', 0, 0, 'kols71', '2001-11-28', 'kools', '2021-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS331490177289', '菊地架純', 0, '+81 3-2894-4127', 0, '278936086047023184', '17-kai, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1998-03-25', 0, 0, 'kakik', '2016-08-21', 'kikkasum', '2006-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS016248050642', '翁家明', 1, '+44 (161) 280 6065', 2, '639658695865891397', 'Unit 49, Oxford Eco Centre, 803 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-08-30', 0, 0, 'ykm', '2003-09-22', 'yungkamin', '2013-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS307520926196', 'Harold Jones', 0, '+81 52-477-4669', 3, '035154103981474960', '33-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-04-19', 0, 0, 'jhar', '2003-04-12', 'harojones', '2008-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS645407243277', '小山光', 0, '+86 10-1701-2268', 1, '160647608888282980', '中国北京市延庆区028县道984号34号楼', '1996-01-06', 0, 0, 'koyamh', '2014-04-21', 'koyama2', '2002-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS162572342243', '馮曉彤', 1, '+1 312-790-9406', 1, '009994017973590754', '843 Rush Street Suite 38, Chicago, IL 60611, United States', '1992-12-13', 0, 0, 'hiutung612', '2007-11-06', 'fung4', '2016-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS397463699960', '甘杰倫', 0, '+81 11-907-1418', 2, '854396516842933151', '日本札幌白石区菊水三条五丁目4番4号1階', '1991-05-24', 0, 0, 'chiehlunkam', '2010-10-14', 'kamchiehlun', '2012-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS930071728054', '贺秀英', 0, '+81 66-475-8575', 4, '509797487982071444', '日本おおさかし西成区天神ノ森二丁目1番8号31階', '1988-05-02', 0, 0, 'xih', '2005-06-18', 'hex68', '2012-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS977902677143', 'Alan Richardson', 0, '+44 7442 586503', 3, '374524108862637985', 'Unit 44, Oxford Eco Centre, 69 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-01-04', 0, 0, 'alanrichardson', '2001-11-07', 'richardsonal', '2014-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS919427759859', '薛家玲', 1, '+44 (161) 264 8698', 2, '687739291510823132', 'Block 17, 459 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-07-05', 0, 0, 'klsit02', '2001-04-01', 'sit820', '2002-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS823239577795', '房詩君', 0, '+86 155-6723-6531', 4, '713313404127322687', '中国广州市越秀区中山二路380号18楼', '1989-03-06', 0, 0, 'szekwanfong', '2014-10-29', 'szekwan414', '2004-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS218466809446', '遠藤百恵', 1, '+1 838-282-9004', 0, '921820787473672753', '248 Central Avenue Apartment 19, Albany, NY 12206, United States', '1989-06-21', 0, 0, 'emomoe1030', '2000-06-26', 'emomoe', '2000-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS333812724789', '王璐', 1, '+86 20-8386-1272', 1, '543753501683981838', '中国广州市海珠区江南西路324号31号楼', '1987-03-09', 0, 0, 'luwang97', '2012-01-29', 'luw', '2005-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS853534731406', '橋本美羽', 1, '+81 3-2075-7429', 0, '608103003843293197', '23F, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-28', 0, 0, 'hmiu', '2001-12-24', 'hashimotom', '2015-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS615149120967', '石井紗良', 0, '+1 312-745-6846', 4, '113441258865479540', '323 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1989-05-12', 0, 0, 'saraishii', '2003-03-13', 'si7', '2003-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS753055306142', '中山陽菜', 1, '+86 755-8917-7428', 1, '405118465958979367', 'No.7 building, 205 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-09-30', 0, 0, 'hina8', '2014-01-20', 'nahina', '2008-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS210520091440', '謝潤發', 0, '+86 193-8054-3191', 3, '763298672686071649', '中国北京市海淀区清河中街68号968号42栋', '1987-03-30', 0, 0, 'tyf', '2017-05-05', 'tseyf', '2017-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS349870921242', '余晓明', 0, '+86 159-5959-2735', 2, '051811089613700354', '中国北京市西城区西長安街876号华润大厦47室', '1995-08-11', 0, 0, 'yu3', '2019-07-18', 'xiyu', '2018-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS193273647685', 'Josephine Patel', 1, '+44 (1865) 25 7931', 2, '044761656617797014', 'Flat 38, 895 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-08-18', 0, 0, 'pateljosep', '2008-09-20', 'josephinepat9', '2010-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS991956549709', '余宇宁', 0, '+86 28-165-8485', 0, '115589263099801819', '中国成都市成华区二仙桥东三路89号20号楼', '1996-06-04', 0, 0, 'yuyuning', '2018-09-06', 'yu1103', '2009-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS412796915513', '岩崎七海', 1, '+1 718-806-3497', 4, '210685347648103804', '690 Flatbush Ave Apartment 30, Brooklyn, NY 11225, United States', '1998-08-05', 0, 0, 'naiwasa40', '2007-12-02', 'niw', '2015-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS346227403489', '加藤明菜', 1, '+81 80-8272-4363', 2, '951067677861395196', '日本札幌豊平区豊平三条十三丁目3番10号3階', '1991-12-26', 0, 0, 'katoakina', '2018-10-12', 'katoak916', '2004-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS702955584701', '廖心穎', 0, '+1 614-234-7515', 3, '882585060985664620', '164 East Alley Suite 49, Columbus, GA 43201, United States', '1986-04-05', 0, 0, 'sumwing1208', '2012-02-07', 'swliao70', '2000-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS874514212590', 'Fred Mills', 1, '+86 174-9778-4749', 4, '409667930618340000', '9F, 273 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-02-14', 0, 0, 'mifre67', '2010-04-20', 'millsfr', '2008-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS988218568388', '谭震南', 1, '+1 718-447-5777', 4, '839617008798177582', '651 1st Ave Apt 31, Brooklyn, NY 11220, United States', '1993-04-28', 0, 0, 'tazhen6', '2012-07-18', 'taz04', '2009-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS858549456095', '譚淑怡', 1, '+86 199-2499-6188', 0, '392622044977866500', 'Room 24, 579 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-06-01', 0, 0, 'tamsukyee', '2010-07-29', 'tamsukyee1942', '2018-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS081644934799', '斎藤陽太', 0, '+81 3-8090-3556', 4, '242512293095389550', '日本東京渋谷区代々木二丁目3番10号49階', '1992-10-01', 0, 0, 'saito904', '2014-04-22', 'yotas319', '2018-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS302008991414', '溫學友', 1, '+44 7093 713100', 3, '068461154142783347', 'Unit 16, Oxford Eco Centre, 78 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-02-20', 0, 0, 'wanhy602', '2000-02-15', 'wan10', '2002-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS368216864205', 'Theresa Edwards', 0, '+1 212-121-5972', 3, '826596029956930623', '54 Fifth Avenue Suite 35, New York, NY 10017, United States', '1989-04-21', 0, 0, 'et1997', '2011-03-10', 'edwtheresa', '2010-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS256646539054', '吉田彩乃', 0, '+86 179-2060-2030', 3, '035862540477904625', '39F, 996 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-01-12', 0, 0, 'yaya', '2013-03-26', 'yoshidaaya1972', '2004-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS634122133685', '高子异', 0, '+86 155-1081-2908', 0, '394068326837826255', 'Room 3, CR Building, 499 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-06-22', 0, 0, 'gaoziyi', '2005-05-16', 'ziygao314', '2016-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS139688712455', '遠藤葵', 0, '+86 20-6670-7634', 2, '750919271760409470', 'Room 30, 731 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-03-23', 0, 0, 'endoaoi1206', '2016-02-23', 'aoi2001', '2001-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS788284299802', '李子异', 0, '+1 212-945-4286', 3, '339892518177013236', '88 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-08-04', 0, 0, 'zli', '2004-07-26', 'liziy', '2020-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS693220453755', 'Thomas Boyd', 0, '+81 90-2408-8871', 1, '423279509991694876', '日本東京港区東新橋一丁目5番6号29階', '1996-08-21', 0, 0, 'boyd2', '2018-10-12', 'boyd228', '2012-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS759483082765', '高田紗良', 1, '+44 (1223) 76 7989', 0, '424699512162958750', 'No.9 Main building, 868 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-09-14', 0, 0, 'saratak9', '2017-08-30', 'takadsara', '2011-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS581165980072', 'Clarence Shaw', 0, '+86 155-0327-4870', 2, '458047014772759924', 'Room 4, CR Building, 46 Lefeng 6th Rd, Zhongshan, China', '1991-09-12', 0, 0, 'shawclarence', '2008-08-29', 'clarencesh', '2007-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS992544693642', 'Angela Foster', 1, '+81 52-836-5007', 4, '529707480398742910', 'Rm. 16, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1985-04-28', 0, 0, 'afoster', '2020-05-12', 'fa8', '2008-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS886224200826', '向安娜', 0, '+1 212-143-9917', 0, '164263739298352932', '353 Wooster Street 3rd Floor, New York, NY 10012, United States', '1998-11-13', 0, 0, 'heuonn313', '2018-12-09', 'onheung7', '2013-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS450209462970', '青木百花', 0, '+81 90-0139-6500', 0, '717923550753575488', '日本おおさかし西成区出城一丁目1番2号28階', '1987-05-08', 0, 0, 'ma813', '2010-06-11', 'momoka522', '2014-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS261971103942', '西村涼太', 0, '+86 131-1930-9353', 4, '226078465895594333', '中国上海市徐汇区虹桥路616号46楼', '1993-03-20', 0, 0, 'nishimura914', '2018-02-13', 'ryotanishimura', '2004-10-22'); -INSERT INTO "public"."userinfo" VALUES ('TS646838414745', '駱浩然', 1, '+81 3-5793-3451', 1, '592596634435177446', '日本東京中央区銀座三丁目12番11号39号室', '1997-12-27', 0, 0, 'lohy', '2003-03-02', 'hylok', '2008-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS364575181894', '任詩涵', 1, '+1 212-313-5386', 1, '998122181685609307', '265 West Houston Street Apt 6, New York, NY 10014, United States', '1997-11-15', 0, 0, 'rens', '2022-02-27', 'rsh5', '2010-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS641026868572', 'Lori Powell', 0, '+44 (121) 581 9049', 0, '665525226664781975', 'Unit 18, Oxford Eco Centre, 839 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-01-04', 0, 0, 'powelll', '2008-10-11', 'powelllo', '2017-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS747120894927', 'Julia Coleman', 0, '+81 80-4752-5287', 1, '622252390668253133', '50-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-01-13', 0, 0, 'juliacoleman', '2002-02-06', 'jcolem', '2013-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS092759104894', '中島大輔', 0, '+1 213-853-2758', 2, '876395577338229435', '285 S Broadway Apartment 7, Los Angeles, CA 90015, United States', '1990-04-10', 0, 0, 'daisukenakajima', '2005-12-02', 'nakajima2005', '2003-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS704193917458', '雷秀英', 0, '+86 149-7942-4919', 1, '811445623299519897', '中国北京市房山区岳琉路336号华润大厦13室', '1994-04-25', 0, 0, 'leixiu', '2006-07-09', 'xiuyilei', '2007-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS917161759614', 'Frances Garcia', 0, '+86 149-1632-8505', 1, '115123213770429294', '中国深圳福田区深南大道208号16楼', '1987-11-11', 0, 0, 'francesgarc87', '2019-10-25', 'garcifran', '2008-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS062538630562', 'Shawn Hernandez', 1, '+81 80-5964-0222', 3, '835211997839551902', 'Rm. 21, 3-9-8 Gakuenminami, Nara, Japan', '1988-02-03', 0, 0, 'hshawn', '2011-12-28', 'hernandezsha8', '2014-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS419149214530', '王國明', 0, '+86 21-9844-0082', 2, '996199491886416372', '1F, 601 Jianxiang Rd, Pudong, Shanghai, China', '1991-01-06', 0, 0, 'wong6', '2013-08-06', 'wongkwokming', '2005-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS588721152212', 'Phillip Barnes', 1, '+81 66-947-7121', 1, '662630856924364276', '日本おおさかし平野区加美東四丁目9番6号31階', '1994-03-23', 0, 0, 'phillipbarnes', '2003-06-17', 'barnes311', '2013-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS335170721284', '村上彩乃', 1, '+86 769-340-2765', 3, '121162500287931095', 'No.2 building, 954 Shanhu Rd, Dongguan, China', '1998-09-28', 0, 0, 'amurakami69', '2002-08-16', 'murakayan', '2004-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS809241680581', 'Robin Chen', 1, '+86 769-4574-9198', 3, '350169018574052889', '中国东莞珊瑚路469号33楼', '1994-09-06', 0, 0, 'crobi8', '2007-01-20', 'crobin', '2015-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS637806327940', '姚富城', 1, '+86 182-7770-6310', 1, '421977667417532582', '中国广州市白云区小坪东路161号41楼', '1990-09-09', 0, 0, 'yeow6', '2020-12-10', 'yeow206', '2009-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS710757225548', '關嘉欣', 0, '+44 5634 321403', 2, '456579193905466605', 'Flat 11, 445 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1991-06-22', 0, 0, 'kykwan', '2020-07-13', 'kwankaryan', '2021-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS698945884438', 'Josephine Fernandez', 0, '+86 755-410-7292', 3, '123694699621834701', 'No.27 building, 517 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-10-01', 0, 0, 'fernandezjo', '2006-08-01', 'fernandezjo', '2009-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS185633581833', '洪國榮', 0, '+81 80-1788-3669', 4, '591396552214761793', '日本なごやし北区清水三丁目19番5号32階', '1997-04-21', 0, 0, 'hungkw', '2010-10-04', 'kwokwinghung', '2002-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS529528629935', '潘岚', 1, '+81 90-4222-8306', 2, '780781028872124894', 'Rm. 47, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1993-10-08', 0, 0, 'panlan', '2015-06-25', 'lanpan', '2014-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS192093765094', '鄺潤發', 1, '+81 70-7450-4065', 2, '226392247724031033', '日本ならし学園南三丁目9番3号4号室', '1987-02-24', 0, 0, 'kwongyu831', '2009-09-19', 'yunfatkwong', '2001-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS896682771353', '麥俊宇', 0, '+44 7658 845178', 1, '100605768625033309', 'Flat 15, 115 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-12-29', 0, 0, 'chunyuma', '2020-12-07', 'mak55', '2021-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS315299714992', '方詩涵', 0, '+81 74-422-9117', 1, '044254339647304316', '日本ならし西大寺赤田町一丁目7番12号19号室', '1996-06-14', 0, 0, 'fangs', '2005-02-19', 'shf', '2009-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS217460138331', '蕭天榮', 1, '+1 838-099-4656', 2, '339012635224752762', '659 Central Avenue Apartment 29, Albany, NY 12206, United States', '1995-06-24', 0, 0, 'tinwing4', '2018-10-24', 'twsiu', '2005-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS304090333967', 'Dorothy Miller', 0, '+86 178-4474-7935', 1, '439299533884019647', '中国北京市西城区复兴门内大街505号华润大厦47室', '1997-12-02', 0, 0, 'dorotmi70', '2009-12-10', 'millerdorothy93', '2002-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS943733262313', 'Phillip Robinson', 0, '+81 66-295-4535', 2, '859977097931850007', '日本おおさかし平野区加美東四丁目9番13号50階', '1986-08-18', 0, 0, 'rphillip', '2008-05-05', 'philrobinson', '2002-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS822051942753', '今井葵', 0, '+81 52-847-1220', 1, '240669078900796518', '日本なごやし熱田区千年二丁目5番1号15号室', '1988-03-03', 0, 0, 'imao', '2005-04-21', 'aoiimai', '2018-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS062946249155', '關心穎', 1, '+81 52-044-4485', 1, '261815341431674880', '日本なごやし熱田区千年二丁目5番13号26号室', '1990-10-01', 0, 0, 'kwansw', '2004-05-12', 'kwansumwing1220', '2005-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS736218784580', '藤永發', 1, '+86 755-577-9088', 4, '872651121451005707', '中国深圳福田区景田东一街766号48楼', '1998-02-19', 0, 0, 'tang2', '2013-02-23', 'tanwingfat', '2013-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS895965840794', 'Lillian Schmidt', 0, '+44 7837 657821', 3, '237566831460497972', 'Flat 36, 642 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-12-10', 0, 0, 'sclillian', '2016-03-07', 'schml', '2017-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS057783082404', 'Francis Mason', 1, '+81 90-1325-6065', 0, '924533490455288367', '日本おおさかし西成区天神ノ森二丁目1番16号38号室', '1998-09-28', 0, 0, 'mason1942', '2012-08-01', 'franmason', '2014-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS547020019895', '石川涼太', 0, '+81 11-518-1644', 2, '222302250382194527', '8F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-09-02', 0, 0, 'iryota', '2019-01-09', 'rish10', '2008-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS975863623696', 'Jimmy Herrera', 0, '+86 10-094-4253', 1, '677369716029839909', '中国北京市海淀区清河中街68号285号6室', '1993-11-26', 0, 0, 'herrerajimmy', '2010-11-20', 'herrerajimm10', '2019-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS345369138180', '莫子异', 1, '+86 184-3471-5842', 0, '918946221240560424', 'Room 25, 301 Binchuan Rd, Minhang District, Shanghai, China', '1996-04-20', 0, 0, 'mo10', '2004-01-16', 'ziym', '2021-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS118657811015', 'Eric Nelson', 0, '+81 80-3001-0891', 2, '247509711269625746', '日本おおさかし西成区天神ノ森二丁目1番10号32階', '1986-01-11', 0, 0, 'nelsoeric82', '2011-12-03', 'erin4', '2011-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS553356738355', '鐘慧珊', 0, '+86 194-9890-1040', 0, '417653381391173432', '中国北京市朝阳区三里屯路162号华润大厦29室', '1994-06-19', 0, 0, 'wsc', '2002-02-18', 'cws02', '2005-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS937807081070', 'Eugene Price', 1, '+81 3-4861-3620', 1, '352286749468530917', '3F, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-09-29', 0, 0, 'preugene', '2007-11-14', 'eugenepric2', '2010-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS733257061955', '上野美月', 0, '+86 131-8369-2330', 2, '589644541496574194', 'Room 37, CR Building, 612 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-11-03', 0, 0, 'uemitsuki', '2007-07-02', 'mitsukiue', '2008-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS099064502229', '顾宇宁', 1, '+86 163-2257-5275', 3, '395975682316994068', 'No.6 building, 834 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-09-04', 0, 0, 'ygu', '2015-09-03', 'guyu', '2019-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS834008225224', 'Phillip Romero', 0, '+81 11-794-8366', 0, '954828498472617735', '日本札幌厚別区上野幌一条二丁目1番18号19号室', '1988-01-07', 0, 0, 'romerophillip7', '2002-03-11', 'phillipromero', '2016-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS363547530929', 'Donald Gutierrez', 1, '+86 760-285-0104', 0, '132786493502026685', '中国中山京华商圈华夏街372号3栋', '1987-04-30', 0, 0, 'gutierrezdo', '2019-05-29', 'doguti44', '2021-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS288486212143', '中山百花', 1, '+81 70-4852-2808', 4, '701092621989395572', 'Rm. 39, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1987-01-21', 0, 0, 'nakm405', '2011-01-07', 'momoka5', '2011-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS741808920790', '斉藤美月', 1, '+86 149-1488-3248', 3, '392294837272123088', '21F, 230 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-10-22', 0, 0, 'saitmit1218', '2016-09-05', 'mitsusai', '2021-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS424134845396', '蘇慧珊', 0, '+44 (161) 639 4085', 0, '411242388997290457', 'No.36 Main building, 101 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-04-13', 0, 0, 'wss827', '2012-02-09', 'waisan76', '2007-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS133571029113', 'Phillip Brooks', 1, '+86 21-9586-8912', 2, '097752597040699848', 'No.10 building, 209 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-03-11', 0, 0, 'phillipbrook', '2008-02-14', 'brookp', '2004-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS589098969905', '范岚', 1, '+44 (161) 856 4089', 3, '407932041330612878', 'No.4 Main building, 984 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-11-15', 0, 0, 'fan59', '2019-11-15', 'lanfan', '2015-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS746911306479', '高家文', 1, '+81 80-8104-2052', 2, '086339660712757853', '日本おおさかし近江堂一丁目7番1号3階', '1988-04-08', 0, 0, 'kaokaman10', '2019-11-29', 'kaoka520', '2000-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS649311713781', 'Willie Hamilton', 0, '+86 137-7340-0888', 0, '863591790964664493', 'No.25 building, 834 Shanhu Rd, Dongguan, China', '1998-11-23', 0, 0, 'hamw', '2017-09-27', 'williehamilton5', '2021-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS094167717176', '成德華', 1, '+86 197-6956-2514', 3, '644447810181487822', '中国成都市成华区二仙桥东三路832号华润大厦17室', '1996-07-27', 0, 0, 'takwah75', '2002-08-01', 'tws10', '2021-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS223135090635', '邱家明', 1, '+1 614-120-7758', 3, '168945834766200204', '908 East Alley Apt 18, Columbus, GA 43201, United States', '1989-07-05', 0, 0, 'kaming3', '2015-06-17', 'yaukaming101', '2009-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS306066824204', 'Pamela Morris', 0, '+44 5006 709495', 0, '197904414681963097', 'Flat 21, 956 Pollen Street, London, W1S 1NG, United Kingdom', '1998-03-24', 0, 0, 'pamelamo', '2001-11-16', 'pamemor4', '2003-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS806915250697', 'Mario Butler', 1, '+86 190-0275-0570', 1, '446900725510305454', '中国北京市西城区复兴门内大街753号15号楼', '1986-01-16', 0, 0, 'butlmario', '2003-06-07', 'mariobutl5', '2001-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS225586371636', 'Florence Murray', 1, '+44 7329 172146', 1, '599696626965108207', 'Flat 40, 608 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-24', 0, 0, 'flomurray', '2019-09-09', 'muflo', '2008-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS440982327392', '常杰宏', 0, '+1 213-159-2137', 3, '661443914372658492', '979 Alameda Street Suite 13, Los Angeles, CA 90002, United States', '1994-06-10', 0, 0, 'jiehchan', '2010-12-24', 'jichang', '2005-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS845282312035', 'Juanita Wells', 1, '+86 182-9492-2384', 2, '430918830758117751', 'No.10 building, 532 Tianhe Road, Tianhe District, Guangzhou, China', '1996-10-27', 0, 0, 'wejuani', '2012-11-06', 'weljuani', '2010-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS591231962353', 'Henry Mendoza', 0, '+81 70-9921-9233', 0, '475840412595268803', '31F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-12-16', 0, 0, 'hme2015', '2016-07-24', 'mendoza64', '2000-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS350011550218', '木村和真', 1, '+81 80-0590-3859', 4, '048715536594566906', '日本札幌白石区菊水三条五丁目2番11号46階', '1985-05-13', 0, 0, 'kimukazuma5', '2005-04-25', 'kimurak', '2016-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS113301602882', 'Michael Rodriguez', 0, '+81 11-013-2912', 2, '215124465748117495', 'Rm. 26, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-12-10', 0, 0, 'michael204', '2019-01-24', 'michaelrodriguez', '2013-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS441640926170', '平野舞', 0, '+81 11-570-1166', 1, '449981311154223133', '日本札幌豊平区豊平三条十三丁目3番17号11階', '1998-11-06', 0, 0, 'hiranma3', '2001-06-24', 'hiranom', '2006-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS658518673751', 'Amber Torres', 0, '+44 7752 885803', 3, '452809966574061817', 'Block 7, 797 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-07-02', 0, 0, 'tamber5', '2007-02-17', 'ambert910', '2000-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS271240487116', 'Anthony Young', 1, '+86 755-649-5398', 2, '067326881750480016', 'No.10 building, 409 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-03-16', 0, 0, 'youanthony', '2013-07-28', 'anthonyy116', '2011-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS380364776688', 'Marie Tran', 0, '+86 141-4280-5114', 1, '444825620783948836', 'Room 23, CR Building, 140 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-01-17', 0, 0, 'marietr', '2008-07-09', 'trma1204', '2009-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS035820147321', '叶詩涵', 1, '+86 156-6547-2875', 2, '610999563745547084', 'Room 26, 393 Yueliu Rd, Fangshan District, Beijing, China', '1993-12-02', 0, 0, 'yeshih', '2003-02-10', 'sye', '2013-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS490128343947', '丁子异', 0, '+1 312-755-0843', 0, '426137074731486927', '262 Pedway Apartment 34, Chicago, IL 60601, United States', '1996-06-25', 0, 0, 'dingziyi', '2003-05-22', 'dziyi62', '2000-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS393777106650', '白慧敏', 0, '+81 90-4240-2625', 3, '198085316394930086', 'Rm. 40, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-09-26', 0, 0, 'wmpak511', '2012-12-31', 'waimanpa75', '2020-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS656616561355', '竹内美緒', 0, '+86 755-4572-9910', 3, '596178038040037872', '中国深圳罗湖区田贝一路593号37室', '1988-04-17', 0, 0, 'takmio', '2017-10-07', 'takeuchi7', '2000-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS761098597790', 'Anthony Aguilar', 0, '+1 213-398-1550', 2, '891650797240670263', '868 S Broadway Apt 5, Los Angeles, CA 90015, United States', '1990-03-06', 0, 0, 'aguilar1996', '2019-02-16', 'aguilaran', '2021-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS043707882096', '村田聖子', 1, '+81 11-562-3217', 1, '098152551041712865', '9F, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-03-10', 0, 0, 'semurata14', '2004-05-06', 'seiko77', '2014-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS216557790010', '原大輔', 1, '+1 838-896-0469', 1, '426810238579091907', '139 Lark Street Apt 2, Albany, NY 12210, United States', '1986-12-19', 0, 0, 'daisuhara', '2018-03-28', 'daisukeh4', '2002-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS217066093509', 'Jennifer Jones', 0, '+86 755-470-9556', 4, '583605508652270550', '中国深圳罗湖区蔡屋围深南东路818号4号楼', '1987-04-15', 0, 0, 'jennifer6', '2011-11-17', 'jennifer405', '2013-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS673244384991', 'Lillian Stephens', 0, '+86 173-9502-9317', 3, '957463845157346213', 'Room 46, 924 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-05-28', 0, 0, 'stephenslillian1', '2002-04-30', 'stephlillian', '2001-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS134287550763', '吴安琪', 1, '+1 614-880-5661', 2, '535934798731810299', '40 Diplomacy Drive Suite 42, Columbus, GA 43228, United States', '1994-04-24', 0, 0, 'wanqi', '2009-06-14', 'wu524', '2019-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS833835425514', '内田陸', 1, '+86 21-472-9644', 1, '703486998254930730', '50F, 641 Jianxiang Rd, Pudong, Shanghai, China', '1987-12-28', 0, 0, 'uriku', '2017-09-08', 'rikuuchida60', '2009-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS705087496684', '范杰宏', 1, '+81 90-2887-8052', 3, '747807417785288670', '日本おおさかし平野区加美東四丁目9番14号9階', '1998-03-12', 0, 0, 'fan430', '2019-06-06', 'jiehf', '2009-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS600641698252', '贺睿', 1, '+81 52-740-7836', 1, '156744279711055170', '29F, 3-19-17 Shimizu, Kita Ward, Nagoya, Japan', '1992-12-07', 0, 0, 'he6', '2021-06-29', 'her', '2005-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS663766300744', '譚榮發', 0, '+81 3-8401-0330', 3, '546475733410750837', '日本東京品川区東五反田五丁目2番11号1階', '1995-10-28', 0, 0, 'tamwingfat', '2005-01-20', 'tamwf', '2001-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS489259074098', '莫安琪', 0, '+86 175-9081-7237', 2, '135126600257400169', 'Room 46, 126 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-06-18', 0, 0, 'mokon4', '2002-05-25', 'okmok8', '2022-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS190903080479', '苗慧珊', 1, '+81 74-851-7510', 2, '536324468285187507', '日本ならし学園南三丁目9番7号48階', '1986-08-01', 0, 0, 'wsm', '2010-09-21', 'miuws', '2002-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS626496471227', '樂國榮', 1, '+1 330-502-2843', 1, '397224362062142891', '707 Fern Street Apt 38, Akron, OH 44307, United States', '1985-05-29', 0, 0, 'lok6', '2016-05-18', 'kwl603', '2013-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS450253260580', '白惠敏', 0, '+81 52-603-3964', 0, '011729392057152856', '20-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-03-04', 0, 0, 'wmpak', '2004-06-10', 'wmpak', '2004-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS643127889954', '杜榮發', 0, '+81 52-066-9449', 3, '636219691945200823', 'Rm. 49, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-08-26', 0, 0, 'towf', '2019-05-02', 'towf', '2016-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS155493801603', '石井光', 1, '+81 11-505-4687', 3, '194400026589171203', 'Rm. 12, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-07-10', 0, 0, 'ihika1119', '2016-08-24', 'hikaru4', '2014-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS186497205130', 'David Myers', 0, '+81 74-539-5052', 3, '003033727164552279', '44F, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1996-04-25', 0, 0, 'mdavi', '2017-04-10', 'davidmyers', '2002-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS221948611046', '鈴木涼太', 1, '+86 130-8669-4638', 1, '454013504006642669', 'No.13 building, 614 Kengmei 15th Alley, Dongguan, China', '1993-11-14', 0, 0, 'suzukiryota', '2015-10-19', 'ryota5', '2001-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS323413177135', 'Ernest Brooks', 1, '+44 (116) 617 3673', 1, '809295630992161728', 'Block 4, 520 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-09-19', 0, 0, 'brerne4', '2006-05-07', 'ernest3', '2002-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS867658223607', '安藤大和', 1, '+81 90-5450-1551', 0, '441550374089080264', '日本なごやし守山区瀬古東二丁目171番12号17階', '1998-04-03', 0, 0, 'yamatando', '2017-12-11', 'yamato55', '2000-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS782177358011', '車青雲', 1, '+44 5359 496544', 3, '325595099399075372', 'Block 36, 853 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-06-29', 0, 0, 'chiche', '2021-01-13', 'cwch', '2021-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS634169353670', '張發', 0, '+81 90-3164-7855', 3, '368993302323020727', '35-kai, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-12-27', 0, 0, 'fatche', '2015-02-19', 'fat2008', '2014-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS696202567660', '橋本光', 0, '+86 176-7665-5541', 0, '757739834392539124', 'Room 36, CR Building, 287 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-08-04', 0, 0, 'hh719', '2000-05-04', 'hashimotohikaru', '2011-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS626477610256', '邱震南', 0, '+81 3-4619-2602', 1, '077781033824063563', '23F, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-07-08', 0, 0, 'zqiu411', '2012-02-07', 'zhenq', '2003-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS202070854394', 'Connie Hill', 1, '+81 70-5362-5822', 4, '541681824812682461', 'Rm. 35, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1994-09-19', 0, 0, 'hillco', '2022-01-08', 'hill90', '2001-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS215703669832', '黎思妤', 1, '+1 312-804-6241', 3, '374979433646641213', '719 Rush Street Suite 34, Chicago, IL 60611, United States', '1993-07-19', 0, 0, 'syla10', '2008-12-30', 'sylai10', '2011-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS508695362080', '白俊宇', 0, '+86 180-7162-3177', 1, '121380390722576044', '13F, 969 Middle Huaihai Road, Huangpu District, Shanghai, China', '1994-07-06', 0, 0, 'chunyu1972', '2015-11-13', 'chp69', '2016-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS321816496208', '區學友', 0, '+1 838-064-1184', 4, '964277224399757998', '582 Central Avenue Suite 9, Albany, NY 12206, United States', '1985-01-23', 0, 0, 'auhokyau210', '2004-02-16', 'auhy1', '2005-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS931527264578', '車國賢', 1, '+86 10-222-3023', 2, '997354331678619033', '中国北京市房山区岳琉路650号33号楼', '1989-06-13', 0, 0, 'kwokyinche', '2003-10-25', 'ckwokyin', '2009-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS839119044496', 'Luis Adams', 0, '+81 52-723-7232', 0, '285770922530272130', '9-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-05-05', 0, 0, 'adamsluis113', '2009-10-01', 'adamsl', '2002-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS410960798359', '孔岚', 0, '+86 188-5027-7686', 0, '451491990329786640', '44F, 344 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-04-17', 0, 0, 'konla49', '2008-07-25', 'kolan1985', '2007-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS437171076513', 'Lawrence Simmons', 0, '+81 70-8023-9997', 1, '989613339580951562', '41-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1993-10-03', 0, 0, 'lasimmons', '2015-02-13', 'lawrs5', '2013-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS142049680849', '莫國賢', 1, '+81 3-3765-3175', 2, '037322668193837402', '日本東京品川区東五反田五丁目2番3号7階', '1985-09-07', 0, 0, 'mok221', '2009-01-22', 'mokkwokyin', '2015-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS330700303414', '汪詩涵', 0, '+86 142-7279-0879', 3, '102478925218691283', 'No.10 building, 195 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-12-26', 0, 0, 'wangsh45', '2001-05-02', 'washih221', '2009-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS041083665269', '竹内結翔', 0, '+86 20-661-6083', 0, '650224338142312090', '中国广州市白云区小坪东路707号华润大厦11室', '1994-03-23', 0, 0, 'yuitotak', '2006-06-15', 'takeuyuito', '2013-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS275185356412', '蒋璐', 1, '+81 11-171-3767', 3, '494530552631910228', '日本札幌厚別区上野幌一条二丁目1番16号28階', '1992-11-22', 0, 0, 'jiang3', '2003-02-04', 'jlu1', '2007-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS926545767957', '青木翼', 0, '+81 74-833-3005', 2, '396383676218450646', '日本ならし大和郡山市本庄町一丁目1番18号16階', '1992-04-12', 0, 0, 'tsubasa1126', '2004-07-12', 'aokitsubasa', '2004-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS737117078828', '河野陸', 1, '+44 (1223) 72 1491', 0, '454604529231960692', 'Unit 48, Oxford Eco Centre, 759 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1992-10-01', 0, 0, 'rikkono', '2011-09-15', 'rikukono96', '2011-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS139619918212', '黄璐', 1, '+86 760-5315-0289', 3, '729595051081555318', '19F, 434 Lefeng 6th Rd, Zhongshan, China', '1986-06-20', 0, 0, 'lh403', '2021-04-17', 'huang00', '2001-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS922110010298', '菊地彩乃', 1, '+86 10-1203-5965', 3, '825157817335955026', '中国北京市东城区东单王府井东街508号华润大厦27室', '1992-09-19', 0, 0, 'kikucayan05', '2011-07-06', 'ayanok', '2004-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS005978364215', '宮崎葉月', 1, '+86 185-2905-7625', 3, '552525763363893615', '中国上海市浦东新区橄榄路118号华润大厦35室', '1993-09-10', 0, 0, 'hazukimiyazaki2004', '2019-10-11', 'hazukimi1023', '2016-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS710188575623', '汤安琪', 0, '+44 (151) 645 7504', 0, '397205868833601942', 'No.21 Main building, 868 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-09-12', 0, 0, 'tanga', '2002-01-06', 'tangan3', '2009-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS942086757026', '于子异', 0, '+86 196-1816-7379', 3, '452014541043973127', 'Room 13, CR Building, 539 East Wangfujing Street, Dongcheng District , Beijing, China', '1987-10-21', 0, 0, 'yuziy3', '2001-08-10', 'yuziyi', '2004-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS184080574853', '杜震南', 0, '+44 5063 970358', 2, '199116447164786915', 'Block 9, 91 Portland St, Manchester, M1 3LA, United Kingdom', '1995-04-09', 0, 0, 'duz', '2002-09-02', 'zhennd', '2016-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS616725674362', '陳天樂', 1, '+81 90-6548-3498', 0, '374750587131527986', '30-kai, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-06', 0, 0, 'ctinlok', '2021-05-24', 'chtinlok', '2021-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS177421218995', 'Anne Fox', 1, '+81 52-124-7591', 1, '325330708218892613', '日本なごやし熱田区千年二丁目5番18号12号室', '1985-06-09', 0, 0, 'annefox411', '2005-05-12', 'foxanne', '2001-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS819872701544', '佐野光', 0, '+1 212-359-1910', 0, '524061777671833031', '832 Wooster Street 3rd Floor, New York, NY 10012, United States', '1985-12-25', 0, 0, 'sanohikar', '2012-05-21', 'sanohikaru1', '2010-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS111751480984', '遠藤大輔', 0, '+81 74-439-5216', 0, '115933323058976206', 'Rm. 46, 3-9-17 Gakuenminami, Nara, Japan', '1991-05-13', 0, 0, 'de14', '2003-06-16', 'daen', '2005-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS373406418403', '马子异', 1, '+81 3-6047-4253', 4, '714387702125104904', '日本東京品川区東五反田五丁目2番17号48階', '1996-04-22', 0, 0, 'zm324', '2009-09-25', 'maziyi', '2015-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS027147064615', '市川一輝', 1, '+86 769-4894-9133', 2, '615430936104873924', '44F, 470 Dongtai 5th St, Dongguan, China', '1986-10-31', 0, 0, 'ichikki', '2017-12-05', 'iikki', '2009-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS050445743957', '文明詩', 1, '+86 10-254-2193', 1, '219511489883535844', '中国北京市海淀区清河中街68号572号华润大厦16室', '1993-03-30', 0, 0, 'mingsze309', '2002-08-19', 'manmingsze', '2020-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS480880527899', '梅詠詩', 1, '+44 (161) 991 9138', 3, '917734239665429908', 'Unit 1, Oxford Eco Centre, 720 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-07-14', 0, 0, 'muiws', '2017-09-26', 'muwingsze', '2017-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS201512241620', '石井蒼士', 0, '+81 70-0688-5582', 2, '125914684697119674', '29-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-06-05', 0, 0, 'aishii1228', '2011-10-27', 'aosishii', '2005-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS605329602015', '廖學友', 1, '+44 (1223) 63 1198', 2, '851735412939204099', 'No.14 Main building, 794 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-12-14', 0, 0, 'liao10', '2017-06-24', 'hokyaulia', '2004-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS984815395219', '坂本玲奈', 0, '+81 11-942-4448', 3, '385867000494440124', '日本札幌白石区菊水三条五丁目4番3号33階', '1986-03-24', 0, 0, 'renasakamoto', '2021-10-22', 'sakamotor802', '2013-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS363938916660', '陈致远', 0, '+81 80-6033-7681', 2, '074185067339942270', '日本ならし西大寺赤田町一丁目7番3号40階', '1990-03-07', 0, 0, 'chenzhiyuan601', '2000-05-21', 'chenzhiyuan', '2015-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS617815265282', '伍永權', 0, '+1 213-152-7015', 1, '979654969656949379', '739 Figueroa Street Apt 25, Los Angeles, CA 90037, United States', '1994-03-04', 0, 0, 'ng90', '2004-11-29', 'wkng', '2019-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS028781089121', '曹國權', 0, '+81 80-3816-2866', 0, '866739476594601477', '日本ならし西大寺赤田町一丁目7番2号30号室', '1987-08-09', 0, 0, 'kwokkuen90', '2001-02-28', 'chokk', '2008-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS549255544885', '田富城', 1, '+81 52-748-8184', 1, '770164358194641937', 'Rm. 35, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1989-06-01', 0, 0, 'fushingtin6', '2003-11-11', 'tinfs4', '2019-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS800279959575', '横山大和', 0, '+86 755-8274-9860', 1, '180274106994039209', 'No.33 building, 969 Shennan Ave, Futian District, Shenzhen, China', '1991-08-04', 0, 0, 'yokyama1219', '2018-11-12', 'yy1', '2018-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS748960604079', '長谷川美月', 0, '+81 70-8299-0745', 2, '735528285340469427', '日本なごやし北区清水三丁目19番10号46階', '1992-01-30', 0, 0, 'mitshaseg202', '2016-03-19', 'hasegawamitsuki', '2021-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS010489735375', '中森陸', 0, '+81 70-6480-3362', 3, '176038617304351121', '日本なごやし熱田区千年二丁目5番10号4号室', '1985-07-17', 0, 0, 'riku2', '2006-03-22', 'rikunak115', '2011-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS147510867282', '成明詩', 1, '+1 330-964-5030', 0, '610763984526942651', '14 Collier Road 3rd Floor, Akron, OH 44320, United States', '1986-11-22', 0, 0, 'shingmingsze904', '2018-05-05', 'shingms', '2001-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS548724509217', '段致远', 1, '+86 21-8313-4093', 4, '838440203995268990', 'No.29 building, 663 Jianxiang Rd, Pudong, Shanghai, China', '1994-07-02', 0, 0, 'duanz', '2002-12-25', 'duan1958', '2000-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS050766437377', '駱梓軒', 1, '+86 170-5882-7258', 0, '947864874592953956', '中国上海市浦东新区健祥路426号华润大厦34室', '1985-05-22', 0, 0, 'thlo', '2019-02-26', 'thl69', '2013-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS158540750602', '岡田光莉', 0, '+44 5436 854534', 2, '203439434320064234', 'Unit 49, Oxford Eco Centre, 925 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-01-11', 0, 0, 'okadahikari', '2003-08-02', 'okadahikari110', '2016-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS930490217277', 'Norma Garcia', 0, '+81 90-9178-9518', 1, '684817115163674984', '40F, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1993-07-23', 0, 0, 'normagar', '2018-09-06', 'norma916', '2020-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS959444034242', '伍詩君', 0, '+86 28-687-9047', 3, '441439042506588932', 'No.3 building, 477 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-04-25', 0, 0, 'ngsze2', '2021-11-23', 'nsk75', '2002-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS219937068974', '郭岚', 1, '+86 167-0123-6571', 1, '299559403302043881', 'Room 47, 278 Shanhu Rd, Dongguan, China', '1992-10-09', 0, 0, 'guolan91', '2021-03-29', 'guol', '2007-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS328614565621', '常秀英', 0, '+86 193-6457-7029', 3, '718571659724748452', '33F, 669 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-11-08', 0, 0, 'changx', '2000-11-06', 'changx', '2017-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS764362577480', 'Louis Mendez', 0, '+1 213-983-5312', 1, '998514953288104895', '899 Figueroa Street Apt 9, Los Angeles, CA 90037, United States', '1992-10-28', 0, 0, 'loum86', '2020-09-21', 'ml1220', '2020-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS671826729951', '卢璐', 1, '+1 614-236-6243', 0, '763970203506695584', '300 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-02-03', 0, 0, 'lulu', '2013-02-28', 'lul55', '2006-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS861817612614', '梅青雲', 0, '+1 212-451-8497', 2, '622463073730361077', '344 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-10-01', 0, 0, 'mchingwan', '2005-03-02', 'cwmui', '2015-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS680253486205', 'Eric Bailey', 0, '+44 (1865) 17 9422', 4, '580006490993597390', 'Unit 43, Oxford Eco Centre, 362 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-02-25', 0, 0, 'bailey219', '2000-06-07', 'bailey3', '2020-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS906986422140', 'Katherine Hamilton', 0, '+86 159-8603-7020', 2, '744364843514316452', 'Room 4, 581 Ganlan Rd, Pudong, Shanghai, China', '1986-04-17', 0, 0, 'hamkathe531', '2016-12-03', 'khamilton803', '2020-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS030065826632', 'Heather Harris', 0, '+86 769-1468-7387', 4, '821092433610531936', '中国东莞坑美十五巷459号35号楼', '1991-07-20', 0, 0, 'heathharris', '2001-06-16', 'harhe40', '2015-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS909395237540', 'Ronald Robertson', 1, '+44 5541 872692', 2, '290024402825071723', 'Flat 9, 331 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-08-26', 0, 0, 'rr1', '2005-06-10', 'roberronald', '2016-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS281648147810', '石震南', 1, '+1 838-266-0735', 2, '354012304818817015', '149 State Street Apt 3, Albany, NY 12203, United States', '1985-10-14', 0, 0, 'zshi611', '2014-06-07', 'shizhennan628', '2004-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS629548641116', 'Fred Patterson', 0, '+81 66-612-6727', 0, '688047689070279121', '14-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-01-13', 0, 0, 'fred1950', '2014-02-08', 'pattersonfr48', '2013-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS841802211273', '江榮發', 0, '+81 80-8157-0807', 2, '045010638490602641', '36F, 4 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-18', 0, 0, 'wingfatkon113', '2019-06-26', 'kongwingfat4', '2012-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS710393685104', 'Peter Gray', 0, '+44 (1223) 79 1967', 1, '678420234236648622', 'Block 36, 318 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-01-09', 0, 0, 'gray1003', '2020-10-03', 'pgray', '2001-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS152255208805', '袁嘉伦', 1, '+81 80-3599-4709', 3, '328665415826261835', '35-kai, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-09-02', 0, 0, 'jialuyuan', '2014-05-22', 'yuajialu', '2017-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS635581327271', '钟震南', 0, '+44 (151) 943 1790', 3, '093698448482276602', 'No.28 Main building, 424 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1990-03-18', 0, 0, 'zhong51', '2008-08-31', 'zhenzhong', '2012-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS846412227780', '杨詩涵', 1, '+44 5795 012359', 3, '477640182553816605', 'Unit 46, Oxford Eco Centre, 242 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-12-05', 0, 0, 'shihayang', '2001-02-14', 'shihanya', '2008-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS047655249565', 'Wanda Harrison', 0, '+1 838-019-8477', 1, '896256894998653885', '464 Lark Street Apartment 20, Albany, NY 12210, United States', '1994-06-11', 0, 0, 'harrwanda1979', '2010-11-25', 'wanh', '2008-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS468341312172', '赵致远', 1, '+44 5123 625949', 1, '094934595340908164', 'Unit 21, Oxford Eco Centre, 991 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-09-17', 0, 0, 'zhizhao', '2006-01-27', 'zhiyuzhao4', '2014-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS133145659817', '鐘頴璇', 0, '+44 5031 532060', 1, '654655846576208880', 'No.40 Main building, 894 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-06-06', 0, 0, 'chungws', '2013-12-03', 'chungws', '2000-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS954792513397', '阿部光莉', 0, '+86 164-0868-8787', 1, '560515523054992493', 'Room 38, 902 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-07-03', 0, 0, 'hikari7', '2021-09-06', 'ahikari', '2008-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS296187976980', '许晓明', 1, '+86 181-4186-7489', 3, '266986613852660119', '中国东莞坑美十五巷826号24栋', '1991-10-12', 0, 0, 'xiaoming1', '2000-07-15', 'xu3', '2022-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS803220991823', '柴田葵', 1, '+81 74-833-6243', 2, '946068918342836268', '日本ならし学園南三丁目9番17号17階', '1990-12-31', 0, 0, 'aoshibata', '2007-09-08', 'aoish', '2000-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS625802390414', '金子詩乃', 1, '+81 74-284-3328', 2, '770070123577789558', '日本ならし大和郡山市本庄町一丁目1番10号44号室', '1991-10-17', 0, 0, 'kanekoshino', '2013-06-22', 'kaneko8', '2012-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS275667342923', '谷口瑛太', 1, '+86 769-035-9021', 2, '001325934004937329', 'Room 15, CR Building, 39 Kengmei 15th Alley, Dongguan, China', '1995-05-31', 0, 0, 'taniguchieita', '2006-08-21', 'taniguchi9', '2009-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS663839693142', '小林蓮', 1, '+86 135-9421-4689', 2, '532630708870072396', '42F, 531 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-11-13', 0, 0, 'renkobayashi', '2008-11-06', 'ren49', '2009-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS529901962089', 'Kenneth Diaz', 1, '+81 80-5282-5856', 4, '838941931173157055', '日本東京中央区銀座三丁目12番1号10階', '1991-10-31', 0, 0, 'diaz4', '2007-12-28', 'diazken', '2017-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS779653450378', '韓惠敏', 0, '+81 3-7954-3102', 1, '221932352178302060', '日本東京品川区東五反田五丁目2番18号34号室', '1986-04-28', 0, 0, 'waimanh3', '2015-01-23', 'wmha74', '2006-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS165510777294', '前田百花', 1, '+86 21-6834-8421', 0, '531765515048791297', '中国上海市闵行区宾川路785号华润大厦39室', '1990-11-02', 0, 0, 'mmomoka', '2002-02-15', 'maedamomoka45', '2004-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS178104212450', '赵云熙', 0, '+44 5047 739495', 3, '983823061360150470', 'Flat 18, 72 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1988-05-11', 0, 0, 'zhao1985', '2013-08-05', 'yunxizhao', '2020-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS599014639142', '大野聖子', 0, '+86 20-7318-2083', 2, '204916609428787723', '中国广州市天河区天河路887号47楼', '1992-11-19', 0, 0, 'sono5', '2014-06-20', 'oseiko', '2019-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS059113966915', '馮秀文', 1, '+44 5288 453967', 4, '047517017864002393', 'Unit 4, Oxford Eco Centre, 354 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-02-02', 0, 0, 'fungsm1106', '2012-08-31', 'saumanfung', '2003-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS350316271846', '大塚葉月', 1, '+1 330-135-4277', 3, '635663196505452432', '879 Fern Street Suite 33, Akron, OH 44307, United States', '1993-01-19', 0, 0, 'otsukah6', '2001-06-24', 'otsuka211', '2007-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS347269365448', '高橋架純', 1, '+86 167-3590-8309', 1, '974970229043192966', '中国成都市锦江区红星路三段15号华润大厦47室', '1993-12-05', 0, 0, 'takahashikasu', '2003-04-02', 'takahashika', '2007-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS629964128586', 'Charles Munoz', 0, '+86 196-1424-3953', 4, '406892832405522971', '中国上海市浦东新区橄榄路401号9楼', '1995-06-11', 0, 0, 'charles306', '2018-11-26', 'charlesmunoz', '2002-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS579879797667', '侯致远', 0, '+81 74-157-6392', 3, '840771154183713660', 'Rm. 10, 3-9-14 Gakuenminami, Nara, Japan', '1990-11-27', 0, 0, 'zhou9', '2002-12-08', 'zhiyuanh', '2016-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS696092247100', '松本玲奈', 1, '+1 212-788-8113', 3, '689850228672497895', '758 Bank Street Apt 29, New York, NY 10014, United States', '1991-02-04', 0, 0, 'matsumoto619', '2020-10-20', 'rena41', '2018-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS492761007532', '内田美月', 1, '+1 312-139-7775', 1, '922168661440634812', '828 North Michigan Ave Apt 19, Chicago, IL 60611, United States', '1992-08-01', 0, 0, 'umitsuki', '2000-10-28', 'uchida5', '2002-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS778238541551', '彭睿', 1, '+86 755-3568-6397', 3, '338922204384272800', 'Room 50, CR Building, 91 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-09-01', 0, 0, 'per', '2016-05-22', 'peng5', '2014-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS084714874463', '廖子异', 1, '+81 52-799-1447', 3, '241023437175474561', '31-kai, 7 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-01-04', 0, 0, 'ziliao', '2006-09-26', 'ziliao98', '2011-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS350003465696', '李睿', 1, '+44 (116) 151 7209', 1, '443008330516643169', 'Block 8, 74 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-04-07', 0, 0, 'rul6', '2012-02-19', 'ruli', '2005-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS718402713030', '林淑怡', 0, '+81 66-389-4043', 3, '983515727930736826', '30-kai, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1997-03-23', 0, 0, 'lamsy10', '2011-02-04', 'lamsy', '2014-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS075677555885', '马晓明', 0, '+86 10-0194-0875', 3, '922292488726951850', '中国北京市东城区东单王府井东街145号华润大厦15室', '1989-03-31', 0, 0, 'maxi', '2010-03-13', 'max', '2009-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS354664496695', '阮慧儀', 0, '+1 312-080-1241', 3, '851146959146084073', '242 Rush Street Apt 14, Chicago, IL 60611, United States', '1996-12-12', 0, 0, 'ywy923', '2002-04-10', 'waiyeey', '2010-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS218325402577', '张璐', 1, '+1 213-033-4644', 2, '270693165348515702', '943 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-08-03', 0, 0, 'zhanglu', '2010-08-19', 'lzhang', '2012-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS995154593953', '雷惠敏', 1, '+81 74-140-4624', 3, '874040169474704144', 'Rm. 47, 3-9-2 Gakuenminami, Nara, Japan', '1992-02-11', 0, 0, 'louwm', '2016-03-09', 'wml1986', '2014-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS845022048397', '木下彩乃', 0, '+44 5040 829112', 3, '338124104270644779', 'Block 13, 906 New Street, Birmingham, B2 4DB, United Kingdom', '1994-04-24', 0, 0, 'ayanokino', '2015-11-12', 'kinoshitaayano07', '2002-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS191618350085', '朱世榮', 0, '+86 168-7947-7677', 3, '080075115306492674', '中国上海市浦东新区橄榄路207号4栋', '1988-12-03', 0, 0, 'chsaiwing10', '2021-04-21', 'chusw', '2001-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS238682363638', 'Norma Stephens', 0, '+44 7165 279255', 3, '461641435986878926', 'Block 38, 286 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-02-17', 0, 0, 'normastephens6', '2015-05-09', 'stephensnorma', '2009-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS261205690132', '邵仲賢', 0, '+86 28-073-3631', 3, '893096965789257288', 'No.3 building, No. 258, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-04-03', 0, 0, 'chungyinsiu', '2001-02-23', 'sicy619', '2010-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS299173868450', '谷秀文', 0, '+81 90-2021-0634', 1, '571423501840119888', 'Rm. 10, 3-9-9 Gakuenminami, Nara, Japan', '1995-12-27', 0, 0, 'koosauman', '2015-12-11', 'sauman710', '2009-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS504871600760', '胡嘉伦', 1, '+1 213-484-0233', 3, '638961138664704945', '633 Wall Street Suite 14, Los Angeles, CA 90003, United States', '1985-06-28', 0, 0, 'jh918', '2010-02-10', 'hujial', '2001-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS467684075154', '姚永權', 0, '+1 614-578-7782', 1, '822591525081247015', '287 Diplomacy Drive Apt 39, Columbus, GA 43228, United States', '1987-05-27', 0, 0, 'wkyeow8', '2015-06-18', 'yeowwingkuen', '2022-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS572897933894', '清水結翔', 0, '+86 10-4826-0508', 1, '160071124577302015', 'Room 24, CR Building, 942 028 County Rd, Yanqing District, Beijing, China', '1988-11-18', 0, 0, 'yuitshim', '2020-11-20', 'yuito3', '2002-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS123101035791', '范宇宁', 0, '+44 5376 745520', 3, '674881839332948383', 'Flat 14, 422 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-10-27', 0, 0, 'fan609', '2013-10-09', 'fayuning2', '2008-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS518234595481', 'Alexander Cox', 0, '+44 7053 965855', 0, '885065620890826294', 'Flat 39, 936 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1998-10-29', 0, 0, 'alexaco', '2017-04-11', 'cox10', '2010-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS878503844739', 'Brandon Russell', 0, '+81 66-189-5502', 1, '273351064896376001', '日本おおさかし平野区加美東四丁目9番12号11号室', '1990-09-14', 0, 0, 'brandon7', '2008-05-18', 'brandon08', '2002-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS342301322957', '桜井陽太', 0, '+86 769-7621-9888', 1, '501819064038029409', '中国东莞环区南街二巷774号38栋', '1994-11-29', 0, 0, 'yotsak', '2010-11-02', 'sakyota1111', '2018-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS094340427503', '熊子韬', 1, '+86 196-5014-4801', 1, '665453903582778676', '中国深圳罗湖区蔡屋围深南东路767号16栋', '1985-02-07', 0, 0, 'zitao88', '2001-08-09', 'zitaxio', '2005-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS454164645084', '郭子异', 1, '+81 80-9158-0789', 2, '651038127170845143', 'Rm. 32, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-05-31', 0, 0, 'ziygu4', '2021-09-23', 'zgu111', '2000-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS164753795875', 'Barbara Freeman', 1, '+1 718-677-7530', 4, '353520852447918567', '791 1st Ave Suite 7, Brooklyn, NY 11220, United States', '1992-06-25', 0, 0, 'freemanbarbara', '2015-07-02', 'freb3', '2015-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS819507698627', 'Margaret Hamilton', 1, '+44 5835 158145', 1, '811574126806702125', 'Block 36, 138 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-02-25', 0, 0, 'marghamilton', '2016-12-10', 'mhami', '2018-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS950874404183', 'Danielle Holmes', 0, '+86 195-0674-5411', 3, '082570254994128642', '中国广州市白云区小坪东路563号8室', '1997-03-22', 0, 0, 'hdanie', '2012-07-09', 'holmesda5', '2009-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS602865032049', '木下百花', 1, '+1 312-979-6870', 0, '217145963581486899', '331 Pedway 3rd Floor, Chicago, IL 60601, United States', '1998-07-07', 0, 0, 'momokakinos2004', '2013-05-06', 'momoka428', '2007-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS226830798323', '高云熙', 1, '+1 330-653-3454', 0, '562419784618563462', '424 Riverview Road Apartment 7, Akron, OH 44313, United States', '1995-10-13', 0, 0, 'yuga', '2011-01-02', 'gyunxi301', '2017-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS296309766515', '江嘉伦', 0, '+86 755-7408-0419', 4, '852743727138618222', '中国深圳罗湖区田贝一路745号华润大厦9室', '1992-04-11', 0, 0, 'jiang5', '2015-10-26', 'jjiang', '2013-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS636475255211', '林大輔', 0, '+86 131-2691-2510', 3, '354677797973978223', 'Room 34, 632 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-03-12', 0, 0, 'daish92', '2017-02-03', 'hayd', '2019-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS731303732860', 'Crystal Scott', 1, '+86 769-0336-6805', 3, '897907589733162016', '中国东莞坑美十五巷407号35栋', '1995-05-12', 0, 0, 'sc1', '2006-05-19', 'crystscott', '2001-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS881537422657', '于杰宏', 1, '+86 188-3796-1345', 0, '517699548373251366', 'Room 46, 276 Huanqu South Street 2nd Alley, Dongguan, China', '1998-11-13', 0, 0, 'jiehong02', '2002-04-04', 'jiyu', '2020-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS892665985957', '钟子异', 0, '+86 760-128-1355', 3, '665979910778788510', '10F, 399 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-02-22', 0, 0, 'zhzi719', '2008-12-03', 'zhoziy2', '2018-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS095048737913', 'Christopher Cruz', 0, '+86 769-7688-0103', 4, '291679128199169935', '39F, 89 Shanhu Rd, Dongguan, China', '1989-06-05', 0, 0, 'cruz727', '2005-03-10', 'ccruz', '2021-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS376011603138', 'Allen Parker', 1, '+86 10-336-9436', 0, '681504103655804880', '中国北京市海淀区清河中街68号504号31室', '1987-11-07', 0, 0, 'allen4', '2022-03-05', 'parkall', '2011-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS503866160408', '洪德華', 0, '+86 10-541-8037', 4, '100260680084597068', '15F, 648 FuXingMenNei Street, XiCheng District, Beijing, China', '1990-05-09', 0, 0, 'hungtakwah301', '2013-04-25', 'twhun', '2009-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS406372344431', 'Danny Russell', 0, '+1 213-671-6701', 1, '162320708576246822', '475 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1987-12-22', 0, 0, 'dannyru', '2002-05-23', 'russelldanny423', '2000-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS270186988976', '蔡嘉伦', 1, '+81 80-0433-9961', 2, '825909990460319894', 'Rm. 38, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-01-13', 0, 0, 'cai719', '2017-08-10', 'jialuncai', '2006-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS242987439286', 'Susan Marshall', 1, '+81 11-544-1367', 1, '934427226593419234', '日本札幌白石区菊水三条五丁目2番20号9階', '1989-04-30', 0, 0, 'susanmars917', '2014-08-17', 'susm', '2009-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS023789167457', '陳安娜', 1, '+81 52-367-8592', 2, '299624449652192515', '日本なごやし瑞穂区河岸町四丁目20番10号11階', '1987-06-03', 0, 0, 'chan3', '2007-07-24', 'onchan', '2021-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS166034222990', '容國權', 0, '+81 74-075-9448', 2, '097775526426738487', '6-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-03-31', 0, 0, 'kky', '2012-05-15', 'yukk110', '2016-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS291320093563', '朱子韬', 0, '+81 52-810-3548', 2, '673988435153470482', '1-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-12-29', 0, 0, 'zhu10', '2018-02-21', 'zizhu', '2005-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS522449936754', 'Chris Bell', 1, '+86 189-1650-9419', 2, '989425251764886273', '中国上海市闵行区宾川路944号30楼', '1987-04-24', 0, 0, 'bell1', '2015-08-14', 'chris7', '2013-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS795739330539', '杜家強', 1, '+1 330-596-6636', 1, '737054915153842403', '966 Riverview Road Suite 22, Akron, OH 44313, United States', '1988-06-06', 0, 0, 'to6', '2005-08-05', 'tokk4', '2001-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS804711712045', '邱秀英', 0, '+1 213-125-4326', 3, '059476365659680785', '40 Sky Way Suite 17, Los Angeles, CA 90043, United States', '1988-11-21', 0, 0, 'xq928', '2006-08-05', 'qiuxiuying', '2017-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS582097180504', '馮朝偉', 0, '+86 167-8358-1806', 2, '444977370499401343', 'Room 3, 781 028 County Rd, Yanqing District, Beijing, China', '1993-02-19', 0, 0, 'fung2', '2003-05-20', 'chiuwaifung', '2000-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS063203109039', '孔睿', 0, '+1 330-964-8458', 1, '912190572342231471', '205 Fern Street Apartment 7, Akron, OH 44307, United States', '1985-02-23', 0, 0, 'kongru', '2020-09-12', 'kongrui', '2000-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS931913857371', 'Evelyn Robinson', 1, '+1 614-613-7113', 2, '839169141039324969', '246 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-04-08', 0, 0, 'evelyn414', '2006-11-14', 'erobin', '2004-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS676275846744', '増田蓮', 1, '+44 (151) 989 3509', 0, '894254494940974850', 'Unit 33, Oxford Eco Centre, 887 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-05-02', 0, 0, 'renm', '2015-03-29', 'masuren', '2013-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS252294328718', 'Gregory Gardner', 1, '+44 (121) 055 3126', 2, '911781883442754143', 'Unit 27, Oxford Eco Centre, 542 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-11-17', 0, 0, 'gregory1955', '2016-01-30', 'gardnergrego', '2008-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS693797287818', '任震南', 1, '+44 5368 951234', 3, '793997619726767094', 'Block 15, 329 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1985-04-18', 0, 0, 'zhennan306', '2008-10-27', 'zhere', '2000-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS003595365639', '曹霆鋒', 0, '+81 90-7097-8785', 2, '250982248935895752', 'Rm. 42, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1994-11-04', 0, 0, 'ctingfung', '2016-04-13', 'tingfungcho1956', '2009-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS035978118867', '戚頴思', 0, '+86 156-9592-4409', 0, '728286255664445295', '中国上海市浦东新区橄榄路832号19栋', '1990-11-10', 0, 0, 'wingsze2', '2005-07-26', 'wingszec1014', '2001-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS916067911525', 'Ellen Bennett', 1, '+1 312-367-5467', 2, '563004465646225134', '24 Rush Street Apt 20, Chicago, IL 60611, United States', '1995-04-08', 0, 0, 'ellen52', '2014-05-05', 'bellen', '2012-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS745611680802', '戚慧敏', 1, '+81 80-7609-2387', 1, '422243261178318963', '日本札幌白石区菊水三条五丁目2番3号37階', '1997-05-11', 0, 0, 'chic78', '2017-12-14', 'chicwm', '2002-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS272321647703', '文家文', 0, '+44 7372 133347', 1, '259603001407192111', 'Unit 14, Oxford Eco Centre, 394 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-12-06', 0, 0, 'kam', '2000-07-07', 'kmman', '2020-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS522709163168', '中野翼', 1, '+1 212-473-5047', 3, '971880025759610339', '790 Bank Street Apartment 42, New York, NY 10014, United States', '1994-06-10', 0, 0, 'nakanotsuba2', '2003-10-21', 'nakano9', '2011-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS745665419681', '上野拓哉', 1, '+81 90-8746-1557', 1, '683084313389790356', '3F, 6-1-13, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-05-30', 0, 0, 'takuya6', '2010-10-29', 'ueno828', '2017-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS688604088246', '菅原七海', 1, '+81 52-033-0301', 3, '937825285700845919', '日本なごやし熱田区千年二丁目5番10号34階', '1991-11-28', 0, 0, 'nanami7', '2012-09-24', 'nsugawara', '2003-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS042066028438', 'Theresa Payne', 0, '+1 838-967-2623', 3, '483752193118908743', '201 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-07-18', 0, 0, 'paynether1116', '2000-01-24', 'paynetheresa2', '2011-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS232693110972', '清水葉月', 1, '+1 330-482-7938', 1, '496860703607242915', '98 Fern Street Apartment 46, Akron, OH 44307, United States', '1988-03-19', 0, 0, 'shimizuhazuki', '2002-04-04', 'shimizu17', '2008-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS933290090786', 'Juan Sullivan', 1, '+81 70-7403-7870', 4, '193974151975640739', '38-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-08-23', 0, 0, 'sulj617', '2009-08-12', 'sullivan44', '2012-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS829455823477', '官天樂', 1, '+81 66-925-2885', 0, '878525710302684893', '日本おおさかし西成区天神ノ森二丁目1番8号28階', '1985-05-16', 0, 0, 'koontl', '2019-01-15', 'koonti14', '2003-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS936114374389', '汤子韬', 1, '+81 70-0370-8538', 2, '122140032605867315', '日本おおさかし近江堂一丁目7番16号28階', '1987-08-09', 0, 0, 'zitao4', '2015-02-16', 'tang14', '2013-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS361364271042', '陶淑怡', 1, '+81 52-753-2051', 1, '710964815706699590', '日本なごやし北区清水三丁目19番20号27階', '1995-11-17', 0, 0, 'sytao1', '2007-01-06', 'tasu', '2013-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS226385764462', '藤惠妹', 0, '+81 52-688-2342', 3, '656440793217575064', '25-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-05-17', 0, 0, 'huimeitang', '2014-06-17', 'huimeita9', '2010-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS842545977414', 'Brenda Stephens', 1, '+1 330-724-1909', 0, '917327576948783156', '699 Collier Road Apartment 31, Akron, OH 44320, United States', '1986-06-19', 0, 0, 'stephens2', '2010-10-01', 'brendastephens', '2004-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS694615179344', '田中花', 1, '+86 168-5825-3902', 0, '346824218402731381', '2F, 481 028 County Rd, Yanqing District, Beijing, China', '1994-07-10', 0, 0, 'hanatana316', '2019-02-26', 'hanatan210', '2017-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS560634167785', 'Nicholas Carter', 1, '+86 760-184-5385', 4, '660387689049206526', '中国中山乐丰六路38号48栋', '1990-07-17', 0, 0, 'carn10', '2019-01-11', 'nicholascarter', '2010-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS990640661148', 'Elizabeth Owens', 0, '+81 90-3011-4954', 3, '267620505719931217', 'Rm. 44, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1987-08-31', 0, 0, 'elowens', '2014-04-16', 'oe8', '2014-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS085435680271', '汪岚', 0, '+86 163-0514-3268', 2, '754941542650679925', '中国深圳龙岗区学园一巷215号7楼', '1988-01-01', 0, 0, 'lawan', '2013-05-16', 'wlan', '2003-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS637763086065', '崔榮發', 0, '+86 769-900-3268', 3, '922909791319223267', '中国东莞坑美十五巷712号40室', '1990-06-12', 0, 0, 'wfchoi2007', '2007-06-19', 'chwingfat', '2015-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS725438078356', '江晓明', 1, '+86 161-9550-7872', 2, '531879498889183046', 'No.4 building, 435 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-01-01', 0, 0, 'jiang20', '2011-01-12', 'xiaomingjiang1943', '2013-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS567629897103', '小林花', 1, '+44 (20) 2900 6413', 4, '163330734337228633', 'Block 20, 148 Maddox Street, London, W1S 1PU, United Kingdom', '1988-08-31', 0, 0, 'kobayashi7', '2015-09-23', 'hana3', '2009-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS247103093737', '于震南', 1, '+86 20-767-7628', 2, '678338602057456815', '中国广州市白云区机场路棠苑街五巷8号15楼', '1989-06-24', 0, 0, 'zhenyu', '2005-07-02', 'yuz', '2018-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS146106102584', '黃力申', 1, '+44 5371 892378', 3, '215877957698906462', 'Block 14, 436 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-04-08', 0, 0, 'lswong209', '2020-08-02', 'likswong', '2001-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS089483658927', 'Clarence Jackson', 1, '+44 (121) 291 8515', 2, '806206007763124242', 'No.41 Main building, 472 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-11', 0, 0, 'jacksc6', '2020-08-20', 'clarence1993', '2014-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS904324769466', 'Carrie Clark', 1, '+81 90-5909-0206', 3, '300091823247670308', '日本東京中央区銀座三丁目12番14号6号室', '1997-12-02', 0, 0, 'clcarrie1121', '2020-04-06', 'cclark73', '2020-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS478528022346', 'Tony Myers', 1, '+86 755-4721-4193', 0, '483790636233520622', 'No.14 building, 423 Shennan Ave, Futian District, Shenzhen, China', '1989-10-05', 0, 0, 'myerstony', '2011-05-26', 'myerstony', '2007-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS299215214405', '清水凛', 0, '+1 330-151-9818', 2, '727754782184628516', '700 Riverview Road Apartment 32, Akron, OH 44313, United States', '1996-11-24', 0, 0, 'ris', '2005-06-07', 'shimizu10', '2018-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS255284408760', '甘曉彤', 1, '+81 70-8420-6359', 3, '446801779128863276', '日本東京品川区東五反田五丁目2番3号47号室', '1993-01-15', 0, 0, 'kamht', '2014-03-30', 'hiutungkam12', '2002-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS205709408576', '後藤美羽', 1, '+81 90-0404-9248', 3, '591669435336009516', 'Rm. 8, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-07-20', 0, 0, 'gmiu', '2010-04-19', 'miu606', '2005-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS263272897279', 'Sylvia Scott', 1, '+44 (151) 766 8273', 1, '876530617772823535', 'Flat 38, 854 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1998-03-26', 0, 0, 'scottsylvia', '2014-11-05', 'ssyl', '2000-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS611614077190', '丁璐', 0, '+81 80-2620-3445', 1, '529077924041569408', 'Rm. 7, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-01-04', 0, 0, 'luding1021', '2016-10-19', 'dinlu', '2000-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS189910263157', '文心穎', 1, '+44 (1865) 70 9297', 1, '525664276504666931', 'Unit 27, Oxford Eco Centre, 612 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-09-18', 0, 0, 'swman', '2012-09-17', 'masumwing', '2003-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS117785005958', '湯霆鋒', 0, '+44 (116) 871 8086', 3, '239219403331632545', 'Flat 47, 813 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-10', 0, 0, 'tongtf06', '2010-07-28', 'tftong', '2000-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS112757974641', 'Mike Sanders', 1, '+86 195-0107-7654', 2, '272815408749981170', 'No.1 building, 414 Shennan Ave, Futian District, Shenzhen, China', '1994-03-26', 0, 0, 'mis', '2003-03-02', 'sanders1', '2008-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS517728387295', 'Ruth Alvarez', 1, '+86 760-664-6123', 0, '483228333200330071', '中国中山紫马岭商圈中山五路455号35楼', '1986-05-29', 0, 0, 'ruthalvar210', '2013-12-29', 'ralvarez109', '2019-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS388092402590', '严云熙', 0, '+1 213-427-2421', 2, '250176313334027890', '158 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1988-06-17', 0, 0, 'yanyu', '2016-03-28', 'yayunxi10', '2005-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS901848508087', '周秀英', 1, '+44 (151) 511 6069', 0, '790575458345383497', 'Flat 2, 971 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-10', 0, 0, 'zhoux', '2006-07-22', 'xzh6', '2009-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS082836831828', '餘國榮', 1, '+44 5214 220015', 3, '246098528956949785', 'Unit 9, Oxford Eco Centre, 539 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-01-11', 0, 0, 'kwokwingyue', '2015-01-07', 'yuekw', '2012-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS315217552099', '竹内七海', 1, '+44 (1865) 10 1120', 0, '708820085554879396', 'No.22 Main building, 129 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-05-18', 0, 0, 'nanamitakeuchi4', '2014-10-13', 'tanan9', '2001-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS478735633883', 'Earl Murphy', 0, '+86 168-5162-9256', 2, '606057318497907213', '中国广州市海珠区江南西路913号40楼', '1997-09-04', 0, 0, 'earlmurp', '2002-10-15', 'emurphy54', '2019-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS122729700335', '徐麗欣', 1, '+44 7570 156202', 2, '120980979440269144', 'No.2 Main building, 355 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-07-03', 0, 0, 'tsuilaiyan', '2001-10-21', 'tsuily', '2015-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS214359914756', '邱青雲', 0, '+1 213-642-6810', 0, '278717865089872360', '25 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-06-05', 0, 0, 'cwy', '2006-01-03', 'chingwan513', '2004-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS514065976884', 'Marie Nelson', 1, '+86 20-836-8434', 1, '357465087356608627', '中国广州市越秀区中山二路433号44楼', '1990-11-01', 0, 0, 'nelsonmar1962', '2005-01-16', 'nelsonmar', '2020-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS001406867074', '太田陽太', 1, '+86 21-2989-5138', 1, '814414529242646705', '中国上海市闵行区宾川路761号49号楼', '1994-03-02', 0, 0, 'yotaot', '2004-12-24', 'otayo', '2016-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS608935074320', '森七海', 1, '+81 80-4061-7966', 1, '340324805688973841', '日本おおさかし近江堂一丁目7番15号24号室', '1999-03-02', 0, 0, 'monan512', '2009-08-27', 'nanami2', '2005-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS873296013343', '官家強', 1, '+44 7629 502492', 4, '253108650242233289', 'Unit 40, Oxford Eco Centre, 44 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-11-25', 0, 0, 'kkakeung', '2012-04-18', 'kakeung9', '2018-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS941373608921', 'Joshua Meyer', 0, '+86 20-9027-7723', 1, '552535311418718383', 'No.24 building, 575 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-08-29', 0, 0, 'meyejosh', '2021-07-24', 'joshuameyer', '2018-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS478424027626', 'Joshua Foster', 0, '+44 (161) 703 6493', 2, '695438015205368760', 'Block 12, 105 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-06-12', 0, 0, 'fosterjoshua80', '2008-09-09', 'jfo', '2000-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS914712786933', '段云熙', 1, '+86 154-0414-0212', 1, '785258112292286409', '33F, 3 Dongtai 5th St, Dongguan, China', '1992-07-09', 0, 0, 'duanyunxi', '2012-07-01', 'duayunxi215', '2006-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS557138443362', '钟秀英', 0, '+86 760-5216-1058', 3, '759266634814823254', 'No.29 building, 710 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-03-25', 0, 0, 'xiuyizhong', '2007-06-29', 'xzhon', '2008-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS909269371164', '阎嘉伦', 0, '+81 80-3908-4605', 0, '098527568841067484', '日本おおさかし東住吉区東田辺三丁目27番15号15階', '1985-12-27', 0, 0, 'yajialu1960', '2002-04-19', 'yjia', '2020-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS451779433812', 'Brandon Hunter', 0, '+86 755-411-6913', 2, '150460744522944252', '中国深圳龙岗区布吉镇西环路442号30栋', '1997-01-09', 0, 0, 'hunterb', '2021-12-21', 'hunterbrandon', '2012-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS907764815526', '野口光', 0, '+1 212-025-9476', 0, '382913872757853945', '796 West Houston Street Apartment 42, New York, NY 10014, United States', '1986-05-22', 0, 0, 'hikaru4', '2004-02-11', 'hiknoguchi10', '2020-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS535789794732', 'Frederick Rivera', 1, '+81 80-4012-7327', 4, '752382015377808522', '日本札幌清田区真栄四条五丁目19番11号5号室', '1988-03-29', 0, 0, 'frerivera', '2008-07-01', 'rivfrederick', '2001-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS761598826554', '邹詩涵', 1, '+86 198-5697-2247', 3, '870708042377492217', '中国广州市白云区小坪东路821号27室', '1997-10-25', 0, 0, 'zoushi', '2000-06-22', 'zshihan2009', '2001-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS170829091374', 'Virginia Graham', 0, '+86 155-1502-8394', 2, '703519117014651035', '中国广州市白云区小坪东路952号29楼', '1989-12-25', 0, 0, 'gvirginia', '2009-05-02', 'gravirginia', '2017-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS419618297542', 'Richard Marshall', 0, '+86 755-863-4325', 1, '749001581778571637', 'No.36 building, 319 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-03-03', 0, 0, 'mari', '2003-04-17', 'richamars', '2014-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS888665682617', '車天榮', 1, '+81 11-453-3050', 1, '423461676453657835', '日本札幌白石区菊水三条五丁目4番10号28階', '1991-07-20', 0, 0, 'tinwingche', '2002-06-11', 'tiche', '2020-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS389410379609', '叶安琪', 1, '+44 7614 308702', 1, '115181307483808591', 'No.47 Main building, 65 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-09-23', 0, 0, 'anqi78', '2001-11-21', 'yeanqi1941', '2016-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS113531222243', '上田陽太', 1, '+81 80-6240-1495', 2, '597364642129080276', 'Rm. 4, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-09-10', 0, 0, 'yotaueda', '2021-02-15', 'ueyota', '2011-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS598118305236', '葉青雲', 1, '+44 (1865) 82 2874', 4, '085829903425544006', 'No.12 Main building, 61 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-08-28', 0, 0, 'chingwanyip05', '2020-04-01', 'chyi20', '2020-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS283783154012', '池田彩乃', 0, '+81 80-2416-9609', 1, '592139199689793218', '日本東京渋谷区代々木二丁目3番2号48号室', '1995-11-17', 0, 0, 'ayanoi', '2003-02-12', 'ayikeda6', '2013-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS174641247914', '严安琪', 0, '+44 (161) 186 1177', 1, '544606005143176837', 'Flat 24, 89 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-07-13', 0, 0, 'anqi708', '2008-03-24', 'yananq', '2003-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS470025097354', '渡辺陽菜', 1, '+81 66-944-7507', 3, '640280748752787728', '40F, 2-1-13 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-07-25', 0, 0, 'hina2', '2016-12-31', 'satohina', '2009-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS426500869922', 'Valerie Sullivan', 0, '+1 213-875-5501', 1, '284169226777509515', '241 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1997-01-21', 0, 0, 'valesullivan6', '2004-07-18', 'valerie51', '2008-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS129481843704', '小野舞', 0, '+1 330-401-5750', 4, '101269502182762519', '866 Fern Street Apt 3, Akron, OH 44307, United States', '1986-04-06', 0, 0, 'maiono', '2017-03-16', 'onoma', '2006-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS065808918421', '應力申', 1, '+44 7756 422102', 0, '575888077391213044', 'Block 32, 847 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1992-08-17', 0, 0, 'liksunying7', '2005-01-14', 'lsying', '2018-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS206897318426', '斎藤紗良', 1, '+86 10-5594-3068', 4, '198351179742630985', '中国北京市西城区复兴门内大街133号17栋', '1988-06-21', 0, 0, 'saito98', '2006-10-16', 'sasar', '2021-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS028602341157', '罗震南', 0, '+86 769-381-3258', 0, '579629451408635124', '中国东莞坑美十五巷475号8楼', '1995-05-08', 0, 0, 'lzh', '2015-04-22', 'zluo1203', '2007-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS211293721963', '林慧儀', 1, '+86 10-100-6264', 4, '110912855454001274', '中国北京市延庆区028县道551号华润大厦40室', '1988-03-13', 0, 0, 'waiyee815', '2020-10-01', 'waiyeel', '2004-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS228509341751', '後藤葉月', 0, '+86 10-207-9364', 0, '593234028092603652', 'No.10 building, 125 Sanlitun Road, Chaoyang District, Beijing, China', '1989-02-03', 0, 0, 'gothazuki', '2009-02-23', 'hazuki4', '2005-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS806911289351', 'Steven Clark', 0, '+81 74-127-3332', 1, '821075144816398391', '25F, 1-7-17 Saidaiji Akodacho, Nara, Japan', '1989-03-18', 0, 0, 'clarksteven', '2006-05-21', 'steven80', '2016-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS932522917334', '郑岚', 1, '+86 10-8997-9173', 3, '051428491988478391', 'No.21 building, 805 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-02-18', 0, 0, 'zhenl', '2015-05-20', 'lanzheng1231', '2007-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS441736337700', '向岚', 0, '+44 7792 093624', 1, '778557790610872249', 'Flat 12, 798 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-03-13', 0, 0, 'laxia71', '2021-02-17', 'lanxiang', '2019-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS619456332135', '贺杰宏', 0, '+44 5588 711294', 1, '221209725083926013', 'Unit 34, Oxford Eco Centre, 828 Park End St, Oxford, OX1 1JD, United Kingdom', '1995-08-16', 0, 0, 'jihe', '2002-05-01', 'jiehohe', '2003-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS619616868700', 'Edna Lee', 0, '+86 143-1926-0789', 2, '085275566692347278', 'Room 40, 161 Hongqiao Rd., Xu Hui District, Shanghai, China', '1989-06-24', 0, 0, 'edna10', '2021-03-16', 'edna7', '2013-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS458638920438', '徐子韬', 1, '+1 212-497-1232', 4, '974181587246201080', '764 West Houston Street 3rd Floor, New York, NY 10014, United States', '1985-08-05', 0, 0, 'xuzita9', '2006-06-25', 'zitaxu', '2020-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS123276744096', '金子絢斗', 0, '+86 20-526-2575', 2, '406393972350248947', 'No.40 building, 141 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1997-10-16', 0, 0, 'akane', '2017-12-09', 'kanekoayato1', '2007-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS518521172578', '黄嘉伦', 1, '+81 3-3107-9466', 2, '458986493495204825', '日本東京中央区銀座三丁目12番11号39階', '1986-10-14', 0, 0, 'hjial', '2007-07-05', 'jh6', '2003-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS169327154076', '酒井海斗', 0, '+86 149-7095-7337', 0, '804012729144190633', '中国北京市東城区東直門內大街864号华润大厦17室', '1995-06-23', 0, 0, 'sakait', '2011-01-04', 'kasak5', '2008-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS156709364914', '張杰倫', 1, '+86 182-5400-5708', 1, '564885550791413587', '中国深圳福田区深南大道792号49室', '1986-12-19', 0, 0, 'chiehluncheung', '2020-05-13', 'chche', '2009-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS452296072684', 'Jason Vasquez', 1, '+81 90-9715-4526', 3, '344704027743106936', '17F, 3-9-7 Gakuenminami, Nara, Japan', '1998-04-24', 0, 0, 'vajaso68', '2006-11-07', 'vasquezjas61', '2021-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS258716296895', '關慧敏', 1, '+86 20-5881-8561', 2, '606282227273872375', 'No.21 building, 907 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-12-21', 0, 0, 'wmkw', '2016-05-26', 'kwaiman', '2017-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS075383054866', 'Andrew Garza', 1, '+81 80-2793-1330', 1, '891606377348404480', '日本なごやし熱田区千年二丁目5番20号23号室', '1989-04-02', 0, 0, 'andrew1970', '2012-02-23', 'garza8', '2006-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS532749773126', 'Jason Kelly', 1, '+86 755-8464-2610', 4, '059922034093018767', 'No.45 building, 450 Shennan Ave, Futian District, Shenzhen, China', '1995-11-24', 0, 0, 'kjason807', '2003-04-13', 'kelljason40', '2012-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS676422788719', '森光莉', 0, '+81 70-6480-5908', 4, '366581672040505993', 'Rm. 15, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-08-18', 0, 0, 'mohi', '2018-05-07', 'hmori', '2004-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS522173897054', '姚安琪', 1, '+1 312-148-4000', 0, '672330516195300471', '104 Pedway Apartment 32, Chicago, IL 60601, United States', '1991-05-10', 0, 0, 'yeowok', '2003-05-08', 'okyeow', '2020-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS072840440037', '張國榮', 1, '+81 90-0501-9112', 4, '099561980480823564', '日本なごやし瑞穂区河岸町四丁目20番6号40号室', '1998-03-09', 0, 0, 'cheungkw', '2006-03-19', 'kwc4', '2015-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS202825174853', '樊梓晴', 0, '+44 (161) 996 6361', 0, '559814322553205327', 'Block 49, 328 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-12', 0, 0, 'tszchingfan', '2013-10-31', 'tszchingfan9', '2014-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS258308904262', '木下大和', 0, '+86 162-8074-1948', 1, '159543074191128319', 'Room 1, 231 West Chang''an Avenue, Xicheng District, Beijing, China', '1995-11-11', 0, 0, 'kinosy8', '2001-08-12', 'kyamato9', '2021-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS542559998614', '吕岚', 0, '+81 80-6847-3827', 3, '506566898420162950', '日本なごやし守山区瀬古東二丁目171番9号47階', '1991-02-04', 0, 0, 'lulan1', '2013-10-20', 'llu44', '2014-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS473969590229', '木村蒼士', 1, '+86 159-5641-9478', 2, '482436134825340592', 'No.24 building, 285 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-12-16', 0, 0, 'kimuraao', '2004-10-29', 'kaosh8', '2016-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS712559028186', '江子异', 1, '+86 156-5627-6925', 2, '972846761886406213', 'Room 6, CR Building, 236 Kengmei 15th Alley, Dongguan, China', '1989-03-16', 0, 0, 'jiang729', '2002-04-19', 'jiaziy1', '2007-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS912857438113', '萬天榮', 0, '+1 838-336-9669', 1, '195411716497278091', '588 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-07-15', 0, 0, 'mtinwing', '2016-03-14', 'twmeng1963', '2019-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS368929317995', 'Walter Webb', 0, '+81 90-3553-0290', 0, '156357446885322581', '46-kai, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-08-17', 0, 0, 'walterwebb', '2000-12-30', 'walterw08', '2017-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS840941418309', '陶國榮', 1, '+1 213-297-6103', 2, '180233915599982524', '167 Wall Street Apt 34, Los Angeles, CA 90003, United States', '1990-10-11', 0, 0, 'taokwokwing', '2002-06-24', 'tao67', '2002-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS248997511185', '萬明', 0, '+86 151-3146-5354', 1, '794809473132654331', '中国东莞珊瑚路369号25室', '1991-03-10', 0, 0, 'minmeng5', '2007-11-15', 'mingmeng313', '2001-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS338223907868', '市川架純', 0, '+86 195-6585-4672', 0, '087826532840139505', '中国深圳福田区深南大道999号华润大厦12室', '1991-01-23', 0, 0, 'ikas', '2004-03-26', 'ichikkas', '2007-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS215477756401', '長谷川凛', 0, '+44 7697 039121', 4, '081057845584915496', 'Flat 3, 997 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-06-15', 0, 0, 'hasegawa8', '2018-07-24', 'hasegawarin', '2004-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS145809439629', 'Christina Murray', 0, '+86 132-5976-6425', 3, '554594911687864541', '中国广州市海珠区江南西路381号34栋', '1993-11-28', 0, 0, 'christinamurray14', '2017-06-03', 'murchristina', '2010-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS223272446230', '赵子韬', 0, '+44 5383 549081', 0, '318139735257033941', 'Block 22, 235 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-01-08', 0, 0, 'zizha', '2005-07-22', 'zitaozhao', '2020-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS173280773178', '梁家輝', 1, '+81 74-990-3832', 2, '540419791211924266', '32-kai, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1989-09-17', 0, 0, 'lkafai8', '2021-05-24', 'leungkf6', '2005-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS217149978395', '山田陽菜', 0, '+86 769-483-4204', 3, '490870664412870181', '中国东莞珊瑚路989号29楼', '1987-01-16', 0, 0, 'yamadh2', '2011-10-26', 'yamadahina5', '2014-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS256247697718', 'Antonio Mills', 1, '+1 213-241-6135', 2, '613350433700436931', '81 Alameda Street Apartment 50, Los Angeles, CA 90002, United States', '1988-09-04', 0, 0, 'antmi', '2001-02-04', 'mant', '2019-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS476778493844', '渡辺涼太', 1, '+1 213-329-7515', 1, '729446040669999018', '670 Sky Way Apartment 21, Los Angeles, CA 90043, United States', '1987-02-19', 0, 0, 'ryota521', '2001-02-18', 'satoryo', '2012-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS329253082067', '金子百花', 0, '+1 614-044-5071', 4, '665412649419766820', '2 Wicklow Road Apartment 25, Columbus, GA 43204, United States', '1997-10-29', 0, 0, 'momkaneko', '2000-03-28', 'kanekmomo', '2008-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS492143835356', 'Christina Marshall', 0, '+44 (121) 538 2837', 1, '234118096944907989', 'No.38 Main building, 744 New Street, Birmingham, B2 4DB, United Kingdom', '1986-02-16', 0, 0, 'chrimarsh05', '2018-08-18', 'marshallchristina', '2015-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS688444580762', '徐麗欣', 0, '+1 330-811-0046', 4, '989473701646097758', '171 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-12-19', 0, 0, 'tsui416', '2019-05-14', 'tsly1008', '2004-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS819956839692', '岡田光', 0, '+1 212-652-9205', 4, '017113245458362253', '844 Canal Street 3rd Floor, New York, NY 10013, United States', '1994-06-12', 0, 0, 'hikaruokada20', '2001-12-28', 'hikaruok6', '2020-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS330661186801', 'Sarah Cook', 1, '+1 312-532-9042', 1, '931552862733953963', '839 North Michigan Ave Suite 25, Chicago, IL 60611, United States', '1995-11-07', 0, 0, 'sarah423', '2021-01-06', 'cooksarah5', '2018-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS315192980018', '中野陸', 0, '+81 11-565-3862', 1, '830127938871232949', '日本札幌白石区菊水三条五丁目4番20号20号室', '1991-02-16', 0, 0, 'nri', '2013-01-09', 'rikunakan', '2016-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS522268943552', '野村花', 0, '+86 180-6352-8757', 0, '459671074746886311', '中国上海市闵行区宾川路541号9楼', '1991-05-04', 0, 0, 'hananomur', '2012-03-26', 'nomhana', '2019-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS841123168038', '高岚', 1, '+81 74-156-1256', 2, '021550111143201438', 'Rm. 40, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1996-01-30', 0, 0, 'gao2013', '2012-11-30', 'gao1015', '2021-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS455825337646', '羅青雲', 1, '+86 28-9405-3558', 3, '679432042841100786', '中国成都市成华区玉双路6号140号华润大厦26室', '1986-08-30', 0, 0, 'lo1942', '2016-01-01', 'chingwanlo', '2014-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS316848004167', 'Elizabeth Hawkins', 1, '+81 90-0392-7963', 2, '203147699833534773', '日本東京港区東新橋一丁目5番11号50階', '1989-12-25', 0, 0, 'elih4', '2022-01-22', 'hawkielizabeth', '2014-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS689547177359', '岩崎大輔', 1, '+1 838-767-2376', 3, '375750960199172950', '649 State Street Apt 39, Albany, NY 12203, United States', '1997-11-13', 0, 0, 'dai', '2017-09-27', 'diwasaki724', '2017-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS354400673477', '武田陽菜', 0, '+1 718-526-6041', 2, '254852513516190516', '292 Columbia St Apartment 24, Brooklyn, NY 11231, United States', '1998-10-25', 0, 0, 'takeda524', '2017-11-19', 'htakeda5', '2006-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS788772067505', '金子凛', 1, '+86 177-0377-5751', 1, '088882593661454408', 'Room 2, CR Building, 278 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-07-20', 0, 0, 'rikane', '2019-09-12', 'kanekor7', '2016-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS047878077320', '佐々木玲奈', 0, '+44 7831 936730', 0, '010382845085618372', 'No.3 Main building, 105 Pollen Street, London, W1S 1NG, United Kingdom', '1994-06-17', 0, 0, 'srena', '2012-09-14', 'rena5', '2014-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS784504072266', 'Margaret Stewart', 1, '+1 330-063-7214', 4, '102349524407563764', '284 West Market Street 3rd Floor, Akron, OH 44333, United States', '1990-02-19', 0, 0, 'stewart3', '2008-02-07', 'stewartmargaret', '2009-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS135844358822', '原田大和', 0, '+1 838-157-1967', 0, '634261421206949267', '550 Broadway Apt 45, Albany, NY 12207, United States', '1989-09-26', 0, 0, 'yamaharada', '2019-11-30', 'haradaya', '2012-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS868408358240', '周致远', 0, '+81 90-6685-7565', 3, '906547777739878532', '日本おおさかし西成区出城一丁目1番11号47号室', '1996-10-02', 0, 0, 'zhz8', '2000-08-01', 'zhozhiyu54', '2021-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS880788723172', '甘發', 0, '+1 213-399-2830', 1, '265685236584306937', '184 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1987-05-01', 0, 0, 'kamfat', '2021-10-12', 'kamf', '2000-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS228546421277', '蔡天樂', 0, '+81 3-7418-5451', 3, '489100380576815168', 'Rm. 31, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-23', 0, 0, 'chotinlok1970', '2006-03-18', 'choi3', '2021-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS190728601251', '蘇頴璇', 0, '+1 838-404-3684', 3, '713673128804101424', '406 Broadway 3rd Floor, Albany, NY 12207, United States', '1986-04-30', 0, 0, 'so9', '2015-08-01', 'wingss', '2003-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS220682082285', '藍榮發', 0, '+44 7051 605191', 0, '575540385216222122', 'Flat 3, 528 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-11-23', 0, 0, 'wingfat61', '2020-01-31', 'wingfatla', '2001-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS321987477689', '孫永發', 0, '+81 11-000-1221', 4, '963436947045068304', '日本札幌清田区真栄四条五丁目19番9号36階', '1988-02-28', 0, 0, 'wfhsua', '2008-06-30', 'hsuan82', '2016-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS201725076288', '田中優奈', 1, '+44 (151) 390 9176', 2, '723562146097728364', 'Flat 14, 154 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-05-03', 0, 0, 'ytanaka', '2002-06-26', 'yutanaka620', '2006-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS083157532261', 'Emily Diaz', 0, '+86 184-3683-5410', 0, '122645057468156663', 'Room 46, 329 Ganlan Rd, Pudong, Shanghai, China', '1995-03-07', 0, 0, 'diaz1953', '2014-04-12', 'emdiaz', '2000-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS101395723677', '佐藤舞', 1, '+81 90-6957-9922', 0, '648577600916138544', '日本おおさかし東住吉区東田辺三丁目27番1号14階', '1988-05-17', 0, 0, 'sma70', '2016-07-13', 'masa63', '2003-04-30'); -INSERT INTO "public"."userinfo" VALUES ('TS265142729321', '樊國榮', 0, '+44 5980 515371', 0, '214336315599079234', 'Flat 29, 627 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-09-13', 0, 0, 'fkw', '2009-06-30', 'kwf', '2019-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS939078033226', '石井優奈', 0, '+81 90-1355-2062', 3, '365566061117565997', '日本なごやし守山区瀬古東二丁目171番8号1階', '1993-03-10', 0, 0, 'ishiiy', '2012-10-01', 'ishy816', '2000-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS450903093890', '雷志遠', 1, '+44 (121) 867 3992', 2, '774026917733672756', 'Block 2, 507 New Street, Birmingham, B2 4DB, United Kingdom', '1994-09-13', 0, 0, 'louichiyuen', '2022-01-23', 'chiyuenlo8', '2020-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS098012961937', '岡本花', 1, '+81 11-315-3692', 2, '275815817345784578', '日本札幌豊平区豊平三条十三丁目3番11号49階', '1997-02-22', 0, 0, 'hokamoto5', '2009-03-08', 'ohan', '2017-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS873325672273', '余詩涵', 0, '+81 11-028-0212', 1, '242148802386093932', '日本札幌豊平区豊平三条十三丁目3番20号18階', '1991-06-24', 0, 0, 'yu97', '2017-06-19', 'yushihan', '2017-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS429781465905', '阎詩涵', 0, '+1 718-738-2960', 3, '655307822040910581', '150 1st Ave Apartment 50, Brooklyn, NY 11220, United States', '1985-11-12', 0, 0, 'yanshih', '2001-11-27', 'yan49', '2020-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS414801477111', 'Frederick Weaver', 0, '+86 755-546-2275', 4, '461828822916588847', 'Room 47, 986 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-02-13', 0, 0, 'fredweaver10', '2011-09-08', 'fweav817', '2019-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS434621289173', '井上樹', 0, '+86 20-396-8933', 4, '738929203243168787', '中国广州市海珠区江南西路158号43室', '1990-03-24', 0, 0, 'inoueits', '2016-03-25', 'inoue2', '2021-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS478307538494', 'Thomas Warren', 1, '+86 182-8941-7950', 2, '651379632858550513', '中国广州市白云区机场路棠苑街五巷579号8号楼', '1985-02-04', 0, 0, 'wtho', '2013-07-18', 'thomaswarr', '2006-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS931890115046', 'Marie Salazar', 0, '+81 3-1023-8923', 3, '962587081102316699', '2-kai, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-11-14', 0, 0, 'salazarmari8', '2010-04-02', 'salazarmari', '2004-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS435681072393', '姚慧敏', 0, '+86 20-1427-8050', 1, '431851563192585353', '10F, 270 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-06-16', 0, 0, 'waimany56', '2005-01-28', 'ywm6', '2017-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS856894585983', '樊發', 0, '+1 838-152-9705', 1, '210550670301753508', '325 Broadway Apartment 45, Albany, NY 12207, United States', '1992-12-12', 0, 0, 'faf', '2019-08-25', 'ffat', '2009-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS864070900904', 'Walter Hamilton', 0, '+86 10-6770-0321', 3, '942088553974590596', 'Room 36, 118 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-09-22', 0, 0, 'hamiltonwalter', '2008-07-20', 'hwalter602', '2006-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS293430219565', '陈杰宏', 0, '+81 80-7110-1006', 3, '515608341612753756', '44F, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-11-04', 0, 0, 'jchen4', '2019-01-13', 'jiehongchen', '2005-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS263521947147', 'Lawrence Martinez', 0, '+1 312-663-5554', 2, '722032209506726291', '654 Rush Street Suite 4, Chicago, IL 60611, United States', '1991-12-04', 0, 0, 'lawrencemartinez', '2018-07-31', 'marlawrence', '2006-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS606243971067', '邱璐', 1, '+86 10-7650-0062', 3, '945663770771696146', '中国北京市东城区东单王府井东街154号24楼', '1995-09-21', 0, 0, 'qlu', '2015-07-24', 'qiu1004', '2005-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS301260149294', 'Lawrence Torres', 1, '+44 7850 302309', 3, '568104621855571208', 'Unit 46, Oxford Eco Centre, 707 Regent Street, London, W1B 2LX, United Kingdom', '1988-07-16', 0, 0, 'lawrenceto', '2006-02-04', 'lawrencet', '2017-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS059496908097', '潘安琪', 0, '+44 (1223) 04 2208', 3, '197099775741896376', 'Flat 44, 48 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-01-10', 0, 0, 'pan99', '2009-06-21', 'pana', '2022-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS593891382817', '中島和真', 0, '+86 182-9799-9902', 2, '167073469865741587', '中国中山乐丰六路906号7栋', '1993-03-14', 0, 0, 'nakajkazuma', '2017-08-05', 'nakazuma120', '2002-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS242944520384', 'Sheila Stevens', 0, '+44 7807 842368', 4, '872008795077204289', 'Unit 6, Oxford Eco Centre, 640 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1991-05-29', 0, 0, 'stevs', '2008-09-26', 'ssheila', '2000-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS137042347290', 'Sheila Gardner', 1, '+86 162-9419-1583', 2, '214883876339039612', '10F, 495 028 County Rd, Yanqing District, Beijing, China', '1994-01-26', 0, 0, 'gardner5', '2015-03-03', 'gardners', '2002-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS613741945939', 'Grace Snyder', 0, '+86 10-1267-6333', 3, '476878008178185051', 'Room 6, CR Building, 715 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-12-08', 0, 0, 'snydgr1993', '2018-11-10', 'gracesnyder2019', '2002-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS597112066202', '池田美緒', 0, '+81 70-8253-4839', 4, '314825550449677171', '42-kai, 1-1-17 Deshiro, Nishinari Ward, Osaka, Japan', '1994-11-20', 0, 0, 'ikmio', '2003-12-02', 'mioikeda', '2016-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS026956627393', '郑詩涵', 1, '+86 187-4013-7597', 1, '693416441966650708', 'Room 23, 661 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-05-28', 0, 0, 'zheng46', '2012-04-16', 'zhenshiha', '2007-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS170683971933', 'Debra Weaver', 1, '+86 10-5914-7595', 1, '576974451465166168', '中国北京市西城区复兴门内大街313号2栋', '1998-08-02', 0, 0, 'debrawea1128', '2000-06-09', 'debraweaver', '2017-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS993792823436', '藤田翼', 0, '+44 (1865) 64 1923', 2, '897068426597979624', 'No.17 Main building, 335 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-03-22', 0, 0, 'tsubfujita', '2004-06-16', 'fujtsubasa', '2016-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS112001743843', '邹云熙', 0, '+44 5191 188399', 2, '984120470775026617', 'Flat 5, 603 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-01-14', 0, 0, 'yunxizou', '2007-05-16', 'yuzou5', '2021-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS923264008161', 'Patricia Washington', 1, '+81 11-066-5740', 2, '547044477968589977', '日本札幌厚別区上野幌一条二丁目1番1号12階', '1989-08-22', 0, 0, 'washington1120', '2014-06-10', 'patrwas', '2001-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS848942923275', '野口葉月', 1, '+44 7015 458050', 3, '540285701766139971', 'Block 30, 846 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-05-23', 0, 0, 'noguchiha63', '2015-12-15', 'hazuki1990', '2001-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS497592138876', '钱致远', 0, '+1 312-196-7959', 1, '894043824246135293', '175 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1987-06-23', 0, 0, 'qianzhiyuan65', '2018-09-25', 'zqia4', '2008-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS207782222235', '譚浩然', 0, '+86 135-3985-6386', 1, '785651254252369732', 'No.24 building, 607 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-03-06', 0, 0, 'tahy1955', '2010-10-26', 'hoyintam1992', '2000-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS051464960433', 'Judith Richardson', 0, '+1 213-522-9079', 2, '311464615189548397', '902 Alameda Street Apartment 44, Los Angeles, CA 90002, United States', '1986-12-23', 0, 0, 'richardson10', '2003-05-05', 'richardsonju', '2009-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS588479024835', '邓杰宏', 1, '+86 20-311-2171', 1, '720484601689030693', '36F, 869 Tianhe Road, Tianhe District, Guangzhou, China', '1996-04-17', 0, 0, 'dengjie', '2018-07-12', 'dejiehong1947', '2000-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS958987640329', '郭晓明', 1, '+44 (1223) 12 9512', 2, '074259672266796751', 'Unit 28, Oxford Eco Centre, 339 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-06-05', 0, 0, 'xg3', '2008-08-27', 'gx3', '2002-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS737188807990', 'Allen Crawford', 1, '+44 (1865) 85 1112', 2, '653429196638641929', 'No.37 Main building, 17 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-10-25', 0, 0, 'acrawford', '2013-01-01', 'allencrawford', '2014-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS197354144958', 'Jerry White', 0, '+86 10-111-5530', 1, '519137560856199803', 'No.13 building, 355 028 County Rd, Yanqing District, Beijing, China', '1991-12-07', 0, 0, 'jerry56', '2002-01-03', 'whitejerr', '2010-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS459159129837', 'Christopher Patel', 1, '+86 192-7201-2803', 1, '334823140802600627', '中国成都市锦江区人民南路四段711号1号楼', '1985-01-05', 0, 0, 'christopherpatel', '2002-06-03', 'cpatel4', '2008-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS544460145058', '胡浩然', 0, '+81 70-2973-0772', 4, '322550016155215075', '38F, 3-9-20 Gakuenminami, Nara, Japan', '1994-09-02', 0, 0, 'hoyinwu303', '2001-01-17', 'hoyinwu', '2020-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS512558698833', '许詩涵', 1, '+1 718-455-2652', 2, '515695675035955722', '645 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1985-02-19', 0, 0, 'shixu', '2008-03-20', 'xu20', '2002-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS077694128831', '邱頴思', 1, '+86 188-3834-1456', 1, '898665912992000286', '中国成都市成华区双庆路299号39楼', '1989-12-26', 0, 0, 'wingsze6', '2008-09-03', 'yaws1986', '2015-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS676510118909', 'Jonathan Young', 1, '+86 21-7723-1527', 2, '430158771439535559', '中国上海市黄浦区淮海中路216号29楼', '1988-09-03', 0, 0, 'youngjonat10', '2000-02-10', 'jonathanyoun', '2016-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS187206963278', '谭嘉伦', 0, '+1 330-597-8340', 1, '109527643353783565', '815 Fern Street Apartment 37, Akron, OH 44307, United States', '1996-06-27', 0, 0, 'tajial1972', '2009-10-14', 'tanjialun1029', '2007-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS756455768935', '山崎彩乃', 0, '+81 74-330-5005', 0, '962573207931019668', '13-kai, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1993-02-21', 0, 0, 'yamaayano1', '2014-07-11', 'ayanoy', '2001-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS719629613399', '龙秀英', 0, '+81 3-5349-9028', 0, '340446936894782151', '日本東京港区東新橋一丁目5番8号33階', '1997-08-22', 0, 0, 'longxi', '2019-06-01', 'longxiu', '2013-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS114685435410', '中村大和', 1, '+81 80-1053-5851', 1, '903974533332434076', '日本なごやし瑞穂区河岸町四丁目20番1号31号室', '1996-04-05', 0, 0, 'yamato9', '2019-12-20', 'yn5', '2004-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS601470475261', '吳家強', 0, '+81 70-2622-9699', 3, '300793323559622292', 'Rm. 11, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1985-06-22', 0, 0, 'ng4', '2009-07-15', 'kakeungng', '2008-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS952689811997', '小島架純', 1, '+81 3-3741-0700', 1, '486840914624804308', '16-kai, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1989-07-03', 0, 0, 'kasumik', '2012-11-06', 'kasumikoji', '2006-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS447466845507', '傅永權', 1, '+81 70-9980-0956', 4, '642802742114484922', '日本なごやし熱田区千年二丁目5番11号17階', '1995-09-23', 0, 0, 'fu2', '2004-04-14', 'wkf', '2006-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS174709723454', 'Walter Harris', 0, '+86 21-9763-2081', 1, '050138214656265830', 'No.41 building, 921 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-08-31', 0, 0, 'harwa', '2022-02-20', 'harris83', '2005-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS829736232536', '谭璐', 0, '+86 21-4268-8556', 0, '464011425812341935', '中国上海市浦东新区橄榄路159号11号楼', '1991-09-23', 0, 0, 'lu1990', '2008-12-05', 'tan916', '2019-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS736863478588', 'Patricia Thomas', 1, '+86 21-088-3917', 2, '683505383481941530', 'No.12 building, 698 Binchuan Rd, Minhang District, Shanghai, China', '1997-06-08', 0, 0, 'thomaspatricia7', '2002-04-06', 'patritho', '2018-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS502992564068', '大野陽太', 0, '+86 147-2768-7876', 0, '575221523184559686', 'No.27 building, 40 Dongtai 5th St, Dongguan, China', '1997-01-30', 0, 0, 'yono1103', '2005-05-04', 'yotaono', '2006-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS178442270383', '蔣國賢', 0, '+86 755-1877-3137', 2, '849095483663867440', '中国深圳龙岗区布吉镇西环路386号28室', '1990-02-06', 0, 0, 'chiangkwokyin', '2013-07-28', 'kwokyinchiang', '2002-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS777482816576', '吳心穎', 0, '+81 80-5307-8586', 0, '875414352345613500', '日本札幌豊平区豊平三条十三丁目3番17号47階', '1990-03-08', 0, 0, 'ngsw', '2015-12-05', 'sumwing723', '2010-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS835607022055', '樊慧珊', 0, '+81 52-620-3626', 3, '358946663921027899', '日本なごやし守山区瀬古東二丁目171番16号26階', '1986-04-02', 0, 0, 'fanwaisan', '2011-08-11', 'fan92', '2001-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS587493005612', '柴田舞', 1, '+86 20-496-6056', 0, '194538048728946448', 'No.3 building, 449 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-08-20', 0, 0, 'shibmai719', '2001-02-03', 'shibatamai', '2009-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS252185124995', '马晓明', 1, '+81 11-617-3061', 3, '529259022778270895', '日本札幌厚別区上野幌一条二丁目1番17号19階', '1998-11-21', 0, 0, 'xiaoming2', '2004-04-23', 'maxiaoming', '2019-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS071599724975', '上田七海', 0, '+81 66-828-8135', 3, '173590150187767460', 'Rm. 7, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-05-03', 0, 0, 'nanami4', '2011-08-14', 'uedanana', '2016-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS775545762890', 'Ernest Hill', 0, '+86 10-9181-8738', 2, '520299381871186017', '中国北京市东城区东单王府井东街316号28号楼', '1995-02-17', 0, 0, 'hillern', '2018-10-06', 'hilernes403', '2017-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS940631896289', '于嘉伦', 1, '+86 146-2734-3094', 3, '501162491602891345', '中国东莞珊瑚路3号39室', '1986-12-09', 0, 0, 'yuji', '2007-08-23', 'jiyu12', '2006-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS523683671601', '駱曉彤', 1, '+81 3-3602-4880', 2, '270029319368543998', '日本東京千代田区丸の内一丁目6番5号1階', '1987-02-10', 0, 0, 'hiulok', '2005-01-07', 'htlok1023', '2020-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS372332366334', '苏岚', 1, '+86 175-8044-8271', 1, '755471136022204192', 'No.12 building, 802 Binchuan Rd, Minhang District, Shanghai, China', '1998-06-04', 0, 0, 'lasu', '2001-02-16', 'lans', '2005-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS972055656341', 'Leonard Jackson', 0, '+81 90-0452-3437', 3, '661491797755299183', '日本なごやし北区楠味鋺三丁目80番13号23号室', '1991-05-06', 0, 0, 'jackleonard', '2005-09-09', 'leonajac1', '2018-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS114477808725', '陆璐', 1, '+44 (121) 019 1986', 1, '379596350673817147', 'No.33 Main building, 830 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-02-08', 0, 0, 'lul', '2003-11-14', 'lu9', '2011-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS537466309443', '山崎陸', 0, '+86 184-7827-8257', 0, '716117341796877873', 'Room 34, CR Building, 980 Shennan Ave, Futian District, Shenzhen, China', '1989-04-05', 0, 0, 'yr5', '2011-09-26', 'yamriku', '2015-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS393054589856', 'Leroy Holmes', 1, '+86 150-8989-2484', 0, '690782826236086332', '39F, 871 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-05-12', 0, 0, 'hleroy', '2006-10-04', 'holmleroy7', '2015-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS242648289322', 'Anne Lewis', 1, '+86 182-1273-4006', 3, '574227028390095685', '中国深圳罗湖区蔡屋围深南东路200号36栋', '1993-07-17', 0, 0, 'anne1222', '2002-06-06', 'lanne1', '2003-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS003574305322', 'Roger Alvarez', 0, '+86 28-393-9292', 1, '182444892629615970', '中国成都市成华区双庆路524号38楼', '1993-02-20', 0, 0, 'rogera', '2019-09-06', 'alvarez7', '2004-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS602499441909', '中野美月', 0, '+86 21-9595-4045', 1, '333581132926860190', '中国上海市闵行区宾川路529号31栋', '1992-03-11', 0, 0, 'nakanomits', '2014-11-03', 'mitsuki1', '2002-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS060672593453', '菅原大輔', 1, '+81 74-567-3559', 1, '585066485105446440', '日本ならし西大寺赤田町一丁目7番10号5号室', '1988-02-21', 0, 0, 'sugawara1963', '2020-03-22', 'sugawaradaisuke2', '2000-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS440934269934', '江睿', 1, '+81 66-282-8157', 3, '575503218417034786', '日本おおさかし近江堂一丁目7番8号48階', '1991-05-25', 0, 0, 'jrui', '2013-08-22', 'jr8', '2020-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS539955944395', '井上美羽', 1, '+86 20-123-1730', 1, '448844255142035802', '中国广州市白云区机场路棠苑街五巷41号41号楼', '1989-03-27', 0, 0, 'miuinoue', '2011-11-26', 'inoumiu', '2009-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS727447792285', '佘家明', 0, '+86 20-174-6479', 2, '794753884943085754', '中国广州市白云区小坪东路854号24室', '1998-05-23', 0, 0, 'shehkami4', '2003-03-04', 'sheh113', '2015-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS688942299010', '陳國賢', 0, '+81 90-4874-5061', 0, '516250699478422692', '日本東京品川区東五反田五丁目2番18号10階', '1995-12-22', 0, 0, 'kwokyinchan', '2019-11-19', 'kychan923', '2002-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS078405220791', '顾嘉伦', 1, '+81 66-774-7136', 1, '133190905874278193', '日本おおさかし西成区出城一丁目1番11号39階', '1991-06-07', 0, 0, 'jialug', '2008-08-23', 'jialungu', '2015-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS948374280624', 'Thomas Washington', 0, '+86 28-9962-3078', 3, '093529620941528994', '中国成都市成华区二仙桥东三路648号15号楼', '1986-04-06', 0, 0, 'washington813', '2009-11-21', 'washington1', '2019-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS953734961849', 'Jose Rice', 0, '+44 (116) 459 5970', 2, '451747238585867949', 'Flat 14, 412 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-05-16', 0, 0, 'joser3', '2019-07-29', 'rice2009', '2012-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS431147926735', '内田七海', 0, '+81 74-722-3921', 1, '270196612694283291', '6F, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1987-09-17', 0, 0, 'nanauchid', '2000-08-14', 'un58', '2021-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS355243807748', '龚宇宁', 0, '+81 3-3122-9490', 2, '184316938259830326', '日本東京渋谷区代々木二丁目3番11号24階', '1995-03-27', 0, 0, 'gonyuning1984', '2006-05-31', 'gyuning325', '2008-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS910020598279', 'Jennifer Boyd', 1, '+86 167-4499-9840', 1, '619446377617794094', 'No.31 building, 18 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-06-28', 0, 0, 'boydj', '2020-12-09', 'jenboy6', '2004-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS991559094210', '林慧敏', 1, '+86 20-7745-6687', 3, '961311918353164469', '中国广州市白云区机场路棠苑街五巷349号华润大厦18室', '1994-12-06', 0, 0, 'lamwaiman3', '2006-09-03', 'waiman301', '2014-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS735670098320', '平野大和', 1, '+81 70-3452-4322', 1, '822476817119668193', '日本東京千代田区丸の内一丁目6番15号37階', '1987-07-20', 0, 0, 'hiray', '2002-01-26', 'yamath', '2018-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS526160140742', '前田大輔', 0, '+1 312-833-7777', 3, '120446470283202553', '677 Pedway Apartment 26, Chicago, IL 60601, United States', '1992-02-23', 0, 0, 'daisuke3', '2020-06-24', 'daisuke314', '2003-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS735371593114', '鄧天榮', 0, '+44 7576 301549', 1, '820856345666252315', 'Unit 5, Oxford Eco Centre, 66 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-06-10', 0, 0, 'tangtinwing', '2012-06-14', 'tangtw3', '2017-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS186106277641', '莫俊宇', 0, '+81 52-356-5707', 3, '010583340615205521', '47F, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1998-12-16', 0, 0, 'chunyu1005', '2007-02-13', 'mokcy92', '2000-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS064973020661', 'Sherry Allen', 1, '+86 188-5385-7005', 1, '166002199076031876', 'No.15 building, No.743, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-07-20', 0, 0, 'sallen10', '2009-04-08', 'sherryall', '2016-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS638863135896', 'Rachel Moore', 0, '+81 70-4164-0215', 1, '357935878567704420', '40-kai, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1987-05-21', 0, 0, 'moorerach', '2002-08-06', 'moorerachel44', '2000-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS295890060354', 'Cynthia Harris', 1, '+81 52-888-2953', 1, '463497101564209288', 'Rm. 25, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-14', 0, 0, 'cynthiaharris', '2014-10-31', 'cynharris1', '2020-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS894016107639', 'Valerie Wright', 1, '+1 213-315-9764', 2, '316744949318677673', '147 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-04-26', 0, 0, 'valerie1', '2006-02-08', 'valerie2', '2011-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS419657058496', 'Manuel Alexander', 1, '+81 90-2683-3063', 3, '953275348060452055', '日本東京中央区銀座三丁目12番19号2階', '1993-01-29', 0, 0, 'alexanderman10', '2017-06-13', 'male', '2016-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS498967444370', '文曉彤', 1, '+81 11-047-3372', 1, '619089302191293831', '日本札幌豊平区豊平三条十三丁目3番11号17階', '1986-08-26', 0, 0, 'manhiutung4', '2000-03-29', 'htman', '2004-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS301885574783', '原田架純', 0, '+44 (116) 401 7473', 1, '963364964026685516', 'No.44 Main building, 364 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-10-21', 0, 0, 'kasumi220', '2002-10-21', 'kasumharada', '2021-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS438801048201', 'Douglas Watson', 1, '+86 28-593-1161', 4, '080327438993431832', '中国成都市锦江区红星路三段734号25室', '1985-04-15', 0, 0, 'wadou', '2011-08-15', 'watson418', '2013-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS155147802814', '安藤光', 0, '+81 80-8630-4048', 4, '323659614759340846', 'Rm. 24, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1985-12-13', 0, 0, 'hikaruando527', '2002-04-17', 'hikaruand', '2017-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS843033366652', '崔祖兒', 0, '+86 188-3359-2307', 3, '084058643702717705', '中国成都市成华区双庆路658号27楼', '1985-10-06', 0, 0, 'chochoyee329', '2008-01-16', 'cychoi', '2011-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS859868425589', '段震南', 0, '+86 199-6890-7500', 2, '326095572325868697', '31F, 784 Ganlan Rd, Pudong, Shanghai, China', '1995-07-28', 0, 0, 'duaz', '2013-11-23', 'duan10', '2020-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS475629828825', '宋璐', 1, '+81 3-2009-8367', 0, '233646207506013414', '日本東京千代田区丸の内一丁目6番9号47号室', '1988-06-22', 0, 0, 'slu331', '2020-01-05', 'songlu', '2002-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS631312892868', '西村聖子', 0, '+81 52-813-5145', 3, '712322308887692121', '17-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-03-20', 0, 0, 'seikonishimura10', '2000-09-11', 'nishimuraseik', '2004-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS910978361680', '吕岚', 1, '+86 166-2012-6613', 3, '685082104452273947', '中国上海市浦东新区橄榄路144号7栋', '1993-08-24', 0, 0, 'lanlu', '2019-02-02', 'llu', '2014-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS159485658560', 'Christopher Flores', 0, '+86 20-600-7147', 3, '352093909085714361', '中国广州市海珠区江南西路273号华润大厦5室', '1987-12-19', 0, 0, 'cflores', '2020-07-31', 'christopherflo', '2020-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS841691121074', 'Louise Lee', 0, '+86 21-4063-4798', 4, '251741193341916512', 'Room 26, 82 Middle Huaihai Road, Huangpu District, Shanghai, China', '1993-04-02', 0, 0, 'leelouise09', '2006-09-06', 'lelouis', '2005-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS210771776492', '龚嘉伦', 1, '+81 11-771-6870', 3, '078141741081431243', '日本札幌白石区菊水三条五丁目2番19号39階', '1991-06-12', 0, 0, 'jialgo77', '2010-09-22', 'jialun1116', '2007-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS549179738691', '盧德華', 0, '+86 755-4167-7626', 2, '719486091604856892', 'Room 49, CR Building, 231 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-11-16', 0, 0, 'lotw', '2019-06-16', 'twlo7', '2016-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS004252916700', '鄺家強', 1, '+81 11-604-3135', 1, '003664873272662093', '3-kai, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-08-27', 0, 0, 'kakeungkwo', '2007-09-02', 'kwokk', '2010-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS995657348061', '萧安琪', 1, '+81 80-7525-4230', 1, '571375869406056373', '3F, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-09-29', 0, 0, 'xiaoanqi', '2019-03-09', 'anqix', '2005-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS925390037532', '杨睿', 0, '+81 90-1728-7045', 3, '539811461403983908', '8F, 5-4-7 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-09-22', 0, 0, 'ruiy', '2008-08-24', 'ruiy', '2000-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS020932116406', 'Jamie Graham', 1, '+81 3-5049-9896', 4, '795373043652436450', '26-kai, 3-15-5 Ginza, Chuo-ku, Tokyo, Japan', '1998-08-17', 0, 0, 'grahja71', '2014-07-15', 'jamigra', '2019-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS729736852772', '藤原美咲', 0, '+86 10-6911-9816', 2, '260719280989987223', '中国北京市东城区东单王府井东街238号18楼', '1988-05-08', 0, 0, 'mifujiwara', '2004-11-13', 'misakifu', '2007-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS444826563678', '廖明', 0, '+81 80-2813-4039', 1, '209512287319656701', '日本ならし学園南三丁目9番6号30号室', '1987-02-11', 0, 0, 'mingliao', '2017-07-27', 'liao83', '2010-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS377698340863', '莫致远', 1, '+81 70-9800-1998', 1, '378316136062783305', 'Rm. 39, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-05-30', 0, 0, 'mo1124', '2017-07-12', 'mo5', '2010-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS472818194257', '譚秀文', 1, '+1 718-244-5001', 2, '525836284145851826', '413 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1992-05-26', 0, 0, 'saumanta', '2007-11-07', 'tsauman7', '2020-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS262299843841', '竹内翼', 1, '+81 70-7705-8901', 2, '671770401462629432', '49F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-13', 0, 0, 'takeuchi8', '2001-10-19', 'tsut126', '2010-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS235255117629', '岩崎海斗', 0, '+86 10-637-1455', 3, '295998422576429085', '47F, 589 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-07-14', 0, 0, 'ikaito', '2017-10-25', 'iwasaki87', '2020-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS314065334097', 'Joseph Hamilton', 0, '+86 196-8476-6768', 1, '256013206248436669', '中国上海市浦东新区健祥路491号华润大厦25室', '1988-12-07', 0, 0, 'josephhamilton426', '2016-08-31', 'jha10', '2000-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS521498316072', '史詩涵', 0, '+81 80-7438-9506', 2, '052972083285679387', '12F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-01-06', 0, 0, 'shihashi', '2012-10-31', 'shshi209', '2003-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS228582453263', '夏致远', 1, '+44 5456 211953', 4, '112230963280592173', 'Flat 14, 471 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-03-12', 0, 0, 'zhiyuan719', '2011-05-16', 'zhixia', '2021-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS527080674985', 'Raymond Murray', 0, '+81 11-233-6525', 1, '654353168986057599', '42F, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-04-17', 0, 0, 'raymond7', '2012-09-11', 'raymurray', '2001-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS629682696446', '元家文', 1, '+86 168-5442-2638', 1, '653821432382996696', '26F, 323 FuXingMenNei Street, XiCheng District, Beijing, China', '1995-01-04', 0, 0, 'kaman4', '2017-12-24', 'ykm401', '2007-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS399589817629', '佐々木詩乃', 1, '+86 158-7591-0090', 4, '532421635760686793', '中国广州市天河区天河路742号15号楼', '1996-12-04', 0, 0, 'ss2', '2003-01-03', 'shsasaki', '2017-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS965317836496', '莫致远', 0, '+44 7567 374776', 1, '905202505139872372', 'Unit 37, Oxford Eco Centre, 737 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-12-22', 0, 0, 'mzh9', '2006-04-05', 'mzhiyuan', '2016-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS982673885238', '佘杰倫', 1, '+86 20-0972-9546', 3, '864813767347886210', '中国广州市天河区天河路156号30室', '1996-04-02', 0, 0, 'chiehlunshe', '2005-03-22', 'clsheh42', '2007-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS134248427864', 'Victor Williams', 0, '+44 (1865) 21 0765', 4, '943150026838815299', 'Flat 6, 439 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-12-20', 0, 0, 'vw07', '2017-10-21', 'victowilliams1103', '2001-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS487207756921', '宋子异', 1, '+44 5784 469312', 0, '891139176972882345', 'Block 23, 227 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-03-11', 0, 0, 'ziyi92', '2020-10-05', 'sonziyi1', '2017-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS682692473708', 'Martha Peterson', 1, '+86 10-5386-3507', 3, '100306204915136974', '中国北京市東城区東直門內大街309号8号楼', '1993-04-30', 0, 0, 'mpeterson', '2012-03-09', 'pm813', '2006-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS874927317519', '赵云熙', 1, '+81 66-517-1363', 3, '771206210485098296', '日本おおさかし東住吉区東田辺三丁目27番15号43階', '1985-07-17', 0, 0, 'yunxizhao', '2004-07-31', 'yunxizha', '2017-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS052291265738', '松本陸', 0, '+86 194-2804-3119', 3, '027445383038658080', 'Room 22, 232 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-03-30', 0, 0, 'rmat', '2004-09-18', 'matsumoto308', '2013-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS020695419601', 'Joel Mendez', 0, '+81 66-622-8256', 0, '853364433229934606', '日本おおさかし平野区加美東四丁目9番1号23階', '1997-08-01', 0, 0, 'mendezjoel', '2001-10-20', 'joelmendez', '2003-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS609019481648', '區明詩', 1, '+1 312-769-1308', 2, '802769873647478480', '838 Pedway Suite 9, Chicago, IL 60601, United States', '1988-03-26', 0, 0, 'aums1', '2007-02-07', 'aumingsze18', '2002-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS962944425458', '田中架純', 1, '+86 170-2113-9026', 3, '087353667723620313', '中国上海市浦东新区健祥路62号28室', '1996-11-24', 0, 0, 'kasutanaka', '2012-07-11', 'kasumi91', '2000-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS588687328357', '小野美緒', 1, '+86 196-6780-8851', 4, '577624305638888280', '中国北京市东城区东单王府井东街826号41栋', '1997-07-22', 0, 0, 'onmio', '2008-02-03', 'mioono', '2009-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS716107989875', '向震南', 0, '+86 20-0902-0710', 4, '484656676409333654', '中国广州市白云区小坪东路307号1号楼', '1986-07-09', 0, 0, 'zhennxi222', '2010-10-08', 'xiangzhennan64', '2017-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS832320738844', '山田聖子', 0, '+44 7627 374170', 1, '633098593091464675', 'Flat 40, 319 New Street, Birmingham, B2 4DB, United Kingdom', '1989-05-16', 0, 0, 'yamadseiko', '2003-11-07', 'yamseik', '2021-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS414864394152', 'Wendy Jenkins', 0, '+81 80-6236-3009', 3, '135329563626445601', '日本おおさかし西成区天神ノ森二丁目1番2号11号室', '1985-11-05', 0, 0, 'wendyjenk', '2017-08-14', 'wendyj', '2007-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS941659887815', '黎惠妹', 0, '+86 136-8848-8367', 4, '091919402761400188', 'Room 20, 212 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-06-23', 0, 0, 'hml2', '2018-09-08', 'lahuimei', '2000-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS900550434605', '黎震南', 1, '+81 70-6403-7824', 0, '723848645493665846', '35F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-07-12', 0, 0, 'lizh', '2010-03-19', 'zhennanli9', '2013-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS502736826529', 'Dennis Daniels', 1, '+81 80-2041-3636', 3, '014681697679854584', '日本札幌豊平区豊平三条十三丁目3番20号3階', '1998-05-09', 0, 0, 'dend3', '2013-01-18', 'danielsd', '2001-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS864098738166', 'Clifford Aguilar', 0, '+81 70-2450-0314', 0, '223248609544855401', '日本おおさかし西成区天神ノ森二丁目1番16号29階', '1990-02-18', 0, 0, 'caguilar', '2016-06-29', 'clifford209', '2003-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS627036767123', '许睿', 0, '+86 133-4164-1946', 3, '079110915162481510', '中国北京市東城区東直門內大街544号26号楼', '1986-01-14', 0, 0, 'ruixu1977', '2009-02-12', 'xurui', '2009-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS340841638044', '于岚', 1, '+81 80-8960-7088', 3, '381055274890404503', '日本札幌豊平区豊平三条十三丁目3番13号10階', '1989-08-02', 0, 0, 'lanyu705', '2014-09-20', 'lany', '2002-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS308255577325', '鐘家強', 1, '+81 90-3971-3296', 3, '537916806145353222', '43F, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-11-11', 0, 0, 'kakeungchu', '2021-11-12', 'chunkk2006', '2011-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS248631803340', '藤田花', 1, '+44 7604 168896', 1, '223682968093990635', 'No.14 Main building, 625 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-05-23', 0, 0, 'hana105', '2014-08-06', 'fujitahana90', '2012-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS620012686331', 'Rachel Wallace', 1, '+86 10-976-4634', 3, '273988433039979815', '中国北京市东城区东单王府井东街508号26室', '1986-04-22', 0, 0, 'wallarachel1205', '2000-04-19', 'racwallace10', '2000-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS852087285639', '冯秀英', 0, '+81 70-3658-1207', 1, '989501622337015161', '日本なごやし北区清水三丁目19番9号18階', '1985-03-31', 0, 0, 'feng1947', '2022-01-11', 'fxiuying405', '2011-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS981820817174', 'Jamie Snyder', 1, '+81 66-134-1733', 3, '605836823759618123', '49F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1986-09-27', 0, 0, 'snydej', '2014-01-07', 'jamie123', '2012-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS911040540437', '史詩涵', 1, '+86 769-1140-3502', 1, '296983206632969340', '中国东莞珊瑚路885号23栋', '1989-10-22', 0, 0, 'shis', '2011-03-05', 'shishiha', '2019-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS653981396865', 'Samuel Snyder', 1, '+1 838-051-9921', 1, '307118033210625325', '430 Central Avenue Apt 6, Albany, NY 12205, United States', '1988-06-16', 0, 0, 'snyder70', '2005-08-08', 'samusnyd1', '2020-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS072875134506', 'Norman Howard', 0, '+86 10-498-4759', 4, '855376934844527486', '中国北京市房山区岳琉路166号50栋', '1988-04-20', 0, 0, 'howard319', '2021-05-29', 'hnorman', '2020-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS026638285050', '溫秀文', 0, '+86 178-0354-1046', 1, '414948662308122859', '中国成都市成华区二仙桥东三路682号5号楼', '1990-10-12', 0, 0, 'wsm710', '2012-05-19', 'wan2', '2007-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS249100250007', '清水凛', 0, '+81 74-068-9496', 4, '136066212544361681', '日本ならし学園南三丁目9番8号18号室', '1988-02-05', 0, 0, 'shri', '2000-10-27', 'shimizurin16', '2010-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS140226312261', '何詩涵', 1, '+86 769-0977-5015', 1, '198868722923086080', '中国东莞坑美十五巷377号17室', '1989-03-19', 0, 0, 'she8', '2013-08-31', 'shihanhe301', '2016-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS191948059914', '菅原海斗', 0, '+81 11-314-6066', 0, '403023245607847902', '39F, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-01-20', 0, 0, 'kaitosuga1961', '2015-09-01', 'sugawarakaito', '2020-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS115330229222', 'Jason Washington', 1, '+86 158-1523-3236', 1, '600234551750903237', '中国成都市锦江区人民南路四段452号华润大厦6室', '1989-09-30', 0, 0, 'jasonwashington', '2006-02-21', 'jasonwashington', '2013-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS634997454425', 'Jeff Wilson', 1, '+86 193-2864-8761', 3, '876512922702450580', '中国深圳罗湖区田贝一路730号28栋', '1985-10-31', 0, 0, 'jeffwilso6', '2021-08-15', 'jeff2', '2017-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS640157918258', 'Allen Turner', 1, '+44 7322 809380', 4, '821250508513182598', 'Block 41, 256 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-11-30', 0, 0, 'turnall93', '2000-04-25', 'turner6', '2006-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS728772768442', '崔頴思', 0, '+86 166-9859-4210', 1, '788616018548794692', '中国深圳罗湖区蔡屋围深南东路764号14室', '1993-05-10', 0, 0, 'wingszech', '2002-04-26', 'choiwingsze', '2022-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS402447979282', '松本樹', 1, '+81 66-076-8547', 4, '339939837012372878', '1F, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1996-09-19', 0, 0, 'itsukim', '2002-02-05', 'itsukimatsu1216', '2020-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS674481217150', '内田凛', 0, '+86 10-344-2621', 2, '583107381825403194', 'Room 20, 892 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-01-02', 0, 0, 'uchida423', '2010-02-12', 'rin222', '2004-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS871342792341', '韓德華', 1, '+86 177-4799-4765', 2, '504777715476963285', '4F, 898 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-08-16', 0, 0, 'takwahhan', '2016-07-02', 'htw', '2006-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS719428467777', '邱睿', 1, '+81 66-634-5001', 3, '273335556198585572', '日本おおさかし西成区天神ノ森二丁目1番2号19階', '1995-04-23', 0, 0, 'qiu66', '2012-03-29', 'qiurui524', '2001-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS870076087258', '杜力申', 0, '+86 148-6317-4691', 1, '861128874225979994', 'Room 4, CR Building, 213 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-01-30', 0, 0, 'liksunto40', '2021-03-15', 'liksunt', '2019-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS876517525938', '蔡富城', 1, '+86 755-562-8262', 3, '802981567343983228', 'Room 19, CR Building, 284 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-01-23', 0, 0, 'fushingcho806', '2016-11-11', 'choifushing9', '2021-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS641609633438', 'Mildred Moore', 1, '+86 155-9483-9755', 1, '440784442044212632', '中国深圳罗湖区蔡屋围深南东路544号36室', '1994-03-13', 0, 0, 'mmi2', '2008-09-21', 'moom', '2019-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS291275228677', '中島葉月', 1, '+81 11-621-7367', 2, '808836162145777136', '日本札幌厚別区上野幌一条二丁目1番11号16階', '1993-09-24', 0, 0, 'haznak1128', '2021-10-29', 'hazuki9', '2015-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS024855097262', '西村陽菜', 1, '+81 74-475-7450', 3, '799313844207903738', '日本ならし大和郡山市本庄町一丁目1番16号12号室', '1987-12-18', 0, 0, 'nhina', '2010-09-17', 'nishihina', '2015-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS876615369133', '上田光', 1, '+86 179-8537-7958', 3, '999266597793504661', 'No.50 building, No. 914, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-11-12', 0, 0, 'uedahikaru', '2012-07-30', 'uedahikaru', '2017-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS882920344841', 'Carrie Porter', 1, '+44 5304 629162', 2, '944801149733281200', 'Flat 1, 633 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-07-17', 0, 0, 'carrie2', '2017-01-12', 'carp54', '2004-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS212421371989', '莫宇宁', 0, '+1 330-437-0134', 4, '348978134057034126', '732 Ridgewood Road Apt 9, Akron, OH 44321, United States', '1989-06-18', 0, 0, 'moy1108', '2008-01-25', 'moyuning10', '2012-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS048305077664', '河野凛', 1, '+81 11-955-8441', 0, '775328126435182739', '28F, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-01-15', 0, 0, 'kr15', '2011-09-16', 'konorin', '2017-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS942421365679', '藤原和真', 0, '+1 312-598-1715', 3, '335358202435220449', '874 Rush Street Apt 18, Chicago, IL 60611, United States', '1998-10-16', 0, 0, 'fujiwarakazuma', '2000-02-03', 'fujiwarakazuma808', '2013-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS549615671541', '龚致远', 1, '+81 80-5945-5155', 3, '604956482025001602', '4-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-02-20', 0, 0, 'zgo', '2008-11-16', 'gongzhi', '2007-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS163807503124', '安藤七海', 0, '+86 28-245-2477', 0, '023355403657322011', 'No.21 building, 255 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-03-08', 0, 0, 'nanamiando819', '2009-04-30', 'nanamiando', '2001-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS848925682496', 'Randy Tran', 1, '+86 167-4131-2492', 2, '513102358306932290', '中国北京市東城区東直門內大街798号5室', '1994-12-30', 0, 0, 'randtra', '2014-01-20', 'randyt', '2000-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS268831020889', '柴田葵', 0, '+86 139-1148-2182', 1, '613344865084635876', '中国广州市海珠区江南西路166号华润大厦39室', '1989-07-18', 0, 0, 'shibataao', '2018-07-31', 'saoi', '2020-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS529698857743', '官發', 0, '+81 70-0621-4838', 3, '609247743856538175', '日本なごやし熱田区千年二丁目5番8号30号室', '1995-06-03', 0, 0, 'kofat', '2017-03-27', 'koon1', '2012-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS390771247862', '蒋震南', 1, '+81 90-4894-3696', 3, '573317464528309426', '25-kai, 18 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-06-28', 0, 0, 'jiang10', '2021-09-14', 'jiang61', '2020-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS300174745142', '應嘉欣', 1, '+1 838-071-1588', 2, '627546641672199026', '299 State Street Apt 43, Albany, NY 12203, United States', '1993-10-28', 0, 0, 'karyany', '2006-05-09', 'yingky410', '2004-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS423972559963', '千葉大輔', 1, '+86 21-5280-7793', 3, '903407836151952449', '中国上海市闵行区宾川路284号华润大厦44室', '1988-12-27', 0, 0, 'chd', '2012-02-21', 'daisuch', '2006-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS420999499665', 'Shawn Hernandez', 1, '+81 90-8549-0056', 3, '432922977240140229', '10F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1992-11-20', 0, 0, 'hersh5', '2019-10-20', 'hsha226', '2001-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS737371284970', '傅俊宇', 1, '+1 838-446-2041', 1, '491855605301125085', '435 Broadway 3rd Floor, Albany, NY 12207, United States', '1994-04-27', 0, 0, 'cyf', '2004-08-01', 'cyfu', '2010-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS743922027307', '上野蓮', 0, '+81 90-6068-1282', 3, '658512668319496270', '日本おおさかし東住吉区東田辺三丁目27番5号44階', '1993-08-30', 0, 0, 'uenoren1985', '2016-11-15', 'ueren1975', '2015-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS440252321143', 'Ann Salazar', 1, '+44 7622 025060', 1, '705083882339111012', 'No.31 Main building, 372 Redfern St, Liverpool, L20 8JB, United Kingdom', '1992-01-31', 0, 0, 'ann2020', '2013-09-30', 'as7', '2014-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS872887338780', '薛青雲', 1, '+81 11-285-7551', 2, '425232702624606219', '日本札幌白石区菊水三条五丁目2番17号42号室', '1992-05-18', 0, 0, 'cws', '2014-12-26', 'cwsi6', '2017-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS100103084046', 'Amanda Bailey', 1, '+86 188-9503-0240', 1, '678721560372772144', 'No.35 building, 942 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-04-17', 0, 0, 'baileyamanda', '2008-08-19', 'bailam', '2004-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS422983142454', '宋岚', 1, '+81 90-6316-6172', 1, '461556199096928858', '日本なごやし瑞穂区河岸町四丁目20番19号38号室', '1990-09-14', 0, 0, 'lsong', '2008-09-07', 'lansong', '2016-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS627378683314', '田中架純', 1, '+81 70-5788-2307', 3, '806999028182952504', '26F, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-08-10', 0, 0, 'tanaka10', '2018-11-23', 'kasumt1', '2012-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS977714219413', '杨睿', 0, '+86 769-358-0469', 3, '588713552170829774', '中国东莞坑美十五巷755号华润大厦44室', '1993-01-20', 0, 0, 'ryang11', '2021-07-03', 'ruiya', '2011-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS524365343213', '董秀英', 0, '+1 312-429-3912', 2, '108247754696445374', '127 North Michigan Ave Apt 8, Chicago, IL 60611, United States', '1992-08-15', 0, 0, 'xiuyingdong407', '2015-05-16', 'xidong', '2003-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS585101634267', '中野陸', 1, '+81 66-294-6727', 2, '030816922104556493', '日本おおさかし東住吉区東田辺三丁目27番7号41階', '1996-12-27', 0, 0, 'riku1980', '2004-08-25', 'nakrik', '2006-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS118679130532', '鄭慧琳', 0, '+86 755-6548-3867', 0, '791935849819751136', '中国深圳福田区景田东一街881号21号楼', '1991-07-22', 0, 0, 'wailamche5', '2009-10-29', 'wailamc', '2007-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS956881684085', '房發', 0, '+86 198-5252-0521', 2, '282190222435400760', 'No.6 building, No. 732, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-05-07', 0, 0, 'fongfa', '2014-10-19', 'fongfat', '2002-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS023161634887', 'Sherry Moore', 1, '+44 (161) 991 2146', 1, '713267474377774680', 'Flat 35, 32 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-02-12', 0, 0, 'sherry4', '2018-02-02', 'shermoore', '2009-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS477165826922', '石井美羽', 1, '+1 838-448-9067', 4, '538910249777539516', '283 Lark Street Apt 15, Albany, NY 12210, United States', '1991-01-23', 0, 0, 'ishmi701', '2016-10-26', 'ishiimi526', '2013-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS640726858118', '鈴木陽菜', 0, '+81 70-4714-2134', 0, '304627770305550690', '35F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-01-06', 0, 0, 'suhi9', '2003-08-14', 'hina12', '2001-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS783089045922', '崔富城', 1, '+86 145-0181-5197', 4, '947231808648637103', 'No.43 building, 373 Ganlan Rd, Pudong, Shanghai, China', '1989-04-06', 0, 0, 'choifushing906', '2015-10-06', 'fushing816', '2017-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS624463186014', '田中大和', 0, '+81 80-4361-2858', 2, '747078842627794745', '日本札幌白石区菊水三条五丁目4番18号35号室', '1993-12-16', 0, 0, 'tanaka10', '2011-08-09', 'tanaka1970', '2005-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS215996496556', 'Edna Vasquez', 1, '+86 755-084-2649', 3, '080499703888357427', '中国深圳罗湖区蔡屋围深南东路559号华润大厦37室', '1991-10-13', 0, 0, 'ednavas10', '2017-03-03', 'vasquez98', '2007-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS284559463513', '横山明菜', 0, '+44 5929 998624', 1, '909339213534278089', 'Block 7, 850 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-06-16', 0, 0, 'yokoyama422', '2021-11-16', 'akinayokoy15', '2018-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS807526310278', '餘嘉欣', 0, '+81 90-5827-1354', 3, '058899829450239357', '48-kai, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1985-08-18', 0, 0, 'karyanyue', '2005-08-03', 'yky93', '2011-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS442977797301', 'Lisa Gonzalez', 0, '+44 (151) 939 9815', 0, '656319896368560865', 'Unit 5, Oxford Eco Centre, 56 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-11-27', 0, 0, 'lisa2', '2012-01-25', 'lisa1987', '2002-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS170837504392', '程秀英', 1, '+44 5173 584012', 3, '780832484658045052', 'Block 15, 717 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-04-07', 0, 0, 'cxi', '2003-03-08', 'chengxiuy405', '2006-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS358480149602', '韩致远', 0, '+1 614-665-1610', 1, '537205570697806318', '613 Tremont Road Suite 2, Columbus, GA 43212, United States', '1989-12-26', 0, 0, 'zhan', '2010-12-08', 'hazhi', '2013-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS192047989978', '韓家文', 1, '+44 (1865) 04 2692', 3, '867317363551537869', 'Unit 4, Oxford Eco Centre, 470 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-05-15', 0, 0, 'hankaman', '2007-08-20', 'kmhan1', '2014-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS455660801270', '戴晓明', 0, '+1 838-089-2959', 1, '627699460437668765', '19 Central Avenue Apt 24, Albany, NY 12205, United States', '1986-11-05', 0, 0, 'xiaoming4', '2005-08-03', 'xida7', '2004-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS215926481317', '鄭秀文', 0, '+1 212-381-9888', 3, '287012551626877646', '234 Wooster Street Apartment 31, New York, NY 10012, United States', '1985-11-12', 0, 0, 'saumancheng2', '2001-09-26', 'sauman2', '2010-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS975912914969', '木下蒼士', 0, '+86 10-003-8465', 1, '320564287097578624', 'Room 36, CR Building, 157 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-04-14', 0, 0, 'aoshi4', '2004-09-18', 'kinoshitaa', '2001-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS265173591014', '鈴木彩乃', 0, '+44 7593 342709', 1, '407206421484671678', 'No.35 Main building, 606 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-05-09', 0, 0, 'suzukiayano', '2018-05-29', 'ayanosuz', '2018-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS736053522093', '田村百恵', 0, '+81 80-3044-4285', 1, '110546609022553609', '日本おおさかし平野区加美東四丁目9番5号34号室', '1993-01-14', 0, 0, 'momoetamu', '2012-11-13', 'tamuramomoe', '2016-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS494800612207', 'Heather Jones', 1, '+44 (151) 876 7416', 0, '636703351219023236', 'Unit 13, Oxford Eco Centre, 657 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-04-25', 0, 0, 'jonehe', '2002-12-02', 'heather1996', '2014-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS689349729200', 'Troy Hunter', 0, '+81 11-851-7117', 2, '003655592288165688', '日本札幌白石区菊水三条五丁目4番2号35号室', '1997-07-23', 0, 0, 'ht02', '2010-01-10', 'hutroy', '2000-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS610182940815', '區富城', 0, '+86 760-7967-6780', 3, '470891253499294696', '中国中山京华商圈华夏街721号3号楼', '1998-10-05', 0, 0, 'fsau', '2000-11-26', 'fsa1951', '2018-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS132256483754', '餘浩然', 1, '+86 10-241-0930', 3, '780391914333044079', '中国北京市东城区东单王府井东街100号华润大厦2室', '1996-11-06', 0, 0, 'hyyue', '2000-03-25', 'yue425', '2016-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS828172367169', '平野湊', 0, '+1 330-135-3784', 4, '150549812145291836', '29 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1994-06-10', 0, 0, 'minato1023', '2006-09-27', 'minatohi', '2016-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS176476592393', '杨震南', 0, '+86 185-4660-9178', 1, '267070739047950891', '中国上海市徐汇区虹桥路662号40号楼', '1985-12-28', 0, 0, 'zhennan5', '2015-05-15', 'yzhenn', '2001-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS733064447733', '江世榮', 1, '+1 212-075-3294', 3, '849080985271839423', '940 Fifth Avenue Suite 44, New York, NY 10017, United States', '1996-10-09', 0, 0, 'saiwing716', '2013-11-04', 'kosaiwing', '2017-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS210143525995', 'Debra Boyd', 0, '+81 70-9677-4389', 3, '549988492578051269', '日本おおさかし平野区加美東四丁目9番16号14階', '1992-04-04', 0, 0, 'debra829', '2014-04-10', 'debboyd', '2020-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS315810613867', '蔡安琪', 1, '+86 181-9507-7687', 1, '354649827415697476', '中国北京市海淀区清河中街68号710号11楼', '1992-08-11', 0, 0, 'anqicai', '2019-08-14', 'caanqi9', '2012-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS079901064797', 'Maria Thompson', 0, '+81 90-5853-5311', 1, '995944841903423057', '日本札幌豊平区豊平三条十三丁目3番10号39階', '1992-03-06', 0, 0, 'mthompson', '2004-10-24', 'thompsonm', '2009-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS878181222496', '小林蓮', 0, '+44 (1223) 82 5294', 0, '320642373927190066', 'No.3 Main building, 384 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-10-13', 0, 0, 'rkobayashi', '2003-11-23', 'kren', '2006-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS447561827524', 'Wanda Richardson', 1, '+86 10-689-1513', 4, '617096725181490470', 'Room 39, 411 Sanlitun Road, Chaoyang District, Beijing, China', '1986-08-25', 0, 0, 'wandar', '2004-03-20', 'riw7', '2014-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS336722522102', 'Douglas Grant', 0, '+81 52-245-7778', 3, '388185560153020419', '日本なごやし守山区瀬古東二丁目171番10号43階', '1990-12-13', 0, 0, 'grdoug', '2011-05-05', 'douglasgran', '2001-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS015309117818', '田中美咲', 1, '+1 718-989-8647', 1, '851310288158539753', '948 Flatbush Ave Apartment 27, Brooklyn, NY 11225, United States', '1991-02-26', 0, 0, 'tanm', '2013-09-27', 'misaki1', '2019-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS813612835487', '坂本湊', 0, '+1 330-804-9346', 1, '652913401064176809', '481 Fern Street Apt 27, Akron, OH 44307, United States', '1987-10-21', 0, 0, 'sminato', '2010-06-05', 'sakamoto1', '2011-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS266550558686', '彭璐', 1, '+44 (151) 970 0362', 3, '543189513568856033', 'Flat 38, 23 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1998-09-08', 0, 0, 'lu82', '2009-02-24', 'lupeng915', '2019-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS375286392374', '白梓軒', 0, '+86 769-8312-3830', 2, '469934780054149392', '中国东莞东泰五街334号2栋', '1990-07-09', 0, 0, 'tszhin10', '2021-08-28', 'tszhin10', '2009-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS616948352313', '内田美咲', 0, '+1 614-770-9254', 3, '967122576201176870', '367 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1989-12-23', 0, 0, 'uchida02', '2017-06-01', 'ucm', '2000-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS875016215176', '顾子韬', 0, '+86 177-7619-0547', 1, '467398143808922058', '中国上海市闵行区宾川路640号50室', '1986-05-29', 0, 0, 'gu46', '2008-07-06', 'zgu425', '2010-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS953425379330', '餘秀文', 0, '+1 213-023-1050', 3, '818349952034370626', '448 Wall Street Apartment 31, Los Angeles, CA 90003, United States', '1993-11-13', 0, 0, 'yuesm', '2018-11-04', 'smyue', '2016-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS678934614261', '董云熙', 0, '+86 21-615-5730', 0, '080974821674315770', '中国上海市徐汇区虹桥路427号12楼', '1992-03-21', 0, 0, 'dongyunxi', '2006-09-26', 'dongyunx', '2012-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS609518893975', 'Glenn Russell', 0, '+81 66-555-7907', 0, '174674295614612972', '日本おおさかし東住吉区東田辺三丁目27番6号49号室', '1989-06-17', 0, 0, 'russell9', '2008-12-05', 'gleru', '2016-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS274931386897', '卢秀英', 0, '+86 760-367-8390', 2, '098931786150274535', 'No.31 building, 906 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-04-20', 0, 0, 'xiuyl', '2002-09-15', 'lxiuying4', '2020-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS383441263024', '吳國賢', 0, '+44 (116) 893 8321', 1, '908601448033844453', 'Block 5, 844 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-03-18', 0, 0, 'ng10', '2007-11-29', 'kwokyin1105', '2006-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS478362300218', '顧秀文', 0, '+86 769-6804-3912', 0, '704187274543256399', 'No.16 building, 588 Shanhu Rd, Dongguan, China', '1998-04-30', 0, 0, 'kusm402', '2021-11-30', 'ku907', '2002-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS869794706925', 'George Owens', 1, '+44 7231 009321', 3, '359833605297203780', 'No.8 Main building, 787 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-05-27', 0, 0, 'geowen48', '2004-09-18', 'owegeorge', '2003-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS128950568135', '韩子异', 0, '+81 70-8847-7570', 2, '836268533075693148', '38F, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-07-23', 0, 0, 'ziyihan', '2006-01-07', 'hanziyi', '2000-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS852999068197', '大塚美月', 0, '+44 5679 087451', 1, '989123106372278161', 'Unit 1, Oxford Eco Centre, 917 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-04-03', 0, 0, 'miotsuka', '2012-01-03', 'om9', '2004-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS002983243534', '曾睿', 1, '+1 330-185-5581', 3, '864622629400466085', '283 Fern Street Apt 5, Akron, OH 44307, United States', '1988-06-06', 0, 0, 'zengrui', '2009-11-08', 'zeng3', '2007-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS163480286737', '苗志明', 1, '+44 (116) 551 6226', 3, '211148274667335422', 'No.41 Main building, 311 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-04-10', 0, 0, 'chiming125', '2015-03-20', 'chiming816', '2010-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS099747333248', '區慧儀', 1, '+1 614-397-4659', 4, '676782925272746717', '774 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1991-06-11', 0, 0, 'au927', '2013-02-06', 'waiyeeau', '2014-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS660933175422', '張朝偉', 0, '+86 152-7753-0948', 1, '926193034482283591', '中国北京市西城区西長安街571号17室', '1986-03-27', 0, 0, 'cwcheu', '2016-11-23', 'chiuwaicheu', '2015-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS695928077911', '黎云熙', 1, '+1 213-181-1019', 3, '097255665477940252', '334 Sky Way Apartment 4, Los Angeles, CA 90043, United States', '1987-06-01', 0, 0, 'yunxili1', '2010-02-20', 'yli1971', '2012-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS767594590049', '莫國權', 0, '+86 28-211-1578', 0, '084842398167817076', '中国成都市锦江区红星路三段919号华润大厦19室', '1994-12-03', 0, 0, 'kkmok', '2018-12-15', 'mokkwokkuen', '2012-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS835630351549', 'Brandon Simmons', 1, '+86 20-0157-3803', 1, '892605132180084704', '中国广州市白云区小坪东路903号13栋', '1998-04-08', 0, 0, 'brandon10', '2012-12-01', 'simbrandon', '2011-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS539407049147', '姚家玲', 0, '+86 195-6972-7203', 0, '982796812830303092', '中国北京市海淀区清河中街68号411号24号楼', '1993-12-25', 0, 0, 'ykalin', '2004-12-10', 'yeowkaling', '2002-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS059084254265', 'Willie Kennedy', 1, '+81 66-427-2232', 4, '218693184553932862', '日本おおさかし平野区加美東四丁目9番15号32階', '1998-11-18', 0, 0, 'williekennedy', '2006-05-28', 'williekennedy505', '2020-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS404474667055', '譚裕玲', 1, '+1 330-966-0038', 0, '814409673490132109', '593 Riverview Road Apt 39, Akron, OH 44313, United States', '1998-08-02', 0, 0, 'tamyuling', '2016-06-06', 'tayuling5', '2020-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS963574490122', '常岚', 1, '+1 212-785-4975', 3, '903834232473240269', '388 Wooster Street Apartment 5, New York, NY 10012, United States', '1994-10-04', 0, 0, 'clan', '2005-03-22', 'changlan315', '2004-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS820677138521', 'Tammy Long', 0, '+81 80-1782-8607', 2, '296267785701197698', '日本なごやし守山区瀬古東二丁目171番7号33階', '1997-12-04', 0, 0, 'lotammy2', '2001-02-28', 'tlong3', '2000-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS125412862692', '范璐', 0, '+86 20-780-6469', 3, '768916318148346494', '中国广州市越秀区中山二路959号39室', '1988-01-15', 0, 0, 'fanl8', '2019-06-04', 'falu', '2017-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS154955599744', '陳霆鋒', 0, '+44 (121) 959 7926', 3, '526658070024464924', 'Unit 14, Oxford Eco Centre, 187 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-11-16', 0, 0, 'chan5', '2018-02-03', 'chatingfung', '2011-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS189046507961', '沈云熙', 1, '+86 155-3263-1633', 1, '308878132541772958', '中国广州市白云区机场路棠苑街五巷54号9楼', '1994-07-28', 0, 0, 'shey', '2006-12-12', 'yunshe', '2007-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS468049351485', '姜子异', 0, '+81 66-034-8184', 1, '178762910668717527', '日本おおさかし東住吉区東田辺三丁目27番14号5階', '1992-11-02', 0, 0, 'ziyi5', '2008-07-31', 'zijiang', '2006-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS098159898840', '黃梓晴', 0, '+86 154-4608-3864', 3, '761546754711036103', '中国成都市锦江区红星路三段562号18室', '1989-04-25', 0, 0, 'wotszching', '2002-10-13', 'wong3', '2020-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS084965616179', '汪致远', 1, '+81 74-563-7951', 4, '194842112235502231', '日本ならし西大寺赤田町一丁目7番4号31階', '1993-05-02', 0, 0, 'zhiyuanwang', '2002-02-25', 'zwa', '2016-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS833715296240', '岩崎一輝', 0, '+81 80-2060-8951', 4, '953495432017818776', 'Rm. 42, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1997-10-19', 0, 0, 'ikki5', '2003-11-27', 'ikkiw', '2021-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS358502663912', '高祖兒', 1, '+44 (121) 338 0463', 4, '710580400088411654', 'Flat 47, 176 New Street, Birmingham, B2 4DB, United Kingdom', '1999-01-24', 0, 0, 'kcy1014', '2005-01-13', 'kaochoyee6', '2004-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS436157129002', '龚子韬', 0, '+1 312-609-9931', 3, '804453696057701543', '470 North Michigan Ave Apartment 28, Chicago, IL 60611, United States', '1997-08-03', 0, 0, 'zitao4', '2007-09-03', 'zitao120', '2016-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS899666323754', '狄志遠', 1, '+1 212-692-3549', 3, '997799956410349690', '196 Canal Street Suite 40, New York, NY 10013, United States', '1987-11-22', 0, 0, 'cyt1', '2013-06-05', 'cyti905', '2015-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS934191031252', '狄頴思', 1, '+81 90-5789-5713', 0, '454258259590218402', 'Rm. 7, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-14', 0, 0, 'ti10', '2000-03-20', 'wingsze9', '2018-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS696209394596', 'Edwin Jenkins', 0, '+81 11-466-4462', 3, '053187785838848927', '48-kai, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-01-31', 0, 0, 'jenkins1227', '2017-01-23', 'jenkiedwin', '2011-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS961765388704', '佐々木架純', 1, '+44 7283 994653', 2, '714447049632207210', 'Block 1, 814 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-11-18', 0, 0, 'kasumisas1949', '2013-09-05', 'kasas', '2005-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS466324135507', 'Paula Ross', 0, '+81 52-695-3154', 3, '288240433611781206', '40F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-08-24', 0, 0, 'paula924', '2004-05-23', 'pross', '2008-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS425137994670', 'Margaret Gray', 0, '+44 (161) 253 2233', 2, '346797517033126185', 'Unit 2, Oxford Eco Centre, 486 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-12-13', 0, 0, 'margray', '2014-06-17', 'marggray', '2005-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS360177740980', '文天樂', 0, '+1 718-556-5016', 2, '758511430367415756', '200 Flatbush Ave Apt 25, Brooklyn, NY 11225, United States', '1998-03-13', 0, 0, 'tlma', '2010-10-26', 'mantinlok', '2011-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS450838491178', 'Edwin Chen', 1, '+81 80-4263-7111', 1, '472363894535656054', 'Rm. 39, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-01', 0, 0, 'chenedwi', '2001-12-17', 'chen2', '2004-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS603440424937', '林詩君', 1, '+1 718-397-0548', 4, '931486573082675483', '246 Columbia St Apartment 37, Brooklyn, NY 11231, United States', '1988-03-18', 0, 0, 'laszekwan1103', '2020-05-21', 'skl2009', '2015-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS806775133663', 'Sheila Nguyen', 0, '+44 (1865) 93 8987', 3, '494723324050097316', 'Flat 5, 839 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-02-27', 0, 0, 'nguyesheila', '2009-07-01', 'nguyensh', '2005-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS910759006186', '傅震南', 0, '+1 312-523-6174', 4, '362688879013723127', '891 Pedway 3rd Floor, Chicago, IL 60601, United States', '1993-08-12', 0, 0, 'zhennanf', '2000-10-20', 'zhefu', '2016-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS997939407380', 'Susan Adams', 0, '+81 90-1253-0779', 0, '569061482551730591', '日本おおさかし平野区加美東四丁目9番11号4号室', '1985-10-12', 0, 0, 'adamssusan', '2014-01-16', 'susana', '2007-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS871896077134', '河野凛', 1, '+1 330-524-7081', 4, '760009810854732738', '53 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1985-08-20', 0, 0, 'krin', '2017-07-08', 'rink', '2004-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS456822989974', 'Craig Henderson', 0, '+86 181-1853-7048', 3, '353541476382459107', 'No.15 building, 643 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-23', 0, 0, 'hendcr1', '2021-07-12', 'craig212', '2005-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS603751422092', '中野愛梨', 0, '+1 330-369-5477', 3, '422793782024614037', '573 West Market Street Suite 34, Akron, OH 44333, United States', '1995-01-26', 0, 0, 'nakanoa', '2004-08-15', 'nakanoairi1130', '2019-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS465561895652', '邓杰宏', 1, '+86 154-0330-5079', 0, '026226237978676939', 'Room 14, 122 Shanhu Rd, Dongguan, China', '1995-07-17', 0, 0, 'jdeng', '2020-04-19', 'dejieho1', '2012-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS264845341271', '丁晓明', 0, '+86 171-7243-0629', 1, '874972518492634078', '中国广州市越秀区中山二路539号4楼', '1992-06-13', 0, 0, 'xding', '2017-07-23', 'dxiaom2013', '2010-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS969799104682', '池田蒼士', 0, '+86 169-2729-8129', 2, '244280895051475403', '中国成都市成华区二仙桥东三路871号22号楼', '1993-09-05', 0, 0, 'ai85', '2021-11-20', 'aikeda811', '2004-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS819372234860', '吕致远', 0, '+81 80-3785-2339', 1, '833325033802786351', '日本ならし西大寺赤田町一丁目7番5号6階', '1995-11-14', 0, 0, 'zlu', '2013-08-22', 'luzhiy2', '2011-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS690319224420', '曾岚', 1, '+86 21-9465-9573', 2, '140779099892191419', '中国上海市浦东新区橄榄路732号13号楼', '1993-11-14', 0, 0, 'lzeng1958', '2017-03-21', 'lanzeng', '2003-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS385411916102', '韓曉彤', 0, '+81 80-3050-6530', 4, '261052581796828219', '日本東京港区東新橋一丁目5番1号50階', '1996-07-28', 0, 0, 'hiutung307', '2002-01-05', 'hthan', '2003-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS496769840834', '蔣梓晴', 1, '+81 52-972-4936', 4, '229582916420055783', '9-kai, 10 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-12-19', 0, 0, 'tcchian9', '2010-05-05', 'tcchi2003', '2005-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS963604989312', '中村彩乃', 1, '+86 10-164-4635', 1, '589999457085859170', 'No.19 building, 130 028 County Rd, Yanqing District, Beijing, China', '1998-04-11', 0, 0, 'anakamura', '2020-12-09', 'nakaayano', '2020-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS863228219697', '龚詩涵', 0, '+86 10-6477-2458', 3, '085003404772568921', '中国北京市东城区东单王府井东街71号华润大厦32室', '1996-11-08', 0, 0, 'gongs', '2020-06-30', 'shihagong', '2019-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS209894455149', '戴世榮', 0, '+86 10-251-6818', 1, '037770616849980002', '中国北京市延庆区028县道146号49楼', '1998-04-02', 0, 0, 'dasw', '2011-02-10', 'swdai04', '2017-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS903337232382', '金震南', 0, '+81 90-1214-3204', 4, '732483749631624071', '日本札幌清田区真栄四条五丁目19番9号40階', '1987-12-13', 0, 0, 'zhennan5', '2009-12-13', 'zhennanjin', '2000-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS671823713983', '酒井涼太', 1, '+81 3-1677-8554', 3, '458688991944880566', '日本東京渋谷区代々木二丁目3番18号40階', '1985-10-03', 0, 0, 'sakair46', '2017-12-02', 'sakairyota93', '2001-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS513589142282', '林子韬', 1, '+1 312-549-6936', 2, '844796355437646984', '326 North Michigan Ave Apt 29, Chicago, IL 60611, United States', '1993-03-29', 0, 0, 'lzi1944', '2021-05-24', 'zilin', '2015-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS183415402060', '佐野一輝', 1, '+81 11-172-4395', 2, '516363545041235755', 'Rm. 31, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1994-03-04', 0, 0, 'iks', '2014-12-05', 'iksan', '2001-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS849181702933', 'Rodney Hayes', 1, '+81 80-1382-9452', 0, '444450818466401543', '日本おおさかし平野区加美東四丁目9番16号34階', '1994-07-08', 0, 0, 'rodney4', '2002-10-27', 'hayes2', '2012-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS724690866963', '西村蓮', 0, '+86 157-5263-7077', 1, '165819834678390217', 'No.11 building, 343 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-03-19', 0, 0, 'nishimura125', '2005-07-24', 'nir', '2008-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS133681748429', '苗曉彤', 0, '+86 146-7828-2580', 4, '595358550324847506', '中国上海市黄浦区淮海中路792号50楼', '1986-05-14', 0, 0, 'mhiutung', '2003-11-27', 'hiutungmi1', '2015-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS430547453091', '後藤凛', 1, '+1 614-516-0263', 2, '856742038234680149', '683 Diplomacy Drive Apt 44, Columbus, GA 43228, United States', '1989-10-15', 0, 0, 'ringoto', '2003-03-01', 'ring', '2002-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS947227167803', '邵梓晴', 1, '+44 (161) 168 5452', 1, '256752063356170290', 'Unit 14, Oxford Eco Centre, 673 Portland St, Manchester, M1 3LA, United Kingdom', '1996-01-13', 0, 0, 'tcsiu8', '2001-09-22', 'siutszching1125', '2019-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS865396129928', '孔秀英', 1, '+44 5704 527292', 2, '730816393429928732', 'Flat 36, 285 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-08-18', 0, 0, 'xiuyingkong', '2001-02-19', 'koxiuying65', '2006-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS512673871852', '野口美緒', 1, '+44 (151) 606 9689', 1, '868560511298951806', 'Flat 45, 971 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-12-28', 0, 0, 'noguchimi1231', '2008-06-20', 'mio3', '2016-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS131975689844', '黄安琪', 0, '+44 7684 924266', 4, '030989148870003662', 'Unit 45, Oxford Eco Centre, 969 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-09-24', 0, 0, 'anqihu', '2019-01-11', 'huaanqi', '2001-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS847149981744', '林百花', 1, '+1 718-914-4568', 1, '832184618275838606', '26 Columbia St Apt 13, Brooklyn, NY 11231, United States', '1986-10-21', 0, 0, 'hayashimo711', '2012-03-27', 'mh825', '2007-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS623904462343', '萧云熙', 1, '+86 138-0697-6915', 4, '025134586840486548', 'Room 28, CR Building, 665 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-04-01', 0, 0, 'yunxixiao43', '2006-02-16', 'yunxi1940', '2001-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS265966472069', '程璐', 0, '+86 149-9744-2485', 1, '247996602244269853', 'Room 18, CR Building, 284 Jianxiang Rd, Pudong, Shanghai, China', '1997-01-15', 0, 0, 'lucheng7', '2008-11-14', 'luch', '2014-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS216257998674', 'Gladys Gutierrez', 0, '+81 90-6035-1943', 3, '174603391023037720', '14-kai, 5-2-9 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-03-12', 0, 0, 'gutgla8', '2000-03-19', 'gladys5', '2020-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS040045923654', 'Donald Wright', 1, '+81 74-255-9268', 3, '316950979870055516', 'Rm. 18, 3-9-16 Gakuenminami, Nara, Japan', '1988-05-12', 0, 0, 'donaldwri', '2016-05-16', 'wright206', '2016-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS275188739754', 'Jeffrey Gonzales', 1, '+1 718-564-7796', 4, '461117685472106821', '493 1st Ave Apartment 14, Brooklyn, NY 11220, United States', '1995-04-19', 0, 0, 'jefgonzales14', '2018-01-01', 'gonzalesj81', '2009-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS735340813938', 'Anthony Torres', 1, '+86 131-5700-0692', 3, '972018616334240817', 'No.27 building, 533 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-10-25', 0, 0, 'anthonytorres7', '2012-08-08', 'torresantho4', '2017-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS857561796868', '薛曉彤', 0, '+1 838-619-2195', 2, '824799561408759236', '529 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-05-20', 0, 0, 'hiutung5', '2015-09-28', 'hiutusi8', '2021-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS759421232683', '胡秀文', 1, '+81 52-384-1667', 2, '538980063511129680', '日本なごやし北区楠味鋺三丁目80番8号41階', '1990-02-17', 0, 0, 'smw922', '2012-12-16', 'wsauman', '2009-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS624765627166', '西村大輔', 1, '+81 80-0193-9771', 1, '843555663073078314', 'Rm. 45, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1995-06-08', 0, 0, 'daisukenishimura', '2000-06-10', 'nishimura217', '2018-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS688944736435', '许宇宁', 1, '+81 90-6242-7541', 2, '315498852830039759', '日本東京中央区銀座三丁目12番7号7号室', '1997-01-19', 0, 0, 'xu1114', '2003-01-20', 'xu608', '2016-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS870805306493', '蔡致远', 0, '+86 137-7170-4776', 1, '417153933846501928', '中国深圳龙岗区学园一巷794号33号楼', '1994-02-08', 0, 0, 'zhiyuancai', '2008-07-31', 'zhiyuancai', '2004-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS008330475702', 'Nancy Davis', 0, '+1 838-574-6379', 2, '570611254078046603', '846 Central Avenue Suite 31, Albany, NY 12206, United States', '1985-08-02', 0, 0, 'nancy1', '2016-02-13', 'nancy54', '2000-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS049455911880', '沈云熙', 0, '+86 20-450-6048', 2, '103666067544660936', '中国广州市白云区小坪东路32号21栋', '1989-09-21', 0, 0, 'yunxishen3', '2016-12-25', 'yunxi125', '2007-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS743235639613', '麥青雲', 1, '+81 3-8327-5889', 1, '324892231142516880', '日本東京港区東新橋一丁目5番11号34階', '1998-07-22', 0, 0, 'chingmak', '2008-01-24', 'makchingwan', '2014-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS317238693757', '严子异', 1, '+81 70-2451-7029', 3, '893822433727477724', '41F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-08-13', 0, 0, 'yanziyi', '2020-03-04', 'yan820', '2007-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS430542372684', '戴晓明', 0, '+86 755-790-4667', 4, '900508053357560147', '中国深圳罗湖区蔡屋围深南东路434号6室', '1988-07-13', 0, 0, 'xdai10', '2005-11-09', 'dai60', '2002-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS623243080032', '谭致远', 1, '+81 66-726-4386', 1, '027456273317694793', '日本おおさかし平野区加美東四丁目9番5号2階', '1986-10-27', 0, 0, 'tazh67', '2005-01-20', 'zhta123', '2022-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS937564478204', 'Jose Rose', 0, '+1 312-918-4934', 1, '796841755330756337', '597 Rush Street Apartment 37, Chicago, IL 60611, United States', '1995-03-05', 0, 0, 'josrose8', '2015-01-09', 'rose224', '2022-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS532201363875', '杜嘉欣', 0, '+86 178-9553-9545', 3, '324065701252996945', '中国深圳罗湖区蔡屋围深南东路523号华润大厦13室', '1985-09-09', 0, 0, 'karyant', '2014-01-18', 'karto47', '2021-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS568945805136', 'Frances Hayes', 1, '+1 718-346-4711', 3, '797404067229123468', '240 Bergen St Suite 4, Brooklyn, NY 11217, United States', '1997-08-18', 0, 0, 'francesha', '2004-08-09', 'hayesfrances712', '2011-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS489238076278', '池田瑛太', 0, '+44 (20) 7938 1368', 1, '426960421187486663', 'Flat 33, 920 Maddox Street, London, W1S 1PU, United Kingdom', '1994-12-08', 0, 0, 'eitaikeda', '2001-06-25', 'eitaikeda10', '2019-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS071162992228', 'Howard Hawkins', 1, '+81 11-308-7013', 1, '865734881288695656', 'Rm. 31, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-11-18', 0, 0, 'howhawkins1943', '2022-02-01', 'hhawk', '2001-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS367979404839', '村田大輔', 0, '+1 838-365-1323', 3, '356889883290408547', '691 State Street 3rd Floor, Albany, NY 12203, United States', '1992-09-16', 0, 0, 'daisukem1', '2019-01-12', 'muratada08', '2015-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS598712771489', '原百恵', 0, '+81 3-6088-1582', 2, '743676515881101732', '日本東京渋谷区代々木二丁目3番10号16号室', '1988-09-16', 0, 0, 'momoe5', '2005-08-07', 'haramomoe2007', '2013-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS254175867094', 'Pauline Bell', 0, '+81 3-1279-1388', 1, '165085983186517782', '13-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1997-06-19', 0, 0, 'bell6', '2002-09-12', 'paulinebe', '2016-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS893297148839', '安藤樹', 0, '+44 5111 389028', 1, '310294550460927626', 'Unit 22, Oxford Eco Centre, 490 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-12-09', 0, 0, 'ando00', '2006-08-12', 'ando5', '2013-10-07'); -INSERT INTO "public"."userinfo" VALUES ('TS522950391562', '羅發', 1, '+1 213-153-2743', 1, '698945592793789115', '153 S Broadway Apt 1, Los Angeles, CA 90015, United States', '1993-01-08', 0, 0, 'fatlo5', '2013-08-29', 'falo', '2021-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS023625310891', 'Stanley Graham', 1, '+81 66-917-9405', 1, '673196030247562088', '日本おおさかし西成区天神ノ森二丁目1番8号29号室', '1990-07-15', 0, 0, 'gstanley', '2009-09-10', 'stangraham6', '2016-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS193968097477', '藤永權', 1, '+86 755-2248-2669', 3, '128983485458004968', 'Room 35, 764 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-05-03', 0, 0, 'twk', '2019-09-13', 'wingkuen9', '2014-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS880989658388', '高木健太', 0, '+86 760-018-3704', 2, '673252230195529524', 'No.43 building, 170 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-07-27', 0, 0, 'taken1210', '2015-11-18', 'takagi9', '2015-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS174556239882', '佐々木美緒', 1, '+81 66-336-8369', 4, '506810260372807736', '49-kai, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1985-04-12', 0, 0, 'mio9', '2020-03-07', 'sasakimi', '2003-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS235853018260', 'Rosa Adams', 0, '+1 312-038-3261', 4, '723983096261386196', '978 North Michigan Ave Apt 40, Chicago, IL 60611, United States', '1995-06-26', 0, 0, 'adamsrosa', '2018-03-05', 'radam', '2013-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS978584731954', 'Ruth Fernandez', 1, '+86 175-2082-7872', 0, '085592026676728747', 'No.47 building, 987 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-07-10', 0, 0, 'rutf99', '2011-01-06', 'fernruth72', '2014-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS350475601460', '梁慧敏', 0, '+1 330-538-4101', 2, '214405931292258435', '591 Collier Road Suite 32, Akron, OH 44320, United States', '1985-06-29', 0, 0, 'leungwm', '2002-03-08', 'leunwm70', '2008-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS340834418472', '朱宇宁', 1, '+86 187-4534-3918', 3, '139398839988017830', '中国北京市東城区東直門內大街781号34楼', '1985-06-29', 0, 0, 'yzhu', '2017-10-22', 'zhuyuning', '2016-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS910939964710', '莫璐', 1, '+86 755-2205-5694', 2, '215224964561477009', '中国深圳罗湖区田贝一路35号1栋', '1997-04-05', 0, 0, 'lu5', '2001-08-14', 'lum', '2014-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS249813223030', '車發', 0, '+1 330-941-2181', 1, '952056650834384352', '170 Riverview Road Suite 26, Akron, OH 44313, United States', '1996-03-16', 0, 0, 'chefa5', '2019-10-24', 'fatc5', '2021-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS328125162431', '金云熙', 1, '+81 80-9558-9803', 2, '321715210696249719', '45-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-01-17', 0, 0, 'jinyunxi', '2008-08-24', 'yunxjin', '2008-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS526435778222', '有村優奈', 1, '+86 150-7413-1005', 3, '086427426735115407', '中国中山紫马岭商圈中山五路281号华润大厦40室', '1994-12-12', 0, 0, 'arimura602', '2019-02-18', 'arimyuna722', '2018-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS396430952632', 'Martha Miller', 0, '+81 74-649-4842', 3, '567685070572862213', 'Rm. 28, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-10-09', 0, 0, 'milmar', '2006-09-11', 'mmart', '2017-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS332341053544', '邱發', 0, '+81 70-8570-4273', 2, '977297384419244969', 'Rm. 38, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-11-22', 0, 0, 'fyau', '2005-07-03', 'faty2011', '2004-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS607677514881', '汤致远', 0, '+1 718-029-5602', 1, '051875367492097607', '190 Bergen St Apartment 16, Brooklyn, NY 11217, United States', '1991-08-06', 0, 0, 'zhiyuan1940', '2014-05-30', 'zhiyuantang612', '2007-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS367308933648', 'Theresa Ryan', 0, '+81 70-6337-5019', 4, '488281761420586545', 'Rm. 38, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-01-16', 0, 0, 'ryan6', '2016-03-08', 'ryather', '2000-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS452420680933', '藤井光莉', 1, '+81 90-5463-2791', 3, '009938209220850706', '日本なごやし北区清水三丁目19番10号38号室', '1988-09-05', 0, 0, 'hikarfujii122', '2003-06-23', 'hikarifujii', '2015-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS286011550932', 'Eleanor Long', 1, '+44 7856 036573', 3, '758399786843250392', 'Block 12, 271 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-12-08', 0, 0, 'elo1227', '2010-05-05', 'longe71', '2003-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS691433147394', '莫宇宁', 1, '+81 11-345-8494', 2, '316578475094656615', '日本札幌白石区菊水三条五丁目4番10号36階', '1997-05-04', 0, 0, 'yunmo', '2019-03-10', 'yuningmo', '2006-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS070313260986', 'Marilyn Wells', 1, '+1 312-676-8785', 2, '372696900473821304', '647 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-10-05', 0, 0, 'marilynwells2', '2007-11-12', 'wemari', '2006-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS720723650086', 'Jacob Phillips', 1, '+86 170-5689-8779', 2, '366871407084494553', '中国中山乐丰六路329号3楼', '1988-10-27', 0, 0, 'jacobphillips', '2002-12-11', 'phillipsj123', '2005-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS558982949858', '木村明菜', 0, '+44 (151) 872 7798', 0, '048253304244403864', 'No.42 Main building, 881 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1987-02-07', 0, 0, 'kia77', '2005-04-19', 'kimuraaki1996', '2006-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS748935599845', '後藤大和', 1, '+86 163-3354-6620', 1, '398900503024528528', 'Room 27, 440 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-07-03', 0, 0, 'yamatogoto1019', '2001-02-28', 'yamato50', '2001-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS791115690439', '渡部優奈', 1, '+44 5446 477300', 0, '128420833687626677', 'Flat 8, 162 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-09-30', 0, 0, 'ywatanabe', '2016-06-14', 'yunaw10', '2018-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS171673207763', 'Eleanor Hayes', 1, '+86 195-9811-2641', 4, '340135677372408677', '中国深圳龙岗区布吉镇西环路838号36楼', '1996-12-15', 0, 0, 'hayeseleanor', '2011-10-21', 'hayes2014', '2001-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS955361295700', '關天榮', 1, '+44 7428 679622', 4, '788764933656432804', 'Unit 48, Oxford Eco Centre, 772 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-05-01', 0, 0, 'tinwingk', '2013-03-29', 'kwtinwing', '2015-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS445311402384', '汪震南', 1, '+86 178-0808-6689', 1, '743146100377166746', '12F, 174 Kengmei 15th Alley, Dongguan, China', '1998-12-06', 0, 0, 'wangz', '2014-11-02', 'zwang', '2003-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS695364283999', '蕭國明', 0, '+1 312-122-8855', 4, '591524193288190003', '426 Pedway Suite 21, Chicago, IL 60601, United States', '1991-01-03', 0, 0, 'kwokmingsi', '2016-03-13', 'siukwokming', '2017-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS166704566129', '田志遠', 1, '+81 90-4140-7741', 2, '517769156090200833', '日本札幌豊平区豊平三条十三丁目3番18号17号室', '1985-09-22', 0, 0, 'tincy79', '2019-05-28', 'tcy7', '2010-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS369895309632', '樂朝偉', 0, '+1 718-755-3853', 4, '861884133241799078', '427 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1991-11-29', 0, 0, 'lok1111', '2019-09-10', 'lokcw10', '2003-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS630943162468', '應思妤', 0, '+1 212-609-5172', 2, '326864292625891251', '853 Wooster Street 3rd Floor, New York, NY 10012, United States', '1986-01-09', 0, 0, 'yingszeyu', '2003-10-19', 'szeyuy', '2005-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS915199430408', '河野健太', 1, '+86 20-552-4558', 2, '532084012876747849', 'Room 47, 672 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-05-20', 0, 0, 'kenkono', '2022-01-27', 'konok', '2008-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS459639385346', '方安娜', 1, '+86 184-7697-2702', 3, '124258399640890273', '中国广州市越秀区中山二路816号6号楼', '1990-02-18', 0, 0, 'onfo', '2019-01-12', 'onfong', '2019-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS901644885889', 'Marjorie Turner', 1, '+44 7411 428331', 2, '843871593320605622', 'Block 42, 9 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-04-04', 0, 0, 'turnermarjorie', '2002-10-18', 'marjorieturner', '2002-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS717015861012', 'Jean Roberts', 1, '+1 614-521-6847', 1, '988250159087386291', '42 East Alley Suite 18, Columbus, GA 43201, United States', '1994-09-09', 0, 0, 'robertsje', '2012-11-18', 'robertsjea', '2016-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS627826059733', '橋本瑛太', 1, '+1 718-469-3173', 0, '306040218050035132', '432 Nostrand Ave Apt 47, Brooklyn, NY 11216, United States', '1996-01-15', 0, 0, 'eitahashimoto920', '2019-03-14', 'hasheita', '2014-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS543292679778', '毛慧儀', 0, '+81 90-5597-4698', 3, '782397245335139407', '25F, 3-9-15 Gakuenminami, Nara, Japan', '1985-03-22', 0, 0, 'mowaiyee', '2019-12-27', 'waiyee1028', '2007-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS671284096363', '田村拓哉', 1, '+44 (161) 504 6180', 3, '417103372269407043', 'No.48 Main building, 651 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-07', 0, 0, 'tamura2', '2014-07-23', 'tamurtakuya', '2017-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS202128630940', '菊地愛梨', 1, '+81 3-7971-8811', 4, '686896454661323241', '日本東京千代田区丸の内一丁目6番11号27階', '1988-02-23', 0, 0, 'airikikuc419', '2003-07-10', 'ka1202', '2009-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS823596320446', '沈子韬', 0, '+86 193-8057-8633', 2, '667532186300946748', 'No.24 building, 10 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-10-12', 0, 0, 'zitashen', '2017-06-16', 'zits', '2011-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS752793055794', '谢秀英', 1, '+86 193-5579-5654', 3, '483365528313664104', '中国广州市白云区小坪东路945号23栋', '1993-04-04', 0, 0, 'xiexiuy527', '2018-06-28', 'xiexiuying72', '2012-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS492567726024', '駱家文', 1, '+44 (1223) 05 5821', 3, '932098103259940350', 'Flat 32, 656 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-02-10', 0, 0, 'kaman8', '2001-06-10', 'lokkaman', '2010-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS366702830001', '江霆鋒', 0, '+44 (151) 046 9530', 2, '142703520707184151', 'Unit 50, Oxford Eco Centre, 47 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-01-28', 0, 0, 'kongtingfung', '2013-06-05', 'kong8', '2013-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS507234178549', 'Kim Williams', 0, '+1 330-996-6195', 3, '023693506905086122', '645 Collier Road Apt 44, Akron, OH 44320, United States', '1989-02-25', 0, 0, 'kim10', '2011-03-28', 'williamski', '2005-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS724506126686', '吉田愛梨', 0, '+44 (1865) 64 9050', 1, '345228406106241295', 'Block 15, 599 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-10-11', 0, 0, 'airiyosh5', '2020-03-18', 'yairi', '2003-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS102386396825', '蔡慧嫻', 1, '+86 20-223-9654', 2, '329442815461088624', '中国广州市天河区天河路52号12楼', '1987-07-30', 0, 0, 'whchoi', '2010-04-18', 'choi930', '2011-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS879834435521', 'Cheryl Hernandez', 0, '+44 (161) 976 1306', 1, '288131580697045357', 'Unit 39, Oxford Eco Centre, 640 Portland St, Manchester, M1 3LA, United Kingdom', '1997-01-10', 0, 0, 'chh2', '2018-10-29', 'hercher', '2018-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS124639745934', 'Heather Ross', 0, '+44 5129 847105', 3, '923923827568688864', 'Block 26, 444 Pollen Street, London, W1S 1NG, United Kingdom', '1996-07-30', 0, 0, 'heatross', '2009-01-18', 'heatherross605', '2021-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS978262810412', '邹璐', 0, '+44 5360 566132', 2, '931767686146435677', 'Block 18, 436 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-03-25', 0, 0, 'zolu1006', '2018-09-15', 'zlu3', '2021-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS406065046362', '石川大和', 0, '+1 213-544-8251', 0, '852832032043523258', '707 Alameda Street Apartment 49, Los Angeles, CA 90002, United States', '1989-08-08', 0, 0, 'iyama', '2007-04-02', 'ishiyamato5', '2014-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS443412037969', '孫淑怡', 1, '+81 90-0982-2654', 0, '132067880165040881', 'Rm. 6, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-05-08', 0, 0, 'syhsuan1025', '2005-11-02', 'hsuansukyee', '2021-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS983603138974', '姜仲賢', 1, '+86 20-1430-6511', 2, '473413992870930409', '中国广州市白云区机场路棠苑街五巷290号17号楼', '1993-11-13', 0, 0, 'chungyin2018', '2013-04-05', 'chcy', '2005-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS342387378954', '小野百恵', 0, '+81 90-3030-6408', 1, '533051487540312295', '日本なごやし瑞穂区河岸町四丁目20番4号16階', '1992-11-03', 0, 0, 'momoe6', '2002-01-19', 'onomomoe', '2007-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS338897082273', 'Kyle Harris', 1, '+86 132-9581-7239', 1, '390160936787600580', 'Room 34, CR Building, 224 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-01-07', 0, 0, 'kyleh75', '2022-02-20', 'kylehar1028', '2011-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS547524300063', '曾詩涵', 1, '+81 52-569-9796', 3, '756109801266136478', '日本なごやし北区清水三丁目19番20号18号室', '1986-09-14', 0, 0, 'shihazeng215', '2014-06-06', 'zenshihan', '2019-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS563796647046', 'Bruce Clark', 1, '+44 7797 549571', 3, '446626061890783899', 'Unit 39, Oxford Eco Centre, 466 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1993-05-31', 0, 0, 'clarkbruce', '2004-03-24', 'brucec', '2003-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS694819442641', '森田彩乃', 0, '+81 3-4843-5073', 0, '191848685598281106', '日本東京中央区銀座三丁目12番6号27号室', '1998-10-18', 0, 0, 'amori', '2001-06-28', 'moritayano', '2016-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS785398113013', '菅原一輝', 0, '+81 90-2476-1769', 1, '284367183322371209', '23-kai, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-11-07', 0, 0, 'sugawara19', '2009-01-03', 'sugikki509', '2015-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS878088946825', '廖子韬', 1, '+1 614-601-7444', 2, '808154248507801253', '253 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-04-07', 0, 0, 'zitaoliao229', '2017-01-02', 'liaoz5', '2021-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS218859325246', '梅霆鋒', 1, '+81 70-8104-2526', 2, '014202791104529827', '日本札幌白石区菊水三条五丁目4番6号5階', '1992-07-24', 0, 0, 'tfmui9', '2020-04-05', 'mui7', '2004-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS803504419888', 'Eric Long', 0, '+1 718-844-1623', 2, '946236167732380533', '351 1st Ave Suite 20, Brooklyn, NY 11220, United States', '1991-02-15', 0, 0, 'ericlong1218', '2014-12-19', 'leric2', '2001-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS868152806412', '馮惠妹', 0, '+1 330-202-6907', 3, '608312005509059747', '792 Collier Road Apt 49, Akron, OH 44320, United States', '1988-05-28', 0, 0, 'huimeifung512', '2007-08-16', 'huimei5', '2011-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS192835789210', '丸山陸', 1, '+86 755-617-8505', 3, '334666940792734510', '中国深圳龙岗区布吉镇西环路979号35栋', '1995-05-23', 0, 0, 'maruyamariku', '2002-04-23', 'maruyriku', '2014-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS112605918730', '福田樹', 1, '+81 3-0014-0326', 3, '516432899933568636', '日本東京中央区銀座三丁目12番17号21階', '1986-05-07', 0, 0, 'fuki4', '2021-07-16', 'itsukifukuda', '2009-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS044104207310', '傅嘉欣', 0, '+1 614-929-3579', 0, '318571668846571094', '570 East Cooke Road Apartment 47, Columbus, GA 43214, United States', '1993-04-07', 0, 0, 'karyan1212', '2015-11-14', 'kyfu', '2006-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS124963348842', '斉藤翼', 1, '+1 330-024-6450', 1, '973417187462901558', '106 Collier Road Suite 27, Akron, OH 44320, United States', '1985-03-21', 0, 0, 'saitsub2', '2001-11-03', 'tsubasa10', '2002-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS470589537124', '范宇宁', 1, '+86 755-833-7878', 1, '395462781258056093', '33F, 535 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-05-23', 0, 0, 'yfan', '2007-11-07', 'fanyuning', '2004-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS285751855173', '吕杰宏', 1, '+81 70-3551-5571', 2, '942971054394471332', '日本おおさかし近江堂一丁目7番9号31号室', '1997-08-12', 0, 0, 'jieholu', '2005-09-13', 'jiehonglu', '2010-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS820261436191', '梅德華', 0, '+1 614-287-2235', 1, '531879909098560870', '506 East Alley 3rd Floor, Columbus, GA 43201, United States', '1997-09-01', 0, 0, 'takwahmui', '2016-03-25', 'twmui', '2008-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS142704490042', '松田明菜', 0, '+81 70-4706-2159', 3, '484211455193952385', 'Rm. 34, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-04-17', 0, 0, 'akinamatsuda', '2001-01-04', 'akinamatsuda819', '2006-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS262780838096', '橋本悠人', 0, '+44 7911 415877', 4, '056095722618569897', 'No.41 Main building, 592 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-07-20', 0, 0, 'yutoh7', '2004-06-19', 'yutoh', '2003-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS974669189960', '石川明菜', 1, '+81 66-503-6549', 4, '530955513886505800', '29-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1987-12-03', 0, 0, 'akinishikawa', '2016-11-26', 'ishakina6', '2012-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS889095941032', '中山桜', 0, '+44 7029 753533', 3, '450425653377713656', 'Unit 33, Oxford Eco Centre, 493 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1996-12-07', 0, 0, 'nakayama7', '2016-06-27', 'sakuranaka1012', '2020-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS369404839946', '邓詩涵', 1, '+81 70-5058-8159', 2, '268798289303975268', 'Rm. 24, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-07-23', 0, 0, 'denshiha1941', '2011-07-01', 'dengshihan', '2018-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS922911429970', 'Ethel Rodriguez', 1, '+86 168-9289-0359', 3, '885645460219973786', 'No.29 building, 54 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-05-13', 0, 0, 'rodrie', '2021-10-16', 'rodriguezet', '2001-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS363432697790', '潘子异', 0, '+86 156-2948-1690', 4, '406145969560315427', '中国北京市海淀区清河中街68号817号27号楼', '1989-04-19', 0, 0, 'ziyipan3', '2009-08-11', 'panziy', '2011-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS278241862233', '應青雲', 1, '+1 718-226-0835', 2, '425427543804494886', '885 Columbia St Suite 25, Brooklyn, NY 11231, United States', '1996-07-26', 0, 0, 'chingwanyin104', '2009-10-07', 'yingchingwan', '2016-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS984759707856', '佐野凛', 0, '+86 147-6158-0076', 1, '044707381431436289', '中国广州市天河区天河路526号48号楼', '1985-05-11', 0, 0, 'sanri', '2015-10-25', 'sano809', '2016-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS949331704032', 'Rebecca Martin', 0, '+86 163-1387-7272', 2, '798666775328963562', '中国北京市海淀区清河中街68号380号18号楼', '1998-10-10', 0, 0, 'remar2', '2003-07-21', 'rebeccamartin', '2019-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS529498105330', 'Benjamin Garza', 1, '+86 161-5355-9953', 2, '292752915161543311', 'Room 34, CR Building, 551 Binchuan Rd, Minhang District, Shanghai, China', '1985-04-25', 0, 0, 'garza10', '2021-02-13', 'bgarza', '2015-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS608806516247', '孟睿', 0, '+81 90-4279-0823', 3, '502265995255472874', '40-kai, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-12-27', 0, 0, 'ruimeng', '2010-08-08', 'meng1', '2003-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS076138843070', 'Gerald Foster', 0, '+86 188-0029-7340', 0, '771052539647298661', 'No.2 building, 107 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-12-21', 0, 0, 'gerald1941', '2005-01-09', 'fostegerald', '2006-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS397405309615', '张宇宁', 1, '+81 66-658-3528', 1, '419461006324299807', 'Rm. 50, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1997-08-12', 0, 0, 'zhangy', '2010-07-05', 'yunizhang45', '2003-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS148822291347', '野村涼太', 0, '+81 52-404-7157', 2, '127393486692672636', '31-kai, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1995-04-19', 0, 0, 'nomura1211', '2014-10-08', 'ryotanom', '2017-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS999543049802', '田杰倫', 1, '+44 7959 792908', 2, '529215246960813473', 'Unit 46, Oxford Eco Centre, 440 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-02-21', 0, 0, 'chiehlunt', '2009-06-10', 'clti', '2015-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS135721493392', '市川聖子', 1, '+1 213-356-8226', 3, '327172819738106252', '609 Grape Street Apt 4, Los Angeles, CA 90002, United States', '1987-02-08', 0, 0, 'ichikawaseik', '2006-01-17', 'is1', '2000-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS258445054853', 'Michael Walker', 0, '+86 21-1232-0573', 1, '367401245690281461', '中国上海市黄浦区淮海中路140号华润大厦15室', '1990-03-31', 0, 0, 'mwalker626', '2008-12-28', 'walker10', '2001-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS878001266439', '中村大地', 1, '+86 135-5014-2326', 2, '725212702344417874', '中国广州市海珠区江南西路562号华润大厦7室', '1985-09-09', 0, 0, 'nakamuradaichi', '2011-06-18', 'daichnakamura1015', '2011-08-20'); -INSERT INTO "public"."userinfo" VALUES ('TS522241850399', '馬浩然', 1, '+86 28-573-5931', 2, '889933973697154522', '中国成都市成华区玉双路6号6号42楼', '1986-08-11', 0, 0, 'mahy1954', '2002-12-04', 'hyma89', '2014-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS443009858784', '杉山大和', 0, '+86 186-7692-1297', 2, '049314717344811137', 'No.21 building, 349 Shanhu Rd, Dongguan, China', '1986-04-24', 0, 0, 'yamato06', '2022-01-15', 'sugiyamayamato10', '2018-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS606864478484', '井上涼太', 1, '+86 142-2334-3951', 2, '380967431373883367', '6F, 666 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-07-29', 0, 0, 'inry', '2002-09-03', 'ryotainoue412', '2004-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS075107511125', '江富城', 1, '+81 11-743-7004', 3, '474925937967049259', '日本札幌厚別区上野幌一条二丁目1番5号43階', '1990-01-03', 0, 0, 'fushikong66', '2001-02-24', 'kong8', '2007-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS821154100849', '蕭頴思', 1, '+44 5932 547886', 0, '833734943644094111', 'Unit 40, Oxford Eco Centre, 653 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-09-26', 0, 0, 'swingsze', '2008-01-08', 'wssi', '2020-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS855474716904', 'Lillian Palmer', 1, '+86 157-5659-7960', 2, '533064544773450468', 'No.7 building, 664 Tianhe Road, Tianhe District, Guangzhou, China', '1996-07-06', 0, 0, 'lillian426', '2016-10-18', 'lp7', '2020-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS517277199646', '青木桜', 1, '+1 838-658-9035', 1, '628785721725173654', '814 State Street Apartment 27, Albany, NY 12203, United States', '1997-04-23', 0, 0, 'sakura1', '2013-09-05', 'aokisa', '2004-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS909474128308', 'Helen Robertson', 1, '+1 614-650-2284', 4, '741644773172176167', '93 Diplomacy Drive Apt 6, Columbus, GA 43228, United States', '1987-09-22', 0, 0, 'rhele', '2012-02-27', 'hrobertson', '2001-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS964392956689', '佐野瑛太', 1, '+81 11-397-3314', 1, '306098503595937940', '日本札幌豊平区豊平三条十三丁目3番1号48階', '1990-09-14', 0, 0, 'sanoeit13', '2002-07-20', 'saeit7', '2013-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS772934245086', '林朝偉', 1, '+81 66-029-7090', 0, '291933113886251868', '日本おおさかし平野区加美東四丁目9番4号4階', '1994-06-15', 0, 0, 'chiuwai615', '2000-12-04', 'chiuwailam', '2012-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS047601187257', '姜秀文', 0, '+44 7615 549319', 0, '558618631074777574', 'Block 32, 282 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-01-24', 0, 0, 'sauman8', '2021-04-05', 'csauman1959', '2002-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS937588445549', '于云熙', 0, '+81 3-7731-2128', 1, '947586378855945728', '18F, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-12-23', 0, 0, 'yunxiyu', '2011-10-14', 'yu6', '2004-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS468032743180', '蔡詩涵', 1, '+81 80-9534-0915', 3, '765260819443149258', '37F, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-08-08', 0, 0, 'shihan8', '2013-01-17', 'caishihan905', '2010-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS582104581523', 'Susan Perez', 0, '+1 212-596-0279', 2, '717442739224961384', '62 Bank Street Apartment 41, New York, NY 10014, United States', '1989-05-19', 0, 0, 'pes', '2016-05-04', 'susanper', '2010-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS145891944868', 'Gloria White', 1, '+1 213-800-6726', 2, '514881994986900328', '686 Figueroa Street Apartment 12, Los Angeles, CA 90037, United States', '1995-10-07', 0, 0, 'gwhite1', '2001-03-16', 'whitegloria', '2014-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS008038381662', '容學友', 1, '+81 70-3600-4905', 4, '062331939879000611', '31-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-07', 0, 0, 'yunghy1958', '2001-03-10', 'yhy', '2011-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS458671536615', '岩崎大輔', 1, '+86 167-8004-9854', 4, '005084209919678127', 'Room 47, CR Building, 261 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-10-03', 0, 0, 'iwasakid', '2015-04-25', 'daiiwas', '2017-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS343968469198', '加藤玲奈', 0, '+81 3-1654-9506', 1, '531679621108979335', '日本東京千代田区丸の内一丁目6番14号23階', '1996-03-02', 0, 0, 'renk', '2011-11-23', 'rena611', '2010-08-29'); -INSERT INTO "public"."userinfo" VALUES ('TS708445459656', 'Betty Dixon', 0, '+86 146-4019-4374', 3, '665568643010925917', '中国上海市浦东新区健祥路776号8楼', '1985-05-09', 0, 0, 'dixobe', '2019-07-25', 'dib', '2007-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS057841840481', '毛秀英', 0, '+81 11-264-2861', 0, '692507846716944789', '46F, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-08-03', 0, 0, 'xiumao1966', '2014-08-28', 'maoxiuy', '2015-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS502568989876', 'Leslie Lewis', 0, '+86 140-9878-6975', 2, '955298060959901211', '中国北京市東城区東直門內大街36号27楼', '1985-07-02', 0, 0, 'leslilewis4', '2007-01-22', 'lewis1104', '2011-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS407080137528', '赵詩涵', 0, '+86 10-2360-5925', 0, '102325427523928095', '中国北京市西城区复兴门内大街260号华润大厦4室', '1994-08-30', 0, 0, 'zhashiha42', '2017-06-11', 'zhaoshihan', '2016-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS634059050751', '秦岚', 1, '+86 769-137-9056', 2, '707527798117555447', 'No.8 building, 464 Shanhu Rd, Dongguan, China', '1991-09-21', 0, 0, 'laqi3', '2021-03-20', 'lan1120', '2015-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS135532807960', 'Manuel Anderson', 1, '+86 20-1175-1522', 3, '512286422421012426', 'Room 48, CR Building, 138 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-05-07', 0, 0, 'andersonma', '2012-12-20', 'andem17', '2008-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS525471324416', '甘青雲', 0, '+86 28-810-6310', 2, '952592775818181095', '1F, No. 849, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-03-26', 0, 0, 'cwkam', '2006-10-24', 'kamcw', '2019-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS845130617989', 'Barbara Ramos', 0, '+81 80-8572-4196', 0, '108721667265224162', '7F, 2-1-17 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-05-27', 0, 0, 'barbara06', '2004-07-07', 'ramos624', '2018-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS107906286052', '谢安琪', 0, '+81 80-4594-7874', 2, '029946322407190620', '9-kai, 1-1-18 Deshiro, Nishinari Ward, Osaka, Japan', '1992-06-14', 0, 0, 'xa10', '2019-10-01', 'anqixie9', '2012-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS578022868161', '丁嘉伦', 1, '+81 80-0579-5951', 4, '933233641778732537', '7F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-04-18', 0, 0, 'dinji', '2015-11-11', 'dingjialun', '2003-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS934986068468', '雷曉彤', 0, '+81 90-2976-0373', 2, '155551397943619160', '日本おおさかし西成区天神ノ森二丁目1番6号12階', '1991-09-21', 0, 0, 'lohiutung8', '2002-08-16', 'loui429', '2015-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS883649481691', '宮本美緒', 1, '+44 (1865) 82 4760', 2, '001509618892690518', 'Block 46, 684 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-04-04', 0, 0, 'miymi', '2018-02-03', 'miyamotomio', '2020-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS798171110921', '魏岚', 0, '+86 165-0486-2991', 3, '766267799134876531', 'No.24 building, 584 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-10-24', 0, 0, 'weilan', '2000-08-19', 'lanwe', '2019-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS913411957504', 'Leslie Gonzalez', 0, '+44 (151) 883 9086', 4, '915137632451224839', 'Flat 16, 657 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-04-29', 0, 0, 'lesliegonzalez', '2006-11-17', 'lesliegonzalez10', '2002-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS495290495708', '黎杰宏', 0, '+1 330-625-5053', 1, '295361891036999038', '234 Ridgewood Road Suite 2, Akron, OH 44321, United States', '1989-07-28', 0, 0, 'jili', '2021-10-03', 'lijieh', '2017-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS322222403797', '傅祖兒', 0, '+81 90-1723-3853', 0, '630333894717990415', 'Rm. 27, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1998-09-22', 0, 0, 'fu10', '2010-01-20', 'choyeefu', '2017-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS352272188136', '田村結翔', 1, '+81 70-1374-0244', 3, '726475308354302126', '48F, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-12-11', 0, 0, 'tyuito', '2009-02-02', 'tamurayui', '2007-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS353375198986', '金嘉伦', 1, '+44 7045 926337', 3, '005625123307480159', 'Flat 20, 926 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-09-08', 0, 0, 'jinjialun10', '2004-08-12', 'jj823', '2020-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS385232596548', '曹永權', 1, '+86 145-5882-3743', 3, '817161850819439406', 'No.49 building, 970 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-05-08', 0, 0, 'chwingkuen', '2013-04-23', 'wingkuen87', '2008-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS368959945274', 'Tiffany King', 1, '+86 755-575-8404', 3, '360798053773390188', 'Room 11, 51 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-05-26', 0, 0, 'kingtiffany', '2021-09-28', 'king403', '2004-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS360870995671', '郭心穎', 1, '+86 179-5773-6055', 2, '398266259103261358', 'No.4 building, 884 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-10-29', 0, 0, 'kwoksw', '2018-12-18', 'kwok125', '2017-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS731362853393', '宮本百花', 0, '+44 5101 527210', 2, '256560006216516018', 'Unit 48, Oxford Eco Centre, 516 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-04-17', 0, 0, 'miyamotomomoka', '2016-10-20', 'momoka49', '2019-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS166217922788', '藤原光', 0, '+81 90-6556-1209', 2, '071064805242217457', '日本札幌白石区菊水三条五丁目4番18号42号室', '1992-09-19', 0, 0, 'hifujiwara2010', '2001-03-04', 'fhikaru', '2017-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS311193712464', '蔡睿', 0, '+81 11-136-1739', 2, '687319291819076693', '日本札幌清田区真栄四条五丁目19番1号12階', '1994-04-24', 0, 0, 'ruica', '2015-07-30', 'rca', '2006-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS490477093284', '梁德華', 0, '+86 755-452-8494', 2, '703655631406497160', 'Room 17, 579 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1992-03-17', 0, 0, 'leutw', '2020-06-20', 'twleu', '2014-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS846550142225', 'Jose Reed', 1, '+86 760-2874-2004', 1, '721127554580794966', 'Room 7, CR Building, 907 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-08-14', 0, 0, 'rej', '2002-11-07', 'reedjose57', '2005-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS246160240222', 'Louise Sullivan', 0, '+86 198-7208-2552', 2, '967429913411240434', '中国成都市锦江区人民南路四段327号25号楼', '1991-07-03', 0, 0, 'ls1211', '2002-01-02', 'sulllo', '2019-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS943122441232', '三浦美咲', 1, '+81 52-973-5732', 1, '919741772243502647', '日本なごやし北区楠味鋺三丁目80番16号25階', '1997-08-24', 0, 0, 'mm40', '2021-09-26', 'misaki409', '2009-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS712098709037', '冯安琪', 1, '+86 21-3586-9087', 3, '012516244398249151', '中国上海市徐汇区虹桥路823号37栋', '1990-06-26', 0, 0, 'anqifeng10', '2009-05-27', 'anqifeng', '2003-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS364271652825', '前田葵', 1, '+86 164-1241-6317', 4, '367989264764220616', 'Room 1, 501 Huanqu South Street 2nd Alley, Dongguan, China', '1990-11-16', 0, 0, 'maaoi319', '2015-06-19', 'aoi8', '2010-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS681699876849', 'Dennis Griffin', 0, '+86 148-2600-0525', 1, '780513121808280019', 'No.18 building, 661 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-04-25', 0, 0, 'griffind', '2015-11-20', 'dennig', '2014-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS305407195128', '田慧儀', 0, '+44 7108 058470', 2, '491106336876123138', 'No.15 Main building, 17 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-02-07', 0, 0, 'tinwaiyee', '2016-12-17', 'tinwaiyee', '2013-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS305991055460', '邱德華', 0, '+81 70-9568-5993', 1, '353824501973460698', 'Rm. 43, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-26', 0, 0, 'yautakwah', '2004-04-20', 'takwah80', '2000-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS038443031975', '郭嘉伦', 1, '+81 52-848-5559', 1, '193822299929764936', '日本なごやし北区楠味鋺三丁目80番12号27階', '1995-06-22', 0, 0, 'gujia', '2000-01-14', 'jialun1', '2019-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS502413366839', '阿部愛梨', 0, '+86 21-3592-7470', 3, '183659083269836823', '中国上海市浦东新区橄榄路27号44栋', '1985-07-15', 0, 0, 'abea1967', '2014-10-19', 'abe10', '2000-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS999678072713', 'Wayne Warren', 0, '+81 80-2539-2561', 3, '493135945945574152', '日本札幌清田区真栄四条五丁目19番7号32階', '1997-09-20', 0, 0, 'waywarr03', '2015-06-28', 'wwarre', '2013-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS989572213035', '翁安娜', 1, '+44 (1865) 09 7692', 3, '634127902212302341', 'Block 29, 127 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-10-10', 0, 0, 'yung803', '2013-12-11', 'yungon', '2016-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS809160815831', '伊藤樹', 0, '+1 718-707-7448', 4, '386022796095056066', '535 Flatbush Ave Apartment 17, Brooklyn, NY 11225, United States', '1995-07-06', 0, 0, 'ito67', '2002-10-18', 'itoitsu', '2011-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS471558382718', '内田健太', 0, '+81 70-0549-6847', 3, '926734872111640971', '23F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1994-04-07', 0, 0, 'kentuchida', '2007-01-16', 'kentauchi', '2004-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS088099083760', 'Gerald Mendez', 0, '+44 5665 067794', 3, '590679748477916287', 'No.16 Main building, 930 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-01', 0, 0, 'mendgera7', '2011-08-22', 'mendegera919', '2021-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS931857031523', '曹宇宁', 0, '+81 3-5143-7138', 4, '806029946455745279', '日本東京品川区東五反田五丁目2番20号1階', '1992-03-12', 0, 0, 'cayuni4', '2015-12-29', 'yuningca96', '2007-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS636252628638', '严宇宁', 0, '+86 182-0263-9357', 2, '134317759183075186', '中国北京市延庆区028县道767号44栋', '1995-09-01', 0, 0, 'yan2', '2017-05-29', 'yanyunin81', '2011-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS537813508516', 'Don Jackson', 1, '+81 80-4643-4924', 1, '121642874438783228', '日本札幌豊平区豊平三条十三丁目3番9号34階', '1994-12-26', 0, 0, 'jdon', '2021-12-21', 'djac705', '2013-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS672677374876', '駱慧珊', 0, '+86 196-4362-1136', 2, '882392888993435315', 'Room 7, 322 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-05-04', 0, 0, 'wslok', '2013-08-08', 'waislok', '2009-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS951859275961', 'Miguel Ramos', 0, '+86 183-4268-6607', 1, '167854589633742541', 'No.44 building, 347 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-03-02', 0, 0, 'miguel608', '2009-12-22', 'ramos2013', '2018-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS256751587570', '加藤玲奈', 0, '+44 (1223) 07 2223', 3, '838278865835953143', 'No.3 Main building, 70 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-10-25', 0, 0, 'karena', '2015-12-17', 'kato3', '2008-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS377522135854', '彭詩涵', 1, '+86 183-4209-1742', 3, '730201997312281412', '中国深圳福田区深南大道166号20楼', '1998-10-08', 0, 0, 'peng905', '2010-09-15', 'pengshihan', '2007-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS303146361369', '袁心穎', 0, '+86 136-2221-3602', 0, '896103567801802540', 'Room 1, CR Building, 951 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1996-07-29', 0, 0, 'swy', '2007-09-28', 'sumwingy', '2009-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS982023996264', 'Mike Burns', 1, '+86 10-620-1328', 2, '877988217015181519', 'Room 44, 405 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-12-24', 0, 0, 'mikebu', '2000-06-02', 'burns330', '2010-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS337363320438', '李岚', 1, '+86 769-9126-7709', 0, '137317261192624436', '中国东莞坑美十五巷539号17室', '1998-11-19', 0, 0, 'lanli8', '2021-08-15', 'lilan', '2019-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS848087911463', '蘇安琪', 1, '+44 7170 271690', 4, '761191267501468866', 'Block 23, 78 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-05-13', 0, 0, 'onso', '2021-06-29', 'sook', '2000-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS169089149608', '丸山葉月', 1, '+81 90-0498-2701', 2, '837967540053142717', '日本札幌白石区菊水三条五丁目4番5号25階', '1990-03-31', 0, 0, 'hazukmaruyama', '2019-11-23', 'hazukimar', '2014-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS894659901073', '郑子韬', 0, '+81 90-7045-0640', 3, '158112459017628518', '日本札幌白石区菊水三条五丁目2番7号11階', '1986-08-18', 0, 0, 'zitaz', '2005-12-11', 'zzitao709', '2010-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS648593845503', '呂志明', 1, '+81 52-853-9242', 3, '105613494283104992', '日本なごやし北区楠味鋺三丁目80番1号11号室', '1987-11-14', 0, 0, 'chiming2', '2001-11-15', 'luichiming', '2011-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS622680389986', '高木涼太', 1, '+86 755-975-3234', 2, '023030887078975157', '中国深圳福田区景田东一街502号23号楼', '1988-02-02', 0, 0, 'ryotaka', '2001-05-29', 'ryotatakagi', '2007-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS479236479413', 'Donald Owens', 0, '+81 70-8385-4376', 3, '493034597898281606', 'Rm. 4, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-02-09', 0, 0, 'owensdon', '2021-10-14', 'donaldow805', '2008-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS090266202854', '谢詩涵', 0, '+44 5737 528574', 1, '410911585821540585', 'Flat 49, 17 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-10-15', 0, 0, 'sxie', '2008-01-31', 'xieshih', '2016-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS693103922230', '江岚', 0, '+1 718-794-4745', 1, '328525079002570031', '355 1st Ave Suite 45, Brooklyn, NY 11220, United States', '1993-01-26', 0, 0, 'lanjiang', '2014-01-06', 'jilan', '2013-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS626409967942', '餘明', 0, '+81 3-7801-4881', 1, '846630350769631525', '日本東京中央区銀座三丁目12番8号28階', '1989-11-04', 0, 0, 'myue', '2015-11-22', 'yumin1951', '2005-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS395246487770', '魏璐', 1, '+81 80-1729-5442', 1, '293825411083950610', '日本札幌厚別区上野幌一条二丁目1番16号41階', '1994-11-03', 0, 0, 'lu830', '2002-10-31', 'wei1945', '2001-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS057280383543', '譚青雲', 1, '+44 (151) 048 3961', 3, '069323124121430030', 'Block 32, 405 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-11-06', 0, 0, 'tcw7', '2011-06-08', 'chingwant', '2006-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS555638341857', '馬慧珊', 0, '+81 11-828-9544', 2, '555137241271794412', '15-kai, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-10-15', 0, 0, 'waisanm', '2014-12-25', 'maws', '2002-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS224554876762', '萬德華', 1, '+86 139-3238-6070', 4, '244944957891697549', '中国深圳龙岗区布吉镇西环路824号华润大厦38室', '1986-08-01', 0, 0, 'meng2', '2004-11-30', 'mengtakwah', '2015-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS518292470674', '斉藤凛', 1, '+81 80-6839-7144', 4, '200434411596352719', '日本なごやし熱田区千年二丁目5番4号17号室', '1985-09-02', 0, 0, 'rinsa', '2012-01-21', 'sar41', '2018-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS446231393392', '高震南', 0, '+86 755-488-1722', 3, '558942433038339927', '中国深圳罗湖区清水河一路761号12室', '1995-06-08', 0, 0, 'zhenga', '2021-02-22', 'gao609', '2018-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS627137470976', '木下百花', 0, '+1 614-327-8286', 3, '341642949611719486', '343 Wicklow Road Apartment 27, Columbus, GA 43204, United States', '1995-07-11', 0, 0, 'kinomomoka1129', '2006-10-17', 'momokakinos', '2020-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS226771133645', '廖志遠', 0, '+1 213-799-0857', 1, '606236450228237610', '51 S Broadway Apt 38, Los Angeles, CA 90015, United States', '1985-03-17', 0, 0, 'chiyuenl', '2011-05-16', 'chiyuenlia', '2018-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS868566611409', 'Harold Evans', 0, '+44 (151) 924 1214', 1, '459649664848757263', 'Unit 31, Oxford Eco Centre, 653 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-04-13', 0, 0, 'harold6', '2018-07-12', 'hae703', '2003-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS195005917231', '罗震南', 1, '+86 153-3717-0872', 1, '074487579291766211', 'Room 42, 718 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-03-18', 0, 0, 'zheluo909', '2006-01-26', 'zhenluo911', '2012-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS918208815913', '顧家強', 0, '+86 10-492-6450', 3, '742669935561908321', '中国北京市东城区东单王府井东街710号42栋', '1990-08-08', 0, 0, 'kukakeung', '2004-02-27', 'kkku00', '2021-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS213272112327', '森花', 0, '+1 212-907-6254', 1, '800787307908750620', '738 Canal Street Apt 48, New York, NY 10013, United States', '1998-06-10', 0, 0, 'hanm', '2012-08-29', 'morhana', '2007-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS608494295002', '小野七海', 0, '+86 28-3176-7069', 1, '037596088969199892', 'No.28 building, 668 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1992-03-23', 0, 0, 'onnanami', '2018-05-12', 'onanami2', '2022-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS750204659733', '鄺富城', 1, '+44 (151) 337 7675', 1, '998948152465403539', 'No.24 Main building, 971 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-09-09', 0, 0, 'kfs9', '2017-12-10', 'fsk1217', '2018-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS196347600441', 'Juan Marshall', 1, '+86 10-984-5568', 2, '044035241431478560', '中国北京市房山区岳琉路704号13室', '1991-01-14', 0, 0, 'mj718', '2011-08-17', 'marshallj6', '2011-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS992577973875', '樂慧珊', 1, '+86 155-1531-2647', 2, '389935206623586795', 'No.50 building, 62 Kengmei 15th Alley, Dongguan, China', '1998-04-07', 0, 0, 'waisanlo', '2016-07-24', 'waisanl8', '2011-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS609153714138', '崔杰宏', 0, '+86 10-789-7452', 1, '514064689268922438', '中国北京市西城区西長安街716号19楼', '1994-06-11', 0, 0, 'jiehongcu906', '2006-06-27', 'jiehcui', '2017-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS890995452899', '邵子韬', 1, '+44 (121) 116 2438', 4, '658916860684433463', 'No.21 Main building, 359 New Street, Birmingham, B2 4DB, United Kingdom', '1986-08-11', 0, 0, 'shaozita6', '2000-12-19', 'szit6', '2006-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS199965588727', '戴睿', 0, '+1 838-933-7277', 3, '600162566168369144', '624 Central Avenue Apt 24, Albany, NY 12205, United States', '1989-10-15', 0, 0, 'rui1', '2012-03-20', 'dai7', '2015-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS990392025572', '尹宇宁', 1, '+86 769-8555-6574', 2, '946465517328745847', 'Room 4, CR Building, 558 Dongtai 5th St, Dongguan, China', '1995-04-13', 0, 0, 'yuningyin', '2015-09-07', 'yin02', '2017-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS787791031524', '常嘉伦', 1, '+86 157-7358-6011', 3, '810691979897271759', 'Room 42, CR Building, 999 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-02-23', 0, 0, 'chang525', '2016-02-21', 'changj9', '2012-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS285210968748', 'Lois Hicks', 1, '+1 212-995-7668', 2, '260897398880725717', '794 Fifth Avenue Apartment 44, New York, NY 10017, United States', '1987-08-19', 0, 0, 'hicks627', '2019-10-11', 'loh5', '2012-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS981960720369', 'Gregory Nguyen', 0, '+44 5862 115617', 4, '243435424001499542', 'Flat 45, 91 Hanover Street, London, W1S 1YD, United Kingdom', '1989-07-23', 0, 0, 'grenguy', '2019-04-16', 'gregoryn', '2015-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS821379687558', '贾杰宏', 0, '+44 (1865) 96 1633', 1, '410704495958462091', 'Block 34, 596 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-01-07', 0, 0, 'jiajiehong', '2005-04-10', 'jiejia', '2018-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS088747033721', '崔璐', 1, '+44 7660 200624', 1, '632726314860768104', 'Flat 18, 926 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-14', 0, 0, 'cuilu1', '2000-04-14', 'culu63', '2004-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS409793162374', '樂家玲', 0, '+86 760-8697-6988', 2, '648210415940273031', '中国中山乐丰六路355号43楼', '1986-02-10', 0, 0, 'lokkl', '2009-02-25', 'lokkaling', '2002-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS792693405286', '阮浩然', 1, '+44 (151) 535 6239', 2, '853897273445999277', 'Unit 43, Oxford Eco Centre, 733 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-06-26', 0, 0, 'yuenhoyin725', '2007-09-20', 'yuenhoyin', '2017-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS895813054063', 'Cynthia Lewis', 1, '+86 28-8875-3548', 0, '038565674126238988', '中国成都市锦江区红星路三段568号37楼', '1985-11-11', 0, 0, 'lewcynthia', '2007-03-01', 'lewicynth6', '2016-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS084742837393', 'Scott Sanchez', 0, '+1 838-648-0432', 4, '504164358268922701', '729 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-03-15', 0, 0, 'ssanchez8', '2011-02-20', 'scottsa', '2018-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS418357781815', '谷朝偉', 1, '+1 330-173-2220', 3, '829050794727304793', '468 Collier Road Apartment 10, Akron, OH 44320, United States', '1987-07-14', 0, 0, 'koo8', '2002-12-04', 'chiuwai1030', '2005-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS990884390036', '成俊宇', 1, '+81 80-9691-4447', 3, '814405247056083816', 'Rm. 46, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1992-04-14', 0, 0, 'shing1029', '2011-02-21', 'shing523', '2016-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS299494838063', 'Samuel Cooper', 1, '+44 7641 688921', 1, '818786357559309629', 'Block 30, 439 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-05-04', 0, 0, 'cooper504', '2015-03-08', 'csamu', '2012-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS970357903443', '贾震南', 1, '+81 66-870-7545', 4, '956553035164286675', '日本おおさかし西成区出城一丁目1番5号17階', '1986-07-20', 0, 0, 'zhennan91', '2004-03-20', 'zhennanj', '2006-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS796391291302', '甘淑怡', 1, '+44 7891 718020', 1, '672825641013079273', 'Flat 40, 550 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-08', 0, 0, 'kamsukyee', '2018-03-31', 'kamsukyee', '2006-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS459945196414', '近藤彩乃', 0, '+86 191-4356-2226', 3, '310438275422368315', '中国深圳福田区景田东一街220号34室', '1986-06-01', 0, 0, 'kay', '2010-02-03', 'kondoay', '2012-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS986133293690', '阮仲賢', 1, '+81 90-5866-6053', 2, '402942365066077285', '日本札幌清田区真栄四条五丁目19番13号22階', '1990-10-12', 0, 0, 'chungyinyu9', '2004-11-18', 'yuen3', '2020-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS097165437211', '岡本翼', 1, '+1 838-241-7838', 2, '997422907725247476', '294 Broadway Apartment 2, Albany, NY 12207, United States', '1991-03-12', 0, 0, 'okamoto326', '2017-02-20', 'otsu1110', '2010-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS780148434224', '常岚', 1, '+44 5993 667782', 1, '870930912630870954', 'Block 43, 318 Park End St, Oxford, OX1 1JD, United Kingdom', '1985-03-26', 0, 0, 'chang55', '2009-06-27', 'lachang8', '2015-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS932799655788', '邱子韬', 1, '+81 90-4031-9965', 1, '182815164549648000', 'Rm. 42, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1988-10-31', 0, 0, 'qiuzitao75', '2008-12-21', 'qzitao', '2005-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS640181885812', '何嘉伦', 0, '+81 3-0177-7949', 1, '357070784921513040', '日本東京渋谷区代々木二丁目3番8号20階', '1990-06-27', 0, 0, 'jialunh', '2014-06-16', 'hejialun', '2006-02-14'); -INSERT INTO "public"."userinfo" VALUES ('TS197027952588', 'Jose Clark', 1, '+1 838-763-1358', 4, '135227993862345216', '134 Central Avenue Suite 31, Albany, NY 12206, United States', '1989-11-30', 0, 0, 'clarkjose', '2013-11-02', 'clajose10', '2003-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS409341258597', '郝震南', 1, '+1 212-121-5549', 4, '539978122880242182', '189 West Houston Street Apartment 41, New York, NY 10014, United States', '1998-12-18', 0, 0, 'haozhen3', '2022-01-22', 'haoz1968', '2000-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS276763242381', 'Norman Collins', 1, '+81 70-4436-2045', 1, '892196471221318013', 'Rm. 50, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-08-05', 0, 0, 'normacol1', '2004-01-07', 'ncollins2002', '2019-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS464304684047', 'Scott James', 0, '+1 312-740-7436', 4, '204604827908085522', '9 North Michigan Ave Apartment 23, Chicago, IL 60611, United States', '1990-12-13', 0, 0, 'jscott517', '2020-02-02', 'jamesscott', '2015-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS617962926279', '石井瑛太', 0, '+81 80-0972-0939', 3, '065918558379239014', '日本札幌厚別区上野幌一条二丁目1番13号30号室', '1995-04-17', 0, 0, 'eitais', '2009-06-16', 'ise', '2000-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS101837043392', '湯家明', 0, '+81 52-347-3828', 1, '136191161376476498', '日本なごやし守山区瀬古東二丁目171番3号18階', '1991-11-22', 0, 0, 'tongkm', '2017-01-10', 'tonkaming9', '2014-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS409608883814', 'Theodore Gibson', 0, '+1 213-548-8570', 1, '711677520365024186', '145 S Broadway Suite 15, Los Angeles, CA 90015, United States', '1985-11-24', 0, 0, 'gibsontheod', '2005-10-09', 'gibson2', '2015-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS592941015012', '高田拓哉', 1, '+86 10-6483-4648', 1, '825450954725822126', 'No.50 building, 118 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-02-02', 0, 0, 'tt1119', '2017-08-16', 'tt9', '2011-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS766230127762', '程秀英', 1, '+1 212-979-6820', 3, '168950847635571862', '354 Fifth Avenue Suite 42, New York, NY 10017, United States', '1996-09-13', 0, 0, 'xiuyingche', '2009-06-26', 'cheng509', '2001-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS708157188211', 'Patricia Rivera', 0, '+44 (20) 9739 6202', 3, '476898265255301679', 'Block 23, 137 Pollen Street, London, W1S 1NG, United Kingdom', '1986-12-06', 0, 0, 'patriver', '2014-10-24', 'pri1994', '2020-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS780544616151', '古惠妹', 1, '+81 11-655-5649', 2, '317991057826047977', '5-kai, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-03-21', 0, 0, 'huimku10', '2009-08-08', 'huimeiku', '2012-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS168032926502', '後藤玲奈', 1, '+44 (1865) 90 5558', 1, '179047030550630797', 'Block 31, 344 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-11-12', 0, 0, 'regoto', '2019-11-02', 'gotor15', '2007-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS156372415263', '梁志遠', 1, '+86 21-0359-9106', 2, '445505645904134039', '中国上海市黄浦区淮海中路353号18楼', '1994-06-19', 0, 0, 'chiyuen13', '2011-03-27', 'cyl807', '2006-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS108943526197', '盧慧嫻', 0, '+44 7887 604094', 3, '163176919948037837', 'Unit 23, Oxford Eco Centre, 940 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1986-07-30', 0, 0, 'lowaihan', '2006-06-03', 'waihanlo506', '2009-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS917114377245', '吳思妤', 1, '+81 11-126-9603', 3, '052472232814936114', '47-kai, 6-1-8, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-10-05', 0, 0, 'syng1', '2002-10-26', 'ngszeyu', '2015-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS022447663625', '苏安琪', 1, '+86 769-4800-4426', 2, '477842172355471305', '30F, 835 Kengmei 15th Alley, Dongguan, China', '1986-11-05', 0, 0, 'suanqi9', '2006-09-10', 'su3', '2010-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS739629856258', 'Marcus Kim', 0, '+1 213-838-3887', 2, '543003163578512113', '564 Alameda Street Suite 19, Los Angeles, CA 90002, United States', '1987-02-15', 0, 0, 'marcuski1106', '2007-08-01', 'kma6', '2002-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS101146788458', '上田海斗', 0, '+86 769-883-7710', 3, '164895916938886279', 'No.28 building, 34 Dongtai 5th St, Dongguan, China', '1997-09-09', 0, 0, 'uedakaito', '2009-11-24', 'kaito1128', '2012-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS409880274270', '島田大輔', 0, '+81 80-4349-8577', 1, '501141802062961900', '43-kai, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-10-28', 0, 0, 'shimd06', '2012-12-29', 'shimadais', '2011-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS658914731686', '丁致远', 1, '+86 769-5013-1074', 4, '298628389998547101', 'No.45 building, 866 Dongtai 5th St, Dongguan, China', '1992-02-09', 0, 0, 'dingz1969', '2011-05-15', 'dinzhiyuan5', '2010-06-29'); -INSERT INTO "public"."userinfo" VALUES ('TS972523470465', 'Bernard Griffin', 0, '+81 74-959-3625', 0, '958073941460128397', '日本ならし学園南三丁目9番13号36階', '1992-02-05', 0, 0, 'bernard1947', '2008-03-29', 'bernard1', '2011-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS470681068861', '宮本翼', 1, '+81 52-329-1673', 0, '072243202240292655', '日本なごやし北区楠味鋺三丁目80番20号46号室', '1988-06-22', 0, 0, 'miytsuba', '2004-12-16', 'mitsubasa421', '2016-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS617268765143', '任詩涵', 0, '+81 11-339-4727', 0, '128953632542876709', '日本札幌厚別区上野幌一条二丁目1番6号9号室', '1988-07-06', 0, 0, 'ren61', '2005-08-03', 'renshi17', '2009-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS010175446160', '贾子韬', 1, '+86 28-7135-9946', 2, '278652038184945315', '中国成都市成华区二仙桥东三路251号48室', '1999-01-24', 0, 0, 'zjia3', '2006-08-29', 'zjia1961', '2012-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS971227205416', '山本翼', 0, '+81 66-766-9203', 0, '989041735491863700', '日本おおさかし平野区加美東四丁目9番18号30階', '1996-11-05', 0, 0, 'yamamotot', '2019-11-30', 'yamamoto2', '2006-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS900965477072', 'Karen Rivera', 1, '+86 151-2920-5286', 3, '801683487301414902', '中国北京市西城区西長安街443号华润大厦46室', '1988-11-03', 0, 0, 'riverakaren', '2017-09-03', 'riverkaren2012', '2000-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS064036281936', '宮本架純', 1, '+81 52-850-6500', 3, '403860410530482705', '42F, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-12-30', 0, 0, 'miyamotokasumi', '2016-02-27', 'kasumi2006', '2014-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS579445684264', '長谷川詩乃', 0, '+81 70-0521-2380', 4, '241577053050333847', '32-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-10-20', 0, 0, 'hs910', '2011-05-30', 'shinohasegawa', '2007-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS567569433003', '藤田樹', 1, '+81 70-5182-0987', 2, '397145430143706387', '日本東京港区東新橋一丁目5番15号30階', '1998-04-03', 0, 0, 'itsukfujita8', '2020-12-21', 'ifujit1', '2019-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS716383865747', '横山玲奈', 0, '+81 66-957-7366', 1, '434156668904271418', '9-kai, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-07-02', 0, 0, 'renayokoyama617', '2003-03-23', 'yokoyama2006', '2021-05-29'); -INSERT INTO "public"."userinfo" VALUES ('TS552746431269', 'Amber Chavez', 1, '+86 187-8556-2459', 0, '543857353085825673', '中国北京市東城区東直門內大街309号12室', '1998-07-29', 0, 0, 'chaveza2', '2000-08-01', 'amberc', '2015-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS978191656952', '村上紗良', 1, '+44 5718 823174', 2, '809548591842274337', 'Unit 17, Oxford Eco Centre, 862 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-02-06', 0, 0, 'murakami9', '2018-07-15', 'mursara403', '2002-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS978892339799', '甘家強', 0, '+81 3-0829-1569', 2, '013474903129170802', '日本東京千代田区丸の内一丁目6番16号50号室', '1993-09-08', 0, 0, 'kakeungk', '2020-12-25', 'kkk8', '2008-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS339727545616', '汪安琪', 1, '+81 52-186-6845', 2, '644182393713983347', 'Rm. 15, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1987-07-07', 0, 0, 'anqi00', '2012-02-04', 'waanqi', '2018-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS604373220149', '鄺曉彤', 0, '+81 90-5986-1392', 0, '889513352505856573', '日本東京港区東新橋一丁目5番19号22号室', '1997-06-28', 0, 0, 'kwhiutung99', '2002-04-22', 'khiutung', '2006-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS693487779288', '曾岚', 0, '+86 148-7158-6857', 0, '518155452660941624', 'Room 5, CR Building, 440 Tianhe Road, Tianhe District, Guangzhou, China', '1993-07-08', 0, 0, 'lanzeng8', '2003-03-01', 'lanzeng', '2010-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS830330257680', '藤田美緒', 0, '+1 213-841-1754', 1, '466298789798288505', '277 S Broadway Apartment 45, Los Angeles, CA 90015, United States', '1993-06-09', 0, 0, 'fujitamio7', '2012-10-04', 'mio10', '2003-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS297284131660', '柴田涼太', 1, '+86 755-7904-9974', 4, '877296999224709214', 'No.10 building, 633 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-10-31', 0, 0, 'shiryot', '2019-01-15', 'shibatary', '2021-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS233329645749', '伊藤涼太', 0, '+81 66-946-2588', 3, '420973319195947959', '日本おおさかし近江堂一丁目7番10号27号室', '1998-12-03', 0, 0, 'itr1201', '2001-11-10', 'ito06', '2011-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS264463137213', '村上海斗', 1, '+81 3-0384-6099', 3, '333121463355965757', '14-kai, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-02-19', 0, 0, 'murakamikaito1025', '2003-07-10', 'kaitomur', '2014-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS915754864910', 'Peggy Castillo', 1, '+81 90-6665-2207', 3, '184016438145533730', '日本札幌清田区真栄四条五丁目19番3号4階', '1986-04-02', 0, 0, 'castillo6', '2009-04-08', 'castillop85', '2013-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS743052412396', '吉田百恵', 0, '+86 197-7332-3055', 3, '807201479600436891', '中国成都市成华区双庆路907号15栋', '1986-03-06', 0, 0, 'ym3', '2003-04-01', 'yoshmo1019', '2021-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS433803512043', '桜井一輝', 0, '+44 5956 041388', 1, '724362611449664498', 'Flat 25, 261 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1994-10-24', 0, 0, 'ikki1213', '2018-09-04', 'sakurikki', '2015-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS895025623195', '區祖兒', 1, '+86 20-062-0513', 3, '270278849117464905', '中国广州市天河区天河路985号42楼', '1992-08-16', 0, 0, 'auchoyee', '2013-02-02', 'choyeea1', '2019-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS437367971155', '安藤凛', 0, '+81 70-6731-2568', 1, '936129445401547021', '15-kai, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-09-09', 0, 0, 'andorin', '2018-06-17', 'rin4', '2015-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS279489642829', '溫家文', 0, '+86 150-4102-7702', 2, '557793657573550543', '中国东莞东泰五街899号华润大厦38室', '1996-09-02', 0, 0, 'kmwan8', '2004-12-02', 'kamanwan92', '2007-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS007766197487', '贺秀英', 0, '+1 330-444-1207', 1, '546611389301339833', '655 Collier Road Suite 38, Akron, OH 44320, United States', '1989-08-21', 0, 0, 'he72', '2001-11-19', 'xiuyhe', '2018-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS064495595855', '石田美月', 0, '+1 614-686-9429', 2, '520380584973796212', '702 Tremont Road Suite 48, Columbus, GA 43212, United States', '1994-09-10', 0, 0, 'mishid', '2019-09-23', 'mitsukiis', '2011-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS218269609137', '熊云熙', 0, '+1 614-879-7385', 1, '786433549883570277', '234 East Cooke Road Apt 14, Columbus, GA 43214, United States', '1990-11-30', 0, 0, 'yunxiong', '2009-02-13', 'yunxix', '2010-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS703023090952', '林大和', 1, '+1 614-745-0681', 1, '368130047273248274', '524 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-05-17', 0, 0, 'yamah', '2001-04-24', 'yhaya1993', '2022-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS425995863023', '駱慧嫻', 0, '+44 5352 843557', 2, '010043389745413292', 'Block 36, 970 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-07-12', 0, 0, 'waihanlok10', '2001-06-25', 'lokwh', '2011-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS336506561064', '白浩然', 1, '+1 213-987-1847', 3, '562784350809515426', '956 S Broadway Suite 32, Los Angeles, CA 90015, United States', '1987-01-27', 0, 0, 'phy1973', '2010-12-09', 'hypak', '2001-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS363909685477', '马云熙', 0, '+81 66-349-6203', 3, '001730440090821269', '46F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1997-03-07', 0, 0, 'ma81', '2020-01-16', 'myun212', '2003-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS336914597965', '餘嘉欣', 1, '+81 80-8596-5113', 3, '919291374009410619', '19-kai, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-05-22', 0, 0, 'yueky78', '2004-04-04', 'kyyue', '2014-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS996384138938', '今井湊', 1, '+86 760-455-3231', 3, '302159697751901968', '中国中山乐丰六路845号2号楼', '1992-12-22', 0, 0, 'imamin129', '2018-06-21', 'imamin', '2018-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS523864850223', 'Ruth Peterson', 0, '+81 11-509-2569', 1, '647868547317032123', '31-kai, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-01-18', 0, 0, 'peruth', '2018-11-03', 'pr822', '2014-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS495377328526', 'Brenda Jenkins', 0, '+81 90-8724-4926', 1, '243984820546807195', '日本札幌厚別区上野幌一条二丁目1番11号2号室', '1990-11-05', 0, 0, 'jebrend8', '2009-03-13', 'jenkbrenda2', '2008-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS262631786305', 'Marcus Freeman', 1, '+44 5513 931937', 0, '198685294088157473', 'Flat 35, 429 Hanover St, Liverpool, L1 4AF, United Kingdom', '1994-09-16', 0, 0, 'freeman51', '2017-05-23', 'freeman1', '2021-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS763298960540', '大野架純', 1, '+1 718-727-8076', 2, '297354062048472418', '943 1st Ave Suite 24, Brooklyn, NY 11220, United States', '1993-07-21', 0, 0, 'onokasumi', '2013-01-26', 'onkasumi', '2015-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS123801000758', 'Lori Perez', 1, '+1 838-817-3906', 0, '245975000206209627', '426 Lark Street 3rd Floor, Albany, NY 12210, United States', '1994-10-04', 0, 0, 'lorip70', '2006-12-04', 'loriperez1', '2006-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS656779484284', '狄國榮', 0, '+44 (161) 666 8006', 3, '454593425884640246', 'Unit 17, Oxford Eco Centre, 930 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-21', 0, 0, 'kwokwing8', '2006-07-30', 'kwti6', '2002-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS697377562738', '黎宇宁', 1, '+86 28-239-6761', 2, '446760488465209356', 'No.16 building, 339 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-05-02', 0, 0, 'yuningl1973', '2001-09-27', 'liyuni5', '2013-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS357268160353', '譚國權', 1, '+86 760-6003-3244', 3, '540015063943542286', 'No.29 building, 831 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-05-17', 0, 0, 'tkwokkuen', '2021-08-12', 'tamkwokkuen', '2017-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS838216862025', '上野七海', 1, '+1 330-723-3862', 2, '167814302913156430', '731 Fern Street 3rd Floor, Akron, OH 44307, United States', '1997-11-04', 0, 0, 'nanami86', '2003-10-11', 'unana312', '2018-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS082979408191', 'Jessica Sanchez', 0, '+81 52-413-9811', 2, '440482013057253646', '日本なごやし北区楠味鋺三丁目80番6号23階', '1988-02-18', 0, 0, 'jessan', '2004-06-06', 'jessicasanchez', '2011-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS190968058881', 'Theodore Rose', 1, '+86 10-930-0602', 0, '687220947451870551', '中国北京市房山区岳琉路934号21室', '1985-10-08', 0, 0, 'rosetheo', '2005-09-30', 'theodore5', '2009-12-20'); -INSERT INTO "public"."userinfo" VALUES ('TS498687264236', '严宇宁', 1, '+81 70-3549-6079', 2, '300614355184228373', '27-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-12-01', 0, 0, 'yuning3', '2006-08-21', 'yuning218', '2020-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS086920458319', '常子异', 0, '+86 140-2555-5549', 4, '252938094096510202', 'Room 1, 784 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-02-07', 0, 0, 'changziy', '2014-09-19', 'ziyich4', '2016-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS564497436976', 'Anita Butler', 1, '+81 80-0357-4250', 2, '561993720935073389', '日本ならし学園南三丁目9番4号16階', '1990-05-18', 0, 0, 'anb', '2002-02-27', 'anitabutl', '2018-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS188636162855', '王睿', 0, '+86 149-2099-9715', 1, '209417157119885094', 'Room 3, 276 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-05-14', 0, 0, 'ruiw', '2019-01-01', 'wangrui', '2002-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS188304822683', '毛慧嫻', 1, '+44 (1223) 50 7348', 2, '301788594604295410', 'No.16 Main building, 155 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1995-10-06', 0, 0, 'waihan1123', '2019-06-04', 'waihan83', '2010-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS663394817957', '錢慧琳', 1, '+81 66-933-2468', 4, '875708104613690947', '日本おおさかし東住吉区東田辺三丁目27番8号27号室', '1986-04-13', 0, 0, 'chinwl901', '2016-02-04', 'wailam01', '2011-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS992434476280', '岩崎健太', 0, '+44 5161 609950', 3, '116325976590695523', 'Unit 23, Oxford Eco Centre, 838 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-08-19', 0, 0, 'kiwasaki', '2014-10-15', 'iwasakik', '2010-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS001060207153', 'Margaret Griffin', 1, '+86 755-0576-9860', 0, '986612518303399260', '中国深圳罗湖区清水河一路431号17室', '1994-03-08', 0, 0, 'griffinmargaret', '2017-08-11', 'margaretg', '2009-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS344209288285', '孟子韬', 1, '+86 760-557-9324', 2, '316236736798689510', '中国中山天河区大信商圈大信南路440号40栋', '1986-02-12', 0, 0, 'mengzitao', '2009-08-22', 'mengzitao6', '2012-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS619347479689', 'Michelle Schmidt', 0, '+44 7358 760590', 4, '667512255681364733', 'Block 42, 352 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-12-29', 0, 0, 'michelle627', '2017-08-23', 'smichelle92', '2014-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS911427437814', '木村大地', 1, '+44 (151) 990 6415', 2, '550922709102975553', 'Block 44, 641 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-06-13', 0, 0, 'dak', '2008-06-27', 'kimura3', '2008-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS317860787087', '廖震南', 1, '+44 7546 587896', 1, '206797557430411806', 'No.40 Main building, 498 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1998-12-08', 0, 0, 'zhennanli01', '2000-09-04', 'liazhen', '2010-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS398428334228', 'Janet King', 0, '+86 181-7936-2365', 2, '166783586333341669', '中国广州市越秀区中山二路866号28号楼', '1993-04-11', 0, 0, 'king57', '2001-09-21', 'janet65', '2019-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS293359509861', 'Debra Silva', 1, '+44 5904 283846', 1, '741344554609752532', 'Unit 36, Oxford Eco Centre, 890 Pollen Street, London, W1S 1NG, United Kingdom', '1996-05-24', 0, 0, 'silva620', '2000-06-16', 'silva726', '2020-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS975228950779', '池田光', 0, '+44 5195 855364', 1, '664964869961528560', 'Block 46, 719 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1985-09-15', 0, 0, 'hikaiked18', '2017-01-17', 'hike', '2006-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS545062168074', '伍俊宇', 1, '+81 80-7428-1505', 0, '552117039992160272', '日本おおさかし東住吉区東田辺三丁目27番18号45号室', '1990-10-31', 0, 0, 'chunyu1029', '2003-10-20', 'ng4', '2020-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS707898027193', '董子异', 1, '+81 70-8580-3286', 3, '682038859474472696', '日本おおさかし近江堂一丁目7番11号30号室', '1992-05-26', 0, 0, 'zdong2', '2018-10-29', 'zdong', '2000-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS168534123532', '徐詠詩', 1, '+81 90-2204-5971', 2, '020792750527495388', '日本なごやし北区清水三丁目19番13号12階', '1991-12-21', 0, 0, 'tws', '2004-11-03', 'tsuws', '2013-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS300296585210', '岩崎悠人', 1, '+44 7254 545455', 0, '489744498524695119', 'No.37 Main building, 587 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-10-17', 0, 0, 'yuto303', '2004-11-11', 'yuto229', '2004-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS787589274811', '任明詩', 1, '+1 718-384-9473', 3, '809227957854776721', '589 Columbia St Suite 5, Brooklyn, NY 11231, United States', '1992-06-03', 0, 0, 'yammingsze4', '2005-08-22', 'mingszeyam', '2002-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS754286808686', '段安琪', 0, '+86 189-2183-8839', 2, '875039858120998076', 'Room 8, CR Building, 660 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-05-02', 0, 0, 'da7', '2011-11-01', 'anqiduan821', '2005-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS422417456233', 'Henry Thomas', 1, '+81 80-5500-8599', 3, '026356511675218830', '日本札幌白石区菊水三条五丁目2番13号3階', '1997-11-27', 0, 0, 'hent', '2021-11-24', 'thomahe', '2019-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS175201000677', 'Leonard Moore', 0, '+1 614-379-3353', 4, '139254640860133404', '972 East Cooke Road Suite 32, Columbus, GA 43214, United States', '1987-07-20', 0, 0, 'moore72', '2020-09-30', 'mooreleon3', '2017-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS736056777108', '薛安琪', 0, '+86 10-7716-9587', 2, '842296545845832540', '中国北京市西城区西長安街971号29栋', '1992-04-26', 0, 0, 'xueanqi5', '2007-11-25', 'xue6', '2010-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS815609636446', '藤天榮', 1, '+44 (116) 919 1190', 3, '792133527718281176', 'No.19 Main building, 756 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-10-13', 0, 0, 'tangtw', '2016-08-09', 'tinwingtang', '2001-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS226286376983', '梅富城', 0, '+1 718-115-3491', 1, '842136161098343143', '884 Bergen St Apt 49, Brooklyn, NY 11217, United States', '1989-06-14', 0, 0, 'fushingmui16', '2005-08-03', 'fsmu8', '2009-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS367172543854', 'Kathleen Gomez', 1, '+1 212-466-7670', 2, '583127243405212677', '831 Wooster Street Apt 19, New York, NY 10012, United States', '1988-09-14', 0, 0, 'gomezkathleen', '2006-03-30', 'gomkat', '2003-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS821498615301', '山口陽太', 1, '+86 21-4266-6847', 2, '595557200012280471', 'Room 4, 125 Hongqiao Rd., Xu Hui District, Shanghai, China', '1988-10-22', 0, 0, 'yotyamaguchi', '2001-08-29', 'yamy', '2004-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS782863182079', '宣惠敏', 0, '+86 769-2240-1861', 2, '601819139271755621', '33F, 59 Kengmei 15th Alley, Dongguan, China', '1991-05-21', 0, 0, 'waimanhs', '2015-01-04', 'hsuanwai', '2007-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS086773241437', 'Matthew Chavez', 1, '+1 312-228-9895', 3, '842868701229240882', '997 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1989-09-05', 0, 0, 'chavmatthew', '2002-01-07', 'matthew1', '2009-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS786728848486', 'Ralph Jordan', 0, '+44 5918 041936', 3, '853556563232954771', 'Flat 24, 503 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-08-07', 0, 0, 'rj5', '2016-12-30', 'ralphj', '2005-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS570170368642', 'Ricky Warren', 1, '+1 718-870-8757', 4, '253073218849205932', '855 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1994-02-10', 0, 0, 'warreric1110', '2015-04-02', 'rickywarren', '2009-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS434557555172', '丁致远', 1, '+81 3-0217-0396', 3, '037122868876824371', '25F, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-10-28', 0, 0, 'dinz', '2013-06-26', 'zhiyuan9', '2002-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS265407208254', '小島瑛太', 1, '+81 80-7560-2231', 2, '804580407202160197', 'Rm. 18, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-08-14', 0, 0, 'ekojima', '2009-02-20', 'eitak907', '2016-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS761055604643', '小林蓮', 0, '+44 5780 694287', 3, '278704287933292719', 'Block 4, 150 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-04-24', 0, 0, 'renkob8', '2010-11-01', 'kobayashir2', '2010-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS437169968099', '太田一輝', 0, '+1 212-339-7817', 3, '213105395497699617', '840 Wooster Street Suite 45, New York, NY 10012, United States', '1990-08-15', 0, 0, 'io5', '2000-11-23', 'ikkiota88', '2011-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS095343690072', '斎藤絢斗', 0, '+81 80-2840-2400', 2, '558385855098757512', '12-kai, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-01-01', 0, 0, 'ayas', '2005-04-16', 'as1209', '2008-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS292404236932', '傅安琪', 0, '+86 20-095-2381', 1, '509539605695502875', '中国广州市海珠区江南西路896号25栋', '1997-12-16', 0, 0, 'anqfu2', '2012-03-31', 'fu7', '2011-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS591450219286', '蕭家玲', 0, '+81 74-503-9326', 3, '959439291268750722', '日本ならし大和郡山市本庄町一丁目1番5号13号室', '1996-12-05', 0, 0, 'klsiu', '2005-04-16', 'kaling311', '2014-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS441899893366', '汪國榮', 0, '+81 11-432-6515', 2, '323123275198478663', '24F, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-09-10', 0, 0, 'wongkw115', '2016-10-12', 'wokwokwing', '2012-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS603751067824', '常云熙', 0, '+81 3-7706-5212', 4, '820369425871698661', '48-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-08-11', 0, 0, 'chang1996', '2004-06-15', 'yunxcha', '2017-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS155747287269', '宣學友', 0, '+81 52-876-4835', 2, '253079450568135834', '23F, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1989-12-05', 0, 0, 'hsuan127', '2005-08-18', 'hsuhokyau', '2012-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS416399867099', '林優奈', 0, '+44 (20) 3773 4486', 1, '287559911430164141', 'No.22 Main building, 85 Hanover Street, London, W1S 1YD, United Kingdom', '1989-08-05', 0, 0, 'hy910', '2012-10-06', 'yunah91', '2010-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS050442963527', '黃嘉欣', 1, '+86 183-8221-4951', 2, '709031479063914108', '中国广州市越秀区中山二路14号1室', '1992-06-22', 0, 0, 'wongky', '2001-11-06', 'kywong', '2011-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS881563421264', '宋子异', 1, '+1 213-711-6136', 3, '774691284896268704', '92 Sky Way Apt 23, Los Angeles, CA 90043, United States', '1995-01-11', 0, 0, 'songziyi', '2015-02-06', 'zsong', '2008-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS952120323294', '佘永權', 0, '+81 70-3658-9919', 3, '207479787237414355', '日本なごやし北区楠味鋺三丁目80番16号14階', '1988-07-20', 0, 0, 'wksheh', '2019-11-11', 'shwin', '2002-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS684688551683', '石田陸', 1, '+1 213-921-1087', 3, '491722073998532270', '284 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-01-25', 0, 0, 'ishida8', '2003-10-26', 'ri07', '2008-12-11'); -INSERT INTO "public"."userinfo" VALUES ('TS505172207441', '程致远', 1, '+1 718-029-0157', 2, '858000563873969536', '784 Bergen St Apt 34, Brooklyn, NY 11217, United States', '1998-01-27', 0, 0, 'zhiyuanchen8', '2013-06-07', 'zhiyuanc', '2014-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS592126514528', 'Jesse Rice', 0, '+1 212-416-2580', 2, '343210861372017617', '445 Bank Street Apt 39, New York, NY 10014, United States', '1995-09-17', 0, 0, 'jesserice', '2004-03-02', 'jessr', '2015-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS618646848039', 'Eddie Palmer', 0, '+1 330-748-4269', 1, '828169036241070419', '897 West Market Street 3rd Floor, Akron, OH 44333, United States', '1988-07-17', 0, 0, 'eddie412', '2015-08-18', 'palmer10', '2001-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS505768617464', '鄺天樂', 1, '+86 28-443-0982', 1, '031792016709828238', '中国成都市锦江区人民南路四段594号华润大厦11室', '1989-04-14', 0, 0, 'kwongtinlok', '2019-03-07', 'kwontinlok', '2007-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS744960505107', 'Harold White', 0, '+1 212-794-3491', 1, '980923785948840042', '125 West Houston Street 3rd Floor, New York, NY 10014, United States', '1998-09-14', 0, 0, 'harold8', '2013-10-25', 'wharold', '2005-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS385878843282', '長谷川絢斗', 0, '+86 158-3418-0243', 1, '950728999081990759', '中国广州市白云区小坪东路100号华润大厦25室', '1998-09-01', 0, 0, 'ayatohasegawa', '2000-11-14', 'ayathasegawa', '2020-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS362869960240', '程震南', 0, '+81 70-0731-3136', 3, '337857959311645433', '16-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-03-20', 0, 0, 'cheng1944', '2010-01-21', 'chezhen5', '2008-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS163192530294', '伊藤美羽', 0, '+86 21-3279-5456', 3, '876749967291063775', 'Room 17, 533 Ganlan Rd, Pudong, Shanghai, China', '1985-08-14', 0, 0, 'imiu', '2017-03-03', 'itmiu', '2016-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS320088734731', '藤原海斗', 1, '+1 213-204-7730', 2, '460214321808776292', '674 Alameda Street Suite 45, Los Angeles, CA 90002, United States', '1998-08-10', 0, 0, 'kfujiwara', '2020-04-08', 'fujkaito', '2009-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS151499447677', 'Monica Alvarez', 1, '+44 7720 637193', 1, '209397268782340167', 'Unit 42, Oxford Eco Centre, 782 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1989-02-05', 0, 0, 'monicaalvarez', '2009-04-10', 'amonica', '2000-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS332285624453', '上田彩乃', 1, '+86 191-9804-1295', 1, '345564650023537152', 'No.46 building, No.193, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-10-05', 0, 0, 'ua6', '2016-03-22', 'ayanoue', '2008-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS375833357457', '和田和真', 0, '+86 760-2814-4190', 1, '720390694261033030', 'No.30 building, 984 Lefeng 6th Rd, Zhongshan, China', '1994-04-29', 0, 0, 'wadakazu44', '2016-03-23', 'wada1973', '2002-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS317318953895', '彭宇宁', 0, '+1 212-948-9743', 3, '795686071376092617', '491 Canal Street Apartment 38, New York, NY 10013, United States', '1996-11-19', 0, 0, 'ypeng', '2005-11-25', 'yunipeng215', '2013-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS510627711233', '曹秀英', 0, '+1 212-491-7921', 1, '700338353539455815', '364 West Houston Street Apartment 3, New York, NY 10014, United States', '1997-04-05', 0, 0, 'caoxiu', '2009-03-22', 'caoxi89', '2012-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS177404892423', '前田百恵', 1, '+44 5658 712429', 2, '816315578262262013', 'No.9 Main building, 725 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-08-01', 0, 0, 'mamom', '2008-01-04', 'momoe4', '2015-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS859842591455', '羅天榮', 0, '+44 7970 536671', 2, '655106040075399343', 'Block 12, 705 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-06-10', 0, 0, 'lotw511', '2005-08-31', 'twlo626', '2011-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS267298002288', '毛霆鋒', 1, '+86 21-575-5212', 0, '449610210605775076', '中国上海市浦东新区橄榄路951号18号楼', '1994-05-06', 0, 0, 'tfmo', '2016-08-19', 'mo10', '2010-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS605007544795', '郭國賢', 0, '+86 198-0644-6194', 2, '313717662967889398', '40F, 55 028 County Rd, Yanqing District, Beijing, China', '1990-07-21', 0, 0, 'kwok1', '2012-09-17', 'kwokkwokyin', '2011-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS893934800747', '丁宇宁', 1, '+81 66-217-6885', 4, '767809923286854668', 'Rm. 16, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-09-21', 0, 0, 'diyuni', '2001-08-22', 'ding313', '2010-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS275870017994', '汪秀英', 0, '+81 52-097-9900', 3, '845618813664121278', '22-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-05-11', 0, 0, 'wangx2003', '2007-07-19', 'xiuyingwa', '2019-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS395335532347', 'Sara Powell', 1, '+81 66-971-9882', 0, '119740076185469377', '35-kai, 4-9-10 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-10-08', 0, 0, 'sarapowe47', '2000-10-07', 'sarapowell', '2021-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS751147704641', '甘潤發', 0, '+86 158-8904-5090', 2, '456645992526064292', '40F, 195 Ganlan Rd, Pudong, Shanghai, China', '1991-12-24', 0, 0, 'yunfk8', '2015-03-03', 'yfkam', '2008-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS222723471596', '严詩涵', 1, '+44 5648 693451', 3, '191480778096793706', 'Flat 25, 351 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-07-06', 0, 0, 'shiya', '2009-05-19', 'yans', '2015-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS372924745009', '熊云熙', 0, '+86 150-4280-3352', 0, '378859884749217092', '中国北京市延庆区028县道655号3栋', '1986-07-08', 0, 0, 'yunxxio8', '2002-07-30', 'yunxixi310', '2016-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS596153171836', '石秀英', 1, '+44 (121) 646 3700', 4, '876226269079014534', 'Unit 10, Oxford Eco Centre, 144 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-04-14', 0, 0, 'xiuyings', '2015-05-14', 'sxiuy', '2011-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS732449971740', '許曉彤', 1, '+81 66-118-1100', 1, '728432879941753738', '日本おおさかし西成区出城一丁目1番14号27階', '1996-01-07', 0, 0, 'hiutunghui', '2017-03-12', 'hiutung1990', '2020-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS987942838640', '中山大地', 1, '+81 52-142-3373', 0, '792587182968079114', '24-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-12-27', 0, 0, 'daichi5', '2013-07-16', 'daichi110', '2012-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS418907407445', '武田湊', 1, '+1 614-966-3243', 0, '828226499219589526', '385 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-08-13', 0, 0, 'mintake', '2013-05-23', 'takedami719', '2020-05-20'); -INSERT INTO "public"."userinfo" VALUES ('TS285489467743', '柴田明菜', 1, '+1 718-511-8124', 3, '148912878525720089', '598 Bergen St Apartment 15, Brooklyn, NY 11217, United States', '1987-11-24', 0, 0, 'shiaki1992', '2002-12-21', 'shia', '2013-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS919473067133', 'Douglas Mills', 0, '+1 330-645-8920', 1, '249981640888240272', '660 Fern Street Apt 24, Akron, OH 44307, United States', '1992-03-20', 0, 0, 'midouglas', '2020-02-15', 'douglasmil', '2008-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS371821366486', '湯永發', 1, '+81 80-0165-6181', 1, '858543054129284473', 'Rm. 42, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-09-21', 0, 0, 'twingfat', '2021-07-13', 'wftong59', '2016-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS208760070442', '松本樹', 1, '+81 90-0981-0094', 2, '612771025008367315', '日本ならし大和郡山市本庄町一丁目1番4号40号室', '1988-06-26', 0, 0, 'matsumoto2', '2008-09-24', 'matsumotoitsuki', '2019-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS773759880700', '柴田蓮', 1, '+81 74-711-3380', 3, '429389498370291174', '日本ならし西大寺赤田町一丁目7番12号12号室', '1991-07-13', 0, 0, 'rens1', '2013-10-28', 'shibataren', '2007-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS135883254346', 'Carlos Harrison', 1, '+81 70-0181-0271', 2, '363721986884555643', '日本おおさかし近江堂一丁目7番15号36階', '1988-08-27', 0, 0, 'carloshar509', '2015-11-17', 'charrison', '2012-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS505525395888', '今井悠人', 0, '+1 718-645-7726', 1, '591123446827540983', '32 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1999-01-22', 0, 0, 'iyuto', '2015-04-23', 'yuto1944', '2016-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS776501855363', '彭永權', 0, '+86 132-7971-1669', 1, '774872229448265670', '中国深圳罗湖区蔡屋围深南东路912号4号楼', '1994-08-27', 0, 0, 'wingkuenpa', '2008-08-30', 'panwing90', '2002-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS820807516368', 'Leroy Warren', 1, '+44 (1223) 19 7043', 2, '751455260237367378', 'Block 14, 289 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-10-20', 0, 0, 'warrleroy8', '2007-03-28', 'wleroy', '2021-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS727391828973', '中島美月', 1, '+81 90-7272-6791', 3, '462870944776389519', '日本東京千代田区丸の内一丁目6番1号39階', '1994-10-12', 0, 0, 'mitsukinaka', '2001-08-05', 'mitsukina1024', '2009-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS137912348553', '許俊宇', 1, '+81 70-5377-1494', 3, '891128670949784927', '40F, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-12-06', 0, 0, 'hucy3', '2021-01-20', 'hui8', '2013-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS241233771128', '斉藤美羽', 1, '+1 212-413-6494', 2, '008335674425744959', '944 Wooster Street Apt 14, New York, NY 10012, United States', '1986-10-13', 0, 0, 'sami', '2020-04-16', 'sm7', '2015-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS666714557745', '鐘明', 0, '+86 192-2183-4170', 4, '376034848422278040', '中国成都市成华区二仙桥东三路585号32楼', '1990-09-07', 0, 0, 'mc12', '2016-04-10', 'chunming7', '2011-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS528073320909', '鐘青雲', 0, '+81 11-545-5940', 1, '027531121852728973', 'Rm. 34, 5-19-10 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-11-13', 0, 0, 'chchingwan2', '2021-12-03', 'chungcw', '2001-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS622915524399', '孫慧儀', 0, '+86 28-0949-7722', 3, '719619754941532653', 'No.15 building, 982 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-05-23', 0, 0, 'waiyhs', '2002-11-01', 'hsuwaiy', '2014-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS819217008518', '樊學友', 0, '+81 66-452-3740', 1, '564335770808919928', '日本おおさかし西成区出城一丁目1番20号18階', '1992-07-21', 0, 0, 'fahy', '2017-09-18', 'fan4', '2015-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS966772196363', '應霆鋒', 1, '+81 80-5992-6558', 0, '251975567900706697', 'Rm. 41, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-05-03', 0, 0, 'tfying', '2019-11-21', 'tingfung803', '2004-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS939760087002', '林晓明', 0, '+1 718-413-0339', 2, '184599788583682535', '850 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1991-09-06', 0, 0, 'lix', '2002-09-24', 'xiaolin4', '2008-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS772361955802', '木下愛梨', 1, '+44 5152 635521', 4, '448348833311326887', 'Flat 41, 879 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-07-09', 0, 0, 'kinoairi', '2021-03-30', 'kairi', '2012-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS471510935460', 'Clifford Mills', 1, '+1 838-817-7211', 4, '085151581690841517', '740 Central Avenue Suite 33, Albany, NY 12205, United States', '1996-09-04', 0, 0, 'millsclif2020', '2009-06-24', 'clm', '2020-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS847408108919', '金睿', 0, '+86 131-5150-5802', 1, '384760838830836145', '15F, 545 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-03-13', 0, 0, 'rj1', '2008-11-21', 'jin90', '2021-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS859793887853', '内田愛梨', 1, '+86 10-396-6475', 2, '658402542656563322', '47F, 520 Yueliu Rd, Fangshan District, Beijing, China', '1989-02-12', 0, 0, 'airiuchida', '2015-01-03', 'uchiairi', '2000-01-26'); -INSERT INTO "public"."userinfo" VALUES ('TS207517711370', '小山光莉', 0, '+86 131-2939-4438', 2, '978366376539729549', 'No.35 building, 651 Dongtai 5th St, Dongguan, China', '1985-08-30', 0, 0, 'koyamahikari', '2012-04-09', 'koyama317', '2002-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS377321770048', '谷國權', 1, '+86 28-710-9224', 1, '997961351959449727', 'No.14 building, 810 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-07-17', 0, 0, 'kookwokkuen', '2014-06-16', 'kkk1994', '2010-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS105097362737', '戴心穎', 1, '+81 90-7850-8406', 2, '659133376799551561', 'Rm. 11, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-12-03', 0, 0, 'swda9', '2021-10-23', 'daisumwi', '2007-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS967221966986', '鈴木和真', 0, '+44 7284 822188', 2, '461761023334672264', 'Block 9, 153 Maddox Street, London, W1S 1PU, United Kingdom', '1993-06-11', 0, 0, 'suzuki57', '2012-08-20', 'kazumas', '2017-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS432069830157', '藤惠妹', 0, '+86 180-2914-4581', 3, '145393266177296895', '中国成都市成华区二仙桥东三路777号18栋', '1989-04-28', 0, 0, 'tanghm', '2020-09-27', 'tanghuimei', '2019-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS120809937295', '菅原百恵', 1, '+44 (161) 352 7543', 0, '989310830238360307', 'Block 45, 213 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1991-05-31', 0, 0, 'msugawara', '2008-01-11', 'momsu', '2004-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS492917933687', '洪俊宇', 1, '+81 90-7529-4169', 2, '877026638139977026', '14F, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-06-04', 0, 0, 'hcy', '2018-10-21', 'cyh820', '2018-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS357334071051', 'Sean Torres', 1, '+81 70-5701-3035', 1, '849661010901035867', '日本おおさかし近江堂一丁目7番2号7階', '1985-03-30', 0, 0, 'stor', '2004-04-02', 'torressean2', '2000-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS934329062011', '山田葉月', 0, '+86 760-9317-6983', 0, '094639858189937542', '中国中山天河区大信商圈大信南路381号24楼', '1993-10-14', 0, 0, 'yamahazuki2020', '2019-11-04', 'yhazu1985', '2020-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS255422418231', '戚安娜', 0, '+44 5307 401630', 3, '283017319048754741', 'Flat 6, 591 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-12-23', 0, 0, 'chiconna', '2012-04-16', 'chon', '2007-12-09'); -INSERT INTO "public"."userinfo" VALUES ('TS961365609829', '姜子韬', 1, '+86 755-026-8191', 4, '648621008530821950', '中国深圳福田区景田东一街65号华润大厦10室', '1994-09-24', 0, 0, 'zitjiang', '2014-03-14', 'zjiang', '2012-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS935942728261', '杜家玲', 1, '+86 755-090-4949', 1, '825820013653427931', 'Room 50, CR Building, 542 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-03-02', 0, 0, 'tokaling', '2009-10-28', 'klto', '2010-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS708962135367', '小林一輝', 0, '+86 169-8982-2559', 0, '166003935743505990', 'Room 24, 65 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-04-14', 0, 0, 'ikkikobayashi', '2011-08-10', 'ikkikob', '2016-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS093399395551', 'Charles Romero', 1, '+1 330-733-6927', 1, '310481893771574678', '338 Riverview Road Apartment 1, Akron, OH 44313, United States', '1988-02-08', 0, 0, 'romero1952', '2016-06-16', 'rch', '2019-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS481457113999', '严子异', 1, '+86 179-7582-5037', 0, '881282328234156067', 'No.23 building, 340 Huanqu South Street 2nd Alley, Dongguan, China', '1997-09-08', 0, 0, 'yaziyi', '2006-09-16', 'yan2', '2013-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS478771930690', '叶岚', 1, '+44 7724 146859', 1, '912682859740353128', 'No.49 Main building, 537 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-09-12', 0, 0, 'lany', '2021-08-28', 'lanye', '2008-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS433286166800', '陆宇宁', 1, '+81 90-5650-8051', 4, '648786012659430264', '日本東京港区東新橋一丁目5番14号3号室', '1996-11-26', 0, 0, 'luyuni', '2019-03-13', 'luy5', '2020-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS877156446410', 'Sean Simpson', 1, '+44 7412 421229', 4, '432745066435911219', 'Unit 8, Oxford Eco Centre, 938 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1996-10-07', 0, 0, 'ssean7', '2017-07-19', 'seasim10', '2002-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS311816878352', 'Debra Nelson', 0, '+1 312-404-0900', 0, '557761521193158301', '181 North Michigan Ave Suite 36, Chicago, IL 60611, United States', '1991-03-18', 0, 0, 'nelsondebra', '2018-04-27', 'nede', '2004-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS832907317078', '陶發', 0, '+81 90-8769-7726', 0, '258465703484656210', '日本ならし学園南三丁目9番4号11階', '1985-01-20', 0, 0, 'tfat', '2020-05-25', 'fat', '2015-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS196168314767', '岡本悠人', 0, '+86 196-4840-4872', 0, '338670336634397063', 'Room 11, 243 West Chang''an Avenue, Xicheng District, Beijing, China', '1996-01-01', 0, 0, 'okamoyuto78', '2012-08-26', 'okyut8', '2013-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS009446951775', '阿部瑛太', 1, '+44 (121) 179 1002', 3, '909696684648440947', 'No.7 Main building, 308 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-04-03', 0, 0, 'eitaabe', '2006-03-21', 'eita1999', '2019-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS814325377936', 'Ryan Baker', 0, '+81 80-2030-4391', 1, '206087407352883937', '日本なごやし守山区瀬古東二丁目171番12号23階', '1991-12-26', 0, 0, 'ryanbaker2', '2007-03-01', 'bakerr', '2005-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS256322723070', '陆璐', 1, '+1 718-239-3433', 1, '051310726217211291', '813 1st Ave Apt 2, Brooklyn, NY 11220, United States', '1994-11-02', 0, 0, 'lulu', '2014-03-19', 'lulu', '2011-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS715091109685', '陈安琪', 0, '+81 11-849-5419', 1, '075230666720452138', '日本札幌中央区宮の森四条六丁目1番15号42階', '1993-03-26', 0, 0, 'anchen', '2018-09-28', 'chenanqi', '2005-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS306608253779', '邓詩涵', 0, '+1 312-766-8940', 0, '696627860008208322', '697 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1988-03-07', 0, 0, 'sdeng', '2019-01-03', 'dengshi', '2015-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS506969132518', '沈嘉伦', 1, '+1 213-743-1580', 4, '264295962796237289', '759 Figueroa Street Apt 38, Los Angeles, CA 90037, United States', '1997-08-30', 0, 0, 'shjialun2', '2008-10-17', 'shenjial', '2005-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS791762049527', '徐天樂', 1, '+1 212-421-6595', 3, '034921404874110860', '301 Fifth Avenue Apt 7, New York, NY 10017, United States', '1987-01-06', 0, 0, 'tinlok119', '2001-07-23', 'tsuitinlok220', '2006-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS021535952355', '阮富城', 1, '+86 157-2157-3899', 3, '799915304442008225', 'No.45 building, 883 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-10-23', 0, 0, 'yuefs', '2010-01-14', 'yuenfs2', '2002-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS916500369416', 'Anthony Ross', 0, '+86 755-2370-4926', 2, '474908739036476846', '1F, 382 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-03-21', 0, 0, 'rossantho', '2018-05-26', 'rossanthony', '2012-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS389526614657', 'Leslie Diaz', 1, '+86 755-3829-6638', 3, '936869392749532746', '中国深圳龙岗区布吉镇西环路57号40楼', '1986-09-06', 0, 0, 'lesliediaz915', '2016-04-23', 'dleslie307', '2012-12-08'); -INSERT INTO "public"."userinfo" VALUES ('TS961646717126', '林青雲', 1, '+1 212-289-5847', 2, '688678268962500795', '948 West Houston Street 3rd Floor, New York, NY 10014, United States', '1999-02-11', 0, 0, 'cwl2', '2002-04-11', 'lamcw', '2020-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS113021411259', '原結翔', 0, '+86 28-029-8194', 1, '417143376113017827', '中国成都市锦江区人民南路四段787号46号楼', '1992-03-03', 0, 0, 'yuito05', '2007-11-01', 'hyuito2', '2010-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS985786237163', '羅家文', 0, '+86 172-5838-9229', 1, '542288784770234466', '中国北京市朝阳区三里屯路631号49栋', '1985-01-30', 0, 0, 'kamanlo', '2003-11-15', 'kaman9', '2017-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS742132022526', '西村詩乃', 0, '+86 142-9977-4924', 2, '135608194872740080', '中国中山天河区大信商圈大信南路141号9室', '1988-06-09', 0, 0, 'nishimurashino501', '2007-03-26', 'shino319', '2015-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS447441470465', '鄭志明', 1, '+86 10-9873-7078', 0, '236889190118430002', 'No.18 building, 107 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-10-05', 0, 0, 'chchiming', '2006-02-19', 'cheng10', '2018-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS346870703792', '黎震南', 1, '+86 10-003-4678', 3, '816482622345869068', 'Room 20, CR Building, 179 East Wangfujing Street, Dongcheng District , Beijing, China', '1987-08-10', 0, 0, 'zhennanli1981', '2021-09-04', 'zhennan1106', '2001-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS397358265038', '顾震南', 1, '+86 143-2387-5553', 3, '031248006054418092', 'No.41 building, 230 028 County Rd, Yanqing District, Beijing, China', '1989-10-05', 0, 0, 'zhennan6', '2016-10-19', 'zhenngu', '2000-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS061794753874', '薛德華', 1, '+1 614-169-7372', 4, '756264145096758337', '289 East Cooke Road Suite 23, Columbus, GA 43214, United States', '1987-03-13', 0, 0, 'stakwah', '2004-12-22', 'sitakwah', '2018-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS483464170821', '金子翼', 1, '+44 5995 160866', 3, '169793919457596561', 'Unit 3, Oxford Eco Centre, 461 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-11-06', 0, 0, 'ktsubasa', '2017-03-06', 'tska', '2001-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS944578842007', '木村悠人', 0, '+86 188-2953-0681', 3, '729224890545273172', '43F, 18 Yueliu Rd, Fangshan District, Beijing, China', '1987-06-14', 0, 0, 'yuto1950', '2001-03-12', 'ykimura3', '2011-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS880782070281', 'Denise Diaz', 0, '+1 312-372-4925', 2, '310259835893312642', '459 Rush Street Apt 44, Chicago, IL 60611, United States', '1993-02-04', 0, 0, 'ded95', '2010-06-11', 'diazdenise', '2011-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS435100552269', '甘明詩', 0, '+86 136-2834-9860', 3, '908768194831164635', 'No.10 building, 694 Sanlitun Road, Chaoyang District, Beijing, China', '1987-12-09', 0, 0, 'mska', '2019-01-15', 'mingsze68', '2021-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS760750701930', '常安琪', 0, '+1 838-035-5179', 4, '161224225274967990', '573 Lark Street Apt 31, Albany, NY 12210, United States', '1985-04-21', 0, 0, 'anqi3', '2005-07-29', 'changanqi2', '2002-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS398604267392', '林家玲', 0, '+86 177-2863-2416', 1, '045976593171122056', '33F, 356 Lefeng 6th Rd, Zhongshan, China', '1991-07-12', 0, 0, 'kll', '2019-10-19', 'lkl811', '2020-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS039396902757', '蘇國賢', 0, '+81 70-5811-2815', 3, '676020506720566834', '9F, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1986-10-10', 0, 0, 'kwokyin7', '2007-08-10', 'kwokyinso728', '2011-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS734903332955', '杨云熙', 1, '+1 213-806-1257', 3, '982944957150817857', '925 Alameda Street Apartment 46, Los Angeles, CA 90002, United States', '1986-01-22', 0, 0, 'yuyang1027', '2019-08-22', 'yang1102', '2018-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS801997306779', '侯睿', 0, '+44 (1223) 26 6024', 0, '143954040327411937', 'Flat 21, 978 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-06-22', 0, 0, 'rhou', '2019-09-23', 'hourui69', '2010-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS260701334733', '吳世榮', 1, '+86 20-662-8110', 2, '217948794869129962', 'No.27 building, 611 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1997-05-28', 0, 0, 'ngsw', '2001-01-15', 'ng701', '2004-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS368048885297', 'Alfred Perez', 0, '+1 212-684-7913', 2, '607959740157659923', '835 Fifth Avenue Suite 23, New York, NY 10017, United States', '1999-01-25', 0, 0, 'perez5', '2021-08-15', 'aperez5', '2018-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS204670772625', '杉山優奈', 1, '+86 21-377-1341', 2, '573613131717501618', '3F, 689 Ganlan Rd, Pudong, Shanghai, China', '1991-06-08', 0, 0, 'yusugiyama', '2006-05-05', 'yunasu', '2018-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS935734537274', '彭明', 0, '+86 755-413-1728', 4, '330900484571881711', '40F, 257 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-10-13', 0, 0, 'pang9', '2000-09-14', 'pang418', '2004-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS039204615137', 'Aaron Olson', 0, '+81 3-0961-0118', 3, '945463790472388840', '日本東京千代田区丸の内一丁目6番16号36号室', '1997-09-10', 0, 0, 'aaron4', '2011-08-12', 'olsoaar', '2008-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS704931276605', '湯頴思', 1, '+86 170-8999-2824', 2, '831024031879160066', '中国东莞珊瑚路298号49楼', '1989-03-18', 0, 0, 'wingsze7', '2016-08-30', 'tongwings1110', '2003-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS995312092629', '廖家強', 0, '+81 74-809-0034', 4, '435664592365323741', '25-kai, 3-9-19 Gakuenminami, Nara, Japan', '1986-11-27', 0, 0, 'liaokk729', '2002-10-05', 'liaokak', '2018-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS911990184691', '胡宇宁', 1, '+86 10-5762-1849', 3, '259597617396611516', '中国北京市延庆区028县道334号华润大厦4室', '1991-07-28', 0, 0, 'yuninghu1128', '2006-09-27', 'yuhu5', '2017-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS666013089552', '有村葵', 1, '+81 74-488-6092', 3, '958010416253783217', '日本ならし学園南三丁目9番15号41階', '1994-04-22', 0, 0, 'aoiarim121', '2017-08-08', 'araoi', '2021-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS516366340204', '梁震南', 0, '+86 21-8221-1601', 3, '476230219901558683', 'No.34 building, 324 Binchuan Rd, Minhang District, Shanghai, China', '1995-06-19', 0, 0, 'zliang93', '2010-10-02', 'liangzhennan7', '2021-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS949693128899', 'Mike Russell', 1, '+86 10-9822-3622', 0, '008120233349374595', 'No.14 building, 262 028 County Rd, Yanqing District, Beijing, China', '1991-01-11', 0, 0, 'miker51', '2002-04-03', 'russemi', '2015-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS190395780879', '苏致远', 0, '+1 330-083-8945', 3, '624410791426184765', '384 Ridgewood Road Suite 28, Akron, OH 44321, United States', '1994-11-30', 0, 0, 'suz', '2003-07-10', 'suzh4', '2017-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS264908620589', 'Anna Kelley', 0, '+86 142-2147-5701', 1, '470168239834530015', '中国深圳龙岗区布吉镇西环路880号40楼', '1987-07-03', 0, 0, 'kelley4', '2010-02-04', 'ak913', '2013-10-23'); -INSERT INTO "public"."userinfo" VALUES ('TS661800731618', '王子异', 1, '+44 5748 945223', 3, '020506356121225190', 'Block 24, 144 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-05-08', 0, 0, 'wangziyi', '2000-10-26', 'zwang816', '2009-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS782114365267', '郭俊宇', 0, '+1 838-244-6779', 3, '090527210310581339', '133 State Street Apt 49, Albany, NY 12203, United States', '1991-06-21', 0, 0, 'chunyu10', '2014-03-26', 'chunyu7', '2012-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS124229873350', '陆睿', 0, '+86 160-0246-9789', 3, '718707925611166705', '中国深圳福田区深南大道66号47楼', '1998-12-22', 0, 0, 'lur', '2002-03-28', 'lu5', '2009-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS429671196085', '龚睿', 1, '+81 52-364-4264', 2, '420781886733266719', '日本なごやし北区清水三丁目19番5号31階', '1994-04-26', 0, 0, 'gong8', '2006-06-26', 'rugong', '2020-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS442255804966', '劉力申', 0, '+81 74-429-4107', 3, '244633685031088125', '41-kai, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-06-02', 0, 0, 'liklau01', '2020-03-08', 'lauliksun66', '2009-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS915985485305', '福田美月', 0, '+1 212-049-2798', 0, '508960870197542783', '700 Bank Street Suite 32, New York, NY 10014, United States', '1998-10-22', 0, 0, 'mitsfukud', '2014-12-30', 'fmitsuki222', '2000-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS104837261152', '原田絢斗', 1, '+81 3-6769-5300', 3, '348034870255875685', '日本東京渋谷区代々木二丁目3番18号24階', '1986-06-22', 0, 0, 'ayatohara', '2021-12-26', 'haraaya', '2015-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS800700798662', '宋子异', 1, '+44 7080 477338', 2, '130418149941561120', 'Unit 25, Oxford Eco Centre, 303 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-08-16', 0, 0, 'ziyisong81', '2016-07-09', 'ziyi90', '2016-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS263149915181', '高橋詩乃', 1, '+1 718-268-2505', 3, '943963321407056119', '734 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1988-08-02', 0, 0, 'tshino', '2018-11-28', 'shino2003', '2014-10-04'); -INSERT INTO "public"."userinfo" VALUES ('TS102053955034', '崔慧嫻', 1, '+81 80-4748-7767', 0, '865288580396204664', '日本札幌清田区真栄四条五丁目19番5号42階', '1992-07-27', 0, 0, 'whchoi', '2018-02-13', 'whc', '2003-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS596548934254', '郑云熙', 0, '+1 838-940-5655', 1, '905329299835430999', '336 State Street 3rd Floor, Albany, NY 12203, United States', '1992-03-21', 0, 0, 'yunzheng', '2012-07-07', 'yunxizheng', '2004-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS999563944977', '吴睿', 0, '+86 157-7283-6135', 1, '957616581558665636', 'No.25 building, 560 Huanqu South Street 2nd Alley, Dongguan, China', '1989-12-29', 0, 0, 'wurui', '2000-10-19', 'wur', '2004-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS304717165916', '木下美緒', 1, '+1 212-696-0712', 3, '812955386837511766', '829 Canal Street Suite 1, New York, NY 10013, United States', '1986-12-06', 0, 0, 'kinom', '2001-05-06', 'kmi', '2006-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS806857438067', '酒井結翔', 1, '+81 80-3526-4105', 4, '541193302198830272', '日本おおさかし西成区天神ノ森二丁目1番6号2号室', '1989-08-23', 0, 0, 'sakai9', '2009-03-11', 'sakai14', '2011-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS111434907793', '邱安琪', 0, '+86 174-8293-8565', 1, '867440008227745853', 'Room 2, CR Building, 207 FuXingMenNei Street, XiCheng District, Beijing, China', '1985-08-19', 0, 0, 'qianqi509', '2006-05-15', 'qa418', '2015-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS464324828587', '成裕玲', 0, '+86 10-3878-3605', 2, '164789414384538069', 'Room 14, CR Building, 685 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-01-04', 0, 0, 'syuling2001', '2018-01-17', 'yushing', '2016-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS552618005777', '崔慧嫻', 1, '+81 70-3712-5931', 3, '919227528841835587', '日本ならし西大寺赤田町一丁目7番11号4号室', '1994-06-04', 0, 0, 'whchoi', '2004-05-05', 'choiwa', '2017-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS500279649289', 'Frederick King', 0, '+1 212-733-3454', 1, '624128215466951685', '371 Bank Street 3rd Floor, New York, NY 10014, United States', '1991-03-05', 0, 0, 'kifrederick', '2019-02-11', 'kingfrede5', '2012-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS233089364083', 'Jonathan Washington', 1, '+1 312-301-2150', 0, '025389081059196916', '829 North Michigan Ave Suite 12, Chicago, IL 60611, United States', '1985-02-09', 0, 0, 'jonathanwashi59', '2005-11-16', 'jonathanwashington', '2018-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS557474268791', 'Keith Holmes', 1, '+86 10-4544-7868', 0, '392946151758852087', '中国北京市朝阳区三里屯路634号26栋', '1998-09-20', 0, 0, 'keithholmes7', '2009-09-05', 'keithholm', '2022-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS563131133159', '近藤一輝', 1, '+81 74-984-0362', 2, '167070564938599564', '48-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1995-03-10', 0, 0, 'kondo48', '2022-03-02', 'kikki6', '2017-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS809773443491', '林晓明', 0, '+44 (121) 644 2135', 3, '154375687891531506', 'Unit 5, Oxford Eco Centre, 66 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1996-09-18', 0, 0, 'xil1219', '2016-10-25', 'lxiaoming623', '2019-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS340218256783', '遠藤絢斗', 0, '+44 7054 234201', 1, '069733817945085024', 'Flat 23, 694 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-08-09', 0, 0, 'eay724', '2002-05-11', 'aendo8', '2012-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS937104217082', '關慧嫻', 0, '+81 80-7271-4978', 1, '956666931242499676', '4F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-04-09', 0, 0, 'kwanwaihan5', '2005-11-24', 'kwanwaihan10', '2015-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS215138091289', '和田海斗', 0, '+81 80-6326-7703', 2, '047701258134013437', 'Rm. 36, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1995-01-28', 0, 0, 'kaiw', '2009-01-21', 'kaito91', '2014-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS534209378124', '吳國權', 0, '+1 838-151-4579', 3, '440104167295096726', '642 State Street Suite 22, Albany, NY 12203, United States', '1997-09-22', 0, 0, 'nkk', '2001-09-04', 'kwokkuenng', '2008-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS373393169297', '文詠詩', 1, '+86 152-9659-5351', 4, '426497759494837120', '35F, 877 Jianxiang Rd, Pudong, Shanghai, China', '1990-01-27', 0, 0, 'wingsze430', '2021-06-15', 'wingsze6', '2003-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS761761696401', 'Earl Robertson', 0, '+86 760-3232-2869', 2, '366322228704017511', 'No.41 building, 77 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-02-05', 0, 0, 'roea', '2004-10-22', 'erobertson5', '2001-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS794477496623', '田頴璇', 0, '+81 80-5193-3302', 3, '541330398471580772', '45F, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-03-15', 0, 0, 'tws1212', '2012-10-17', 'wingsuen17', '2011-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS197418922417', '車家強', 0, '+86 769-0872-9988', 1, '761842129255204418', '中国东莞坑美十五巷706号华润大厦42室', '1993-09-21', 0, 0, 'ckk', '2019-03-09', 'kakeung05', '2021-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS016657475416', 'Michelle Ramirez', 0, '+86 10-232-5002', 0, '572753626023845574', '中国北京市東城区東直門內大街151号32号楼', '1992-02-12', 0, 0, 'rmic', '2006-06-02', 'mra', '2019-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS981350387097', '何宇宁', 1, '+44 (1223) 81 2334', 1, '921521748252195592', 'No.50 Main building, 24 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-17', 0, 0, 'yunhe', '2014-09-18', 'he1', '2010-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS068609225534', '黄杰宏', 0, '+81 80-4259-7389', 3, '819894514645389635', '21F, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-11-24', 0, 0, 'jih74', '2018-07-13', 'jiehonghuang7', '2014-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS970438329815', 'Curtis Chavez', 1, '+81 70-7367-2078', 3, '989035616805700667', 'Rm. 9, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-06-07', 0, 0, 'curcha1016', '2014-07-29', 'curchave2', '2021-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS664198457900', '何麗欣', 0, '+86 20-967-4234', 2, '511859955051651619', 'Room 26, CR Building, 474 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-11-30', 0, 0, 'holy', '2011-08-17', 'hola', '2008-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS191828405104', '廖詩涵', 1, '+44 5716 328337', 4, '022173840441177731', 'No.43 Main building, 33 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-05-25', 0, 0, 'liao06', '2003-07-20', 'liao1022', '2021-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS048758574680', '後藤詩乃', 1, '+1 330-024-2160', 3, '647473428789767786', '279 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1989-04-11', 0, 0, 'gshino', '2002-11-26', 'gotoshin1020', '2003-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS660712165264', '任晓明', 1, '+44 5130 896353', 3, '822579115425414221', 'Unit 29, Oxford Eco Centre, 296 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-10-12', 0, 0, 'renx', '2010-12-23', 'xiaoming220', '2016-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS272915214938', '應麗欣', 1, '+44 7435 871459', 4, '724225034438767899', 'Block 47, 384 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-06-25', 0, 0, 'laiyan213', '2015-03-31', 'ying72', '2019-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS665384710783', '長谷川瑛太', 0, '+81 70-1248-7609', 4, '917255446547804573', '日本おおさかし西成区天神ノ森二丁目1番18号42階', '1990-07-09', 0, 0, 'hasegawa8', '2002-04-07', 'haeita47', '2003-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS181957747315', 'Clifford Gutierrez', 1, '+86 130-3022-5632', 0, '052453029140733022', '43F, 745 Kengmei 15th Alley, Dongguan, China', '1987-06-29', 0, 0, 'gc131', '2020-10-03', 'clifford10', '2018-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS949628875229', '翁裕玲', 1, '+1 213-772-0916', 2, '912801815636284384', '789 Sky Way Apt 42, Los Angeles, CA 90043, United States', '1990-05-08', 0, 0, 'yungyuling', '2008-06-12', 'yuling1028', '2000-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS360888464139', '河野陽太', 1, '+86 192-6699-7559', 3, '602699977590299447', 'No.17 building, 602 028 County Rd, Yanqing District, Beijing, China', '1997-01-13', 0, 0, 'koyo', '2004-02-29', 'konoy', '2011-08-04'); -INSERT INTO "public"."userinfo" VALUES ('TS415980603748', '三浦花', 0, '+86 755-692-7789', 2, '759673267421905524', '中国深圳罗湖区田贝一路65号37楼', '1991-07-12', 0, 0, 'hamiura1', '2021-07-09', 'miura107', '2011-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS947298678712', '後藤優奈', 0, '+81 90-4828-4384', 1, '854859783948007420', '日本おおさかし平野区加美東四丁目9番9号30階', '1985-08-23', 0, 0, 'goyuna6', '2020-08-01', 'yuna91', '2003-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS354016108497', '邵心穎', 0, '+44 7827 008560', 4, '516194121802234998', 'No.25 Main building, 485 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-05-27', 0, 0, 'siu42', '2001-07-12', 'swsiu', '2003-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS446563761326', '沈璐', 1, '+86 191-6293-4386', 1, '731351633890229658', '39F, 282 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1996-11-20', 0, 0, 'lushe6', '2017-08-02', 'slu', '2017-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS614336493390', '中島結翔', 0, '+1 330-384-5024', 2, '184738636124939977', '908 Riverview Road Apartment 12, Akron, OH 44313, United States', '1995-11-09', 0, 0, 'yunakajima', '2001-12-08', 'yuna77', '2010-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS992267630178', 'Francis Jimenez', 1, '+81 66-920-5698', 2, '426491740421307746', 'Rm. 10, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1999-02-08', 0, 0, 'francisj', '2011-11-12', 'francisjimenez', '2008-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS115316545371', 'Shawn Gutierrez', 0, '+1 212-185-4172', 2, '321542312798938764', '584 West Houston Street Apartment 3, New York, NY 10014, United States', '1989-02-18', 0, 0, 'gutierrez616', '2012-06-27', 'gsha', '2008-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS529987089984', '谢晓明', 0, '+86 755-473-3162', 0, '469785356048244155', '中国深圳龙岗区学园一巷888号17栋', '1985-10-18', 0, 0, 'xxie', '2017-11-19', 'xiaoming1226', '2014-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS636623756817', '西村明菜', 0, '+44 (1865) 39 0124', 1, '349827125452249302', 'Unit 47, Oxford Eco Centre, 248 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-03-20', 0, 0, 'nishimura3', '2007-03-03', 'nishimuraa', '2014-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS794073251538', 'Jean Davis', 1, '+44 7040 797949', 0, '599806167674888249', 'Block 20, 954 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-07-10', 0, 0, 'jdavis7', '2013-03-25', 'jeadavis87', '2017-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS337521628168', '石川紗良', 0, '+1 614-685-3696', 1, '147916590499228309', '609 Wicklow Road Apartment 29, Columbus, GA 43204, United States', '1986-01-10', 0, 0, 'sarais', '2017-05-30', 'ishsar', '2010-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS606293824809', '方睿', 1, '+86 20-1865-7596', 4, '241227530377806814', '中国广州市海珠区江南西路497号华润大厦40室', '1990-09-17', 0, 0, 'fr2013', '2013-07-26', 'fang5', '2017-11-06'); -INSERT INTO "public"."userinfo" VALUES ('TS232565126472', 'Todd Cole', 0, '+86 10-5484-1240', 0, '086209988295997278', '中国北京市西城区复兴门内大街473号12栋', '1990-03-06', 0, 0, 'toddc', '2000-02-26', 'toddcole', '2021-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS108410777393', '樂麗欣', 0, '+44 (20) 6147 8610', 1, '362638285630003051', 'No.37 Main building, 955 Hanover Street, London, W1S 1YD, United Kingdom', '1997-11-30', 0, 0, 'loly', '2005-01-31', 'loklaiyan', '2014-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS414779382905', '胡杰宏', 1, '+81 90-3410-3859', 2, '010589431199374115', '日本おおさかし近江堂一丁目7番3号10階', '1986-02-08', 0, 0, 'jiehonghu', '2016-10-26', 'jiehong1114', '2018-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS548179449804', 'Lisa Olson', 0, '+81 90-5483-9290', 2, '635843758552152876', '日本東京港区東新橋一丁目5番10号25号室', '1988-10-09', 0, 0, 'olson3', '2008-05-10', 'lio', '2000-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS236870077709', '魏震南', 0, '+81 3-6033-0726', 1, '828403357992502203', '42F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-08-13', 0, 0, 'wezh', '2006-11-03', 'wezhen', '2019-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS701655189773', '彭淑怡', 0, '+44 (1865) 52 2339', 4, '039802142182275750', 'No.39 Main building, 108 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-05-09', 0, 0, 'sukyeepa10', '2021-05-05', 'pangsukyee64', '2021-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS811512964292', '雷致远', 1, '+81 52-689-8921', 1, '980686838063005539', 'Rm. 42, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1991-01-30', 0, 0, 'zl3', '2014-02-14', 'lei8', '2005-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS153385302366', 'Albert Mendoza', 1, '+44 5251 894533', 0, '986625504423593795', 'Flat 14, 325 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-02-01', 0, 0, 'albertmendoza', '2000-12-27', 'albertmend05', '2001-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS320089125692', '陆宇宁', 0, '+1 212-203-4144', 0, '288416448776082369', '489 Canal Street Apt 35, New York, NY 10013, United States', '1995-01-28', 0, 0, 'yuninglu', '2016-01-22', 'yuning9', '2003-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS158374599491', '佘朝偉', 0, '+86 176-7135-1114', 2, '891302518547007571', '中国北京市东城区东单王府井东街86号华润大厦27室', '1988-01-01', 0, 0, 'chiuwai808', '2021-12-01', 'shehchiuw', '2009-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS441068762503', 'Kelly Phillips', 0, '+81 90-9299-3352', 1, '663218645934079068', '日本おおさかし東住吉区東田辺三丁目27番1号28階', '1992-12-20', 0, 0, 'phillips96', '2014-03-07', 'kphil', '2020-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS282619709199', '小島絢斗', 0, '+1 614-021-6120', 3, '557342095110745515', '737 East Alley 3rd Floor, Columbus, GA 43201, United States', '1994-12-30', 0, 0, 'ayatokoj411', '2012-12-23', 'kayato', '2005-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS991036183167', '黃家輝', 1, '+1 212-071-4492', 3, '419604442352636027', '504 Canal Street Suite 42, New York, NY 10013, United States', '1994-08-16', 0, 0, 'kfwo14', '2007-06-01', 'kfwong811', '2002-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS454481064788', 'Allen Hamilton', 1, '+81 90-1299-4175', 3, '095247885805720520', '4-kai, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-12-10', 0, 0, 'allenhamilton', '2005-08-26', 'hamalle9', '2018-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS362194284349', '區秀文', 0, '+81 66-288-5385', 3, '558727356480148622', '11F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-01-23', 0, 0, 'sma', '2006-01-03', 'sma531', '2015-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS176224289378', '孔詩涵', 1, '+81 52-883-3735', 3, '332870550722657689', '日本なごやし瑞穂区河岸町四丁目20番15号26階', '1999-01-27', 0, 0, 'sk5', '2018-08-23', 'shihan4', '2009-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS113617289748', '谷口絢斗', 0, '+44 (121) 045 3679', 0, '739941324200650804', 'Block 41, 570 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-04-11', 0, 0, 'taniguchiayato47', '2009-06-08', 'ayato6', '2015-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS059142418959', '加藤和真', 0, '+81 90-9338-6325', 0, '122838758675239120', '日本東京品川区東五反田五丁目2番10号30階', '1998-01-31', 0, 0, 'katokaz', '2016-05-25', 'kazumakato', '2014-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS290290610286', '藤田百恵', 1, '+81 90-1533-3297', 4, '249156645688105196', '日本札幌白石区菊水三条五丁目2番5号50階', '1998-11-07', 0, 0, 'fmom', '2015-12-24', 'momoe6', '2002-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS000299787414', '今井紗良', 1, '+1 212-024-8219', 3, '798154254661919852', '982 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1988-11-10', 0, 0, 'sara831', '2018-01-11', 'sarimai113', '2019-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS945621198513', 'Florence Bell', 0, '+44 7138 142011', 1, '687235851753264964', 'Flat 8, 71 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-03', 0, 0, 'fbell', '2021-09-01', 'bflorence1', '2002-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS594072662120', '谷慧敏', 1, '+1 213-691-0143', 3, '784567997170478184', '570 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1990-01-04', 0, 0, 'wako7', '2005-08-23', 'koowm', '2013-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS842543978628', '阮家明', 0, '+86 156-7229-2492', 2, '632935385587029588', '22F, 877 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-07-24', 0, 0, 'yuenkaming823', '2014-08-13', 'kamingyu', '2002-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS613829002288', '冯致远', 0, '+44 7655 117346', 1, '595794554981027933', 'Flat 28, 147 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-04-30', 0, 0, 'zhiyuanfen', '2021-01-31', 'fengzhiyu', '2011-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS105496024708', '安藤陽太', 0, '+1 838-766-0029', 1, '995905042183025210', '806 Central Avenue Apartment 30, Albany, NY 12206, United States', '1986-09-12', 0, 0, 'yotaan', '2002-05-02', 'andoyot', '2014-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS877248741433', '藍德華', 0, '+86 21-535-5123', 4, '138182765600140544', '中国上海市黄浦区淮海中路691号46号楼', '1997-04-16', 0, 0, 'takwah1990', '2003-04-16', 'twla908', '2007-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS792872561574', '宣裕玲', 0, '+81 3-2710-9774', 1, '649014419966374475', '48-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-10-12', 0, 0, 'hsuyl', '2002-08-02', 'yulinghsuan', '2018-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS349693332755', '田村光莉', 1, '+86 169-2981-9177', 1, '277065348188160153', 'Room 42, CR Building, 637 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-04-07', 0, 0, 'tamurahikari', '2003-07-05', 'hitam', '2000-02-29'); -INSERT INTO "public"."userinfo" VALUES ('TS140573768106', '宮本蒼士', 1, '+81 90-0204-1506', 3, '396183370062551239', '日本札幌白石区菊水三条五丁目2番19号47階', '1994-09-17', 0, 0, 'maoshi', '2014-09-18', 'miyamotoa4', '2013-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS149626115520', '薛家玲', 1, '+81 74-496-6195', 3, '873266948675510256', '日本ならし学園南三丁目9番5号35階', '1986-08-02', 0, 0, 'kalingsi831', '2009-10-12', 'kalingsi5', '2000-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS641691465958', 'Chad Rice', 0, '+81 74-524-6348', 2, '389843108202615556', '日本ならし大和郡山市本庄町一丁目1番17号33階', '1991-03-06', 0, 0, 'crice', '2001-01-05', 'cr9', '2002-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS717740118255', '苏杰宏', 1, '+86 21-374-5783', 1, '120933181760420153', 'No.34 building, 328 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-08-28', 0, 0, 'sjiehong', '2001-02-21', 'su85', '2003-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS822831877379', '邵致远', 0, '+81 66-296-2752', 1, '632566854823135559', '日本おおさかし東住吉区東田辺三丁目27番2号27階', '1986-03-06', 0, 0, 'zshao91', '2018-02-13', 'zhiyuan1130', '2007-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS732050002666', '木村紗良', 1, '+44 (1223) 74 0533', 1, '729751522481461992', 'Block 15, 197 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-01-12', 0, 0, 'sarkimura505', '2013-04-25', 'kimurasar3', '2016-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS231481264539', '應裕玲', 0, '+86 147-2205-5442', 1, '773067632702170073', 'No.24 building, 394 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-06-18', 0, 0, 'ying3', '2009-02-15', 'yuling7', '2010-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS692446246726', 'Jeffery Gonzales', 1, '+44 (1865) 24 8425', 4, '044058474646740513', 'Flat 50, 603 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-03-06', 0, 0, 'jefferygonz1225', '2018-07-24', 'jeffegon6', '2001-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS348005733744', 'Gary Ruiz', 1, '+44 (1223) 30 0012', 0, '770462448224215526', 'Unit 20, Oxford Eco Centre, 129 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-06-09', 0, 0, 'ruig', '2020-07-12', 'garyr', '2018-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS553782466028', 'Martha Jenkins', 1, '+86 21-4350-9966', 4, '016119744096283607', 'Room 20, CR Building, 220 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-06-16', 0, 0, 'marthajenki', '2006-10-01', 'jenkins89', '2018-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS592497457453', '樊朝偉', 0, '+44 7536 378264', 1, '665866043618451697', 'Unit 5, Oxford Eco Centre, 444 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-02-08', 0, 0, 'fchiuwai', '2013-10-01', 'chiuwai1223', '2009-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS214210669637', '楊麗欣', 1, '+81 3-1935-2689', 0, '627945676964592958', '9F, 1-6-18, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1995-04-28', 0, 0, 'lyyeung', '2021-04-23', 'lyy1', '2009-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS701170525921', '曾安琪', 1, '+86 179-8535-3137', 2, '594006759514013738', '中国深圳福田区深南大道343号17室', '1994-05-06', 0, 0, 'tsangok', '2012-08-30', 'tsang3', '2001-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS693662524819', '傅子韬', 1, '+86 172-4998-7500', 3, '378932735295329248', 'Room 22, CR Building, 362 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1991-04-03', 0, 0, 'zitafu', '2020-03-28', 'zitaofu', '2013-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS417758939251', '文曉彤', 1, '+1 838-566-3871', 2, '724510959854188767', '565 Central Avenue Suite 7, Albany, NY 12205, United States', '1995-06-04', 0, 0, 'man1211', '2007-11-11', 'manht1021', '2020-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS704735120577', 'Roy Wallace', 1, '+86 199-5015-2413', 2, '958721073029511735', 'No.10 building, 563 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-15', 0, 0, 'wallacero4', '2000-06-12', 'roy328', '2005-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS154760628023', '钟晓明', 1, '+1 718-923-8490', 2, '800265212022986900', '305 Columbia St Suite 25, Brooklyn, NY 11231, United States', '1990-09-22', 0, 0, 'zhongx', '2004-02-02', 'zhongxiaoming', '2001-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS972529939327', '井上七海', 1, '+86 150-6260-5300', 3, '843194063302036489', '中国广州市海珠区江南西路788号华润大厦5室', '1997-10-03', 0, 0, 'nanamiinoue', '2008-04-26', 'nanami1', '2017-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS813307150978', '谷慧敏', 0, '+81 90-5455-3131', 4, '127898492473840858', '日本ならし大和郡山市本庄町一丁目1番2号11号室', '1986-07-11', 0, 0, 'koowaiman', '2014-11-08', 'koowm', '2022-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS964192221609', '村上大輔', 0, '+1 330-513-7263', 1, '998435711277291642', '129 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1988-03-19', 0, 0, 'mdai69', '2017-01-22', 'daisukemurakami', '2009-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS776790489379', '韓嘉欣', 1, '+86 171-4614-3878', 2, '013494151996138663', '中国成都市成华区双庆路93号22楼', '1991-01-12', 0, 0, 'kyhan75', '2016-05-23', 'haky', '2008-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS782570487910', 'Janet Henderson', 0, '+1 614-054-5859', 4, '603707433662395841', '933 Wicklow Road Suite 40, Columbus, GA 43204, United States', '1992-08-12', 0, 0, 'janet2007', '2015-06-22', 'hejanet5', '2003-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS770268411486', 'Marjorie Rose', 0, '+81 70-5623-6806', 1, '552102102010221982', '日本東京港区東新橋一丁目5番9号6階', '1998-12-08', 0, 0, 'rosemarjorie63', '2014-04-22', 'mrose', '2010-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS002432450512', 'Frank Ford', 0, '+1 330-570-8952', 2, '602779676591662907', '58 West Market Street Suite 16, Akron, OH 44333, United States', '1998-04-14', 0, 0, 'frankford', '2019-01-15', 'fordfran', '2022-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS942805050712', '朱詩涵', 1, '+81 11-583-6735', 1, '005724929456845939', '6-kai, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-04-25', 0, 0, 'zhushihan', '2003-10-08', 'zhu421', '2013-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS536971031519', '佐藤拓哉', 1, '+86 760-9114-1206', 1, '986644633046414476', 'No.42 building, 469 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-12-03', 0, 0, 'takuyas', '2019-08-19', 'satot', '2019-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS794268943377', 'Howard Sanders', 0, '+44 5513 483689', 2, '060574294903470060', 'Block 10, 110 Regent Street, London, W1B 2LX, United Kingdom', '1993-08-03', 0, 0, 'sanh15', '2014-07-31', 'howarsanders', '2010-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS659272671977', 'Judy Lopez', 0, '+86 146-2952-8674', 0, '641769511806207212', '中国广州市海珠区江南西路626号32号楼', '1995-06-08', 0, 0, 'lopezjudy3', '2011-07-23', 'lopezjudy', '2014-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS598760228649', 'Rhonda Barnes', 0, '+1 838-196-4130', 0, '378260439821909520', '178 State Street Apartment 42, Albany, NY 12203, United States', '1998-06-29', 0, 0, 'rhondbarnes5', '2020-01-24', 'barnesr819', '2014-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS150204366799', '徐曉彤', 1, '+81 11-989-7797', 1, '908724929982127403', 'Rm. 13, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-18', 0, 0, 'tsuiht3', '2008-02-11', 'htt', '2016-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS154631119532', '郭震南', 0, '+1 213-053-9243', 1, '970046811677091023', '753 Figueroa Street Apt 18, Los Angeles, CA 90037, United States', '1997-09-07', 0, 0, 'guzhennan1225', '2013-11-13', 'guozhenn17', '2004-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS017670971781', '樊國明', 1, '+44 (116) 690 2465', 2, '470546282314538306', 'Block 24, 615 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1999-01-18', 0, 0, 'kwokmfan93', '2015-04-24', 'fakm', '2008-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS196410446380', '贺云熙', 1, '+1 838-911-3821', 3, '331434639324492097', '826 Central Avenue Apartment 9, Albany, NY 12206, United States', '1998-11-22', 0, 0, 'hey', '2018-02-13', 'he92', '2007-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS229954081346', 'Stanley Murray', 1, '+81 52-475-7621', 1, '556895503411098316', '17F, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-11-30', 0, 0, 'murray906', '2009-02-19', 'stanley814', '2009-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS141061200016', '丸山百花', 1, '+81 52-039-0997', 2, '135050654922661317', '34F, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1995-02-11', 0, 0, 'momomaruyama', '2013-08-25', 'maruyamam43', '2003-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS024417177878', '邓宇宁', 0, '+81 70-5166-0222', 3, '816308263466146931', 'Rm. 50, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-08-23', 0, 0, 'dy1', '2002-05-16', 'dengyuning', '2008-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS674826042596', '石秀英', 1, '+81 3-8732-6191', 3, '166161037471501768', 'Rm. 40, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-07-25', 0, 0, 'xiuyish', '2004-02-16', 'sxiuying', '2008-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS559768596534', '彭惠妹', 0, '+86 10-340-6852', 1, '468270819420054915', '中国北京市西城区复兴门内大街27号华润大厦48室', '1998-07-24', 0, 0, 'panghm43', '2014-05-20', 'pang1', '2011-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS984333645917', '梅玲玲', 1, '+86 141-2258-2382', 1, '350946805466101287', 'Room 45, CR Building, 67 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-12-11', 0, 0, 'muiling', '2011-12-07', 'llmui', '2009-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS260661311041', '劉惠敏', 0, '+81 74-879-2037', 2, '938148585951749421', 'Rm. 43, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1987-10-12', 0, 0, 'lawaiman', '2014-03-07', 'lauwaiman12', '2017-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS827856121839', '孫世榮', 1, '+86 196-7337-2526', 2, '312018161155501463', '48F, No. 945, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-03-16', 0, 0, 'swhsu8', '2018-03-10', 'hsuansaiwing', '2000-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS516460187317', '田家玲', 0, '+81 90-2524-1588', 1, '311941726784007404', '日本おおさかし近江堂一丁目7番14号19階', '1989-02-12', 0, 0, 'kalitin', '2016-10-27', 'tinkl616', '2019-03-25'); -INSERT INTO "public"."userinfo" VALUES ('TS724936134993', '中山大和', 0, '+1 212-229-3734', 0, '748490973211815776', '229 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1996-10-14', 0, 0, 'yamatn', '2009-03-17', 'ynakayama', '2019-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS597312813682', '唐青雲', 1, '+1 718-186-5737', 3, '959343258891678414', '733 Nostrand Ave Apartment 28, Brooklyn, NY 11216, United States', '1998-06-29', 0, 0, 'tcw', '2012-07-25', 'chingwan8', '2013-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS090150738723', '马子韬', 1, '+81 80-3207-6362', 3, '497940724653033447', '49F, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-06-07', 0, 0, 'zitaoma', '2007-05-11', 'zm420', '2014-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS522900407618', '雷慧儀', 0, '+81 74-219-9181', 2, '718488958925445569', '16F, 1-7-20 Saidaiji Akodacho, Nara, Japan', '1992-03-16', 0, 0, 'wyloui', '2009-04-09', 'waiyee10', '2009-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS935995058663', '成裕玲', 0, '+1 213-183-7418', 0, '068285532712931725', '956 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-06-12', 0, 0, 'yulings6', '2011-07-02', 'shingyuling', '2003-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS292749244204', '鄺志明', 1, '+44 (121) 840 0562', 0, '535876051937886830', 'Block 12, 258 New Street, Birmingham, B2 4DB, United Kingdom', '1988-05-21', 0, 0, 'chimingkw', '2006-12-02', 'cmkwong', '2005-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS526238247636', '阎安琪', 0, '+81 90-4474-3648', 2, '887099981326432298', 'Rm. 14, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1995-10-13', 0, 0, 'yananq', '2011-05-28', 'yan314', '2019-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS858870012009', '菅原一輝', 0, '+81 70-2107-6966', 1, '245208387138145067', '16F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-10-12', 0, 0, 'sugi', '2006-10-31', 'sugawara208', '2007-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS684646402709', '邹杰宏', 0, '+81 80-8997-1292', 1, '981600969072023693', '38F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-10-24', 0, 0, 'jiezou', '2014-09-24', 'zou620', '2007-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS687849803127', '尹杰宏', 1, '+86 193-3208-6124', 3, '288664881148955738', '中国广州市越秀区中山二路493号26栋', '1988-06-23', 0, 0, 'yinji', '2010-10-22', 'jiehyin', '2010-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS196418719415', 'Paul Jones', 1, '+81 74-959-8212', 1, '635293622819090849', '日本ならし大和郡山市本庄町一丁目1番13号29階', '1985-12-03', 0, 0, 'jonespaul', '2017-02-26', 'paul5', '2003-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS093216223435', '洪秀文', 0, '+81 3-2673-7725', 2, '031223749489863163', '日本東京港区東新橋一丁目5番1号35階', '1996-09-25', 0, 0, 'saumanhu', '2017-03-12', 'hungsm8', '2018-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS527461920961', '吉田健太', 0, '+44 (161) 221 6829', 2, '258379902549784570', 'Flat 29, 575 Portland St, Manchester, M1 3LA, United Kingdom', '1995-08-07', 0, 0, 'yke', '2020-12-08', 'kentayo49', '2017-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS970507158234', '鄺發', 1, '+1 212-805-1125', 1, '201827017486740293', '784 West Houston Street Suite 12, New York, NY 10014, United States', '1998-12-08', 0, 0, 'fat410', '2021-12-10', 'kfat', '2014-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS007999167694', '秦岚', 1, '+86 155-7973-8295', 2, '838937527066326534', '中国广州市白云区小坪东路847号28号楼', '1990-03-02', 0, 0, 'laqin4', '2006-12-18', 'qinl', '2020-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS907299367586', 'Theresa Ramirez', 1, '+1 212-613-4627', 4, '034504614676074140', '12 West Houston Street Apartment 5, New York, NY 10014, United States', '1998-10-03', 0, 0, 'therami', '2007-07-19', 'thramirez2016', '2002-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS677585711648', 'Lee Gray', 1, '+44 (121) 039 5504', 3, '345716764931035021', 'No.33 Main building, 604 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-12-21', 0, 0, 'lgray', '2002-05-26', 'leegray', '2002-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS559250793651', '山本樹', 1, '+86 760-550-2249', 1, '559542429994707121', '中国中山紫马岭商圈中山五路664号10楼', '1996-10-02', 0, 0, 'iyamamoto', '2016-06-01', 'itsuki1', '2007-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS523653791479', '韓麗欣', 0, '+81 70-6372-4435', 1, '049994522944683179', '32F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-06-01', 0, 0, 'hanlaiyan8', '2001-04-30', 'laiyanh', '2015-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS412258784981', '崔家輝', 0, '+86 160-2857-5177', 1, '359770333982288374', '中国上海市徐汇区虹桥路567号28楼', '1994-01-31', 0, 0, 'chkafai323', '2011-06-18', 'kafc', '2008-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS966987395882', '阮思妤', 0, '+81 52-212-4731', 2, '343313556855363360', 'Rm. 42, 2-5-3 Chitose, Atsuta Ward, Nagoya, Japan', '1992-11-22', 0, 0, 'szeyuyuen920', '2014-09-09', 'yuen6', '2014-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS083006275131', 'Carol Warren', 1, '+81 90-3341-1610', 4, '509540418891027730', '5F, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-08-19', 0, 0, 'carol9', '2008-09-18', 'wacar', '2001-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS663865182789', '胡慧儀', 1, '+86 130-8163-9689', 3, '094996859344495213', '中国成都市锦江区红星路三段274号华润大厦4室', '1997-12-04', 0, 0, 'waiwu', '2000-08-25', 'wuwy', '2015-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS540250489277', '加藤美緒', 0, '+81 90-2778-8555', 0, '966089545264928650', 'Rm. 31, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-11-11', 0, 0, 'mikato45', '2014-01-26', 'miok', '2000-03-03'); -INSERT INTO "public"."userinfo" VALUES ('TS743700654903', '松田百花', 0, '+86 20-5440-9610', 1, '723490805582863964', '中国广州市白云区机场路棠苑街五巷107号35室', '1989-09-24', 0, 0, 'momokamatsuda', '2013-04-05', 'matsuda2015', '2008-11-24'); -INSERT INTO "public"."userinfo" VALUES ('TS857336748747', 'Danielle Torres', 0, '+81 52-277-5774', 2, '070084602430077367', '日本なごやし守山区瀬古東二丁目171番8号14号室', '1987-11-25', 0, 0, 'danielle2', '2013-02-25', 'torresdani', '2011-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS036808526405', 'Cindy Medina', 0, '+81 70-2003-6215', 3, '086867744143320822', '日本おおさかし東住吉区東田辺三丁目27番5号41階', '1991-07-04', 0, 0, 'cindym', '2005-11-13', 'medinacindy812', '2015-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS477457543358', '應永權', 0, '+44 5878 340258', 1, '292718981522673772', 'Unit 47, Oxford Eco Centre, 864 Pollen Street, London, W1S 1NG, United Kingdom', '1985-01-13', 0, 0, 'yingwingkuen1028', '2001-05-23', 'yingwk219', '2014-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS859483854386', '高木美緒', 1, '+81 3-2956-8058', 4, '785368984851972323', '5-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1990-04-28', 0, 0, 'tmio', '2000-11-02', 'takmio', '2004-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS462082500204', '田村凛', 1, '+1 330-623-3741', 0, '275442646008236288', '643 Riverview Road Suite 47, Akron, OH 44313, United States', '1990-07-11', 0, 0, 'tamurarin9', '2005-04-28', 'tamr', '2021-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS661502686672', '加藤葉月', 1, '+1 213-217-7237', 2, '481623272117687603', '618 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1985-09-30', 0, 0, 'katohazuki', '2014-10-20', 'hazukikato', '2004-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS784821317594', '顧安琪', 1, '+44 (151) 739 5113', 2, '607292930068351333', 'Unit 23, Oxford Eco Centre, 571 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-07-17', 0, 0, 'onkayku6', '2013-12-05', 'kuok', '2010-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS441291286040', '程子韬', 0, '+44 7997 106826', 4, '694238952328290350', 'Unit 39, Oxford Eco Centre, 786 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-09-12', 0, 0, 'zitaocheng416', '2015-10-26', 'zicheng', '2001-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS631365987258', '桜井健太', 0, '+1 838-516-2949', 3, '058575607924468439', '248 Broadway Apartment 38, Albany, NY 12207, United States', '1986-08-08', 0, 0, 'sakke409', '2007-12-03', 'ksakur', '2016-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS291595285502', '丁震南', 1, '+86 138-8082-5218', 4, '377229823385821792', 'No.18 building, 519 Yueliu Rd, Fangshan District, Beijing, China', '1996-01-14', 0, 0, 'zhennan60', '2010-05-16', 'dinz925', '2020-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS276735995169', '常璐', 1, '+81 90-8944-3365', 2, '851264319778232120', '日本札幌白石区菊水三条五丁目4番1号6階', '1991-09-27', 0, 0, 'clu', '2007-01-13', 'luchang', '2013-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS052830997533', '工藤七海', 0, '+81 90-2783-2315', 1, '780704668636311016', 'Rm. 20, 6-1-19, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-10-19', 0, 0, 'nanamkudo8', '2021-02-02', 'nanamikudo2006', '2014-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS619978108363', 'Angela Munoz', 1, '+86 755-781-5351', 2, '336646285032903102', 'No.49 building, 163 Shennan Ave, Futian District, Shenzhen, China', '1996-03-02', 0, 0, 'mange', '2014-01-21', 'angelamun5', '2013-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS295283383359', '邹安琪', 1, '+81 66-966-4266', 2, '688627177543635869', '日本おおさかし平野区加美東四丁目9番9号14階', '1988-12-11', 0, 0, 'anqizo', '2003-02-02', 'za9', '2020-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS863522186567', '小川彩乃', 0, '+44 (121) 609 5581', 1, '940406650846924291', 'Flat 46, 494 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-09-24', 0, 0, 'ogawaaya', '2015-05-10', 'ogawaayano', '2006-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS032245655177', '小島愛梨', 0, '+81 70-4058-5211', 3, '522230078260321052', '日本おおさかし近江堂一丁目7番10号46階', '1997-10-04', 0, 0, 'kojima1', '2009-04-27', 'kojimaai1', '2010-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS383158965023', '樂國賢', 1, '+81 90-7741-7328', 2, '688206212902109911', '7F, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1995-08-04', 0, 0, 'kwolo', '2012-10-19', 'kylok6', '2019-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS889793075376', '山口陸', 1, '+44 (1865) 55 6017', 3, '188765460429389833', 'Unit 5, Oxford Eco Centre, 588 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-01-10', 0, 0, 'riya', '2016-07-07', 'ryamaguchi7', '2013-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS753700235323', '雷惠妹', 1, '+86 153-4514-5690', 1, '174059585277173521', '中国东莞环区南街二巷244号50室', '1987-11-17', 0, 0, 'huimeiloui125', '2006-02-01', 'hmloui', '2012-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS119911686650', '森田葉月', 1, '+81 3-3606-5541', 2, '462983112949850523', '日本東京中央区銀座三丁目12番7号26号室', '1985-05-30', 0, 0, 'hazukimorita', '2001-09-13', 'hazukimori', '2002-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS551148124385', 'Beverly Anderson', 0, '+81 74-938-1517', 1, '456089756934017645', '日本ならし学園南三丁目9番19号34号室', '1993-10-17', 0, 0, 'andeb7', '2012-10-05', 'beverlya', '2005-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS626519987605', '戴宇宁', 0, '+81 3-8124-9654', 0, '670264382856843656', '23F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-01-18', 0, 0, 'daiyuning', '2002-01-16', 'yuningdai', '2001-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS848363671320', '桜井百恵', 0, '+86 150-7970-7217', 4, '562081790343360997', '中国深圳龙岗区布吉镇西环路716号26号楼', '1988-10-08', 0, 0, 'samomoe', '2018-07-02', 'momoesakurai3', '2007-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS734078390652', '石子韬', 0, '+86 135-4432-6679', 2, '485054584927944362', 'Room 3, CR Building, 454 Ganlan Rd, Pudong, Shanghai, China', '1985-01-20', 0, 0, 'zitaosh2013', '2014-07-02', 'zishi3', '2000-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS378895720278', '酒井凛', 0, '+81 3-1111-9986', 3, '050993336980147397', '19-kai, 5-2-19 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-02-28', 0, 0, 'sakrin', '2011-03-15', 'rin4', '2015-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS031004379822', '江宇宁', 0, '+44 (121) 571 7228', 1, '965268058413739036', 'Unit 48, Oxford Eco Centre, 991 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-07-10', 0, 0, 'jiangyun5', '2020-10-25', 'yuning101', '2016-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS077957969699', '蔡震南', 0, '+81 74-548-0553', 1, '989798072459428313', '17-kai, 3-9-16 Gakuenminami, Nara, Japan', '1988-12-23', 0, 0, 'caizhennan', '2001-08-15', 'zcai', '2008-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS132073607981', '常睿', 0, '+86 28-8102-6339', 2, '659549308306050598', '中国成都市锦江区人民南路四段930号11号楼', '1990-10-02', 0, 0, 'ruichang', '2011-05-13', 'ruchang', '2001-11-04'); -INSERT INTO "public"."userinfo" VALUES ('TS096263040047', '高田優奈', 1, '+1 330-447-0800', 3, '686864464570211366', '36 Ridgewood Road Suite 16, Akron, OH 44321, United States', '1991-06-28', 0, 0, 'yutakada', '2002-02-23', 'tyu', '2020-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS992509567549', '龙秀英', 0, '+81 11-645-3209', 1, '195659839186441318', '日本札幌豊平区豊平三条十三丁目3番20号8階', '1993-11-15', 0, 0, 'xiulong1947', '2012-05-03', 'xiuying85', '2002-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS695712899854', 'Joanne Peterson', 1, '+44 5571 038939', 0, '098140479576284386', 'Block 18, 27 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-12-09', 0, 0, 'peterson67', '2002-05-23', 'pj929', '2014-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS072620235332', '松本悠人', 1, '+1 330-147-8527', 0, '949702751547762121', '922 Ridgewood Road Apartment 41, Akron, OH 44321, United States', '1990-07-12', 0, 0, 'matsumotoy', '2018-05-09', 'matsumotoyuto324', '2013-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS824525734295', '山下聖子', 0, '+81 11-800-2009', 3, '547249666486796075', '日本札幌白石区菊水三条五丁目4番1号26階', '1990-07-26', 0, 0, 'seikoy', '2012-06-01', 'yamashitaseiko', '2003-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS537317786895', 'Jacob Jordan', 0, '+81 11-690-8334', 2, '797741843093414704', '日本札幌厚別区上野幌一条二丁目1番19号11階', '1989-09-30', 0, 0, 'jordan9', '2002-04-19', 'jacob1208', '2018-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS525365209979', '成志遠', 1, '+81 3-6906-8534', 4, '276588428937357752', '7-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-04-07', 0, 0, 'shichiyuen608', '2000-02-11', 'chiyuenshin', '2016-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS189448573833', '小野拓哉', 0, '+1 212-072-4983', 4, '018071588248651775', '196 West Houston Street 3rd Floor, New York, NY 10014, United States', '1991-07-08', 0, 0, 'onot', '2004-02-22', 'ontak8', '2016-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS915943729025', '錢麗欣', 1, '+81 3-4148-9393', 1, '752576711702917775', '日本東京港区東新橋一丁目5番4号34階', '1985-12-18', 0, 0, 'chinly1', '2019-10-12', 'claiyan4', '2012-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS848333252646', 'Allen Patel', 0, '+1 614-568-0906', 0, '339065625785573462', '322 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1997-02-21', 0, 0, 'patelallen', '2006-09-09', 'alpatel', '2019-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS416126934136', 'Ryan Hughes', 1, '+81 80-2950-1496', 2, '838371216504139918', '日本おおさかし平野区加美東四丁目9番16号21号室', '1987-05-16', 0, 0, 'hryan416', '2001-12-21', 'hr05', '2021-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS814653874033', '金子一輝', 1, '+1 213-960-4325', 3, '064974918801996191', '840 Alameda Street Suite 50, Los Angeles, CA 90002, United States', '1999-03-01', 0, 0, 'kaneikki', '2019-05-10', 'ikki7', '2012-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS290212551496', '袁慧珊', 1, '+86 130-2213-9310', 4, '686928679466768571', '中国北京市朝阳区三里屯路57号3楼', '1993-06-11', 0, 0, 'wsyu', '2021-07-15', 'yuenws', '2016-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS975577080046', '新井凛', 0, '+44 7849 651214', 4, '446343769031184150', 'Unit 9, Oxford Eco Centre, 597 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-03-20', 0, 0, 'rarai', '2020-06-20', 'riarai', '2002-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS963618174972', '魏嘉伦', 1, '+86 189-3940-6434', 2, '600188667283496906', '中国成都市成华区二仙桥东三路756号42栋', '1998-01-15', 0, 0, 'jialunwei', '2021-10-02', 'weijial416', '2002-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS546725757685', '周璐', 0, '+81 90-7175-5179', 1, '830511478648456320', '21-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-12-03', 0, 0, 'luzhou', '2001-11-30', 'zhoul', '2001-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS726877074411', '今井健太', 1, '+81 3-7700-8237', 4, '069802216544353362', '34F, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-05-30', 0, 0, 'imkenta7', '2003-12-11', 'imai8', '2020-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS767546844914', '曾嘉伦', 0, '+44 7802 967532', 4, '614852981433668115', 'Block 30, 501 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-10-16', 0, 0, 'jialze', '2021-12-30', 'zengjia88', '2016-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS041945871881', 'Rebecca Rodriguez', 0, '+81 3-2613-8951', 2, '926429833611651371', '日本東京港区東新橋一丁目5番13号27階', '1997-08-27', 0, 0, 'rebeccarodr', '2010-11-05', 'rebecca97', '2019-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS530886469779', '石井樹', 1, '+1 312-869-9305', 3, '507376702450416280', '177 Pedway 3rd Floor, Chicago, IL 60601, United States', '1997-01-10', 0, 0, 'itsuki421', '2011-07-04', 'itsukiish228', '2021-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS841548768258', 'Carl Taylor', 1, '+81 80-8290-5188', 3, '007575824853968240', '日本おおさかし西成区天神ノ森二丁目1番10号1階', '1998-08-13', 0, 0, 'taylor46', '2004-12-25', 'carl1210', '2008-12-15'); -INSERT INTO "public"."userinfo" VALUES ('TS451173844537', 'Jeffery Spencer', 1, '+44 (151) 400 8318', 2, '013702583121094582', 'Block 18, 303 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1986-08-05', 0, 0, 'spejeff', '2009-12-17', 'spencjef', '2003-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS415156701644', 'Eugene Palmer', 1, '+1 312-903-7795', 1, '865540406301654086', '875 North Michigan Ave Apt 5, Chicago, IL 60611, United States', '1985-02-15', 0, 0, 'eugene2', '2009-04-22', 'eugene718', '2021-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS485610990277', '冯震南', 1, '+1 213-051-0359', 2, '381202039827103851', '933 Grape Street Suite 12, Los Angeles, CA 90002, United States', '1989-02-08', 0, 0, 'fenzhenn', '2009-10-21', 'zf4', '2018-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS036161760562', '傅慧嫻', 0, '+86 755-855-1415', 3, '439487297960842973', '10F, 59 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-12-13', 0, 0, 'fu8', '2006-01-22', 'waihafu3', '2011-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS686773301933', '野村拓哉', 1, '+86 162-8771-0309', 4, '513393031216952635', '中国北京市朝阳区三里屯路973号华润大厦32室', '1992-01-13', 0, 0, 'nomuratakuy66', '2015-02-21', 'takunomura', '2017-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS417165074088', '秦子异', 0, '+44 7378 669230', 1, '010100715689308198', 'Unit 18, Oxford Eco Centre, 975 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-03-27', 0, 0, 'ziqin', '2011-01-07', 'ziyqin', '2014-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS639479486726', '钟晓明', 1, '+81 70-1753-4709', 2, '180323106988572150', '日本おおさかし西成区天神ノ森二丁目1番10号20号室', '1986-06-02', 0, 0, 'xiaoz1965', '2019-04-23', 'xiaomingzhong88', '2012-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS535471168099', '蔡云熙', 1, '+44 7866 097630', 3, '230008949266890280', 'Block 49, 56 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-05-17', 0, 0, 'cai3', '2000-11-19', 'cyunxi407', '2019-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS954828151746', '杜嘉伦', 0, '+44 7658 461927', 1, '409849727401345845', 'No.28 Main building, 183 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-03-04', 0, 0, 'jialun424', '2018-09-27', 'du88', '2005-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS536003618337', '遠藤海斗', 1, '+86 28-027-2643', 2, '907040123268484401', '中国成都市成华区二仙桥东三路52号华润大厦7室', '1989-11-13', 0, 0, 'kaitoend', '2011-09-23', 'endokait3', '2010-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS342431589852', '藤原結翔', 0, '+1 838-399-5374', 3, '797683505287260804', '729 Central Avenue Suite 29, Albany, NY 12205, United States', '1988-09-03', 0, 0, 'fujiwarayuit17', '2009-02-15', 'fujiwara95', '2005-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS711376138142', 'Sharon Peterson', 1, '+86 21-128-9492', 2, '170985805408373409', '33F, 334 Middle Huaihai Road, Huangpu District, Shanghai, China', '1998-06-26', 0, 0, 'sharon6', '2020-05-27', 'sharonpet', '2015-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS225694348595', '大野陽太', 0, '+86 10-6554-1872', 1, '668713142832583107', '中国北京市朝阳区三里屯路692号28楼', '1995-01-11', 0, 0, 'yota2', '2017-10-19', 'yotaono805', '2005-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS052770461952', '蔡子韬', 1, '+81 80-6683-0519', 2, '689317016500504972', '日本札幌白石区菊水三条五丁目2番5号48号室', '1993-07-06', 0, 0, 'czita', '2019-01-30', 'caiz', '2021-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS927179277606', '武睿', 1, '+86 10-6131-9969', 1, '046812506896031342', '中国北京市延庆区028县道31号5室', '1992-03-03', 0, 0, 'rw1963', '2006-01-09', 'ruiwu', '2018-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS130393987423', '長谷川舞', 1, '+44 5597 344421', 0, '069207983412924680', 'No.13 Main building, 340 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-01', 0, 0, 'hasegawam', '2002-01-06', 'maihasegawa', '2007-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS873217830865', '宋璐', 1, '+81 74-806-4145', 1, '492230816507175834', '日本ならし西大寺赤田町一丁目7番17号10階', '1991-11-01', 0, 0, 'songlu', '2005-05-21', 'songlu417', '2012-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS293144513777', '上田愛梨', 1, '+86 139-7500-6798', 1, '142075772967373704', 'No.25 building, 126 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-05-29', 0, 0, 'ueda86', '2007-04-22', 'ueda86', '2001-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS957055867128', 'Scott Martinez', 1, '+44 (151) 877 7760', 2, '384910066777190888', 'Block 12, 950 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1988-06-26', 0, 0, 'scmart', '2002-03-08', 'scott8', '2016-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS979096025755', '曾安琪', 1, '+44 7930 420069', 4, '089555384421724470', 'Flat 7, 647 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-08-22', 0, 0, 'zanqi', '2012-09-12', 'zeanqi', '2017-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS982268086622', '蔡震南', 0, '+81 90-6356-0329', 1, '445265230638333363', '日本おおさかし平野区加美東四丁目9番13号8階', '1990-10-11', 0, 0, 'cazhenn', '2003-09-11', 'caizhennan6', '2015-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS017520870866', '龚詩涵', 1, '+86 163-9483-0222', 2, '771881554854653378', '中国中山京华商圈华夏街216号华润大厦38室', '1992-12-15', 0, 0, 'sgong', '2008-06-08', 'gongs', '2007-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS516026845379', '小林彩乃', 1, '+44 (116) 469 7550', 2, '753603946228356697', 'Flat 19, 95 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-09-27', 0, 0, 'koayano', '2013-06-01', 'kobayashia', '2001-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS024933062901', '中村彩乃', 1, '+44 5906 941999', 1, '225386367783019409', 'No.31 Main building, 958 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-03-30', 0, 0, 'ayanonakamura', '2010-09-14', 'ayano1999', '2018-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS734177854717', 'Ellen Diaz', 0, '+81 90-5177-6558', 3, '797409230681676824', '日本なごやし熱田区千年二丁目5番9号17階', '1997-02-28', 0, 0, 'edia', '2016-01-10', 'ellendia8', '2014-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS477024406061', 'Sherry Ramirez', 1, '+86 152-1822-5516', 3, '531776376539318891', 'Room 26, 86 Dongtai 5th St, Dongguan, China', '1989-03-04', 0, 0, 'ramirez11', '2014-12-27', 'ramirezsherry902', '2000-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS561459203588', 'Bruce Holmes', 1, '+81 90-0167-4505', 3, '003515312751545075', '日本おおさかし東住吉区東田辺三丁目27番12号22階', '1991-04-02', 0, 0, 'holmesbru', '2019-11-06', 'hobru', '2007-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS400834967823', '小山光莉', 0, '+44 (116) 296 5439', 4, '196698893647048523', 'Block 6, 31 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-11-21', 0, 0, 'hikakoyam', '2001-05-13', 'hikarkoyam', '2018-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS295567711692', 'Charlotte Howard', 0, '+86 176-9626-7174', 3, '701842526070543916', 'No.12 building, 737 Middle Huaihai Road, Huangpu District, Shanghai, China', '1998-06-07', 0, 0, 'charlottehowar', '2019-10-07', 'howardcharlotte5', '2013-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS496831005954', '阎璐', 0, '+44 7210 314419', 0, '851310396973404465', 'Flat 18, 555 Regent Street, London, W1B 2LX, United Kingdom', '1990-04-13', 0, 0, 'ly519', '2005-06-01', 'lu3', '2005-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS598439372490', 'Harold Cole', 0, '+86 153-7796-2824', 1, '164589136525977820', 'No.5 building, 228 West Chang''an Avenue, Xicheng District, Beijing, China', '1996-05-13', 0, 0, 'cole53', '2010-07-22', 'hc10', '2008-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS679822880283', '卢宇宁', 0, '+44 7791 424455', 1, '500598587672764493', 'No.47 Main building, 778 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-01-07', 0, 0, 'yuninglu9', '2019-08-19', 'yuningl', '2013-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS237694613025', 'Wendy Vargas', 1, '+81 66-748-9705', 2, '227786379605633882', '日本おおさかし東住吉区東田辺三丁目27番11号43階', '1998-08-29', 0, 0, 'wendyvar', '2006-04-29', 'vargaw1996', '2013-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS006892172945', 'Lisa Diaz', 0, '+1 330-021-5076', 3, '346080171578693115', '370 West Market Street Apt 4, Akron, OH 44333, United States', '1992-09-21', 0, 0, 'lisad', '2021-10-11', 'dlisa', '2002-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS472566719687', '車頴思', 0, '+81 3-4527-6718', 3, '527607143967276873', '1F, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-07-21', 0, 0, 'wingsze8', '2019-10-21', 'wingszec', '2013-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS535391019945', 'Rosa Richardson', 1, '+86 769-600-2621', 1, '777774039940759783', 'Room 35, 259 Dongtai 5th St, Dongguan, China', '1993-03-30', 0, 0, 'richardsonrosa', '2017-12-26', 'richrosa', '2013-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS723050476512', 'Charles Stone', 0, '+44 (1865) 40 0189', 1, '502583300030844527', 'Block 49, 683 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-09-11', 0, 0, 'charlstone', '2009-01-25', 'stonecharl511', '2012-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS696254240012', '石井七海', 1, '+44 5153 432523', 0, '997115653036792956', 'Flat 26, 610 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-12-10', 0, 0, 'ishnanam', '2017-02-07', 'in74', '2011-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS442613831266', 'Jessica Washington', 1, '+86 21-3074-3677', 1, '153265311633795998', '中国上海市徐汇区虹桥路635号31楼', '1995-08-09', 0, 0, 'jeswashington6', '2003-11-02', 'jeswa50', '2011-01-16'); -INSERT INTO "public"."userinfo" VALUES ('TS776248403124', '中島絢斗', 0, '+44 7065 631304', 4, '930558600575928958', 'Flat 26, 205 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1990-02-21', 0, 0, 'nakajima4', '2017-04-22', 'ayaton4', '2000-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS025694997527', 'Tina Reed', 1, '+86 21-896-4126', 1, '716749361266205594', '中国上海市闵行区宾川路748号24楼', '1998-08-12', 0, 0, 'reed1223', '2009-11-27', 'reed1962', '2003-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS536022279281', '顾睿', 1, '+81 52-041-8407', 1, '724264533570312912', '日本なごやし北区清水三丁目19番3号50号室', '1989-04-19', 0, 0, 'gurui624', '2019-06-03', 'guru', '2005-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS239737799119', '何嘉欣', 1, '+44 (116) 381 0277', 1, '968152926499772578', 'Block 24, 454 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-02-28', 0, 0, 'karyanho01', '2004-08-01', 'kyho', '2006-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS654309812604', '杨秀英', 0, '+1 213-744-8423', 2, '627157319559980113', '142 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-09-26', 0, 0, 'xiyang420', '2016-11-17', 'xiuyiyang', '2019-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS070556277631', 'Frederick Boyd', 1, '+44 7040 089006', 1, '493207028758993828', 'Unit 50, Oxford Eco Centre, 171 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-02-01', 0, 0, 'boyd5', '2020-12-21', 'fboy', '2006-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS879391632050', '大塚一輝', 1, '+44 5879 290568', 1, '580711011788103023', 'Flat 30, 321 Portland St, Manchester, M1 3LA, United Kingdom', '1985-09-25', 0, 0, 'io611', '2003-01-06', 'otsuka8', '2005-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS471381889840', 'Eva Garza', 1, '+81 90-2054-5334', 3, '840844960360562955', '日本なごやし瑞穂区河岸町四丁目20番19号27階', '1997-06-21', 0, 0, 'garzaeva4', '2000-02-07', 'eva57', '2009-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS678989399453', '官明', 1, '+44 (151) 285 6067', 3, '072198991308096822', 'Flat 28, 837 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1999-01-22', 0, 0, 'miko', '2003-12-10', 'mik', '2010-04-04'); -INSERT INTO "public"."userinfo" VALUES ('TS087865501429', '黎國明', 0, '+81 90-4863-7902', 4, '839525780272319851', '10-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-01-22', 0, 0, 'kmlai8', '2003-02-22', 'lakm', '2016-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS813244738347', 'Thelma Mason', 1, '+86 150-8058-8339', 3, '380190702378551670', '中国成都市成华区二仙桥东三路853号16栋', '1991-12-22', 0, 0, 'masonthelma', '2017-06-11', 'thelmamason', '2004-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS585537210929', '姚富城', 0, '+1 614-129-6932', 1, '030829726787070600', '198 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-08-24', 0, 0, 'fsy', '2006-07-16', 'yeow55', '2008-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS172800316528', '邹嘉伦', 1, '+1 312-430-6377', 1, '308735924507725281', '959 North Michigan Ave Apt 22, Chicago, IL 60611, United States', '1988-06-08', 0, 0, 'zouj', '2004-08-25', 'jialun3', '2018-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS471822568726', '唐慧嫻', 1, '+81 90-1218-1051', 3, '589775973857893199', '31-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-06-16', 0, 0, 'waihan407', '2007-01-30', 'tongwaihan', '2003-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS293554067286', '曾俊宇', 0, '+81 70-5484-8899', 3, '568126970404429985', '日本おおさかし近江堂一丁目7番7号16階', '1998-12-12', 0, 0, 'tsancy', '2013-06-30', 'cytsang10', '2003-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS657817937006', '井上桜', 0, '+81 80-0338-8891', 2, '392180403045247956', '日本おおさかし東住吉区東田辺三丁目27番15号46階', '1993-04-28', 0, 0, 'inoue79', '2009-09-20', 'inouesakura', '2011-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS272291742561', '邵睿', 0, '+86 28-672-6090', 1, '412323802193924950', '中国成都市成华区玉双路6号470号40号楼', '1990-06-02', 0, 0, 'shaor', '2005-11-15', 'sharui', '2006-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS671722885765', '酒井拓哉', 0, '+86 21-432-6786', 1, '888077758824456357', '中国上海市黄浦区淮海中路548号15号楼', '1987-07-17', 0, 0, 'takuyasakai', '2011-06-30', 'takuyasakai6', '2017-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS704821510822', '黃天樂', 0, '+1 838-170-5171', 1, '705190092647575799', '11 Central Avenue Apt 45, Albany, NY 12206, United States', '1997-04-14', 0, 0, 'wongtinlok58', '2007-03-06', 'wongtl', '2008-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS267370609404', '岡田明菜', 0, '+81 11-988-2499', 2, '098817002943665066', '日本札幌中央区宮の森四条六丁目1番3号40階', '1998-05-05', 0, 0, 'okada1960', '2016-07-02', 'okadakina10', '2004-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS368426485240', '邱睿', 1, '+86 28-8515-0718', 4, '355345649542544233', 'No.13 building, 62 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-06-22', 0, 0, 'ruiq501', '2009-04-21', 'ruiq', '2015-12-27'); -INSERT INTO "public"."userinfo" VALUES ('TS280700266023', 'Daniel Graham', 1, '+81 66-302-5572', 0, '254626010359377533', '26F, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1990-03-08', 0, 0, 'gdan', '2012-12-07', 'danielgra10', '2019-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS120533373630', '薛曉彤', 1, '+86 755-962-9429', 2, '220570485106969258', '中国深圳罗湖区田贝一路312号6室', '1991-07-22', 0, 0, 'hiutungs85', '2000-09-14', 'sht', '2010-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS086835678671', 'Kenneth Harris', 1, '+86 10-342-3655', 2, '963461767411282029', 'Room 13, 624 Yueliu Rd, Fangshan District, Beijing, China', '1992-05-19', 0, 0, 'harrk', '2003-12-12', 'harriskenn10', '2017-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS080837435743', 'Betty Long', 1, '+81 80-9570-5713', 2, '026201007469960320', '14-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-03-11', 0, 0, 'bettlo', '2015-09-19', 'belong', '2003-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS914213540913', '金子舞', 0, '+86 21-101-8075', 1, '062399258187717125', '中国上海市徐汇区虹桥路245号35室', '1992-03-01', 0, 0, 'mai1029', '2006-07-29', 'kanekomai96', '2011-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS585187548729', '贺子韬', 1, '+81 90-5223-4237', 1, '134842340511924495', '日本札幌清田区真栄四条五丁目19番6号20号室', '1987-04-24', 0, 0, 'zitao3', '2020-08-18', 'he10', '2014-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS507899772568', '郭心穎', 1, '+81 66-796-6931', 1, '528234947411609543', 'Rm. 36, 1-7-8 Omido, Higashiosaka, Osaka, Japan', '1990-03-09', 0, 0, 'sumwkwok6', '2014-12-30', 'sumwing5', '2009-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS680285562908', '田中聖子', 1, '+81 80-8964-0762', 2, '963764578312310342', '38-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-08-31', 0, 0, 'seikot9', '2000-06-11', 'seitan3', '2004-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS327809781943', '新井翼', 0, '+81 90-6070-6078', 0, '211045498941580977', '日本札幌厚別区上野幌一条二丁目1番6号38階', '1986-01-27', 0, 0, 'tsubasa20', '2019-09-13', 'tsubasaarai', '2009-03-13'); -INSERT INTO "public"."userinfo" VALUES ('TS162245832602', '袁志明', 0, '+86 28-301-5233', 1, '141426458679764827', 'Room 22, 905 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1989-10-31', 0, 0, 'yuecm', '2004-04-02', 'yuenchim', '2007-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS154985898783', '坂本蒼士', 0, '+81 11-910-5738', 2, '589499906987241591', 'Rm. 43, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-10-17', 0, 0, 'sakamotoaosh', '2007-08-11', 'aosakamoto', '2019-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS760664638650', '姜力申', 1, '+44 5367 822010', 3, '303010526783205180', 'Block 44, 165 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-25', 0, 0, 'cliksun7', '2004-05-23', 'changliksun', '2003-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS855423369401', '邱震南', 1, '+81 11-243-5649', 1, '251782725314045125', '日本札幌清田区真栄四条五丁目19番17号28階', '1990-10-06', 0, 0, 'zqiu518', '2004-06-20', 'zhennanqiu1996', '2014-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS938633244410', '夏震南', 0, '+86 140-5251-5430', 1, '213135889611656612', '中国深圳罗湖区蔡屋围深南东路268号3栋', '1998-03-05', 0, 0, 'zhennan61', '2015-10-13', 'zhennanxi', '2015-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS037296664866', 'Edwin Mendez', 1, '+81 11-013-9001', 3, '022081458171789929', '日本札幌白石区菊水三条五丁目2番10号8号室', '1995-03-28', 0, 0, 'mendezedwin1', '2003-04-02', 'medwin9', '2009-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS135933489457', 'Rosa Taylor', 0, '+81 70-2455-1635', 2, '203670448021568659', '日本なごやし北区清水三丁目19番6号12階', '1997-12-22', 0, 0, 'rosa40', '2000-04-23', 'trosa', '2017-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS407824003519', 'Leslie Ruiz', 0, '+86 194-0142-7616', 2, '157452694950460448', 'Room 49, 378 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1999-01-19', 0, 0, 'leslie77', '2002-09-09', 'ruiz1125', '2006-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS127681705881', 'Randy Payne', 0, '+81 52-501-5127', 3, '062907904977293298', '日本なごやし北区清水三丁目19番9号29階', '1988-02-05', 0, 0, 'paynerandy', '2018-07-05', 'rpayne', '2007-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS727025185447', '高田聖子', 1, '+1 718-018-5374', 2, '988828197889382301', '644 1st Ave Apt 39, Brooklyn, NY 11220, United States', '1995-12-07', 0, 0, 'seikota3', '2008-09-23', 'takada17', '2013-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS792192146008', '戚慧琳', 1, '+86 755-5019-5195', 3, '069986748963767168', '中国深圳龙岗区学园一巷993号1室', '1989-01-30', 0, 0, 'wailamchi1028', '2020-08-15', 'cwa', '2012-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS208323764570', 'Manuel Tran', 0, '+44 (121) 932 8686', 1, '607000543796427118', 'Unit 6, Oxford Eco Centre, 282 New Street, Birmingham, B2 4DB, United Kingdom', '1993-05-17', 0, 0, 'tranmanu', '2010-12-31', 'tranman', '2017-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS560069416908', '木村一輝', 0, '+81 3-8353-5059', 2, '012539278851649115', '39-kai, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-01-13', 0, 0, 'ikkikimura523', '2014-11-24', 'ikkimura1202', '2006-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS243116050824', '河野絢斗', 1, '+86 760-1738-5115', 2, '860913794929582568', '中国中山紫马岭商圈中山五路941号26栋', '1987-02-18', 0, 0, 'konoayato', '2018-12-21', 'konoa', '2002-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS805879893715', '田震南', 1, '+1 213-056-5633', 3, '359484855433363269', '388 S Broadway Apartment 27, Los Angeles, CA 90015, United States', '1989-04-22', 0, 0, 'zhennant409', '2013-07-23', 'zhentian', '2018-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS407006560114', 'Lawrence Ford', 1, '+86 153-0402-9572', 3, '063160459740140752', '中国深圳罗湖区蔡屋围深南东路224号4号楼', '1993-01-04', 0, 0, 'lawrencefor1', '2019-03-01', 'flawre', '2006-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS510930210199', '毛明詩', 0, '+44 (151) 039 2178', 0, '478864190722719642', 'Block 15, 300 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1994-12-15', 0, 0, 'msmo701', '2009-10-10', 'mingszemo7', '2004-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS711767586828', '村田愛梨', 0, '+81 3-1092-3952', 4, '451034827291103783', '日本東京渋谷区代々木二丁目3番17号41号室', '1992-08-20', 0, 0, 'aim', '2006-06-30', 'murataair', '2011-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS809130640573', '薛晓明', 0, '+81 66-486-3880', 3, '816530324142839315', '日本おおさかし近江堂一丁目7番8号38階', '1991-06-11', 0, 0, 'xiaomingxue', '2000-10-23', 'xiaoming10', '2013-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS494354974522', '藤井優奈', 1, '+81 52-520-9048', 2, '164516857038690929', '日本なごやし守山区瀬古東二丁目171番14号47階', '1996-11-30', 0, 0, 'yunfuji93', '2012-02-04', 'yunafu18', '2003-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS816105688573', '洪杰倫', 0, '+81 3-6390-3051', 1, '186407724548322740', '日本東京品川区東五反田五丁目2番15号21階', '1997-05-20', 0, 0, 'chiehlun96', '2015-05-03', 'hucl18', '2012-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS854993825137', '彭宇宁', 1, '+1 330-914-3452', 3, '615393460125492427', '791 Riverview Road Suite 6, Akron, OH 44313, United States', '1992-07-03', 0, 0, 'peng04', '2015-12-12', 'yuningpeng4', '2006-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS193329403579', 'Lisa Gardner', 0, '+81 52-050-0237', 2, '573663247268361478', '40F, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-08-25', 0, 0, 'ligardner', '2011-06-03', 'gardnlisa', '2018-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS442596458361', 'Craig Robertson', 1, '+81 70-9608-0702', 2, '006983230151244344', '日本東京中央区銀座三丁目12番3号5号室', '1998-03-12', 0, 0, 'craigrobertson2020', '2000-01-11', 'rcraig', '2006-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS787746377213', '陳德華', 0, '+44 5067 946724', 3, '672973560652643792', 'Unit 43, Oxford Eco Centre, 150 Hanover Street, London, W1S 1YD, United Kingdom', '1993-06-04', 0, 0, 'takwah7', '2001-02-11', 'takwahchan', '2021-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS571437019492', '严宇宁', 1, '+1 838-180-7597', 3, '647605390383975560', '290 Broadway Apartment 35, Albany, NY 12207, United States', '1990-08-27', 0, 0, 'yunyan72', '2020-04-17', 'yan1', '2017-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS146887793848', '岡田架純', 1, '+81 66-850-4734', 3, '579133398441282098', '45-kai, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1997-01-31', 0, 0, 'ko8', '2020-08-31', 'okada8', '2020-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS103323534698', '戴秀英', 0, '+86 755-5168-2426', 3, '270734291988353026', 'Room 50, CR Building, 964 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-12-31', 0, 0, 'xdai820', '2010-09-30', 'xiuyingdai401', '2012-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS352514416493', '雷宇宁', 1, '+44 (20) 6751 1966', 3, '569393503509279776', 'Block 45, 535 Maddox Street, London, W1S 1PU, United Kingdom', '1997-04-11', 0, 0, 'lei1014', '2001-01-14', 'yuning211', '2012-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS372062845386', 'Patrick Lee', 0, '+86 184-4283-0826', 1, '360822940880294430', '中国成都市成华区二仙桥东三路974号33号楼', '1995-06-27', 0, 0, 'patrickl', '2008-08-19', 'leepatri', '2008-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS647366572721', '後藤美羽', 1, '+1 718-554-3293', 1, '448877956661300403', '891 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1994-03-11', 0, 0, 'miug', '2017-05-25', 'gotomi', '2005-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS647078507638', '佐野拓哉', 0, '+86 173-3972-4157', 2, '758648954114292988', '中国北京市延庆区028县道854号3室', '1989-09-11', 0, 0, 'sanota', '2004-07-22', 'stakuya', '2018-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS058211029853', 'Juanita Johnson', 0, '+1 212-418-5793', 1, '230327993352989512', '992 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-06-20', 0, 0, 'juanitaj', '2010-02-01', 'juanjohnson', '2008-09-29'); -INSERT INTO "public"."userinfo" VALUES ('TS598030056440', '蕭慧儀', 1, '+81 80-6003-1555', 3, '379899196888535061', 'Rm. 11, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1998-10-13', 0, 0, 'waiyes1003', '2022-01-13', 'waiyee8', '2009-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS653291366586', 'Albert Carter', 0, '+81 74-576-7269', 2, '388625703118934259', '日本ならし西大寺赤田町一丁目7番4号2号室', '1994-10-17', 0, 0, 'albecarter1', '2003-11-02', 'cartera', '2007-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS666264857278', '加藤一輝', 0, '+86 182-7570-8722', 1, '546637253615365057', '中国东莞珊瑚路41号华润大厦23室', '1987-05-28', 0, 0, 'kato6', '2007-10-23', 'kato09', '2001-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS319582901764', '大塚海斗', 1, '+86 159-6618-5389', 2, '822611041795054745', 'No.16 building, 298 East Wangfujing Street, Dongcheng District , Beijing, China', '1992-05-21', 0, 0, 'okai', '2000-09-18', 'otsuk', '2008-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS296267502494', '崔杰宏', 0, '+86 21-4072-5889', 4, '542184180703306320', '中国上海市闵行区宾川路940号华润大厦2室', '1989-02-03', 0, 0, 'cujie5', '2015-02-12', 'cuijiehong', '2009-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS192110438051', 'Craig Wood', 1, '+81 90-2534-1310', 2, '672814084925057070', 'Rm. 38, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-07-25', 0, 0, 'woodc', '2013-05-28', 'craiwood', '2000-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS008068779749', '後藤蒼士', 0, '+81 90-9967-4453', 2, '562302232111774855', '39F, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1998-03-24', 0, 0, 'goto214', '2020-02-09', 'gaoshi1206', '2017-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS572095583379', 'Eddie Williams', 0, '+1 212-300-3831', 1, '401092599901360177', '553 Wooster Street Suite 16, New York, NY 10012, United States', '1991-02-13', 0, 0, 'ewill', '2019-10-22', 'weddie', '2003-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS068394132691', 'Carol Wallace', 1, '+1 213-509-3290', 1, '444489018826015823', '699 Wall Street Suite 3, Los Angeles, CA 90003, United States', '1998-11-09', 0, 0, 'wallacecarol', '2003-04-15', 'carol417', '2012-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS276695428421', '樊惠敏', 0, '+44 (1223) 93 8951', 0, '540565385758547063', 'Flat 5, 15 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-09-22', 0, 0, 'fanwm', '2012-06-04', 'fanwaiman7', '2021-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS180402969422', '徐震南', 0, '+86 20-9854-2432', 4, '448403991020679027', '15F, 167 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-05-01', 0, 0, 'xuzhen107', '2014-09-23', 'xu118', '2007-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS454161339965', 'Troy Olson', 0, '+86 769-906-5958', 4, '146619390549881388', '中国东莞珊瑚路361号25室', '1987-02-15', 0, 0, 'troy1957', '2003-06-02', 'olsontroy88', '2003-06-07'); -INSERT INTO "public"."userinfo" VALUES ('TS026107147826', 'Mike Alvarez', 1, '+81 70-6792-8447', 1, '863521382409954397', '28F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-09-18', 0, 0, 'mikealvarez', '2007-05-23', 'malva5', '2007-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS195650928383', '葉學友', 0, '+81 11-082-9522', 0, '815727131268871718', '日本札幌豊平区豊平三条十三丁目3番4号20号室', '1991-06-04', 0, 0, 'hokyauyip5', '2002-09-07', 'yiphy', '2021-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS995511479625', '朱慧儀', 0, '+81 90-9980-0953', 3, '470665949776496010', '日本なごやし北区楠味鋺三丁目80番7号2階', '1994-09-19', 0, 0, 'chuwaiyee', '2001-10-31', 'wychu1963', '2005-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS801370188390', '崔天榮', 1, '+81 90-6864-9200', 3, '397122434834780773', 'Rm. 32, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-09-11', 0, 0, 'twchoi', '2019-05-03', 'choitw', '2000-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS463769433134', 'Dale Carter', 0, '+1 614-167-5015', 3, '625076501589824127', '370 Wicklow Road Apartment 1, Columbus, GA 43204, United States', '1994-05-17', 0, 0, 'carter4', '2000-07-03', 'dcarter', '2005-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS996810871320', '酒井優奈', 1, '+81 80-4428-6610', 1, '879379395590855435', '日本東京品川区東五反田五丁目2番19号43階', '1987-10-26', 0, 0, 'sakaiy', '2008-08-08', 'yunasakai01', '2013-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS477187072765', 'Barbara Johnson', 0, '+44 7596 796170', 3, '815115706516937564', 'Block 33, 548 Park End St, Oxford, OX1 1JD, United Kingdom', '1995-08-07', 0, 0, 'bj3', '2014-09-19', 'baj', '2010-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS536505616944', 'Sarah Baker', 0, '+81 66-321-6093', 4, '765306298408659661', '日本おおさかし近江堂一丁目7番3号18階', '1988-12-18', 0, 0, 'baker609', '2008-03-13', 'sabaker6', '2009-04-26'); -INSERT INTO "public"."userinfo" VALUES ('TS464076987587', '伊藤架純', 0, '+1 614-293-7705', 3, '256875737972667834', '372 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-09-29', 0, 0, 'ito111', '2003-09-27', 'itokasumi46', '2008-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS809740618484', 'Charlotte Olson', 1, '+81 70-8346-2228', 2, '048510535084636300', '日本おおさかし東住吉区東田辺三丁目27番16号14階', '1986-11-24', 0, 0, 'olson2', '2018-03-09', 'olcharlotte', '2017-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS145559919690', '史致远', 0, '+86 10-6713-9084', 3, '162573776701823614', 'No.50 building, 896 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-04-25', 0, 0, 'zhiyuanshi41', '2006-12-21', 'shizhiyuan', '2013-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS070582052653', '工藤健太', 1, '+81 70-3400-7123', 3, '584552697544148159', '35F, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-04-10', 0, 0, 'kudokenta', '2013-05-03', 'kenta613', '2013-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS991440757706', '苏秀英', 1, '+86 149-1285-9747', 3, '515539741721551083', 'Room 34, 346 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-01-01', 0, 0, 'su7', '2015-11-14', 'xiuyingsu', '2009-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS398866998070', '田云熙', 1, '+81 66-881-2442', 0, '347227652837960115', '日本おおさかし西成区天神ノ森二丁目1番3号30階', '1997-05-10', 0, 0, 'ytian1948', '2000-12-25', 'tiyunx3', '2002-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS028661914342', 'Maria Grant', 1, '+81 66-215-8184', 2, '116629438138284262', '日本おおさかし東住吉区東田辺三丁目27番2号22号室', '1998-08-09', 0, 0, 'gramaria5', '2018-03-08', 'mariagrant', '2003-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS738127966406', '遠藤愛梨', 0, '+44 (161) 718 7282', 3, '210288133992679264', 'Unit 47, Oxford Eco Centre, 521 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-10-07', 0, 0, 'endoairi', '2017-01-11', 'aend', '2019-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS669275672328', '蔡致远', 0, '+86 185-0987-1682', 1, '850566358935481959', '中国深圳罗湖区田贝一路615号31室', '1985-05-03', 0, 0, 'cai1', '2013-05-30', 'zhiyuan04', '2016-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS170990674236', '陆子韬', 0, '+81 80-1313-9154', 0, '124586530042876151', '36F, 3-9-11 Gakuenminami, Nara, Japan', '1991-03-21', 0, 0, 'zitlu5', '2004-07-08', 'zitaolu', '2017-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS929474851091', '中島一輝', 1, '+1 838-064-2792', 1, '684737230987977611', '257 Central Avenue Apt 41, Albany, NY 12206, United States', '1992-10-21', 0, 0, 'nakajimaikki', '2004-05-21', 'ikkinakaj', '2012-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS678195801574', '狄安琪', 0, '+86 755-035-5627', 1, '478476075857184591', 'No.4 building, 352 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1993-11-17', 0, 0, 'onkayti10', '2008-05-18', 'tionkay77', '2018-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS311583515812', '洪慧珊', 1, '+44 5512 301501', 2, '999714089553530548', 'No.10 Main building, 11 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-10-19', 0, 0, 'hungwaisan5', '2015-06-27', 'hws', '2013-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS244221256962', '中山健太', 1, '+1 312-284-4070', 4, '910419309359821547', '75 Pedway Apt 21, Chicago, IL 60601, United States', '1998-03-10', 0, 0, 'kenakayama', '2006-11-04', 'kenta78', '2002-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS622183221311', 'Andrea Cooper', 0, '+81 52-311-7048', 4, '584478207260151169', '日本なごやし守山区瀬古東二丁目171番2号15階', '1997-12-20', 0, 0, 'cooper14', '2018-05-13', 'cooper419', '2012-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS694231560415', 'Brian Flores', 1, '+44 7046 195856', 2, '333439997528827514', 'Flat 10, 769 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-08-06', 0, 0, 'florbrian11', '2014-04-08', 'brfl', '2019-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS435579760979', '中島翼', 1, '+81 52-102-2613', 0, '686550925396348631', '日本なごやし守山区瀬古東二丁目171番1号42階', '1991-12-01', 0, 0, 'nakajima7', '2013-01-12', 'tn49', '2018-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS726448781290', '廖秀英', 1, '+86 21-452-2416', 2, '740018894089318606', '6F, 893 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-04-11', 0, 0, 'xliao', '2020-11-08', 'xiuyingliao6', '2018-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS088371390871', '野村悠人', 1, '+81 70-9370-4866', 4, '135759042124484214', '日本おおさかし西成区天神ノ森二丁目1番1号30号室', '1986-04-01', 0, 0, 'yutonomu', '2002-05-02', 'yutonomu', '2009-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS680279629928', '元明詩', 0, '+86 10-0926-1339', 4, '573815855137963915', '47F, 708 028 County Rd, Yanqing District, Beijing, China', '1995-08-25', 0, 0, 'yuen723', '2012-07-21', 'ymingsze9', '2015-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS251662122458', '阮朝偉', 0, '+86 193-8782-1587', 3, '126117472493916268', '中国成都市成华区双庆路495号华润大厦12室', '1996-11-02', 0, 0, 'ychiuwai', '2006-07-26', 'cwyu', '2020-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS186866207485', 'Connie Guzman', 0, '+81 52-514-7708', 4, '208147951901428272', '48-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-05-19', 0, 0, 'connieguzman', '2021-11-09', 'coguz', '2020-11-30'); -INSERT INTO "public"."userinfo" VALUES ('TS740386018753', '蔡子异', 0, '+44 (1865) 59 9010', 3, '590903713076258972', 'Unit 8, Oxford Eco Centre, 300 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-03', 0, 0, 'ziyicai', '2005-04-29', 'caziyi', '2000-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS907851790922', '田致远', 1, '+81 74-433-1764', 2, '144171696809147897', '日本ならし学園南三丁目9番18号24階', '1991-03-15', 0, 0, 'zhiyutian1', '2016-06-01', 'zhiyut', '2016-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS776862537184', '郭俊宇', 1, '+44 (161) 696 7370', 1, '189841560685086766', 'No.8 Main building, 353 Portland St, Manchester, M1 3LA, United Kingdom', '1988-08-28', 0, 0, 'kwok10', '2000-02-26', 'cykwok', '2020-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS452480362655', 'Tiffany Palmer', 0, '+86 28-4514-3897', 0, '691831156657821565', '中国成都市成华区玉双路6号673号华润大厦21室', '1985-01-29', 0, 0, 'tiffapa5', '2000-04-15', 'tifpalme', '2017-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS555565459112', '原田桜', 1, '+44 7865 993879', 4, '180021283089580588', 'Unit 19, Oxford Eco Centre, 525 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1999-02-01', 0, 0, 'sakurh', '2019-05-19', 'haradas', '2021-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS026550458082', 'Alice Ferguson', 0, '+81 66-548-1915', 4, '587232929556548272', '日本おおさかし東住吉区東田辺三丁目27番8号49号室', '1994-01-15', 0, 0, 'ferguson6', '2008-07-21', 'fergusona', '2019-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS913030924011', '酒井詩乃', 0, '+86 21-202-2623', 1, '768769862229077044', '中国上海市浦东新区健祥路491号48栋', '1986-04-01', 0, 0, 'sakaishino725', '2015-08-07', 'sashino', '2003-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS791228288126', '竹内湊', 1, '+1 718-895-1105', 4, '795842500123133319', '399 1st Ave Apartment 44, Brooklyn, NY 11220, United States', '1989-05-10', 0, 0, 'minatotakeuchi', '2019-08-01', 'minato3', '2008-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS686563453301', '張小慧', 1, '+86 168-7848-3883', 3, '260531233435146145', 'No.5 building, No.292, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-05-20', 0, 0, 'swcheu', '2003-11-11', 'swcheu9', '2017-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS850645360816', '龚岚', 1, '+86 21-018-3850', 2, '380422959759514830', 'No.37 building, 674 Jianxiang Rd, Pudong, Shanghai, China', '1989-01-24', 0, 0, 'lago', '2007-08-27', 'gonglan', '2009-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS764293855170', '今井明菜', 1, '+44 7722 396794', 3, '952233411510784580', 'No.23 Main building, 978 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-04-28', 0, 0, 'ai1129', '2002-01-02', 'imai86', '2007-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS167567912474', '陶家強', 0, '+1 718-007-8768', 3, '832992777326100285', '185 Bergen St Apartment 18, Brooklyn, NY 11217, United States', '1993-02-23', 0, 0, 'taokakeung', '2005-09-29', 'kakeungtao617', '2013-07-16'); -INSERT INTO "public"."userinfo" VALUES ('TS870144284197', '袁心穎', 1, '+1 330-739-5787', 4, '017716909759121152', '180 West Market Street 3rd Floor, Akron, OH 44333, United States', '1988-05-12', 0, 0, 'yuen630', '2012-09-12', 'ysumwing', '2010-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS332430411266', '清水百恵', 1, '+81 80-1273-5011', 1, '245561157408424759', '日本東京渋谷区代々木二丁目3番13号41階', '1998-05-17', 0, 0, 'sm1942', '2009-05-29', 'mshimizu815', '2005-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS205756064715', '韩睿', 0, '+81 90-3703-4103', 1, '112116342604482557', 'Rm. 20, 5-4-7 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-10-06', 0, 0, 'ruihan', '2000-05-08', 'hrui7', '2019-11-29'); -INSERT INTO "public"."userinfo" VALUES ('TS419794478544', 'Steve Jordan', 1, '+86 769-7611-0648', 3, '205468103217822129', '中国东莞坑美十五巷911号25栋', '1992-01-27', 0, 0, 'jordan1', '2011-08-16', 'stevj109', '2019-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS637025547954', '韦秀英', 1, '+1 212-178-0740', 1, '924351431850803922', '14 Bank Street 3rd Floor, New York, NY 10014, United States', '1994-03-02', 0, 0, 'xiuying9', '2003-11-01', 'xwe', '2001-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS520003949002', 'Annie Snyder', 0, '+86 164-2027-2696', 2, '260236680145283022', 'Room 9, CR Building, 219 Huanqu South Street 2nd Alley, Dongguan, China', '1993-03-09', 0, 0, 'asnyder', '2016-10-09', 'snyderannie', '2012-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS249624849922', '原田湊', 0, '+86 769-8451-7198', 2, '078882685608096611', '中国东莞环区南街二巷256号24栋', '1992-05-06', 0, 0, 'minato4', '2011-02-24', 'minath1209', '2009-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS477871633730', '廖云熙', 0, '+81 90-1631-7171', 0, '335405075264431569', 'Rm. 23, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-11-30', 0, 0, 'yunxi69', '2002-05-30', 'yunxi74', '2001-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS833938340927', '山口蒼士', 0, '+1 718-071-9206', 1, '794585894260370535', '738 Bergen St Apartment 1, Brooklyn, NY 11217, United States', '1987-08-31', 0, 0, 'aoshi77', '2017-03-11', 'yamaguchia', '2011-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS109930606031', '藍明', 1, '+81 90-4491-0220', 1, '689519147451989655', '日本おおさかし西成区出城一丁目1番3号33階', '1986-05-16', 0, 0, 'lamin221', '2004-02-12', 'mlam', '2001-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS123933915854', '區世榮', 1, '+81 11-345-9293', 4, '042639904237666495', '21-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-05-22', 0, 0, 'saiwing702', '2008-08-06', 'ausaiwing', '2001-09-27'); -INSERT INTO "public"."userinfo" VALUES ('TS622689614318', 'Jeremy Hunter', 1, '+1 838-681-9695', 4, '032647798559121922', '21 Central Avenue Suite 13, Albany, NY 12206, United States', '1992-04-27', 0, 0, 'jerehunte518', '2009-01-14', 'huntejeremy', '2011-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS018126199615', '近藤蓮', 1, '+81 80-5892-5563', 3, '287560267147747902', '日本なごやし守山区瀬古東二丁目171番17号30階', '1998-12-13', 0, 0, 'renko', '2021-08-21', 'renkondo3', '2003-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS959844841727', '溫祖兒', 0, '+81 80-4022-9832', 3, '069344202074071775', 'Rm. 1, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1985-04-13', 0, 0, 'choyewan', '2010-11-27', 'cywa', '2009-12-02'); -INSERT INTO "public"."userinfo" VALUES ('TS423156971047', '莫家強', 1, '+81 11-167-3581', 0, '559022709803490916', 'Rm. 9, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-07-18', 0, 0, 'mokkk', '2022-02-02', 'mokkk75', '2015-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS331465340030', '朱晓明', 0, '+86 189-8554-3842', 1, '148399535063182222', 'No.8 building, 806 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-10-22', 0, 0, 'xiaomingz', '2001-04-27', 'xiazhu1973', '2008-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS740305957057', '森聖子', 0, '+44 5469 979099', 3, '155232326249818151', 'No.22 Main building, 472 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-05-25', 0, 0, 'smo', '2005-02-15', 'moseik116', '2008-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS710599635476', '佐々木海斗', 1, '+1 330-380-7259', 1, '598192358767416558', '530 West Market Street 3rd Floor, Akron, OH 44333, United States', '1995-02-07', 0, 0, 'sasakikaito', '2016-07-04', 'saskaito5', '2010-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS586926561945', 'Bonnie Soto', 0, '+86 160-4079-5800', 1, '676947523016530377', '中国北京市房山区岳琉路116号1号楼', '1994-05-20', 0, 0, 'sb9', '2006-10-17', 'bonso', '2021-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS187358292641', '佐藤樹', 0, '+86 173-2608-3897', 4, '167721178393178530', '中国北京市朝阳区三里屯路887号37号楼', '1986-02-06', 0, 0, 'satoitsuki121', '2021-11-16', 'satoitsuk', '2002-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS859797344011', 'Benjamin Morgan', 1, '+1 718-738-5952', 4, '100999363933734718', '326 Nostrand Ave Suite 41, Brooklyn, NY 11216, United States', '1997-05-08', 0, 0, 'bemo', '2019-03-19', 'mb8', '2011-03-24'); -INSERT INTO "public"."userinfo" VALUES ('TS891955977412', '藤明', 0, '+44 (151) 802 0652', 0, '561664513712822953', 'Unit 5, Oxford Eco Centre, 757 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-03-19', 0, 0, 'tam803', '2011-07-20', 'mint', '2010-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS879729547380', 'Sharon Warren', 1, '+81 90-0888-8513', 0, '690252496904643230', '日本東京港区東新橋一丁目5番15号13階', '1993-05-04', 0, 0, 'sharwarren', '2008-09-23', 'sw9', '2021-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS766262163959', '傅秀英', 0, '+44 5156 548102', 0, '598444418060101689', 'Block 25, 887 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-12-12', 0, 0, 'fu9', '2002-06-17', 'xiuyingfu1222', '2008-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS370337223234', '今井大地', 1, '+81 70-7910-0011', 3, '737692521876119855', '日本ならし大和郡山市本庄町一丁目1番20号44階', '1993-12-26', 0, 0, 'imdaichi', '2013-01-30', 'daichiimai', '2001-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS657028193871', '孙震南', 0, '+86 21-6679-5181', 3, '204711570402936198', '中国上海市浦东新区橄榄路861号华润大厦7室', '1997-05-19', 0, 0, 'suzhenn', '2007-05-24', 'zhens', '2004-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS600080290635', '森田美羽', 1, '+81 52-747-6719', 2, '229528115162961934', '日本なごやし熱田区千年二丁目5番2号23階', '1997-08-23', 0, 0, 'mimorita7', '2019-10-23', 'morimiu', '2019-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS592594535052', 'Katherine Porter', 0, '+86 755-647-9878', 2, '184410720734694821', 'No.34 building, 217 Shennan Ave, Futian District, Shenzhen, China', '1985-01-15', 0, 0, 'portkatherine', '2002-11-25', 'kathporter76', '2016-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS790494998060', '沈子韬', 1, '+1 718-269-6744', 1, '986640573751085682', '520 Nostrand Ave Suite 16, Brooklyn, NY 11216, United States', '1994-09-14', 0, 0, 'zshen', '2020-10-13', 'shezitao', '2012-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS817734980012', 'Sara Murphy', 1, '+81 80-7312-9974', 1, '799179182834728140', '日本東京港区東新橋一丁目5番2号23号室', '1995-09-08', 0, 0, 'sm5', '2001-01-16', 'mursara45', '2021-06-18'); -INSERT INTO "public"."userinfo" VALUES ('TS531366615428', 'Ernest Lewis', 0, '+86 755-474-5355', 2, '433078583634652356', '中国深圳龙岗区布吉镇西环路966号华润大厦19室', '1999-02-17', 0, 0, 'lewernest', '2019-06-05', 'lee1991', '2014-01-06'); -INSERT INTO "public"."userinfo" VALUES ('TS208671966567', '冯震南', 0, '+86 158-4197-2472', 4, '219599654733361236', '中国东莞坑美十五巷390号6室', '1991-06-20', 0, 0, 'fengzhennan3', '2012-02-26', 'fengzhen3', '2022-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS544428176897', '戴嘉伦', 1, '+86 173-8224-5630', 4, '678698420412506301', 'Room 4, CR Building, 936 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-02-02', 0, 0, 'daijialu', '2007-01-22', 'jialundai', '2015-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS869461338053', 'Kathleen Green', 1, '+81 70-6795-7248', 3, '406105848435088563', '1F, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-04-30', 0, 0, 'kathleen1207', '2001-10-30', 'kgreen', '2014-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS485772271425', '岡田玲奈', 1, '+81 66-834-0504', 2, '560231252438389636', '24F, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-11-25', 0, 0, 'okadarena', '2007-11-16', 'renaokada', '2015-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS886246869557', 'Raymond Webb', 0, '+86 20-248-9018', 0, '761072077684405170', '中国广州市白云区机场路棠苑街五巷707号35室', '1985-11-19', 0, 0, 'webbraymond', '2013-05-30', 'rawe', '2009-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS242933233253', '田秀英', 0, '+81 80-5658-6444', 1, '356641886364359648', '日本札幌清田区真栄四条五丁目19番9号1階', '1994-04-11', 0, 0, 'tian8', '2008-10-04', 'xiutian', '2019-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS567942860067', '周岚', 1, '+44 7973 316979', 3, '510015006945267692', 'Block 43, 986 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-18', 0, 0, 'lan04', '2010-12-21', 'lanz', '2006-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS131122347383', 'Nathan Mitchell', 1, '+86 166-2900-5615', 2, '199769217685212832', 'No.50 building, 821 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-05-07', 0, 0, 'nmitchell', '2012-09-10', 'mnathan2006', '2004-05-09'); -INSERT INTO "public"."userinfo" VALUES ('TS720702321177', 'Paul Russell', 0, '+86 769-372-0814', 3, '004007765951038955', '中国东莞东泰五街657号38栋', '1986-11-04', 0, 0, 'paurussell', '2009-04-19', 'russell53', '2010-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS534384402947', '橋本拓哉', 0, '+44 7370 908032', 4, '315197817174507028', 'No.18 Main building, 181 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-11-05', 0, 0, 'takuhashimoto609', '2013-02-08', 'hashimototakuya', '2000-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS042530235237', 'Rose Lewis', 1, '+86 760-397-9409', 3, '516275233341550980', '13F, 824 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1994-04-24', 0, 0, 'roselewis', '2015-11-13', 'roslewis', '2002-01-29'); -INSERT INTO "public"."userinfo" VALUES ('TS046500852540', '李秀英', 1, '+86 21-2075-3532', 0, '065595272640756179', 'No.28 building, 728 Binchuan Rd, Minhang District, Shanghai, China', '1995-03-23', 0, 0, 'li94', '2001-11-12', 'xiuyili', '2018-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS661160612665', '小野海斗', 0, '+1 614-039-6797', 2, '636663282450482750', '785 Wicklow Road Suite 19, Columbus, GA 43204, United States', '1988-07-06', 0, 0, 'kon99', '2021-07-25', 'okaito', '2016-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS524011865233', '野口大輔', 0, '+1 718-285-3385', 1, '648587813657830877', '856 Bergen St Apartment 40, Brooklyn, NY 11217, United States', '1990-06-17', 0, 0, 'dno', '2012-06-08', 'noguchidaisuke', '2011-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS478163546249', '溫富城', 0, '+1 212-249-6727', 2, '025692338326890473', '164 Canal Street Apt 28, New York, NY 10013, United States', '1991-03-12', 0, 0, 'fushing6', '2019-07-11', 'wfushi4', '2014-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS584410392840', '杜嘉伦', 0, '+86 157-2405-3759', 2, '665734759336185210', '中国中山紫马岭商圈中山五路6号1栋', '1996-11-20', 0, 0, 'dujia1', '2017-06-14', 'du1101', '2005-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS154635313112', '野村玲奈', 1, '+86 10-245-1060', 3, '815151644510635358', '中国北京市西城区西長安街682号19室', '1989-02-13', 0, 0, 'nomura2004', '2008-05-13', 'nomura530', '2010-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS709672449146', '毛家明', 0, '+1 212-593-8604', 4, '742363876816171955', '532 West Houston Street Suite 5, New York, NY 10014, United States', '1986-02-26', 0, 0, 'mo1986', '2003-01-06', 'kamingm78', '2013-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS985212720098', '周岚', 0, '+86 131-1025-0392', 3, '557437171200034598', '34F, 11 Dong Zhi Men, Dongcheng District, Beijing, China', '1996-06-06', 0, 0, 'laz', '2009-09-29', 'lzhou8', '2010-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS263256666728', '安藤翼', 1, '+1 213-913-3558', 2, '402820716912205723', '133 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-05-17', 0, 0, 'tan', '2007-08-18', 'tsubasaand', '2018-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS820776599597', '元家強', 0, '+81 70-9099-3254', 1, '256004337902055748', '日本なごやし瑞穂区河岸町四丁目20番19号14号室', '1993-05-29', 0, 0, 'ykk1225', '2002-10-31', 'yuenkk213', '2002-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS732384915221', '麥慧珊', 0, '+1 614-685-4850', 1, '896205594793307118', '28 Wicklow Road Apartment 8, Columbus, GA 43204, United States', '1985-07-13', 0, 0, 'maws2', '2000-04-30', 'mwaisan', '2018-07-09'); -INSERT INTO "public"."userinfo" VALUES ('TS903332088646', '陆致远', 1, '+1 213-768-6637', 1, '122415635265682394', '760 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1986-01-10', 0, 0, 'lu2', '2016-01-30', 'luzhiyuan9', '2020-08-05'); -INSERT INTO "public"."userinfo" VALUES ('TS662691415605', '石井大輔', 1, '+81 90-7013-3732', 1, '083924249556968411', 'Rm. 33, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-01-22', 0, 0, 'ishiidaisuke', '2006-08-29', 'id79', '2004-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS926930215625', '石田海斗', 0, '+81 66-269-8511', 2, '781979422016560591', '日本おおさかし西成区出城一丁目1番17号34階', '1996-09-11', 0, 0, 'kaitishi', '2003-03-21', 'ishikaito1023', '2021-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS180863595863', '龚宇宁', 1, '+81 66-341-9946', 0, '114378994086950934', '35F, 1-1-19 Deshiro, Nishinari Ward, Osaka, Japan', '1992-04-19', 0, 0, 'yunigong', '2015-12-05', 'gyun', '2019-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS580402991482', 'Kyle Stewart', 1, '+86 144-5382-5458', 3, '227825756030188441', 'No.29 building, No.250, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-05-06', 0, 0, 'stewartky3', '2017-09-11', 'skyl', '2014-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS182997149393', '朱國明', 0, '+1 718-493-4467', 1, '449255759701334795', '786 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-02-17', 0, 0, 'kmch9', '2013-06-25', 'kmchu', '2013-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS036476441673', '車慧珊', 0, '+1 212-983-6325', 1, '186340471598311301', '644 West Houston Street Apt 34, New York, NY 10014, United States', '1987-08-30', 0, 0, 'chewaisan', '2003-09-18', 'wsch', '2007-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS908186757557', 'Christina Grant', 1, '+81 70-0338-0740', 0, '876426429438723920', '日本なごやし北区楠味鋺三丁目80番11号3階', '1995-01-09', 0, 0, 'cg70', '2020-11-07', 'cgrant', '2009-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS267597572854', 'Michael Cruz', 0, '+44 7061 569999', 3, '031259836328379805', 'Block 44, 591 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-09-11', 0, 0, 'cruzmichael3', '2007-01-28', 'michaelcruz', '2015-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS880489857905', '董震南', 1, '+1 838-417-4255', 3, '427799299900614009', '803 Central Avenue Apt 3, Albany, NY 12206, United States', '1996-02-05', 0, 0, 'dongzhennan', '2006-04-12', 'dozhennan', '2014-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS291461509558', '张秀英', 0, '+81 90-9110-9045', 0, '968863802651758607', '日本東京千代田区丸の内一丁目6番13号44号室', '1990-05-06', 0, 0, 'xizhang14', '2019-06-20', 'xzhang', '2016-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS456409609188', '太田大和', 1, '+81 11-148-2153', 3, '664833205295596507', '日本札幌豊平区豊平三条十三丁目3番16号22階', '1994-05-25', 0, 0, 'yamatota', '2013-07-26', 'yamaota', '2006-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS750206589095', '曹嘉伦', 1, '+86 769-108-9250', 1, '055086206773768257', '中国东莞珊瑚路590号30室', '1992-06-25', 0, 0, 'cajialun504', '2017-02-25', 'jca', '2015-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS112900127227', '白天樂', 1, '+86 175-7736-8100', 1, '853516726251127037', '中国深圳龙岗区布吉镇西环路572号华润大厦44室', '1987-02-13', 0, 0, 'tinlokpak', '2012-02-26', 'paktinlok', '2001-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS973278161301', '森田蓮', 1, '+1 614-406-8122', 0, '698886834378324880', '517 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1985-08-11', 0, 0, 'renmorita', '2021-09-01', 'rmorita717', '2018-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS866754026540', '姚慧琳', 0, '+44 5267 431919', 2, '264907592065195037', 'Block 18, 459 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1996-05-04', 0, 0, 'yeowwl', '2018-02-13', 'wailamyeow', '2005-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS273515028738', '山口詩乃', 0, '+86 755-1982-1336', 3, '348464444205509026', '中国深圳罗湖区蔡屋围深南东路672号48号楼', '1998-12-02', 0, 0, 'yamaguchi525', '2020-09-21', 'yamshino1', '2014-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS483171336069', 'Adam Gonzales', 1, '+86 755-2972-0182', 3, '115479569670083662', 'No.17 building, 248 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-10-27', 0, 0, 'gadam', '2009-08-17', 'gonzalesada1963', '2013-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS189123096782', 'Ashley Moore', 0, '+1 213-529-3664', 2, '925403393990785191', '715 Figueroa Street Apartment 26, Los Angeles, CA 90037, United States', '1998-04-03', 0, 0, 'ashlmoore207', '2010-05-03', 'moorea', '2000-12-12'); -INSERT INTO "public"."userinfo" VALUES ('TS702292898716', 'Roger Campbell', 0, '+81 11-524-6579', 3, '628738984508733399', '日本札幌清田区真栄四条五丁目19番9号2号室', '1995-01-09', 0, 0, 'cro', '2000-04-22', 'rogerc1', '2019-10-27'); -INSERT INTO "public"."userinfo" VALUES ('TS362882631228', '工藤聖子', 1, '+86 28-216-1676', 3, '234383482055595092', '29F, No.149, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-08-26', 0, 0, 'kudoseik', '2017-02-10', 'seikokud', '2013-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS423292219614', '梅家文', 0, '+86 184-7019-8821', 4, '232481833516299747', '44F, 428 Binchuan Rd, Minhang District, Shanghai, China', '1985-03-28', 0, 0, 'kmm105', '2016-01-21', 'kaman3', '2012-07-29'); -INSERT INTO "public"."userinfo" VALUES ('TS459151249299', '陶安娜', 1, '+86 755-864-4066', 1, '884958013589522338', '中国深圳龙岗区学园一巷909号华润大厦9室', '1997-02-24', 0, 0, 'onnatao', '2000-01-24', 'taoon', '2018-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS276613040502', 'Martin Dixon', 1, '+86 153-0536-4474', 4, '725405687077639116', '中国深圳罗湖区田贝一路212号华润大厦40室', '1989-12-10', 0, 0, 'dixon731', '2012-07-26', 'dixonm', '2001-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS963027844550', 'April Mendoza', 1, '+86 165-5166-8500', 3, '807105022565316865', 'No.27 building, 770 Sanlitun Road, Chaoyang District, Beijing, China', '1986-01-12', 0, 0, 'mendapr9', '2017-03-21', 'mapril', '2004-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS661789270665', 'April Phillips', 0, '+81 70-3381-9778', 0, '939044131167722895', 'Rm. 25, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-02-15', 0, 0, 'aprilphillips6', '2016-08-13', 'phillips10', '2008-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS483532776781', '萬世榮', 1, '+86 755-650-2527', 4, '462056510107514717', '中国深圳龙岗区布吉镇西环路52号28室', '1992-12-30', 0, 0, 'msw', '2016-11-04', 'saiwingm1115', '2012-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS288975400819', '孟安琪', 0, '+86 769-297-6923', 3, '366215463051021388', '中国东莞坑美十五巷765号华润大厦18室', '1988-10-14', 0, 0, 'anqimeng', '2002-10-08', 'anqme', '2005-08-19'); -INSERT INTO "public"."userinfo" VALUES ('TS325555539021', 'Roy Gutierrez', 1, '+81 90-0582-8452', 3, '006615951628372371', 'Rm. 15, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-02-10', 0, 0, 'roygut', '2000-05-16', 'roygut', '2003-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS037028060421', '岡本陽太', 0, '+44 (151) 461 4766', 2, '420895378010268746', 'No.33 Main building, 58 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-03-24', 0, 0, 'okamoyot', '2004-07-26', 'yota5', '2013-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS169564994733', 'Clarence Griffin', 1, '+81 70-4494-5414', 4, '244905700397516989', '日本なごやし瑞穂区河岸町四丁目20番12号50号室', '1985-10-30', 0, 0, 'clarence1964', '2019-05-15', 'clarence62', '2015-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS632099245197', 'Pamela Simmons', 1, '+81 3-3243-9482', 2, '227107177943227281', 'Rm. 48, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-04-06', 0, 0, 'simp58', '2018-04-01', 'simmons69', '2005-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS221836636875', 'Clara Brooks', 1, '+86 141-1363-8288', 1, '841995110675817213', 'Room 3, 333 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-06-26', 0, 0, 'clarab4', '2015-11-06', 'cbroo', '2012-12-22'); -INSERT INTO "public"."userinfo" VALUES ('TS971572996005', '薛睿', 1, '+81 11-667-8961', 1, '937393546204696544', '日本札幌清田区真栄四条五丁目19番4号44階', '1990-01-21', 0, 0, 'xurui', '2005-05-26', 'rui10', '2003-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS312885111439', '鄭秀文', 1, '+81 80-4459-9606', 0, '147404862902077302', '14F, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1986-04-29', 0, 0, 'sauman809', '2010-02-25', 'saumancheng16', '2013-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS180311064067', '陆致远', 1, '+81 3-6144-8153', 1, '179607654434305423', '21-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-07-12', 0, 0, 'lzhiy80', '2005-12-08', 'zhiyuanlu', '2000-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS409352063465', '汪秀英', 1, '+81 66-485-7041', 2, '681102725665518763', 'Rm. 35, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-02-18', 0, 0, 'wxiuying9', '2005-06-01', 'xiuying1973', '2004-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS406223955965', '戴致远', 1, '+86 10-332-5565', 1, '264084359760046766', '中国北京市东城区东单王府井东街445号42栋', '1998-11-12', 0, 0, 'zhiyuandai', '2009-02-14', 'zhiydai8', '2004-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS545963324371', '汤宇宁', 1, '+81 90-5895-1701', 2, '282140483003357687', '日本おおさかし東住吉区東田辺三丁目27番15号39階', '1996-01-22', 0, 0, 'yuning4', '2002-01-18', 'tangyuning', '2006-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS632340921786', '孫安琪', 1, '+81 11-842-7439', 0, '236537933903486803', 'Rm. 14, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-12', 0, 0, 'hsuanon10', '2015-03-25', 'hsuanok1999', '2009-07-15'); -INSERT INTO "public"."userinfo" VALUES ('TS172717658519', '阮志明', 0, '+44 5243 410596', 0, '324747413644164984', 'Unit 49, Oxford Eco Centre, 82 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-04-04', 0, 0, 'yuencm7', '2012-08-25', 'yuenchiming10', '2011-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS068953637554', '邓安琪', 0, '+86 755-557-9538', 4, '608087399045188686', '中国深圳罗湖区清水河一路251号48号楼', '1997-04-04', 0, 0, 'dena1983', '2003-10-12', 'anqi1', '2002-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS436232918412', '野村拓哉', 1, '+1 330-496-1938', 3, '191655749036287459', '533 Collier Road Suite 22, Akron, OH 44320, United States', '1995-08-18', 0, 0, 'nomuratak', '2002-04-28', 'takuya1', '2011-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS159452779846', '山本絢斗', 0, '+86 199-4543-6699', 1, '825033141273531410', 'Room 16, CR Building, 543 Lefeng 6th Rd, Zhongshan, China', '1999-02-11', 0, 0, 'ayatoyamamoto', '2013-08-07', 'yayato72', '2013-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS216894262515', 'Theresa Wilson', 1, '+44 (121) 154 1484', 2, '228998024482487582', 'Unit 37, Oxford Eco Centre, 223 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-11-15', 0, 0, 'wt615', '2013-09-21', 'therwilso', '2005-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS539178005633', 'Rebecca Hunter', 0, '+81 3-9512-2662', 2, '969361769016854583', '日本東京千代田区丸の内一丁目6番14号15号室', '1993-05-20', 0, 0, 'hunterrebecca1948', '2020-06-29', 'hunterrebe2010', '2016-02-11'); -INSERT INTO "public"."userinfo" VALUES ('TS447777909182', '加藤蒼士', 0, '+86 139-0579-3282', 0, '623002196012529413', 'Room 15, CR Building, 195 Shennan Ave, Futian District, Shenzhen, China', '1989-09-24', 0, 0, 'aoshik', '2021-05-01', 'kao6', '2009-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS421212152566', '松本大地', 0, '+81 66-608-7243', 1, '405999590545685605', '25-kai, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1991-12-11', 0, 0, 'matsumotod', '2016-08-16', 'mda', '2007-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS336680590411', '郑璐', 1, '+81 90-3017-9325', 3, '588509730491563696', '12-kai, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-26', 0, 0, 'luzheng9', '2021-06-09', 'luzheng3', '2018-07-31'); -INSERT INTO "public"."userinfo" VALUES ('TS971326035828', '田中光莉', 1, '+81 70-4445-4955', 4, '762146436923864131', '47-kai, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-07-25', 0, 0, 'hikat', '2006-02-21', 'tahik', '2005-12-13'); -INSERT INTO "public"."userinfo" VALUES ('TS274992389175', '薛力申', 0, '+1 212-544-7214', 3, '177055273289971795', '321 West Houston Street Suite 33, New York, NY 10014, United States', '1993-04-29', 0, 0, 'sls', '2006-07-20', 'sitliksun', '2012-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS832248538545', '餘天樂', 0, '+81 11-454-7138', 2, '696264869806322975', '9-kai, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-06-12', 0, 0, 'tinlokyu1956', '2009-01-10', 'tinlokyue115', '2002-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS229579375129', '宮本蒼士', 0, '+86 10-079-8610', 1, '296145410255990831', '中国北京市东城区东单王府井东街196号30楼', '1985-08-11', 0, 0, 'ma10', '2010-04-08', 'miyamotoao', '2013-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS254230559208', '吉田聖子', 0, '+1 614-700-1128', 0, '449874960432650257', '774 Diplomacy Drive Suite 9, Columbus, GA 43228, United States', '1986-04-02', 0, 0, 'seikyosh', '2004-03-22', 'yoshidas', '2014-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS676515293558', '吴安琪', 1, '+81 52-814-7375', 3, '892397172565414450', '日本なごやし北区楠味鋺三丁目80番20号9号室', '1993-05-16', 0, 0, 'awu824', '2021-07-18', 'anqiwu2', '2004-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS506975387940', '莫安娜', 1, '+86 156-0535-6456', 3, '696832350570064636', '35F, 253 Lefeng 6th Rd, Zhongshan, China', '1986-10-10', 0, 0, 'mokon', '2017-04-14', 'moon02', '2013-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS580928447802', '狄慧琳', 0, '+86 769-9604-5759', 2, '124446427242956746', 'Room 15, CR Building, 865 Dongtai 5th St, Dongguan, China', '1992-08-20', 0, 0, 'ti6', '2003-07-29', 'ti10', '2004-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS038463708098', '橋本光', 1, '+44 5513 490411', 3, '244348971334901893', 'Unit 3, Oxford Eco Centre, 712 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-12-03', 0, 0, 'hah', '2004-01-18', 'hikaru7', '2018-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS607783884209', '袁慧嫻', 1, '+81 70-7097-4885', 0, '895959565281761213', '日本札幌豊平区豊平三条十三丁目3番3号41階', '1993-10-06', 0, 0, 'yuen212', '2010-07-26', 'yuen2018', '2008-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS757587709253', '陳慧敏', 0, '+86 176-3289-9912', 1, '982641586643083803', 'Room 35, CR Building, 522 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-10-30', 0, 0, 'chanwm', '2019-01-06', 'chanwm89', '2012-04-10'); -INSERT INTO "public"."userinfo" VALUES ('TS134456988668', '郭力申', 0, '+44 (20) 6257 6699', 2, '754954993166968488', 'No.36 Main building, 583 Hanover Street, London, W1S 1YD, United Kingdom', '1999-02-14', 0, 0, 'kls', '2020-07-23', 'kwok506', '2012-01-03'); -INSERT INTO "public"."userinfo" VALUES ('TS538551267879', '尹晓明', 1, '+44 (1223) 43 6273', 1, '487991795310393177', 'Unit 22, Oxford Eco Centre, 354 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-03-30', 0, 0, 'yinxiao', '2007-02-26', 'yin709', '2005-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS204558406300', '马睿', 1, '+1 213-031-3660', 3, '501695915026576156', '495 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-03-29', 0, 0, 'ruima', '2013-10-17', 'rm8', '2015-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS898620665110', 'Jacqueline Johnson', 0, '+81 90-1291-0727', 2, '202320290288051968', '4F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-03-29', 0, 0, 'johjacqu', '2011-04-26', 'jacquelinej2', '2020-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS763441926509', '郝晓明', 0, '+81 74-138-8546', 2, '202614329075246907', 'Rm. 5, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-11-16', 0, 0, 'xiaomhao10', '2013-02-03', 'xha', '2001-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS903519877581', 'Randall Lee', 1, '+1 213-596-8557', 4, '538613193098331445', '54 Figueroa Street Suite 48, Los Angeles, CA 90037, United States', '1986-02-01', 0, 0, 'lee87', '2003-09-28', 'lrandall', '2021-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS482857883848', '田中絢斗', 1, '+81 74-015-7089', 3, '065915412161913344', '20F, 3-9-7 Gakuenminami, Nara, Japan', '1987-09-08', 0, 0, 'tanaka14', '2020-08-26', 'tanakayato4', '2017-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS786840578105', 'Lee Mitchell', 1, '+86 21-580-4208', 0, '148955021463762009', '37F, 194 Ganlan Rd, Pudong, Shanghai, China', '1991-10-04', 0, 0, 'lemitchell4', '2011-03-21', 'lm74', '2001-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS573188847541', 'Marie Romero', 1, '+86 755-7370-6534', 4, '539567266336329927', 'No.47 building, 928 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-05-09', 0, 0, 'romero73', '2003-02-11', 'marieromer3', '2022-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS844457355563', 'Cheryl Howard', 1, '+86 198-5521-2399', 1, '223952284198933917', '45F, 935 028 County Rd, Yanqing District, Beijing, China', '1994-06-02', 0, 0, 'cherh', '2007-05-25', 'howard5', '2010-06-06'); -INSERT INTO "public"."userinfo" VALUES ('TS016075952883', '原田瑛太', 0, '+81 80-8348-3917', 4, '603843433886512750', '日本おおさかし西成区出城一丁目1番10号49号室', '1993-08-05', 0, 0, 'haradaei', '2004-02-03', 'haraei', '2019-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS050911940294', '楊詩君', 0, '+1 312-800-5340', 2, '903986143208414226', '424 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-10-20', 0, 0, 'yeungsk19', '2017-05-17', 'yeung93', '2014-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS387810012992', '戴詩涵', 1, '+1 838-564-6765', 1, '510253458332442658', '55 Central Avenue Apt 17, Albany, NY 12206, United States', '1998-07-31', 0, 0, 'dshihan', '2021-03-08', 'shid', '2021-08-27'); -INSERT INTO "public"."userinfo" VALUES ('TS383681786912', '中森桜', 1, '+44 7827 975274', 4, '699142954422326598', 'Flat 14, 244 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-02-04', 0, 0, 'sakurnaka', '2014-07-11', 'nakamori613', '2019-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS412021775250', '山崎聖子', 1, '+81 11-658-8441', 2, '594544528682660066', '43-kai, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-01-22', 0, 0, 'syamazaki', '2013-01-12', 'yase3', '2009-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS751849206712', '莫安琪', 0, '+1 718-776-8641', 4, '850332812918431772', '621 Nostrand Ave Suite 20, Brooklyn, NY 11216, United States', '1994-06-11', 0, 0, 'mo1993', '2004-09-19', 'anqimo', '2001-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS117801770240', 'Russell Nguyen', 0, '+86 21-422-4653', 4, '115869647920507182', 'No.36 building, 422 Jianxiang Rd, Pudong, Shanghai, China', '1993-08-12', 0, 0, 'nguyen2', '2008-11-09', 'nguyenru', '2019-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS093398429817', '溫慧嫻', 1, '+44 5173 895718', 4, '455616846468946768', 'Flat 45, 932 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-02-27', 0, 0, 'wwaiha10', '2003-12-06', 'whwan1951', '2020-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS817425544787', '野村蒼士', 0, '+44 (151) 677 7044', 1, '626506041870956666', 'No.50 Main building, 23 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-09-06', 0, 0, 'nomura1007', '2019-09-03', 'naoshi8', '2015-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS256979956472', '坂本彩乃', 0, '+86 10-919-8980', 0, '548213600037783405', 'Room 39, CR Building, 693 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-02-14', 0, 0, 'sa2', '2012-12-25', 'asa', '2016-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS439924902337', '傅慧儀', 1, '+1 614-139-0934', 1, '673389259761954780', '922 Tremont Road Apartment 9, Columbus, GA 43212, United States', '1992-03-10', 0, 0, 'fuwaiyee', '2004-01-08', 'fwaiyee', '2017-07-17'); -INSERT INTO "public"."userinfo" VALUES ('TS237869067651', '袁家輝', 1, '+44 7175 887253', 4, '298676832293973793', 'Flat 50, 268 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-11-24', 0, 0, 'kfyu', '2016-10-07', 'yuen1015', '2004-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS350945360034', '孫慧儀', 0, '+44 (161) 760 6839', 4, '124412661444911824', 'Unit 1, Oxford Eco Centre, 429 Portland St, Manchester, M1 3LA, United Kingdom', '1986-02-23', 0, 0, 'hswaiy2009', '2008-10-08', 'hwai', '2010-01-18'); -INSERT INTO "public"."userinfo" VALUES ('TS769100084898', 'Juanita Garza', 0, '+1 838-666-9443', 2, '693685587361547365', '781 Central Avenue Suite 17, Albany, NY 12206, United States', '1996-02-07', 0, 0, 'garzjuanita', '2003-07-24', 'juanitagarza', '2008-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS179208507476', '廖致远', 1, '+86 10-3282-5585', 3, '496274450965944637', '中国北京市延庆区028县道268号华润大厦27室', '1988-04-30', 0, 0, 'zhiyuanlia', '2021-07-28', 'liz65', '2010-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS279802880235', '蔣杰倫', 1, '+81 80-1238-5846', 2, '465121634566913706', '日本東京千代田区丸の内一丁目6番15号22階', '1985-12-08', 0, 0, 'chiangcl90', '2019-03-05', 'chiangcl', '2004-02-26'); -INSERT INTO "public"."userinfo" VALUES ('TS107972220949', '阎杰宏', 0, '+1 212-714-1242', 3, '356383746429502771', '97 Bank Street Suite 7, New York, NY 10014, United States', '1988-05-01', 0, 0, 'jiehoy', '2000-04-15', 'yanjiehong', '2007-01-28'); -INSERT INTO "public"."userinfo" VALUES ('TS683111489533', '村上瑛太', 1, '+81 70-4296-7064', 1, '453755813792309910', '日本札幌豊平区豊平三条十三丁目3番4号29号室', '1997-09-27', 0, 0, 'muraeit', '2013-03-13', 'murakami324', '2014-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS007523666520', '毛宇宁', 1, '+86 21-7274-3519', 4, '397132467801158850', '中国上海市闵行区宾川路963号35号楼', '1994-04-14', 0, 0, 'maoyuning', '2018-01-18', 'yuning5', '2019-04-13'); -INSERT INTO "public"."userinfo" VALUES ('TS168267982624', '菅原優奈', 0, '+81 80-8244-0392', 3, '008554722590864292', 'Rm. 15, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-06-13', 0, 0, 'yunasug', '2002-03-28', 'yuna8', '2003-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS332688114121', '池田光莉', 1, '+44 5846 076620', 1, '651358423134469899', 'Flat 39, 693 Portland St, Manchester, M1 3LA, United Kingdom', '1990-10-06', 0, 0, 'hikarii80', '2018-04-25', 'ikhikari5', '2007-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS567105837702', '宣國權', 1, '+44 (121) 694 8140', 3, '123203640732525575', 'No.49 Main building, 108 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-03-10', 0, 0, 'kkhsuan', '2010-07-14', 'hsuankk', '2008-05-23'); -INSERT INTO "public"."userinfo" VALUES ('TS195883477556', '董秀英', 1, '+81 11-773-7690', 0, '365088972759406932', '4-kai, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-10-31', 0, 0, 'dong115', '2021-01-29', 'dongx2', '2010-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS450247887090', 'Aaron Owens', 0, '+86 28-2210-9199', 1, '767585037030645143', 'No.13 building, No.957, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-09-28', 0, 0, 'aaronowens9', '2014-03-14', 'oaaron', '2016-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS973392161871', 'Jesse Dunn', 1, '+86 21-0324-4812', 2, '120007082522739038', '中国上海市浦东新区橄榄路529号42楼', '1990-07-16', 0, 0, 'djesse', '2006-11-14', 'jesse522', '2000-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS226994342550', 'Carol Wells', 0, '+1 614-940-7799', 3, '980438779361091071', '555 East Alley Suite 22, Columbus, GA 43201, United States', '1987-05-02', 0, 0, 'wecarol', '2009-09-19', 'wcarol', '2004-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS446105775779', '周安琪', 0, '+81 70-1119-8857', 1, '342424194666275741', '日本ならし学園南三丁目9番10号48階', '1996-07-13', 0, 0, 'anqi825', '2020-07-10', 'zan821', '2004-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS941529419997', '吉田絢斗', 1, '+44 5034 179835', 3, '885007591867011562', 'Unit 13, Oxford Eco Centre, 10 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-12-23', 0, 0, 'yoshidaayato', '2012-12-14', 'ayato3', '2006-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS849382034995', '佐野詩乃', 1, '+86 156-9087-3817', 1, '229586330123168743', '中国东莞坑美十五巷599号7室', '1994-04-08', 0, 0, 'shino9', '2011-10-13', 'shino814', '2004-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS953053228715', '顾詩涵', 1, '+81 74-543-0595', 2, '837816492476927070', 'Rm. 5, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1988-08-04', 0, 0, 'shg', '2013-10-19', 'gus', '2013-06-09'); -INSERT INTO "public"."userinfo" VALUES ('TS698177990011', 'Carrie Johnson', 1, '+81 52-199-2462', 1, '228875436678755581', '42F, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-04-11', 0, 0, 'carrijohnson8', '2020-02-21', 'jcarr', '2017-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS129189448281', '中島紗良', 0, '+86 10-9259-6780', 0, '580386037219971268', '中国北京市房山区岳琉路54号华润大厦7室', '1997-02-19', 0, 0, 'nakajimas7', '2001-06-28', 'sarnak', '2006-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS775942137317', '陶安娜', 0, '+81 74-635-6766', 0, '411922538028547377', '日本ならし西大寺赤田町一丁目7番9号41階', '1996-04-19', 0, 0, 'taoon8', '2020-08-26', 'onnata', '2015-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS393414382307', '山田美羽', 1, '+44 (116) 257 0357', 1, '271845929327204080', 'Block 28, 34 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-10-18', 0, 0, 'miuy', '2001-10-15', 'miuyamada', '2002-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS557772020970', 'Thelma Warren', 1, '+81 11-888-7836', 2, '239129258492206620', '日本札幌厚別区上野幌一条二丁目1番9号2号室', '1989-01-01', 0, 0, 'warren1006', '2001-10-15', 'thelma47', '2018-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS456521443894', '田中湊', 1, '+86 133-9767-4766', 2, '896201993061631538', 'Room 50, 43 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-26', 0, 0, 'tm2', '2012-04-10', 'minato615', '2012-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS453965966673', '陈詩涵', 0, '+1 212-421-3800', 1, '497731362129478435', '701 West Houston Street Suite 35, New York, NY 10014, United States', '1986-04-02', 0, 0, 'chenshihan114', '2018-02-08', 'shihan723', '2014-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS920791191306', '陈安琪', 0, '+1 330-068-4454', 1, '430261632189953054', '788 Fern Street Apt 15, Akron, OH 44307, United States', '1997-11-14', 0, 0, 'chenanqi', '2008-11-16', 'achen', '2010-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS942441119520', '萬頴思', 0, '+81 11-205-2499', 1, '736490367817054205', '日本札幌清田区真栄四条五丁目19番2号3号室', '1991-06-23', 0, 0, 'mengws', '2008-07-06', 'mengws', '2012-09-18'); -INSERT INTO "public"."userinfo" VALUES ('TS610257812234', 'Josephine Rodriguez', 1, '+86 172-7230-4838', 1, '711814481332576573', '中国成都市锦江区红星路三段967号19号楼', '1992-09-25', 0, 0, 'rodriguezjosep', '2018-04-05', 'josephinerod', '2017-08-03'); -INSERT INTO "public"."userinfo" VALUES ('TS029728863990', 'Lois Young', 0, '+81 66-200-6270', 3, '981214157862595246', 'Rm. 47, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1987-09-03', 0, 0, 'loisyoun', '2001-05-18', 'lois4', '2018-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS229348259952', '中野明菜', 0, '+81 90-8335-1572', 4, '439084919006180495', 'Rm. 10, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-12-19', 0, 0, 'akinaka', '2019-08-12', 'akina10', '2005-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS052343438124', 'Thelma Butler', 1, '+86 178-6414-3533', 3, '646300929767992277', 'Room 32, 843 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-08-11', 0, 0, 'thelmabutler', '2014-11-30', 'bthelma', '2006-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS208099757652', 'Teresa White', 1, '+86 156-4491-3570', 2, '943568205651165033', 'No.41 building, 378 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-03-05', 0, 0, 'white5', '2019-08-14', 'white85', '2021-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS516857267731', '范嘉伦', 1, '+86 20-706-1382', 1, '074001817191329062', 'Room 15, CR Building, 24 Tianhe Road, Tianhe District, Guangzhou, China', '1988-12-28', 0, 0, 'fan1', '2001-04-17', 'fjia', '2009-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS605864420609', '周家輝', 0, '+81 70-5705-7381', 1, '920242584525846751', '日本おおさかし東住吉区東田辺三丁目27番1号27号室', '1991-03-22', 0, 0, 'chow1962', '2000-02-12', 'kafaicho', '2005-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS808058046095', '郑岚', 0, '+86 10-656-6268', 4, '222118642344389986', '中国北京市朝阳区三里屯路139号31楼', '1988-03-28', 0, 0, 'lanzhen88', '2020-09-11', 'lan5', '2001-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS191151237120', 'Cindy Collins', 0, '+81 66-662-1255', 3, '823628647200010265', '日本おおさかし西成区出城一丁目1番7号27階', '1986-01-10', 0, 0, 'collinscin5', '2008-11-28', 'cindycol', '2022-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS641212948458', '邵杰宏', 0, '+44 (1223) 58 7633', 3, '749661390897406663', 'Unit 45, Oxford Eco Centre, 721 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-01-05', 0, 0, 'shao9', '2006-03-28', 'shjieho69', '2009-05-14'); -INSERT INTO "public"."userinfo" VALUES ('TS652992329507', '卢云熙', 1, '+86 195-2677-2565', 4, '979132650962437284', 'No.6 building, 3 Sanlitun Road, Chaoyang District, Beijing, China', '1991-12-08', 0, 0, 'yl06', '2022-02-14', 'yunxi07', '2016-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS757182500398', 'Luis Carter', 0, '+81 11-979-7469', 1, '423834120778693539', '39F, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-03-14', 0, 0, 'carter324', '2001-09-01', 'carterluis81', '2015-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS970349060258', '後藤葵', 0, '+86 143-1013-7727', 2, '189736131740638645', '中国成都市锦江区人民南路四段499号23号楼', '1985-02-20', 0, 0, 'gotaoi85', '2007-08-10', 'aoigoto', '2002-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS835912870863', 'Annie Coleman', 1, '+86 169-0803-2964', 1, '410991034798567280', '中国东莞环区南街二巷457号32室', '1989-01-17', 0, 0, 'ca11', '2004-10-09', 'coleman1982', '2003-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS204927351055', '向明詩', 1, '+44 (161) 559 8999', 0, '866429054116310169', 'No.46 Main building, 211 Portland St, Manchester, M1 3LA, United Kingdom', '1988-01-18', 0, 0, 'mingszeheung', '2001-03-27', 'mingsze84', '2003-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS208286293160', 'Doris Olson', 1, '+86 769-248-2694', 1, '450062527450397363', '中国东莞环区南街二巷196号17室', '1998-01-13', 0, 0, 'olsondor', '2015-07-17', 'olsodor', '2021-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS347272490130', '孙致远', 1, '+44 (161) 343 9084', 1, '961090138806868802', 'Unit 15, Oxford Eco Centre, 370 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-04-18', 0, 0, 'sunz', '2014-12-03', 'zhiyuansun', '2021-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS718026183306', 'Ellen Ramos', 1, '+1 838-187-5944', 0, '210668069078852616', '991 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-09-07', 0, 0, 'ellenramos', '2013-11-08', 'ramos4', '2017-06-20'); -INSERT INTO "public"."userinfo" VALUES ('TS427933345751', '汪惠妹', 1, '+86 21-195-9668', 3, '713028922648935012', 'No.40 building, 762 Ganlan Rd, Pudong, Shanghai, China', '1988-01-28', 0, 0, 'whm11', '2001-10-11', 'wonghm', '2019-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS066310925445', 'Helen Snyder', 0, '+86 20-5300-9843', 1, '277841328451510715', '中国广州市海珠区江南西路365号15号楼', '1997-09-17', 0, 0, 'helensnyder85', '2014-02-26', 'helsnyder10', '2013-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS493007235156', '唐朝偉', 1, '+86 145-4907-9860', 1, '177382134135106172', '中国上海市徐汇区虹桥路985号华润大厦20室', '1988-05-11', 0, 0, 'tcw', '2019-11-11', 'chiuwai70', '2017-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS709781682275', '渡部大和', 0, '+81 52-320-7751', 1, '379365799230011931', 'Rm. 28, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1985-11-06', 0, 0, 'watanabeyam201', '2003-08-18', 'yamato02', '2019-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS664553209187', 'Frances Freeman', 1, '+86 769-8687-1910', 2, '103343218110367079', '中国东莞环区南街二巷806号3室', '1986-04-16', 0, 0, 'freeman10', '2015-03-30', 'ffran2004', '2013-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS902499893826', '戴志明', 0, '+86 21-9735-4137', 3, '317513497422296355', '中国上海市浦东新区健祥路318号37栋', '1987-05-05', 0, 0, 'cmdai63', '2021-12-31', 'dai7', '2001-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS229924139236', '呂詩君', 1, '+81 11-489-9240', 1, '400992165639235504', '日本札幌白石区菊水三条五丁目4番14号40階', '1992-03-25', 0, 0, 'sklu10', '2004-09-07', 'szekwanlu5', '2019-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS561929639875', 'Stephanie Soto', 0, '+44 7757 471967', 2, '206321999175822838', 'No.30 Main building, 970 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-01-05', 0, 0, 'ssoto59', '2004-06-11', 'sotostephanie', '2005-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS416594174471', '林嘉伦', 1, '+1 838-717-5508', 3, '185036349817878602', '720 Central Avenue Apt 33, Albany, NY 12206, United States', '1991-10-15', 0, 0, 'jialun06', '2005-06-17', 'lin913', '2003-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS514869619828', '杜天榮', 0, '+81 70-1776-9045', 1, '205950441188845794', 'Rm. 17, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-05-01', 0, 0, 'tinwing9', '2016-03-05', 'totw621', '2011-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS040916294112', '戴嘉伦', 0, '+81 70-3828-6807', 1, '028530215013930531', '34F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-02-21', 0, 0, 'dajial01', '2008-02-21', 'jialun2017', '2000-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS344202990061', '叶晓明', 0, '+86 145-9872-2055', 2, '860790379058043217', 'Room 27, 925 Shennan Ave, Futian District, Shenzhen, China', '1985-04-17', 0, 0, 'ye69', '2007-12-05', 'ye85', '2020-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS737679440961', '區淑怡', 1, '+81 90-1992-6728', 0, '945883537782207877', 'Rm. 11, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-07-27', 0, 0, 'au10', '2003-04-17', 'asy1957', '2016-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS913919589770', 'Angela Adams', 0, '+81 74-811-6455', 2, '007070413205260739', '日本ならし大和郡山市本庄町一丁目1番11号49階', '1987-05-13', 0, 0, 'adamang', '2002-12-25', 'adamsangela1949', '2006-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS758682509569', '松田紗良', 0, '+86 755-9223-7102', 1, '369430751479306990', '中国深圳罗湖区田贝一路286号38室', '1990-03-03', 0, 0, 'matsus', '2017-04-26', 'matsudasa', '2021-08-12'); -INSERT INTO "public"."userinfo" VALUES ('TS181444047934', '韓惠敏', 0, '+81 11-252-4394', 0, '499140234967623468', '日本札幌豊平区豊平三条十三丁目3番3号29階', '1992-12-23', 0, 0, 'hawm', '2007-04-21', 'wmha', '2010-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS979743331098', '周睿', 0, '+1 213-849-8935', 3, '560810401363576786', '473 S Broadway Apartment 15, Los Angeles, CA 90015, United States', '1987-01-12', 0, 0, 'ruizho', '2003-01-06', 'zhourui7', '2006-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS542524804141', '孙宇宁', 0, '+44 (151) 611 3306', 1, '859734526037621083', 'No.4 Main building, 493 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1998-07-11', 0, 0, 'ysun', '2004-05-19', 'yuning416', '2020-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS226096462545', 'Rita Ellis', 1, '+81 70-9511-5784', 3, '157925542586436389', '日本札幌中央区宮の森四条六丁目1番15号36階', '1985-10-06', 0, 0, 'ritaell8', '2020-07-07', 'erit', '2006-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS017174427105', 'Ricky Payne', 0, '+81 90-2576-5803', 1, '334822061614448962', '日本ならし西大寺赤田町一丁目7番17号31階', '1988-10-16', 0, 0, 'payne8', '2011-10-27', 'ricky96', '2000-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS929483655608', 'Scott Nichols', 0, '+81 11-387-5055', 3, '826983099410640525', '日本札幌白石区菊水三条五丁目4番14号11階', '1986-12-14', 0, 0, 'nicholsscot', '2009-06-01', 'nicholsscott5', '2020-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS772154191495', '伍霆鋒', 0, '+86 755-7938-5789', 4, '878986154346275567', 'Room 10, 794 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-10-09', 0, 0, 'tingfung828', '2000-01-14', 'ng4', '2009-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS420307046930', 'Nathan Stewart', 0, '+81 66-981-6768', 1, '743982571261989155', 'Rm. 22, 4-9-19 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-15', 0, 0, 'stewart2', '2021-05-27', 'natste906', '2010-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS898901226013', '邓璐', 0, '+44 (1865) 98 8161', 0, '394069529434984052', 'Block 18, 681 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-04-06', 0, 0, 'ludeng2', '2006-12-09', 'lu84', '2021-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS506651879041', '山口凛', 0, '+81 74-803-8115', 4, '208104164416594915', '49-kai, 3-9-2 Gakuenminami, Nara, Japan', '1997-05-29', 0, 0, 'yamaguchir', '2006-01-18', 'riyamaguchi', '2021-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS140036786199', 'Richard Shaw', 0, '+81 90-4263-7738', 3, '128203435065035975', '日本東京品川区東五反田五丁目2番8号40号室', '1995-06-18', 0, 0, 'richashaw1102', '2003-04-10', 'shawrichard5', '2016-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS661791681079', 'Tammy Rivera', 0, '+44 5532 264479', 2, '812235429928242791', 'No.45 Main building, 979 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-12-16', 0, 0, 'rivera207', '2012-12-04', 'triver', '2019-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS212740875579', '藤原結翔', 1, '+86 769-918-6625', 3, '970967622318373027', '中国东莞坑美十五巷708号7楼', '1994-08-10', 0, 0, 'fyu2001', '2018-01-27', 'fujiwarayuit', '2015-05-30'); -INSERT INTO "public"."userinfo" VALUES ('TS549394616828', '藤田花', 0, '+86 760-4087-4059', 3, '109278546786946709', 'No.24 building, 11 Lefeng 6th Rd, Zhongshan, China', '1995-02-15', 0, 0, 'hanfujit', '2012-12-13', 'fuhan', '2020-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS934005743794', '吕詩涵', 0, '+44 (1223) 91 0081', 4, '496698313657780589', 'Block 45, 255 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1985-03-12', 0, 0, 'lushihan3', '2003-09-19', 'shihanlu', '2014-12-06'); -INSERT INTO "public"."userinfo" VALUES ('TS061264638107', 'Jack Mason', 1, '+86 194-3534-3567', 3, '328229183651868865', '中国上海市浦东新区橄榄路943号48室', '1996-11-23', 0, 0, 'masonjack1230', '2006-01-07', 'masja4', '2013-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS197849305329', '陳裕玲', 0, '+81 66-213-6236', 1, '993398746393344546', '日本おおさかし西成区出城一丁目1番14号42号室', '1997-08-11', 0, 0, 'yulingch5', '2017-12-03', 'chan407', '2018-08-10'); -INSERT INTO "public"."userinfo" VALUES ('TS287070932077', '橋本詩乃', 1, '+86 139-2365-2664', 2, '769952459572410542', '中国深圳罗湖区清水河一路653号49号楼', '1996-03-21', 0, 0, 'shinoh', '2009-04-29', 'hshino710', '2013-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS511838563647', '邵宇宁', 1, '+86 769-220-7457', 0, '439352859157476015', '中国东莞坑美十五巷29号27栋', '1988-01-26', 0, 0, 'ysha51', '2007-04-11', 'yshao', '2015-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS550479431713', 'Christopher Gray', 1, '+81 11-470-0953', 0, '743615864329423076', '日本札幌中央区宮の森四条六丁目1番4号42号室', '1985-03-01', 0, 0, 'graychri1102', '2008-01-24', 'gchristopher1996', '2008-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS154632457322', '苏睿', 1, '+81 90-6893-7978', 4, '160617167709946550', '日本東京中央区銀座三丁目12番5号45階', '1994-06-14', 0, 0, 'suru', '2021-03-23', 'rus04', '2001-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS811504158582', 'Judy Alexander', 1, '+1 614-764-1007', 1, '557167314728445177', '932 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-12-20', 0, 0, 'aju8', '2017-12-12', 'alexander00', '2009-11-23'); -INSERT INTO "public"."userinfo" VALUES ('TS375709400873', '夏晓明', 1, '+81 70-9020-5130', 3, '080035612787993148', 'Rm. 40, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1996-03-28', 0, 0, 'xxiaoming311', '2005-12-16', 'xiaxiaoming', '2003-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS916312581186', 'Rose Black', 0, '+81 70-7949-4110', 4, '431199344597422691', '30-kai, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-11-19', 0, 0, 'roseblack7', '2021-03-01', 'black8', '2000-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS836467234919', '井上葵', 0, '+44 7641 548773', 1, '475721234550604123', 'Unit 5, Oxford Eco Centre, 271 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-10-01', 0, 0, 'inoue308', '2020-07-28', 'iaoi', '2006-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS248098347089', 'Steven Boyd', 1, '+81 74-054-1748', 2, '761261436787844977', '日本ならし学園南三丁目9番1号25階', '1994-10-25', 0, 0, 'bst', '2020-12-01', 'stevenboyd70', '2005-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS856704262784', '金子紗良', 0, '+81 66-688-9654', 3, '159180737244153333', '日本おおさかし西成区出城一丁目1番19号13号室', '1991-12-17', 0, 0, 'kanekos7', '2014-12-24', 'sakan', '2007-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS632679975168', '翁安琪', 0, '+86 755-046-4980', 4, '883708141570972619', 'No.17 building, 465 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-06-16', 0, 0, 'yung2', '2001-02-21', 'yunonkay', '2014-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS821065317355', '邱惠妹', 1, '+44 (1865) 36 3688', 1, '987168452604417446', 'Block 3, 959 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-12-15', 0, 0, 'yauhm', '2007-09-22', 'yauhuimei1964', '2003-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS363656068875', '加藤光莉', 1, '+1 614-090-4309', 2, '647773605423461310', '536 East Cooke Road Apartment 31, Columbus, GA 43214, United States', '1993-10-20', 0, 0, 'katohika', '2012-05-30', 'hikarkat', '2004-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS415816727432', '周思妤', 1, '+86 166-4647-0620', 3, '316897090015858102', 'No.4 building, 959 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-08-21', 0, 0, 'chsy78', '2009-01-28', 'sych', '2008-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS936625693869', '野村玲奈', 1, '+81 3-4808-5412', 1, '294702428816262295', '日本東京千代田区丸の内一丁目6番17号22号室', '1992-08-22', 0, 0, 'nrena3', '2009-01-26', 'nomura810', '2007-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS262245514833', 'Joe Anderson', 1, '+81 70-6407-7727', 2, '074028578163589996', '40F, 2-3-14 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-03-05', 0, 0, 'anderjoe4', '2015-07-17', 'andersonjoe13', '2001-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS062347741078', 'Roger Scott', 1, '+81 70-5896-6239', 2, '549035764755099301', '日本おおさかし西成区出城一丁目1番13号39号室', '1992-07-04', 0, 0, 'scottrog1221', '2008-04-25', 'rscott', '2017-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS863542652011', '溫家明', 1, '+86 28-415-9087', 3, '571179034866715094', '中国成都市成华区双庆路206号华润大厦46室', '1992-09-20', 0, 0, 'wanka730', '2011-04-10', 'kmwan', '2002-06-25'); -INSERT INTO "public"."userinfo" VALUES ('TS025503953707', '野村樹', 1, '+44 (121) 395 7401', 3, '129677791601200592', 'Unit 15, Oxford Eco Centre, 927 New Street, Birmingham, B2 4DB, United Kingdom', '1986-03-14', 0, 0, 'nomurait', '2001-01-19', 'inomura', '2021-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS592347206943', '严嘉伦', 1, '+81 80-8365-9571', 4, '227065083474676805', '日本東京渋谷区代々木二丁目3番7号6階', '1993-10-03', 0, 0, 'yanjia323', '2017-06-28', 'jialun1227', '2002-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS692098704972', 'Lucille Bell', 1, '+1 614-490-4790', 3, '660791360263854354', '435 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1986-10-22', 0, 0, 'belll3', '2007-05-09', 'blucil', '2021-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS910884563353', '孟安琪', 0, '+81 70-9132-1093', 2, '084007938613338709', '日本なごやし守山区瀬古東二丁目171番7号23号室', '1991-10-19', 0, 0, 'meng707', '2004-06-20', 'anqimeng204', '2003-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS211729364145', 'Beverly Snyder', 1, '+86 10-0490-6938', 4, '045197922948534644', '中国北京市西城区复兴门内大街713号24楼', '1998-12-13', 0, 0, 'snyderbev', '2021-05-10', 'beves', '2005-08-02'); -INSERT INTO "public"."userinfo" VALUES ('TS434683818100', '西村光', 0, '+44 7878 566581', 2, '850791716821882808', 'Flat 27, 435 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-07-22', 0, 0, 'nishimurah506', '2018-03-02', 'nishimurahikar', '2012-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS261287352148', '陈安琪', 1, '+86 130-1077-6505', 4, '936801577338671600', '中国中山天河区大信商圈大信南路619号13楼', '1990-03-31', 0, 0, 'cheanq', '2010-11-20', 'anqich', '2019-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS247707083580', 'Curtis Daniels', 0, '+81 52-970-3690', 2, '134454851208215752', '日本なごやし瑞穂区河岸町四丁目20番20号50号室', '1991-09-11', 0, 0, 'dancu', '2003-03-28', 'daniec', '2000-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS675967199245', 'Rosa Lewis', 1, '+81 80-3834-9427', 2, '588324525412125724', '18-kai, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1998-07-23', 0, 0, 'rosalewis', '2021-03-05', 'rolewi', '2021-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS783413820089', 'Larry Moore', 1, '+86 28-1079-4118', 1, '668375370581412148', '19F, 461 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-04-21', 0, 0, 'larrymoore903', '2015-05-27', 'larrymoore1979', '2010-02-03'); -INSERT INTO "public"."userinfo" VALUES ('TS491938899013', '藤井美緒', 0, '+86 755-7318-3536', 2, '213715540081335975', 'Room 48, 660 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-04-19', 0, 0, 'fumio127', '2006-02-14', 'miofu', '2011-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS291617478213', '餘秀文', 0, '+86 755-3404-6562', 4, '657099680685767959', '中国深圳福田区深南大道201号33室', '1986-08-16', 0, 0, 'ysm', '2022-01-20', 'yuesauman', '2016-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS339350427124', '廖志遠', 1, '+44 (161) 834 4000', 0, '012497024832981144', 'Flat 33, 551 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1992-08-05', 0, 0, 'chiyuen1002', '2020-09-13', 'cyliao2', '2010-12-30'); -INSERT INTO "public"."userinfo" VALUES ('TS117683595158', '郭子异', 0, '+81 66-278-7662', 1, '000869240213080270', '日本おおさかし西成区天神ノ森二丁目1番13号3号室', '1985-01-24', 0, 0, 'ziyiguo79', '2002-03-24', 'ziyi7', '2019-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS716214070694', '譚麗欣', 1, '+1 614-225-8606', 3, '013952678155944272', '146 East Alley Apt 50, Columbus, GA 43201, United States', '1998-03-16', 0, 0, 'tamlaiyan626', '2005-03-31', 'tamly419', '2009-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS887269870501', '徐發', 0, '+81 70-3791-5667', 1, '718455774551554493', 'Rm. 44, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-06-03', 0, 0, 'fattsu1985', '2005-08-08', 'fatt', '2009-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS777176285572', '山崎凛', 1, '+86 28-9588-4143', 2, '966898534333556767', '中国成都市锦江区红星路三段352号50室', '1990-10-02', 0, 0, 'rinyam', '2021-05-17', 'yamazakiri', '2001-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS740934510290', 'Janice Brooks', 0, '+1 718-357-8758', 3, '712680767051767244', '245 Flatbush Ave Apt 12, Brooklyn, NY 11225, United States', '1994-09-13', 0, 0, 'brooks425', '2010-09-22', 'janbrooks69', '2001-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS475012427189', '魏云熙', 0, '+86 28-716-2074', 4, '248277880825338957', 'No.38 building, No. 618, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-10-04', 0, 0, 'wei428', '2010-04-12', 'weiyunxi', '2012-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS881081171125', '龚秀英', 0, '+81 74-303-8762', 1, '583256729899468750', '9F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1993-04-09', 0, 0, 'gxiu605', '2016-04-28', 'gongxiuying220', '2015-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS831830172898', 'Dawn Reyes', 0, '+81 66-036-0260', 3, '945828854887987068', '日本おおさかし平野区加美東四丁目9番8号23階', '1997-08-05', 0, 0, 'dareyes', '2020-01-12', 'reyes83', '2016-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS224698506323', '馬永權', 0, '+81 11-829-5412', 2, '385076956070097441', '日本札幌白石区菊水三条五丁目4番5号9階', '1992-04-13', 0, 0, 'wingkuen1', '2006-10-25', 'wkma', '2011-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS774067750991', '吉田玲奈', 1, '+81 3-4306-9221', 1, '198542157088034823', 'Rm. 46, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-11-07', 0, 0, 'rena8', '2009-11-30', 'yrena', '2002-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS298972886829', 'Albert Rogers', 0, '+86 183-1970-9199', 2, '616457609814245881', '中国成都市锦江区人民南路四段859号6栋', '1994-09-27', 0, 0, 'rogersal', '2006-06-03', 'albertr2', '2002-06-04'); -INSERT INTO "public"."userinfo" VALUES ('TS443890243175', '吉田百恵', 0, '+1 838-033-5715', 2, '730662275666956802', '288 Broadway Apt 19, Albany, NY 12207, United States', '1985-07-07', 0, 0, 'ymomoe', '2015-04-11', 'yoshidamomoe5', '2000-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS473756879358', '丁子异', 1, '+81 70-6925-2034', 4, '960189103378473924', 'Rm. 10, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-10-26', 0, 0, 'ding605', '2003-12-28', 'dingziy7', '2009-11-07'); -INSERT INTO "public"."userinfo" VALUES ('TS669362171468', '樊惠敏', 0, '+86 10-770-4893', 3, '814455887691321096', '中国北京市東城区東直門內大街603号31楼', '1995-06-12', 0, 0, 'wmfan', '2014-12-14', 'fanwm', '2008-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS924202572781', 'Janice Evans', 0, '+1 330-051-7439', 1, '734248609121668453', '767 West Market Street Apartment 2, Akron, OH 44333, United States', '1994-06-24', 0, 0, 'evansjanice1', '2012-11-11', 'janiceeva', '2006-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS040334959948', '佘淑怡', 0, '+81 3-8972-5462', 0, '431179125882155376', '日本東京中央区銀座三丁目12番11号31階', '1986-08-03', 0, 0, 'sukyee8', '2007-05-18', 'shehsuk1018', '2011-11-14'); -INSERT INTO "public"."userinfo" VALUES ('TS434269308568', '曹睿', 0, '+86 166-9853-3959', 1, '527491526136582242', 'Room 15, 984 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-02-14', 0, 0, 'ruicao', '2020-03-06', 'rcao5', '2018-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS756978703623', '胡國明', 0, '+86 148-4149-6152', 1, '012644782150474467', '中国广州市天河区天河路615号24楼', '1988-02-26', 0, 0, 'kmw', '2015-01-22', 'wu86', '2018-08-09'); -INSERT INTO "public"."userinfo" VALUES ('TS922040711923', 'Esther Adams', 1, '+81 66-261-2063', 3, '866181173404087450', '日本おおさかし西成区天神ノ森二丁目1番11号16階', '1988-12-23', 0, 0, 'esthera', '2020-04-13', 'adamsesther', '2005-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS230049419949', 'Frances Olson', 1, '+81 80-8677-9602', 3, '133015771651190064', '日本おおさかし西成区出城一丁目1番5号26階', '1995-11-05', 0, 0, 'folson', '2011-01-11', 'olsf44', '2021-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS656265673369', '林淑怡', 1, '+86 184-4232-3656', 1, '107335727648282960', '中国上海市徐汇区虹桥路694号3楼', '1994-12-01', 0, 0, 'lsy425', '2000-01-10', 'lasy', '2008-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS734801502518', '严云熙', 1, '+81 80-6813-2428', 2, '575909829165241215', '日本東京千代田区丸の内一丁目6番12号26階', '1992-05-28', 0, 0, 'yunxiyan8', '2018-09-13', 'yanyunxi', '2008-02-09'); -INSERT INTO "public"."userinfo" VALUES ('TS693998906283', '曹嘉伦', 1, '+86 148-8781-7157', 1, '547654248000398186', '中国中山天河区大信商圈大信南路355号6栋', '1995-11-30', 0, 0, 'jialc', '2011-07-13', 'jca', '2001-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS151369789840', '金震南', 0, '+81 70-0886-8086', 4, '652383819563056634', '8F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-09-17', 0, 0, 'jinzhennan1963', '2005-04-12', 'zhennanji69', '2021-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS574292826694', '上野優奈', 0, '+44 7594 831531', 3, '056148272001406995', 'No.28 Main building, 152 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-04-25', 0, 0, 'uenoyuna', '2013-02-12', 'yunaueno89', '2006-01-17'); -INSERT INTO "public"."userinfo" VALUES ('TS455597233707', '餘霆鋒', 1, '+86 183-5570-0707', 1, '885391676918462663', '中国广州市越秀区中山二路380号华润大厦33室', '1992-09-26', 0, 0, 'yue9', '2020-03-30', 'yutf96', '2019-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS272573062839', '叶子韬', 1, '+81 11-195-3588', 2, '390143412853108735', '日本札幌白石区菊水三条五丁目2番4号13号室', '1989-02-20', 0, 0, 'ziye918', '2007-08-14', 'zye', '2016-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS844906545444', '邵仲賢', 1, '+44 7522 987167', 1, '156858275665263950', 'Block 6, 726 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-11-04', 0, 0, 'chungyin5', '2018-09-21', 'siu8', '2022-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS041046377789', '金致远', 0, '+81 3-6776-4924', 4, '574524545085501820', '日本東京港区東新橋一丁目5番13号33階', '1997-10-23', 0, 0, 'jz2', '2013-12-25', 'jz1', '2007-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS037975049212', '小島樹', 1, '+81 3-6938-9915', 2, '607325652503673848', '12F, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-10-16', 0, 0, 'ikoj1', '2014-07-14', 'kojiit', '2000-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS225525574848', '邵嘉伦', 1, '+1 212-865-7208', 0, '419451703098442419', '30 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-07-26', 0, 0, 'shaji1009', '2002-12-13', 'shaojialun8', '2016-11-11'); -INSERT INTO "public"."userinfo" VALUES ('TS008201047479', '原田湊', 0, '+44 (20) 8195 8311', 1, '030298925251188647', 'Flat 39, 46 Maddox Street, London, W1S 1PU, United Kingdom', '1988-11-22', 0, 0, 'minato9', '2019-09-20', 'hminato1989', '2005-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS611503650799', '謝榮發', 0, '+81 3-6046-3508', 1, '529779022420790220', 'Rm. 37, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-08-14', 0, 0, 'tse4', '2015-07-21', 'tsewf809', '2014-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS361323385859', '尹麗欣', 0, '+81 11-142-9202', 1, '331125889315052419', '43F, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-09-22', 0, 0, 'yinly919', '2016-10-20', 'lay', '2000-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS222291965206', 'April Schmidt', 1, '+81 74-756-5786', 3, '857988497045420726', '日本ならし西大寺赤田町一丁目7番11号47号室', '1989-11-29', 0, 0, 'asch', '2016-09-01', 'aprischmidt', '2011-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS188645829313', '市川葉月', 0, '+86 131-9711-6992', 3, '415421296349698594', 'Room 9, 550 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-12-16', 0, 0, 'ih623', '2012-11-29', 'hazukichikawa', '2013-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS790083696657', '藤井陽菜', 0, '+44 5206 362264', 1, '221964528423750966', 'Block 31, 231 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-01-22', 0, 0, 'fuh826', '2003-04-27', 'hinfujii', '2003-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS918549914948', '前田桜', 0, '+86 21-7134-2658', 2, '531976817776433790', '中国上海市浦东新区橄榄路938号36号楼', '1985-04-25', 0, 0, 'maedasakura', '2010-11-30', 'sakuram', '2009-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS086398411165', '田杰宏', 0, '+1 213-555-9134', 3, '794231775346720465', '681 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-10-01', 0, 0, 'tiajiehong', '2004-03-29', 'jieht', '2008-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS720978525607', 'Catherine Foster', 1, '+1 718-328-6968', 1, '444538497241575656', '135 Nostrand Ave Apartment 24, Brooklyn, NY 11216, United States', '1992-11-06', 0, 0, 'focath', '2012-04-04', 'foster9', '2000-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS974836681257', '文永發', 1, '+81 74-398-5779', 1, '394371674941345434', '日本ならし大和郡山市本庄町一丁目1番16号7階', '1987-07-07', 0, 0, 'manwf', '2012-02-13', 'manwf', '2009-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS957461325908', '湯榮發', 0, '+81 70-9366-5254', 0, '417098740426014397', '日本なごやし北区楠味鋺三丁目80番13号22階', '1995-12-24', 0, 0, 'wingtong', '2019-02-22', 'wingfattong', '2003-10-29'); -INSERT INTO "public"."userinfo" VALUES ('TS497023453176', '段云熙', 0, '+44 5829 790636', 4, '700798721369804763', 'Unit 40, Oxford Eco Centre, 627 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-06-07', 0, 0, 'yd1940', '2011-03-09', 'yduan', '2011-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS208472614918', '黎子韬', 0, '+81 80-4171-2340', 3, '281336531315507845', '日本札幌清田区真栄四条五丁目19番2号41号室', '1985-10-21', 0, 0, 'zitao7', '2019-06-20', 'zitaoli2002', '2008-02-20'); -INSERT INTO "public"."userinfo" VALUES ('TS170454516319', '袁嘉伦', 1, '+44 5367 638859', 3, '915364968908552943', 'Flat 12, 876 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-12', 0, 0, 'jialunyu4', '2021-04-12', 'jialunyuan', '2002-07-26'); -INSERT INTO "public"."userinfo" VALUES ('TS707582982954', 'Brenda Owens', 1, '+86 140-4156-8206', 0, '697282080459356002', '中国东莞坑美十五巷62号20室', '1985-06-15', 0, 0, 'owensb', '2011-09-26', 'brendaowens41', '2013-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS456492150968', '工藤葉月', 1, '+44 7741 805144', 3, '483885657580371036', 'Flat 9, 740 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-12-26', 0, 0, 'kudohazuk121', '2010-12-09', 'kudohazuk', '2019-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS129806908887', 'Elaine Martin', 1, '+81 74-800-8130', 2, '324604584571448798', '日本ならし学園南三丁目9番18号11階', '1989-03-05', 0, 0, 'martinelai', '2013-07-21', 'marel107', '2007-03-17'); -INSERT INTO "public"."userinfo" VALUES ('TS895968194590', '郭秀英', 1, '+86 755-4298-5809', 2, '293355057152447996', '中国深圳罗湖区蔡屋围深南东路39号15栋', '1985-04-04', 0, 0, 'guoxiuying', '2018-08-06', 'xiuyingg4', '2015-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS571652057418', '翁浩然', 1, '+81 70-1064-9888', 2, '946617295138705487', '日本東京品川区東五反田五丁目2番9号22階', '1992-05-19', 0, 0, 'hoyin6', '2011-05-26', 'yung1118', '2020-08-22'); -INSERT INTO "public"."userinfo" VALUES ('TS693129434114', '古裕玲', 1, '+81 3-9486-8345', 1, '921539600485762212', '日本東京港区東新橋一丁目5番19号14階', '1997-07-07', 0, 0, 'yuling2', '2004-02-10', 'yulingku', '2021-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS315047786999', '陳天樂', 0, '+81 66-763-8997', 1, '096429708199384601', 'Rm. 29, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1991-01-10', 0, 0, 'tinlokchan326', '2007-03-31', 'chtl', '2020-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS192577247639', 'Margaret Morgan', 0, '+1 213-744-0110', 2, '758829736101539129', '771 S Broadway Apartment 44, Los Angeles, CA 90015, United States', '1986-02-18', 0, 0, 'morganmargaret', '2000-03-09', 'marm9', '2000-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS951014571265', '姜詩涵', 1, '+81 66-213-3269', 3, '591418856722338584', '20-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-01-24', 0, 0, 'shihanjia', '2017-12-24', 'shihanj', '2018-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS445335042713', 'Kelly Hill', 0, '+1 213-976-1417', 2, '627949776070027338', '522 Alameda Street Apartment 34, Los Angeles, CA 90002, United States', '1992-07-25', 0, 0, 'kelly228', '2014-10-26', 'kellyhi', '2018-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS960521988743', '邱德華', 1, '+86 142-3978-3028', 4, '192815035473408758', '中国成都市成华区二仙桥东三路357号28栋', '1987-09-18', 0, 0, 'yautw2', '2018-11-10', 'ytw1116', '2020-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS532866600073', '高子异', 1, '+1 718-039-4916', 0, '089987291296475066', '764 Bergen St Apt 4, Brooklyn, NY 11217, United States', '1996-04-19', 0, 0, 'zig7', '2012-07-09', 'zg422', '2011-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS898706099729', '菊地翼', 0, '+44 7193 782057', 3, '829581094367893819', 'Unit 44, Oxford Eco Centre, 596 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-02-04', 0, 0, 'tsubakikuchi10', '2000-05-12', 'kitsubasa9', '2020-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS235062856170', '山下光莉', 1, '+81 66-389-4224', 3, '596508623313837215', 'Rm. 50, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-06-21', 0, 0, 'yhikari8', '2007-06-29', 'hyamashita1', '2020-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS985233200502', 'Anthony Gutierrez', 1, '+86 192-1312-5216', 2, '364062987133707357', '中国上海市黄浦区淮海中路815号华润大厦15室', '1992-01-18', 0, 0, 'gutierreza214', '2012-07-11', 'gutierrezant601', '2015-07-06'); -INSERT INTO "public"."userinfo" VALUES ('TS547941586590', '邹致远', 0, '+86 769-080-0655', 1, '245602822437222860', '中国东莞坑美十五巷308号14室', '1992-04-07', 0, 0, 'zhiyuanzou208', '2007-09-05', 'zhiyuanzo47', '2019-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS257865368026', 'Timothy Turner', 1, '+86 21-7114-1946', 4, '137473031451333510', '中国上海市徐汇区虹桥路924号50楼', '1996-11-10', 0, 0, 'ttim', '2005-04-15', 'turner129', '2002-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS572350057838', 'Lillian Rogers', 1, '+86 164-8638-8464', 2, '859271340061524715', '中国成都市锦江区红星路三段823号华润大厦34室', '1985-12-02', 0, 0, 'roglill', '2012-03-23', 'rogli', '2015-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS155883323004', '丁詩涵', 0, '+81 90-6049-6603', 3, '056354717496233285', '24F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-12-06', 0, 0, 'shiding', '2015-05-13', 'shihadin', '2008-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS736466997118', '杉山一輝', 0, '+86 755-512-0902', 3, '990025741811945692', 'No.28 building, 296 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-09-17', 0, 0, 'sugiyama10', '2016-10-03', 'iksugiyama', '2005-01-19'); -INSERT INTO "public"."userinfo" VALUES ('TS041801122698', '田中陽太', 1, '+86 176-0901-0439', 2, '496424786957012607', '2F, 28 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-07-25', 0, 0, 'tay', '2000-05-09', 'tanakayota', '2000-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS257490970567', '萬家輝', 0, '+86 164-9993-3872', 0, '552819358196337382', 'Room 40, CR Building, 478 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-02-19', 0, 0, 'kafaimeng', '2010-05-18', 'kfmeng410', '2002-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS530751448372', '中川湊', 0, '+81 74-103-8983', 2, '543595014002952030', 'Rm. 12, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-05-04', 0, 0, 'nakagminato130', '2014-07-30', 'nakagawa3', '2005-10-01'); -INSERT INTO "public"."userinfo" VALUES ('TS702868027779', 'Kelly Gardner', 0, '+81 52-178-4825', 3, '970652413890782897', '日本なごやし北区清水三丁目19番17号22階', '1987-11-20', 0, 0, 'kelly2', '2004-06-15', 'gardnke', '2010-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS709780720943', '傅晓明', 1, '+81 74-969-9637', 1, '448763064363605798', '日本ならし西大寺赤田町一丁目7番5号47階', '1986-04-06', 0, 0, 'xf74', '2006-12-06', 'xfu', '2015-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS926135912270', 'John Baker', 0, '+86 20-2106-3471', 1, '748041845667375630', 'Room 43, CR Building, 437 Jiangnan West Road, Haizhu District, Guangzhou, China', '1988-08-15', 0, 0, 'bakerjo', '2018-11-28', 'bakejohn', '2019-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS761820045222', '戴惠妹', 0, '+86 134-1590-3223', 3, '620234337193415671', 'No.14 building, 69 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-01-08', 0, 0, 'hmdai', '2007-01-01', 'dai1214', '2016-04-12'); -INSERT INTO "public"."userinfo" VALUES ('TS651951901903', '前田美緒', 1, '+1 718-600-4336', 2, '548645276670273949', '976 1st Ave Apartment 16, Brooklyn, NY 11220, United States', '1988-12-18', 0, 0, 'maedmi1', '2007-08-09', 'maeda2', '2016-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS318495050220', '藤梓軒', 1, '+86 155-2723-3351', 3, '355713340210258600', 'No.41 building, 653 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-07-16', 0, 0, 'tszhin1991', '2019-08-18', 'tszhint2003', '2012-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS647492806596', '戚朝偉', 0, '+86 135-3574-2119', 2, '920482774158234726', '中国成都市锦江区人民南路四段950号22室', '1995-05-17', 0, 0, 'cchiuwai', '2010-12-25', 'chiuwai10', '2010-09-11'); -INSERT INTO "public"."userinfo" VALUES ('TS194100634473', '小山優奈', 1, '+81 3-9277-3273', 3, '403760272039911544', '日本東京渋谷区代々木二丁目3番8号41階', '1986-02-20', 0, 0, 'yunkoyama6', '2007-07-04', 'yunakoyama', '2003-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS154704031116', '坂本明菜', 1, '+44 (121) 588 2575', 3, '166909017978080234', 'Unit 46, Oxford Eco Centre, 446 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1998-01-26', 0, 0, 'sakamoto08', '2016-03-15', 'sakamoto114', '2014-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS600671317926', '黄宇宁', 1, '+81 80-7140-4696', 1, '684413968718334246', '16F, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1994-04-07', 0, 0, 'huangy40', '2010-02-26', 'yuningh', '2009-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS657412935053', 'Thelma Perry', 1, '+44 (116) 287 0484', 0, '866860599984091897', 'No.9 Main building, 91 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1989-09-29', 0, 0, 'thelmaperr', '2008-06-26', 'thelmaperr', '2006-04-07'); -INSERT INTO "public"."userinfo" VALUES ('TS529648755419', 'Bonnie Washington', 0, '+1 312-930-5397', 0, '233347477892692077', '735 Pedway 3rd Floor, Chicago, IL 60601, United States', '1988-12-06', 0, 0, 'bonnie50', '2004-02-03', 'washingtonbonnie', '2014-01-04'); -INSERT INTO "public"."userinfo" VALUES ('TS081180792554', '小野湊', 1, '+81 80-8330-6946', 0, '560241481500215651', '49-kai, 3-9-3 Gakuenminami, Nara, Japan', '1995-04-11', 0, 0, 'onomi', '2018-11-15', 'onminato3', '2010-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS477759841507', '江梓晴', 0, '+44 5202 231391', 2, '610602782838359487', 'No.13 Main building, 80 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-05-16', 0, 0, 'kongtszching9', '2003-01-28', 'tszchingko', '2013-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS314361856684', '竹内結翔', 0, '+1 212-123-7937', 3, '067125721537837225', '230 Wooster Street Suite 19, New York, NY 10012, United States', '1996-06-25', 0, 0, 'takeuchi709', '2016-11-25', 'yuitota', '2005-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS896819537453', 'Brian Sanchez', 1, '+81 70-8474-8977', 4, '857335624244843391', '日本札幌清田区真栄四条五丁目19番9号39号室', '1992-02-09', 0, 0, 'sanchez2', '2004-11-04', 'brian4', '2016-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS604606466382', '小林樹', 1, '+44 (151) 904 4490', 4, '449740640027846779', 'No.14 Main building, 888 Redfern St, Liverpool, L20 8JB, United Kingdom', '1993-11-19', 0, 0, 'itsuki1952', '2012-04-01', 'kitsuki', '2014-09-19'); -INSERT INTO "public"."userinfo" VALUES ('TS198925569517', '阮裕玲', 1, '+86 21-295-0221', 4, '888226936060092838', '中国上海市黄浦区淮海中路227号华润大厦42室', '1995-01-19', 0, 0, 'yulingyuen', '2019-11-09', 'yueyuling4', '2016-09-26'); -INSERT INTO "public"."userinfo" VALUES ('TS483534235921', 'Samuel Boyd', 0, '+81 70-8473-3887', 0, '389703321375178688', '日本札幌厚別区上野幌一条二丁目1番13号37号室', '1994-01-08', 0, 0, 'sboy', '2003-02-06', 'samueb', '2019-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS911228365671', '孟詩涵', 0, '+86 141-2376-9647', 2, '740090200017482753', '中国广州市白云区机场路棠苑街五巷286号6楼', '1998-08-30', 0, 0, 'sm5', '2016-05-13', 'meng92', '2000-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS103448641440', '梅榮發', 1, '+86 190-8577-4172', 2, '087185832012468635', 'No.9 building, 661 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-05-10', 0, 0, 'muiwf', '2010-11-10', 'muwf', '2000-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS115789434446', '邵安琪', 0, '+44 (116) 466 3946', 1, '211314397335045758', 'Unit 34, Oxford Eco Centre, 547 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-12-14', 0, 0, 'ans', '2011-04-07', 'shao12', '2000-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS195162418608', '谢璐', 0, '+86 155-1377-5725', 2, '236868344023902652', '中国中山天河区大信商圈大信南路228号24号楼', '1988-12-22', 0, 0, 'xiel911', '2008-05-26', 'xielu', '2014-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS273716055464', '木下涼太', 0, '+81 74-978-6853', 0, '676347180711527484', '8-kai, 3-9-12 Gakuenminami, Nara, Japan', '1989-09-23', 0, 0, 'kryota', '2016-08-22', 'kiryota4', '2016-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS255533212358', '應浩然', 1, '+86 28-2037-2225', 1, '615367009716137803', '中国成都市成华区玉双路6号575号23栋', '1994-04-17', 0, 0, 'yinhoyi', '2009-10-12', 'hyying', '2007-11-03'); -INSERT INTO "public"."userinfo" VALUES ('TS729066467426', 'Philip Diaz', 0, '+81 66-493-2654', 2, '824392078596248230', 'Rm. 26, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-11-13', 0, 0, 'philip6', '2014-02-12', 'diazphili', '2017-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS314024692800', '工藤美月', 0, '+44 5134 936445', 0, '496344071158361690', 'Block 12, 534 Portland St, Manchester, M1 3LA, United Kingdom', '1989-03-02', 0, 0, 'kudmi', '2016-03-08', 'mitsukikudo2', '2003-07-07'); -INSERT INTO "public"."userinfo" VALUES ('TS351912268441', 'Kathleen Morales', 0, '+86 10-835-3210', 4, '437075858419851564', '中国北京市西城区西長安街134号48室', '1998-03-21', 0, 0, 'kathlmo', '2001-02-02', 'morales406', '2003-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS310880294265', '潘嘉伦', 0, '+86 10-3106-4806', 0, '859175317314769598', '中国北京市東城区東直門內大街675号41楼', '1995-02-14', 0, 0, 'jiapa', '2002-04-21', 'jialunpan2008', '2012-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS744599152177', '韩云熙', 0, '+81 11-091-6391', 3, '355042707876787932', '日本札幌清田区真栄四条五丁目19番2号47階', '1987-07-29', 0, 0, 'yunxi8', '2010-05-30', 'yunxihan2', '2019-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS490084614356', 'Curtis Owens', 0, '+44 7738 954884', 2, '518723595627143957', 'Unit 5, Oxford Eco Centre, 194 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-09-02', 0, 0, 'curtisow1213', '2001-01-21', 'curtisowens', '2018-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS384855293463', 'Amanda Salazar', 0, '+1 614-720-0824', 2, '742385495417443730', '947 East Alley Apartment 12, Columbus, GA 43201, United States', '1997-02-02', 0, 0, 'samanda329', '2003-04-23', 'salazaramanda', '2000-07-23'); -INSERT INTO "public"."userinfo" VALUES ('TS023969645284', 'Todd Watson', 1, '+44 7293 310712', 1, '270471464341671095', 'No.39 Main building, 362 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-09-16', 0, 0, 'watson5', '2012-12-07', 'towatson', '2011-09-09'); -INSERT INTO "public"."userinfo" VALUES ('TS383490353480', 'Lillian Woods', 0, '+81 52-905-7801', 4, '673791037377992478', '日本なごやし北区楠味鋺三丁目80番17号2号室', '1990-11-29', 0, 0, 'lwoo', '2014-11-08', 'wli', '2007-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS490465326690', '薛世榮', 1, '+86 755-3204-5584', 4, '844444468226693723', 'No.30 building, 409 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-11-07', 0, 0, 'swsit', '2016-05-26', 'saiwingsit3', '2002-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS031175400836', '譚杰倫', 0, '+81 74-565-0594', 4, '800548696928644938', '50F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1992-08-27', 0, 0, 'tam41', '2007-12-10', 'tamchiehlun6', '2018-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS930752807701', '雷潤發', 0, '+1 213-398-2076', 1, '092974257527237995', '284 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1994-07-01', 0, 0, 'yfloui7', '2021-04-25', 'yfloui98', '2015-06-22'); -INSERT INTO "public"."userinfo" VALUES ('TS233797705297', '沈宇宁', 1, '+81 11-328-3343', 1, '049865931575568222', '日本札幌厚別区上野幌一条二丁目1番8号36階', '1990-08-25', 0, 0, 'shenyuning', '2007-07-03', 'yuninshen', '2001-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS496933087397', '陶玲玲', 0, '+81 66-079-4503', 1, '471517347104428833', '26-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1997-11-06', 0, 0, 'talingling', '2009-07-19', 'linglingtao9', '2020-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS813033688882', '江杰宏', 0, '+86 185-8151-1610', 0, '979285600583782757', '中国深圳罗湖区蔡屋围深南东路447号20栋', '1989-07-24', 0, 0, 'jiehong8', '2015-09-24', 'jiangjiehong', '2007-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS142820934003', '韓富城', 1, '+44 7762 651107', 2, '468242041264387442', 'Flat 35, 589 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-03-19', 0, 0, 'fushingha708', '2006-08-29', 'fush76', '2004-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS625118160927', '韩杰宏', 0, '+81 66-137-7586', 4, '930453782896313005', 'Rm. 6, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-05-11', 0, 0, 'jiehhan731', '2012-07-20', 'hanjiehong617', '2018-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS273400800412', '萧致远', 0, '+1 312-247-2910', 2, '041996334696785527', '818 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-03-04', 0, 0, 'xiaozhiyuan630', '2003-03-04', 'zhiyuan67', '2011-08-18'); -INSERT INTO "public"."userinfo" VALUES ('TS930003918766', '周致远', 0, '+81 90-5941-1325', 3, '911264175064978140', 'Rm. 1, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-05-31', 0, 0, 'zhouzhiyuan218', '2014-08-29', 'zzhi', '2016-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS295749947795', 'Juan Perez', 1, '+44 (151) 703 8381', 1, '273248894468523311', 'Unit 41, Oxford Eco Centre, 654 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-03-27', 0, 0, 'perjuan', '2018-05-03', 'pj96', '2019-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS670612873040', '周璐', 1, '+81 11-408-8042', 2, '123992801848981232', '日本札幌白石区菊水三条五丁目4番16号5階', '1993-07-18', 0, 0, 'zhoulu1989', '2014-06-30', 'zhou7', '2004-12-29'); -INSERT INTO "public"."userinfo" VALUES ('TS472018471616', '向岚', 0, '+81 11-850-9105', 0, '329558417619725503', '30F, 5-4-5 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-01-23', 0, 0, 'xiangla1', '2019-02-08', 'lanxiang77', '2014-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS942190150116', '胡家輝', 1, '+86 21-028-0931', 0, '899266113942480576', '50F, 135 Jianxiang Rd, Pudong, Shanghai, China', '1995-07-04', 0, 0, 'wukf4', '2000-06-09', 'kfw', '2002-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS544824745305', '侯杰宏', 1, '+86 755-8844-7282', 1, '094369225716213486', 'No.11 building, 782 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-06-22', 0, 0, 'houjiehong8', '2005-11-01', 'jiehongho', '2008-12-17'); -INSERT INTO "public"."userinfo" VALUES ('TS225136945524', '郝詩涵', 0, '+1 212-514-3992', 3, '926940361511116007', '467 Canal Street 3rd Floor, New York, NY 10013, United States', '1986-04-08', 0, 0, 'hao78', '2004-12-18', 'sh1213', '2010-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS753435456557', 'Juanita Schmidt', 0, '+86 153-8729-3731', 1, '315830992097090544', '42F, 78 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-01-18', 0, 0, 'schmidt10', '2003-11-11', 'juanitaschmidt93', '2021-07-05'); -INSERT INTO "public"."userinfo" VALUES ('TS504398541192', '桜井樹', 0, '+1 718-667-9411', 3, '152582766940930007', '582 1st Ave Apt 3, Brooklyn, NY 11220, United States', '1985-09-10', 0, 0, 'sakuraii', '2003-04-09', 'sakuitsuk1110', '2019-02-08'); -INSERT INTO "public"."userinfo" VALUES ('TS927498977322', 'John Gordon', 1, '+81 3-5641-7714', 0, '162756777702762205', '10F, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1992-07-27', 0, 0, 'gordonjohn', '2012-09-22', 'john7', '2005-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS851089363106', '秦睿', 0, '+86 28-097-1841', 3, '851432154807705807', '中国成都市锦江区人民南路四段662号1室', '1992-11-17', 0, 0, 'rui93', '2013-11-10', 'qrui65', '2018-04-20'); -INSERT INTO "public"."userinfo" VALUES ('TS068861752791', '薛安琪', 0, '+86 769-282-4645', 2, '680886736592979994', '中国东莞东泰五街205号8楼', '1990-01-20', 0, 0, 'xuea', '2011-09-02', 'xuea', '2003-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS352311962318', '張國賢', 1, '+81 90-5283-7807', 1, '233083812599458218', '36-kai, 5-2-4 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-08-26', 0, 0, 'kwokyinche', '2017-12-07', 'cheunkwokyin66', '2004-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS046503240576', '福田和真', 0, '+1 330-256-0921', 2, '782036668185013679', '774 Fern Street Apartment 12, Akron, OH 44307, United States', '1989-02-05', 0, 0, 'kazumfuk1205', '2020-10-20', 'kazuma1206', '2004-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS616404903619', '中村桜', 1, '+86 198-6239-9681', 1, '550362028901764238', '中国上海市浦东新区健祥路507号46室', '1993-04-15', 0, 0, 'naksaku', '2000-10-31', 'nasa', '2017-05-18'); -INSERT INTO "public"."userinfo" VALUES ('TS700928746320', 'Jonathan Chavez', 0, '+86 195-2448-2015', 0, '816282076017701683', '中国成都市成华区二仙桥东三路339号9楼', '1990-04-07', 0, 0, 'jonathan6', '2019-07-06', 'chavezjona', '2019-01-07'); -INSERT INTO "public"."userinfo" VALUES ('TS499010109722', '戴震南', 0, '+81 70-5825-5218', 1, '398489134247557085', '日本東京渋谷区代々木二丁目3番11号45階', '1985-03-05', 0, 0, 'dazhen906', '2018-04-26', 'daizhen78', '2017-03-06'); -INSERT INTO "public"."userinfo" VALUES ('TS187446107016', '熊詩涵', 1, '+1 212-204-8742', 2, '773523342164103248', '613 Bank Street Apt 39, New York, NY 10014, United States', '1990-05-21', 0, 0, 'sxion', '2014-01-02', 'shix1995', '2001-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS084256885095', '谭杰宏', 0, '+44 5694 298357', 3, '626359549544868237', 'Block 6, 864 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-10-14', 0, 0, 'jiehongt', '2015-08-14', 'jiehongta47', '2019-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS381334141786', '譚詩君', 1, '+86 136-5329-8360', 1, '554913971264014233', '中国广州市海珠区江南西路897号1号楼', '1994-03-21', 0, 0, 'szekta', '2013-06-04', 'szekwantam', '2012-03-12'); -INSERT INTO "public"."userinfo" VALUES ('TS909360931582', 'Ryan Davis', 1, '+81 74-476-8889', 3, '511673637131233523', 'Rm. 44, 3-9-11 Gakuenminami, Nara, Japan', '1999-01-11', 0, 0, 'davisryan125', '2017-03-29', 'davis1972', '2011-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS900113825276', '田志明', 0, '+44 (1865) 37 6336', 1, '659227108077371962', 'Flat 1, 356 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-04-06', 0, 0, 'tchiming', '2020-03-03', 'cmtin07', '2006-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS628018623332', 'Julie Long', 1, '+86 769-0058-9127', 1, '953728389681397649', '中国东莞东泰五街38号华润大厦7室', '1989-11-28', 0, 0, 'julilon', '2009-12-02', 'longj', '2003-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS975594334837', '毛朝偉', 0, '+86 149-1247-1479', 3, '971620621990154544', 'No.41 building, 99 Shennan Ave, Futian District, Shenzhen, China', '1997-09-17', 0, 0, 'mocw', '2002-01-14', 'chiuwaimo', '2008-05-16'); -INSERT INTO "public"."userinfo" VALUES ('TS181777069676', '向安琪', 1, '+86 148-0760-9642', 4, '751145938073454345', '7F, 489 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1998-07-13', 0, 0, 'anqi908', '2003-08-27', 'anqixiang18', '2006-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS879695345141', '橋本光莉', 0, '+81 90-4811-7822', 1, '860187093271612121', '日本東京港区東新橋一丁目5番15号5号室', '1991-02-02', 0, 0, 'hikarihashimoto', '2016-03-16', 'hashimotohikari', '2012-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS333480828970', '李嘉伦', 1, '+86 139-4201-0674', 0, '466084480590209039', '中国广州市天河区天河路232号华润大厦45室', '1999-01-13', 0, 0, 'li4', '2019-06-20', 'lij5', '2016-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS738086609445', '中村美緒', 1, '+86 165-9076-3415', 4, '347187118690248307', 'No.19 building, 226 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-02-17', 0, 0, 'mionakamura', '2019-09-25', 'mionakamura', '2020-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS342863167910', '清水彩乃', 0, '+81 3-0174-9214', 2, '127021636802048712', '日本東京千代田区丸の内一丁目6番1号25階', '1997-03-16', 0, 0, 'shiayano730', '2007-12-22', 'shimayano2014', '2005-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS890044707748', '山田玲奈', 0, '+81 11-168-4887', 4, '793459840622846894', '日本札幌厚別区上野幌一条二丁目1番8号15階', '1991-04-30', 0, 0, 'yamadar', '2014-04-11', 'yamada10', '2013-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS158252782146', '山口玲奈', 0, '+86 10-0909-8008', 4, '034357480047164270', 'No.38 building, 801 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-06-10', 0, 0, 'yamaguchi55', '2013-09-24', 'yrena', '2011-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS603765045531', '鄧慧儀', 1, '+1 212-984-2637', 2, '975149649730703992', '829 Bank Street Apartment 25, New York, NY 10014, United States', '1993-09-24', 0, 0, 'wyt1', '2012-02-17', 'waiyeetang', '2006-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS326118064353', 'Amanda Black', 1, '+81 70-4014-8619', 2, '870416510820764175', '日本なごやし熱田区千年二丁目5番17号10階', '1996-05-07', 0, 0, 'amanda8', '2001-02-13', 'amandabla51', '2016-12-03'); -INSERT INTO "public"."userinfo" VALUES ('TS195189526374', '邱祖兒', 0, '+44 (161) 161 0026', 4, '724225972384449502', 'Unit 13, Oxford Eco Centre, 9 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-10-03', 0, 0, 'yaucy', '2014-01-09', 'yachoyee', '2015-02-06'); -INSERT INTO "public"."userinfo" VALUES ('TS141045132911', '千葉陸', 1, '+86 760-6334-9533', 2, '142671070780188904', 'No.7 building, 799 Lefeng 6th Rd, Zhongshan, China', '1995-05-30', 0, 0, 'chibari3', '2020-12-03', 'chibriku1129', '2004-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS651839865149', '田中明菜', 1, '+44 5614 651348', 2, '340154656256416694', 'Flat 13, 772 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-04-17', 0, 0, 'akinatana2', '2017-10-23', 'taa', '2021-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS383355504049', '于晓明', 0, '+1 212-931-7726', 1, '273110436167934703', '728 Bank Street Apartment 10, New York, NY 10014, United States', '1986-06-15', 0, 0, 'yxiaoming', '2019-08-26', 'xyu', '2011-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS426554705395', '余致远', 1, '+81 3-8284-1844', 2, '031451367986658691', '日本東京品川区東五反田五丁目2番2号10階', '1997-03-05', 0, 0, 'yuzhiyuan', '2008-04-15', 'zhiyuanyu4', '2006-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS934494201787', '唐杰宏', 1, '+44 (20) 8623 9306', 2, '664107885326823830', 'Unit 34, Oxford Eco Centre, 829 Hanover Street, London, W1S 1YD, United Kingdom', '1995-03-02', 0, 0, 'tjiehong', '2013-10-29', 'jiehongtang', '2005-09-04'); -INSERT INTO "public"."userinfo" VALUES ('TS270753263442', '孙詩涵', 1, '+81 11-729-2150', 1, '557063784873652194', '50F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-03', 0, 0, 'ssun69', '2009-03-31', 'shihansun', '2012-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS661186337781', '中野悠人', 0, '+1 718-659-9928', 1, '711361177839438220', '795 Flatbush Ave Apartment 9, Brooklyn, NY 11225, United States', '1988-09-06', 0, 0, 'yutn', '2006-04-18', 'yutnaka', '2017-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS244959616470', 'Diana Turner', 0, '+81 11-689-3655', 3, '657865234738498894', '3F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-11-30', 0, 0, 'turndi4', '2004-02-09', 'turner5', '2007-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS184219585520', '韓嘉欣', 1, '+86 153-7447-6984', 2, '568941858203819748', '中国成都市成华区玉双路6号351号12号楼', '1986-01-31', 0, 0, 'karyha', '2017-02-14', 'han3', '2011-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS346338627360', '田村優奈', 0, '+44 7512 316253', 4, '704229740196063597', 'Unit 38, Oxford Eco Centre, 142 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-03-31', 0, 0, 'yunat1989', '2000-08-28', 'tyuna1954', '2010-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS063603838018', '吳俊宇', 1, '+86 183-5537-1306', 1, '155597687132458833', 'No.22 building, 959 Ganlan Rd, Pudong, Shanghai, China', '1996-04-19', 0, 0, 'ncy', '2006-08-05', 'chunyung110', '2003-01-20'); -INSERT INTO "public"."userinfo" VALUES ('TS293039465052', 'Sarah James', 1, '+1 213-589-7261', 4, '642808360441752640', '421 Wall Street Apartment 46, Los Angeles, CA 90003, United States', '1994-02-19', 0, 0, 'jamesarah4', '2021-03-22', 'sarahjames', '2012-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS910076875088', '萧震南', 0, '+86 135-7614-5330', 3, '893450692536863752', '中国北京市東城区東直門內大街992号48号楼', '1991-05-17', 0, 0, 'zxia414', '2011-03-10', 'xiaozhennan', '2014-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS103262907854', '馬榮發', 1, '+81 52-644-0267', 3, '699557738135226185', '38F, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-05-16', 0, 0, 'wfma4', '2004-06-28', 'mawingfat', '2018-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS455715561878', '鄧安娜', 0, '+81 11-154-2247', 2, '868546986144718727', 'Rm. 9, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1989-09-30', 0, 0, 'tangon327', '2000-05-30', 'onnata1', '2009-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS365532335339', '任國賢', 0, '+86 21-8593-0337', 4, '735101206730559421', 'No.46 building, 924 Jianxiang Rd, Pudong, Shanghai, China', '1990-08-30', 0, 0, 'kwokyyam10', '2019-07-22', 'kwokyinyam', '2015-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS122959721880', '遠藤健太', 1, '+1 718-414-1376', 3, '981997092735349082', '581 Flatbush Ave Apartment 5, Brooklyn, NY 11225, United States', '1991-02-22', 0, 0, 'kenta908', '2006-10-10', 'kenta1214', '2022-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS074076325485', 'Ruth Howard', 0, '+86 28-967-4489', 1, '858176892862970583', '12F, No. 267, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-04-03', 0, 0, 'howard604', '2006-10-31', 'howard118', '2015-08-01'); -INSERT INTO "public"."userinfo" VALUES ('TS425512772453', '吕晓明', 0, '+44 5256 893813', 1, '103479572692935117', 'Block 9, 185 Hanover Street, London, W1S 1YD, United Kingdom', '1995-10-15', 0, 0, 'lux', '2006-01-15', 'lx601', '2021-12-05'); -INSERT INTO "public"."userinfo" VALUES ('TS630246886124', '劉浩然', 0, '+81 80-2000-6952', 4, '201743687771450099', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1990-12-17', 0, 0, 'hoyinla624', '2020-10-12', 'lhoyin', '2011-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS767663983606', '罗子异', 0, '+81 3-1620-2364', 1, '308809785062435859', '41-kai, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-09-18', 0, 0, 'luz', '2003-05-12', 'lziyi', '2009-03-31'); -INSERT INTO "public"."userinfo" VALUES ('TS046554113733', '韩云熙', 1, '+1 312-885-0749', 1, '793243273480111876', '56 Pedway Suite 1, Chicago, IL 60601, United States', '1988-10-11', 0, 0, 'yhan10', '2003-09-30', 'hayunxi', '2005-11-16'); -INSERT INTO "public"."userinfo" VALUES ('TS182619070782', '斉藤海斗', 1, '+86 194-8764-8920', 3, '429381710903959296', '中国中山乐丰六路391号40室', '1990-06-12', 0, 0, 'kaito10', '2000-01-10', 'saitokai620', '2015-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS256673491450', 'Jacqueline Rose', 0, '+81 74-133-6289', 2, '461624823344857554', '47F, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1994-08-04', 0, 0, 'rjacqueline10', '2006-02-26', 'rose517', '2015-05-01'); -INSERT INTO "public"."userinfo" VALUES ('TS080662000809', '宋睿', 1, '+1 212-479-7086', 1, '176365904445426655', '392 Wooster Street Suite 46, New York, NY 10012, United States', '1990-07-19', 0, 0, 'song1227', '2010-06-08', 'srui', '2004-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS055201198626', '廖杰宏', 0, '+86 193-4745-2808', 4, '945886381017875207', '44F, 497 Tianhe Road, Tianhe District, Guangzhou, China', '1987-10-08', 0, 0, 'jili', '2006-08-02', 'jiehong40', '2010-04-01'); -INSERT INTO "public"."userinfo" VALUES ('TS555729566184', '毛小慧', 1, '+81 74-470-6249', 3, '651650009286447330', '5-kai, 1-7-9 Saidaiji Akodacho, Nara, Japan', '1996-07-03', 0, 0, 'simo', '2010-01-13', 'mo703', '2020-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS681312356357', 'Vincent Hayes', 1, '+81 70-0558-5866', 3, '518420918709585008', '日本札幌白石区菊水三条五丁目2番14号36階', '1998-02-18', 0, 0, 'hayesv', '2005-01-27', 'vincehayes', '2012-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS161476236685', '潘安琪', 1, '+81 74-452-3156', 3, '404296332644282339', '7F, 16 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-12-12', 0, 0, 'anqipan', '2013-07-04', 'apan', '2002-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS242272047375', 'Ronald Fox', 1, '+86 174-0613-4142', 4, '507866412762259095', '中国中山京华商圈华夏街460号18楼', '1985-07-12', 0, 0, 'rfox', '2012-01-18', 'ronf1954', '2006-04-23'); -INSERT INTO "public"."userinfo" VALUES ('TS775711709427', '袁淑怡', 1, '+44 7148 723310', 0, '852065551410161079', 'Block 29, 79 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-07-04', 0, 0, 'suyue55', '2000-08-17', 'sukyeey', '2012-10-24'); -INSERT INTO "public"."userinfo" VALUES ('TS376273163060', '盧青雲', 1, '+86 10-6871-5684', 4, '136087690735975456', '中国北京市朝阳区三里屯路132号19室', '1990-05-19', 0, 0, 'chingwan1', '2007-12-23', 'chingwanlo', '2013-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS901003920737', '木村涼太', 0, '+81 52-712-1327', 1, '526156244868612308', '6-kai, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1990-12-20', 0, 0, 'ryokimu', '2015-03-18', 'ryotaki', '2009-06-08'); -INSERT INTO "public"."userinfo" VALUES ('TS797648557210', 'Billy Sanders', 0, '+86 157-6678-5718', 3, '649056684255990713', '中国中山紫马岭商圈中山五路520号华润大厦33室', '1995-11-08', 0, 0, 'billy2015', '2016-04-01', 'billysa53', '2011-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS700638347219', '刘安琪', 0, '+86 755-6659-0284', 3, '409174722709199262', 'Room 47, 836 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-08-21', 0, 0, 'aliu', '2003-11-25', 'liua', '2000-02-27'); -INSERT INTO "public"."userinfo" VALUES ('TS478745502462', '任小慧', 1, '+1 614-817-3241', 0, '635365101600274835', '369 Tremont Road Suite 2, Columbus, GA 43212, United States', '1993-01-12', 0, 0, 'yamsiuwai', '2009-11-14', 'yamsiuwai', '2014-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS900748529926', '劉詩君', 0, '+86 139-4993-6159', 1, '326716281566082421', '中国北京市延庆区028县道293号25栋', '1998-12-14', 0, 0, 'lausk9', '2009-05-05', 'sklau', '2018-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS961846488215', '郭晓明', 0, '+86 198-3112-8191', 1, '422398546049628160', 'No.21 building, 45 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1999-02-17', 0, 0, 'xiaoming79', '2014-01-18', 'guoxia91', '2002-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS698787645060', '谭致远', 0, '+81 11-561-4131', 3, '382325940889556267', '日本札幌厚別区上野幌一条二丁目1番1号10階', '1985-08-03', 0, 0, 'zhtan47', '2006-08-30', 'zhiyuantan7', '2004-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS286132418047', '伍家強', 0, '+86 137-2411-2838', 1, '293676602177991133', '中国北京市海淀区清河中街68号270号26室', '1989-01-28', 0, 0, 'ng2', '2001-09-04', 'kakeungng', '2008-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS725743288730', '谷口和真', 1, '+86 21-6599-9351', 0, '492553026188488594', 'No.26 building, 536 Ganlan Rd, Pudong, Shanghai, China', '1991-01-18', 0, 0, 'tkazu', '2015-10-30', 'kazumatani429', '2002-10-16'); -INSERT INTO "public"."userinfo" VALUES ('TS851895873030', '李詩涵', 0, '+81 3-2068-1398', 1, '292588498453032740', '日本東京品川区東五反田五丁目2番7号10階', '1988-01-07', 0, 0, 'lis', '2012-07-10', 'shihal', '2013-11-26'); -INSERT INTO "public"."userinfo" VALUES ('TS387237960455', '蔣杰倫', 1, '+86 199-8274-4064', 2, '852038375121393685', 'No.25 building, 569 Huanqu South Street 2nd Alley, Dongguan, China', '1992-09-04', 0, 0, 'chiehlunch', '2009-05-10', 'chiangcl', '2006-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS972734084877', 'Arthur Campbell', 0, '+81 74-980-3474', 2, '308960861439674676', '日本ならし学園南三丁目9番1号35階', '1991-04-17', 0, 0, 'arthc', '2015-03-15', 'arthur1031', '2016-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS420451651319', '徐杰宏', 0, '+44 (116) 481 0017', 3, '257645050376112616', 'Block 4, 899 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-07-07', 0, 0, 'xujiehong803', '2012-01-16', 'jxu', '2017-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS942151035034', '加藤明菜', 0, '+86 152-5932-6836', 2, '754475461769710948', 'Room 31, CR Building, 937 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-07-14', 0, 0, 'katoakina6', '2021-02-13', 'akina309', '2005-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS060296093399', '孟璐', 1, '+1 718-447-1827', 0, '763518467966601173', '840 1st Ave Apartment 18, Brooklyn, NY 11220, United States', '1990-08-07', 0, 0, 'lumeng', '2016-12-17', 'meng56', '2002-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS850130333632', '傅思妤', 0, '+44 5863 891048', 0, '886433606498463874', 'Block 19, 203 New Street, Birmingham, B2 4DB, United Kingdom', '1994-10-21', 0, 0, 'szeyu16', '2008-07-09', 'fuszeyu', '2005-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS557477378248', 'Teresa Scott', 1, '+86 133-7919-9062', 2, '396351751821006430', '中国北京市西城区复兴门内大街877号16室', '1986-04-17', 0, 0, 'scter10', '2008-09-20', 'teresscot923', '2002-03-02'); -INSERT INTO "public"."userinfo" VALUES ('TS258467787839', '譚明', 0, '+86 21-248-5949', 1, '071807183679680914', '中国上海市浦东新区健祥路890号17栋', '1990-01-11', 0, 0, 'tam83', '2008-09-03', 'mtam', '2006-07-25'); -INSERT INTO "public"."userinfo" VALUES ('TS102684097468', '渡部光莉', 1, '+81 66-082-9362', 4, '732939831120624642', '2F, 4-9-16 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-03-22', 0, 0, 'watanabe1006', '2015-08-16', 'hikwatanabe', '2006-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS060552050246', 'Wendy Long', 0, '+81 3-4557-8063', 3, '397240234636080764', '日本東京中央区銀座三丁目12番5号24階', '1992-04-10', 0, 0, 'wendy87', '2020-09-23', 'wlong1002', '2020-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS721788132390', '朱杰宏', 1, '+86 186-1993-3235', 2, '090852298821360130', '中国上海市黄浦区淮海中路812号华润大厦6室', '1995-12-04', 0, 0, 'jzh', '2015-07-23', 'zhujie', '2003-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS628912220227', 'Stanley Nguyen', 0, '+1 213-378-2778', 3, '780114590848221611', '244 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-06-12', 0, 0, 'nguyen7', '2007-12-02', 'stanleynguy', '2001-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS638374045681', '馬家強', 0, '+44 5805 442801', 1, '874978632500069481', 'Block 20, 521 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1994-04-25', 0, 0, 'kkma412', '2020-11-30', 'kakeungm', '2018-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS467715683693', '徐國賢', 1, '+44 5498 513684', 0, '854482589757096421', 'No.17 Main building, 305 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-12-19', 0, 0, 'tsuiky', '2015-01-02', 'kytsu2', '2014-08-15'); -INSERT INTO "public"."userinfo" VALUES ('TS841361490256', 'Josephine Reyes', 1, '+44 (116) 001 5560', 2, '583267594383106789', 'Block 9, 883 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-01-23', 0, 0, 'josephine5', '2002-04-30', 'rjose', '2020-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS839214130123', '程晓明', 1, '+86 152-5812-3873', 2, '998022293816797633', 'No.27 building, 914 Lefeng 6th Rd, Zhongshan, China', '1996-08-18', 0, 0, 'cx1990', '2015-07-14', 'chexi', '2010-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS599052960656', '孙璐', 1, '+86 179-6274-5198', 3, '885541648029119727', '中国上海市浦东新区橄榄路741号28室', '1986-09-22', 0, 0, 'sunlu', '2001-01-27', 'lusun', '2020-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS125859905570', '岡田大輔', 0, '+44 7444 100113', 1, '494327139488091719', 'Unit 2, Oxford Eco Centre, 680 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-09-05', 0, 0, 'odaisu', '2019-03-18', 'okadadaisuke', '2002-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS072271618554', 'Russell Kelly', 1, '+44 7329 249915', 3, '174326293259954423', 'Block 42, 823 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-11-29', 0, 0, 'rkell', '2015-10-29', 'ker1017', '2000-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS219386905810', '伍慧儀', 1, '+81 80-8032-5001', 3, '292224128548653867', '日本札幌中央区宮の森四条六丁目1番7号46階', '1992-05-23', 0, 0, 'waiyeeng406', '2008-04-05', 'wyng6', '2003-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS980930696425', '佘麗欣', 0, '+86 10-8911-5791', 2, '177340614393347003', '中国北京市房山区岳琉路365号7楼', '1987-09-09', 0, 0, 'sheh48', '2010-01-15', 'slaiyan', '2005-03-30'); -INSERT INTO "public"."userinfo" VALUES ('TS858391002749', '林愛梨', 0, '+86 21-1232-6181', 3, '000601411882203381', 'No.44 building, 23 Jianxiang Rd, Pudong, Shanghai, China', '1990-09-30', 0, 0, 'hayashiairi', '2019-02-13', 'hayasair', '2000-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS305453980786', 'Hazel Smith', 1, '+1 718-516-4845', 2, '376381116698658791', '252 Flatbush Ave Suite 18, Brooklyn, NY 11225, United States', '1992-12-12', 0, 0, 'smithhaze', '2016-02-26', 'hazel7', '2002-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS480076210197', '山崎光', 1, '+86 20-8140-5886', 1, '934821279306887729', '中国广州市白云区小坪东路41号17栋', '1994-09-02', 0, 0, 'yamazakihikaru87', '2005-10-31', 'yamazakih5', '2000-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS360323889164', '中川蓮', 0, '+86 21-9592-4319', 1, '405750592153429896', '中国上海市浦东新区健祥路679号41号楼', '1996-08-17', 0, 0, 'renakagawa', '2002-12-27', 'rennakagawa', '2007-07-02'); -INSERT INTO "public"."userinfo" VALUES ('TS089674569334', 'Heather Henry', 0, '+44 (151) 247 8831', 1, '072402851360146140', 'Block 49, 595 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-03-05', 0, 0, 'hhenry', '2004-08-28', 'henry1', '2005-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS946347995221', '熊睿', 0, '+44 7390 463212', 1, '189491446317335572', 'Flat 50, 1 Pollen Street, London, W1S 1NG, United Kingdom', '1990-06-13', 0, 0, 'xionr7', '2019-01-21', 'xiongru', '2009-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS489204124463', '中山悠人', 0, '+86 183-0183-6959', 2, '664280708737956990', '中国深圳龙岗区布吉镇西环路335号5栋', '1995-12-21', 0, 0, 'nakayama406', '2000-08-17', 'nyu', '2007-12-31'); -INSERT INTO "public"."userinfo" VALUES ('TS662892541916', '官安娜', 0, '+81 66-984-6615', 0, '516786985790897583', '日本おおさかし東住吉区東田辺三丁目27番19号8階', '1990-09-02', 0, 0, 'onnakoon113', '2020-02-05', 'konna', '2018-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS646052958919', '斎藤大輔', 1, '+44 7851 028999', 4, '054843872391396618', 'Flat 34, 753 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-03-09', 0, 0, 'saitdaisu', '2014-02-28', 'sdaisuke3', '2004-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS454533971845', '今井結翔', 0, '+86 21-702-9892', 0, '213753852110312357', '中国上海市黄浦区淮海中路562号华润大厦32室', '1985-03-22', 0, 0, 'yuitoimai', '2018-02-10', 'yuitoimai01', '2000-03-16'); -INSERT INTO "public"."userinfo" VALUES ('TS502086599410', 'Robert Guzman', 1, '+81 80-8758-3070', 2, '875221295391114328', '日本東京渋谷区代々木二丁目3番5号7号室', '1987-08-24', 0, 0, 'robeguzman', '2010-11-17', 'guzman81', '2019-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS550509475125', '傅杰宏', 1, '+44 (151) 470 1255', 4, '418443430119620610', 'Block 43, 476 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-01-10', 0, 0, 'fjiehong2017', '2018-08-21', 'fujie', '2005-06-28'); -INSERT INTO "public"."userinfo" VALUES ('TS688734484399', 'Evelyn Kennedy', 1, '+86 755-499-4365', 1, '554570836133573590', 'No.49 building, 558 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-01-06', 0, 0, 'evkennedy', '2013-07-06', 'evken', '2015-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS871497050304', '車麗欣', 0, '+81 3-9166-0381', 1, '000301586896907887', '39-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-02-19', 0, 0, 'laiyan83', '2003-11-29', 'che2000', '2003-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS966064047405', '羅慧嫻', 0, '+81 70-4077-9168', 2, '991424502986217285', '17F, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-08-24', 0, 0, 'lowh106', '2016-04-20', 'lowh', '2013-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS518875878532', '村上絢斗', 0, '+81 80-6505-8131', 3, '172625867121088608', '13F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-12-19', 0, 0, 'mayat', '2002-05-15', 'mayato1', '2012-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS112144146012', 'Ellen Martinez', 0, '+86 155-8544-3603', 1, '017541075392702143', '中国广州市白云区机场路棠苑街五巷713号34室', '1988-08-25', 0, 0, 'ellen419', '2010-08-13', 'ellenmartinez1952', '2015-09-10'); -INSERT INTO "public"."userinfo" VALUES ('TS348124097534', '藤玲玲', 0, '+81 90-3915-8010', 4, '467800032588296031', '日本札幌清田区真栄四条五丁目19番15号50階', '1990-09-08', 0, 0, 'linglingtang', '2006-01-26', 'lltang', '2020-10-13'); -INSERT INTO "public"."userinfo" VALUES ('TS501292314394', '上田愛梨', 1, '+86 28-8636-6043', 2, '827310157376536720', 'Room 22, CR Building, No.971, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-10-12', 0, 0, 'airiued', '2015-10-28', 'airiue', '2002-12-23'); -INSERT INTO "public"."userinfo" VALUES ('TS888506905264', '龚秀英', 1, '+86 760-002-0036', 2, '296304287964200966', '中国中山乐丰六路869号12栋', '1986-02-04', 0, 0, 'gonxiuying', '2010-11-14', 'xiugong', '2019-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS448252236516', '莫子异', 1, '+86 182-6503-7250', 1, '969941695430161268', 'Room 10, CR Building, No. 849, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-01-24', 0, 0, 'mo09', '2014-12-31', 'ziyim', '2005-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS422989889579', 'Leroy Castillo', 1, '+44 (1223) 09 0762', 2, '271705595728419951', 'Block 35, 524 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-17', 0, 0, 'calero805', '2017-04-01', 'leroycastillo318', '2019-11-15'); -INSERT INTO "public"."userinfo" VALUES ('TS661244938786', '藍家文', 0, '+81 70-5901-8099', 2, '581072108671817906', '日本なごやし守山区瀬古東二丁目171番20号33号室', '1990-12-08', 0, 0, 'lamkama320', '2009-09-10', 'kamlam', '2017-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS237737606401', '陳祖兒', 1, '+1 330-019-5090', 3, '290678822368828525', '913 Fern Street Apt 49, Akron, OH 44307, United States', '1992-04-25', 0, 0, 'chan64', '2005-07-02', 'ccy6', '2002-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS401522230684', 'Louise Long', 0, '+86 755-936-8327', 2, '480664969417077726', '中国深圳罗湖区蔡屋围深南东路261号华润大厦3室', '1990-04-29', 0, 0, 'llong', '2000-03-30', 'll6', '2020-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS452512112447', '野口蒼士', 0, '+86 196-0431-0389', 3, '378887228348175232', 'Room 6, 625 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-08-05', 0, 0, 'aoshin01', '2001-01-27', 'aoshi05', '2004-08-08'); -INSERT INTO "public"."userinfo" VALUES ('TS597429260260', 'Christina Cooper', 1, '+86 196-3634-1859', 1, '894279581301978019', '中国成都市成华区二仙桥东三路111号26室', '1995-03-20', 0, 0, 'coopechristina', '2011-07-05', 'cochristina', '2007-12-25'); -INSERT INTO "public"."userinfo" VALUES ('TS316878219978', '苑慧儀', 0, '+86 191-3484-8773', 0, '178293217673815238', '中国成都市成华区双庆路375号43号楼', '1990-01-18', 0, 0, 'wyyuen', '2007-12-17', 'waiyee91', '2015-09-14'); -INSERT INTO "public"."userinfo" VALUES ('TS093165858281', '吳小慧', 0, '+44 (1223) 36 4021', 2, '584251780031813699', 'Unit 3, Oxford Eco Centre, 710 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-02-05', 0, 0, 'ngsiuwai', '2008-03-23', 'siuwang', '2010-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS096294195788', '佐藤絢斗', 0, '+86 755-5785-5813', 1, '782249512517484051', 'No.40 building, 168 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1990-09-03', 0, 0, 'satoay', '2004-08-12', 'aysato', '2002-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS792962945043', '文惠敏', 1, '+1 614-390-9304', 2, '660904963797274435', '967 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-02-19', 0, 0, 'wmman', '2013-08-02', 'man1961', '2002-01-31'); -INSERT INTO "public"."userinfo" VALUES ('TS082921195248', 'James Jimenez', 1, '+44 5254 699739', 3, '995689208310289674', 'Flat 15, 697 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-05-03', 0, 0, 'jijame', '2019-05-18', 'jimenezjame', '2018-08-07'); -INSERT INTO "public"."userinfo" VALUES ('TS309864610490', '沈睿', 0, '+44 5071 910422', 2, '107208137125184692', 'Block 5, 610 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-09-21', 0, 0, 'rshen05', '2014-05-15', 'rui1962', '2005-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS771302164189', 'Diana Alvarez', 1, '+86 138-1992-3992', 3, '054115067156566154', 'Room 25, 759 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-02-24', 0, 0, 'dianaalv7', '2019-09-11', 'adiana', '2016-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS158992649690', '蕭德華', 1, '+1 213-185-4808', 1, '921986218873736797', '818 Wall Street Apt 23, Los Angeles, CA 90003, United States', '1992-06-23', 0, 0, 'twsiu', '2010-08-27', 'takwahsiu', '2018-06-03'); -INSERT INTO "public"."userinfo" VALUES ('TS047364837624', '遠藤湊', 1, '+81 3-8030-4207', 4, '538006046018662867', '日本東京品川区東五反田五丁目2番10号49階', '1991-07-09', 0, 0, 'endmi', '2006-02-02', 'minatoendo604', '2010-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS759032368897', '林富城', 0, '+86 21-3389-1140', 2, '725546170311087753', '中国上海市黄浦区淮海中路128号36室', '1998-12-27', 0, 0, 'lafs75', '2018-10-30', 'lam98', '2014-11-17'); -INSERT INTO "public"."userinfo" VALUES ('TS856067684941', '邵睿', 1, '+1 213-914-9064', 3, '167426505441002179', '478 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-10-14', 0, 0, 'ruisha', '2000-08-20', 'sharu', '2012-11-02'); -INSERT INTO "public"."userinfo" VALUES ('TS516197914978', '金子葵', 1, '+86 20-459-6568', 4, '877701142780874746', '中国广州市天河区天河路188号28栋', '1997-04-25', 0, 0, 'kao', '2012-06-30', 'aoi2', '2021-01-30'); -INSERT INTO "public"."userinfo" VALUES ('TS937582760997', 'Laura Mills', 0, '+81 80-5428-4233', 3, '331945628284916614', '日本なごやし北区楠味鋺三丁目80番8号45号室', '1999-01-05', 0, 0, 'laumills', '2017-08-02', 'laura120', '2017-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS398405321150', 'Travis Young', 0, '+81 74-353-4718', 2, '466315779751938725', '日本ならし西大寺赤田町一丁目7番1号34階', '1986-11-01', 0, 0, 'young4', '2015-05-02', 'travisyou1203', '2009-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS252755571647', '李嘉伦', 1, '+81 11-425-4644', 2, '455850784289471269', 'Rm. 29, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-09-16', 0, 0, 'jli112', '2000-02-02', 'li8', '2006-01-05'); -INSERT INTO "public"."userinfo" VALUES ('TS551583741466', '上田葉月', 1, '+81 11-946-2837', 1, '850470409311026915', '日本札幌白石区菊水三条五丁目4番2号43階', '1987-01-25', 0, 0, 'uedhazu', '2018-02-25', 'hazu', '2010-09-05'); -INSERT INTO "public"."userinfo" VALUES ('TS837414797296', '中川蒼士', 1, '+86 10-5794-6856', 3, '953477743364844108', 'No.8 building, 873 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-07-26', 0, 0, 'nakagawaa1102', '2019-11-13', 'aoshinak9', '2002-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS756152546911', '佐野涼太', 1, '+81 70-3942-6167', 1, '758863900649406675', '日本ならし西大寺赤田町一丁目7番16号21階', '1996-09-24', 0, 0, 'saryot', '2016-02-07', 'sanoryota530', '2010-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS115150222324', 'Lee Spencer', 0, '+86 165-3358-1756', 3, '297772203096016375', '26F, 228 028 County Rd, Yanqing District, Beijing, China', '1998-08-06', 0, 0, 'leespenc', '2019-09-07', 'splee5', '2003-08-24'); -INSERT INTO "public"."userinfo" VALUES ('TS529680796216', '木下瑛太', 1, '+1 614-579-2467', 1, '200198110380157831', '899 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1993-02-19', 0, 0, 'kinoshitaeit1128', '2014-08-25', 'keita507', '2016-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS399575013062', '内田舞', 1, '+81 70-3716-5168', 2, '650396421869868960', 'Rm. 25, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-05-22', 0, 0, 'uchidamai7', '2006-12-26', 'maiuchida', '2009-05-25'); -INSERT INTO "public"."userinfo" VALUES ('TS051454366081', 'Henry Allen', 0, '+1 614-067-0995', 3, '766353090193671449', '972 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1998-10-31', 0, 0, 'allenh', '2004-07-22', 'henall', '2016-02-05'); -INSERT INTO "public"."userinfo" VALUES ('TS950518328619', 'Theresa Hughes', 0, '+1 838-890-9463', 4, '461336881885948880', '855 Broadway Apt 5, Albany, NY 12207, United States', '1998-08-06', 0, 0, 'huthere', '2014-04-19', 'hughet87', '2014-04-19'); -INSERT INTO "public"."userinfo" VALUES ('TS211052807166', '袁秀英', 0, '+81 52-757-9562', 3, '319953132648267458', '日本なごやし瑞穂区河岸町四丁目20番3号38号室', '1985-02-24', 0, 0, 'yuanx', '2008-01-18', 'yuanxiuying609', '2006-12-26'); -INSERT INTO "public"."userinfo" VALUES ('TS667256050396', '孙宇宁', 1, '+1 213-330-5019', 1, '871548385260686925', '933 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1995-08-04', 0, 0, 'yusun', '2022-01-11', 'suyun229', '2018-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS829150955451', '市川紗良', 0, '+1 213-180-7867', 3, '377866236210637330', '637 Figueroa Street Apartment 15, Los Angeles, CA 90037, United States', '1985-09-20', 0, 0, 'ichisara1111', '2001-08-18', 'sara417', '2009-07-01'); -INSERT INTO "public"."userinfo" VALUES ('TS152302658159', '顧梓晴', 1, '+86 20-932-6057', 1, '957189997538928192', 'No.37 building, 704 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1989-12-10', 0, 0, 'tcku', '2007-01-04', 'tszchingk', '2021-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS211496438881', '黎力申', 1, '+1 330-385-2532', 1, '256581776667259843', '695 Fern Street 3rd Floor, Akron, OH 44307, United States', '1992-08-19', 0, 0, 'lailiksun', '2003-04-03', 'lsla', '2013-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS804757170312', '廖宇宁', 0, '+86 21-1853-7194', 1, '141237391734803146', 'No.45 building, 468 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-06-21', 0, 0, 'yuning46', '2009-11-26', 'yuninglia4', '2000-03-29'); -INSERT INTO "public"."userinfo" VALUES ('TS034488987217', '尹志遠', 1, '+86 140-4341-5378', 3, '855607704629332382', 'No.48 building, 172 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-10-05', 0, 0, 'chiyuen7', '2016-06-24', 'chiyuen5', '2015-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS922796921872', '高田優奈', 0, '+81 52-895-3952', 3, '634049117886574133', '日本なごやし北区清水三丁目19番14号45階', '1988-09-01', 0, 0, 'yunat', '2011-09-08', 'takadayuna2008', '2009-02-13'); -INSERT INTO "public"."userinfo" VALUES ('TS298847370361', '胡安琪', 0, '+86 21-370-6352', 3, '435240045557308575', '中国上海市闵行区宾川路570号21室', '1991-04-09', 0, 0, 'hu1003', '2011-12-22', 'hanqi', '2020-10-15'); -INSERT INTO "public"."userinfo" VALUES ('TS322838932350', '村田明菜', 1, '+86 155-0438-3558', 0, '678072698395544450', '中国北京市西城区西長安街332号45室', '1987-03-28', 0, 0, 'akina612', '2019-10-24', 'akinamurata', '2009-03-08'); -INSERT INTO "public"."userinfo" VALUES ('TS876417001044', 'Wanda Owens', 1, '+1 614-711-2903', 4, '855700742139071265', '776 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1992-09-14', 0, 0, 'wao', '2014-12-06', 'wano', '2000-11-05'); -INSERT INTO "public"."userinfo" VALUES ('TS930182760721', '梅家文', 1, '+81 90-4075-2639', 3, '589217192643412083', '36F, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-01-25', 0, 0, 'mui41', '2018-06-20', 'muikaman107', '2018-11-25'); -INSERT INTO "public"."userinfo" VALUES ('TS824815171849', '郑睿', 1, '+86 760-5997-5336', 0, '063643981208838648', 'Room 17, CR Building, 970 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-08-16', 0, 0, 'zhrui', '2004-06-24', 'rui927', '2002-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS103214882458', 'Carmen Walker', 1, '+1 212-949-4269', 1, '238084946945880406', '615 Canal Street Apt 1, New York, NY 10013, United States', '1993-11-02', 0, 0, 'carmenwalker46', '2020-07-23', 'cwalker', '2015-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS048900734060', 'Edith Sanchez', 1, '+81 90-3597-6806', 2, '773692581732225982', '11-kai, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-11-10', 0, 0, 'esanchez', '2008-05-04', 'sanchezedith', '2007-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS542422620134', '加藤美咲', 1, '+81 3-0926-3915', 1, '242512130119111481', '日本東京港区東新橋一丁目5番20号45階', '1985-01-08', 0, 0, 'kato3', '2009-06-24', 'misakikato', '2010-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS929705612854', '房霆鋒', 1, '+81 3-5045-2136', 4, '867245661843737036', 'Rm. 44, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-06-08', 0, 0, 'fong48', '2013-04-10', 'tingfung48', '2018-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS314177698435', '大野大和', 1, '+81 52-328-2264', 4, '507200461890599398', '日本なごやし北区楠味鋺三丁目80番13号44階', '1992-10-14', 0, 0, 'onoy', '2013-04-09', 'yo115', '2002-06-26'); -INSERT INTO "public"."userinfo" VALUES ('TS598982701874', '毛嘉欣', 0, '+86 193-2517-3101', 4, '676782812779464605', 'No.44 building, 178 Ganlan Rd, Pudong, Shanghai, China', '1997-08-12', 0, 0, 'moky', '2012-08-24', 'moky', '2003-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS775974969437', '苏睿', 1, '+86 190-3286-5112', 2, '489590531849870522', '中国东莞环区南街二巷204号华润大厦50室', '1989-06-04', 0, 0, 'sur1028', '2008-02-08', 'ruisu02', '2010-04-22'); -INSERT INTO "public"."userinfo" VALUES ('TS246993453568', '湯天樂', 1, '+86 161-5812-1152', 2, '360661111776915864', '中国上海市徐汇区虹桥路90号1栋', '1997-02-03', 0, 0, 'tongtl', '2002-10-26', 'ttl', '2009-07-24'); -INSERT INTO "public"."userinfo" VALUES ('TS183140780232', '應家玲', 1, '+81 11-907-4069', 3, '331723957304803884', '8-kai, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-12-18', 0, 0, 'kalingying124', '2019-07-03', 'klying', '2002-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS070536675815', '朱家明', 0, '+86 194-2128-0665', 2, '053708936490848641', '中国中山乐丰六路965号31号楼', '1986-01-06', 0, 0, 'kamingchu', '2000-08-11', 'chu10', '2008-06-17'); -INSERT INTO "public"."userinfo" VALUES ('TS732672735656', 'Debra Sanders', 0, '+81 80-8863-8391', 0, '679681328424645278', '日本東京中央区銀座三丁目12番13号38号室', '1997-03-22', 0, 0, 'debrasa', '2002-04-16', 'debra1104', '2010-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS434744972995', '夏云熙', 1, '+81 90-6425-7893', 0, '211991558360646445', '日本東京中央区銀座三丁目12番2号30階', '1996-01-08', 0, 0, 'xiay', '2003-07-03', 'yunxixia513', '2008-09-03'); -INSERT INTO "public"."userinfo" VALUES ('TS765574048122', 'Mike Dixon', 1, '+44 5523 909636', 1, '622147015642531570', 'No.33 Main building, 296 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-08-14', 0, 0, 'dimike', '2001-08-14', 'dixonmik', '2017-06-19'); -INSERT INTO "public"."userinfo" VALUES ('TS547782250640', '馬淑怡', 0, '+44 (151) 344 8697', 2, '377196563959199686', 'Flat 49, 842 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-06-10', 0, 0, 'masukyee', '2021-07-03', 'masu', '2014-08-23'); -INSERT INTO "public"."userinfo" VALUES ('TS589048347704', '樊浩然', 0, '+1 312-222-2703', 2, '454008725170124669', '925 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1988-10-29', 0, 0, 'fahy69', '2014-05-24', 'fanhy1112', '2002-05-07'); -INSERT INTO "public"."userinfo" VALUES ('TS339913267808', '谷口大輔', 0, '+81 70-4889-8242', 2, '575060558677067845', '29-kai, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-07', 0, 0, 'tdaisuke46', '2000-08-04', 'taniguchidaisuke', '2002-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS770888137105', 'Amanda Simmons', 1, '+1 614-588-1568', 2, '069863358532818497', '31 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1993-02-09', 0, 0, 'simmonsamanda', '2008-05-21', 'amanda3', '2020-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS198426374307', '薛慧琳', 1, '+1 312-830-3605', 4, '171442325280868518', '464 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1987-06-22', 0, 0, 'sitwailam', '2008-09-20', 'wlsit', '2016-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS641057044259', 'Jeffrey Morales', 0, '+44 5024 235463', 1, '619539807808665170', 'No.44 Main building, 900 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-05-19', 0, 0, 'jeffreymorales', '2017-04-14', 'moralesje6', '2009-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS552564941547', '馮志遠', 0, '+44 (121) 728 4386', 1, '765864404216964703', 'Unit 48, Oxford Eco Centre, 808 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-07-20', 0, 0, 'fung04', '2013-04-07', 'fungcy', '2007-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS820838272685', '方震南', 0, '+81 74-127-6335', 0, '381149224146882523', '日本ならし西大寺赤田町一丁目7番5号9階', '1989-08-10', 0, 0, 'fangzhenn', '2019-07-20', 'zhefang', '2020-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS523406248343', 'Shannon Powell', 1, '+86 162-1825-1847', 4, '627672485282320109', '43F, 893 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-05-03', 0, 0, 'powelshannon02', '2018-09-30', 'shannonp', '2003-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS747830050627', 'Shawn Hamilton', 0, '+86 760-4267-3210', 0, '535285943890800281', '中国中山天河区大信商圈大信南路896号27栋', '1989-07-16', 0, 0, 'hams7', '2014-09-04', 'shawnhamilton05', '2010-12-01'); -INSERT INTO "public"."userinfo" VALUES ('TS601079129435', 'Ethel Medina', 0, '+86 180-6816-2333', 1, '498374110712693591', 'No.2 building, 274 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-02-03', 0, 0, 'ethelmedin820', '2009-08-31', 'ethelmedina', '2001-01-27'); -INSERT INTO "public"."userinfo" VALUES ('TS308580196712', '馮發', 0, '+86 755-919-8968', 3, '671314803357504026', '中国深圳罗湖区清水河一路775号39室', '1993-12-06', 0, 0, 'fungfat', '2002-10-01', 'fat7', '2000-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS537254233919', 'Judith Owens', 0, '+44 (20) 0224 6482', 1, '877089220796094379', 'Flat 49, 688 Regent Street, London, W1B 2LX, United Kingdom', '1988-11-29', 0, 0, 'jowens', '2008-03-02', 'judiow78', '2014-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS861531925382', '郝云熙', 1, '+1 614-734-6973', 3, '471647730374949664', '279 East Alley Apartment 20, Columbus, GA 43201, United States', '1995-12-01', 0, 0, 'yunxihao', '2021-11-04', 'hao808', '2011-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS188364291187', '區淑怡', 1, '+81 3-2999-4528', 3, '303277267001720684', '日本東京渋谷区代々木二丁目3番15号18号室', '1989-02-26', 0, 0, 'syau113', '2008-11-30', 'ausukyee427', '2018-11-10'); -INSERT INTO "public"."userinfo" VALUES ('TS989452359378', '官霆鋒', 1, '+86 133-4559-9204', 3, '233463212715995127', 'No.27 building, 295 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-07-22', 0, 0, 'koontf', '2012-01-30', 'tfkoon1943', '2012-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS860106969455', '渡辺翼', 1, '+44 (1865) 89 2881', 2, '191449759284667605', 'No.12 Main building, 87 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1995-12-31', 0, 0, 'st3', '2008-10-05', 'tsubasasato', '2000-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS300390509012', 'Manuel Griffin', 1, '+86 755-5841-2919', 2, '046310149872945323', 'Room 42, 191 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-03-30', 0, 0, 'griffin4', '2020-02-17', 'manuelgriffin', '2008-05-04'); -INSERT INTO "public"."userinfo" VALUES ('TS273763873825', 'Doris Green', 1, '+81 66-864-4343', 1, '966614372969103868', '日本おおさかし西成区出城一丁目1番16号22階', '1998-07-17', 0, 0, 'greendo', '2011-03-29', 'greendo', '2018-04-02'); -INSERT INTO "public"."userinfo" VALUES ('TS283304314588', '官力申', 0, '+86 755-5548-2712', 1, '098144505961393073', '中国深圳福田区深南大道482号43栋', '1988-04-25', 0, 0, 'liksun71', '2015-06-01', 'liksun725', '2001-02-21'); -INSERT INTO "public"."userinfo" VALUES ('TS351145251081', '朱天榮', 0, '+81 80-7786-8941', 0, '741793175709924482', 'Rm. 15, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-06', 0, 0, 'tinwingchu', '2005-11-03', 'twchu2', '2016-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS314420671535', 'Justin Shaw', 0, '+44 5286 222407', 2, '123798893814919896', 'Flat 5, 802 Pollen Street, London, W1S 1NG, United Kingdom', '1990-05-16', 0, 0, 'justins2', '2006-10-01', 'justin1218', '2005-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS348170533619', '邵家輝', 0, '+86 21-2830-5443', 3, '116130294242075368', 'No.18 building, 322 Binchuan Rd, Minhang District, Shanghai, China', '1995-01-27', 0, 0, 'kfs', '2007-03-22', 'kafaisiu', '2009-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS146723108493', '加藤優奈', 1, '+81 70-7832-3777', 1, '618191140697416753', '日本東京渋谷区代々木二丁目3番1号3階', '1985-08-18', 0, 0, 'yunak1', '2011-04-14', 'yunaka1113', '2016-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS489918890381', '姜霆鋒', 0, '+86 20-872-5372', 0, '305645992580294026', '中国广州市天河区天河路366号35栋', '1993-11-07', 0, 0, 'changtf', '2014-02-09', 'tingfungch7', '2007-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS261185326749', '木下花', 0, '+86 131-5854-1357', 1, '803683750598597673', 'No.24 building, 725 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-04-08', 0, 0, 'hanakinoshita', '2010-12-11', 'kinhan', '2010-07-11'); -INSERT INTO "public"."userinfo" VALUES ('TS949049039042', '中島詩乃', 1, '+44 (161) 854 6482', 0, '634228133549721368', 'Block 20, 751 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-01-29', 0, 0, 'sn1942', '2004-05-15', 'nakajima1', '2004-09-13'); -INSERT INTO "public"."userinfo" VALUES ('TS859056659077', '盧潤發', 0, '+81 70-2869-6888', 0, '135228939347453164', 'Rm. 12, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-03-07', 0, 0, 'yflo2', '2011-08-09', 'loyunfat', '2000-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS462101423136', '傅震南', 0, '+86 760-4506-7578', 2, '726524358953167007', '中国中山乐丰六路900号31号楼', '1992-01-15', 0, 0, 'fuzhennan', '2016-04-30', 'zhfu', '2002-03-28'); -INSERT INTO "public"."userinfo" VALUES ('TS013661850567', '梁子异', 0, '+1 614-952-8386', 0, '614908539659542241', '608 Diplomacy Drive Apartment 36, Columbus, GA 43228, United States', '1997-07-30', 0, 0, 'liang6', '2006-11-24', 'liang6', '2014-07-30'); -INSERT INTO "public"."userinfo" VALUES ('TS030581483958', '邵璐', 1, '+44 (1223) 33 5840', 4, '334619919792892762', 'Flat 13, 349 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-12-10', 0, 0, 'lush1', '2002-06-13', 'lusha', '2015-11-12'); -INSERT INTO "public"."userinfo" VALUES ('TS678943309728', '苑永權', 1, '+86 161-4126-6530', 0, '921672518217474036', 'Room 16, CR Building, 628 Lefeng 6th Rd, Zhongshan, China', '1988-02-04', 0, 0, 'wingkuenyuen', '2014-06-06', 'wingkueny', '2014-06-11'); -INSERT INTO "public"."userinfo" VALUES ('TS591711992926', 'Howard Murray', 1, '+44 (116) 933 4445', 2, '758413820149547140', 'Flat 49, 414 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-03-15', 0, 0, 'murray10', '2015-06-30', 'howard1', '2010-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS885391454380', '工藤明菜', 1, '+86 179-6427-1371', 3, '033146209374378550', 'No.39 building, 299 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-07-16', 0, 0, 'kudoaki', '2016-09-03', 'kudo71', '2009-06-16'); -INSERT INTO "public"."userinfo" VALUES ('TS345928225042', '洪曉彤', 0, '+86 28-5178-7758', 3, '718240416767959290', 'Room 23, CR Building, 437 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-11-06', 0, 0, 'hunght8', '2008-07-20', 'hht', '2003-09-24'); -INSERT INTO "public"."userinfo" VALUES ('TS747577897399', '萬志明', 1, '+81 66-526-1279', 0, '707655895259634547', '10F, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-05-19', 0, 0, 'meng524', '2003-04-25', 'mengcm', '2011-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS984940931607', '余子异', 0, '+86 28-622-2883', 1, '766685598127859129', '中国成都市锦江区红星路三段123号7号楼', '1987-02-22', 0, 0, 'yu2008', '2020-02-09', 'yu1972', '2017-02-16'); -INSERT INTO "public"."userinfo" VALUES ('TS721716544056', 'Susan Garcia', 0, '+44 (116) 254 7659', 2, '645649705307134957', 'Block 45, 668 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-03-01', 0, 0, 'garcia613', '2020-09-11', 'susang01', '2003-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS207733338289', '石田大地', 1, '+86 131-0127-8391', 3, '998583498284488600', 'Room 35, 858 Huanqu South Street 2nd Alley, Dongguan, China', '1987-05-27', 0, 0, 'ishidda8', '2003-01-31', 'daiishid', '2015-06-27'); -INSERT INTO "public"."userinfo" VALUES ('TS236883475132', '邓睿', 0, '+81 3-0615-1604', 2, '447688839725904899', '日本東京渋谷区代々木二丁目3番12号46階', '1995-11-10', 0, 0, 'rdeng', '2010-01-10', 'rudeng', '2007-11-28'); -INSERT INTO "public"."userinfo" VALUES ('TS267481376235', 'Alice Murphy', 1, '+86 755-6165-4881', 3, '112568928541454838', '中国深圳罗湖区清水河一路750号华润大厦47室', '1991-09-27', 0, 0, 'alicemurph', '2005-08-25', 'alicemurphy707', '2007-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS723911978686', '林蒼士', 1, '+86 20-305-1048', 2, '810680356043424598', '47F, 287 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-02-05', 0, 0, 'hayashi1', '2015-09-16', 'aoshi9', '2014-08-25'); -INSERT INTO "public"."userinfo" VALUES ('TS981359504505', 'Sherry Rivera', 1, '+81 90-7665-9279', 4, '210772626608298288', '日本おおさかし東住吉区東田辺三丁目27番13号50階', '1987-05-30', 0, 0, 'rives1126', '2002-11-02', 'rivsher', '2012-01-09'); -INSERT INTO "public"."userinfo" VALUES ('TS434474875180', '區祖兒', 1, '+81 80-6322-6547', 2, '726404412025300827', '4-kai, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-06-13', 0, 0, 'choyau', '2018-04-22', 'cyau91', '2020-11-20'); -INSERT INTO "public"."userinfo" VALUES ('TS738030225873', 'Brandon Price', 0, '+86 188-1813-5626', 1, '741304728814124159', '中国北京市东城区东单王府井东街462号10栋', '1988-06-13', 0, 0, 'brandon2', '2008-02-13', 'brandonprice', '2016-10-25'); -INSERT INTO "public"."userinfo" VALUES ('TS824434258371', '山本百恵', 0, '+44 5065 837934', 3, '261496568071892796', 'Unit 22, Oxford Eco Centre, 173 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-07-29', 0, 0, 'momyamamoto7', '2014-02-26', 'yamamotom', '2006-09-12'); -INSERT INTO "public"."userinfo" VALUES ('TS405688157411', 'Hazel Hamilton', 0, '+81 52-536-4541', 3, '071942586023961287', '46F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-11-28', 0, 0, 'hamiltonhaze604', '2008-07-20', 'hamha', '2001-02-17'); -INSERT INTO "public"."userinfo" VALUES ('TS349534220405', '樂永權', 0, '+81 90-9030-0748', 2, '479791281271236685', '日本東京中央区銀座三丁目12番6号12階', '1985-12-04', 0, 0, 'lok3', '2005-08-09', 'wingkuen1956', '2017-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS925675718511', '马睿', 0, '+81 70-3803-3602', 2, '024432107806520880', '37F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-03-17', 0, 0, 'mr00', '2018-10-25', 'ruim', '2013-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS354537914659', 'Joel Stone', 1, '+81 70-2735-3089', 2, '265267889527985629', 'Rm. 49, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-07-26', 0, 0, 'stonejoel', '2010-03-04', 'stoj', '2019-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS833043440450', '方宇宁', 0, '+81 66-589-1183', 3, '314690419836757982', 'Rm. 12, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1994-04-16', 0, 0, 'yuningfa', '2007-08-09', 'yuningfan', '2008-04-09'); -INSERT INTO "public"."userinfo" VALUES ('TS217443439035', '藤井絢斗', 0, '+86 755-8796-9104', 0, '947585173493897149', '中国深圳罗湖区蔡屋围深南东路844号18栋', '1997-01-28', 0, 0, 'fujiiayato', '2000-06-21', 'ayatofujii4', '2014-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS807889327361', '鄺慧敏', 1, '+1 312-178-6792', 0, '249697282833804953', '765 Pedway Suite 26, Chicago, IL 60601, United States', '1993-11-04', 0, 0, 'waimankwong', '2018-03-18', 'waimankwong', '2013-09-02'); -INSERT INTO "public"."userinfo" VALUES ('TS459901722529', 'Denise Walker', 0, '+81 66-022-7558', 2, '942101609764329708', '日本おおさかし西成区出城一丁目1番1号23階', '1990-02-13', 0, 0, 'dwalker44', '2015-03-04', 'waden', '2000-09-06'); -INSERT INTO "public"."userinfo" VALUES ('TS475506021145', '卢宇宁', 0, '+44 5810 212951', 1, '626631206214351904', 'Unit 4, Oxford Eco Centre, 332 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-07-10', 0, 0, 'luyuning', '2018-11-13', 'yuningl', '2016-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS178134596436', '毛國權', 0, '+81 70-4336-7196', 3, '648019786948087735', '日本おおさかし西成区天神ノ森二丁目1番4号39号室', '1988-06-02', 0, 0, 'mokk', '2019-11-26', 'kwokkuenm4', '2003-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS999414513019', '長谷川結翔', 0, '+81 3-5311-9717', 3, '414794861031464619', '日本東京港区東新橋一丁目5番3号27階', '1990-10-04', 0, 0, 'hasegyuito3', '2004-11-05', 'hy10', '2011-06-12'); -INSERT INTO "public"."userinfo" VALUES ('TS309969327953', '黄安琪', 1, '+81 70-7389-4614', 1, '409727456075680772', '21-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1993-03-06', 0, 0, 'huanganq5', '2002-12-19', 'huanganqi1115', '2004-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS014815168363', 'Josephine Mitchell', 0, '+1 718-005-6582', 3, '312614974337042478', '904 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1987-07-15', 0, 0, 'mitjosep', '2018-12-13', 'mitcj89', '2012-05-27'); -INSERT INTO "public"."userinfo" VALUES ('TS202555917790', 'Linda Rice', 1, '+81 3-1036-5161', 1, '465024044775391749', '日本東京品川区東五反田五丁目2番12号44階', '1988-11-21', 0, 0, 'ricelind', '2019-03-25', 'lindari1963', '2011-04-17'); -INSERT INTO "public"."userinfo" VALUES ('TS133209564821', '鄺慧珊', 0, '+1 614-075-6048', 3, '970165748625586239', '727 East Cooke Road Apt 38, Columbus, GA 43214, United States', '1997-10-28', 0, 0, 'kwonwaisan', '2014-07-26', 'kwowaisan', '2017-05-05'); -INSERT INTO "public"."userinfo" VALUES ('TS698686626332', 'Kathryn Kelley', 1, '+86 755-8971-0777', 3, '259510334063896836', '中国深圳龙岗区学园一巷526号46号楼', '1992-01-23', 0, 0, 'kelley4', '2012-04-05', 'kelleykathryn8', '2012-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS979253537191', 'Jesus Williams', 0, '+81 90-5583-9379', 4, '969832771279605977', '日本東京千代田区丸の内一丁目6番16号35階', '1991-07-16', 0, 0, 'williams5', '2006-06-12', 'jesuswilliams1117', '2007-06-02'); -INSERT INTO "public"."userinfo" VALUES ('TS291155046875', '上野葉月', 1, '+44 (1865) 83 3163', 1, '109244001877942696', 'Unit 20, Oxford Eco Centre, 990 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-01-06', 0, 0, 'hazukiuen', '2002-06-20', 'uenoh', '2014-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS580190102692', '市川陸', 1, '+1 614-402-2820', 4, '560468576459141598', '798 Tremont Road Apartment 9, Columbus, GA 43212, United States', '1997-07-15', 0, 0, 'riku8', '2002-12-22', 'ichikawariku95', '2009-02-02'); -INSERT INTO "public"."userinfo" VALUES ('TS635699101340', '森架純', 1, '+44 5221 032182', 3, '364148926657089393', 'Flat 26, 18 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-04', 0, 0, 'morikasumi', '2009-07-17', 'mori6', '2001-01-15'); -INSERT INTO "public"."userinfo" VALUES ('TS061607022329', '鄭詠詩', 0, '+81 11-820-8953', 2, '484961347839967188', '13-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-07-03', 0, 0, 'wingsc', '2006-03-22', 'cwingsze', '2001-06-30'); -INSERT INTO "public"."userinfo" VALUES ('TS500588999139', 'Grace Ramos', 1, '+86 21-5999-7765', 3, '188072646278967229', '中国上海市浦东新区橄榄路485号10号楼', '1991-10-07', 0, 0, 'ramgrac', '2005-09-25', 'ragrace1960', '2004-02-04'); -INSERT INTO "public"."userinfo" VALUES ('TS043985472567', '彭思妤', 0, '+44 (116) 109 6953', 3, '275299582823160029', 'Flat 7, 91 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-01-11', 0, 0, 'pansze', '2020-07-31', 'szeyupang', '2009-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS515357360877', '盧梓晴', 0, '+81 3-9138-4702', 2, '486573450266440881', '13-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-10-06', 0, 0, 'tclo3', '2019-04-01', 'tclo8', '2002-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS453657244365', '李慧儀', 1, '+86 174-9381-7475', 1, '950240578571485880', '中国上海市浦东新区健祥路40号24号楼', '1997-11-17', 0, 0, 'waiyeelee', '2020-06-05', 'leewaiyee9', '2014-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS994836189196', 'Rebecca Olson', 1, '+81 90-1461-1524', 2, '633559823825536235', '日本札幌豊平区豊平三条十三丁目3番20号7号室', '1990-01-13', 0, 0, 'rebeccaolson7', '2006-02-28', 'rebolson80', '2018-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS157658221162', '古世榮', 1, '+86 172-4419-3708', 4, '758176789611805470', 'Room 46, 618 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-08-15', 0, 0, 'saiwingku1', '2007-08-06', 'kusw', '2008-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS637532937680', '何震南', 1, '+1 212-596-8813', 3, '395683250909451097', '23 Fifth Avenue Apt 10, New York, NY 10017, United States', '1986-02-02', 0, 0, 'zhe102', '2010-07-24', 'zhhe8', '2007-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS437151071315', '戚永權', 0, '+1 838-583-9323', 2, '240990278216793597', '345 Broadway Apt 12, Albany, NY 12207, United States', '1997-06-27', 0, 0, 'chicwing5', '2008-12-13', 'chiwingkuen98', '2022-02-23'); -INSERT INTO "public"."userinfo" VALUES ('TS647588952158', '太田明菜', 0, '+86 760-542-2784', 1, '497460909782681322', '中国中山京华商圈华夏街55号1楼', '1996-12-12', 0, 0, 'akinota', '2018-01-01', 'akota', '2008-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS625327826507', 'Thomas Harrison', 1, '+81 80-0863-5159', 3, '523649657588485381', '日本ならし大和郡山市本庄町一丁目1番15号19階', '1991-01-05', 0, 0, 'harrisonth', '2020-04-30', 'harrit7', '2016-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS136353261431', '郭杰宏', 0, '+81 74-331-3615', 2, '197959091941878405', '23F, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1985-07-08', 0, 0, 'jiehongg', '2001-03-25', 'gjie', '2018-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS682598653782', '中川健太', 1, '+86 179-1813-4505', 4, '376034696108686065', '中国广州市越秀区中山二路119号华润大厦37室', '1991-09-29', 0, 0, 'kennaka828', '2012-02-11', 'ken', '2022-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS610812052663', 'Jason Walker', 0, '+81 90-8642-7923', 1, '970014856039508113', '36F, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-03-19', 0, 0, 'jasonwalker924', '2017-05-20', 'walkjason5', '2008-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS153264594082', '松井彩乃', 1, '+1 330-933-0913', 4, '736812804487867905', '454 Collier Road 3rd Floor, Akron, OH 44320, United States', '1985-06-05', 0, 0, 'matsuiayano', '2016-02-13', 'maaya', '2014-10-11'); -INSERT INTO "public"."userinfo" VALUES ('TS642045663028', '中森瑛太', 1, '+81 3-3573-1039', 2, '844407484173809063', '日本東京千代田区丸の内一丁目6番13号48号室', '1997-05-16', 0, 0, 'nakamoriei', '2010-03-20', 'nakamori63', '2020-07-19'); -INSERT INTO "public"."userinfo" VALUES ('TS426383588810', 'Kathryn Mendoza', 0, '+86 171-5072-4522', 1, '565698513891575002', 'Room 16, CR Building, 644 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-07-06', 0, 0, 'kam', '2018-06-24', 'kmend', '2002-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS178046217225', 'Keith Green', 0, '+44 (20) 1216 7878', 1, '910503553831468911', 'No.36 Main building, 315 Maddox Street, London, W1S 1PU, United Kingdom', '1990-06-25', 0, 0, 'greenkeith521', '2004-12-09', 'gk502', '2002-05-08'); -INSERT INTO "public"."userinfo" VALUES ('TS814893141100', '彭富城', 1, '+86 760-471-1988', 2, '722574943474966808', 'Room 22, CR Building, 203 Lefeng 6th Rd, Zhongshan, China', '1990-02-21', 0, 0, 'fspang', '2020-05-07', 'pangfs', '2014-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS269811895199', 'Curtis Mendoza', 0, '+44 5552 773579', 3, '469226208336852224', 'No.40 Main building, 660 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-01-29', 0, 0, 'mcurt718', '2015-07-26', 'curtism', '2007-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS855347496047', '汪世榮', 0, '+81 3-4174-4610', 3, '802888437481574938', '日本東京渋谷区代々木二丁目3番17号43階', '1995-07-03', 0, 0, 'saiwingw', '2008-04-17', 'wonsaiwing218', '2001-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS575555673570', '石田大和', 0, '+81 66-508-3217', 0, '128383879468375153', '日本おおさかし西成区天神ノ森二丁目1番8号3号室', '1990-03-30', 0, 0, 'ishida1', '2011-06-29', 'ishida108', '2005-05-12'); -INSERT INTO "public"."userinfo" VALUES ('TS190860712577', '西村愛梨', 0, '+81 66-413-8335', 1, '554404882785767739', '日本おおさかし西成区出城一丁目1番9号41階', '1992-09-15', 0, 0, 'anishimura3', '2021-08-20', 'nishimuraai46', '2002-02-01'); -INSERT INTO "public"."userinfo" VALUES ('TS546320574468', '菊地美月', 0, '+1 330-263-2781', 2, '688599745754962393', '263 West Market Street Apartment 49, Akron, OH 44333, United States', '1998-09-05', 0, 0, 'mitsukiki', '2008-05-30', 'kmitsuki', '2010-04-21'); -INSERT INTO "public"."userinfo" VALUES ('TS603887528053', '何安琪', 0, '+81 70-7851-6500', 4, '269475971543963244', '日本おおさかし東住吉区東田辺三丁目27番1号36階', '1992-02-12', 0, 0, 'hean', '2011-06-16', 'hanqi', '2003-10-08'); -INSERT INTO "public"."userinfo" VALUES ('TS599026269858', '前田大輔', 1, '+81 66-234-4244', 4, '359374690188396711', 'Rm. 9, 4-9-10 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-08', 0, 0, 'daisumae', '2009-12-31', 'maeda8', '2016-06-24'); -INSERT INTO "public"."userinfo" VALUES ('TS977847201220', 'Don Washington', 0, '+86 176-6838-4151', 1, '940932697145751978', 'No.19 building, No.422, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1990-01-30', 0, 0, 'donwashington4', '2002-03-10', 'washingtondon', '2004-02-07'); -INSERT INTO "public"."userinfo" VALUES ('TS655681826972', '鐘明詩', 0, '+86 21-5121-5958', 1, '115668894721278747', 'No.33 building, 572 Jianxiang Rd, Pudong, Shanghai, China', '1989-03-18', 0, 0, 'cmingsze', '2013-10-24', 'chungms', '2015-05-24'); -INSERT INTO "public"."userinfo" VALUES ('TS447260654813', '梅發', 0, '+44 7039 861478', 3, '696241693638398959', 'Flat 20, 111 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-12-17', 0, 0, 'fatmui414', '2017-07-28', 'muifat414', '2018-09-30'); -INSERT INTO "public"."userinfo" VALUES ('TS468970382319', '宣發', 0, '+81 52-486-4627', 3, '894071290739117102', '日本なごやし熱田区千年二丁目5番10号43階', '1995-09-18', 0, 0, 'faths', '2014-12-22', 'fhsuan4', '2015-09-17'); -INSERT INTO "public"."userinfo" VALUES ('TS243988575525', '蕭俊宇', 0, '+81 11-193-1281', 2, '011465372599161091', '日本札幌厚別区上野幌一条二丁目1番2号38階', '1995-03-19', 0, 0, 'sicy', '2008-05-03', 'schunyu', '2015-10-05'); -INSERT INTO "public"."userinfo" VALUES ('TS646466333628', 'Fred Rogers', 0, '+44 5398 584078', 2, '065387795957552216', 'No.6 Main building, 229 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-09-07', 0, 0, 'fredrogers', '2014-07-31', 'fredrogers', '2021-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS641492444206', '贾安琪', 1, '+86 178-1960-6029', 1, '416859136225409692', '中国北京市东城区东单王府井东街67号34室', '1992-05-19', 0, 0, 'jiaan', '2000-10-10', 'anj4', '2000-08-14'); -INSERT INTO "public"."userinfo" VALUES ('TS610403730115', '清水美月', 1, '+86 152-3151-2336', 2, '155000900974058045', 'Room 4, 382 Jianxiang Rd, Pudong, Shanghai, China', '1989-09-02', 0, 0, 'smitsuki', '2021-06-02', 'mitsukishimizu', '2008-10-09'); -INSERT INTO "public"."userinfo" VALUES ('TS799711924767', 'Marvin Meyer', 0, '+86 760-503-5579', 0, '485124204533026086', '35F, 181 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-11-17', 0, 0, 'meyemarvin08', '2014-10-20', 'meyermarvin', '2005-01-02'); -INSERT INTO "public"."userinfo" VALUES ('TS225323929835', 'Robert Chavez', 1, '+81 80-5720-8995', 1, '001026563853045884', '20F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-04-30', 0, 0, 'chavez8', '2010-09-11', 'robert8', '2015-07-22'); -INSERT INTO "public"."userinfo" VALUES ('TS609829765387', 'Janet Soto', 0, '+1 212-304-5718', 1, '250012472750517890', '722 Wooster Street Apt 17, New York, NY 10012, United States', '1996-08-31', 0, 0, 'sj57', '2004-04-02', 'sotojane', '2017-12-16'); -INSERT INTO "public"."userinfo" VALUES ('TS988095645290', '段宇宁', 0, '+1 212-999-3949', 2, '637595227657797384', '216 Fifth Avenue Apartment 36, New York, NY 10017, United States', '1999-01-17', 0, 0, 'duan10', '2005-06-02', 'dyuning', '2008-10-10'); -INSERT INTO "public"."userinfo" VALUES ('TS141454581990', '汪家強', 1, '+81 80-7423-6306', 3, '597605554168319609', '10-kai, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-01-12', 0, 0, 'kakeung96', '2019-07-27', 'kakeungwong', '2001-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS360021850270', 'Anthony Thomas', 1, '+44 (151) 827 7202', 3, '163178682503479221', 'Flat 38, 380 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-10-14', 0, 0, 'at6', '2008-04-19', 'anthony91', '2011-07-03'); -INSERT INTO "public"."userinfo" VALUES ('TS911902664149', '高田湊', 0, '+1 838-983-7910', 1, '971036809121208328', '591 Central Avenue Apt 50, Albany, NY 12205, United States', '1997-06-23', 0, 0, 'mtakada1949', '2011-04-24', 'takadaminat8', '2009-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS532971560580', '梅學友', 1, '+81 80-7927-7870', 1, '963935083990173142', '33-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1998-08-17', 0, 0, 'hymui', '2013-07-24', 'muihokyau', '2000-06-23'); -INSERT INTO "public"."userinfo" VALUES ('TS917441991675', 'Victoria Gibson', 0, '+86 10-2037-6867', 2, '051567078144954459', '中国北京市東城区東直門內大街468号30号楼', '1997-04-21', 0, 0, 'gvictoria', '2016-11-29', 'gibsonvic', '2011-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS223751149835', '杉山悠人', 0, '+86 180-4717-3358', 0, '466107834554079336', 'Room 2, CR Building, 371 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-03-10', 0, 0, 'yutosugiyama', '2014-12-27', 'sugiyyu811', '2016-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS958595242529', '野村玲奈', 1, '+1 213-935-3192', 1, '794336506271792877', '877 Grape Street Suite 5, Los Angeles, CA 90002, United States', '1989-09-27', 0, 0, 'nre', '2005-11-19', 'nr7', '2021-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS936134274806', '後藤美緒', 1, '+86 177-4274-5993', 3, '298209523252394858', '中国广州市天河区天河路283号13号楼', '1996-08-18', 0, 0, 'gomio', '2007-06-23', 'mio814', '2006-09-21'); -INSERT INTO "public"."userinfo" VALUES ('TS018415437915', '中森翼', 1, '+86 28-4092-8919', 3, '816410633736747262', '中国成都市成华区双庆路344号9楼', '1993-02-01', 0, 0, 'nt710', '2009-03-21', 'tsubasanak913', '2001-10-14'); -INSERT INTO "public"."userinfo" VALUES ('TS822616587153', '黃裕玲', 0, '+81 74-369-9126', 0, '220501632579800423', '日本ならし西大寺赤田町一丁目7番11号20号室', '1986-03-29', 0, 0, 'ylw5', '2002-10-10', 'yuling44', '2019-04-11'); -INSERT INTO "public"."userinfo" VALUES ('TS156333166380', '松田百恵', 0, '+86 175-8370-1354', 1, '380746630049578454', '中国成都市成华区双庆路338号34号楼', '1988-12-10', 0, 0, 'momoem', '2006-09-25', 'momoem', '2009-12-24'); -INSERT INTO "public"."userinfo" VALUES ('TS573961366614', '黃家明', 0, '+1 312-429-9691', 0, '756152437054517602', '69 Pedway Apartment 50, Chicago, IL 60601, United States', '1994-05-12', 0, 0, 'wongkaming819', '2007-04-30', 'kaming43', '2019-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS568683487830', '贺嘉伦', 1, '+44 (1865) 54 2077', 3, '788622804011969847', 'No.23 Main building, 49 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-12-25', 0, 0, 'jiahe57', '2015-03-28', 'hejial', '2021-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS458366349166', '武田百花', 0, '+81 90-2088-8555', 4, '201046368594544831', '日本東京中央区銀座三丁目12番20号6階', '1997-01-07', 0, 0, 'takedamomok', '2017-10-23', 'momta', '2020-09-01'); -INSERT INTO "public"."userinfo" VALUES ('TS108111280595', '宮崎光', 1, '+44 5719 069234', 3, '866371787611527552', 'Flat 42, 958 Portland St, Manchester, M1 3LA, United Kingdom', '1997-04-30', 0, 0, 'mihikaru4', '2010-09-11', 'hikarumiyazaki', '2010-04-29'); -INSERT INTO "public"."userinfo" VALUES ('TS517127011113', '馮玲玲', 0, '+1 838-997-1412', 0, '690543975326023712', '341 Broadway Apt 45, Albany, NY 12207, United States', '1990-10-07', 0, 0, 'linglingfu12', '2007-05-17', 'fll', '2008-11-21'); -INSERT INTO "public"."userinfo" VALUES ('TS347741838136', '宮本陽太', 1, '+86 132-9048-8343', 2, '036950343494126713', '17F, 363 Shennan Ave, Futian District, Shenzhen, China', '1997-08-02', 0, 0, 'miyamoto57', '2015-03-10', 'miyamoto71', '2003-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS900847788318', '有村大和', 1, '+81 74-030-9904', 2, '653814553820973103', '日本ならし西大寺赤田町一丁目7番9号9階', '1990-08-14', 0, 0, 'yaar84', '2003-07-17', 'ya5', '2011-09-28'); -INSERT INTO "public"."userinfo" VALUES ('TS609608865504', 'Jason Fernandez', 1, '+86 769-380-3781', 3, '961762726092867387', '中国东莞环区南街二巷191号华润大厦5室', '1994-12-09', 0, 0, 'fernandezj', '2013-03-20', 'fjason', '2002-03-18'); -INSERT INTO "public"."userinfo" VALUES ('TS352123305970', 'Todd Young', 0, '+81 66-068-5627', 1, '342611554915216309', '13-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-03-05', 0, 0, 'young311', '2000-07-21', 'todd8', '2014-11-01'); -INSERT INTO "public"."userinfo" VALUES ('TS037321279150', 'Edward Fisher', 1, '+81 11-892-9588', 2, '341548870292662972', '2-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-01-18', 0, 0, 'fisher1960', '2005-06-20', 'edfisher', '2017-03-26'); -INSERT INTO "public"."userinfo" VALUES ('TS930707336398', '谢詩涵', 1, '+81 74-972-4338', 3, '333607843131340432', '34-kai, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1990-05-17', 0, 0, 'shihanxie', '2019-02-17', 'xies503', '2015-07-04'); -INSERT INTO "public"."userinfo" VALUES ('TS293427577605', '陆安琪', 0, '+86 142-2746-6189', 2, '790577803205887106', '中国上海市黄浦区淮海中路132号华润大厦25室', '1987-01-23', 0, 0, 'luanqi420', '2014-09-12', 'alu', '2016-06-15'); -INSERT INTO "public"."userinfo" VALUES ('TS212600615009', '小島樹', 0, '+86 21-828-9591', 3, '832622176617713894', '17F, 87 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-07-27', 0, 0, 'ik10', '2018-12-23', 'itsukikoji', '2013-10-21'); -INSERT INTO "public"."userinfo" VALUES ('TS107782480605', '橋本桜', 0, '+44 (121) 152 9229', 3, '386053419075393167', 'Unit 19, Oxford Eco Centre, 663 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-09-05', 0, 0, 'sakurahashimoto9', '2011-11-23', 'hashimotosakur', '2004-08-11'); -INSERT INTO "public"."userinfo" VALUES ('TS791960105336', '黃慧珊', 0, '+1 718-362-6851', 2, '360324010184917635', '942 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1990-03-31', 0, 0, 'wowa9', '2011-05-06', 'waiswo4', '2014-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS857868383062', 'Kyle Morales', 0, '+86 191-8231-5351', 1, '496847190639470127', '中国广州市海珠区江南西路512号43室', '1997-06-15', 0, 0, 'moralkyle', '2014-12-21', 'mk3', '2005-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS135892881827', 'Steve Patterson', 0, '+81 3-0236-7859', 2, '179369698346596225', 'Rm. 30, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-01-06', 0, 0, 'pattesteve', '2003-02-13', 'stevepatt', '2020-01-08'); -INSERT INTO "public"."userinfo" VALUES ('TS770857813462', '廖璐', 1, '+44 (151) 137 1772', 4, '724444312025139933', 'No.36 Main building, 719 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-01-14', 0, 0, 'liaolu', '2000-02-13', 'lul', '2008-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS397523721912', '梁曉彤', 1, '+86 10-1819-7182', 1, '523307733268712904', '10F, 53 Sanlitun Road, Chaoyang District, Beijing, China', '1992-05-17', 0, 0, 'leunghiu5', '2006-11-10', 'htleung', '2019-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS760882223896', '藍祖兒', 0, '+81 3-9917-2085', 4, '652368707865035166', 'Rm. 14, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-06-19', 0, 0, 'choyee77', '2002-06-25', 'choyeelam', '2003-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS891943994566', '袁家玲', 0, '+86 138-2984-6592', 3, '905362680077864898', 'No.33 building, 637 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-11-21', 0, 0, 'yuenkl309', '2017-03-31', 'kaliy', '2002-08-17'); -INSERT INTO "public"."userinfo" VALUES ('TS373350220206', 'Earl Ford', 0, '+81 80-3044-5771', 0, '086324343560021328', '日本おおさかし西成区天神ノ森二丁目1番5号45号室', '1997-07-10', 0, 0, 'fordear', '2013-04-04', 'earlfor', '2007-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS362191062665', '葉安琪', 0, '+86 182-3159-4304', 3, '758114311618468152', '中国广州市白云区小坪东路257号华润大厦9室', '1997-05-23', 0, 0, 'yipok1962', '2011-10-07', 'yonkay7', '2014-09-16'); -INSERT INTO "public"."userinfo" VALUES ('TS955060417206', '市川葵', 0, '+86 20-4458-2503', 4, '536452106725610849', 'Room 50, 542 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-10', 0, 0, 'aoiichikawa', '2005-01-08', 'ichikawa1983', '2017-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS371081356849', '韩嘉伦', 0, '+1 213-045-8438', 3, '331342195574266734', '846 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-03-13', 0, 0, 'hanjialun', '2007-11-18', 'jh120', '2014-01-13'); -INSERT INTO "public"."userinfo" VALUES ('TS052558099580', 'Douglas Parker', 1, '+81 80-1516-1228', 2, '493053451904743415', '24F, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-10-27', 0, 0, 'dp308', '2020-05-13', 'parkdo12', '2017-03-21'); -INSERT INTO "public"."userinfo" VALUES ('TS511540650724', '何璐', 1, '+86 20-534-9840', 1, '044635381612079813', '中国广州市海珠区江南西路636号14号楼', '1985-07-09', 0, 0, 'helu03', '2019-07-17', 'lu8', '2007-04-03'); -INSERT INTO "public"."userinfo" VALUES ('TS713257684379', 'Tammy Hunter', 0, '+44 5259 725556', 1, '395632490314484775', 'Flat 45, 235 Regent Street, London, W1B 2LX, United Kingdom', '1997-01-24', 0, 0, 'huntertam', '2006-08-02', 'tahunter', '2008-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS998210987509', '侯璐', 1, '+86 149-2893-4068', 2, '927351416888484000', 'Room 42, CR Building, 520 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-03-07', 0, 0, 'hlu', '2005-09-25', 'lhou', '2007-04-08'); -INSERT INTO "public"."userinfo" VALUES ('TS252640462809', '馮詩君', 0, '+44 7750 279312', 0, '879527307521984867', 'Flat 34, 37 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-05-20', 0, 0, 'szekwanfung93', '2004-01-13', 'szekwanfun', '2019-12-28'); -INSERT INTO "public"."userinfo" VALUES ('TS590936505249', '陶仲賢', 0, '+86 10-4265-3466', 3, '065674169627875201', 'No.35 building, 658 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-04-23', 0, 0, 'tacy10', '2003-10-11', 'chungyintao', '2003-04-15'); -INSERT INTO "public"."userinfo" VALUES ('TS980392104269', 'Allen Jones', 0, '+86 139-2977-9932', 0, '694374352541588626', 'No.50 building, 470 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-02-07', 0, 0, 'jones120', '2004-10-24', 'jonesallen', '2012-06-10'); -INSERT INTO "public"."userinfo" VALUES ('TS822997406143', '戴國榮', 0, '+44 7865 627257', 2, '910953304188671643', 'Unit 21, Oxford Eco Centre, 79 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-10-18', 0, 0, 'kwokwingda2', '2008-06-05', 'daikwokwing1019', '2018-06-21'); -INSERT INTO "public"."userinfo" VALUES ('TS444725481216', 'Kathryn Castro', 0, '+86 769-249-7794', 1, '316390854957947130', 'No.18 building, 365 Shanhu Rd, Dongguan, China', '1987-07-17', 0, 0, 'ckath', '2005-12-30', 'castro4', '2006-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS694878262935', '中村光', 1, '+86 134-6247-6803', 2, '923676074976839040', '39F, 55 028 County Rd, Yanqing District, Beijing, China', '1993-09-15', 0, 0, 'nakhi', '2006-12-04', 'nakamurahikaru', '2017-05-06'); -INSERT INTO "public"."userinfo" VALUES ('TS961869455633', '羅玲玲', 1, '+81 66-290-0716', 2, '898213042039067683', '日本おおさかし東住吉区東田辺三丁目27番8号50号室', '1987-02-12', 0, 0, 'lllo94', '2005-02-13', 'lingling1', '2004-07-28'); -INSERT INTO "public"."userinfo" VALUES ('TS097827473221', '伊藤湊', 1, '+44 5310 710078', 2, '786122341265723036', 'Unit 47, Oxford Eco Centre, 350 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-06-03', 0, 0, 'itominat', '2019-12-10', 'minait', '2012-02-18'); -INSERT INTO "public"."userinfo" VALUES ('TS675820670164', '車思妤', 1, '+81 80-3157-0936', 3, '255362042576849440', '22F, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-08-22', 0, 0, 'chesy', '2017-09-02', 'cszeyu9', '2019-03-15'); -INSERT INTO "public"."userinfo" VALUES ('TS999925234210', '萬志遠', 0, '+1 312-446-8623', 2, '160479392371411789', '620 North Michigan Ave Apt 47, Chicago, IL 60611, United States', '1993-11-05', 0, 0, 'chiyuenm08', '2007-07-08', 'cym', '2021-06-05'); -INSERT INTO "public"."userinfo" VALUES ('TS955225855137', '藤田一輝', 1, '+44 (1223) 13 0738', 3, '079082820076699765', 'Unit 32, Oxford Eco Centre, 895 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-10-21', 0, 0, 'ikkifuji2017', '2013-01-24', 'ikkifu', '2002-04-18'); -INSERT INTO "public"."userinfo" VALUES ('TS503366482711', 'Paula Adams', 1, '+86 21-719-1647', 0, '503691423441990673', 'No.31 building, 610 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-06-11', 0, 0, 'paulaadams', '2008-03-22', 'adamspau', '2007-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS582435804243', '佘祖兒', 0, '+44 (161) 720 2030', 2, '051523330093685909', 'No.13 Main building, 636 Portland St, Manchester, M1 3LA, United Kingdom', '1987-08-24', 0, 0, 'shehcy46', '2020-08-23', 'shehchoyee', '2010-01-11'); -INSERT INTO "public"."userinfo" VALUES ('TS952503765971', '苑惠敏', 1, '+86 20-859-2902', 2, '807257604247296401', '40F, 823 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-11-06', 0, 0, 'wmyuen', '2011-06-08', 'yuen2019', '2016-05-02'); -INSERT INTO "public"."userinfo" VALUES ('TS883794218019', '原大地', 0, '+86 144-8983-9449', 4, '287101597859070461', '中国广州市白云区小坪东路959号31室', '1992-09-03', 0, 0, 'haradaich', '2000-11-02', 'daichhar', '2015-03-04'); -INSERT INTO "public"."userinfo" VALUES ('TS871342341167', '斉藤詩乃', 1, '+86 159-4527-0658', 0, '515851470081480686', '中国深圳罗湖区田贝一路175号华润大厦39室', '1998-06-21', 0, 0, 'sashino', '2012-11-25', 'shinsaito605', '2013-09-07'); -INSERT INTO "public"."userinfo" VALUES ('TS788039194693', '孔云熙', 0, '+86 20-6170-0096', 3, '970974371136058802', 'No.2 building, 703 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-01-10', 0, 0, 'yko1', '2019-12-03', 'yukon3', '2017-04-05'); -INSERT INTO "public"."userinfo" VALUES ('TS079119830881', '林花', 0, '+1 614-777-1217', 2, '374295241398744653', '479 East Alley Suite 32, Columbus, GA 43201, United States', '1991-09-27', 0, 0, 'hayashih', '2008-12-05', 'hanahayashi226', '2017-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS917322464021', '周嘉伦', 1, '+1 838-326-6491', 3, '451082243468647325', '327 Central Avenue Apartment 30, Albany, NY 12206, United States', '1995-08-24', 0, 0, 'jialunzho1954', '2021-10-14', 'zjialun', '2008-05-21'); -INSERT INTO "public"."userinfo" VALUES ('TS663617165405', 'Robert Hamilton', 0, '+81 90-1645-8602', 0, '035383978306518738', 'Rm. 2, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-07-01', 0, 0, 'roberhamilton', '2019-07-11', 'hamilton66', '2010-08-31'); -INSERT INTO "public"."userinfo" VALUES ('TS157866029747', '蔡頴璇', 1, '+1 718-944-6107', 0, '252649661719104524', '495 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1995-06-05', 0, 0, 'chowingsuen5', '2021-02-25', 'cws1955', '2014-01-14'); -INSERT INTO "public"."userinfo" VALUES ('TS274588068563', '顾安琪', 0, '+86 168-6263-3726', 3, '737472916120958080', '中国上海市浦东新区健祥路346号4栋', '1996-07-23', 0, 0, 'anqgu10', '2003-01-04', 'gu2', '2017-08-28'); -INSERT INTO "public"."userinfo" VALUES ('TS638798750007', '鐘安琪', 0, '+81 90-2000-9777', 3, '361171354935888097', '40-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-05-09', 0, 0, 'onkaychun1979', '2002-02-28', 'chuok', '2004-03-20'); -INSERT INTO "public"."userinfo" VALUES ('TS516508246831', '苏詩涵', 1, '+86 196-9972-9596', 4, '035767944844096632', 'No.32 building, 701 Shanhu Rd, Dongguan, China', '1999-01-10', 0, 0, 'sushih', '2000-02-22', 'sushihan1994', '2018-10-26'); -INSERT INTO "public"."userinfo" VALUES ('TS596336015763', 'Peter Garcia', 1, '+1 614-540-2485', 1, '797768881850451899', '355 East Cooke Road Apt 45, Columbus, GA 43214, United States', '1987-06-01', 0, 0, 'garcia8', '2010-02-14', 'garciapeter', '2020-02-12'); -INSERT INTO "public"."userinfo" VALUES ('TS674775909130', '宣安娜', 1, '+1 212-298-8631', 2, '726033825453876775', '569 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1988-05-29', 0, 0, 'onnah49', '2004-03-30', 'onnahsua', '2018-03-07'); -INSERT INTO "public"."userinfo" VALUES ('TS690272168926', 'Pamela Reed', 1, '+81 90-9278-2725', 1, '533378519065850974', '39-kai, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-04-28', 0, 0, 'rep', '2003-05-03', 'reedpamela', '2009-09-08'); -INSERT INTO "public"."userinfo" VALUES ('TS097646459260', '鄧梓晴', 0, '+81 90-0796-0535', 0, '233705546660256142', '日本おおさかし近江堂一丁目7番9号5階', '1986-05-31', 0, 0, 'tctang84', '2002-08-29', 'tantszching', '2014-01-23'); -INSERT INTO "public"."userinfo" VALUES ('TS990965394618', '渡辺翼', 1, '+86 10-3573-9858', 2, '018779640341634465', '中国北京市海淀区清河中街68号643号28室', '1991-07-27', 0, 0, 'sato1', '2003-07-29', 'sato729', '2001-11-09'); -INSERT INTO "public"."userinfo" VALUES ('TS421329729774', '汪詩君', 1, '+86 10-591-8802', 2, '352760969662959387', '中国北京市海淀区清河中街68号386号31室', '1991-07-17', 0, 0, 'szwong', '2011-04-04', 'skw', '2021-12-04'); -INSERT INTO "public"."userinfo" VALUES ('TS728358704922', '成俊宇', 0, '+86 191-7521-3899', 1, '189195790183098438', '中国东莞珊瑚路699号43室', '1986-07-24', 0, 0, 'shingchunyu3', '2019-11-14', 'shinchunyu', '2016-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS933808449925', '楊家強', 0, '+81 80-9182-5172', 2, '859395108781135937', '日本おおさかし西成区天神ノ森二丁目1番19号49階', '1999-01-25', 0, 0, 'kkye', '2020-04-19', 'yeungkakeung4', '2009-02-28'); -INSERT INTO "public"."userinfo" VALUES ('TS564839134632', '崔惠敏', 1, '+86 21-6043-3016', 2, '951064730702821131', 'No.29 building, 227 Ganlan Rd, Pudong, Shanghai, China', '1991-02-04', 0, 0, 'choi415', '2005-05-06', 'wmchoi1112', '2021-07-20'); -INSERT INTO "public"."userinfo" VALUES ('TS624702231731', '邓宇宁', 0, '+81 52-594-0410', 4, '084432105581422228', '日本なごやし守山区瀬古東二丁目171番20号26階', '1999-02-05', 0, 0, 'dyun', '2006-04-06', 'deng6', '2005-10-28'); -INSERT INTO "public"."userinfo" VALUES ('TS166357753451', 'Laura Carter', 0, '+81 70-1584-7635', 3, '491775679151335068', 'Rm. 30, 5-2-6 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-05-09', 0, 0, 'cal3', '2021-03-24', 'calau48', '2005-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS604574823856', 'Joseph Smith', 1, '+44 5759 870278', 2, '424855463774415455', 'Flat 23, 234 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-08-08', 0, 0, 'joseph56', '2021-01-20', 'smith10', '2007-10-20'); -INSERT INTO "public"."userinfo" VALUES ('TS583195918630', '劉曉彤', 1, '+81 70-9993-0323', 4, '983010632545109221', '日本東京渋谷区代々木二丁目3番9号4号室', '1992-08-02', 0, 0, 'htlau', '2008-07-05', 'hiutung7', '2005-10-02'); -INSERT INTO "public"."userinfo" VALUES ('TS893234420665', '戴嘉伦', 1, '+44 7113 185156', 0, '903525678406730728', 'Block 19, 644 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-10-01', 0, 0, 'daj', '2015-09-20', 'djialun', '2012-03-27'); -INSERT INTO "public"."userinfo" VALUES ('TS667499065088', '宮崎和真', 0, '+86 156-9495-1659', 3, '383899252327746665', '中国深圳罗湖区蔡屋围深南东路903号36室', '1994-06-06', 0, 0, 'kazmiyazaki10', '2006-12-09', 'mik', '2015-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS703992134604', '秦嘉伦', 0, '+44 7356 697395', 3, '747551087769953664', 'Flat 38, 992 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-08-17', 0, 0, 'jialunqin', '2016-08-09', 'qin1124', '2006-08-30'); -INSERT INTO "public"."userinfo" VALUES ('TS969064831300', 'Jeffery Flores', 1, '+81 70-8958-8366', 4, '286514365601941677', '43F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-02-24', 0, 0, 'floresj', '2003-09-05', 'fljeffery', '2017-08-06'); -INSERT INTO "public"."userinfo" VALUES ('TS114986040034', '有村舞', 1, '+1 330-194-4167', 0, '927220970263325502', '861 West Market Street Apartment 42, Akron, OH 44333, United States', '1992-09-24', 0, 0, 'maia1975', '2019-11-29', 'amai', '2004-06-01'); -INSERT INTO "public"."userinfo" VALUES ('TS576078217510', 'Virginia King', 0, '+86 10-3082-8736', 3, '338694975203526542', 'No.49 building, 260 Sanlitun Road, Chaoyang District, Beijing, China', '1986-12-12', 0, 0, 'kingvi', '2000-08-04', 'virginia503', '2007-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS945391375507', '小島健太', 0, '+86 760-082-7789', 0, '385020742868576986', '中国中山京华商圈华夏街276号3室', '1989-05-16', 0, 0, 'kojima1221', '2001-11-28', 'kentakojim', '2008-08-26'); -INSERT INTO "public"."userinfo" VALUES ('TS317366189702', 'Henry Hall', 0, '+81 74-852-4625', 2, '907908934655699041', 'Rm. 45, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1989-09-14', 0, 0, 'hall101', '2017-05-08', 'hallhenry', '2000-09-15'); -INSERT INTO "public"."userinfo" VALUES ('TS987571344256', 'Bradley Hayes', 1, '+86 159-1119-8783', 3, '626823542945377272', '中国成都市成华区玉双路6号947号4栋', '1998-10-08', 0, 0, 'hayesbr', '2019-04-28', 'bhayes7', '2022-02-15'); -INSERT INTO "public"."userinfo" VALUES ('TS869226272130', 'Amanda James', 1, '+1 718-224-7822', 1, '978883221142598487', '671 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1990-10-15', 0, 0, 'aj1941', '2004-11-19', 'amandajames69', '2019-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS958753005972', '许子异', 1, '+86 28-126-1313', 1, '983456799032730512', 'Room 24, CR Building, 372 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-03-10', 0, 0, 'xuzi', '2012-07-06', 'ziyi5', '2021-02-10'); -INSERT INTO "public"."userinfo" VALUES ('TS753032495959', '胡嘉欣', 1, '+44 (1865) 50 6854', 3, '378246324702140188', 'Block 40, 391 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-04-26', 0, 0, 'kywu', '2005-08-17', 'karyanwu', '2009-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS076194124901', '酒井光莉', 0, '+81 66-756-6491', 1, '273169220793998918', '日本おおさかし西成区天神ノ森二丁目1番9号41号室', '1996-06-29', 0, 0, 'shik', '2017-07-21', 'sakaihikari9', '2002-04-16'); -INSERT INTO "public"."userinfo" VALUES ('TS933786002259', '許天榮', 0, '+86 760-7603-4611', 2, '684000368139311891', '中国中山紫马岭商圈中山五路320号38楼', '1992-12-13', 0, 0, 'tinwinghui', '2017-11-14', 'twhu', '2012-11-27'); -INSERT INTO "public"."userinfo" VALUES ('TS321176713461', 'Danny Richardson', 0, '+86 176-2214-4133', 2, '080343251733149101', '中国北京市海淀区清河中街68号831号20室', '1987-12-29', 0, 0, 'danny9', '2005-05-10', 'danny7', '2019-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS837062452698', '梅惠敏', 0, '+86 755-277-1373', 0, '984317938006991519', 'Room 35, CR Building, 815 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-02-07', 0, 0, 'mui11', '2008-10-24', 'muwm', '2007-03-10'); -INSERT INTO "public"."userinfo" VALUES ('TS750428483707', 'Anna Johnson', 0, '+1 212-070-9292', 0, '721029273590221125', '27 Bank Street Apt 35, New York, NY 10014, United States', '1995-06-17', 0, 0, 'anjohnson', '2009-03-20', 'johnsonanna5', '2020-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS985237056596', 'Gregory Henry', 1, '+81 52-870-0508', 2, '544346265943500425', '4-kai, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-01-21', 0, 0, 'gregohenr7', '2002-08-30', 'henrygregory', '2005-04-28'); -INSERT INTO "public"."userinfo" VALUES ('TS155670608147', 'John Dunn', 0, '+1 330-295-1908', 3, '030057284607578559', '212 Collier Road Suite 33, Akron, OH 44320, United States', '1988-09-14', 0, 0, 'dujohn6', '2017-12-31', 'johndunn', '2003-09-22'); -INSERT INTO "public"."userinfo" VALUES ('TS909506439162', 'Jerry Robertson', 1, '+81 66-460-8574', 1, '805766982283957948', '日本おおさかし平野区加美東四丁目9番8号18階', '1989-04-05', 0, 0, 'robjerry9', '2003-11-23', 'robejerry1114', '2018-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS135476062161', '文詠詩', 0, '+86 755-2947-1028', 2, '665595015869134102', 'No.18 building, 66 Shennan Ave, Futian District, Shenzhen, China', '1988-08-21', 0, 0, 'wingszeman', '2021-04-10', 'man1029', '2010-05-13'); -INSERT INTO "public"."userinfo" VALUES ('TS008091452628', '尹岚', 1, '+81 70-0101-5870', 4, '315488004807127381', '日本ならし西大寺赤田町一丁目7番9号24階', '1991-08-11', 0, 0, 'lan4', '2015-11-28', 'lan501', '2018-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS908542223434', 'Rosa Miller', 1, '+81 70-8649-3840', 0, '568090249514695443', '47F, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-12-24', 0, 0, 'miller6', '2002-08-01', 'mirosa4', '2007-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS892225457169', 'Bonnie Tucker', 1, '+81 66-743-5401', 2, '469948823046853238', '日本おおさかし近江堂一丁目7番10号47階', '1991-06-03', 0, 0, 'tucker1963', '2005-09-19', 'tuckbonn', '2006-05-31'); -INSERT INTO "public"."userinfo" VALUES ('TS609469812492', '马子异', 1, '+81 74-029-6415', 3, '477690410527741446', '日本ならし大和郡山市本庄町一丁目1番11号33階', '1987-12-06', 0, 0, 'ma112', '2017-12-01', 'zma', '2005-01-22'); -INSERT INTO "public"."userinfo" VALUES ('TS056696035574', '罗子韬', 1, '+81 70-1607-8883', 3, '272949903873951784', 'Rm. 42, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1997-11-23', 0, 0, 'zl9', '2006-09-22', 'luozit', '2018-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS521027552580', 'Maria Reynolds', 0, '+81 11-614-5408', 2, '650257177945936124', '日本札幌白石区菊水三条五丁目4番4号38階', '1996-04-03', 0, 0, 'reynmari', '2012-06-22', 'maria424', '2000-05-26'); -INSERT INTO "public"."userinfo" VALUES ('TS830580740384', '郝云熙', 1, '+1 312-706-9992', 3, '233845992763747968', '32 North Michigan Ave Apartment 48, Chicago, IL 60611, United States', '1991-05-19', 0, 0, 'hy4', '2019-05-11', 'yhao', '2012-04-27'); -INSERT INTO "public"."userinfo" VALUES ('TS816017066698', '任裕玲', 1, '+1 838-159-3764', 3, '858088642253650873', '271 Lark Street Apartment 14, Albany, NY 12210, United States', '1998-02-11', 0, 0, 'yulingyam71', '2018-02-05', 'yamyl1', '2017-07-21'); -INSERT INTO "public"."userinfo" VALUES ('TS382881221656', 'Phillip Miller', 0, '+86 755-9297-1722', 3, '888051289034926124', '中国深圳罗湖区蔡屋围深南东路829号21栋', '1990-12-26', 0, 0, 'miller6', '2004-08-17', 'phillipm917', '2008-10-12'); -INSERT INTO "public"."userinfo" VALUES ('TS144007969182', '阎杰宏', 1, '+86 159-9850-8840', 1, '003424148118629431', 'Room 42, CR Building, 261 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-04-03', 0, 0, 'jieyan5', '2016-05-20', 'yan84', '2000-07-13'); -INSERT INTO "public"."userinfo" VALUES ('TS406361406172', '毛晓明', 1, '+81 90-2408-0950', 3, '152645699775150561', '23-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-11-09', 0, 0, 'xiaoming5', '2018-07-05', 'maoxiaoming116', '2002-03-19'); -INSERT INTO "public"."userinfo" VALUES ('TS276416485455', '馮惠敏', 1, '+86 10-3576-2703', 2, '469806555346669972', '中国北京市海淀区清河中街68号681号22室', '1992-08-04', 0, 0, 'fungwm81', '2000-10-31', 'fwaiman', '2018-04-06'); -INSERT INTO "public"."userinfo" VALUES ('TS190987148430', '錢潤發', 0, '+44 (151) 055 7841', 1, '928206544703806043', 'Unit 42, Oxford Eco Centre, 317 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-10-01', 0, 0, 'chyf', '2020-12-09', 'yfc', '2005-04-25'); -INSERT INTO "public"."userinfo" VALUES ('TS077454508103', '上田一輝', 0, '+81 90-5912-6230', 2, '787456241976405337', '日本おおさかし西成区天神ノ森二丁目1番9号32階', '1987-05-18', 0, 0, 'uikki', '2012-09-04', 'uedai', '2017-03-09'); -INSERT INTO "public"."userinfo" VALUES ('TS597189266320', '工藤紗良', 0, '+86 769-7242-4455', 4, '625978735121567545', 'No.19 building, 349 Dongtai 5th St, Dongguan, China', '1992-05-13', 0, 0, 'sarakud', '2009-03-01', 'kusa', '2017-09-20'); -INSERT INTO "public"."userinfo" VALUES ('TS392912616981', '藍青雲', 1, '+86 21-4416-0517', 4, '401203779333665986', 'Room 33, CR Building, 746 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-04-24', 0, 0, 'lamchingwan', '2012-03-01', 'lamcw', '2019-12-21'); -INSERT INTO "public"."userinfo" VALUES ('TS410502590101', '斎藤光莉', 0, '+44 (1223) 42 2583', 1, '124336921541766437', 'Unit 21, Oxford Eco Centre, 634 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-04-22', 0, 0, 'saitohikari', '2021-07-30', 'saitohikari7', '2010-03-11'); -INSERT INTO "public"."userinfo" VALUES ('TS331133666927', '森田陸', 1, '+81 80-7393-9474', 2, '224252941282980296', '8F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-03-02', 0, 0, 'rikumorita3', '2014-08-05', 'rmorita', '2016-01-12'); -INSERT INTO "public"."userinfo" VALUES ('TS051708459354', '村上架純', 0, '+1 212-674-2391', 1, '700414880998513263', '185 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-10-13', 0, 0, 'murkasu', '2018-11-16', 'kasumimurakami6', '2005-08-16'); -INSERT INTO "public"."userinfo" VALUES ('TS799112704329', '橋本悠人', 0, '+44 (161) 425 7096', 2, '565779837659087487', 'Block 18, 415 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-11-17', 0, 0, 'yuto2', '2016-01-21', 'yuhashi1949', '2009-01-21'); -INSERT INTO "public"."userinfo" VALUES ('TS918480589642', '有村涼太', 0, '+86 181-8235-6083', 0, '408439084035215067', 'Room 9, CR Building, 217 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-07-01', 0, 0, 'arryota', '2009-04-18', 'ryotaarimura', '2013-10-30'); -INSERT INTO "public"."userinfo" VALUES ('TS349042844196', 'Teresa Miller', 1, '+86 154-3389-2650', 2, '934693717349773178', 'No.43 building, 945 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-09-18', 0, 0, 'miller10', '2011-05-12', 'teresa5', '2004-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS360307233128', '李詩涵', 1, '+81 90-6683-6568', 3, '165598647107168391', '日本なごやし守山区瀬古東二丁目171番11号37階', '1995-11-04', 0, 0, 'shihli411', '2001-02-19', 'lishihan', '2021-10-18'); -INSERT INTO "public"."userinfo" VALUES ('TS339837092523', '田村玲奈', 0, '+81 3-0621-0527', 3, '402536533385847042', 'Rm. 38, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1995-09-07', 0, 0, 'renata7', '2013-01-31', 'tare', '2005-03-05'); -INSERT INTO "public"."userinfo" VALUES ('TS536159964359', '宮崎光莉', 1, '+86 10-367-1106', 2, '481624522371907193', '中国北京市东城区东单王府井东街595号41号楼', '1994-04-17', 0, 0, 'miyazakihik', '2011-03-22', 'miyahi', '2000-06-13'); -INSERT INTO "public"."userinfo" VALUES ('TS929935807363', '武子异', 0, '+81 80-3978-9310', 0, '939716537824464881', '日本おおさかし近江堂一丁目7番15号34階', '1992-05-17', 0, 0, 'ziyiwu', '2017-06-29', 'ziywu', '2010-08-21'); -INSERT INTO "public"."userinfo" VALUES ('TS335935628220', 'Jeffrey Bailey', 1, '+44 7055 695742', 3, '103788855799708586', 'Flat 31, 193 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-01-02', 0, 0, 'jeffbai', '2008-10-18', 'jeffreybailey', '2001-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS316830411880', 'Samuel Edwards', 1, '+86 192-2299-1098', 4, '300260886318087329', '41F, 136 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-12-04', 0, 0, 'samuel5', '2001-10-02', 'samuel309', '2010-10-17'); -INSERT INTO "public"."userinfo" VALUES ('TS624710039779', '青木樹', 1, '+44 (1865) 81 3798', 1, '050399913231786950', 'Flat 32, 416 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1996-09-27', 0, 0, 'itsuki1210', '2003-01-12', 'aokits', '2020-02-25'); -INSERT INTO "public"."userinfo" VALUES ('TS531110396146', '苏云熙', 1, '+81 90-8167-4113', 2, '924020549633537681', 'Rm. 17, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-05-12', 0, 0, 'yunxis10', '2014-05-09', 'yunxsu', '2016-07-18'); -INSERT INTO "public"."userinfo" VALUES ('TS287098533807', 'Joanne Anderson', 1, '+1 718-474-0762', 2, '819627841416813937', '268 Flatbush Ave Suite 40, Brooklyn, NY 11225, United States', '1996-10-01', 0, 0, 'andersonjoanne', '2017-03-04', 'anjoanne16', '2003-12-10'); -INSERT INTO "public"."userinfo" VALUES ('TS721019386407', 'Janet Rodriguez', 0, '+1 614-421-6930', 4, '339089929833780270', '605 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1987-06-25', 0, 0, 'rodja', '2000-08-11', 'jarod3', '2005-03-01'); -INSERT INTO "public"."userinfo" VALUES ('TS861158415591', '松本悠人', 1, '+86 28-1810-4332', 0, '054165479907958714', '中国成都市成华区玉双路6号90号49号楼', '1990-06-12', 0, 0, 'mayut', '2021-12-31', 'mayut', '2019-07-08'); -INSERT INTO "public"."userinfo" VALUES ('TS082204969526', 'Mildred Stone', 0, '+86 755-0242-3959', 4, '266622930627123670', 'Room 31, 496 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-04-24', 0, 0, 'stonemildred5', '2005-05-09', 'mis', '2016-07-12'); -INSERT INTO "public"."userinfo" VALUES ('TS218038034892', 'Bobby Miller', 0, '+86 20-881-2712', 1, '033741694117305972', '中国广州市海珠区江南西路885号15室', '1986-08-05', 0, 0, 'bmiller', '2018-06-20', 'bm1211', '2010-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS563553181959', 'Alfred Ward', 0, '+44 (20) 3252 1332', 1, '806109579607930970', 'Unit 36, Oxford Eco Centre, 708 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-09', 0, 0, 'alfredwar', '2022-03-01', 'alfred1', '2000-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS539602109463', '汤睿', 1, '+86 133-3584-1646', 3, '817737587048502352', '中国东莞环区南街二巷697号49栋', '1989-10-16', 0, 0, 'tangrui', '2019-05-20', 'ruitang530', '2011-07-14'); -INSERT INTO "public"."userinfo" VALUES ('TS360256507581', 'Leonard Hunt', 1, '+86 760-127-4295', 1, '923432177437259564', 'Room 10, 123 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-06-11', 0, 0, 'hunt217', '2013-03-25', 'leonhunt', '2021-12-14'); -INSERT INTO "public"."userinfo" VALUES ('TS543847691560', '酒井花', 1, '+44 (161) 813 8023', 1, '190740417342211424', 'Block 50, 72 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-03-03', 0, 0, 'sakaha', '2009-01-03', 'hanas7', '2002-03-23'); -INSERT INTO "public"."userinfo" VALUES ('TS877310331659', '莫世榮', 0, '+81 70-9057-7378', 0, '646665050764707784', '日本東京渋谷区代々木二丁目3番12号35階', '1996-08-21', 0, 0, 'moksw', '2002-07-22', 'moksa60', '2009-07-10'); -INSERT INTO "public"."userinfo" VALUES ('TS168674626539', '小島健太', 0, '+44 5943 068886', 2, '940985330987556913', 'No.19 Main building, 958 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-09-10', 0, 0, 'kentako6', '2021-05-25', 'kojima806', '2005-08-13'); -INSERT INTO "public"."userinfo" VALUES ('TS424118786445', 'Ray Morales', 0, '+81 80-2518-4865', 1, '692590734862418206', 'Rm. 6, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-24', 0, 0, 'ray1', '2008-02-21', 'rmorales', '2016-02-22'); -INSERT INTO "public"."userinfo" VALUES ('TS915499303084', '梅永權', 1, '+44 5050 687859', 3, '851091794459410246', 'Unit 23, Oxford Eco Centre, 855 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-12-29', 0, 0, 'wkm1130', '2021-09-18', 'muiwingkuen527', '2016-05-22'); -INSERT INTO "public"."userinfo" VALUES ('TS157697282952', '池田大和', 0, '+86 10-760-7071', 3, '281297851188152067', '中国北京市东城区东单王府井东街463号33栋', '1998-01-28', 0, 0, 'yamato612', '2019-03-27', 'yamato9', '2016-10-31'); -INSERT INTO "public"."userinfo" VALUES ('TS981566373220', '薛嘉欣', 1, '+81 80-1913-6649', 3, '260231252870218459', '日本おおさかし西成区出城一丁目1番7号12階', '1995-01-18', 0, 0, 'karyansit', '2016-09-06', 'skaryan', '2006-02-24'); -INSERT INTO "public"."userinfo" VALUES ('TS068033846669', '孫家輝', 1, '+81 90-1252-8724', 2, '011289092854126954', '日本東京中央区銀座三丁目12番16号38号室', '1987-10-14', 0, 0, 'hkf75', '2006-09-28', 'hsukafai', '2006-11-19'); -INSERT INTO "public"."userinfo" VALUES ('TS423334651744', '小林悠人', 0, '+81 66-669-1844', 2, '523456130675385123', '日本おおさかし平野区加美東四丁目9番13号23階', '1997-08-10', 0, 0, 'yutkobayashi', '2002-01-04', 'yutokobayashi', '2007-04-24'); -INSERT INTO "public"."userinfo" VALUES ('TS271321501585', '青木蓮', 0, '+81 3-4519-8915', 2, '846577743936437865', 'Rm. 49, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-06-17', 0, 0, 'aoki5', '2019-01-08', 'raoki', '2013-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS045670031855', '桜井一輝', 0, '+81 90-6296-5692', 0, '171429221484577403', '日本おおさかし平野区加美東四丁目9番17号7階', '1994-09-16', 0, 0, 'ikkisakurai129', '2001-08-27', 'ikkisakurai416', '2004-09-23'); -INSERT INTO "public"."userinfo" VALUES ('TS535717266127', '元思妤', 1, '+1 213-322-4670', 1, '380772937161820337', '943 Sky Way Apt 33, Los Angeles, CA 90043, United States', '1995-05-31', 0, 0, 'yuesy88', '2011-04-21', 'yuenszeyu', '2002-12-18'); -INSERT INTO "public"."userinfo" VALUES ('TS947195745485', 'Marjorie Schmidt', 0, '+1 614-108-4144', 4, '926038262973630078', '419 Diplomacy Drive Apt 9, Columbus, GA 43228, United States', '1986-03-12', 0, 0, 'marjorie10', '2012-08-28', 'marjorieschm', '2010-03-22'); -INSERT INTO "public"."userinfo" VALUES ('TS180483694370', '尹家輝', 1, '+86 168-6981-7111', 4, '833776497615939427', '中国东莞珊瑚路223号33楼', '1987-10-06', 0, 0, 'kfy', '2003-09-30', 'yin7', '2005-01-10'); -INSERT INTO "public"."userinfo" VALUES ('TS123420383359', '曾云熙', 0, '+1 718-658-3061', 2, '411670909969401896', '388 Columbia St Suite 43, Brooklyn, NY 11231, United States', '1987-09-26', 0, 0, 'yuzeng', '2021-07-07', 'zyun09', '2021-04-14'); -INSERT INTO "public"."userinfo" VALUES ('TS853704634564', '任浩然', 0, '+81 70-3277-0363', 3, '785301348653898569', 'Rm. 36, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1990-01-30', 0, 0, 'hoyin9', '2020-06-09', 'yamhy7', '2007-10-03'); -INSERT INTO "public"."userinfo" VALUES ('TS877860380626', '遠藤美緒', 0, '+1 614-140-4655', 1, '544058440026353729', '364 Tremont Road Apt 3, Columbus, GA 43212, United States', '1996-04-03', 0, 0, 'endo9', '2000-09-13', 'endomio', '2000-07-27'); -INSERT INTO "public"."userinfo" VALUES ('TS573362709839', '佐々木葵', 0, '+86 146-4239-9668', 2, '749346919822522282', '29F, 16 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-06-13', 0, 0, 'sasakiaoi2', '2013-08-30', 'sasaki122', '2019-05-17'); -INSERT INTO "public"."userinfo" VALUES ('TS722552914991', '橋本樹', 0, '+86 165-2023-7134', 2, '213280961863322422', '中国北京市海淀区清河中街68号873号华润大厦36室', '1996-05-06', 0, 0, 'hashimotoi', '2012-10-19', 'ith3', '2018-05-03'); -INSERT INTO "public"."userinfo" VALUES ('TS007526828178', '杨杰宏', 0, '+86 141-0422-5667', 1, '076444939695479983', '中国上海市徐汇区虹桥路175号31号楼', '1986-11-06', 0, 0, 'jiehongyang1117', '2007-07-02', 'yjiehong', '2007-06-14'); -INSERT INTO "public"."userinfo" VALUES ('TS553449279225', '成心穎', 1, '+1 838-371-4251', 2, '694794433839856621', '112 Broadway 3rd Floor, Albany, NY 12207, United States', '1993-05-25', 0, 0, 'shing3', '2011-09-26', 'shing10', '2001-05-15'); -INSERT INTO "public"."userinfo" VALUES ('TS403533871308', '史子异', 0, '+86 184-8565-0873', 3, '577991713197999143', 'Room 9, 109 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-09-19', 0, 0, 'shiziyi910', '2015-11-28', 'shizi', '2005-01-24'); -INSERT INTO "public"."userinfo" VALUES ('TS006292728074', '高田翼', 1, '+86 194-2940-5925', 4, '651566571905851983', '中国中山乐丰六路899号40室', '1995-04-01', 0, 0, 'ttak', '2004-03-13', 'tsubasatakad1206', '2014-09-25'); -INSERT INTO "public"."userinfo" VALUES ('TS466007180352', '平野湊', 1, '+81 90-5341-1140', 4, '920281919030806739', '38F, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-09-18', 0, 0, 'hirm1950', '2013-12-18', 'minatohi1978', '2004-10-19'); -INSERT INTO "public"."userinfo" VALUES ('TS305850239180', '宋睿', 1, '+81 74-950-9344', 0, '492459315289151466', 'Rm. 7, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1988-09-27', 0, 0, 'rui53', '2012-09-15', 'ruisong', '2019-02-19'); -INSERT INTO "public"."userinfo" VALUES ('TS684517602537', '野村光莉', 0, '+86 10-5317-5445', 1, '093082463812152903', '中国北京市海淀区清河中街68号735号36楼', '1999-01-08', 0, 0, 'hikari03', '2002-06-11', 'nomurahikar', '2015-10-06'); -INSERT INTO "public"."userinfo" VALUES ('TS781860118836', 'Cynthia Porter', 0, '+86 755-8186-7067', 2, '603651636704688338', 'Room 39, 921 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-02-17', 0, 0, 'portcyn2020', '2016-12-23', 'porterc206', '2001-01-25'); -INSERT INTO "public"."userinfo" VALUES ('TS412633816177', 'Marjorie Nguyen', 1, '+81 80-2063-5012', 2, '136267009068564439', '20F, 5-4-4 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-12-23', 0, 0, 'marn', '2020-03-28', 'marjn', '2013-11-22'); -INSERT INTO "public"."userinfo" VALUES ('TS087159933970', '胡嘉伦', 1, '+81 52-679-8427', 2, '803540270467304392', 'Rm. 31, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-09-11', 0, 0, 'jihu', '2014-03-19', 'hujial', '2014-11-13'); -INSERT INTO "public"."userinfo" VALUES ('TS878694845413', '汤安琪', 1, '+81 52-848-4625', 3, '249154644886372172', '45-kai, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-07', 0, 0, 'tangan', '2006-02-20', 'anqit806', '2018-12-07'); -INSERT INTO "public"."userinfo" VALUES ('TS146348541580', '橋本彩乃', 1, '+81 70-4225-8332', 0, '712519416947178220', '17F, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1987-12-07', 0, 0, 'ayanohashimoto1226', '2001-01-08', 'hashimotoa', '2006-12-19'); -INSERT INTO "public"."userinfo" VALUES ('TS926053307063', 'Ralph Reed', 0, '+44 7468 513918', 4, '674740319983741180', 'No.46 Main building, 810 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-04-20', 0, 0, 'ralpreed', '2020-06-11', 'reedr', '2020-05-10'); -INSERT INTO "public"."userinfo" VALUES ('TS822461600037', '李安琪', 0, '+86 28-563-7903', 3, '469286030501864801', '中国成都市成华区双庆路149号17室', '1988-10-12', 0, 0, 'leeok', '2019-11-21', 'oklee6', '2012-05-28'); -INSERT INTO "public"."userinfo" VALUES ('TS262309268266', '方世榮', 1, '+86 769-572-6686', 1, '752878073973834050', '中国东莞珊瑚路347号48楼', '1996-02-17', 0, 0, 'saiwingfon', '2009-07-05', 'fonsaiwing', '2021-05-11'); -INSERT INTO "public"."userinfo" VALUES ('TS556766143797', 'Wanda Murphy', 0, '+44 7665 299458', 2, '574312091262321304', 'No.1 Main building, 682 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1995-07-06', 0, 0, 'murw', '2007-01-27', 'murphywanda127', '2018-11-08'); -INSERT INTO "public"."userinfo" VALUES ('TS-202200141', '小优', 0, 'Z7aKblOdOULSmO21jJs4IsA2wUHFUwm6UvdgtuB/wv97xH9wL0O/iYqeAEMdZfPm9YW2a3NhTM+1b4R+FUb2oJ6H0UAKvXHCc9kdYqIvQsI9yl5W9YcNWKFyMIqVPVgJavz311inZWLzMx8f1curueHGf/xWctqI95F7gqGw3tQ=·Fi0agF0DHDHa☆D0☆0☆F(b34b116d0691f721)', 0, 'HEACqzhKX8FE3Rij7wbpnQtU9ZhJc6J7LkSJ0zkhkYv08226EADCPrjT8OrJ+vbxoOyr/jGHZpsWgmlxIrZQIBcWcNELXnWgTwoTgHGsV1xSRAMMc01uZa00MPnByDJWVL9lu2HRr4U2fAS+4dHfCtzUa/09fUh27lUYOgej+IA=·Fi0agF0DHDg☆BDi0DiF(6dc6398f5b0a2663)', '广东省', '1995-12-14', 0, 0, 'WK010', '2022-03-13', NULL, '0001-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS-202200136', '路三强', 1, 'hFxwk9iEl220yf/BbiTKcsqfUS2O4fIM2aJ/jr7hSG0oAhUPYMzLcBmd2Y4ueJHT3bPhnzR1NExGt1zBZjw0E8yopzig8J+HUyOJbdZUAwxw0lq1wKiyxNQxNeqC17c22+tUjrJqOL49+JB5Y762A6FY/vOvtA0sWhTlBAYzBEw=·Fi0BaigigaHcFgcaciB(3b1b9dd4e2d17c65)', 4, '4eJan7AJXgytIw2DYAbAVf8cAHkjbJtm+jLcrMrZ/N0xTNBJI/bDYabBRW94nbAHM9WUpN6VirUoPowBCZqPRDq2p3kg4Udcxik7W39kLpgvM/FzBRzat2WYBX6h7ghVDkLXrzXRP/n7sSsK66ofGBGCYRHmdWHwogifbpnNkYo=·Fi0Baigigag☆BHD☆caB(be460370b9c35ac9)', '广东省茂名市信宜县', '1988-12-14', 0, 0, 'WK010', '2022-02-26', 'WK010', '2022-03-14'); -INSERT INTO "public"."userinfo" VALUES ('TS-202200157', '测试数据库', 1, 'ick03wvvih/c4jgaianmRZK7O9hyDfxYfa1Ax+prhujRYrxu45GbhggXqY1oSkJ20o8XM+548jwzVUC4mycLtvACuKLDUux/JqsYiI5B6Kz6YMvOamS9GG4B4K8JbxylD2nVyev/bpk/SHykUnoW6JYmY7g/O2psN88Fs7L8N4c=·Fic00FHHHgB0cDgi☆☆B(6054d4c5ef8f99fe)', 0, 'hIfUG+Sllx8bHn3ASpL1UtLvJBBnlXga2xDkBNnT0sP5ieITWXVi6QmZ5T6LSVZvUpCcDLidXp6cOwbtcWVnb25nd+/N9JQXO+tnRor7wanIK9yq8kiRcDu9UVxtMCjs8V+95+uWhVxn6/pUc8iP9XhJLVfNuKoU/CsvEyKnEMQ=·Fic00FHHHgaa☆ciiaFH(85afd5a43ee0160d)', '广东省茂名市信宜县', '1999-07-12', 0, 0, 'WK010', '2022-05-30', NULL, '0001-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS-20220099', '雷电芽衣', 0, 'd1WKY5Djs6OZG4P9T8ush1uS4WS9jL3llu7S3Yit+Zpva8eNpTODxtfJoQnjYbRwFo3yQn5uK61WGF320TANKkOVOgGsfEPvGDX/5JWAHV3ttw8+iKbLzH0L3uQIzs6WI74ktGfRaSbPxdJ/PhwZvfHkZob+aMvVTjmw1ZBEefw=·FiiBaHiic☆gHHg☆BHiF(940e360b8f6386f8)', 4, 'cl5IEpTMw9VNUTC9lTZyLpeTjDiRKxR0MJMgeZJDYf2Qda+LZbaWAMEkFd6YWRu/AXFqd9N8AeXsNrEiSu+DAxwKCjgro9w88UmgK2eh3J27k84clBxQ/33G29vByeLzKYF/ICpTgEkSd2691rqMKj9YsSQGrRT8V8qaz1vT2+0=·FiiBaHiic☆gc00cBFD0(a0a4996b0ea50c89)', '东京', '1905-02-14', 0, 0, 'WK010', '2022-02-02', 'WK010', '2022-11-18'); -INSERT INTO "public"."userinfo" VALUES ('TS-202200165', '卡卡西', 1, 'W/BVS6jOjo2Qbv+39JDVpbrBwGvq5QrPxQaMyHOtqlJjDDR62zn8JDH+XhhsEjRpmlKWFC/YAm/gOPj4NZM3OFToeRS1Uo5G54Zr6WLEbGYqUziMp+dwOm65MT6pQtYGpmfwokq4+EPJK5qt7/4DHTPvZfFQ4GRcoVWASbCbZ84=·FiiBaiaac0BBaFgDDiF(85de1f8139bac816)', 4, 'V5mVwqn6bQkfw+QVZy1vGA/R5qGeLhNvw2YwKaVlPGM+3U1HahDSy5RCCKI9SRgLJodNNUOx2Rvr6n++H7PISxdtb6+iN8b1vgLSJaIvxk/nZYHEovoI/JV+d8qimCkbZonrzg0XbEGSqqT83lJhzmhdYlREnOEp5e8gOodXCGw=·FiiBaiaac0aFgaDH☆DD(9d4eecaeac9c4e0d)', '木叶村', '2020-11-24', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); -INSERT INTO "public"."userinfo" VALUES ('TS-202200166', '新海诚', 1, 'Nu0i7h3QKPPHZEHyo5U2AyZTmcfITqU8cyTToFM9SMZKmT6u+b+xnzT+rbmzHbwmLEtKdBCgZyoUNO9+S0jQruKIwBFplHV9i+k586SBZvm8RooSezQsyYwrZggkGlCv6xU+R6aGmN8NkGOSDcFcoAjJ02pHxR5QcrK2QWdnSyY=·FiiBaiaDFaFig☆aiFaF(50c21fc296138b4d)', 4, 'BAyEAY+Mx66U1Rhb8jXEgt2O7Yg3TKu71v+SE4n581+mH5Z31TulF0ax+Olkhjh6sLiQ3YJURzGHWRn1Tl/pIb47wTv5elcSECj0gWvMYiTWFnfHYS1tnTt4oIMstxcLulZoWyCdVXACnsR+shkAf6ENL8JLPUw8337cShVF+eU=·FiiBaiaDFaF☆acHBBgB(a76bb1bd976ee509)', '大阪', '2020-11-24', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); - --- ---------------------------- --- Table structure for usertype --- ---------------------------- -DROP TABLE IF EXISTS "public"."usertype"; -CREATE TABLE "public"."usertype" ( - "UserType" int4 NOT NULL, - "TypeName" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."usertype"."UserType" IS '客户类型ID'; -COMMENT ON COLUMN "public"."usertype"."TypeName" IS '客户类型名称'; -COMMENT ON COLUMN "public"."usertype"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."usertype"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."usertype"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."usertype"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."usertype"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."usertype" IS '用户类型表'; - --- ---------------------------- --- Records of usertype --- ---------------------------- -INSERT INTO "public"."usertype" VALUES (0, '普通用户', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."usertype" VALUES (1, '钻石会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."usertype" VALUES (2, '白金会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."usertype" VALUES (3, '黄金会员', 0, NULL, NULL, NULL, NULL); - --- ---------------------------- --- Table structure for vip_rule --- ---------------------------- -DROP TABLE IF EXISTS "public"."vip_rule"; -CREATE TABLE "public"."vip_rule" ( - "id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "rule_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, - "rule_name" varchar(128) COLLATE "pg_catalog"."default" NOT NULL, - "rule_value" numeric(32,2) NOT NULL, - "type_id" int4 NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."vip_rule"."id" IS '索引ID'; -COMMENT ON COLUMN "public"."vip_rule"."rule_id" IS '会员规则流水号'; -COMMENT ON COLUMN "public"."vip_rule"."rule_name" IS '会员规则名称'; -COMMENT ON COLUMN "public"."vip_rule"."rule_value" IS '预设数值'; -COMMENT ON COLUMN "public"."vip_rule"."type_id" IS '会员等级'; -COMMENT ON COLUMN "public"."vip_rule"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."vip_rule"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."vip_rule"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."vip_rule"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."vip_rule"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."vip_rule" IS '会员等级规则表'; - --- ---------------------------- --- Records of vip_rule --- ---------------------------- -INSERT INTO "public"."vip_rule" VALUES (1, 'VR-202107170003', '升级到钻石会员的规则', 70000.00, 1, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO "public"."vip_rule" VALUES (2, 'VR-202107170007', '升级到黄金会员的规则', 50000.00, 3, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO "public"."vip_rule" VALUES (3, 'VR-2021071700010', '升级到白金会员的规则', 30000.00, 2, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO "public"."vip_rule" VALUES (0, 'VR-2022022600052', '尊贵会员', 150000.00, 1, 0, 'admin', '2022-02-26', NULL, '0001-01-01'); - --- ---------------------------- --- Table structure for worker --- ---------------------------- -DROP TABLE IF EXISTS "public"."worker"; -CREATE TABLE "public"."worker" ( - "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerName" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerBirthday" timestamp(6) NOT NULL, - "WorkerSex" int4 NOT NULL, - "WorkerTel" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerClub" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerNation" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerAddress" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerPosition" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "CardID" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerPwd" varchar(600) COLLATE "pg_catalog"."default", - "WorkerTime" timestamp(6) NOT NULL, - "WorkerFace" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerEducation" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."worker"."WorkerId" IS '工号'; -COMMENT ON COLUMN "public"."worker"."WorkerName" IS '名字'; -COMMENT ON COLUMN "public"."worker"."WorkerBirthday" IS '出生日期'; -COMMENT ON COLUMN "public"."worker"."WorkerSex" IS '性别'; -COMMENT ON COLUMN "public"."worker"."WorkerTel" IS '电话'; -COMMENT ON COLUMN "public"."worker"."WorkerClub" IS '部门'; -COMMENT ON COLUMN "public"."worker"."WorkerNation" IS '民族'; -COMMENT ON COLUMN "public"."worker"."WorkerAddress" IS '居住地址'; -COMMENT ON COLUMN "public"."worker"."WorkerPosition" IS '职位'; -COMMENT ON COLUMN "public"."worker"."CardID" IS '证件号码'; -COMMENT ON COLUMN "public"."worker"."WorkerPwd" IS '系统密码'; -COMMENT ON COLUMN "public"."worker"."WorkerTime" IS '入职时间'; -COMMENT ON COLUMN "public"."worker"."WorkerFace" IS '面貌'; -COMMENT ON COLUMN "public"."worker"."WorkerEducation" IS '学历'; -COMMENT ON COLUMN "public"."worker"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."worker"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."worker"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."worker"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."worker"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."worker" IS '员工表'; - --- ---------------------------- --- Records of worker --- ---------------------------- -INSERT INTO "public"."worker" VALUES ('WK018', '十二月', '1929-10-11 00:00:00', 0, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK017', '十一月', '1939-10-11 00:00:00', 0, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK016', '十月', '1949-10-11 00:00:00', 0, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK015', '十元', '1959-10-11 00:00:00', 1, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK014', '九月', '1969-10-11 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK013', '八月', '1979-10-11 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK011', '六月', '1900-01-18 00:00:00', 1, '', 'D-002', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK009', '老铁', '1989-12-05 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK012', '七月', '1989-10-11 00:00:00', 1, '', 'D-002', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00', 0, '', 'D-008', 'N-00001', '市区', 'P-2021001', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-04-10'); -INSERT INTO "public"."worker" VALUES ('WK007', '罗良建', '2000-12-05 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO "public"."worker" VALUES ('WK024', '四北', '1996-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK023', '三男', '1995-10-11 00:00:00', 1, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00', 1, '', 'D-002', 'N-00001', '南屏', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-18'); -INSERT INTO "public"."worker" VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00', 1, 'B6CCShOF+ezaHM3LdXEDWPmWHBRpYmEl0DVl/p/Ate8D/LT88ksL9wa35D6vkQqzvnAtzUXkDT5Rpavw8LWgceXalSgDTcEPsopL+KbiHw/1NlTxCeRB4ldpj5Djwi57oRBgzqH7h053DYNmtgLPuGV3DcsDgSawRXY1y1ziYrk=·FHHiDagiBgg0Bg0DaBH(a1226e938724d985)', 'D-001', 'N-00001', '广东珠海', 'P-0001', '', 'admin', '2011-04-20 00:00:00', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-02-07'); -INSERT INTO "public"."worker" VALUES ('WK033', '沙宣', '1979-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK032', '瞎小', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK031', '阿力', '1959-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK030', '阿狸', '1949-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK029', '阿里', '1939-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK028', '支付宝', '1929-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK027', '余额宝', '1919-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK025', '花呗', '1997-10-11 00:00:00', 0, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:20:31', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK020', '十五年', '1992-10-11 00:00:00', 0, '', 'D-006', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK019', '十四年', '1911-10-11 00:00:00', 0, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00', 1, '', 'D-202200114', 'N-00001', '市区', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-01-31'); -INSERT INTO "public"."worker" VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00', 1, '', 'D-006', 'N-00001', '井岸', 'P-0001', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO "public"."worker" VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00', 1, '', 'D-005', 'N-00001', '斗门', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO "public"."worker" VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK001', '谭国平', '1999-12-05 00:00:00', 1, '', 'D-004', 'N-00001', '红旗', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-16'); -INSERT INTO "public"."worker" VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00', 1, '', 'D-001', 'N-00001', '金湾', 'P-0003', '', '123456', '2020-07-05 02:18:19', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:16:44', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('Lam', '阿隆', '1969-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:21:52', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('Huong', '阿香', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:17:25', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('Hien', '阿賢', '1969-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:19:53', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK202102004', '潞州', '2020-11-24 22:50:37', 1, '4AEE3E28DF37EA1AF64BD636ECA59DCB', 'D-008', 'N-00007', '广东珠海', 'P-0003', '79D8861186EB60E3611CD4A5D0BCAE', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK202102007', '江小白', '1993-07-20 00:00:00', 1, 'A89CDE93F692F546F0BEC375DC9E60FB', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '3D7640EF7C9B756E75C276FF9C8D233', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, 'admin', '2021-02-14', 'admin', '2021-02-14'); -INSERT INTO "public"."worker" VALUES ('WK775', '凌峰', '1995-07-14 00:00:00', 1, '', 'D-003', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-05-04 12:57:15', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK2021040024', '赤羽业', '1999-07-20 00:00:00', 1, '', 'D-011', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00007', 0, 'admin', '2021-04-18', NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK034', '沙县', '1989-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('Xingxue', '興學', '1999-07-20 00:00:00', 1, '', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:53', '团员', 'E-00005', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK388', '张三', '1998-06-27 00:00:00', 1, 'A+XROKGquR9JRSlRmWEIzmz/yA5BvTK8jbGUg3bAT7S3Qc3oxcsJlftz4r45JKDOoP45Ip+Mh7C0DhRLsr8z0GJ/NAdneBkOtKZk1j686EeIMueXRphpU0/hRC4m0aISGSNdn8wr5KFp7U8k/uLdJgfBAgVloy3rAPSiICK66sE=·FHHgci☆BciiHiccHaaB(fc82c054c807242a)', 'D-002', 'N-00001', '广西壮族自治区防城港市上思县', 'P-0003', '', '123456', '2020-08-20 09:33:45', '群众', 'E-00005', 0, NULL, NULL, 'admin', '2022-02-01'); -INSERT INTO "public"."worker" VALUES ('WK2021040026', '古河渚', '1996-12-15 00:00:00', 0, 'TqXplZEAJiCJ34jERPTDwnH4vcojLfOX6isZGyHe1M7ThNEiTAa7ZtHrmstzF25S5YjQR4eCbr3Gy+V8qdpQJqn7jh4Rn9vXnzneCBCP5WsvFC+wpoaILCCOpeOrgkZfBt36itg2rhV6h/FT4yrX7wAHly1WFxW1WVGawfAQEZY=·FHHgciDaFB0DgH0cciB(c2ae638db2d0dd83)', 'D-010', 'N-00001', '大阪', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); -INSERT INTO "public"."worker" VALUES ('WK2021040025', '冈崎朋也', '1999-07-20 00:00:00', 1, 'bEJDqDv3W/o1p69Y2JXPj5H4kCninKF0LrnVJH9plJyOZAXEOaWTolwnnM99GQSEorYGVfZNYtBqt2ohO4vKO6OrgWtBTg4Kh1KjKL6wrBEK42mghcursCod6G73fdbQITFRHMSJmhK68PQNbi/tVw0EUn4aGsxsy6THx2KsK6A=·FHHgciDFiHcHcgDiaB0(2dfb79318b734469)', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); -INSERT INTO "public"."worker" VALUES ('WK022', '二南', '1994-10-11 00:00:00', 1, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK2022020042', '夜莺', '1988-12-13 00:00:00', 0, 'YJmmD35b13Ojc2UJPXXntwk+xpnKSTsCqzkzJBkbsadc3skEyGqlVIJUFU4Em0tjbv0IsTJnLskVB8VjZ95YyhKRJcksmdNXHyR1PF6dvaJ8nv9FHQ93V66I06ObgVXB+/ysSOAuL7DM3Ndj5UxgiAlK2DDE1eKjNttliIq6zvg=·FHHgcaFc☆F☆a☆iga0gB(376e5910042923d5)', 'D-202200114', 'N-00009', '广东省茂名市信宜县', 'P-2021001', 'DjM0t5DO0oIckI4JlN+z9Bkosi/SV0mQllIT6U3515hzns4FSRExxunfW9BEbQoldRlKoifXFXnKz6sulj5rf0yi1lPl+plA+NQ0LA8goCiQAyfEUEBwbCOgvhPjKbptdS3R3y46v4AEy6gcaYS3A4Zrc3m/ipqD2xXchsKuBrM=·FHHgcaFc☆FDa☆c0cFH0(ee00c65e12fee5a2)', '123456', '2020-11-24 22:50:37', '群众', 'E-00005', 0, 'admin', '2022-02-01', NULL, NULL); -INSERT INTO "public"."worker" VALUES ('WK021', '一楠', '1993-10-11 00:00:00', 0, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); - --- ---------------------------- --- Table structure for workercheck --- ---------------------------- -DROP TABLE IF EXISTS "public"."workercheck"; -CREATE TABLE "public"."workercheck" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkerNo" varchar(20) COLLATE "pg_catalog"."default", - "CheckTime" timestamp(6), - "CheckWay" varchar(80) COLLATE "pg_catalog"."default", - "CheckState" int4, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."workercheck"."Id" IS '自增长ID'; -COMMENT ON COLUMN "public"."workercheck"."WorkerNo" IS '工号'; -COMMENT ON COLUMN "public"."workercheck"."CheckTime" IS '打卡时间'; -COMMENT ON COLUMN "public"."workercheck"."CheckWay" IS '打卡方式'; -COMMENT ON COLUMN "public"."workercheck"."CheckState" IS '打卡状态'; -COMMENT ON COLUMN "public"."workercheck"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."workercheck"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."workercheck"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."workercheck"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."workercheck"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."workercheck" IS '员工打卡表'; - --- ---------------------------- --- Records of workercheck --- ---------------------------- -INSERT INTO "public"."workercheck" VALUES (66, 'WK010', '2022-02-21 20:31:19', '系统界面', 0, 0, 'WK010', '2022-02-21', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (72, 'WK010', '2022-02-22 23:16:46', '系统界面', 0, 0, 'WK010', '2022-02-22', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (75, 'WK010', '2022-02-25 22:13:30', '系统界面', 0, 0, 'WK010', '2022-02-25', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (86, 'WK010', '2022-02-26 12:28:59', '系统界面', 0, 0, 'WK010', '2022-02-26', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (211, 'WK010', '2022-02-27 01:10:54', '系统界面', 0, 0, 'WK010', '2022-02-27', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (225, 'WK010', '2022-02-28 00:03:49', '系统界面', 0, 0, 'WK010', '2022-02-28', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (251, 'WK010', '2022-03-13 14:53:36', '系统界面', 0, 0, 'WK010', '2022-03-13', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (279, 'WK010', '2022-03-14 19:54:55', '系统界面', 0, 0, 'WK010', '2022-03-14', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (295, 'WK010', '2022-03-15 19:38:47', '系统界面', 0, 0, 'WK010', '2022-03-15', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (298, 'WK010', '2022-03-16 23:08:10', '系统界面', 0, 0, 'WK010', '2022-03-16', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (300, 'WK010', '2022-03-17 23:14:22', '系统界面', 0, 0, 'WK010', '2022-03-17', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (303, 'WK010', '2022-03-20 16:05:51', '系统界面', 0, 0, 'WK010', '2022-03-20', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (310, 'WK010', '2022-03-22 16:46:34', '系统界面', 0, 0, 'WK010', '2022-03-22', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (312, 'WK010', '2022-03-23 19:45:31', '系统界面', 0, 0, 'WK010', '2022-03-23', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (314, 'WK010', '2022-03-24 23:03:07', '系统界面', 0, 0, 'WK010', '2022-03-24', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (318, 'WK010', '2022-03-26 20:44:57', '系统界面', 0, 0, 'WK010', '2022-03-26', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (320, 'WK010', '2022-03-28 23:05:26', '系统界面', 0, 0, 'WK010', '2022-03-28', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (326, 'WK010', '2022-03-29 15:26:24', '系统界面', 0, 0, 'WK010', '2022-03-29', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (333, 'WK010', '2022-03-30 19:13:08', '系统界面', 0, 0, 'WK010', '2022-03-30', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (337, 'WK010', '2022-03-31 23:11:43', '系统界面', 0, 0, 'WK010', '2022-03-31', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (340, 'WK010', '2022-04-03 12:48:31', '系统界面', 0, 0, 'WK010', '2022-04-03', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (368, 'WK010', '2022-04-06 15:15:19', '系统界面', 0, 0, 'WK010', '2022-04-06', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (380, 'WK010', '2022-04-07 16:19:50', '系统界面', 0, 0, 'WK010', '2022-04-07', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (388, 'WK010', '2022-04-10 10:01:25', '系统界面', 0, 0, 'WK010', '2022-04-10', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (391, 'WK010', '2022-04-14 13:35:58', '系统界面', 0, 0, 'WK010', '2022-04-14', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (397, 'WK010', '2022-04-16 20:31:07', '系统界面', 0, 0, 'WK010', '2022-04-16', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (399, 'WK010', '2022-04-18 19:19:48', '系统界面', 0, 0, 'WK010', '2022-04-18', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (406, 'WK010', '2022-04-22 14:05:23', '系统界面', 0, 0, 'WK010', '2022-04-22', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (410, 'WK010', '2022-04-26 23:29:45', '系统界面', 0, 0, 'WK010', '2022-04-26', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (420, 'WK010', '2022-04-29 11:37:28', '系统界面', 0, 0, 'WK010', '2022-04-29', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (425, 'WK010', '2022-05-02 00:52:02', '系统界面', 0, 0, 'WK010', '2022-05-02', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (443, 'WK010', '2022-05-12 20:57:55', '系统界面', 0, 0, 'WK010', '2022-05-12', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (468, 'WK010', '2022-05-21 09:39:15', '系统界面', 0, 0, 'WK010', '2022-05-21', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (477, 'WK010', '2022-05-23 17:22:10', '系统界面', 0, 0, 'WK010', '2022-05-23', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (498, 'WK010', '2022-05-29 23:55:06', '系统界面', 0, 0, 'WK010', '2022-05-29', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (506, 'WK010', '2022-05-30 19:43:13', '系统界面', 0, 0, 'WK010', '2022-05-30', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (519, 'WK010', '2022-06-04 11:25:48', '系统界面', 0, 0, 'WK010', '2022-06-04', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (533, 'WK010', '2022-06-05 19:19:41', '系统界面', 0, 0, 'WK010', '2022-06-05', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (536, 'WK010', '2022-06-12 01:07:20', '系统界面', 0, 0, 'WK010', '2022-06-12', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (538, 'WK010', '2022-06-14 23:14:27', '系统界面', 0, 0, 'WK010', '2022-06-14', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (546, 'WK010', '2022-06-26 16:00:51', '系统界面', 0, 0, 'WK010', '2022-06-26', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (553, 'WK010', '2022-07-01 20:22:20', '系统界面', 0, 0, 'WK010', '2022-07-01', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (556, 'WK010', '2022-07-13 23:29:18', '系统界面', 0, 0, 'WK010', '2022-07-13', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (558, 'WK010', '2022-07-18 21:38:15', '系统界面', 0, 0, 'WK010', '2022-07-18', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (564, 'WK010', '2022-08-02 23:07:48', '系统界面', 0, 0, 'WK010', '2022-08-02', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (575, 'WK010', '2022-09-11 01:43:53', '系统界面', 0, 0, 'WK010', '2022-09-11', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (583, 'WK010', '2022-09-18 23:38:34', '系统界面', 0, 0, 'WK010', '2022-09-18', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (588, 'WK010', '2022-09-24 19:49:00', '系统界面', 0, 0, 'WK010', '2022-09-24', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (594, 'WK010', '2022-10-04 00:49:14', '系统界面', 0, 0, 'WK010', '2022-10-04', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (610, 'WK010', '2022-11-17 10:24:54', '系统界面', 0, 0, 'WK010', '2022-11-17', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (655, 'WK010', '2022-11-18 14:10:44', '系统界面', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (664, 'WK010', '2022-11-20 23:50:41', '系统界面', 0, 0, 'WK010', '2022-11-20', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (683, 'WK010', '2022-12-04 13:20:45', '系统界面', 0, 0, 'WK010', '2022-12-04', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (738, 'WK010', '2022-12-05 13:53:18', '系统界面', 0, 0, 'WK010', '2022-12-05', NULL, '0001-01-01'); -INSERT INTO "public"."workercheck" VALUES (774, 'WK010', '2022-12-06 09:20:10', '系统界面', 0, 0, 'WK010', '2022-12-06', NULL, '0001-01-01'); - --- ---------------------------- --- Table structure for workergoodbad --- ---------------------------- -DROP TABLE IF EXISTS "public"."workergoodbad"; -CREATE TABLE "public"."workergoodbad" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkNo" varchar(50) COLLATE "pg_catalog"."default", - "GBInfo" varchar(255) COLLATE "pg_catalog"."default", - "GBType" int4, - "GBOperation" varchar(200) COLLATE "pg_catalog"."default", - "GBTime" timestamp(6), - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."workergoodbad"."Id" IS '自增长ID'; -COMMENT ON COLUMN "public"."workergoodbad"."WorkNo" IS '工号'; -COMMENT ON COLUMN "public"."workergoodbad"."GBInfo" IS '奖惩信息'; -COMMENT ON COLUMN "public"."workergoodbad"."GBType" IS '奖惩类型'; -COMMENT ON COLUMN "public"."workergoodbad"."GBOperation" IS '录入人'; -COMMENT ON COLUMN "public"."workergoodbad"."GBTime" IS '录入时间'; -COMMENT ON COLUMN "public"."workergoodbad"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."workergoodbad"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."workergoodbad"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."workergoodbad"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."workergoodbad"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."workergoodbad" IS '员工奖惩记录表'; - --- ---------------------------- --- Records of workergoodbad --- ---------------------------- -INSERT INTO "public"."workergoodbad" VALUES (1, 'WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workergoodbad" VALUES (2, 'WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workergoodbad" VALUES (3, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO "public"."workergoodbad" VALUES (4, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO "public"."workergoodbad" VALUES (5, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO "public"."workergoodbad" VALUES (6, 'WK001', '666666666', 0, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-16', NULL, '0001-01-01'); - --- ---------------------------- --- Table structure for workerhistory --- ---------------------------- -DROP TABLE IF EXISTS "public"."workerhistory"; -CREATE TABLE "public"."workerhistory" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "StartDate" timestamp(6) NOT NULL, - "EndDate" timestamp(6) NOT NULL, - "Position" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, - "Company" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."workerhistory"."Id" IS '自增长ID'; -COMMENT ON COLUMN "public"."workerhistory"."WorkerId" IS '工号'; -COMMENT ON COLUMN "public"."workerhistory"."StartDate" IS '开始时间'; -COMMENT ON COLUMN "public"."workerhistory"."EndDate" IS '结束时间'; -COMMENT ON COLUMN "public"."workerhistory"."Position" IS '职务'; -COMMENT ON COLUMN "public"."workerhistory"."Company" IS '公司'; -COMMENT ON COLUMN "public"."workerhistory"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."workerhistory"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."workerhistory"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."workerhistory"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."workerhistory"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."workerhistory" IS '员工履历表'; - --- ---------------------------- --- Records of workerhistory --- ---------------------------- -INSERT INTO "public"."workerhistory" VALUES (1, 'WK010', '2005-03-05 00:00:00', '2008-03-05 00:00:00', '部门经理', '海湾大酒店', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workerhistory" VALUES (2, 'WK010', '2009-06-23 00:00:00', '2010-02-02 00:00:00', '总经理', '非凡大酒店', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workerhistory" VALUES (3, 'WK775', '2015-07-17 12:57:15', '2018-05-04 12:57:15', '财务会计', '非凡会计所', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workerhistory" VALUES (4, 'WK261', '2020-07-16 21:13:33', '2020-07-16 21:13:33', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workerhistory" VALUES (5, 'WK100', '2020-07-16 21:13:42', '2020-07-16 21:13:42', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workerhistory" VALUES (6, 'WK388', '2020-08-20 09:33:45', '2020-08-20 09:33:45', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO "public"."workerhistory" VALUES (7, 'WK202102004', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "public"."workerhistory" VALUES (8, 'WK202102007', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "public"."workerhistory" VALUES (9, 'WK2021040024', '2019-05-06 00:00:00', '2020-11-24 22:50:37', '餐饮专员', '比利王大酒店', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "public"."workerhistory" VALUES (10, 'WK2021040025', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "public"."workerhistory" VALUES (11, 'WK2021040026', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "public"."workerhistory" VALUES (12, 'WK2022020042', '2015-03-01 00:00:00', '2019-03-03 00:00:00', '质量测试主管', '园南计算机科技有限公司', 0, NULL, '0001-01-01', NULL, '0001-01-01'); - --- ---------------------------- --- Table structure for workerpic --- ---------------------------- -DROP TABLE IF EXISTS "public"."workerpic"; -CREATE TABLE "public"."workerpic" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkerId" varchar(17) COLLATE "pg_catalog"."default", - "Pic" varchar(255) COLLATE "pg_catalog"."default" -) -; -COMMENT ON COLUMN "public"."workerpic"."Id" IS '自增长流水号'; -COMMENT ON COLUMN "public"."workerpic"."WorkerId" IS '工号'; -COMMENT ON COLUMN "public"."workerpic"."Pic" IS '照片路径'; - --- ---------------------------- --- Records of workerpic --- ---------------------------- -INSERT INTO "public"."workerpic" VALUES (1, 'WK2022020042', 'a212e035-62f7-4b7b-be5e-c1cacce6ab94.png'); -INSERT INTO "public"."workerpic" VALUES (2, 'WK2021040026', '98d6f138-3f86-4d76-ae33-6d4cbc436a93.jpg'); -INSERT INTO "public"."workerpic" VALUES (3, 'WK2021040025', '0c0b42d9-41f2-487e-8ac8-fc686cb5f5fe.jpg'); -INSERT INTO "public"."workerpic" VALUES (4, 'WK2021040024', 'cacacfaa-fef5-4beb-a87a-e4d52e56ae50.jpg'); -INSERT INTO "public"."workerpic" VALUES (9, 'WK001', 'fb4bc453-29b8-495f-82d1-36e02f10e3d0.png'); -INSERT INTO "public"."workerpic" VALUES (10, 'WK002', '36caf9bd-f3db-4d8b-834d-cf6c39581de3.png'); -INSERT INTO "public"."workerpic" VALUES (206, 'Shenyou', 'cea9d22e-cd3e-4ea8-adfd-6d43e9e80698.png'); -INSERT INTO "public"."workerpic" VALUES (207, 'WK775', '68137280-5cec-473a-a0d8-6a8538a6daf3.png'); -INSERT INTO "public"."workerpic" VALUES (277, 'WK026', '3f7f0972-ccf8-4682-8c44-c4f4bd8b4105.png'); -INSERT INTO "public"."workerpic" VALUES (530, 'WK010', 'e0095072-2848-4097-94f7-a3cebc419783.png'); - --- ---------------------------- --- Table structure for wtinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."wtinfo"; -CREATE TABLE "public"."wtinfo" ( - "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "UseDate" timestamp(6) NOT NULL, - "EndDate" timestamp(6), - "WaterUse" numeric(6,2) NOT NULL, - "PowerUse" numeric(6,2) NOT NULL, - "Record" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "CustoNo" varchar(15) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date, - "WtiNo" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass) -) -; -COMMENT ON COLUMN "public"."wtinfo"."RoomNo" IS '房间编号'; -COMMENT ON COLUMN "public"."wtinfo"."UseDate" IS '开始时间'; -COMMENT ON COLUMN "public"."wtinfo"."EndDate" IS '结束时间'; -COMMENT ON COLUMN "public"."wtinfo"."WaterUse" IS '用水情况'; -COMMENT ON COLUMN "public"."wtinfo"."PowerUse" IS '用电情况'; -COMMENT ON COLUMN "public"."wtinfo"."Record" IS '记录人'; -COMMENT ON COLUMN "public"."wtinfo"."CustoNo" IS '客户编号'; -COMMENT ON COLUMN "public"."wtinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."wtinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."wtinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."wtinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."wtinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON COLUMN "public"."wtinfo"."WtiNo" IS 'ID'; -COMMENT ON TABLE "public"."wtinfo" IS '水电费信息表'; - --- ---------------------------- --- Records of wtinfo --- ---------------------------- -INSERT INTO "public"."wtinfo" VALUES ('BD002', '2022-03-29 00:00:00', '2022-03-29 16:46:33', 2.56, 48.00, 'admin', 'TS000299787414', 0, NULL, '0001-01-01', NULL, '0001-01-01', 674); -INSERT INTO "public"."wtinfo" VALUES ('BS002', '2022-03-28 00:00:00', '2022-12-04 13:20:17', 40.00, 750.00, 'admin', 'TS900880194151', 0, NULL, '0001-01-01', NULL, '0001-01-01', 681); -INSERT INTO "public"."wtinfo" VALUES ('BD009', '2022-03-13 00:00:00', '2022-12-05 22:56:12', 42.72, 801.00, 'admin', 'TS003574305322', 0, NULL, '0001-01-01', NULL, '0001-01-01', 744); -INSERT INTO "public"."wtinfo" VALUES ('BS003', '2022-03-20 00:00:00', '2022-12-05 23:01:11', 41.60, 780.00, 'admin', 'TS006957585451', 0, NULL, '0001-01-01', NULL, '0001-01-01', 747); -INSERT INTO "public"."wtinfo" VALUES ('BS010', '2022-03-28 00:00:00', '2022-12-05 23:01:32', 40.32, 756.00, 'admin', 'TS040379060037', 0, NULL, '0001-01-01', NULL, '0001-01-01', 749); -INSERT INTO "public"."wtinfo" VALUES ('BS011', '2022-03-14 00:00:00', '2022-12-05 23:02:39', 42.56, 798.00, 'admin', 'TS015253323658', 0, NULL, '0001-01-01', NULL, '0001-01-01', 752); -INSERT INTO "public"."wtinfo" VALUES ('HD004', '2022-03-13 00:00:00', '2022-12-05 23:03:15', 42.72, 801.00, 'admin', 'TS006957585451', 0, NULL, '0001-01-01', NULL, '0001-01-01', 754); -INSERT INTO "public"."wtinfo" VALUES ('BS014', '2022-03-14 00:00:00', '2022-12-06 08:52:22', 42.72, 801.00, 'admin', 'TS026428262056', 0, NULL, '0001-01-01', NULL, '0001-01-01', 757); -INSERT INTO "public"."wtinfo" VALUES ('BS007', '2022-03-15 00:00:00', '2022-12-06 08:52:44', 42.56, 798.00, 'admin', 'TS012832200601', 0, NULL, '0001-01-01', NULL, '0001-01-01', 759); -INSERT INTO "public"."wtinfo" VALUES ('BD007', '2022-03-13 00:00:00', '2022-12-06 08:53:36', 42.88, 804.00, 'admin', 'TS001535098782', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); -INSERT INTO "public"."wtinfo" VALUES ('BD014', '2022-03-13 00:00:00', '2022-12-06 08:53:49', 42.88, 804.00, 'admin', 'TS096263040047', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); -INSERT INTO "public"."wtinfo" VALUES ('BS008', '2022-03-13 00:00:00', '2022-12-06 08:54:00', 42.88, 804.00, 'admin', 'TS039625402835', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); -INSERT INTO "public"."wtinfo" VALUES ('HD001', '2022-02-26 00:00:00', '2022-12-06 08:54:11', 45.28, 849.00, 'admin', 'TS-20220089', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); -INSERT INTO "public"."wtinfo" VALUES ('HD006', '2022-03-14 00:00:00', '2022-12-06 08:54:24', 42.72, 801.00, 'admin', 'TS006292728074', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); -INSERT INTO "public"."wtinfo" VALUES ('HS002', '2022-03-28 00:00:00', '2022-12-06 08:54:37', 40.48, 759.00, 'admin', 'TS053630244707', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); -INSERT INTO "public"."wtinfo" VALUES ('HS007', '2022-12-06 00:00:00', '2022-12-06 08:54:51', 42.72, 801.00, 'admin', 'TS001535098782', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); -INSERT INTO "public"."wtinfo" VALUES ('ZT003', '2022-12-06 00:00:00', '2022-12-06 08:55:08', 42.72, 801.00, 'admin', 'TS063603838018', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); - --- ---------------------------- --- Primary Key structure for table admininfo --- ---------------------------- -ALTER TABLE "public"."admininfo" ADD CONSTRAINT "admininfo_pkey" PRIMARY KEY ("Id", "AdminAccount"); - --- ---------------------------- --- Primary Key structure for table admintype --- ---------------------------- -ALTER TABLE "public"."admintype" ADD CONSTRAINT "admintype_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table applicationversion --- ---------------------------- -ALTER TABLE "public"."applicationversion" ADD CONSTRAINT "applicationversion_pkey" PRIMARY KEY ("base_versionId"); - --- ---------------------------- --- Primary Key structure for table backinfo --- ---------------------------- -ALTER TABLE "public"."backinfo" ADD CONSTRAINT "backinfo_pkey" PRIMARY KEY ("BackNo"); - --- ---------------------------- --- Primary Key structure for table base --- ---------------------------- -ALTER TABLE "public"."base" ADD CONSTRAINT "base_pkey" PRIMARY KEY ("url_no"); - --- ---------------------------- --- Primary Key structure for table cardcodes --- ---------------------------- -ALTER TABLE "public"."cardcodes" ADD CONSTRAINT "cardcodes_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table cashinfo --- ---------------------------- -ALTER TABLE "public"."cashinfo" ADD CONSTRAINT "cashinfo_pkey" PRIMARY KEY ("CashNo"); - --- ---------------------------- --- Primary Key structure for table checkinfo --- ---------------------------- -ALTER TABLE "public"."checkinfo" ADD CONSTRAINT "checkinfo_pkey" PRIMARY KEY ("CheckNo"); - --- ---------------------------- --- Primary Key structure for table counterrule --- ---------------------------- -ALTER TABLE "public"."counterrule" ADD CONSTRAINT "counterrule_pkey" PRIMARY KEY ("rule_id"); - --- ---------------------------- --- Primary Key structure for table customer --- ---------------------------- -ALTER TABLE "public"."customer" ADD CONSTRAINT "customer_pkey" PRIMARY KEY ("custo_no"); - --- ---------------------------- --- Primary Key structure for table custospend --- ---------------------------- -ALTER TABLE "public"."custospend" ADD CONSTRAINT "custospend_pkey" PRIMARY KEY ("SpendId"); - --- ---------------------------- --- Primary Key structure for table dept --- ---------------------------- -ALTER TABLE "public"."dept" ADD CONSTRAINT "dept_pkey" PRIMARY KEY ("dept_no"); - --- ---------------------------- --- Primary Key structure for table education --- ---------------------------- -ALTER TABLE "public"."education" ADD CONSTRAINT "education_pkey" PRIMARY KEY ("education_no"); - --- ---------------------------- --- Primary Key structure for table fonts --- ---------------------------- -ALTER TABLE "public"."fonts" ADD CONSTRAINT "fonts_pkey" PRIMARY KEY ("FontsId"); - --- ---------------------------- --- Primary Key structure for table gbtype --- ---------------------------- -ALTER TABLE "public"."gbtype" ADD CONSTRAINT "gbtype_pkey" PRIMARY KEY ("GBTypeId"); - --- ---------------------------- --- Primary Key structure for table module --- ---------------------------- -ALTER TABLE "public"."module" ADD CONSTRAINT "module_pkey" PRIMARY KEY ("module_id"); - --- ---------------------------- --- Primary Key structure for table module_zero --- ---------------------------- -ALTER TABLE "public"."module_zero" ADD CONSTRAINT "module_zero_pkey" PRIMARY KEY ("module_id"); - --- ---------------------------- --- Primary Key structure for table nation --- ---------------------------- -ALTER TABLE "public"."nation" ADD CONSTRAINT "nation_pkey" PRIMARY KEY ("nation_no", "nation_name"); - --- ---------------------------- --- Primary Key structure for table nav_bar --- ---------------------------- -ALTER TABLE "public"."nav_bar" ADD CONSTRAINT "nav_bar_pkey" PRIMARY KEY ("nav_id"); - --- ---------------------------- --- Primary Key structure for table operationlog --- ---------------------------- -ALTER TABLE "public"."operationlog" ADD CONSTRAINT "operationlog_pkey" PRIMARY KEY ("OperationId"); - --- ---------------------------- --- Primary Key structure for table passporttype --- ---------------------------- -ALTER TABLE "public"."passporttype" ADD CONSTRAINT "passporttype_pkey" PRIMARY KEY ("PassportId"); - --- ---------------------------- --- Primary Key structure for table position --- ---------------------------- -ALTER TABLE "public"."position" ADD CONSTRAINT "position_pkey" PRIMARY KEY ("position_no"); - --- ---------------------------- --- Primary Key structure for table reser --- ---------------------------- -ALTER TABLE "public"."reser" ADD CONSTRAINT "reser_pkey" PRIMARY KEY ("ReserId"); - --- ---------------------------- --- Primary Key structure for table room --- ---------------------------- -ALTER TABLE "public"."room" ADD CONSTRAINT "room_pkey" PRIMARY KEY ("room_no"); - --- ---------------------------- --- Primary Key structure for table roomstate --- ---------------------------- -ALTER TABLE "public"."roomstate" ADD CONSTRAINT "roomstate_pkey" PRIMARY KEY ("RoomStateId"); - --- ---------------------------- --- Primary Key structure for table roomtype --- ---------------------------- -ALTER TABLE "public"."roomtype" ADD CONSTRAINT "roomtype_pkey" PRIMARY KEY ("RoomType"); - --- ---------------------------- --- Primary Key structure for table sellthing --- ---------------------------- -ALTER TABLE "public"."sellthing" ADD CONSTRAINT "sellthing_pkey" PRIMARY KEY ("SellNo"); - --- ---------------------------- --- Primary Key structure for table sextype --- ---------------------------- -ALTER TABLE "public"."sextype" ADD CONSTRAINT "sextype_pkey" PRIMARY KEY ("sexId"); - --- ---------------------------- --- Primary Key structure for table uploadinfo --- ---------------------------- -ALTER TABLE "public"."uploadinfo" ADD CONSTRAINT "uploadinfo_pkey" PRIMARY KEY ("NoticeNo"); - --- ---------------------------- --- Primary Key structure for table user_log --- ---------------------------- -ALTER TABLE "public"."user_log" ADD CONSTRAINT "user_log_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table userinfo --- ---------------------------- -ALTER TABLE "public"."userinfo" ADD CONSTRAINT "userinfo_pkey" PRIMARY KEY ("CustoNo"); - --- ---------------------------- --- Primary Key structure for table usertype --- ---------------------------- -ALTER TABLE "public"."usertype" ADD CONSTRAINT "usertype_pkey" PRIMARY KEY ("UserType"); - --- ---------------------------- --- Primary Key structure for table vip_rule --- ---------------------------- -ALTER TABLE "public"."vip_rule" ADD CONSTRAINT "vip_rule_pkey" PRIMARY KEY ("id", "rule_id"); - --- ---------------------------- --- Primary Key structure for table worker --- ---------------------------- -ALTER TABLE "public"."worker" ADD CONSTRAINT "worker_pkey" PRIMARY KEY ("WorkerId"); - --- ---------------------------- --- Primary Key structure for table workercheck --- ---------------------------- -ALTER TABLE "public"."workercheck" ADD CONSTRAINT "workercheck_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table workergoodbad --- ---------------------------- -ALTER TABLE "public"."workergoodbad" ADD CONSTRAINT "workergoodbad_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table workerhistory --- ---------------------------- -ALTER TABLE "public"."workerhistory" ADD CONSTRAINT "workerhistory_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table workerpic --- ---------------------------- -ALTER TABLE "public"."workerpic" ADD CONSTRAINT "workerpic_pkey" PRIMARY KEY ("Id"); diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/\347\211\210\346\234\254\351\235\236\346\234\200\346\226\260\357\274\214\345\207\272\347\216\260\351\227\256\351\242\230\350\257\267\344\273\245PostgreSQL\347\211\210\346\234\254\344\270\272\345\207\206.txt" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/\347\211\210\346\234\254\351\235\236\346\234\200\346\226\260\357\274\214\345\207\272\347\216\260\351\227\256\351\242\230\350\257\267\344\273\245PostgreSQL\347\211\210\346\234\254\344\270\272\345\207\206.txt" deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/PGDB_tshotel_script_data.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/PGDB_tshotel_script_data.sql" new file mode 100644 index 0000000000000000000000000000000000000000..11edebad3bdb8066254c1de981928385cb24f75f --- /dev/null +++ "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/PGDB_tshotel_script_data.sql" @@ -0,0 +1,4535 @@ +INSERT INTO "administrator" ("id", "admin_number", "admin_account", "admin_password", "admin_type", "admin_name", "is_admin", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '1263785187301658678', 'admin', 'clUKFMeIUWp6YflZweR0Cw==·#c0fbb?;*$>#;^b%$?>#%%